/* ============================================================
   MOTIVATION DRIVERS — PLATFORM DESIGN SYSTEM (v2)
   Palette + typography from the official brand pack:
   Deep Navy / Midnight Blue / Royal Blue / Electric Blue /
   Cyan Accent / Silver Mist — Montserrat + Lato
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Lato:wght@300;400;600;700&display=swap');

:root {
  --navy:    #0D1B2A;
  --navy2:   #102A43;
  --royal:   #1E3A8A;
  --blue:    #2563EB;
  --blue2:   #3B76F0;
  --cyan:    #06B6D4;
  --silver:  #94A3B8;

  --bluep:   #EAF1FE;
  --cyanp:   #E3F8FB;
  --silverp: #F1F4F7;

  --ink:     #0A1420;
  --ink2:    #0D1B2A;
  --mid:     #26364A;
  --muted:   #5D6E82;
  --border:  #DCE4EE;
  --border2: #C7D3E1;
  --bg:      #F7F9FC;
  --white:   #FFFFFF;

  --fd: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1140px;
  --sp:  92px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body { font-family:var(--ff); background:var(--bg); color:var(--ink); line-height:1.65; font-size:16px; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
img { max-width:100%; height:auto; display:block; }
a   { text-decoration:none; color:inherit; }
h1,h2,h3,h4 { font-family:var(--fd); font-weight:800; line-height:1.15; letter-spacing:-.01em; }
.container { width:100%; max-width:var(--max); margin:0 auto; padding:0 28px; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; border:none; cursor:pointer; font-family:var(--fd); font-weight:700; border-radius:9px; transition:all .2s; white-space:nowrap; letter-spacing:.01em; text-decoration:none; }
.btn-lg { padding:15px 30px; font-size:15px; }
.btn-md { padding:12px 22px; font-size:14px; }
.btn-sm { padding:9px 18px; font-size:13px; }
.btn-fire  { background:var(--blue); color:var(--white); }
.btn-fire:hover  { background:var(--blue2); transform:translateY(-2px); box-shadow:0 8px 26px rgba(37,99,235,.32); }
.btn-teal  { background:var(--navy); color:var(--white); }
.btn-teal:hover  { background:var(--navy2); transform:translateY(-2px); }
.btn-amber { background:var(--cyan); color:var(--navy); font-weight:700; }
.btn-amber:hover { background:#22C6E2; transform:translateY(-2px); }
.btn-white { background:var(--white); color:var(--navy); font-weight:700; }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(0,0,0,.14); }
.btn-outline { background:transparent; color:var(--navy); border:2px solid var(--navy); }
.btn-outline:hover { background:var(--bluep); }
.btn-outline-cream { background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,.4); }
.btn-outline-cream:hover { border-color:#fff; background:rgba(255,255,255,.08); }
.btn-block { width:100%; }
.btn:disabled { opacity:.5; cursor:not-allowed; }

/* ── NAV (dark navy — matches the horizontal dark-background logo) ── */
.site-nav { position:sticky; top:0; z-index:1000; height:74px; display:flex; align-items:center; background:var(--navy); border-bottom:1px solid rgba(255,255,255,.06); transition:box-shadow .3s; }
.site-nav.scrolled { box-shadow:0 4px 22px rgba(0,0,0,.25); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; width:100%; max-width:var(--max); margin:0 auto; padding:0 28px; }
.nav-logo  { display:flex; align-items:center; }
.nav-logo img { height:46px; width:auto; display:block; }
.nav-links { display:flex; align-items:center; gap:4px; list-style:none; }
.nav-links a { font-size:13px; font-weight:600; font-family:var(--fd); color:rgba(255,255,255,.68); padding:8px 13px; border-radius:7px; transition:all .2s; }
.nav-links a:hover, .nav-links a.active { color:var(--white); background:rgba(255,255,255,.08); }
.nav-links .nav-cta { background:var(--blue); color:var(--white)!important; font-weight:700!important; padding:9px 20px!important; border-radius:8px; margin-left:6px; }
.nav-links .nav-cta:hover { background:var(--blue2)!important; }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition:all .25s; }
.mobile-drawer { display:none; position:fixed; top:74px; left:0; right:0; background:var(--navy); border-bottom:1px solid rgba(255,255,255,.08); padding:20px 28px 32px; z-index:999; box-shadow:0 8px 28px rgba(0,0,0,.3); }
.mobile-drawer.open { display:block; }
.mobile-drawer ul { list-style:none; }
.mobile-drawer li { border-bottom:1px solid rgba(255,255,255,.08); }
.mobile-drawer a { display:block; padding:14px 0; font-size:15px; font-weight:600; color:var(--white); }

