  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  :root {
      --rose: #C2185B;
      --rose-light: #F8BBD0;
      --rose-pale: #FFF0F5;
      --rose-deep: #880E4F;
      --teal: #00695C;
      --teal-light: #B2DFDB;
      --teal-pale: #E0F2F1;
      --teal-mid: #00897B;
      --navy: #1A237E;
      --navy-light: #E8EAF6;
      --gold: #F9A825;
      --text-dark: #1C1C2E;
      --text-mid: #4A4A6A;
      --text-muted: #8888A8;
      --white: #FFFFFF;
      --off-white: #FAFAFA;
      --border: rgba(0, 0, 0, 0.08);
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 14px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
  }

.nav-logo .brand-logo img{
    width: 160px;
}

  .nav-logo-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--rose), var(--rose-deep));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px;
  }

  .nav-logo-text {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 18px;
      color: var(--rose-deep);
  }

  .nav-logo-sub {
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 0.5px;
      line-height: 1;
  }

  .nav-cta {
      background: var(--rose);
      color: white;
      padding: 10px 22px;
      border-radius: 50px;
      font-weight: 500;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
  }

  .nav-cta:hover {
      background: var(--rose-deep);
      transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
      min-height: 100vh;
      background: linear-gradient(160deg, #FFF0F5 0%, #FFF8FB 40%, #E0F2F1 100%);
      display: flex;
      align-items: center;
      padding: 100px 5% 60px;
      position: relative;
      overflow: hidden;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(194, 24, 91, 0.07) 0%, transparent 70%);
      border-radius: 50%;
  }

  .hero::after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0, 105, 92, 0.07) 0%, transparent 70%);
      border-radius: 50%;
  }

  .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      width: 100%;
      position: relative;
      z-index: 1;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--rose-pale);
      color: var(--rose);
      padding: 7px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid var(--rose-light);
      margin-bottom: 24px;
  }

  .hero-badge-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--rose);
      animation: pulse 2s infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 1;
          transform: scale(1)
      }

      50% {
          opacity: 0.5;
          transform: scale(1.3)
      }
  }

  h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 4vw, 54px);
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 20px;
  }

  h1 em {
      color: var(--rose);
      font-style: italic;
  }

  .hero-sub {
      font-size: 17px;
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 480px;
  }

  .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 40px;
  }

  .btn-primary {
      background: linear-gradient(135deg, var(--rose), var(--rose-deep));
      color: white;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(194, 24, 91, 0.35);
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(194, 24, 91, 0.4);
  }

  .btn-secondary {
      background: white;
      color: var(--rose-deep);
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 500;
      font-size: 15px;
      text-decoration: none;
      border: 1.5px solid var(--rose-light);
      cursor: pointer;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .btn-secondary:hover {
      background: var(--rose-pale);
      border-color: var(--rose);
  }

  .hero-stats {
      display: flex;
      gap: 32px;
  }

  .stat {}

  .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--rose-deep);
      line-height: 1;
  }

  .stat-label {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 4px;
  }

  /* Hero visual card */
  .hero-visual {
      position: relative;
  }

  .hero-card {
      background: white;
      border-radius: 24px;
      padding: 32px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
      position: relative;
      z-index: 2;
  }

  .hero-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: var(--text-dark);
      margin-bottom: 20px;
  }

  .symptom-list {
      list-style: none;
  }

  .symptom-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
      color: var(--text-mid);
  }

  .symptom-list li:last-child {
      border-bottom: none;
  }

  .symptom-icon {
      width: 45px;
      height: 45px;
      border-radius: 10px;
      background: var(--rose-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
  }

  .floating-tag {
      position: absolute;
      background: white;
      border-radius: 14px;
      padding: 10px 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      font-size: 13px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .tag-1 {
      top: -20px;
      right: -20px;
      color: var(--teal);
  }

  .tag-2 {
      bottom: -16px;
      left: -16px;
      color: var(--rose);
  }

  .tag-dot-teal {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--teal);
      flex-shrink: 0;
  }

  .tag-dot-rose {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--rose);
      flex-shrink: 0;
  }

  /* ── SECTION BASE ── */
  section {
      padding: 80px 5%;
  }

  .container {
      max-width: 1100px;
      margin: 0 auto;
  }

  .section-label {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
      font-weight: 600;
      color: var(--rose);
      margin-bottom: 12px;
  }

  h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 16px;
  }

  h2 em {
      color: var(--rose);
      font-style: italic;
  }

  .section-intro {
      font-size: 17px;
      color: var(--text-mid);
      max-width: 600px;
      line-height: 1.7;
      margin-bottom: 48px;
  }

  /* ── WHAT IS UFE ── */
  .what-ufe {
      background: var(--off-white);
  }

  .ufe-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
  }

  .ufe-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .ufe-step {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: white;
      padding: 20px;
      border-radius: 16px;
      border: 1px solid var(--border);
      transition: box-shadow 0.2s;
  }

  .ufe-step:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .step-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--rose), var(--rose-deep));
      color: white;
      font-weight: 700;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .step-title {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 4px;
  }

  .step-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.5;
  }

  .ufe-highlight {
      background: linear-gradient(160deg, var(--rose-pale), #FFF8FB);
      border-radius: 24px;
      padding: 40px;
      border: 1px solid var(--rose-light);
  }

  .ufe-highlight-title {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      color: var(--rose-deep);
      margin-bottom: 24px;
  }

  .benefit-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: white;
      border: 1px solid var(--rose-light);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      color: var(--rose-deep);
      margin: 4px;
  }

  /* ── COMPARISON ── */
  .comparison {
      background: white;
  }

  .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
  }

  .compare-card {
      border-radius: 24px;
      padding: 36px;
      border: 2px solid transparent;
      transition: all 0.3s;
  }

  .compare-card-ufe {
      background: linear-gradient(160deg, #FFF0F5, #FFF8FB);
      border-color: var(--rose-light);
  }

  .compare-card-hyster {
      background: var(--off-white);
      border-color: var(--border);
  }

  .compare-badge {
      display: inline-block;
      padding: 5px 14px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 20px;
  }

  .badge-recommended {
      background: var(--rose);
      color: white;
  }

  .badge-alternate {
      background: #E0E0E0;
      color: #666;
  }

  .compare-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      margin-bottom: 8px;
  }

  .compare-card-sub {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 24px;
  }

  .compare-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .compare-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15px;
      color: var(--text-mid);
  }

  .check-yes {
      color: var(--teal);
      font-size: 16px;
      font-weight: 700;
      flex-shrink: 0;
  }

  .check-no {
      color: #BDBDBD;
      font-size: 16px;
      flex-shrink: 0;
  }

  /* ── PROCESS ── */
  .process {
      background: var(--off-white);
  }

  .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 48px;
      position: relative;
  }

  .process-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--rose-light), var(--rose));
      z-index: 0;
  }

  .process-step {
      text-align: center;
      position: relative;
      z-index: 1;
      background: white;
      border-radius: 20px;
      padding: 28px 20px;
      border: 1px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
  }

  .process-step:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }

  .process-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      margin: 0 auto 16px;
      background: linear-gradient(135deg, var(--rose), var(--rose-deep));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      color: white;
      box-shadow: 0 4px 12px rgba(194, 24, 91, 0.3);
  }

  .process-title {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 8px;
  }

  .process-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.5;
  }

  /* ── DOCTORS ── */
  .doctors {
      background: white;
  }

  .doctors-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 48px;
  }

  .doctor-card {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: box-shadow 0.3s;
      background: white;
  }

  .doctor-card:hover {
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  }

  .doctor-header {
      height: 200px;
      display: flex;
      align-items: flex-end;
      padding: 24px;
      position: relative;
  }

  .doctor-header-ufe {
      background: linear-gradient(160deg, var(--rose-pale), var(--rose-light));
  }

  .doctor-header-obgyn {
      background: linear-gradient(160deg, var(--teal-pale), var(--teal-light));
  }

  .doctor-avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 4px solid white;
      overflow: hidden;
      flex-shrink: 0;
      /*display: flex;*/
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
  }

