    /* ============================================================
       DESIGN TOKENS
       ============================================================ */
    :root {
      color-scheme: light;
      --c-bg:            #F3F9FB;
      --c-surface:       #FFFFFF;
      --c-surface-2:     #EBF6F9;
      --c-surface-3:     #E0F1F5;
      --c-brand:         #1B9EAE;
      --c-brand-dark:    #0D7A88;
      --c-brand-dim:     #C3E8EE;
      --c-brand-xdim:    #EBF6F9;
      --c-ink:           #1A2C33;
      --c-ink-2:         #527880;
      --c-ink-3:         #8AAFB7;
      --c-border:        #C8E3E9;
      --c-border-light:  #DFF0F4;
      --c-ok:            #1D9A5E;
      --c-ok-dim:        #E0F5EC;
      --r-sm:   10px;
      --r-md:   16px;
      --r-lg:   24px;
      --r-full: 999px;
      --sh-sm:  0 2px 8px  rgba(28,46,53,.07);
      --sh-md:  0 4px 24px rgba(27,158,174,.13);
      --sh-lg:  0 8px 48px rgba(28,46,53,.11);
      --font:   'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
      --ease:   cubic-bezier(.25,.46,.45,.94);
      --dur:    .22s;
    }

    @media (prefers-color-scheme: dark) {
      :root:not([data-theme="light"]) {
        --c-bg:           #0B1820;
        --c-surface:      #112030;
        --c-surface-2:    #182C38;
        --c-surface-3:    #1E3240;
        --c-brand:        #1B9EAE;
        --c-brand-dark:   #26B5C8;
        --c-brand-dim:    #112E38;
        --c-brand-xdim:   #0D2430;
        --c-ink:          #DCF0F5;
        --c-ink-2:        #7AADB8;
        --c-ink-3:        #3E6875;
        --c-border:       #1C3845;
        --c-border-light: #163040;
        --c-ok:           #30C678;
        --c-ok-dim:       #0E2C1E;
        --sh-sm:  0 2px 8px  rgba(0,0,0,.3);
        --sh-md:  0 4px 24px rgba(0,0,0,.4);
        --sh-lg:  0 8px 48px rgba(0,0,0,.5);
      }
    }

    :root[data-theme="dark"] {
      --c-bg:           #0B1820;
      --c-surface:      #112030;
      --c-surface-2:    #182C38;
      --c-surface-3:    #1E3240;
      --c-brand:        #1B9EAE;
      --c-brand-dark:   #26B5C8;
      --c-brand-dim:    #112E38;
      --c-brand-xdim:   #0D2430;
      --c-ink:          #DCF0F5;
      --c-ink-2:        #7AADB8;
      --c-ink-3:        #3E6875;
      --c-border:       #1C3845;
      --c-border-light: #163040;
      --c-ok:           #30C678;
      --c-ok-dim:       #0E2C1E;
      --sh-sm:  0 2px 8px  rgba(0,0,0,.3);
      --sh-md:  0 4px 24px rgba(0,0,0,.4);
      --sh-lg:  0 8px 48px rgba(0,0,0,.5);
    }

    /* ============================================================
       RESET & BASE
       ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.65;
      color: var(--c-ink);
      background: var(--c-bg);
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul, ol { list-style: none; }
    button { font-family: var(--font); cursor: pointer; border: none; background: none; }
    :focus-visible {
      outline: 3px solid var(--c-brand);
      outline-offset: 3px;
      border-radius: 4px;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }
    }

    /* ============================================================
       TYPOGRAPHY SCALE
       ============================================================ */
    .t-display {
      font-size: clamp(34px, 5.5vw, 56px);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -.025em;
      text-wrap: balance;
      color: var(--c-ink);
    }
    .t-h2 {
      font-size: clamp(24px, 3.8vw, 40px);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -.02em;
      text-wrap: balance;
      color: var(--c-ink);
    }
    .t-h3 {
      font-size: clamp(17px, 2.2vw, 22px);
      font-weight: 700;
      line-height: 1.3;
      color: var(--c-ink);
    }
    .t-lead {
      font-size: clamp(16px, 1.5vw, 19px);
      font-weight: 400;
      line-height: 1.7;
      color: var(--c-ink-2);
    }
    .t-body { font-size: 15px; color: var(--c-ink-2); line-height: 1.65; }
    .t-sm   { font-size: 13px; color: var(--c-ink-3); }
    .t-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--c-brand);
    }

    /* ============================================================
       LAYOUT UTILITIES
       ============================================================ */
    .wrap      { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .wrap-sm   { max-width: 720px;  margin: 0 auto; padding: 0 24px; }
    .section   { padding: 80px 0; }
    .section-sm{ padding: 52px 0; }
    .section-tint { background: var(--c-surface-2); }
    .tc        { text-align: center; }
    .sr-only   { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

    /* ============================================================
       BUTTONS
       ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: var(--r-full);
      font-family: var(--font);
      font-size: 15px;
      font-weight: 700;
      border: 2px solid transparent;
      cursor: pointer;
      transition: transform var(--dur) var(--ease),
                  box-shadow var(--dur) var(--ease),
                  background var(--dur) var(--ease),
                  border-color var(--dur) var(--ease),
                  color var(--dur) var(--ease);
      white-space: nowrap;
      text-decoration: none;
      line-height: 1;
    }
    .btn:hover  { transform: translateY(-2px); }
    .btn:active { transform: translateY(0); }
    .btn-text-short { display: none; }

    .btn-primary {
      background: var(--c-brand);
      color: #fff;
      border-color: var(--c-brand);
    }
    .btn-primary:hover {
      background: var(--c-brand-dark);
      border-color: var(--c-brand-dark);
      box-shadow: 0 6px 22px rgba(27,158,174,.38);
    }

    .btn-outline {
      background: transparent;
      color: var(--c-brand);
      border-color: var(--c-brand);
    }
    .btn-outline:hover {
      background: var(--c-brand-xdim);
    }

    .btn-ghost {
      background: rgba(255,255,255,.12);
      color: #fff;
      border-color: rgba(255,255,255,.3);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,.22);
      border-color: rgba(255,255,255,.55);
    }

    .btn-white {
      background: #fff;
      color: var(--c-brand);
      border-color: #fff;
    }
    .btn-white:hover {
      background: var(--c-brand-dim);
      box-shadow: 0 6px 22px rgba(0,0,0,.14);
    }

    .btn-lg { padding: 16px 34px; font-size: 17px; }
    .btn-sm { padding: 9px 18px; font-size: 13px; }

    /* ============================================================
       CHIPS / BADGES
       ============================================================ */
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--c-brand-xdim);
      color: var(--c-brand);
      font-size: 12px;
      font-weight: 700;
      padding: 5px 13px;
      border-radius: var(--r-full);
      letter-spacing: .05em;
    }
    .chip-ok {
      background: var(--c-ok-dim);
      color: var(--c-ok);
    }

    /* ============================================================
       EYEBROW / SECTION LABEL
       ============================================================ */
    .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--c-brand);
      margin-bottom: 14px;
    }

    /* ============================================================
       INTRO SPLASH
       ============================================================ */
    .intro-splash {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity .55s var(--ease);
    }
    .intro-splash.is-hidden {
      opacity: 0;
      pointer-events: none;
    }
    .intro-splash-video {
      width: min(90vw, 1100px);
      max-height: 80vh;
      aspect-ratio: 16 / 9;
      object-fit: contain;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
    }
    .intro-splash-skip {
      position: absolute;
      bottom: 24px;
      right: 24px;
      background: rgba(255,255,255,.85);
      border: 1px solid var(--c-border-light);
      border-radius: var(--r-full);
      padding: 9px 18px;
      font: inherit;
      font-size: 13px;
      font-weight: 700;
      color: var(--c-ink-2);
      cursor: pointer;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
    }
    .intro-splash-skip:hover { background: #fff; color: var(--c-ink); }
    @media (prefers-reduced-motion: reduce) {
      .intro-splash { display: none; }
    }

    /* ============================================================
       NAVIGATION
       ============================================================ */
    .nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(243,249,251,.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--c-border-light);
      transition: background .3s var(--ease), border-color .3s var(--ease);
    }
    @media (prefers-color-scheme: dark) {
      :root:not([data-theme="light"]) .nav { background: rgba(11,24,32,.94); }
    }
    :root[data-theme="dark"] .nav { background: rgba(11,24,32,.94); }

    /* Follows the patient/pro theme so the header never sits light on a dark page.
       Matches the dark provider green (#0F3540) used by the rest of the pro theme
       (see DARK PROVIDER SEGMENTS below) instead of a mismatched near-black navy. */
    body[data-audience="pro"] .nav {
      background: rgba(15,53,64,.94);
      border-bottom-color: rgba(255,255,255,.1);
    }
    body[data-audience="pro"] .nav-links a { color: #9CC4CC; }
    body[data-audience="pro"] .hamburger span { background: #DCF0F5; }

    .nav-inner {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      height: 116px;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .nav-logo { display: flex; align-items: center; flex-shrink: 0; }
    /* The source PNG is a 2000x2000 canvas where the actual wordmark only
       occupies a thin band in the middle (~19% of the height) — crop into
       just that band instead of shrinking the whole (mostly empty) square. */
    .nav-logo-mark {
      display: block;
      overflow: hidden;
      width: 254.4px;
      height: 54px;
      position: relative;
      transition: width var(--dur) var(--ease), height var(--dur) var(--ease);
    }
    .nav-logo-mark img {
      position: absolute;
      top: -115.4px;
      left: -14.3px;
      width: 285.7px;
      height: 285.7px;
      max-width: none;
      background: transparent;
      transition: width var(--dur) var(--ease), height var(--dur) var(--ease),
                  top var(--dur) var(--ease), left var(--dur) var(--ease);
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2px;
    }
    .nav-links a {
      padding: 7px 13px;
      border-radius: var(--r-sm);
      font-size: 14px;
      font-weight: 600;
      color: var(--c-ink-2);
      white-space: nowrap;
      transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
    }
    .nav-links a:hover {
      color: var(--c-brand);
      background: var(--c-brand-xdim);
    }

    .nav-actions { display: flex; align-items: center; gap: 8px; }
    .nav-actions .btn { padding: 9px 20px; font-size: 14px; }
    .nav-faq-link {
      padding: 7px 13px;
      border-radius: var(--r-sm);
      font-size: 14px;
      font-weight: 600;
      color: var(--c-ink-2);
      white-space: nowrap;
      transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
    }
    .nav-faq-link:hover {
      color: var(--c-brand);
      background: var(--c-brand-xdim);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      padding: 8px;
      border-radius: var(--r-sm);
    }
    .hamburger:hover { background: var(--c-surface-2); }
    .hamburger span {
      display: block;
      height: 2px;
      background: var(--c-ink);
      border-radius: 2px;
      transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
    }

    /* Mobile menu overlay */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 300;
      background: var(--c-surface);
      flex-direction: column;
      padding: 0 0 32px;
      overflow-y: auto;
    }
    .mobile-menu.is-open { display: flex; }
    .mobile-menu-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      border-bottom: 1px solid var(--c-border-light);
    }
    .mobile-menu-logo-mark { display: block; overflow: hidden; width: 226.2px; height: 48px; position: relative; }
    .mobile-menu-logo-mark img { position: absolute; top: -102.6px; left: -12.7px; width: 254px; height: 254px; max-width: none; background: transparent; }
    .mobile-close {
      width: 38px; height: 38px;
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; color: var(--c-ink-2);
    }
    .mobile-close:hover { background: var(--c-surface-2); }
    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      padding: 16px 16px 0;
      gap: 4px;
    }
    .mobile-nav-links a {
      padding: 13px 16px;
      border-radius: var(--r-md);
      font-size: 16px;
      font-weight: 700;
      color: var(--c-ink);
    }
    .mobile-nav-links a:hover { background: var(--c-surface-2); color: var(--c-brand); }
    .mobile-ctas {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 24px 24px 0;
      margin-top: auto;
    }
    .mobile-ctas .btn { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }

    /* ============================================================
       HERO
       ============================================================ */
    .hero {
      padding: 80px 0 88px;
      position: relative;
      overflow: hidden;
    }

    /* ─── Full-bleed background layers that crossfade with the audience switch ─── */
    .audience-bg {
      position: absolute;
      inset: 0;
      transition: opacity .6s var(--ease);
    }
    .audience-bg-patient {
      background: linear-gradient(150deg, var(--c-surface) 0%, var(--c-bg) 100%);
      opacity: 1;
    }
    .audience-bg-patient::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -8%;
      width: 55vw;
      height: 55vw;
      max-width: 700px;
      max-height: 700px;
      background: radial-gradient(circle, rgba(27,158,174,.07) 0%, transparent 68%);
      border-radius: 50%;
      pointer-events: none;
    }
    .audience-bg-pro {
      background: #0A2832;
      opacity: 0;
    }
    .audience-bg-pro::before {
      content: '';
      position: absolute;
      top: -30%;
      left: -10%;
      width: 60vw;
      height: 60vw;
      max-width: 800px;
      max-height: 800px;
      background: radial-gradient(circle, rgba(27,158,174,.12) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero.is-pro .audience-bg-patient { opacity: 0; }
    .hero.is-pro .audience-bg-pro { opacity: 1; }
    @media (prefers-reduced-motion: reduce) {
      .audience-bg { transition: none; }
    }

    /* Crossfade overlay: fades to a solid color while the audience state
       swaps underneath, then fades back out. */
    .audience-reveal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: 0;
    }

    /* ─── Audience switch bar (sticky — follows you past the hero) ───
       top must track the nav's own height exactly (116px full-size, 80px
       once .nav.is-scrolled shrinks it) — a fixed value here mismatched
       the two independent scroll thresholds and caused the bar to
       overlap/flicker against the nav while it was mid-shrink. Driving
       both off the same .is-scrolled class keeps them perfectly in sync. */
    .audience-switch-bar {
      position: sticky;
      top: 116px;
      z-index: 150;
      display: flex;
      justify-content: center;
      padding: 14px 20px;
      background: var(--c-surface);
      border-bottom: 1px solid var(--c-border-light);
      transition: top .3s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
    }
    .nav.is-scrolled ~ main .audience-switch-bar {
      top: 80px;
    }
    body[data-audience="pro"] .audience-switch-bar {
      background: #0F323F;
      border-bottom-color: rgba(255,255,255,.1);
    }
    body[data-audience="pro"] .audience-switch {
      background: rgba(15,53,64,.85);
      border-color: rgba(255,255,255,.1);
    }
    body[data-audience="pro"] .audience-switch-btn:not(.is-active) { color: #9CC4CC; }
    body[data-audience="pro"] .audience-switch-btn:not(.is-active):hover { color: #DCF0F5; }
    .audience-switch {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      width: max-content;
      max-width: 100%;
      background: rgba(255,255,255,.85);
      border: 1px solid rgba(255,255,255,.6);
      box-shadow: var(--sh-md);
      border-radius: var(--r-full);
      padding: 5px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .audience-switch-btn {
      border: none;
      background: transparent;
      font: inherit;
      font-size: 14px;
      font-weight: 700;
      padding: 11px 22px;
      border-radius: var(--r-full);
      color: #4A6B73;
      cursor: pointer;
      white-space: nowrap;
      transition: background .22s var(--ease), color .22s var(--ease);
    }
    .audience-switch-btn.is-active { background: var(--c-brand); color: #fff; }
    .audience-switch-btn:not(.is-active):hover { color: #1A2C33; }
    @media (prefers-color-scheme: dark) {
      :root:not([data-theme="light"]) .audience-switch { background: rgba(17,32,48,.85); border-color: rgba(255,255,255,.1); }
      :root:not([data-theme="light"]) .audience-switch-btn:not(.is-active) { color: #7AADB8; }
      :root:not([data-theme="light"]) .audience-switch-btn:not(.is-active):hover { color: #DCF0F5; }
    }
    :root[data-theme="dark"] .audience-switch { background: rgba(17,32,48,.85); border-color: rgba(255,255,255,.1); }
    :root[data-theme="dark"] .audience-switch-btn:not(.is-active) { color: #7AADB8; }
    :root[data-theme="dark"] .audience-switch-btn:not(.is-active):hover { color: #DCF0F5; }

    /* ─── Stage: the two full "screens" that crossfade + morph height ─── */
    .audience-stage {
      position: relative;
      overflow: hidden;
      transition: height .5s var(--ease);
    }
    /* At rest, the active panel stays in normal document flow (no explicit position)
       so .audience-stage sizes itself natively via height:auto — no JS/resize
       recalculation involved. Panels only become position:absolute (inline style,
       toggled by JS) for the brief crossfade+height-morph transition between screens. */
    .audience-panel {
      width: 100%;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .45s var(--ease), transform .45s var(--ease);
      pointer-events: none;
    }
    .audience-panel.is-active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    @media (prefers-reduced-motion: reduce) {
      .audience-stage, .audience-panel { transition: none; }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center;
    }

    .hero-content { position: relative; z-index: 1; }
    .hero-tag { margin-bottom: 22px; }
    .hero h1 { margin-bottom: 22px; }
    .hero h1 em { font-style: normal; color: var(--c-brand); }
    .hero-sub { max-width: 500px; margin-bottom: 36px; }

    .hero-ctas { display: flex; gap: 12px; flex-wrap: nowrap; align-items: center; }

    .patients-cta-row { display: flex; gap: 12px; flex-wrap: nowrap; align-items: center; margin-top: 28px; }

    .hero-visual { position: relative; }

    .hero-card {
      background: var(--c-surface);
      border-radius: var(--r-lg);
      padding: 28px;
      box-shadow: var(--sh-lg);
      border: 1px solid var(--c-border-light);
      position: relative;
      z-index: 1;
    }
    .hero-card-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }
    .hc-avatar {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--c-brand-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
    }
    .hc-meta { flex: 1; }
    .hc-name {
      font-size: 15px;
      font-weight: 800;
      color: var(--c-ink);
      margin-bottom: 2px;
    }
    .hc-spec {
      font-size: 13px;
      color: var(--c-ink-3);
    }
    .hc-verified {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: var(--c-ok-dim);
      color: var(--c-ok);
      font-size: 12px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: var(--r-full);
    }
    .hc-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }
    .hc-tag {
      background: var(--c-brand-xdim);
      color: var(--c-brand);
      font-size: 12px;
      font-weight: 600;
      padding: 4px 11px;
      border-radius: var(--r-full);
    }
    .hc-avail {
      font-size: 13px;
      color: var(--c-ink-3);
      margin-bottom: 18px;
    }
    .hc-actions { display: flex; gap: 8px; }
    .hc-actions .btn { flex: 1; justify-content: center; font-size: 14px; padding: 11px 16px; }

    .hero-float {
      position: absolute;
      background: var(--c-surface);
      border-radius: var(--r-md);
      padding: 10px 14px;
      box-shadow: var(--sh-md);
      border: 1px solid var(--c-border-light);
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--c-ink);
      white-space: nowrap;
      pointer-events: none;
    }
    .hero-float-1 {
      top: 0;
      right: -10px;
      animation: heroFloat 3s ease-in-out infinite;
    }
    .hero-float-2 {
      bottom: 0;
      left: -10px;
      animation: heroFloat 3.8s ease-in-out infinite reverse;
    }

    @keyframes heroFloat {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-10px); }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-float-1, .hero-float-2 { animation: none; }
    }
    .hero-pear {
      position: absolute;
      bottom: -40px;
      right: -52px;
      width: 160px;
      opacity: .9;
      pointer-events: none;
      background: transparent;
      z-index: 10;
    }

    /* ============================================================
       HOW IT WORKS
       ============================================================ */
    .tab-panel { display: none; }
    .tab-panel.is-active { display: block; }

    /* ============================================================
       AUDIENCE-EXCLUSIVE SECTIONS (Trust, #pacientes, #planes)
       ============================================================ */
    [data-audience-only] {
      transition: padding-top .5s var(--ease), padding-bottom .5s var(--ease);
    }
    [data-audience-only].is-collapsed {
      padding-top: 0;
      padding-bottom: 0;
    }
    [data-audience-only] > .wrap {
      overflow: hidden;
      transition: height .5s var(--ease), opacity .4s var(--ease);
    }
    @media (prefers-reduced-motion: reduce) {
      [data-audience-only],
      [data-audience-only] > .wrap { transition: none; }
    }

    /* ============================================================
       DARK PROVIDER SEGMENTS — a shade lighter than the hero's dark
       green, reused by #planes (always) and by Cómo funciona / FAQ /
       Testimonios (only while data-audience="pro" is active).
       ============================================================ */
    .is-dark-segment {
      background: #0F3540;
      transition: background .5s var(--ease);
    }
    .is-dark-segment .eyebrow { color: var(--c-brand); }
    .is-dark-segment .t-h2 { color: #DCF0F5; }
    .is-dark-segment .t-lead { color: #7AADB8; }

    .is-dark-segment .step { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
    .is-dark-segment .step h3 { color: #DCF0F5; }
    .is-dark-segment .step p { color: #7AADB8; }
    .is-dark-segment .step::after { color: rgba(255,255,255,.3); }

    .is-dark-segment .plan-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
    .is-dark-segment .plan-name, .is-dark-segment .plan-price { color: #DCF0F5; }
    .is-dark-segment .plan-period { color: #7AADB8; }
    .is-dark-segment .plan-divider { background: rgba(255,255,255,.12); }
    .is-dark-segment .plan-note { color: #7AADB8; }
    .is-dark-segment .plan-card.is-featured { background: rgba(27,158,174,.1); }

    .is-dark-segment .faq-item { border-color: rgba(255,255,255,.14); }
    .is-dark-segment .faq-q { color: #DCF0F5; background: transparent; }
    .is-dark-segment .faq-q:hover { background: rgba(255,255,255,.05); }
    .is-dark-segment .faq-a { background: transparent; color: #9CC4CC; }

    .is-dark-segment .testimonial-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
    .is-dark-segment .t-quote { color: #DCF0F5; }
    .is-dark-segment .t-name { color: #DCF0F5; }
    .is-dark-segment .t-role { color: #7AADB8; }

    .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

    .step {
      text-align: center;
      padding: 28px 16px;
      border-radius: var(--r-md);
      background: var(--c-surface);
      border: 1px solid var(--c-border-light);
      position: relative;
    }
    .step-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--c-brand);
      color: #fff;
      font-size: 17px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
    }
    .step-emoji { font-size: 28px; margin-bottom: 12px; }
    .step h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--c-ink);
      margin-bottom: 8px;
    }
    .step p { font-size: 13px; color: var(--c-ink-2); }

    /* Connector lines between steps */
    .step::after {
      content: '→';
      position: absolute;
      top: 38px;
      right: -16px;
      font-size: 18px;
      color: var(--c-brand-dim);
      z-index: 1;
    }
    .step:last-child::after { display: none; }

    /* ============================================================
       OBJECTION-HANDLING BENTO GRID (Why We Mind)
       ============================================================ */
    .objections-grid {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .objections-row {
      display: grid;
      /* Chica 25% base +10% relativo = 27.5%; grande 50% base -20% relativo = 40% */
      grid-template-columns: 40fr 27.5fr 27.5fr;
      gap: 20px;
    }
    .objections-row--wide-right { grid-template-columns: 27.5fr 27.5fr 40fr; }
    .objection-card {
      background: var(--c-surface);
      border: 1px solid var(--c-border-light);
      border-radius: var(--r-lg);
      padding: 26px 24px;
      box-shadow: var(--sh-sm);
      transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
    }
    .objection-card:hover {
      transform: translateY(-4px);
      border-color: var(--c-brand);
      box-shadow: 0 0 0 1px rgba(27,158,174,.25), 0 16px 36px rgba(27,158,174,.22);
    }
    .is-dark-segment .objection-card:hover {
      border-color: var(--c-brand-dark);
      box-shadow: 0 0 0 1px rgba(38,181,200,.3), 0 16px 36px rgba(0,0,0,.4);
      background: rgba(255,255,255,.09);
    }
    .objection-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }
    .objection-icon {
      width: 46px;
      height: 46px;
      flex-shrink: 0;
      border-radius: 14px;
      background: var(--c-brand-xdim);
      color: var(--c-brand);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .3s var(--ease), background .3s var(--ease);
    }
    .objection-card:hover .objection-icon {
      transform: scale(1.08) rotate(-4deg);
      background: var(--c-brand-dim);
    }
    .objection-q-inline {
      display: block;
      margin-bottom: 6px;
      color: var(--c-brand);
      font-weight: 800;
    }
    .objection-card h3 {
      font-size: 17px;
      font-weight: 800;
      color: var(--c-ink);
      margin: 0;
    }
    .objection-card--wide h3 { font-size: 20px; }
    .objection-card p:last-child {
      font-size: 14px;
      color: var(--c-ink-2);
      line-height: 1.6;
    }
    .objection-stats {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      margin: 14px 0 16px;
    }
    .objection-stat { display: flex; flex-direction: column; }
    .objection-stat-num {
      font-size: clamp(32px, 4vw, 42px);
      font-weight: 900;
      line-height: 1;
      color: var(--c-brand-dark);
    }
    @supports (background-clip: text) or (-webkit-background-clip: text) {
      .objection-stat-num {
        background: linear-gradient(135deg, var(--c-brand-dark), var(--c-ok));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
    }
    .objection-stat-label {
      font-size: 12.5px;
      font-weight: 700;
      color: var(--c-ink-3);
      margin-top: 4px;
    }
    .is-dark-segment .objection-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
    .is-dark-segment .objection-card h3 { color: #DCF0F5; }
    .is-dark-segment .objection-card p:last-child { color: #7AADB8; }
    .is-dark-segment .objection-q-inline { color: #26B5C8; }

    /* Mesh gradient backdrop: soft drifting cyan/emerald blooms behind the grid */
    #por-que-wemind { position: relative; overflow: hidden; }
    #por-que-wemind > .wrap { position: relative; z-index: 1; }
    #por-que-wemind::before,
    #por-que-wemind::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: .28;
      pointer-events: none;
      z-index: 0;
    }
    #por-que-wemind::before {
      width: 480px; height: 480px;
      background: radial-gradient(circle, var(--c-brand) 0%, transparent 70%);
      top: -140px; left: -100px;
      animation: meshDrift1 26s ease-in-out infinite alternate;
    }
    #por-que-wemind::after {
      width: 420px; height: 420px;
      background: radial-gradient(circle, var(--c-ok) 0%, transparent 70%);
      bottom: -160px; right: -80px;
      animation: meshDrift2 32s ease-in-out infinite alternate;
    }
    .is-dark-segment#por-que-wemind::before,
    .is-dark-segment#por-que-wemind::after { opacity: .4; }
    @keyframes meshDrift1 {
      from { transform: translate(0,0) scale(1); }
      to   { transform: translate(60px, 40px) scale(1.15); }
    }
    @keyframes meshDrift2 {
      from { transform: translate(0,0) scale(1); }
      to   { transform: translate(-50px, -30px) scale(1.1); }
    }
    @media (prefers-reduced-motion: reduce) {
      #por-que-wemind::before, #por-que-wemind::after { animation: none; }
    }

    @media (max-width: 900px) {
      .objections-row { grid-template-columns: 1fr 1fr; }
      .objection-card--wide { grid-column: span 2; }
    }
    @media (max-width: 600px) {
      .objections-row { grid-template-columns: 1fr; }
      .objection-card--wide { grid-column: span 1; }
      .objection-stats { gap: 24px; }
    }

    /* ============================================================
       PATIENTS SECTION
       ============================================================ */
    .patients-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .benefit-card {
      background: var(--c-surface);
      border-radius: var(--r-md);
      padding: 22px 20px;
      border: 1px solid var(--c-border-light);
      transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    }
    .benefit-card:hover {
      border-color: var(--c-brand-dim);
      box-shadow: var(--sh-sm);
    }
    .benefit-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: var(--c-brand-xdim);
      color: var(--c-brand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 12px;
    }
    .benefit-card h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--c-ink);
      margin-bottom: 5px;
    }
    .benefit-card p { font-size: 13px; }

    /* ============================================================
       PATIENTS MATCH FLOW
       ============================================================ */
    .patients-match-flow {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--c-surface);
      border: 1px solid var(--c-border-light);
      border-radius: var(--r-md);
      padding: 16px 20px;
      margin-top: 20px;
      flex-wrap: wrap;
    }
    .pmf-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      flex: 1;
      min-width: 80px;
    }
    .pmf-icon { font-size: 22px; line-height: 1; }
    .pmf-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--c-ink-2);
      text-align: center;
      line-height: 1.4;
    }
    .pmf-icon { display: flex; align-items: center; justify-content: center; }
    .pmf-step-match .pmf-icon {
      background: var(--c-brand-xdim);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .pmf-match-label { color: var(--c-brand); font-size: 13px; letter-spacing: .06em; }
    .pmf-arrow {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    /* ============================================================
       PSYCHOLOGISTS SECTION (dark teal bg)
       ============================================================ */
    /* .pro-section now only scopes text colors — the dark full-bleed background
       lives in .audience-bg-pro so it can crossfade with the patient screen. */
    .pro-section .eyebrow {
      color: var(--c-brand);
      opacity: .9;
    }
    .pro-section .t-h2 { color: #DCF0F5; }
    .pro-section .t-lead { color: #7AADB8; }

    .pro-grid {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 48px;
      align-items: start;
    }

    .pro-benefits {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 32px;
      align-items: start;
    }
    .pro-benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--r-md);
      padding: 16px;
      height: 100%;
      box-sizing: border-box;
    }
    .pro-benefit-item .icon { flex-shrink: 0; margin-top: 2px; }
    .pro-benefit-item .icon { font-size: 20px; flex-shrink: 0; }
    .pro-benefit-item h5 {
      font-size: 13px;
      font-weight: 700;
      color: #DCF0F5;
      margin-bottom: 3px;
    }
    .pro-benefit-item p { font-size: 12px; color: #6A9AA5; margin: 0; }

    .pro-match-highlight {
      background: rgba(27,158,174,.12);
      border: 1px solid rgba(27,158,174,.3);
      border-radius: var(--r-md);
      padding: 18px 20px;
      margin-top: 28px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .pro-match-highlight .match-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(27,158,174,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 20px;
    }
    .pro-match-highlight p {
      font-size: 14px;
      color: #B8D8E0;
      margin: 0;
      line-height: 1.6;
    }
    .pro-match-highlight strong { color: var(--c-brand); }
    .pro-cta-row { display: flex; gap: 12px; flex-wrap: nowrap; align-items: center; margin-top: 28px; }

    /* Dashboard mockup card — lives in the hero stage, standalone (dark card on light bg, like a product screenshot) */
    .pro-dash {
      background: #0E2731;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--r-lg);
      padding: 26px;
      position: relative;
      z-index: 1;
      box-shadow: var(--sh-lg);
    }
    .dash-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .dash-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(27,158,174,.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    .dash-name  { font-size: 14px; font-weight: 700; color: #DCF0F5; }
    .dash-badge {
      font-size: 11px;
      color: var(--c-ok);
      font-weight: 700;
      margin-top: 2px;
    }
    .dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
    .dash-stat {
      background: rgba(27,158,174,.1);
      border-radius: var(--r-sm);
      padding: 14px;
      text-align: center;
    }
    .dash-num {
      font-size: 28px;
      font-weight: 900;
      color: var(--c-brand);
      line-height: 1;
      margin-bottom: 4px;
    }
    .dash-label { font-size: 11px; color: #7AADB8; font-weight: 600; }
    .dash-cal-head { font-size: 12px; font-weight: 700; color: #DCF0F5; margin-bottom: 10px; }
    .dash-slot {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.04);
      border-radius: 8px;
      padding: 10px 12px;
      margin-bottom: 6px;
    }
    .dash-slot:last-child { margin-bottom: 0; }
    .dash-time { font-size: 12px; font-weight: 700; color: var(--c-brand); min-width: 46px; }
    .dash-patient { font-size: 13px; color: #B8D8E0; font-weight: 600; flex: 1; }
    .dash-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-brand); flex-shrink: 0; }
    .dash-dot-empty { width: 8px; height: 8px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); flex-shrink: 0; }

    /* ============================================================
       PRICING
       ============================================================ */
    .pricing-intro { max-width: 560px; margin: 0 auto 48px; }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: start;
    }
    .plan-card {
      background: var(--c-surface);
      border-radius: var(--r-lg);
      padding: 32px 28px;
      border: 2px solid var(--c-border);
      position: relative;
      transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
    }
    .plan-card:hover { box-shadow: var(--sh-md); }
    .plan-card.is-featured {
      border-color: var(--c-brand);
      box-shadow: var(--sh-md);
      transform: scale(1.025);
    }
    .plan-card.is-featured:hover { transform: scale(1.04); }
    .plan-badge {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      background: var(--c-brand);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: var(--r-full);
      white-space: nowrap;
    }
    .plan-badge-dark { background: var(--c-ink); }
    .plan-name { font-size: 16px; font-weight: 700; color: var(--c-ink-2); margin-bottom: 4px; }
    .plan-price {
      font-size: 36px;
      font-weight: 900;
      color: var(--c-ink);
      line-height: 1.1;
      margin-bottom: 2px;
      font-variant-numeric: tabular-nums;
    }
    .plan-period { font-size: 15px; font-weight: 500; color: var(--c-ink-3); }
    .plan-equiv { font-size: 14px; font-weight: 700; color: var(--c-brand); margin-bottom: 2px; min-height: 20px; }
    .plan-save  { font-size: 13px; font-weight: 700; color: var(--c-ok); min-height: 19px; }
    .plan-divider { height: 1px; background: var(--c-border-light); margin: 20px 0; }
    .plan-cta { width: 100%; justify-content: center; }
    .plan-note {
      text-align: center;
      margin-top: 28px;
      font-size: 13px;
      color: var(--c-ink-3);
    }
    .plan-note a { color: var(--c-brand); font-weight: 700; }

    .pricing-unlock {
      display: flex;
      align-items: center;
      gap: 20px;
      max-width: 1040px;
      margin: 0 auto 40px;
      padding: 26px 34px;
      border-radius: var(--r-lg);
      background: rgba(27,158,174,.14);
      border: 1px solid rgba(27,158,174,.4);
    }
    .pricing-unlock .icon {
      flex-shrink: 0;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--c-brand);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .pricing-unlock strong { display: block; font-size: 21px; font-weight: 800; line-height: 1.3; color: #DCF0F5; margin-bottom: 6px; }
    .pricing-unlock span { font-size: 15px; color: #9CC4CC; }
    @media (max-width: 560px) {
      .pricing-unlock { flex-direction: column; text-align: center; padding: 24px 22px; }
      .pricing-unlock strong { font-size: 18px; }
    }

    /* ============================================================
       ONBOARDING / SUPPORT BANNER (pro)
       ============================================================ */
    .onboarding-banner {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      margin-top: 36px;
      padding: 28px 32px;
      border-radius: var(--r-lg);
      background: var(--c-brand-xdim);
      border: 1px solid var(--c-brand-dim);
    }
    .onboarding-banner-icon {
      flex: 0 0 auto;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--c-surface);
      color: var(--c-brand);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--sh-sm);
    }
    .onboarding-banner-copy { flex: 1 1 240px; min-width: 220px; }
    .onboarding-banner-copy h3 { font-size: 18px; font-weight: 800; color: var(--c-ink); margin-bottom: 4px; }
    .onboarding-banner-copy p { font-size: 14px; color: var(--c-ink-2); }
    .onboarding-points { display: flex; flex-direction: column; gap: 10px; flex: 0 0 auto; }
    .onboarding-point { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 700; color: var(--c-ink); }
    .onboarding-point svg { flex: 0 0 auto; color: var(--c-brand); }

    .is-dark-segment .onboarding-banner { background: rgba(27,158,174,.12); border-color: rgba(27,158,174,.3); }
    .is-dark-segment .onboarding-banner-icon { background: rgba(255,255,255,.08); }
    .is-dark-segment .onboarding-banner-copy h3 { color: #DCF0F5; }
    .is-dark-segment .onboarding-banner-copy p { color: #7AADB8; }
    .is-dark-segment .onboarding-point { color: #DCF0F5; }

    @media (max-width: 560px) { .onboarding-banner { padding: 24px 20px; } }

    /* ============================================================
       FEATURES CAROUSEL (pro benefits rotator)
       ============================================================ */
    .features-carousel { margin-top: 8px; }
    .features-carousel-viewport { overflow: hidden; }
    .features-carousel-track { display: flex; gap: 20px; transition: transform .5s var(--ease); }
    .features-carousel-track .benefit-card { flex: 0 0 calc((100% - 40px) / 3); padding: 18px 16px; }
    .features-carousel-track .benefit-icon { width: 36px; height: 36px; font-size: 17px; margin-bottom: 10px; }
    .features-carousel-track h3 { font-size: 13.5px; margin-bottom: 5px; }
    .features-carousel-track p { font-size: 12.5px; }

    .features-carousel-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
    .carousel-arrow {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid var(--c-border);
      background: var(--c-surface);
      color: var(--c-brand);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform .2s var(--ease);
    }
    .carousel-arrow:hover { background: var(--c-brand-xdim); border-color: var(--c-brand-dim); transform: translateY(-2px); }
    .carousel-dots { display: flex; align-items: center; gap: 8px; }
    .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-border); transition: background var(--dur) var(--ease), transform var(--dur) var(--ease); }
    .carousel-dot.is-active { background: var(--c-brand); transform: scale(1.3); }

    .is-dark-segment .carousel-arrow { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #DCF0F5; }
    .is-dark-segment .carousel-arrow:hover { background: rgba(255,255,255,.12); }
    .is-dark-segment .carousel-dot { background: rgba(255,255,255,.2); }
    .is-dark-segment .carousel-dot.is-active { background: var(--c-brand); }

    @media (max-width: 980px) { .features-carousel-track .benefit-card { flex: 0 0 calc((100% - 20px) / 2); } }
    @media (max-width: 560px) { .features-carousel-track .benefit-card { flex: 0 0 100%; } }
    @media (prefers-reduced-motion: reduce) { .features-carousel-track { transition: none; } }

    /* ============================================================
       TRUST SIGNALS
       ============================================================ */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .trust-card {
      background: var(--c-surface);
      border-radius: var(--r-lg);
      padding: 32px 24px;
      text-align: center;
      border: 1px solid var(--c-border-light);
      transition: box-shadow var(--dur) var(--ease);
    }
    .trust-card:hover { box-shadow: var(--sh-sm); }
    .trust-icon { font-size: 36px; margin-bottom: 16px; color: var(--c-brand); display:flex; justify-content:center; }
    .trust-card h4 { font-size: 16px; font-weight: 700; color: var(--c-ink); margin-bottom: 8px; }
    .trust-card p { font-size: 14px; color: var(--c-ink-2); }

    /* ============================================================
       TESTIMONIALS
       ============================================================ */
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .testimonials-grid--centered { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
    .testimonial-card {
      background: var(--c-surface);
      border-radius: var(--r-lg);
      padding: 26px 22px;
      border: 1px solid var(--c-border-light);
    }
    .t-stars { color: #F4A700; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
    .t-quote {
      font-size: 15px;
      line-height: 1.65;
      color: var(--c-ink);
      font-style: italic;
      margin-bottom: 18px;
    }
    .t-author { display: flex; align-items: center; gap: 12px; }
    .t-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--c-brand-xdim);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .t-name { font-size: 13px; font-weight: 700; color: var(--c-ink); }
    .t-role { font-size: 12px; color: var(--c-ink-3); }
    .t-notice { text-align: center; margin-top: 14px; font-size: 12px; color: var(--c-ink-3); }

    /* ============================================================
       FAQ
       ============================================================ */
    .faq-list { display: flex; flex-direction: column; gap: 8px; }
    .faq-item {
      border: 1px solid var(--c-border-light);
      border-radius: var(--r-md);
      overflow: hidden;
    }
    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 20px;
      font-size: 15px;
      font-weight: 700;
      color: var(--c-ink);
      cursor: pointer;
      background: var(--c-surface);
      border: none;
      width: 100%;
      text-align: left;
      transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
    }
    .faq-q:hover { background: var(--c-surface-2); color: var(--c-brand); }
    .faq-q[aria-expanded="true"] { color: var(--c-brand); }
    .faq-icon {
      font-size: 20px;
      color: var(--c-brand);
      flex-shrink: 0;
      transition: transform var(--dur) var(--ease);
      line-height: 1;
    }
    .faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
    .faq-a {
      display: none;
      padding: 0 20px 18px;
      font-size: 14px;
      color: var(--c-ink-2);
      line-height: 1.7;
      background: var(--c-surface);
    }
    .faq-a.is-open { display: block; }

    /* ============================================================
       FINAL CTA
       ============================================================ */
    .final-cta {
      background: linear-gradient(135deg, #082430 0%, #0D3A4A 50%, #082430 100%);
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      bottom: -20%;
      right: -5%;
      width: 55vw;
      height: 55vw;
      max-width: 600px;
      max-height: 600px;
      background: radial-gradient(circle, rgba(27,158,174,.14) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }
    .final-cta {
      background: linear-gradient(135deg, var(--c-surface) 0%, var(--c-bg) 100%);
      transition: background .5s var(--ease);
    }
    .final-cta.is-dark-segment {
      background: linear-gradient(135deg, #082430 0%, #0D3A4A 50%, #082430 100%);
    }
    .final-cta .t-h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
    .contact-card .tab-panel.is-active { margin-bottom: 28px; }

    .faq-contact-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 48px;
      align-items: start;
      text-align: left;
    }

    .contact-card {
      padding: 40px 36px;
      border-radius: var(--r-lg);
      background: var(--c-surface);
      border: 1px solid var(--c-border-light);
      box-shadow: var(--sh-lg);
      text-align: center;
      transition: background .5s var(--ease), border-color .5s var(--ease);
    }
    .is-dark-segment .contact-card {
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.14);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .contact-form-row input {
      width: 100%;
      padding: 14px 18px;
      border-radius: var(--r-md);
      border: 1.5px solid var(--c-border-light);
      background: var(--c-surface);
      color: var(--c-ink);
      font: inherit;
      font-size: 15px;
      transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
    }
    .contact-form-row input::placeholder { color: var(--c-ink-3); }
    .contact-form-row input:focus { outline: none; border-color: var(--c-brand); }
    .contact-form-submit { width: 100%; justify-content: center; margin-top: 6px; }
    .contact-form-status { font-size: 13px; margin-top: 10px; min-height: 18px; }
    .contact-form-status.is-error { color: #E0554B; }
    .contact-form-status.is-ok { color: var(--c-ok); }
    .contact-form-alt { margin-top: 10px; font-size: 13px; color: var(--c-ink-3); }
    .contact-form-alt a { color: var(--c-brand); font-weight: 700; }

    .is-dark-segment .contact-form-row input {
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.18);
      color: #E0F2F6;
    }
    .is-dark-segment .contact-form-row input::placeholder { color: rgba(224,242,246,.45); }
    .is-dark-segment .contact-form-status.is-ok { color: var(--c-brand); }
    .is-dark-segment .contact-form-alt { color: rgba(224,242,246,.6); }

    /* ============================================================
       FOOTER
       ============================================================ */
    .footer {
      background: #071418;
      color: rgba(255,255,255,.55);
      padding: 64px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 52px;
    }
    /* Same source PNG as .nav-logo-mark: a 2000x2000 canvas where the wordmark
       only occupies a thin band in the middle — crop into just that band. */
    .footer-brand-logo-mark {
      display: block;
      overflow: hidden;
      width: 264px;
      height: 56px;
      position: relative;
      margin-bottom: 16px;
    }
    .footer-brand-logo-img {
      position: absolute;
      top: -119.7px;
      left: -14.8px;
      width: 296.3px;
      height: 296.3px;
      max-width: none;
      background: transparent;
    }
    .footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
    .footer-col h5 {
      font-size: 13px;
      font-weight: 800;
      color: rgba(255,255,255,.85);
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul a {
      font-size: 14px;
      color: rgba(255,255,255,.5);
      transition: color var(--dur) var(--ease);
    }
    .footer-col ul a:hover { color: var(--c-brand); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }
    .footer-bottom p { font-size: 13px; }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a {
      font-size: 13px;
      color: rgba(255,255,255,.35);
      transition: color var(--dur) var(--ease);
    }
    .footer-legal a:hover { color: var(--c-brand); }
    .footer-social { display: flex; gap: 10px; }
    .footer-social-btn {
      display: flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,.15);
      color: rgba(255,255,255,.5);
      transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease);
    }
    .footer-social-btn:hover {
      border-color: var(--c-brand);
      color: var(--c-brand);
      background: rgba(27,158,174,.1);
    }

    /* ============================================================
       SCROLL REVEAL
       ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .55s var(--ease), transform .55s var(--ease);
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================================================
       MICROINTERACCIONES & ANIMACIONES
       ============================================================ */

    /* Cards con hover elevación */
    .benefit-card {
      transition: border-color var(--dur) var(--ease),
                  box-shadow var(--dur) var(--ease),
                  transform .2s var(--ease);
    }
    .benefit-card:hover { transform: translateY(-3px); }

    .trust-card {
      transition: box-shadow var(--dur) var(--ease), transform .2s var(--ease);
    }
    .trust-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

    .testimonial-card {
      transition: box-shadow var(--dur) var(--ease), transform .2s var(--ease);
    }
    .testimonial-card:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); }

    .plan-card {
      transition: box-shadow var(--dur) var(--ease), transform .2s var(--ease);
    }

    /* Botones — pulso sutil en el CTA primario del hero */
    @keyframes ctaPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(27,158,174,.35); }
      60%       { box-shadow: 0 0 0 10px rgba(27,158,174,0); }
    }
    .hero-ctas .btn-primary {
      animation: ctaPulse 2.8s ease-in-out infinite;
    }
    .hero-ctas .btn-primary:hover { animation: none; }

    /* Badge de MATCH — pulso */
    @keyframes matchPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(27,158,174,.4); }
      55%       { box-shadow: 0 0 0 8px rgba(27,158,174,0); }
    }
    .pmf-step-match .pmf-icon {
      animation: matchPulse 2.4s ease-in-out infinite;
    }

    /* Pro benefit items hover */
    .pro-benefit-item {
      transition: background var(--dur) var(--ease),
                  border-color var(--dur) var(--ease),
                  transform .2s var(--ease);
    }
    .pro-benefit-item:hover {
      background: rgba(255,255,255,.09);
      border-color: rgba(27,158,174,.35);
      transform: translateY(-2px);
    }

    /* Fade-in suave para la pera decorativa */
    @keyframes pearFloat {
      0%, 100% { transform: translateY(0px) rotate(-2deg); }
      50%       { transform: translateY(-8px) rotate(1deg); }
    }
    .hero-pear {
      animation: pearFloat 5s ease-in-out infinite;
    }

    /* Flecha del match flow — pulso de color */
    @keyframes arrowFade {
      0%, 100% { opacity: .45; }
      50%       { opacity: 1; }
    }
    .pmf-arrow { animation: arrowFade 2s ease-in-out infinite; }

    /* Transición de sección active en tabs */
    .tab-panel { animation: none; }
    .tab-panel.is-active { animation: fadeInTab .3s var(--ease) both; }
    @keyframes fadeInTab {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Focus visible mejorado */
    .btn:focus-visible {
      outline: 3px solid var(--c-brand);
      outline-offset: 3px;
    }

    /* ─── Hero background breathing ─── */
    @keyframes heroBreathe {
      0%, 100% { opacity: .07; transform: scale(1); }
      50%       { opacity: .13; transform: scale(1.08); }
    }
    .hero::before { animation: heroBreathe 8s ease-in-out infinite; }

    /* ─── Shimmer en botón primario ─── */
    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    .btn-primary {
      background-image: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,.18) 50%,
        transparent 60%
      );
      background-size: 200% auto;
      animation: shimmer 3.5s linear infinite;
    }
    .btn-primary:hover { animation: none; background-image: none; }

    /* ─── Hero card entrada ─── */
    @keyframes cardEntrance {
      from { opacity: 0; transform: translateY(30px) scale(.97); }
      to   { opacity: 1; transform: translateY(0)   scale(1); }
    }
    .hero-card { animation: cardEntrance .8s var(--ease) .3s both; }

    /* ─── Floating badges (más movimiento) ─── */
    @keyframes floatBadge1 {
      0%, 100% { transform: translateY(0px) rotate(-1deg); }
      50%       { transform: translateY(-12px) rotate(1deg); }
    }
    @keyframes floatBadge2 {
      0%, 100% { transform: translateY(0px) rotate(1deg); }
      50%       { transform: translateY(-10px) rotate(-1.5deg); }
    }
    .hero-float-1 { animation: floatBadge1 3.2s ease-in-out infinite; }
    .hero-float-2 { animation: floatBadge2 4.1s ease-in-out infinite; }

    /* ─── Nav scroll shrink ─── */
    .nav.is-scrolled .nav-inner { height: 80px; }
    .nav.is-scrolled .nav-logo-mark { width: 188.5px; height: 40px; }
    .nav.is-scrolled .nav-logo-mark img { width: 211.6px; height: 211.6px; top: -85.5px; left: -10.6px; }
    .nav-inner { transition: height .3s var(--ease); }

    /* ─── Step cards stagger entrada ─── */
    .step { transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
    .step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

    /* ─── Trust icon bounce ─── */
    @keyframes iconBounce {
      0%, 100% { transform: translateY(0); }
      40%       { transform: translateY(-6px); }
      60%       { transform: translateY(-3px); }
    }
    .trust-card:hover .trust-icon svg {
      animation: iconBounce .5s ease-in-out;
    }

    /* ─── Plan card shimmer on hover ─── */
    .plan-card.is-featured {
      position: relative;
      overflow: visible;
    }
    .plan-card.is-featured::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(27,158,174,.07) 50%, transparent 60%);
      background-size: 200% auto;
      animation: shimmer 3s linear infinite;
      pointer-events: none;
      border-radius: inherit;
    }

    /* ─── Pro section reveal con slide lateral ─── */
    .pro-grid > div:first-child.reveal { transform: translateX(-24px); opacity: 0; }
    .pro-grid > div:last-child.reveal  { transform: translateX(24px);  opacity: 0; }
    .pro-grid > div.reveal.is-visible  { transform: translateX(0); opacity: 1; }

    /* ─── Dashboard stat número pulse ─── */
    @keyframes statPop {
      0%   { transform: scale(1); }
      50%  { transform: scale(1.12); }
      100% { transform: scale(1); }
    }
    .pro-dash.is-visible .dash-num {
      animation: statPop .6s var(--ease) .5s both;
    }

    /* ─── Dash slot entrada ─── */
    @keyframes slotSlide {
      from { opacity: 0; transform: translateX(14px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .pro-dash.is-visible .dash-slot:nth-child(1) { animation: slotSlide .4s var(--ease) .6s both; }
    .pro-dash.is-visible .dash-slot:nth-child(2) { animation: slotSlide .4s var(--ease) .75s both; }
    .pro-dash.is-visible .dash-slot:nth-child(3) { animation: slotSlide .4s var(--ease) .9s both; }

    /* ─── FAQ item hover ─── */
    .faq-q { transition: background var(--dur) var(--ease), color var(--dur) var(--ease), padding-left var(--dur) var(--ease); }
    .faq-q:hover { padding-left: 26px; }

    /* ─── Nav links hover underline animado ─── */
    .nav-links a { position: relative; }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 13px; right: 13px; bottom: 3px;
      height: 2px;
      background: var(--c-brand);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform .22s var(--ease);
      transform-origin: center;
    }
    .nav-links a:hover::after { transform: scaleX(1); }

    /* ─── Eyebrow entrada ─── */
    @keyframes eyebrowFade {
      from { opacity: 0; letter-spacing: .2em; }
      to   { opacity: 1; letter-spacing: .1em; }
    }
    .eyebrow.is-visible { animation: eyebrowFade .6s var(--ease) both; }

    @media (prefers-reduced-motion: reduce) {
      .hero-ctas .btn-primary,
      .pmf-step-match .pmf-icon,
      .hero-pear,
      .pmf-arrow,
      .hero::before,
      .btn-primary,
      .hero-card,
      .hero-float-1, .hero-float-2,
      .plan-card.is-featured::after { animation: none; }
      .benefit-card:hover,
      .trust-card:hover,
      .testimonial-card:hover,
      .pro-benefit-item:hover,
      .step:hover,
      .objection-card:hover { transform: none; }
      .objection-card:hover .objection-icon { transform: none; }
      .faq-q:hover { padding-left: 20px; }
    }

    /* ============================================================
       RESPONSIVE — TABLET (≤ 900px)
       ============================================================ */
    @media (max-width: 900px) {
      .nav-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
      }
      .nav-links { display: none; }
      .nav-actions { display: none; }
      .hamburger { display: flex; }

      .hero-grid { grid-template-columns: 1fr; }
      .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
      .hero-pear { display: none; }

      .audience-switch-bar { padding: 10px 16px; }
      .audience-switch-btn { font-size: 13px; padding: 10px 16px; }

      .pro-grid { grid-template-columns: 1fr; gap: 40px; }

      .patients-grid { grid-template-columns: 1fr; gap: 40px; }

      .steps-grid { grid-template-columns: 1fr 1fr; }
      .step::after { display: none; }

      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
      .plan-card.is-featured { transform: none; }

      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ============================================================
       RESPONSIVE — MOBILE (≤ 600px)
       ============================================================ */
    @media (max-width: 600px) {
      .section { padding: 56px 0; }
      .hero-ctas { flex-wrap: wrap; }
      .hero-ctas .btn { flex: 1; justify-content: center; min-width: 200px; }
      .patients-cta-row { flex-wrap: wrap; }
      .patients-cta-row .btn { flex: 1; justify-content: center; min-width: 180px; }
      .btn-text-full { display: none; }
      .btn-text-short { display: inline; }
      .benefits-grid { grid-template-columns: 1fr; }
      .pro-benefits { grid-template-columns: 1fr; }
      .trust-grid { grid-template-columns: 1fr; }
      .faq-contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .steps-grid { grid-template-columns: 1fr; }
      .pro-cta-row { flex-wrap: wrap; }
      .pro-cta-row .btn { flex: 1; justify-content: center; min-width: 160px; }
    }