/* ── SECTION SHARED ── */
.section-label { display:block; font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--blue); margin-bottom:12px; font-family:var(--fd); }
.section-intro { text-align:center; max-width:600px; margin:0 auto 52px; }
.section-intro h2 { font-size:clamp(28px,3vw,40px); color:var(--navy); margin-bottom:14px; }
.section-intro p  { font-size:17px; color:var(--muted); line-height:1.75; }

/* ── HERO ── */
.hero { background:var(--navy); padding:90px 0 104px; position:relative; overflow:hidden; }
.hero-glow { position:absolute; top:-70px; right:-60px; width:600px; height:600px; background:radial-gradient(ellipse, rgba(37,99,235,.24), transparent 65%); pointer-events:none; }
.hero-glow2 { position:absolute; bottom:-60px; left:-40px; width:420px; height:420px; background:radial-gradient(ellipse, rgba(6,182,212,.18), transparent 65%); pointer-events:none; }
.hero-inner { position:relative; z-index:1; max-width:760px; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:10px; font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--cyan); margin-bottom:20px; font-family:var(--fd); }
.hero-eyebrow-dash { width:26px; height:1.5px; background:var(--cyan); opacity:.8; }
.hero h1 { font-size:clamp(36px,4.4vw,54px); color:var(--white); margin-bottom:20px; line-height:1.12; font-weight:900; }
.hero h1 em { color:var(--cyan); font-style:normal; }
.hero-sub { font-size:18px; color:rgba(255,255,255,.65); line-height:1.8; margin-bottom:32px; max-width:600px; font-weight:300; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px; }
.hero-trust { display:flex; align-items:center; gap:0; flex-wrap:wrap; padding-top:26px; border-top:1px solid rgba(255,255,255,.1); }
.trust-item { padding:0 22px 8px 0; display:flex; flex-direction:column; gap:3px; }
.trust-item:first-child { padding-left:0; }
.trust-num { font-family:var(--fd); font-size:24px; font-weight:800; color:var(--cyan); line-height:1; }
.trust-lbl { font-size:11px; color:rgba(255,255,255,.4); }

/* ── AUDIENCE SPLIT ── */
.audience-section { padding:var(--sp) 0; background:var(--bg); }
.audience-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.audience-card { background:var(--white); border:1px solid var(--border); border-radius:20px; padding:36px 32px; transition:all .26s; position:relative; overflow:hidden; text-decoration:none; color:inherit; display:flex; flex-direction:column; }
.audience-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--blue),var(--cyan)); transform:scaleX(0); transform-origin:left; transition:transform .3s; }
.audience-card:hover { box-shadow:0 18px 50px rgba(13,27,42,.12); transform:translateY(-5px); }
.audience-card:hover::before { transform:scaleX(1); }
.aud-icon { width:54px; height:54px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:26px; margin-bottom:20px; background:var(--bluep); }
.aud-tag { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--blue); margin-bottom:8px; display:block; font-family:var(--fd); }
.audience-card h3 { font-size:23px; color:var(--navy); margin-bottom:12px; }
.audience-card p { font-size:15px; color:var(--muted); line-height:1.7; margin-bottom:20px; }
.aud-list { list-style:none; margin-bottom:24px; flex-grow:1; }
.aud-list li { font-size:14px; color:var(--mid); padding:8px 0; border-bottom:1px solid var(--border); display:flex; align-items:flex-start; gap:8px; }
.aud-list li:last-child { border:none; }
.aud-list li::before { content:'✓'; color:var(--cyan); font-weight:700; flex-shrink:0; }
.aud-cta { font-size:14px; font-weight:700; color:var(--navy); display:flex; align-items:center; gap:6px; font-family:var(--fd); }
.aud-cta .arr { transition:transform .2s; }
.audience-card:hover .aud-cta .arr { transform:translateX(5px); }

/* ── HOW IT WORKS ── */
.how-section { padding:var(--sp) 0; background:var(--white); }
.how-steps { display:flex; align-items:flex-start; max-width:920px; margin:0 auto; }
.how-step  { flex:1; text-align:center; padding:0 18px; }
.how-conn  { flex-shrink:0; width:56px; height:2px; background:var(--border); margin-top:24px; }
.how-step-num { width:50px; height:50px; border-radius:50%; background:var(--white); border:2px solid var(--blue); display:flex; align-items:center; justify-content:center; font-family:var(--fd); font-size:19px; font-weight:800; color:var(--blue); margin:0 auto 16px; }
.how-step h4 { font-size:16px; color:var(--navy); margin-bottom:8px; }
.how-step p  { font-size:14px; color:var(--muted); line-height:1.65; }