.doctor-avatar img{
    width: 100%;
}

  .avatar-rose {
      background: var(--rose);
      color: white;
  }

  .avatar-teal {
      background: var(--teal);
      color: white;
  }

  .doctor-specialty-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      padding: 6px 14px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
  }

  .badge-ufe {
      background: rgba(194, 24, 91, 0.15);
      color: var(--rose-deep);
  }

  .badge-obgyn {
      background: rgba(0, 105, 92, 0.15);
      color: var(--teal);
  }

  .doctor-body {
      padding: 24px;
  }

  .doctor-name {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      margin-bottom: 4px;
      font-weight: 600;
  }

  .doctor-role {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 16px;
  }

  .doctor-desc {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 20px;
  }

  .doctor-expertise {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
  }

  .exp-tag {
      background: var(--off-white);
      border: 1px solid var(--border);
      padding: 5px 12px;
      border-radius: 50px;
      font-size: 14px;
      color: var(--text-mid);
  }

  /* ── WHO IS THIS FOR ── */
  .ideal {
      background: linear-gradient(160deg, var(--rose-pale), white, var(--teal-pale));
  }

  .ideal-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
  }

  .ideal-card {
      background: white;
      border-radius: 20px;
      padding: 28px;
      border: 1px solid var(--border);
      text-align: center;
      transition: transform 0.2s;
  }

  .ideal-card:hover {
      transform: translateY(-4px);
  }

  .ideal-icon {
      font-size: 40px;
      margin-bottom: 14px;
  }

  .ideal-title {
      font-weight: 600;
      font-size: 19px;
      margin-bottom: 8px;
  }

  .ideal-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.5;
  }

  /* ── FAQ ── */
  .faq {
      background: white;
  }

  .faq-list {
      max-width: 720px;
      margin: 0 auto;
  }

  .faq-item {
      border-bottom: 1px solid var(--border);
      overflow: hidden;
  }

  .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      cursor: pointer;
      font-weight: 500;
      font-size: 20px;
      user-select: none;
      transition: color 0.2s;
  }

  .faq-q:hover {
      color: var(--rose);
  }

  .faq-icon {
      font-size: 30px;
      color: var(--rose);
      transition: transform 0.3s;
      flex-shrink: 0;
  }

  .faq-a {
      font-size: 16px;
      color: var(--text-mid);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s;
  }

  .faq-item.open .faq-a {
      max-height: 200px;
      padding-bottom: 20px;
  }

  .faq-item.open .faq-icon {
      transform: rotate(45deg);
  }

  /* ── CTA SECTION ── */
  .cta-section {
      background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose) 50%, #AD1457 100%);
      padding: 80px 5%;
      /*text-align: center;*/
      position: relative;
      overflow: hidden;
  }

  .cta-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
  }

  .cta-section h2 {
      color: white;
      margin-bottom: 16px;
  }

  .cta-section p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 17px;
      /*max-width: 520px;*/
      margin: 0 auto 36px;
  }

  .cta-white {
      background: white;
      color: var(--rose-deep);
      padding: 16px 36px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 16px;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      transition: all 0.2s;
  }

  .cta-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }

  .cta-contact-bar {
      /*display: flex;*/
      justify-content: center;
      align-items: center;
      gap: 40px;
      margin-top: 40px;
      flex-wrap: wrap;
  }

  .cta-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 16px;
      margin-bottom: 20px;
  }

  .cta-contact-icon {
      font-size: 20px;
      width: 42px;
      height: 42px;
      border-radius: 11px;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

.reveal.d2 {
    transition-delay: .2s;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.ab {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 38px;
    box-shadow: 0 6px 28px rgba(92, 45, 142, .1);
}

.ab h3 {
    font-family: 'Playfair Display',Georgia,serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 26px;
    color: var(--text-dark);
}

.fr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.fg3 {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fg3 label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--text-mid);
}

.fg3 input, .fg3 select, .fg3 textarea {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 9px;
    padding: 11px 14px;
    font-family: var(--fb);
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: all .2s;
    width: 100%;
}

.fg3 textarea {
    resize: vertical;
    min-height: 88px;
}

.fr.one {
    grid-template-columns: 1fr;
}

.fsb {
    margin-top: 22px;
}

.fp {
    font-size: 14px !important;
    color: var(--text-muted) !important;
    margin-top: 12px !important;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.sb {
    display: none;
    text-align: center;
    padding: 20px;
}

.fsb button {
    width: 100%;
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--rose), var(--rose-deep));
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    font-family: var(--fb);
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
}

