/* ── TOKENS ─────────────────────────────────────────────── */
  :root {
    --navy:       #0B1D3A;
    --navy-2:     #0F2548;
    --navy-3:     #162E56;
    --blue:       #1565C0;
    --blue-l:     #38A3F5;
    --gold:       #C9A84C;
    --gold-l:     #E8C97A;
    --white:      #ffffff;
    --off:        #F4F8FC;
    --muted:      rgba(255,255,255,0.5);
    --border:     rgba(255,255,255,0.08);
    --ease:       cubic-bezier(0.16,1,0.3,1);
    --font-d:     'Space Grotesk', system-ui, sans-serif;
    --font-b:     'Inter', system-ui, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: var(--font-b); background: var(--navy); color: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
  img  { display: block; max-width: 100%; }
  a    { text-decoration: none; color: inherit; }
  ul   { list-style: none; }

  .c  { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
  .cw { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

  /* ── NAV ─────────────────────────────────────────────────── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 600;
    padding: 0 40px; height: 72px;
    display: flex; align-items: center; justify-content: center;
    transition: background .4s, border-color .4s;
    border-bottom: 1px solid transparent;
  }
  .nav.solid { background: rgba(11,29,58,0.96); backdrop-filter: blur(20px); border-bottom-color: var(--border); }
  .nav-right {
    position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  }
  .nav-logo { height: 68px; width: auto; }

  

  .nav-cta {
    font-family: var(--font-d); font-size: 12px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    background: var(--gold); color: var(--navy);
    padding: 10px 22px; border: none; cursor: pointer;
    transition: background .2s, transform .15s;
  }
  .nav-cta:hover { background: var(--gold-l); transform: translateY(-1px); }

  /* ── HERO ─────────────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    background:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(21,101,192,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 50% 40% at 20% 80%, rgba(56,163,245,0.1) 0%, transparent 60%),
      linear-gradient(160deg, var(--navy) 0%, #0a1628 60%, #071020 100%);
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 0 80px;
    position: relative; overflow: hidden;
  }
  /* circuit grid background */
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(56,163,245,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(56,163,245,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(56,163,245,0.12); border: 1px solid rgba(56,163,245,0.25);
    padding: 5px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--blue-l); margin-bottom: 20px;
  }
  .hero-tag::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue-l); animation: blink 2s infinite;
  }
  @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

  .hero-h1 {
    font-family: var(--font-d); font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700; line-height: 1.05; letter-spacing: -.02em;
    color: var(--white); margin-bottom: 8px;
  }
  .hero-h1 .accent { color: var(--blue-l); }
  .hero-h1 .gold   { color: var(--gold); }

  .hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 300;
    color: rgba(255,255,255,0.72); line-height: 1.7;
    max-width: 480px; margin-bottom: 36px; margin-top: 14px;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
  .btn-primary {
    font-family: var(--font-d); font-size: 13px; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    background: var(--gold); color: var(--navy);
    padding: 14px 28px; border: none; cursor: pointer;
    transition: background .2s, transform .15s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--gold-l); transform: translateY(-1px); }
  .btn-outline {
    font-family: var(--font-d); font-size: 13px; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    background: transparent; border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8); padding: 14px 28px;
    cursor: pointer; transition: border-color .2s, color .2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { border-color: var(--blue-l); color: var(--blue-l); }

  /* trust chips */
  .hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
  .trust-chip {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: rgba(255,255,255,0.65);
  }
  .trust-chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-l); flex-shrink: 0; }


  /* ── PORTAL CARD LINK ── */
  .portal-card-link {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }
  .portal-card-link:hover {
    background: rgba(56,163,245,0.08);
    border-color: rgba(56,163,245,0.4);
    transform: translateY(-2px);
    transition: background .2s, border-color .2s, transform .2s;
  }
  /* subtle arrow hint on hover */
  .portal-card-link .portal-badge::after {
    content: ' ↗';
    font-size: 9px;
    opacity: 0;
    transition: opacity .2s;
  }
  .portal-card-link:hover .portal-badge::after {
    opacity: 1;
  }

  /* ── SYNC VISUALIZER ── */
  .sync-wrap {
    display: flex; flex-direction: column; align-items: center; gap: 0;
    position: relative;
  }
  .portal-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 20px 28px;
    display: flex; align-items: center; gap: 16px;
    width: 100%; max-width: 340px;
    transition: border-color .3s;
    position: relative; z-index: 2;
  }
  .portal-card:hover { border-color: rgba(56,163,245,0.4); }
  .portal-logo-wrap {
    width: 48px; height: 48px; border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; overflow: hidden;
  }
  .portal-logo-wrap img { width: 40px; height: 40px; object-fit: contain; }
  .portal-name { font-family: var(--font-d); font-size: 14px; font-weight: 600; color: var(--white); }
  .portal-desc { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
  .portal-badge {
    margin-left: auto;
    font-size: 10px; font-weight: 700; letter-spacing: .08em;
    padding: 3px 8px; border-radius: 4px;
    background: rgba(56,163,245,0.15); color: var(--blue-l);
    border: 1px solid rgba(56,163,245,0.2);
    white-space: nowrap;
  }

  /* animated sync channel */
  .sync-channel {
    position: relative; width: 100%; max-width: 340px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .sync-line {
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 1px; background: rgba(56,163,245,0.15);
    transform: translateX(-50%);
  }
  .sync-center {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-3), var(--navy-2));
    border: 1px solid rgba(56,163,245,0.3);
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
  }
  .sync-center svg { width: 20px; height: 20px; color: var(--blue-l); }
  /* animated dots travelling up/down */
  .sync-dot {
    position: absolute; left: 50%; width: 6px; height: 6px;
    border-radius: 50%; background: var(--blue-l);
    transform: translateX(-50%);
    box-shadow: 0 0 6px var(--blue-l);
  }
  .sync-dot.up   { animation: travelUp   2.4s ease-in-out infinite; }
  .sync-dot.down { animation: travelDown 2.4s ease-in-out infinite 1.2s; }
  @keyframes travelUp   { 0%{top:100%;opacity:0;} 15%{opacity:1;} 85%{opacity:1;} 100%{top:0;opacity:0;} }
  @keyframes travelDown { 0%{top:0;opacity:0;} 15%{opacity:1;} 85%{opacity:1;} 100%{top:100%;opacity:0;} }

  /* listing count badge on channel */
  .sync-label {
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    background: rgba(11,29,58,0.9); border: 1px solid rgba(56,163,245,0.2);
    border-radius: 20px; padding: 4px 12px;
    font-size: 10px; font-weight: 600; color: var(--blue-l);
    letter-spacing: .08em; white-space: nowrap;
  }

  /* ── STATS STRIP ──────────────────────────────────────────── */
  .stats {
    background: var(--navy-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
  }
  .stat {
    padding: 28px 24px; border-right: 1px solid var(--border);
    position: relative; transition: background .2s;
  }
  .stat:last-child { border-right: none; }
  .stat::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--blue-l); transform: scaleX(0); transform-origin: left;
    transition: transform .35s var(--ease);
  }
  .stat:hover::before { transform: scaleX(1); }
  .stat-val {
    font-family: var(--font-d); font-size: 2rem; font-weight: 700;
    color: var(--blue-l); line-height: 1; letter-spacing: -.02em;
  }
  .stat-key {
    font-size: 10px; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 6px;
  }
  .stat-sub { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }

  /* ── SECTIONS ─────────────────────────────────────────────── */
  .section { padding: 100px 0; }
  .section-alt { background: var(--navy-2); }
  .section-light { background: var(--off); }

  .eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: .25em;
    text-transform: uppercase; color: var(--blue-l);
    display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
  }
  .eyebrow::before { content:''; width:24px; height:1px; background:var(--blue-l); flex-shrink:0; }
  .section-h2 {
    font-family: var(--font-d); font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 16px;
  }
  .section-h2 .acc { color: var(--blue-l); }
  .section-h2 .gold { color: var(--gold); }
  .section-p {
    font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.65);
    max-width: 540px;
  }

  /* ── HOW IT WORKS ─────────────────────────────────────────── */
  .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; }
  .step {
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    padding: 40px 32px; position: relative; overflow: hidden;
    transition: background .2s, border-color .2s;
  }
  .step:hover { background: rgba(56,163,245,0.05); border-color: rgba(56,163,245,0.2); }
  .step-num {
    font-family: var(--font-d); font-size: 4.5rem; font-weight: 700;
    color: rgba(56,163,245,0.08); line-height: 1;
    position: absolute; top: 16px; right: 20px; letter-spacing: -.04em;
    pointer-events: none;
  }
  .step-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: rgba(21,101,192,0.15); border: 1px solid rgba(56,163,245,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .step-icon svg { width: 22px; height: 22px; color: var(--blue-l); }
  .step-title {
    font-family: var(--font-d); font-size: 1.1rem; font-weight: 600;
    color: var(--white); margin-bottom: 10px;
  }
  .step-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.65); }

  /* ── BENEFITS ─────────────────────────────────────────────── */
  .benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 56px; }
  .benefit {
    display: flex; gap: 20px; padding: 32px 28px;
    background: rgba(255,255,255,0.02); border: 1px solid var(--border);
    transition: background .2s;
  }
  .benefit:hover { background: rgba(56,163,245,0.04); }
  .benefit-icon {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 8px;
    background: rgba(21,101,192,0.15); border: 1px solid rgba(56,163,245,0.2);
    display: flex; align-items: center; justify-content: center;
  }
  .benefit-icon svg { width: 20px; height: 20px; color: var(--blue-l); }
  .benefit-title {
    font-family: var(--font-d); font-size: 14px; font-weight: 600;
    color: var(--white); margin-bottom: 6px;
  }
  .benefit-desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.65); }

  /* ── PORTALS SECTION ──────────────────────────────────────── */
  .portals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 56px; }
  .portal-full {
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    padding: 44px 40px; position: relative; overflow: hidden;
    transition: border-color .3s;
  }
  .portal-full:hover { border-color: rgba(56,163,245,0.3); }
  .portal-full-logo { height: 36px; width: auto; margin-bottom: 20px; }
  .portal-full-name {
    font-family: var(--font-d); font-size: 1.3rem; font-weight: 700;
    color: var(--white); margin-bottom: 8px;
  }
  .portal-full-url {
    font-size: 11px; color: var(--blue-l); letter-spacing: .06em;
    margin-bottom: 16px; display: flex; align-items: center; gap: 6px;
  }
  .portal-full-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
  .portal-stat {
    font-family: var(--font-d); font-size: 1.6rem; font-weight: 700;
    color: var(--blue-l);
  }
  .portal-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
  .portal-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: var(--blue-l);
    margin-top: 20px; transition: gap .2s;
  }
  .portal-link:hover { gap: 10px; }
  .portal-link svg { width: 14px; height: 14px; }

  /* equals sign between portals */
  .portals-equals {
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .portals-divider-line {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 1px; background: var(--border); transform: translateX(-50%);
  }

  /* ── PRICING ──────────────────────────────────────────────── */
  .pricing-grid {
    display: grid; grid-template-columns: repeat(5,1fr);
    gap: 2px; margin-top: 56px;
  }
  .price-card {
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    padding: 32px 24px; display: flex; flex-direction: column;
    position: relative; transition: background .2s, border-color .2s;
  }
  .price-card:hover { background: rgba(56,163,245,0.05); border-color: rgba(56,163,245,0.25); }
  .price-card.featured {
    background: rgba(21,101,192,0.12);
    border-color: rgba(56,163,245,0.35);
  }
  .price-card.enterprise {
    background: linear-gradient(160deg, rgba(201,168,76,0.1), rgba(201,168,76,0.04));
    border-color: rgba(201,168,76,0.3);
  }
  .price-popular {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--blue-l); color: var(--navy);
    font-family: var(--font-d); font-size: 9px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 3px 14px; white-space: nowrap;
  }
  .price-tier {
    font-family: var(--font-d); font-size: 11px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 6px;
  }
  .price-tier.featured-label { color: var(--blue-l); }
  .price-tier.enterprise-label { color: var(--gold); }
  .price-tagline { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
  .price-amount {
    font-family: var(--font-d); font-size: 2.4rem; font-weight: 700;
    color: var(--white); line-height: 1; letter-spacing: -.03em;
    margin-bottom: 4px;
  }
  .price-amount sup { font-size: 1.2rem; vertical-align: super; }
  .price-amount.free-color { color: rgba(255,255,255,0.4); }
  .price-amount.featured-color { color: var(--blue-l); }
  .price-amount.enterprise-color { color: var(--gold); }
  .price-period { font-size: 11px; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
  .price-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
  .price-features { flex: 1; }
  .price-feature {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 12px; color: rgba(255,255,255,0.72);
    padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .price-feature:last-child { border-bottom: none; }
  .price-feature svg { width: 13px; height: 13px; color: var(--blue-l); flex-shrink:0; margin-top:1px; }
  .price-feature.ent svg { color: var(--gold); }

  /* ── FINAL CTA ────────────────────────────────────────────── */
  .final-cta {
    background:
      radial-gradient(ellipse 70% 80% at 50% 50%, rgba(21,101,192,0.2) 0%, transparent 70%),
      var(--navy-3);
    padding: 100px 0; text-align: center;
    border-top: 1px solid var(--border);
  }
  .final-h2 {
    font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; line-height: 1.1; margin-bottom: 16px;
  }
  .final-p { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
  .final-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

  /* ── FOOTER ───────────────────────────────────────────────── */
  .footer {
    background: #070F1E; border-top: 1px solid var(--border);
    padding: 40px 0;
  }
  .footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
  }
  .footer-logo { height: 58px; width: auto; max-width: 160px; }
  .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
  .footer-link { font-size: 12px; color: rgba(255,255,255,0.3); transition: color .2s; }
  .footer-link:hover { color: var(--blue-l); }
  .footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }

  /* ── REVEAL ───────────────────────────────────────────────── */
  .rv { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
  .rv.in { opacity: 1; transform: none; }
  .rv.d1 { transition-delay: .1s; } .rv.d2 { transition-delay: .2s; } .rv.d3 { transition-delay: .3s; }

  /* ── RESPONSIVE ───────────────────────────────────────────── */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .sync-wrap { display: none; }
    .pricing-grid { grid-template-columns: repeat(3,1fr); }
    .price-card:nth-child(4),
    .price-card:nth-child(5) { grid-column: span 1; }
    .portals-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat:nth-child(2) { border-right: none; }
  }
  @media (max-width: 640px) {
    .c, .cw { padding: 0 20px; }
    .nav { padding: 0 20px; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .price-card:last-child { grid-column: span 2; }
    .section { padding: 72px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── BENEFITS GOLD SECTION OVERRIDES ── */
  .section-light {
    background:
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
      var(--navy-2);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    position: relative;
  }
  /* gold top accent line */
  .section-light::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
    pointer-events: none;
  }
  .section-light .eyebrow { color: var(--gold); }
  .section-light .eyebrow::before { background: var(--gold); }
  .section-light .section-h2 .acc { color: var(--gold); }
  .section-light .benefit {
    background: rgba(201,168,76,0.04);
    border-color: rgba(201,168,76,0.12);
  }
  .section-light .benefit:hover {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.25);
  }
  .section-light .benefit-icon {
    background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.2);
  }
  .section-light .benefit-icon svg { color: var(--gold); }

  /* ── CONTACT TILES ── */
  .contact-tile {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 32px 20px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    text-decoration: none; transition: background .2s, border-color .2s;
    gap: 10px;
  }
  .contact-tile:hover { background: rgba(56,163,245,0.07); border-color: rgba(56,163,245,0.25); }
  .contact-tile-wa:hover { background: rgba(37,211,102,0.07); border-color: rgba(37,211,102,0.3); }
  .contact-tile-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: rgba(21,101,192,0.15); border: 1px solid rgba(56,163,245,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-l);
  }
  .contact-tile-icon svg { width: 20px; height: 20px; }
  .contact-tile-icon-wa { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.25); color: #25d366; }
  .contact-tile-label {
    font-size: 10px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: rgba(255,255,255,0.3);
  }
  .contact-tile-value {
    font-family: var(--font-d); font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.75); word-break: break-all;
  }
  @media (max-width: 640px) {
    .contact-tile-value { font-size: 11px; }
    #contact > .c > .rv > div[style*="grid"] { grid-template-columns: 1fr; }
  }

  /* ── HERO SOCIAL PROOF ── */
  .hero-proof {
    display: flex; align-items: center; gap: 20px;
    margin-top: 36px; padding: 20px 24px;
    border: 1px solid rgba(201,168,76,0.2);
    background: rgba(201,168,76,0.06);
    border-radius: 6px;
    width: fit-content;
  }
  .proof-avatars { display: flex; }
  .proof-avatars img {
    width: 38px; height: 38px; border-radius: 50%;
    border: 2px solid rgba(201,168,76,0.3);
    object-fit: cover; object-position: top;
    margin-right: -10px; flex-shrink: 0;
  }
  .proof-avatars img:last-child { margin-right: 0; }
  .proof-text { padding-left: 6px; }
  .proof-stars {
    color: var(--gold); font-size: 14px;
    letter-spacing: .08em; margin-bottom: 4px;
  }
  .proof-count {
    font-family: var(--font-d); font-size: 1.15rem; font-weight: 700;
    color: var(--white); line-height: 1.1;
  }
  .proof-copy {
    font-size: 12px; color: rgba(255,255,255,0.6);
    margin-top: 1px;
  }

  /* ── PRICING SECTION ── */
  .section-pricing {
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(21,101,192,0.12) 0%, transparent 60%),
      var(--navy);
    border-top: 1px solid var(--border);
    padding: 110px 0 120px;
  }

  /* PRO card elevated */
  .price-featured-elevated {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(56,163,245,0.4);
    z-index: 2;
    position: relative;
  }
  .price-featured-elevated .price-amount { font-size: 2.8rem; }

  /* ── OR DIVIDER ── */
  .final-or {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 36px;
  }
  .final-or-line { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
  .final-or-text {
    font-size: 12px; font-weight: 500; letter-spacing: .08em;
    color: rgba(255,255,255,0.3); white-space: nowrap;
    text-transform: uppercase;
  }

  /* ── FINAL CONTACT GRID ── */
  .final-contact-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
    max-width: 720px; margin: 0 auto;
  }

  @media (max-width: 640px) {
    .price-featured-elevated { transform: none; box-shadow: 0 0 0 1px rgba(56,163,245,0.4); }
    .final-contact-grid { grid-template-columns: 1fr; }
    .hero-proof { flex-direction: column; align-items: flex-start; gap: 10px; }
  }
  /* ── TESTIMONIALS ── */
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  }
  .testi-card {
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    padding: 36px 32px; display: flex; flex-direction: column; gap: 20px;
    transition: background .2s, border-color .2s;
  }
  .testi-card:hover { background: rgba(56,163,245,0.05); border-color: rgba(56,163,245,0.2); }
  .testi-stars { color: var(--gold); font-size: 15px; letter-spacing: .08em; }
  .testi-quote {
    font-family: var(--font-d); font-size: 1.05rem; font-weight: 300;
    font-style: italic; line-height: 1.75;
    color: rgba(255,255,255,0.72); flex: 1;
  }
  .testi-quote::before { content: '"'; color: var(--blue-l); font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-right: 2px; }
  .testi-quote::after  { content: '"'; color: var(--blue-l); font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-left: 2px; }
  .testi-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border); }
  .testi-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), var(--blue-l));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-d); font-size: 14px; font-weight: 600; color: #fff;
  }
  .testi-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
  .testi-role { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }

  /* ── MAP SECTION ── */
  .map-wrap { position: relative; }
  .map-inner {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border); overflow: hidden;
    padding: 40px 32px 0;
  }
  .map-svg-wrap { width: 100%; }
  .panama-map { width: 100%; height: auto; display: block; }
  .panama-shape {
    fill: rgba(21,101,192,0.18);
    stroke: rgba(56,163,245,0.4);
    stroke-width: 1.5;
    stroke-linejoin: round;
  }
  .map-pulse { animation: mapPulse 3s ease-in-out infinite; }
  @keyframes mapPulse { 0%,100%{opacity:.25;transform:scale(1);} 50%{opacity:.65;transform:scale(1.6);} }
  /* stats row */
  .map-stats {
    display: flex; gap: 0; margin-top: 0; border-top: 1px solid var(--border);
  }
  .map-stat-item {
    flex: 1; text-align: center; padding: 18px 8px;
    border-right: 1px solid var(--border);
  }
  .map-stat-item:last-child { border-right: none; }
  .map-stat-val {
    font-family: var(--font-d); font-size: 1.6rem; font-weight: 700;
    color: var(--blue-l); line-height: 1;
  }
  .map-stat-key {
    font-size: 10px; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 5px;
  }

  /* ── FAQ ── */
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-btn {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 22px 0; background: none; border: none; cursor: pointer;
    font-family: var(--font-b); font-size: 16px; font-weight: 500;
    color: rgba(255,255,255,0.85); text-align: left;
    transition: color .2s;
  }
  .faq-btn:hover { color: var(--blue-l); }
  .faq-btn.open { color: var(--blue-l); }
  .faq-icon {
    font-size: 20px; font-weight: 300; color: var(--blue-l);
    flex-shrink: 0; line-height: 1; transition: transform .3s;
  }
  .faq-btn.open .faq-icon { transform: rotate(45deg); }
  .faq-body {
    display: none; padding: 0 0 24px;
    font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.65);
  }
  .faq-body.open { display: block; animation: fi .3s ease; }
  .faq-body p { margin: 0; }

  /* ── PRICING GOLD ACCENT LINE ── */
  .section-pricing::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
    pointer-events: none;
  }
  .section-pricing { position: relative; }

  /* ── RESPONSIVE: new sections ── */
  @media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: 1fr; gap: 2px; }
  }
  @media (max-width: 640px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .map-stats { flex-wrap: wrap; }
    .map-stat-item { min-width: 50%; }
  }

  /* ── WASI INTEGRATION ── */
  #integraciones {
    background:
      radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
      var(--navy-2);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    position: relative;
  }
  #integraciones::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.45), transparent);
  }
  .wasi-grid {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 0; align-items: center;
    background: rgba(255,255,255,0.02); border: 1px solid var(--border);
    margin-bottom: 32px;
  }
  .wasi-side {
    padding: 44px 40px; display: flex; flex-direction: column; gap: 16px;
  }
  .wasi-side-right { border-left: 1px solid var(--border); align-items: center; }
  .wasi-logo-wrap {
    height: 36px; display: flex; align-items: center;
  }
  .wasi-logo-wrap img { height: 32px; width: auto; }
  .wasi-fallback {
    font-family: var(--font-d); font-size: 1.6rem; font-weight: 700;
    color: rgba(255,255,255,0.85);
  }
  .wasi-label {
    font-size: 12px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: rgba(255,255,255,0.3);
  }
  .wasi-props { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
  .wasi-prop-row {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.65);
  }
  .wasi-prop-muted { color: rgba(255,255,255,0.3); font-style: italic; }
  .wasi-prop-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue-l); flex-shrink: 0;
  }
  /* center sync */
  .wasi-center {
    padding: 40px 36px; border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; gap: 16px;
  }
  .wasi-sync-track {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
  }
  .wasi-sync-line {
    width: 1px; height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(56,163,245,0.4));
  }
  .wasi-sync-arrow {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(21,101,192,0.15); border: 1px solid rgba(56,163,245,0.3);
    display: flex; align-items: center; justify-content: center; color: var(--blue-l);
    animation: spinSlow 6s linear infinite;
  }
  .wasi-sync-arrow svg { width: 22px; height: 22px; }
  @keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .wasi-sync-badge {
    font-size: 10px; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: var(--blue-l);
    background: rgba(56,163,245,0.08); border: 1px solid rgba(56,163,245,0.2);
    padding: 4px 12px; border-radius: 20px; white-space: nowrap;
  }
  .wasi-plan-note {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; color: rgba(255,255,255,0.25);
    letter-spacing: .04em; white-space: nowrap;
  }
  .wasi-plan-note svg { color: var(--gold); flex-shrink: 0; }
  /* portal chips */
  .wasi-portals-stack { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 200px; }
  .wasi-portal-chip {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 14px; border-radius: 4px;
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8);
  }
  .chip-live {
    margin-left: auto;
    font-size: 9px; font-weight: 700; letter-spacing: .08em;
    color: var(--blue-l); background: rgba(56,163,245,0.1);
    border: 1px solid rgba(56,163,245,0.2); padding: 2px 7px;
    border-radius: 3px;
  }
  /* bottom benefits strip */
  .wasi-benefits {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 2px;
  }
  .wasi-benefit {
    display: flex; align-items: center; gap: 8px;
    padding: 16px 20px; font-size: 13px; color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  }
  .wasi-benefit svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

  /* responsive */
  @media (max-width: 1024px) {
    .wasi-grid { grid-template-columns: 1fr; }
    .wasi-center { border-left: none; border-right: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); flex-direction: row; justify-content: center; padding: 28px 24px; }
    .wasi-side-right { border-left: none; }
    .wasi-benefits { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .wasi-benefits { grid-template-columns: 1fr; }
    .wasi-side { padding: 32px 24px; }
  }