/* ── PRICING ── */
.pricing-section { padding:var(--sp) 0; background:var(--bg); }
.pricing-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; align-items:stretch; }
.price-card { background:var(--white); border:1px solid var(--border); border-radius:18px; padding:28px 24px; display:flex; flex-direction:column; position:relative; transition:all .22s; }
.price-card:hover { box-shadow:0 14px 40px rgba(13,27,42,.1); transform:translateY(-4px); }
.price-card.featured { border:2px solid var(--blue); background:linear-gradient(180deg, var(--bluep) 0%, var(--white) 18%); }
.price-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--blue); color:var(--white); font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:5px 14px; border-radius:20px; white-space:nowrap; font-family:var(--fd); }
.price-tier { font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--cyan); margin-bottom:6px; font-family:var(--fd); }
.price-name { font-family:var(--fd); font-size:21px; font-weight:800; color:var(--navy); margin-bottom:14px; }
.price-amt { display:flex; align-items:baseline; gap:4px; margin-bottom:4px; }
.price-num { font-family:var(--fd); font-size:34px; font-weight:900; color:var(--ink); }
.price-per { font-size:13px; color:var(--muted); }
.price-seats { font-size:12px; color:var(--muted); margin-bottom:18px; }
.price-feats { list-style:none; margin-bottom:22px; flex-grow:1; }
.price-feats li { font-size:13px; color:var(--mid); padding:7px 0; border-bottom:1px solid var(--border); display:flex; align-items:flex-start; gap:8px; line-height:1.5; }
.price-feats li:last-child { border:none; }
.price-feats li::before { content:'✓'; color:var(--cyan); font-weight:700; flex-shrink:0; }
.price-cta { margin-top:auto; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; max-width:920px; margin:0 auto; }
.testimonial-card { background:var(--white); border:1px solid var(--border); border-radius:16px; padding:26px; display:flex; flex-direction:column; transition:all .22s; }
.testimonial-card:hover { box-shadow:0 14px 36px rgba(13,27,42,.08); transform:translateY(-3px); }
.testimonial-card.placeholder { background:var(--bg); border-style:dashed; border-color:var(--border2); }
.testimonial-quote { font-style:italic; color:var(--mid); font-size:15px; line-height:1.75; margin-bottom:18px; flex-grow:1; }
.testimonial-card.placeholder .testimonial-quote { color:var(--muted); }
.testimonial-person { display:flex; align-items:center; gap:12px; }
.testimonial-avatar { width:48px; height:48px; border-radius:50%; object-fit:cover; flex-shrink:0; background:var(--bluep); }
.testimonial-name { font-size:14px; font-weight:700; color:var(--navy); font-family:var(--fd); }
.testimonial-role { font-size:12px; color:var(--muted); margin-top:1px; }

/* ── FOOTER ── */
.site-footer { background:var(--navy); padding:60px 0 0; }
.footer-inner { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:44px; padding-bottom:48px; }
.footer-logo-name img { height:36px; width:auto; margin-bottom:14px; }
.footer-brand p { font-size:13px; color:rgba(255,255,255,.4); line-height:1.8; max-width:260px; font-weight:300; }
.footer-col h5 { font-size:10px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.7); margin-bottom:16px; font-family:var(--fd); }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:9px; }
.footer-col a { font-size:13px; color:rgba(255,255,255,.4); transition:color .2s; }
.footer-col a:hover { color:var(--cyan); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:22px 0; display:flex; justify-content:space-between; font-size:12px; color:rgba(255,255,255,.28); flex-wrap:wrap; gap:8px; }

