/* ============ DESIGN TOKENS ============ */
:root{
  --navy-950:#0F0E2E;
  --navy-900:#14123B;
  --logo-navy:#1F1863;
  --navy-800:#1D1A52;
  --indigo-700:#2E2A94;
  --indigo-600:#3B36B0;
  --indigo-500:#4B3FE0;
  --indigo-400:#6C5FF0;
  --violet-400:#8B7BF7;
  --grad-primary:linear-gradient(135deg,#2E2A94 0%,#4B3FE0 55%,#8B7BF7 100%);
  --grad-soft:linear-gradient(135deg,rgba(46,42,148,.07) 0%,rgba(139,123,247,.10) 100%);
  --bg:#FFFFFF;
  --bg-section:#F6F6FC;
  --bg-navy-section:var(--navy-900);
  --card:#FFFFFF;
  --border:#E7E6F5;
  --border-dark:rgba(255,255,255,.12);
  --text:#14132B;
  --text-muted:#6A6884;
  --text-on-dark:#FFFFFF;
  --text-on-dark-muted:#B4B1DA;
  --success:#16A34A;
  --warning:#D97706;
  --error:#DC2626;
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --shadow-sm:0 2px 8px rgba(20,18,60,.06);
  --shadow-md:0 8px 24px rgba(20,18,60,.08);
  --shadow-lg:0 20px 48px rgba(20,18,60,.14);
  --shadow-glow:0 8px 32px rgba(75,63,224,.28);
  --maxw:1440px;
  --contentw:1280px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,.font-display{font-family:'Manrope',sans-serif;font-weight:800;letter-spacing:-0.02em;}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
.container{max-width:var(--contentw);margin:0 auto;padding:0 32px;}
.wrap{max-width:var(--maxw);margin:0 auto;}
section{position:relative;}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;scroll-behavior:auto !important;}
}

/* focus visibility */
a:focus-visible,button:focus-visible,input:focus-visible{outline:2px solid var(--indigo-500);outline-offset:3px;border-radius:6px;}

/* ============ SCROLL REVEAL ============ */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s cubic-bezier(.2,.7,.2,1),transform .7s cubic-bezier(.2,.7,.2,1);}
.reveal.left{transform:translateX(-28px);}
.reveal.right{transform:translateX(28px);}
.reveal.in{opacity:1;transform:none;}

/* ============ EYEBROW / LABEL ============ */
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  color:var(--indigo-600);
  background:var(--grad-soft);
  padding:7px 16px;border-radius:99px;
  border:1px solid rgba(75,63,224,.18);
  margin-bottom:20px;
}
.eyebrow.on-dark{color:#C9C3FF;background:rgba(139,123,247,.14);border-color:rgba(139,123,247,.3);}
.eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--indigo-500);}