.fsb button:hover {
    /*background: var(--rose-deep);*/
    transform: translateY(-1px);
}

.fg3 input:focus, .fg3 select:focus, .fg3 textarea:focus {
    border-color: var(--rose);
    background: white;
}

  /* ── FOOTER ── */
  footer {
      background: var(--text-dark);
      color: rgba(255, 255, 255, 0.7);
      padding: 40px 5%;
      text-align: center;
      font-size: 15px;
  }

  footer strong {
      color: white;
  }




   
  /* ── FORM MODAL ── */
  .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
  }

  .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
  }

  .modal {
      background: white;
      border-radius: 24px;
      padding: 40px;
      max-width: 480px;
      width: 100%;
      position: relative;
      transform: translateY(20px);
      transition: transform 0.3s;
      max-height: 90vh;
      overflow-y: auto;
  }

  .modal-overlay.open .modal {
      transform: translateY(0);
  }

  .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--off-white);
      border: none;
      cursor: pointer;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .modal h3 {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      margin-bottom: 6px;
  }

  .modal p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 24px;
  }

  .form-group {
      margin-bottom: 16px;
  }

  .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 6px;
      color: var(--text-mid);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border-radius: 12px;
      border: 1.5px solid var(--border);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text-dark);
      background: var(--off-white);
      transition: border-color 0.2s;
      outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
      border-color: var(--rose);
      background: white;
  }

  .form-submit {
      width: 100%;
      padding: 14px;
      border-radius: 50px;
      background: linear-gradient(135deg, var(--rose), var(--rose-deep));
      color: white;
      font-weight: 700;
      font-size: 15px;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(194, 24, 91, 0.35);
      transition: all 0.2s;
  }

  .form-submit:hover {
      transform: translateY(-1px);
  }

  .form-success {
      text-align: center;
      padding: 20px;
  }

  .form-success-icon {
      font-size: 48px;
      margin-bottom: 16px;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
      background: var(--navy);
      padding: 20px 5%;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
  }

  .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.8);
      font-size: 14px;
  }

  .trust-icon {
      font-size: 20px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
      
      .nav-logo .brand-logo img{
          width: 110px;
      }
      
      .hero-badge{
          padding: 5px 10px;
          font-size: 13px;
      }
      
      .hero-badge-dot{
          width: 8px;
          height: 8px;
      }
      
      .btn-primary{
          width: 100%;
      }
      
      .btn-secondary{
          width: 100%;
      }

      .hero-inner,
      .ufe-grid,
      .compare-grid,
      .doctors-grid {
          grid-template-columns: 1fr;
      }
      
      .ufe-highlight{
          padding: 20px;
      }
      
      .ufe-highlight-title{
          margin-bottom: 10px;
      }

      .process-steps {
          grid-template-columns: 1fr 1fr;
      }

      .process-steps::before {
          display: none;
      }
      
      .process-steps{
          display: block;
      }
      
      .process-step{
          margin-bottom: 15px;
      }
      
      .compare-card{
          padding: 20px;
      }

      .ideal-cards {
          grid-template-columns: 1fr;
      }

      .trust-bar {
          gap: 20px;
      }

      .hero-stats {
          gap: 20px;
      }

      .hero-visual {
          display: none;
      }

      nav .nav-links {
          display: none;
      }
      
      .faq-q{
          font-size: 18px;
      }
      .faq-a{
          font-size: 15px;
      }
      
      .faq-icon {
          font-size: 30px;
      }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .hero-text {
      animation: fadeUp 0.8s ease both;
  }

  .hero-visual-wrap {
      animation: fadeUp 0.8s 0.2s ease both;
  }