/* ====== UTILITY CLASSES ====== */
.mt-4 {
  margin-top: 4px !important;
}
.mt-16 {
  margin-top: 16px !important;
}
.mt-28 {
  margin-top: 28px !important;
}
.mt-32 {
  margin-top: 32px !important;
}
.mt-68 {
  margin-top: 68px !important;
}
.mt-140 {
  margin-top: 140px !important;
}
.gap_8 {
  gap: 8px;
}
.gap_28 {
  gap: 28px;
}
.h_100 {
  height: 100%;
}
.fw-500 {
  font-weight: 500;
}
.color-404654 {
  color: #404654;
}
.text-black {
  color: #000 !important;
}
.text-left {
  text-align: left !important;
}

/* ====== TYPOGRAPHY ====== */
.body1 {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #000;
  display: block;
}

.body2 {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

/* ====== PAGE BACKGROUND ====== */
.pd-hero-bg {
  background: url("assets/pd-review-bg.svg") center top / cover no-repeat !important;
}

/* ====== PAGE CONTAINER ====== */
.pd-container {
  width: 100%;
  margin: 0 auto;
  padding: 140px 70px 70px 70px !important;
}

/* ====== TWO-COLUMN HERO LAYOUT ====== */
.pd-hero-row {
  display: flex;
  align-items: center;
}

.pd-hero-left {
  flex: 1;
  min-width: 0;
}

.pd-hero-right {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  transform: scale(0.8);
  transform-origin: center right;
}

/* ====== DROPZONE HEADING SECTION ====== */
.pd-dropzone-container {
  text-align: left;
  max-width: 100%;
  width: 100%;
}

.pd-dropzone-heading {
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #404654;
}

.pd-dropzone-caption {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #585858;
  line-height: 1.6;
}

/* ====== INLINE SELECTS ROW ====== */
.pd-two-col {
  display: flex;
  gap: 16px;
}

.pd-two-col .pf-company-input {
  flex: 1;
  min-width: 0;
}

/* ====== BUTTONS ROW ====== */
.pd-btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ====== RIGHT COLUMN FRAMES ====== */
.pd-frames-wrapper {
  position: relative;
  width: 100%;
}

@property --pd-border-angle {
  syntax: "<angle>";
  initial-value: 219.4deg;
  inherits: false;
}

@keyframes pdBorderSpin {
  from {
    --pd-border-angle: 219.4deg;
  }
  to {
    --pd-border-angle: 579.4deg;
  }
}

.pd-glass-wrapper {
  position: relative;
  border-radius: 16px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.pd-glass-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 0.75px;
  background: linear-gradient(
      var(--pd-border-angle),
      #eef1f6 33.48%,
      #179f88 50.16%,
      #e06666 57%,
      #f5f9fe 73.74%
    )
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: pdBorderSpin 4s linear infinite;
  pointer-events: none;
}

.pd-frame1 {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.pd-frame2 {
  position: absolute;
  top: 0;
  left: -90px;
  /* width: 100%;
  max-width: 100%;
  height: auto; */
  z-index: 2;
}

/* ====== FORM INPUT FIELDS ====== */
.pf-company-input {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.pf-company-input > input[type="email"],
.pf-company-input > input[type="text"] {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid transparent;
  border-radius: 24px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #000;
  outline: none;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(228.62deg, rgba(150, 194, 195, 0.11) 24.11%, #64ACA9 60.79%, rgba(150, 194, 195, 0.11) 103.59%) border-box;
  transition: background 0.2s;
}

.pf-company-input > input:focus {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(228.62deg, rgba(100, 172, 169, 0.2) 24.11%, #64ACA9 60.79%, rgba(100, 172, 169, 0.2) 103.59%) border-box;
}

/* ====== CUSTOM SELECT ====== */
.hidden-select-box {
  display: none;
}

.custom-select-pd {
  position: relative;
  width: 100%;
}

.select-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid transparent;
  border-radius: 24px;
  cursor: pointer;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(228.62deg, rgba(150, 194, 195, 0.11) 24.11%, #64ACA9 60.79%, rgba(150, 194, 195, 0.11) 103.59%) border-box;
  transition: background 0.2s;
}

.search-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #000;
  width: 100%;
  cursor: pointer;
}

.search-input::placeholder {
  color: #aaa;
}

.arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #cacaca;
  flex-shrink: 0;
  margin-left: 8px;
}

.select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #cacaca;
  border-radius: 8px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 200;
  padding: 4px 0;
  list-style: none;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.select-dropdown li {
  padding: 10px 16px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  cursor: pointer;
  color: #000;
}

.select-dropdown li:hover {
  background: #f5f5f5;
}

/* ====== UPLOAD ZONE ====== */
.upload-zone-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 2px dashed #64ACA9;
  border-radius: 16px;
  cursor: pointer;
  background: linear-gradient(90deg, #E7F3F8 0%, #FFFFFF 99.99%);
  transition: border-color 0.2s, background 0.2s;
  padding: 24px 0;
  margin: 0;
}

.upload-zone-container:hover {
  border-color: #179F88;
  background: linear-gradient(90deg, #dceef5 0%, #f5fbff 99.99%);
}

.upload-zone-inner {
  gap: 20px;
}

.upload-zone-icon {
  width: 47px;
  height: 44px;
  flex-shrink: 0;
}

.upload-text-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.upload-text {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.highlighted-text {
  color: #2d3748;
  font-weight: 600;
}

.upload-caption {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #8a9ab0;
  margin: 0;
}

/* ====== PROGRESS ====== */
.upload-progress {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #585858;
  text-align: center;
}

.progress-container {
  width: 100%;
  background: #e0e0e0;
  border-radius: 9px;
  height: 8px;
  overflow: hidden;
}



/* ====== SUBMIT / SIGNUP BUTTON ====== */
#submit-pd-review-cta,
#sign-cta {
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

#submit-pd-review-cta[disabled] {
  cursor: not-allowed;
}

/* ====== PERFECT YOUR PITCH SECTION ====== */
.pd-perfect-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.pd-perfect-left {
  flex: 1;
  min-width: 0;
}

.pd-perfect-right {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.pd-perfect-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

/* ====== FEATURE ITEMS ====== */
.pd-feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-feature-heading {
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  color: #404654;
  margin: 0;
}

.pd-feature-desc {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  color: #afafaf;
  margin: 0;
  padding-left: 40px;
}

/* ====== REVIEWER LIST ====== */
.pd-reviewer-list {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #404654;
}

/* ====== ELEVATE SECTION ====== */
.pd-elevate-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: url("assets/zef-background.png") center / cover no-repeat;
  border-radius: 24px;
  padding: 48px 60px;
}

.pd-elevate-text {
  flex: 1;
  min-width: 0;
}

.pd-elevate-heading {
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.pd-elevate-desc {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #EAEAEA;
  margin: 16px 0 0;
  max-width: 560px;
}

.pd-elevate-action {
  flex-shrink: 0;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .pd-container {
    padding: 120px 40px 60px !important;
  }

  .pd-hero-row {
    flex-direction: column;
    min-height: auto;
    gap: 0;
  }

  .pd-hero-left {
    width: 100%;
  }

  .pd-hero-right {
    display: none;
  }

  .pd-frame2 {
    top: 0;
    left: 0;
    width: 70%;
  }

  .pd-perfect-row {
    flex-direction: column;
    gap: 40px;
  }

  .pd-perfect-right {
    width: 100%;
    justify-content: center;
  }

  .pd-perfect-img {
    max-width: 100%;
  }

  .pd-elevate-card {
    flex-direction: column;
    padding: 40px 32px;
    gap: 24px;
    text-align: center;
  }

  .pd-elevate-heading {
    font-size: 36px;
  }

  .pd-elevate-desc {
    font-size: 18px;
    max-width: 100%;
  }

  .pd-elevate-action {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .pd-container {
    padding: 90px 20px 50px !important;
  }

  .pd-dropzone-heading {
    font-size: 28px;
  }

  .pd-dropzone-caption {
    font-size: 15px;
  }

  .pd-two-col {
    flex-direction: column;
    gap: 0;
  }

  .pd-two-col .pf-company-input:last-child {
    margin-top: 16px;
  }

  .pd-btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pd-btn-row .zef-btn-wrap,
  .pd-btn-row .zef-btn-wrap-secondary {
    width: 100%;
  }

  .pd-btn-row .zef-btn-wrap button,
  .pd-btn-row .zef-btn-wrap-secondary a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .pd-feature-heading {
    font-size: 18px;
  }

  .pd-feature-desc {
    font-size: 16px;
    padding-left: 20px;
  }

  .pd-elevate-heading {
    font-size: 28px;
  }

  .pd-elevate-desc {
    font-size: 16px;
  }

  .pd-elevate-card {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .pd-perfect-right {
    display: none;
  }

  .pd-container {
    padding: 80px 16px 40px !important;
  }

  .pd-dropzone-heading {
    font-size: 24px;
  }

  .pd-elevate-heading {
    font-size: 24px;
  }
}
