/* ─── RESET & ROOT ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #060C1E;
  --bg2:      #0B1228;
  --bg3:      #101830;
  --bg-muted: #ECF0F8;
  --border:   rgba(100,130,220,0.09);
  --border2:  rgba(100,130,220,0.17);
  --text:     #E4EAF8;
  --text2:    #8892B8;
  --text3:    #525A7A;
  --green:    #1D9E75;
  --green-l:  rgba(29,158,117,0.10);
  --green-2:  #5DCAA5;
  --green-d:  #0F6E56;
  --amber:    #EF9F27;
  --red-sig:  #E24B4A;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --radius:   8px;
  --radius-l: 14px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #060C1E;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────────────── */
h1,h2,h3,h4 { color: #FFFFFF; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { color: #C8D6F0; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: 'DM Sans', system-ui, sans-serif; cursor: pointer; border: none; background: none; }

.eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1D9E75;
  margin-bottom: 0.75rem;
}

/* ─── LAYOUT ────────────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { background: #060C1E; padding: 100px 0; }
.section-dark { background: #0B1228; }
.section-muted { background: #ECF0F8; color: #111827; }
.section-cta   { background: #101830; }
.section-muted p, .section-muted .eyebrow { color: #536080; }
.section-muted h2, .section-muted h4 { color: #0D1226; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 1rem; }
.section-sub { max-width: 580px; margin: 0 auto; font-size: 1rem; }

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: #1D9E75; color: #fff;
  padding: 12px 24px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  transition: background 0.22s cubic-bezier(0.4,0,0.2,1), transform 0.22s cubic-bezier(0.4,0,0.2,1);
  border: 1.5px solid transparent;
}
.btn-primary:hover { background: #0F6E56; transform: translateY(-1px); }
.btn-primary.sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-primary.lg { padding: 15px 32px; font-size: 1rem; }

.btn-ghost {
  display: inline-flex; align-items: center;
  color: #C8D6F0; padding: 12px 24px;
  border-radius: 8px; font-size: 0.9rem; font-weight: 400;
  border: 1px solid rgba(100,130,220,0.17);
  transition: border-color 0.22s cubic-bezier(0.4,0,0.2,1), color 0.22s cubic-bezier(0.4,0,0.2,1);
}
.btn-ghost:hover { border-color: rgba(100,130,220,0.17); color: #FFFFFF; }
.btn-ghost.sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-ghost.lg { padding: 15px 32px; font-size: 1rem; }

.btn-outline {
  display: inline-flex; align-items: center;
  padding: 9px 18px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 500;
  border: 1px solid rgba(100,130,220,0.17); color: #C8D6F0;
  transition: border-color 0.22s cubic-bezier(0.4,0,0.2,1), color 0.22s cubic-bezier(0.4,0,0.2,1);
}
.btn-outline:hover { border-color: #1D9E75; color: #1D9E75; }
.section-muted .btn-outline { border-color: rgba(0,0,0,0.18); color: #3A4060; }
.section-muted .btn-outline:hover { border-color: #1D9E75; color: #1D9E75; }

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,13,18,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(100,130,220,0.09);
  transition: box-shadow 0.22s cubic-bezier(0.4,0,0.2,1);
}
#nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.4); }

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 2rem;
}

.logo { display: flex; align-items: center; gap: 0; }
.logo-text-wrap { display: none; }
.logo-mark { display: none; }
.logo-mark::after { display: none; }
.logo-text { display: none; }
.logo-sup { display: none; }
.logo img { height: 44px; width: auto; display: block; }

.nav-links { display: flex; gap: 2rem; flex: 1; justify-content: center; }
.nav-links a { font-size: 0.875rem; color: #C8D6F0; transition: color 0.22s cubic-bezier(0.4,0,0.2,1); }
.nav-links a:hover { color: #FFFFFF; }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }

.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-sep { color: #9AADD0; font-size: 0.75rem; }
.lang-btn {
  font-size: 0.75rem; font-weight: 500; color: #9AADD0;
  padding: 2px 4px; border-radius: 4px;
  transition: color 0.22s cubic-bezier(0.4,0,0.2,1);
  background: none; border: none;
}
.lang-btn:hover, .lang-btn.active { color: #FFFFFF; }
.lang-btn.active { text-decoration: underline; text-underline-offset: 2px; }

.btn-nav {
  font-size: 0.8rem; font-weight: 500;
  background: #1D9E75; color: #fff;
  padding: 8px 16px; border-radius: 8px;
  white-space: nowrap;
  transition: background 0.22s cubic-bezier(0.4,0,0.2,1);
}
.btn-nav:hover { background: #0F6E56; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #8892B8; transition: 0.22s cubic-bezier(0.4,0,0.2,1); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(100,130,220,0.09);
  background: #060C1E;
}
.mobile-menu a {
  padding: 14px 24px; font-size: 0.9rem; color: #C8D6F0;
  border-bottom: 1px solid rgba(100,130,220,0.09);
  display: block;
}
.mobile-menu .btn-nav { margin: 16px 24px; border-radius: 8px; text-align: center; }

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
#hero {
  background: #060C1E;
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; position: relative; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 20%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(29,158,117,0.12) 0%, transparent 70%);
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding-top: 60px; padding-bottom: 60px;
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 3.9rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #EEEEE8 30%, #8B8B80);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub { font-size: 1rem; line-height: 1.75; max-width: 480px; margin-bottom: 2rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats { display: flex; align-items: center; gap: 1.5rem; }
.stat-divider { width: 1px; height: 28px; background: rgba(100,130,220,0.17); }
.stat { display: flex; flex-direction: column; }
.stat-n { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.6rem; font-weight: 400; color: #FFFFFF; line-height: 1; }
.stat-l { font-size: 0.75rem; color: #9AADD0; margin-top: 2px; }

/* Report mockup */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; }
.report-mockup {
  width: 100%; max-width: 340px;
  background: #0B1228;
  border: 1px solid rgba(100,130,220,0.17);
  border-radius: 14px;
  padding: 20px;
  position: relative; overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.report-header { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.report-logo-sm { width: 20px; height: 20px; border-radius: 5px; background: #1D9E75; flex-shrink: 0; }
.report-title-sm { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.report-badge {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.08em;
  background: rgba(29,158,117,0.10); color: #5DCAA5;
  padding: 3px 7px; border-radius: 4px; white-space: nowrap;
}
.rline { height: 6px; border-radius: 3px; background: rgba(100,130,220,0.17); }
.rline.w90 { width: 90%; } .rline.w80 { width: 80%; } .rline.w70 { width: 70%; }
.rline.w65 { width: 65%; } .rline.w60 { width: 60%; } .rline.w50 { width: 50%; }
.rline.w45 { width: 45%; } .rline.w40 { width: 40%; } .rline.w35 { width: 35%; }
.rline.muted { background: rgba(255,255,255,0.04); }
.rline.sm { height: 4px; margin-top: 3px; }

.report-rag { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.rag-item { display: flex; align-items: center; gap: 10px; }
.rag-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.rag-dot.green { background: #1D9E75; }
.rag-dot.amber { background: #EF9F27; }
.rag-dot.red   { background: #E24B4A; }
.rag-label { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.rag-score { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.1rem; font-weight: 500; }
.green-txt { color: #5DCAA5; }
.amber-txt { color: #EF9F27; }
.red-txt   { color: #E24B4A; }

.report-chart { margin-bottom: 16px; }
.chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 60px; }
.bar { flex: 1; background: rgba(100,130,220,0.17); border-radius: 3px 3px 0 0; }
.bar.accent { background: rgba(29,158,117,0.10); border: 1px solid rgba(29,158,117,0.3); }

.report-footer-sm { display: flex; flex-direction: column; gap: 5px; }

.scan-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #1D9E75, transparent);
  animation: scan 3s ease-in-out infinite;
  top: 0;
}
@keyframes scan {
  0%   { top: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.mockup-label {
  margin-top: 12px; font-size: 0.75rem; color: #9AADD0;
  text-align: center; letter-spacing: 0.03em;
}

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
}
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, #1D9E75);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ─── TRUST BAR ─────────────────────────────────────────────────────────────── */
.trust-bar { background: #0B1228; border-top: 1px solid rgba(100,130,220,0.09); border-bottom: 1px solid rgba(100,130,220,0.09); padding: 16px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 20px; }
.trust-item { font-size: 0.8rem; color: #9AADD0; }
.trust-dot { width: 3px; height: 3px; border-radius: 50%; background: #525A7A; }

/* ─── QUICK SCAN ────────────────────────────────────────────────────────────── */
#quick-scan { background: #060C1E; }

.qs-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }

/* Wizard */
.wizard-wrap {
  background: #0B1228; border: 1px solid rgba(100,130,220,0.17);
  border-radius: 14px; overflow: hidden;
}

.wizard-progress {
  padding: 20px 28px 0;
  border-bottom: 1px solid rgba(100,130,220,0.09);
}
.wp-steps { display: flex; align-items: center; padding-bottom: 20px; }
.wp-step { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.wp-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(100,130,220,0.17);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 500; color: #9AADD0;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
}
.wp-step.active .wp-dot { border-color: #1D9E75; color: #1D9E75; }
.wp-step.done .wp-dot   { background: #1D9E75; border-color: #1D9E75; color: #fff; }
.wp-step span { font-size: 0.7rem; color: #9AADD0; white-space: nowrap; }
.wp-step.active span, .wp-step.done span { color: #C8D6F0; }
.wp-line { flex: 1; height: 1px; background: rgba(100,130,220,0.17); margin: 0 6px 12px; transition: background 0.22s cubic-bezier(0.4,0,0.2,1); }
.wp-line.done { background: #1D9E75; }

.wstep { display: none; padding: 28px; }
.wstep.active { display: block; }
.wstep-eyebrow { font-size: 0.7rem; font-weight: 500; color: #1D9E75; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.wstep h3 { font-size: 1.3rem; margin-bottom: 6px; }
.wstep-sub { font-size: 0.875rem; color: #C8D6F0; margin-bottom: 20px; }
.wstep-inner { min-height: 280px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.75rem; font-weight: 500; color: #9AADD0; }
.form-field input, .form-field select {
  background: #101830; border: 1px solid rgba(100,130,220,0.17);
  border-radius: 8px; color: #FFFFFF;
  padding: 9px 12px; font-size: 0.875rem; font-family: 'DM Sans', system-ui, sans-serif;
  transition: border-color 0.22s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s cubic-bezier(0.4,0,0.2,1);
  outline: none;
}
.form-field input::placeholder { color: #9AADD0; }
.form-field input:focus, .form-field select:focus {
  border-color: #1D9E75;
  box-shadow: 0 0 0 3px rgba(29,158,117,0.12);
}
.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235E5D59' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }

.comp-row { margin-bottom: 8px; }
.btn-add-comp {
  font-size: 0.8rem; color: #1D9E75; border: 1px dashed rgba(29,158,117,0.35);
  border-radius: 8px; padding: 8px 14px; width: 100%;
  text-align: center; margin-top: 4px; transition: background 0.22s cubic-bezier(0.4,0,0.2,1);
}
.btn-add-comp:hover { background: rgba(29,158,117,0.10); }

.focus-opts { display: flex; flex-direction: column; gap: 8px; }
.focus-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border: 1px solid rgba(100,130,220,0.09);
  border-radius: 8px; cursor: pointer;
  transition: border-color 0.22s cubic-bezier(0.4,0,0.2,1), background 0.22s cubic-bezier(0.4,0,0.2,1);
}
.focus-opt:hover { border-color: rgba(100,130,220,0.17); }
.focus-opt.selected { border-color: #1D9E75; background: rgba(29,158,117,0.10); }
.focus-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.focus-title { font-size: 0.875rem; font-weight: 500; color: #FFFFFF; margin-bottom: 2px; }
.focus-desc  { font-size: 0.78rem; color: #9AADD0; }

.summary-block {
  background: #101830; border-radius: 8px;
  padding: 12px 16px; margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.summary-row { display: flex; justify-content: space-between; align-items: baseline; }
.sum-label { font-size: 0.75rem; color: #9AADD0; }
.sum-val { font-size: 0.85rem; font-weight: 500; color: #FFFFFF; }

.price-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.price-opt {
  border: 1px solid rgba(100,130,220,0.17); border-radius: 8px;
  padding: 14px; cursor: pointer; transition: border-color 0.22s cubic-bezier(0.4,0,0.2,1);
}
.price-opt:hover { border-color: rgba(100,130,220,0.17); }
.price-opt.active { border-color: #1D9E75; background: rgba(29,158,117,0.10); }
.po-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.po-name { font-size: 0.85rem; font-weight: 500; color: #FFFFFF; display: block; }
.po-badge { font-size: 0.7rem; color: #5DCAA5; display: block; margin-top: 2px; }
.po-price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.3rem; color: #FFFFFF; }
.po-list { display: flex; flex-direction: column; gap: 3px; }
.po-list li { font-size: 0.75rem; color: #9AADD0; }
.po-list li::before { content: '– '; }

.credit-note { font-size: 0.78rem; color: #9AADD0; text-align: center; }

.wstep-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(100,130,220,0.09);
}

/* Confirmation */
.confirm-wrap { text-align: center; display: flex; flex-direction: column; align-items: center; }
.confirm-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(29,158,117,0.10); border: 1px solid rgba(29,158,117,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.progress-track {
  width: 100%; height: 3px; background: rgba(100,130,220,0.17);
  border-radius: 3px; overflow: hidden; margin: 1.25rem 0 0.5rem;
}
.progress-fill { height: 3px; background: #1D9E75; width: 0; transition: width 1s ease; }
.progress-label { font-size: 0.8rem; color: #9AADD0; margin-bottom: 1.25rem; }
.confirm-steps { width: 100%; text-align: left; }
.cs-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-size: 0.82rem; color: #9AADD0;
  border-bottom: 1px solid rgba(100,130,220,0.09);
}
.cs-row:last-child { border-bottom: none; }
.cs-row.done { color: #FFFFFF; }
.cs-icon { font-size: 0.9rem; color: #9AADD0; width: 16px; text-align: center; }
.cs-icon.spin { animation: spin 1s linear infinite; color: #1D9E75; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Aside */
.qs-aside { display: flex; flex-direction: column; gap: 16px; }
.aside-card {
  background: #0B1228; border: 1px solid rgba(100,130,220,0.17);
  border-radius: 14px; padding: 24px;
}
.aside-eyebrow { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: #9AADD0; margin-bottom: 16px; }
.aside-list { display: flex; flex-direction: column; gap: 12px; }
.aside-list li { display: flex; gap: 12px; align-items: flex-start; }
.aside-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.9rem; color: #1D9E75; min-width: 22px; }
.aside-title { font-size: 0.875rem; font-weight: 500; color: #FFFFFF; margin-bottom: 2px; }
.aside-desc  { font-size: 0.78rem; color: #9AADD0; }
.aside-note { font-size: 0.8rem; color: #9AADD0; line-height: 1.6; padding: 12px 16px; border: 1px solid rgba(100,130,220,0.09); border-radius: 8px; }

/* ─── HOW IT WORKS ──────────────────────────────────────────────────────────── */
.how-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin-bottom: 40px;
}
.how-step { padding: 0 8px; }
.how-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.5rem; font-weight: 300; color: #1D9E75; line-height: 1; margin-bottom: 12px; }
.how-step h4 { font-size: 0.95rem; font-weight: 500; font-family: 'DM Sans', system-ui, sans-serif; color: #FFFFFF; margin-bottom: 8px; }
.how-step p  { font-size: 0.82rem; line-height: 1.6; }
.how-arrow { font-size: 1.2rem; color: #9AADD0; padding-top: 36px; padding-left: 6px; padding-right: 6px; }

.how-tiers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  background: #101830; border-radius: 14px; padding: 24px;
  border: 1px solid rgba(100,130,220,0.09);
}
.tier-row { display: flex; flex-direction: column; gap: 4px; }
.tier-label { font-size: 0.85rem; font-weight: 500; color: #FFFFFF; }
.tier-desc  { font-size: 0.8rem; color: #C8D6F0; line-height: 1.5; }
.tier-time  { font-size: 0.78rem; color: #1D9E75; margin-top: 2px; }

/* ─── PRODUCTS ──────────────────────────────────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 40px;
}
.prod-card {
  background: #0B1228; border: 1px solid rgba(100,130,220,0.17);
  border-radius: 14px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: border-color 0.22s cubic-bezier(0.4,0,0.2,1), transform 0.22s cubic-bezier(0.4,0,0.2,1);
}
.prod-card:hover { border-color: rgba(100,130,220,0.17); transform: translateY(-3px); }
.prod-flagship { border-color: rgba(29,158,117,0.25); background: linear-gradient(145deg, #0B1228, rgba(29,158,117,0.04)); }

.prod-cat {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.09em;
  text-transform: uppercase; color: #9AADD0;
}
.featured-cat { color: #5DCAA5; }
.flagship-cat { color: #1D9E75; }

.prod-featured-badge {
  position: absolute; top: -1px; right: 20px;
  font-size: 0.68rem; font-weight: 500;
  background: #1D9E75; color: #fff;
  padding: 4px 10px; border-radius: 0 0 6px 6px;
}

.prod-card h3 { font-size: 1.1rem; font-weight: 400; line-height: 1.3; }
.prod-card p  { font-size: 0.82rem; line-height: 1.6; flex: 1; }

.prod-features { display: flex; flex-direction: column; gap: 5px; }
.prod-features li { font-size: 0.78rem; color: #9AADD0; }
.prod-features li::before { content: '— '; }

.prod-meta { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: #9AADD0; }
.prod-dot { width: 3px; height: 3px; border-radius: 50%; background: #525A7A; }

.prod-price {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid rgba(100,130,220,0.09);
}
.price-from { font-size: 0.75rem; color: #9AADD0; margin-right: 4px; }
.price-val { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.4rem; color: #FFFFFF; }

/* Add-ons */
.add-ons {
  background: #0B1228; border: 1px solid rgba(100,130,220,0.09);
  border-radius: 14px; padding: 28px;
}
.addon-eyebrow { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: #9AADD0; margin-bottom: 16px; }
.addon-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.addon-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; background: #101830;
  border-radius: 8px; font-size: 0.82rem;
}
.addon-item span:first-child { color: #C8D6F0; }
.addon-price { color: #5DCAA5; font-weight: 500; font-size: 0.8rem; }

/* ─── SUBSCRIPTIONS ─────────────────────────────────────────────────────────── */
.sub-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.sub-card {
  background: #101830; border: 1px solid rgba(100,130,220,0.17);
  border-radius: 14px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.sub-featured {
  border-color: rgba(29,158,117,0.35);
  background: linear-gradient(160deg, rgba(29,158,117,0.06), #101830);
}
.sub-popular {
  position: absolute; top: -1px; left: 24px;
  font-size: 0.68rem; font-weight: 500;
  background: #1D9E75; color: #fff;
  padding: 4px 10px; border-radius: 0 0 6px 6px;
}
.sub-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.2rem; color: #FFFFFF; }
.sub-price { display: flex; align-items: baseline; gap: 4px; }
.sub-price-val { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2rem; font-weight: 400; color: #FFFFFF; }
.sub-price-per { font-size: 0.82rem; color: #9AADD0; }
.sub-save { font-size: 0.75rem; color: #5DCAA5; margin-top: -8px; }
.sub-features { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.sub-features li { font-size: 0.82rem; color: #C8D6F0; display: flex; gap: 8px; }
.sub-features li::before { content: '✓'; color: #1D9E75; flex-shrink: 0; }

/* ─── COMPARISON ────────────────────────────────────────────────────────────── */
.comp-table { border: 1px solid rgba(100,130,220,0.17); border-radius: 14px; overflow: hidden; }
.comp-head, .comp-row-item {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.comp-head {
  background: #0B1228; padding: 14px 20px;
  border-bottom: 1px solid rgba(100,130,220,0.17);
  font-size: 0.78rem; font-weight: 500;
}
.comp-col-label { color: #C8D6F0; }
.comp-col { text-align: center; color: #9AADD0; font-size: 0.82rem; }
.comp-ours { background: rgba(29,158,117,0.06); font-weight: 500; }

.comp-row-item {
  padding: 12px 20px; border-bottom: 1px solid rgba(100,130,220,0.09); font-size: 0.85rem;
  align-items: center;
}
.comp-row-item:last-child { border-bottom: none; }
.comp-row-item:nth-child(even) { background: rgba(255,255,255,0.01); }
.comp-col-label { color: #C8D6F0; font-size: 0.82rem; }
.neg { color: #9AADD0; }
.mid { color: #C8D6F0; }
.pos { color: #5DCAA5; }

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-container { max-width: 720px; }
.faq-list { display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.1); border-radius: 14px; overflow: hidden; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.9rem;
  color: #1A2040; text-align: left; background: none; border: none; cursor: pointer;
  gap: 16px;
  transition: color 0.22s cubic-bezier(0.4,0,0.2,1);
}
.faq-q:hover { color: #0A0F25; }
.faq-icon { font-size: 1.3rem; color: #5A6080; transition: transform 0.22s cubic-bezier(0.4,0,0.2,1); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.875rem; color: #485070; line-height: 1.75;
  padding: 0 20px; transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }

/* ─── CTA SECTION ───────────────────────────────────────────────────────────── */
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.cta-inner p { margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
#footer { background: #060C1E; border-top: 1px solid rgba(100,130,220,0.09); padding-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; padding-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 0; margin-bottom: 12px; }
.footer-logo img { height: 30px; width: auto; display: block; }
.footer-tagline { font-size: 0.82rem; color: #9AADD0; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #9AADD0; margin-bottom: 4px; }
.footer-col a { font-size: 0.82rem; color: #9AADD0; transition: color 0.22s cubic-bezier(0.4,0,0.2,1); }
.footer-col a:hover { color: #FFFFFF; }
.lang-btn-footer {
  font-size: 0.82rem; color: #9AADD0; background: none; border: none;
  cursor: pointer; text-align: left; padding: 0;
  transition: color 0.22s cubic-bezier(0.4,0,0.2,1); font-family: 'DM Sans', system-ui, sans-serif;
}
.lang-btn-footer:hover { color: #FFFFFF; }
.footer-bottom { border-top: 1px solid rgba(100,130,220,0.09); padding: 16px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: #9AADD0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #9AADD0; transition: color 0.22s cubic-bezier(0.4,0,0.2,1); }
.footer-legal a:hover { color: #C8D6F0; }

/* ─── SCROLL REVEAL ─────────────────────────────────────────────────────────── */
.reveal { }
.reveal.visible { }
.delay-1 { }
.delay-2 { }
.delay-3 { }
[data-delay="1"] { }
[data-delay="2"] { }

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .qs-layout { grid-template-columns: 1fr; }
  .qs-aside { order: -1; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-arrow { display: none; }
  .sub-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .addon-list { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .btn-nav { display: none; }
  /* Logo: stack INTELLIGENCE below Marketwise on mobile */
  .logo { align-items: center; gap: 0; }
  .logo img { height: 36px; width: auto; }
  /* Lang switcher: tighter on mobile */
  .lang-switcher { gap: 2px; }
  .lang-btn { font-size: .7rem; padding: 3px 4px; }
  .lang-sep { font-size: .65rem; }
  .nav-right { gap: 8px; }
}

@media (max-width: 600px) {
  section { padding: 70px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .comp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comp-table { min-width: 520px; }
  .form-row { grid-template-columns: 1fr; }
  .price-toggle { grid-template-columns: 1fr; }
  .trust-inner { justify-content: flex-start; }
  .trust-dot { display: none; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .addon-list { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}

/* ─── ORDER MODAL ───────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(3,6,16,0.85); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #0B1228; border: 1px solid rgba(100,130,220,0.2);
  border-radius: 16px; width: 100%; max-width: 580px;
  max-height: 90vh; overflow-y: auto;
}
.modal-header {
  padding: 24px 28px 0; display: flex; justify-content: space-between;
  align-items: flex-start; border-bottom: 1px solid rgba(100,130,220,0.09);
  padding-bottom: 16px; margin-bottom: 0;
}
.modal-product-tag {
  font-size: .7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .09em; color: #1D9E75; margin-bottom: 4px;
}
.modal-header h3 { font-size: 1.15rem; color: #FFFFFF; }
.modal-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(100,130,220,0.08); color: #9AADD0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; flex-shrink: 0;
  transition: background .2s; border: none;
}
.modal-close:hover { background: rgba(100,130,220,0.16); }
.modal-body { padding: 20px 28px 28px; }
.tier-select { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.tier-opt {
  border: 1px solid rgba(100,130,220,0.17); border-radius: 10px;
  padding: 14px; cursor: pointer; transition: border-color .2s, background .2s;
}
.tier-opt:hover { border-color: rgba(100,130,220,0.3); }
.tier-opt.selected { border-color: #1D9E75; background: rgba(29,158,117,0.08); }
.tier-name { font-size: .85rem; font-weight: 500; color: #FFFFFF; margin-bottom: 3px; }
.tier-price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.3rem; color: #FFFFFF; }
.tier-days { font-size: .72rem; color: #9AADD0; margin-top: 3px; }
.modal-addons { margin-bottom: 16px; }
.modal-addons-title { font-size: .72rem; font-weight: 500; text-transform: uppercase; letter-spacing: .07em; color: #9AADD0; margin-bottom: 8px; }
.addon-check {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px; cursor: pointer;
  transition: background .15s; margin-bottom: 4px;
}
.addon-check:hover { background: rgba(100,130,220,0.06); }
.addon-check input[type=checkbox] { accent-color: #1D9E75; width: 15px; height: 15px; flex-shrink: 0; }
.addon-check-label { font-size: .82rem; color: #C8D6F0; flex: 1; }
.addon-check-price { font-size: .78rem; color: #5DCAA5; font-weight: 500; }
.modal-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.modal-fields .form-field { display: flex; flex-direction: column; gap: 4px; }
.modal-fields .form-field.full { grid-column: 1 / -1; }
.modal-fields label { font-size: .72rem; font-weight: 500; color: #9AADD0; }
.modal-fields input, .modal-fields textarea, .modal-fields select {
  background: #101830; border: 1px solid rgba(100,130,220,0.17);
  border-radius: 8px; color: #FFFFFF; padding: 9px 12px;
  font-size: .875rem; font-family: 'DM Sans', system-ui, sans-serif; outline: none;
}
.modal-fields input::placeholder, .modal-fields textarea::placeholder { color: #9AADD0; }
.modal-fields input:focus, .modal-fields textarea:focus, .modal-fields select:focus {
  border-color: #1D9E75; box-shadow: 0 0 0 3px rgba(29,158,117,0.1);
}
.modal-fields select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239AADD0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.modal-fields textarea { resize: vertical; min-height: 72px; }
.modal-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; background: rgba(29,158,117,0.06);
  border-radius: 10px; margin-bottom: 16px;
  border: 1px solid rgba(29,158,117,0.15);
}
.modal-total-label { font-size: .82rem; color: #C8D6F0; }
.modal-total-price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.6rem; color: #FFFFFF; }
.modal-actions { display: flex; gap: 10px; }
.modal-actions .btn-primary { flex: 1; justify-content: center; padding: 13px; font-size: .95rem; }
.modal-actions .btn-ghost { padding: 13px 20px; }

/* ─── PRODUCT PAGE LINKS ─────────────────────────────────────────────────────── */
.prod-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-detail { font-size: .78rem; color: #9AADD0; padding: 7px 12px; border-radius: 8px; border: 1px solid rgba(100,130,220,0.17); transition: color .2s, border-color .2s; }
.btn-detail:hover { color: #FFFFFF; border-color: rgba(100,130,220,0.35); }
