/* ================================================
   investio - styles.css
   Production stylesheet — dark/light themes + mobile
   ================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --bg: #0D0D0D;
  --surface: #141414;
  --surface2: #1C1C1C;
  --surface3: #222;
  --border: rgba(201, 168, 76, 0.18);
  --border2: rgba(255, 255, 255, 0.08);
  --text: #F5F0E8;
  --text2: #AAA49A;
  --text3: #666;
  --red: #E27474;
  --green: #7AC97F;
  --radius: 12px;
  --fd: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;
}

.light {
  --bg: #FAF8F3;
  --surface: #FFFFFF;
  --surface2: #F2EEE6;
  --surface3: #E8E2D4;
  --border: rgba(201, 168, 76, 0.35);
  --border2: rgba(0, 0, 0, 0.08);
  --text: #1A1A14;
  --text2: #5C574F;
  --text3: #999;
  --red: #C84545;
  --green: #3D8E45;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* PAGES */
.page { display: none; }
.page.active { display: block; }

/* ================== NAV ================== */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.3s;
  gap: 8px;
}
.logo {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  cursor: pointer;
  letter-spacing: -0.5px;
  user-select: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface2);
  border: 0.5px solid var(--border2);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  color: var(--text2);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: #0D0D0D;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; }

/* ================== HERO ================== */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-dim);
  border: 0.5px solid var(--border);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--fd);
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  max-width: 780px;
}
.hero h1 span { color: var(--gold); }
.hero p.sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.55;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.btn-primary {
  background: var(--gold);
  color: #0D0D0D;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  font-family: var(--fd);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 10px;
  border: 0.5px solid var(--border2);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-trust {
  font-size: 12px;
  color: var(--text3);
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust > span { display: flex; align-items: center; gap: 5px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  margin: 48px 0 0;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
}
.stat { background: var(--surface); padding: 20px; text-align: center; }
.stat-n { font-family: var(--fd); font-size: 24px; font-weight: 800; color: var(--gold); }
.stat-l { font-size: 11px; color: var(--text2); margin-top: 3px; }

/* ================== PAIN ================== */
.pain-section {
  background: var(--surface);
  padding: 72px 32px;
  border-top: 0.5px solid var(--border2);
  border-bottom: 0.5px solid var(--border2);
}
.pain-wrap { max-width: 880px; margin: 0 auto; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.pain-card {
  background: var(--bg);
  border: 0.5px solid var(--border2);
  border-left: 2px solid var(--red);
  border-radius: 8px;
  padding: 20px;
}
.pain-card .icon { font-size: 22px; margin-bottom: 10px; }
.pain-card h4 { font-family: var(--fd); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.pain-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }
.pain-section h2 {
  font-family: var(--fd);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.pain-section .lead {
  font-size: 15px;
  color: var(--text2);
  max-width: 520px;
  font-weight: 300;
}

/* ================== SECTION ================== */
.section {
  padding: 72px 32px;
  max-width: 880px;
  margin: 0 auto;
}
.section-pad { padding: 0 32px; }
.section.center-section { text-align: center; padding-bottom: 80px; }
.center { text-align: center; }
.sec-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section h2, .pain-section h2 {
  font-family: var(--fd);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section .lead, .pain-section .lead {
  font-size: 15px;
  color: var(--text2);
  max-width: 500px;
  margin-bottom: 44px;
  font-weight: 300;
}
.section.center-section .lead {
  margin: 0 auto 28px;
  font-size: 16px;
  max-width: 480px;
}
.cta-title {
  font-family: var(--fd);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.gold-strong { color: var(--gold); font-weight: 700; }

/* ================== BENEFITS ================== */
.bene-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.bene-card {
  background: var(--surface);
  border: 0.5px solid var(--border2);
  border-left: 2px solid var(--green);
  border-radius: 8px;
  padding: 22px;
}
.bene-card .icon { font-size: 22px; margin-bottom: 10px; }
.bene-card h4 { font-family: var(--fd); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.bene-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ================== STEPS ================== */
.steps-timeline { position: relative; }
.step-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 0.5px solid var(--border2);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h3 { font-family: var(--fd); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step-body p { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ================== RESULTS BAND ================== */
.results-band {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 auto;
  max-width: 880px;
}
.results-band h2 {
  font-family: var(--fd);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}
.result-item .num {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.result-item .lbl { font-size: 12px; color: var(--text2); margin-top: 6px; }

/* ================== TESTIMONIALS ================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.testi {
  background: var(--surface);
  border: 0.5px solid var(--border2);
  border-radius: var(--radius);
  padding: 22px;
}
.stars { color: var(--gold); font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }
.testi-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
  border: 0.5px solid var(--border);
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 500; }
.testi-role { font-size: 11px; color: var(--text2); }

/* ================== ASSETS GRID ================== */
.assets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.asset-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.asset-card:hover {
  border-color: var(--gold);
  background: var(--surface2);
  transform: translateY(-2px);
}
.asset-card.locked::after {
  content: '🔒 Pro';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 3px 8px;
  border-radius: 100px;
}
.asset-icon { font-size: 28px; margin-bottom: 10px; }
.asset-name { font-family: var(--fd); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.asset-tag { font-size: 11px; color: var(--text2); }
.asset-preview { font-size: 12px; color: var(--text3); margin-top: 8px; line-height: 1.5; }

/* ================== ASSET DETAIL ================== */
.asset-detail {
  background: var(--surface);
  border: 0.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 20px;
  animation: fadeUp 0.25s ease;
}
.asset-detail h3 { font-family: var(--fd); font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.asset-detail .tagline { font-size: 14px; color: var(--gold); margin-bottom: 8px; }
.asset-detail .analogy {
  font-size: 14px;
  color: var(--text);
  background: var(--gold-dim);
  border-left: 2px solid var(--gold);
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.55;
}
.asset-detail .analogy::before { content: '💡 '; }
.asset-section { margin-bottom: 18px; }
.asset-section h4 {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.asset-section p { font-size: 14px; line-height: 1.65; color: var(--text); }
.asset-section ul { list-style: none; padding: 0; }
.asset-section ul li {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.65;
  padding: 5px 0 5px 20px;
  position: relative;
}
.asset-section ul.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.asset-section ul.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.asset-section ul.errors li::before { content: '⚠'; position: absolute; left: 0; color: #E5A74A; }
.example-box {
  background: var(--bg);
  border: 0.5px solid var(--border2);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 6px;
}
.example-box .ex-text { font-size: 13.5px; line-height: 1.6; color: var(--text); }
.detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.meta-box {
  background: var(--bg);
  border: 0.5px solid var(--border2);
  border-radius: 8px;
  padding: 12px 14px;
}
.meta-box .lbl {
  font-size: 10px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 4px;
}
.meta-box .val { font-size: 13px; color: var(--text); font-weight: 500; }
.risk-bar { display: flex; gap: 4px; margin-top: 6px; }
.risk-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--surface3); }
.risk-dot.on { background: var(--gold); }
.detail-close {
  background: transparent;
  color: var(--text2);
  border: 0.5px solid var(--border2);
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 18px;
}
.detail-close:hover { border-color: var(--gold); color: var(--gold); }

/* ================== PRICING ================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.price-card {
  background: var(--surface);
  border: 0.5px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.price-card.featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.price-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 14px;
}
.price-name { font-family: var(--fd); font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.price-amt { font-family: var(--fd); font-size: 34px; font-weight: 800; color: var(--gold); }
.price-per { font-size: 13px; color: var(--text2); margin-bottom: 16px; }
.price-desc { font-size: 13px; color: var(--text2); margin-bottom: 18px; line-height: 1.6; }
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.price-list li {
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.price-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-list.muted li { color: var(--text2); }
.price-list.muted li::before { content: '✗'; color: var(--text3); }
.btn-pg {
  width: 100%;
  padding: 11px;
  border-radius: 8px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-pg-out {
  background: transparent;
  color: var(--text);
  border: 0.5px solid var(--border2);
}
.btn-pg-out:hover { border-color: var(--gold); color: var(--gold); }
.btn-pg-gold {
  background: var(--gold);
  color: #0D0D0D;
  border: none;
}
.btn-pg-gold:hover { opacity: 0.88; }
.guarantee { font-size: 11px; color: var(--text2); text-align: center; margin-top: 8px; }

/* ================== FAQ ================== */
.faq-list { margin-top: 32px; }
.faq-item {
  background: var(--surface);
  border: 0.5px solid var(--border2);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  gap: 16px;
}
.faq-q:hover { background: var(--surface2); }
.faq-q .arr { font-size: 18px; color: var(--gold); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q .arr { transform: rotate(45deg); }
.faq-a {
  padding: 0 20px 16px 20px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ================== DISCLAIMER + FOOTER ================== */
.disc {
  background: var(--gold-dim);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 20px;
  margin: 0 32px;
  font-size: 11px;
  color: var(--text2);
  line-height: 1.6;
  text-align: center;
}
footer {
  border-top: 0.5px solid var(--border2);
  padding: 32px;
  text-align: center;
  font-size: 12px;
  color: var(--text2);
  margin-top: 32px;
}
.footer-logo {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

/* ================== QUIZ ================== */
.quiz-wrap {
  max-width: 580px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.quiz-head { text-align: center; margin-bottom: 36px; }
.quiz-head h2 {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.quiz-head p { font-size: 14px; color: var(--text2); }
.prog-bar {
  background: var(--surface2);
  border-radius: 100px;
  height: 3px;
  margin-bottom: 32px;
  overflow: hidden;
}
.prog-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
  transition: width 0.4s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.q-block { animation: fadeUp 0.28s ease; }
.q-num {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.q-text {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.25;
}
.opts { display: flex; flex-direction: column; gap: 9px; }
.opt {
  background: var(--surface);
  border: 0.5px solid var(--border2);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.18s;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  color: var(--text);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.opt:hover, .opt:active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.opt.sel {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
  color: var(--gold-light);
}
.opt-ic { font-size: 18px; min-width: 24px; text-align: center; }
.slider-w { padding: 6px 0 20px; }
.slider-labs {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text2);
  margin-top: 8px;
  gap: 8px;
}
input[type=range] { width: 100%; accent-color: var(--gold); }
.slider-v {
  text-align: center;
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  margin-top: 6px;
}
.quiz-nav { display: flex; gap: 10px; margin-top: 26px; }
.btn-bk {
  background: transparent;
  color: var(--text2);
  border: 0.5px solid var(--border2);
  font-family: var(--fd);
  font-weight: 600;
  font-size: 13px;
  padding: 11px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-bk:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.btn-nx {
  flex: 1;
  background: var(--gold);
  color: #0D0D0D;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.35;
  pointer-events: none;
}
.btn-nx.rdy { opacity: 1; pointer-events: all; }
.btn-nx.rdy:hover { opacity: 0.88; }

/* ================== RESULT ================== */
.res-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.res-head { text-align: center; margin-bottom: 32px; }
.profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 0.5px solid var(--gold);
  border-radius: 100px;
  padding: 9px 22px;
  margin-bottom: 18px;
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 800;
  color: var(--gold);
}
.res-head h2 {
  font-family: var(--fd);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.res-head p {
  font-size: 15px;
  color: var(--text2);
  max-width: 440px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}
.score-c { text-align: center; margin: 24px 0; }
.score-c svg { width: 120px; height: 120px; }
.score-label { font-size: 12px; color: var(--text2); margin-top: 6px; }
.alloc-box {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
}
.alloc-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.alloc-row { margin-bottom: 11px; }
.alloc-lbl {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 4px;
}
.alloc-pct { font-weight: 500; color: var(--gold); }
.alloc-track {
  height: 5px;
  background: var(--surface2);
  border-radius: 100px;
  overflow: hidden;
}
.alloc-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
  transition: width 1s ease;
}
.info-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.info-c {
  background: var(--surface);
  border: 0.5px solid var(--border2);
  border-radius: 10px;
  padding: 14px;
}
.info-c h4 {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--gold-light);
}
.info-c p { font-size: 12px; color: var(--text2); line-height: 1.5; }
.disc-res {
  background: var(--gold-dim);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 15px;
  font-size: 11px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 22px;
}
.pro-upsell {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.03));
  border: 0.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.pro-upsell h3 {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.pro-upsell .pro-sub {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 18px;
  line-height: 1.6;
}
.pro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  text-align: left;
  margin-bottom: 22px;
}
.pro-feat {
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
}
.pro-feat::before { content: '✓'; color: var(--gold); font-weight: 700; }
.pro-price {
  font-family: var(--fd);
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 14px;
}
.pro-price strong { color: var(--gold); font-size: 16px; font-weight: 800; }
.btn-rst {
  background: transparent;
  color: var(--text2);
  border: none;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  margin: 14px auto 0;
  display: block;
}

/* ================================================
   MOBILE — 768px and below (tablet & small)
   ================================================ */
@media (max-width: 768px) {
  nav { padding: 10px 16px; }
  .logo { font-size: 18px; }
  .nav-toggle { padding: 6px 10px; font-size: 11px; }
  .nav-cta { padding: 7px 14px; font-size: 12px; }

  .hero { min-height: 80vh; padding: 40px 20px 32px; }
  .hero h1 { letter-spacing: -1px; }
  .hero p.sub { font-size: 15px; }
  .btn-primary { padding: 13px 24px; font-size: 14px; }
  .btn-outline { padding: 13px 20px; font-size: 13px; }
  .hero-trust { font-size: 11px; gap: 10px; }
  .stats { margin-top: 36px; }
  .stat { padding: 14px 8px; }
  .stat-n { font-size: 20px; }
  .stat-l { font-size: 10px; }

  .pain-section, .section { padding: 56px 20px; }
  .results-band { padding: 24px 20px; }
  .section-pad { padding: 0 20px; }
  .disc { margin: 0 20px; }
  footer { padding: 24px 20px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
  .price-card { padding: 22px; }
  .price-amt { font-size: 30px; }

  .pro-features { grid-template-columns: 1fr; }
  .pro-upsell { padding: 22px 18px; }
  .pro-upsell h3 { font-size: 19px; }

  .info-g { grid-template-columns: 1fr; }
  .detail-meta { grid-template-columns: 1fr; }
  .asset-detail { padding: 22px 18px; }
  .asset-detail h3 { font-size: 21px; }

  .quiz-wrap { padding: 28px 20px 60px; }
  .quiz-head h2 { font-size: 22px; }
  .q-text { font-size: 19px; }
  .opt { padding: 13px 14px; font-size: 13.5px; }

  .res-wrap { padding: 28px 20px 60px; }
  .res-head h2 { font-size: 24px; }
  .profile-pill { font-size: 15px; padding: 8px 18px; }

  .pain-card, .bene-card { padding: 18px; }
  .testi { padding: 18px; }
}

/* ================================================
   SMALL PHONE — 480px and below
   ================================================ */
@media (max-width: 480px) {
  /* Hide language label on the smallest screens, keep emoji only */
  .nav-toggle { padding: 6px 9px; }

  .hero { min-height: 75vh; padding: 32px 16px 28px; }
  .badge { font-size: 10px; padding: 5px 12px; margin-bottom: 18px; }
  .hero p.sub { font-size: 14px; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-trust { gap: 8px; font-size: 10px; flex-direction: column; }

  .stats { grid-template-columns: 1fr; }

  .pain-section, .section { padding: 44px 16px; }
  .section-pad { padding: 0 16px; }
  .disc { margin: 0 16px; padding: 12px 16px; }
  footer { padding: 20px 16px; }

  .price-card { padding: 20px 18px; }

  .quiz-wrap { padding: 20px 16px 48px; }
  .res-wrap { padding: 20px 16px 48px; }
  .alloc-box { padding: 18px 16px; }

  .step-item { gap: 14px; padding: 18px 0; }
  .step-num { min-width: 32px; height: 32px; font-size: 11px; }

  .faq-q { font-size: 14px; padding: 14px 16px; }
  .faq-a { padding: 0 16px 14px 16px; font-size: 13px; }

  .asset-detail { padding: 20px 16px; }
}

/* ================================================
   PRINT (basic — for the future PDF feature)
   ================================================ */
@media print {
  nav, .hero-btns, .btn-primary, .btn-outline, .nav-cta, .nav-toggle,
  .pro-upsell, .btn-rst, footer { display: none !important; }
  body { background: white !important; color: black !important; }
}