.section-head{max-width:680px;margin-bottom:56px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head h2{font-size:clamp(28px,3.4vw,42px);line-height:1.15;margin-bottom:14px;color:var(--text);}
.section-head p{font-size:17px;color:var(--text-muted);line-height:1.65;}
.section-head.on-dark h2{color:#fff;}
.section-head.on-dark p{color:var(--text-on-dark-muted);}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:15px 28px;border-radius:12px;font-weight:700;font-size:15px;
  transition:transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s ease, background .25s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--grad-primary);color:#fff;box-shadow:var(--shadow-glow);}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 14px 40px rgba(75,63,224,.4);}
.btn-outline{background:transparent;color:var(--text);border:1.5px solid var(--border);}
.btn-outline:hover{border-color:var(--indigo-500);color:var(--indigo-600);transform:translateY(-3px);}
.btn-outline.on-dark{color:#fff;border-color:var(--border-dark);}
.btn-outline.on-dark:hover{border-color:#fff;}
.btn-quote{background:#F97316;color:#fff;box-shadow:0 8px 20px rgba(249,115,22,.35);}
.btn-quote:hover{background:#EA6A0C;transform:translateY(-3px);box-shadow:0 14px 30px rgba(249,115,22,.45);}
.btn-sm{padding:10px 18px;font-size:13.5px;border-radius:10px;}
.btn-lg{padding:14px 30px;font-size:15px;border-radius:13px;}

/* ============ HEADER ============ */
header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:16px 0;
  background:#fff;
  box-shadow:0 1px 0 rgba(20,18,60,.07);
  border-bottom:1px solid var(--border);
  transition:box-shadow .35s ease, padding .35s ease;
}
header.scrolled{
  box-shadow:0 4px 20px rgba(20,18,60,.09);
  padding:12px 0;
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;}
.logo{display:flex;align-items:center;gap:10px;}
.logo img{height:56px;width:auto;display:block;transition:height .3s ease;}
header.scrolled .logo img{height:48px;}

nav.primary-nav{display:flex;gap:2px;align-items:center;}
nav.primary-nav a{
  padding:9px 15px;border-radius:9px;font-size:14.5px;font-weight:700;
  color:var(--logo-navy);transition:background .25s ease,color .25s ease;
}
nav.primary-nav a:hover{background:var(--bg-section);color:var(--indigo-500);}

.header-actions{display:flex;align-items:center;gap:10px;}
.header-actions .login-link{color:var(--logo-navy);font-weight:700;font-size:14.5px;padding:10px 8px;}
.burger{display:none;width:40px;height:40px;border-radius:9px;align-items:center;justify-content:center;color:var(--logo-navy);}

/* ============ HERO ============ */
.hero{
  background:linear-gradient(180deg,var(--navy-950) 0%, var(--navy-900) 60%, var(--indigo-700) 130%);
  padding:44px 0 28px;
  position:relative;overflow:hidden;
  color:#fff;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size:26px 26px;
  mask-image:radial-gradient(ellipse 70% 60% at 30% 20%, black 10%, transparent 70%);
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 30% 20%, black 10%, transparent 70%);
  pointer-events:none;
}
.hero-glow{position:absolute;width:640px;height:640px;border-radius:50%;
  background:radial-gradient(circle, rgba(139,123,247,.35) 0%, transparent 70%);
  top:-220px;right:-160px;filter:blur(10px);pointer-events:none;}
.hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:56px;align-items:center;position:relative;z-index:2;}
.hero-eyebrow{margin-bottom:14px;}
.hero-trust-badge{display:flex;align-items:center;gap:10px;margin-bottom:18px;font-size:13.5px;color:#E4E2FF;}
.hero-trust-badge strong{color:#fff;font-weight:800;}
.htb-avatars{display:flex;flex-shrink:0;}
.htb-dot{width:22px;height:22px;border-radius:50%;background:var(--grad-primary);border:2px solid var(--navy-950);margin-left:-8px;}
.htb-avatars .htb-dot:first-child{margin-left:0;}
.hero-copy .h1-brand{font-size:clamp(30px,3.6vw,46px);line-height:1.08;margin-bottom:14px;font-family:'Manrope',sans-serif;font-weight:800;}
.hero-copy .h1-brand span{background:linear-gradient(120deg,#fff, #C9C3FF 60%, #8B7BF7);-webkit-background-clip:text;background-clip:text;color:transparent;}
.hero-copy h2{font-size:17px;font-weight:600;color:#E4E2FF;line-height:1.45;margin-bottom:12px;font-family:'Inter',sans-serif;}
.hero-copy h3{font-size:14px;font-weight:400;color:var(--text-on-dark-muted);line-height:1.6;max-width:540px;margin-bottom:18px;}
.hero-cta-row{display:flex;gap:14px;align-items:center;margin-bottom:20px;flex-wrap:wrap;}
.trust-badges{display:flex;flex-wrap:wrap;gap:9px 22px;}
.trust-badges .badge{display:flex;align-items:center;gap:8px;font-size:13.5px;font-weight:600;color:#D8D5FF;}
.trust-badges svg{color:#8B7BF7;flex-shrink:0;}

/* Hero illustration */
.hero-illustration{position:relative;height:340px;}
.globe-card{
  position:absolute;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-md);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  padding:13px 15px;box-shadow:0 20px 50px rgba(0,0,0,.35);
  animation:float 6s ease-in-out infinite;
}
.globe-card .gc-top{display:flex;align-items:center;gap:9px;margin-bottom:7px;}
.globe-card .gc-icon{width:26px;height:26px;border-radius:7px;background:var(--grad-primary);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.globe-card .gc-title{font-size:12.5px;font-weight:700;color:#fff;}
.globe-card .gc-sub{font-size:11px;color:var(--text-on-dark-muted);}
.globe-card .gc-tag{display:inline-block;margin-top:7px;font-size:10px;font-weight:700;padding:3px 9px;border-radius:99px;}
.gc-verified{background:rgba(22,163,74,.18);color:#4ADE80;}
.gc-open{background:rgba(75,63,224,.25);color:#B4A9FF;}

.card-member{top:8%;left:0;width:230px;animation-delay:0s;}
.card-quote{bottom:20%;left:6%;width:250px;animation-delay:1.2s;}
.card-container{top:4%;right:0;width:225px;animation-delay:.6s;}
.card-stats{bottom:2%;right:4%;width:210px;animation-delay:1.8s;}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}

.hero-illustration svg.routes{position:absolute;inset:0;width:100%;height:100%;}
.route-path{fill:none;stroke:url(#routeGrad);stroke-width:1.6;stroke-dasharray:6 6;opacity:.6;animation:dash 30s linear infinite;}
@keyframes dash{to{stroke-dashoffset:-400;}}
.route-dot{fill:#fff;}
.route-node{fill:#8B7BF7;}

/* ============ CLIENT LOGOS MARQUEE ============ */
.logos-marquee-section{background:var(--navy-900);padding:124px 0 40px;margin-top:-1px;}
.marquee-label{text-align:center;font-size:12.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--text-on-dark-muted);margin-bottom:22px;}
.marquee-wrap{width:100%;overflow:hidden;position:relative;}
.marquee-wrap::before,.marquee-wrap::after{content:"";position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none;}
.marquee-wrap::before{left:0;background:linear-gradient(90deg,var(--navy-900),transparent);}
.marquee-wrap::after{right:0;background:linear-gradient(270deg,var(--navy-900),transparent);}
.marquee-track{display:flex;gap:20px;width:max-content;animation:marquee 36s linear infinite;}
.marquee-wrap:hover .marquee-track{animation-play-state:paused;}
.logo-tile{flex-shrink:0;width:150px;height:76px;background:#fff;border-radius:13px;display:flex;align-items:center;justify-content:center;padding:13px;box-shadow:0 8px 24px rgba(0,0,0,.18);}
.logo-tile img{max-width:100%;max-height:100%;object-fit:contain;}
@keyframes marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* ============ GENERIC SECTIONS ============ */
.section-pad{padding:100px 0;}
.section-alt{background:var(--bg-section);}
.section-dark{background:var(--navy-900);color:#fff;}

/* ============ MEMBER CARDS ============ */
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}

.card{
  background:var(--card);border:1px solid var(--border);border-radius:var(--radius-md);
  padding:28px;transition:transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:rgba(75,63,224,.25);}

.member-card .m-head{display:flex;gap:12px;align-items:center;margin-bottom:16px;}
.m-avatar{width:48px;height:48px;border-radius:12px;background:var(--grad-primary);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:16px;flex-shrink:0;}
.m-logo{width:48px;height:48px;border-radius:12px;background:#fff;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;padding:6px;flex-shrink:0;}
.m-logo img{max-width:100%;max-height:100%;object-fit:contain;}
.m-name{font-weight:700;font-size:15.5px;display:flex;align-items:center;gap:6px;}
.m-role{font-size:13px;color:var(--text-muted);}
.verified-tick{color:var(--indigo-500);flex-shrink:0;}
.m-tags{display:flex;gap:6px;flex-wrap:wrap;margin-top:14px;}
.tag{font-size:11.5px;font-weight:700;padding:4px 10px;border-radius:99px;background:var(--bg-section);color:var(--text-muted);}
.m-country{font-size:12.5px;color:var(--text-muted);display:flex;align-items:center;gap:6px;margin-top:14px;}

/* ============ ICON TILE ============ */
.icon-tile{width:52px;height:52px;border-radius:14px;background:var(--grad-soft);display:flex;align-items:center;justify-content:center;color:var(--indigo-600);margin-bottom:20px;}
.icon-tile.on-dark{background:rgba(139,123,247,.14);color:#B4A9FF;}
.feature-card h4{font-size:18px;margin-bottom:10px;font-weight:700;}
.feature-card p{font-size:14.5px;color:var(--text-muted);line-height:1.65;}

/* ============ VERIFICATION PROOF ============ */
.verify-proof{margin-top:48px;background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px 36px;display:flex;align-items:center;gap:28px;flex-wrap:wrap;box-shadow:var(--shadow-sm);}
.vp-icon{width:56px;height:56px;border-radius:16px;background:var(--grad-primary);color:#fff;display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:var(--shadow-glow);}
.vp-text{flex:1;min-width:260px;}
.vp-text h4{font-size:17px;font-weight:700;margin-bottom:8px;color:var(--text);}
.vp-text p{font-size:14.5px;color:var(--text-muted);font-weight:600;}
.vp-plus{color:var(--indigo-500);font-weight:800;margin:0 4px;}
.vp-stat{text-align:center;padding-left:28px;border-left:1px solid var(--border);flex-shrink:0;}
.vp-num{display:block;font-family:'Manrope',sans-serif;font-weight:800;font-size:28px;color:var(--indigo-700);}
.vp-label{font-size:12px;color:var(--text-muted);font-weight:600;}
@media(max-width:700px){.vp-stat{border-left:none;padding-left:0;padding-top:16px;border-top:1px solid var(--border);width:100%;text-align:left;}}

/* ============ HOW IT WORKS TIMELINE ============ */
.timeline-wrap{overflow-x:auto;padding-bottom:8px;scrollbar-width:thin;}
.timeline{display:flex;gap:0;min-width:1180px;position:relative;padding-top:8px;}
.timeline::before{content:"";position:absolute;top:29px;left:34px;right:34px;height:2px;background:linear-gradient(90deg,var(--border) 0%, var(--indigo-400) 100%);}
.tl-step{flex:1;text-align:left;padding:0 14px;position:relative;}
.tl-num{width:58px;height:58px;border-radius:50%;background:#fff;border:2px solid var(--border);display:flex;align-items:center;justify-content:center;font-weight:800;font-family:'Manrope',sans-serif;color:var(--indigo-600);margin-bottom:20px;position:relative;z-index:2;transition:all .3s ease;}
.tl-step:hover .tl-num{background:var(--grad-primary);color:#fff;border-color:transparent;box-shadow:var(--shadow-glow);}
.tl-step h4{font-size:15px;margin-bottom:6px;font-weight:700;}
.tl-step p{font-size:13px;color:var(--text-muted);line-height:1.55;}

/* ============ BENEFITS ============ */
.benefits-layout{display:grid;grid-template-columns:.9fr 1.1fr;gap:64px;align-items:center;}
.benefit-row{display:flex;gap:18px;padding:22px 0;border-bottom:1px solid var(--border);}
.benefit-row:last-child{border-bottom:none;}
.benefit-icon{width:44px;height:44px;border-radius:12px;background:var(--grad-soft);display:flex;align-items:center;justify-content:center;color:var(--indigo-600);flex-shrink:0;}
.benefit-row h4{font-size:16px;margin-bottom:5px;font-weight:700;}
.benefit-row p{font-size:14px;color:var(--text-muted);line-height:1.6;}
.benefits-visual{background:var(--grad-primary);border-radius:var(--radius-lg);padding:44px;color:#fff;position:relative;overflow:hidden;min-height:460px;display:flex;flex-direction:column;justify-content:center;}
.benefits-visual::before{content:"";position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);background-size:22px 22px;opacity:.5;}
.bv-card{position:relative;z-index:2;background:rgba(255,255,255,.12);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.25);border-radius:var(--radius-md);padding:20px;margin-bottom:16px;}
.bv-card:last-child{margin-bottom:0;}
.bv-card .bv-num{font-size:28px;font-weight:800;font-family:'Manrope',sans-serif;}
.bv-card .bv-label{font-size:13px;color:rgba(255,255,255,.85);}

/* ============ QUOTE / CONTAINER CARDS ============ */
.quote-card{border-radius:var(--radius-md);}
.qc-route{display:flex;align-items:center;gap:10px;font-weight:700;font-size:15px;margin-bottom:6px;}
.qc-route .arrow{color:var(--indigo-400);}
.qc-meta{display:flex;justify-content:space-between;align-items:flex-end;margin-top:18px;padding-top:16px;border-top:1px solid var(--border);}
.qc-price{font-size:20px;font-weight:800;color:var(--indigo-700);font-family:'Manrope',sans-serif;}
.qc-price span{font-size:12px;font-weight:600;color:var(--text-muted);}
.status-pill{font-size:11px;font-weight:700;padding:4px 10px;border-radius:99px;}
.status-open{background:rgba(22,163,74,.1);color:var(--success);}
.status-limited{background:rgba(217,119,6,.1);color:var(--warning);}

/* ============ REFERRAL ============ */
.referral-band{background:var(--navy-900);border-radius:var(--radius-lg);padding:64px;display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center;color:#fff;position:relative;overflow:hidden;}
.referral-band::after{content:"";position:absolute;width:420px;height:420px;background:radial-gradient(circle,rgba(139,123,247,.35),transparent 70%);top:-140px;right:-100px;}
.referral-band h3{font-size:30px;margin-bottom:12px;position:relative;z-index:2;}
.referral-band p{color:var(--text-on-dark-muted);font-size:15px;max-width:480px;position:relative;z-index:2;}
.referral-steps{list-style:none;margin:20px 0 0;max-width:460px;position:relative;z-index:2;}
.referral-steps li{display:flex;align-items:flex-start;gap:12px;font-size:13.5px;color:var(--text-on-dark-muted);padding:6px 0;line-height:1.5;}
.rs-num{flex-shrink:0;width:20px;height:20px;border-radius:50%;background:rgba(139,123,247,.25);color:#B4A9FF;font-size:11px;font-weight:800;display:flex;align-items:center;justify-content:center;margin-top:1px;}
.referral-stat{text-align:center;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);border-radius:var(--radius-md);padding:26px 34px;position:relative;z-index:2;}
.referral-stat .r-num{font-size:34px;font-weight:800;font-family:'Manrope',sans-serif;}
.referral-stat .r-label{font-size:12.5px;color:var(--text-on-dark-muted);margin-top:4px;}

/* ============ EVENTS ============ */
.event-card{overflow:hidden;padding:0;}
.event-banner{height:150px;background:var(--grad-primary);position:relative;display:flex;align-items:flex-end;padding:18px;}
.event-banner::before{content:"";position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);background-size:16px 16px;}
.event-date{background:#fff;color:var(--indigo-700);border-radius:10px;padding:8px 12px;text-align:center;font-weight:800;font-family:'Manrope',sans-serif;position:relative;z-index:2;line-height:1.1;}
.event-date .month{font-size:10px;letter-spacing:.06em;display:block;font-weight:700;}
.event-date .day{font-size:19px;}
.event-body{padding:22px;}
.event-body h4{font-size:16px;margin-bottom:8px;font-weight:700;}
.event-meta{display:flex;align-items:center;gap:6px;font-size:13px;color:var(--text-muted);margin-bottom:5px;}

/* ============ TESTIMONIALS ============ */
.testi-card{background:#fff;}
.testi-stars{color:#F5A623;margin-bottom:14px;display:flex;gap:2px;}
.testi-text{font-size:15px;line-height:1.7;color:var(--text);margin-bottom:22px;}
.testi-person{display:flex;align-items:center;gap:12px;}
.testi-avatar{width:42px;height:42px;border-radius:50%;background:var(--grad-primary);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:14px;}
.testi-name{font-weight:700;font-size:14px;}
.testi-role{font-size:12.5px;color:var(--text-muted);}

/* ============ PRICING ============ */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch;}
.price-card{display:flex;flex-direction:column;position:relative;}
.price-card.featured{background:var(--navy-900);color:#fff;border-color:var(--navy-900);transform:scale(1.03);box-shadow:var(--shadow-lg);}
.price-card.featured:hover{transform:scale(1.03) translateY(-6px);}
.price-badge{position:absolute;top:-13px;left:28px;background:var(--grad-primary);color:#fff;font-size:11.5px;font-weight:700;padding:5px 14px;border-radius:99px;box-shadow:var(--shadow-glow);}
.price-name{font-size:14px;font-weight:700;color:var(--indigo-600);margin-bottom:10px;}
.price-card.featured .price-name{color:#B4A9FF;}
.price-amt{font-size:38px;font-weight:800;font-family:'Manrope',sans-serif;margin-bottom:4px;}
.price-period{font-size:13px;color:var(--text-muted);margin-bottom:22px;}
.price-card.featured .price-period{color:var(--text-on-dark-muted);}
.price-feats{margin-bottom:28px;flex:1;}
.price-feats li{display:flex;gap:10px;align-items:flex-start;font-size:14px;padding:8px 0;color:var(--text-muted);}
.price-card.featured .price-feats li{color:var(--text-on-dark-muted);}
.price-feats svg{flex-shrink:0;margin-top:2px;color:var(--indigo-500);}
.price-card.featured .price-feats svg{color:#8B7BF7;}

/* ============ QUOTES LOCK OVERLAY ============ */
.quotes-feed-wrap{position:relative;}
.quote-locked{filter:blur(5px);user-select:none;pointer-events:none;}
.quotes-lock-overlay{
  position:absolute;left:0;right:0;bottom:0;
  height:78%;display:flex;flex-direction:column;align-items:center;justify-content:flex-end;
  text-align:center;padding:40px 24px 8px;
  background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.85) 30%, #fff 62%);
}
.qlo-icon{width:52px;height:52px;border-radius:14px;background:var(--grad-primary);display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-glow);margin-bottom:16px;}
.quotes-lock-overlay h4{font-size:19px;font-weight:800;margin-bottom:8px;color:var(--text);}
.quotes-lock-overlay p{font-size:14px;color:var(--text-muted);max-width:400px;margin-bottom:20px;line-height:1.6;}

/* ============ PRICING COMPARISON TABLE ============ */
.compare-table-wrap{margin-top:48px;background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:8px;overflow-x:auto;box-shadow:var(--shadow-sm);}
.compare-table{width:100%;border-collapse:collapse;min-width:560px;}
.compare-table th,.compare-table td{padding:16px 18px;text-align:center;font-size:14px;border-bottom:1px solid var(--border);}
.compare-table thead th{font-family:'Manrope',sans-serif;font-weight:800;font-size:13px;color:var(--text);background:var(--bg-section);}
.compare-table thead th:first-child{border-top-left-radius:14px;}
.compare-table thead th:last-child{border-top-right-radius:14px;}
.ct-feature{text-align:left !important;font-weight:600;color:var(--text-muted);}
.compare-table td.ct-feature{color:var(--text);}
.ct-feature-sub{font-weight:700;color:var(--indigo-700);font-family:'Manrope',sans-serif;}
.ct-yes{color:var(--success);font-weight:800;font-size:16px;}
.ct-no{color:var(--border);font-weight:700;}
.ct-highlight{background:var(--grad-soft);}
.compare-table tbody tr:last-child td{border-bottom:none;}
.ct-note{padding:16px 18px 10px;font-size:13.5px;color:var(--text-muted);line-height:1.6;}
.ct-note em{color:var(--indigo-600);font-style:normal;font-weight:700;}

/* ============ FAQ ============ */
.faq-item{border-bottom:1px solid var(--border);}
.faq-q{width:100%;text-align:left;display:flex;justify-content:space-between;align-items:center;padding:24px 4px;font-weight:700;font-size:15.5px;color:var(--text);}
.faq-q .icon-plus{transition:transform .3s ease;color:var(--indigo-500);flex-shrink:0;}
.faq-item.open .icon-plus{transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.faq-a p{padding:0 4px 24px;font-size:14.5px;color:var(--text-muted);line-height:1.7;max-width:90%;}

/* ============ NEWSLETTER ============ */
.newsletter-card{background:var(--grad-primary);border-radius:var(--radius-lg);padding:56px;display:flex;justify-content:space-between;align-items:center;gap:40px;color:#fff;position:relative;overflow:hidden;}
.newsletter-card::before{content:"";position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);background-size:20px 20px;}
.newsletter-card h3{font-size:26px;margin-bottom:8px;position:relative;z-index:2;}
.newsletter-card p{color:rgba(255,255,255,.85);font-size:14.5px;position:relative;z-index:2;}
.newsletter-form{display:flex;gap:10px;position:relative;z-index:2;flex-shrink:0;}
.newsletter-form input{padding:14px 18px;border-radius:12px;border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.12);color:#fff;font-size:14px;width:260px;}
.newsletter-form input::placeholder{color:rgba(255,255,255,.65);}
.newsletter-form .btn{background:#fff;color:var(--indigo-700);box-shadow:none;}
.newsletter-form .btn:hover{transform:translateY(-3px);box-shadow:0 10px 24px rgba(0,0,0,.2);}

/* ============ FINAL CTA ============ */
.final-cta{background:linear-gradient(160deg,var(--navy-950), var(--indigo-700));text-align:center;padding:110px 0;position:relative;overflow:hidden;}
.final-cta::before{content:"";position:absolute;width:600px;height:600px;background:radial-gradient(circle,rgba(139,123,247,.35),transparent 70%);top:-200px;left:50%;transform:translateX(-50%);}
.final-cta h2{color:#fff;font-size:clamp(30px,4vw,46px);margin-bottom:18px;position:relative;z-index:2;}
.final-cta p{color:var(--text-on-dark-muted);font-size:16px;max-width:560px;margin:0 auto 36px;position:relative;z-index:2;}
.final-cta .cta-row{display:flex;gap:16px;justify-content:center;position:relative;z-index:2;flex-wrap:wrap;}

/* ============ FOOTER ============ */
footer{background:var(--navy-950);color:var(--text-on-dark-muted);padding:80px 0 0;}
.footer-grid{display:grid;grid-template-columns:1.4fr repeat(4,1fr);gap:40px;padding-bottom:56px;border-bottom:1px solid var(--border-dark);}
.footer-logo-chip{display:inline-flex;background:#fff;border-radius:14px;padding:12px 20px;}
.footer-logo-chip img{height:44px;width:auto;display:block;}
.footer-brand p{font-size:14px;line-height:1.7;margin:16px 0 20px;max-width:280px;}
.footer-social{display:flex;gap:10px;}
.footer-social a{width:36px;height:36px;border-radius:9px;background:rgba(255,255,255,.06);display:flex;align-items:center;justify-content:center;transition:background .25s ease;}
.footer-social a:hover{background:var(--indigo-500);}
.footer-col h5{color:#fff;font-size:13.5px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;margin-bottom:18px;}
.footer-col li{margin-bottom:12px;}
.footer-col a{font-size:14px;transition:color .25s ease;}
.footer-col a:hover{color:#fff;}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:26px 0;font-size:13px;flex-wrap:wrap;gap:12px;}
.footer-bottom .legal-links{display:flex;gap:22px;}

.payments-row{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;padding:26px 0;border-bottom:1px solid var(--border-dark);}
.footer-contact-row{display:flex;gap:28px;flex-wrap:wrap;padding:22px 0;border-top:1px solid var(--border-dark);}
.fc-item{display:flex;align-items:center;gap:8px;font-size:13.5px;}
.fc-item a{color:#E4E2FF;font-weight:600;}
.fc-item a:hover{color:#fff;}
.payments-label{font-size:12.5px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--text-on-dark-muted);}
.payment-badges{display:flex;gap:10px;flex-wrap:wrap;}
.pay-badge{display:flex;align-items:center;gap:7px;background:rgba(255,255,255,.06);border:1px solid var(--border-dark);border-radius:9px;padding:8px 13px;font-size:12.5px;font-weight:700;color:#E4E2FF;transition:background .25s ease,border-color .25s ease;}
.pay-badge:hover{background:rgba(255,255,255,.1);border-color:rgba(139,123,247,.4);}
.pay-badge svg{flex-shrink:0;}

/* ============ ANIMATED COUNTER helper class ============ */
[data-counter]{font-variant-numeric:tabular-nums;}

/* ============ RESPONSIVE ============ */
@media(max-width:1100px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-illustration{height:360px;margin-top:16px;}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .stat-item:nth-child(2){border-right:none;}
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .grid-3{grid-template-columns:repeat(2,1fr);}
  .benefits-layout{grid-template-columns:1fr;}
  .pricing-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto;}
  .price-card.featured{transform:none;}
  .referral-band{grid-template-columns:1fr;text-align:center;padding:44px 32px;}
  .referral-band p{margin:0 auto;}
}
@media(max-width:860px){
  nav.primary-nav{display:none;}
  .burger{display:flex;}
  .header-actions .login-link{display:none;}
  .grid-4,.grid-3,.grid-2{grid-template-columns:1fr;}
  .stats-grid{grid-template-columns:1fr 1fr;}
  .newsletter-card,.final-cta .cta-row{flex-direction:column;}
  .newsletter-card{flex-direction:column;text-align:center;}
  .newsletter-form{width:100%;}
  .newsletter-form input{width:100%;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .footer-brand{grid-column:1/-1;}
  .footer-bottom{justify-content:center;text-align:center;}
  .payments-row{justify-content:center;text-align:center;}
}
@media(max-width:600px){
  .container{padding:0 20px;}
  .section-pad{padding:70px 0;}
  .hero{padding:32px 0 24px;}
  .logos-marquee-section{padding:108px 0 32px;}
  .footer-grid{grid-template-columns:1fr;}
  .timeline{min-width:900px;}
  .referral-band{padding:36px 22px;}
}