/* ── FORM ELEMENTS (register/checkout) ── */
.form-page { padding:64px 0 100px; background:var(--bg); min-height:70vh; }
.form-shell { max-width:520px; margin:0 auto; background:var(--white); border:1px solid var(--border); border-radius:20px; padding:40px; box-shadow:0 20px 60px rgba(13,27,42,.08); }
.form-shell h1 { font-size:25px; color:var(--navy); margin-bottom:8px; }
.form-shell .sub { font-size:14px; color:var(--muted); margin-bottom:28px; }
.field { margin-bottom:18px; }
.field label { display:block; font-size:13px; font-weight:600; color:var(--mid); margin-bottom:6px; font-family:var(--fd); }
.field input, .field select { width:100%; padding:11px 14px; border:1.5px solid var(--border2); border-radius:9px; font-family:var(--ff); font-size:14px; color:var(--ink); background:var(--white); transition:border-color .2s; }
.field input:focus, .field select:focus { outline:none; border-color:var(--blue); }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.checkbox-field { display:flex; align-items:flex-start; gap:10px; margin-bottom:20px; }
.checkbox-field input { margin-top:3px; width:16px; height:16px; accent-color:var(--blue); flex-shrink:0; }
.checkbox-field label { font-size:13px; color:var(--muted); line-height:1.55; font-family:var(--ff); font-weight:400; }
.checkbox-field a { color:var(--blue); font-weight:700; }
.selected-plan { background:var(--bluep); border:1px solid var(--border2); border-radius:12px; padding:16px 18px; margin-bottom:24px; display:flex; justify-content:space-between; align-items:center; }
.selected-plan-name { font-size:14px; font-weight:700; color:var(--navy); font-family:var(--fd); }
.selected-plan-price { font-size:14px; color:var(--muted); }
.selected-plan-change { font-size:12px; color:var(--blue); font-weight:700; }
.form-error { background:#FDECEC; border:1px solid rgba(220,38,38,.3); color:#B91C1C; font-size:13px; padding:12px 14px; border-radius:9px; margin-bottom:18px; display:none; }
.form-note { font-size:12px; color:var(--muted); text-align:center; margin-top:18px; line-height:1.6; }

/* ── SUCCESS / CANCEL PAGES ── */
.status-page { padding:100px 0; background:var(--bg); min-height:70vh; display:flex; align-items:center; }
.status-shell { max-width:520px; margin:0 auto; text-align:center; }
.status-icon { width:72px; height:72px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 24px; }
.status-icon.ok { background:var(--cyanp); }
.status-icon.cancel { background:#FDECEC; }
.status-shell h1 { font-size:27px; color:var(--navy); margin-bottom:14px; }
.status-shell p { font-size:15px; color:var(--muted); line-height:1.7; margin-bottom:28px; }

/* ── COOKIE CONSENT BANNER ── */
.cookie-banner { position:fixed; left:20px; right:20px; bottom:20px; max-width:640px; margin:0 auto; background:var(--navy); border-radius:16px; padding:22px 24px; box-shadow:0 20px 60px rgba(0,0,0,.35); z-index:5000; display:none; }
.cookie-banner.show { display:block; animation:cookieUp .4s ease; }
@keyframes cookieUp { from { opacity:0; transform:translateY(16px);} to { opacity:1; transform:translateY(0);} }
.cookie-banner-title { font-family:var(--fd); font-size:16px; font-weight:800; color:var(--white); margin-bottom:8px; }
.cookie-banner p { font-size:13px; color:rgba(255,255,255,.62); line-height:1.6; margin-bottom:16px; }
.cookie-banner p a { color:var(--cyan); font-weight:700; }
.cookie-banner-btns { display:flex; gap:10px; flex-wrap:wrap; }
.cookie-btn { flex:1; min-width:120px; padding:11px 16px; border-radius:8px; font-size:13px; font-weight:700; cursor:pointer; border:none; font-family:var(--fd); transition:all .2s; }
.cookie-btn-accept { background:var(--blue); color:var(--white); }
.cookie-btn-accept:hover { background:var(--blue2); }
.cookie-btn-reject { background:transparent; color:rgba(255,255,255,.6); border:1px solid rgba(255,255,255,.2); }
.cookie-btn-reject:hover { border-color:rgba(255,255,255,.4); color:#fff; }
.cookie-btn-settings { background:transparent; color:var(--cyan); text-decoration:underline; flex:0 0 auto; padding:11px 4px; font-family:var(--ff); font-weight:400; }
.cookie-settings-panel { display:none; margin-top:16px; padding-top:16px; border-top:1px solid rgba(255,255,255,.1); }
.cookie-settings-panel.show { display:block; }
.cookie-toggle-row { display:flex; align-items:center; justify-content:space-between; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.cookie-toggle-row:last-child { border:none; }
.cookie-toggle-label { font-size:13px; color:rgba(255,255,255,.8); }
.cookie-toggle-label small { display:block; font-size:11px; color:rgba(255,255,255,.4); margin-top:2px; }
.cookie-switch { position:relative; width:38px; height:22px; flex-shrink:0; }
.cookie-switch input { opacity:0; width:0; height:0; }
.cookie-switch .slider { position:absolute; inset:0; background:rgba(255,255,255,.2); border-radius:22px; cursor:pointer; transition:.2s; }
.cookie-switch .slider::before { content:''; position:absolute; width:16px; height:16px; left:3px; top:3px; background:#fff; border-radius:50%; transition:.2s; }
.cookie-switch input:checked + .slider { background:var(--cyan); }
.cookie-switch input:checked + .slider::before { transform:translateX(16px); }
.cookie-switch input:disabled + .slider { opacity:.5; cursor:not-allowed; }

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  .audience-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr 1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .how-steps { flex-direction:column; align-items:center; gap:28px; }
  .how-conn { width:2px; height:28px; margin:0; }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .field-row { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  :root { --sp:60px; }
  .container { padding:0 20px; }
  .pricing-grid { grid-template-columns:1fr; }
  .hero-btns { flex-direction:column; }
  .footer-inner { grid-template-columns:1fr; }
  .form-shell { padding:28px 22px; }
  .cookie-banner { left:12px; right:12px; bottom:12px; padding:18px; }
}
