/* InvestRage — css/styles.css */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;900&display=swap');

:root {
  --bg: #050000;
  --bg2: #0a0000;
  --bg3: #100505;
  --red: #c62828;
  --red-light: #e53935;
  --orange: #ff6b35;
  --orange-light: #ff8c5a;
  --text: #f0f0f0;
  --muted: #776655;
  --muted2: #4a3a2a;
  --white: #ffffff;
  --radius: 4px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-light); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── NAV ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,0,0,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198,40,40,0.3);
  padding: 0 24px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--orange)) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover { opacity: 0.85; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--text); transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.08em;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(198,40,40,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.5);
  color: white;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,107,53,0.5);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-outline-red {
  background: transparent;
  color: var(--red-light);
  border: 2px solid var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: white;
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 70px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover; background-position: center top;
  filter: brightness(0.35) saturate(1.2);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,0,0,0.85) 0%, rgba(30,5,0,0.6) 50%, rgba(5,0,0,0.9) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(198,40,40,0.2); border: 1px solid rgba(198,40,40,0.5);
  color: var(--orange); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 6px 16px; border-radius: 2px; margin-bottom: 24px;
}
.hero-tag::before { content: '●'; color: var(--red-light); font-size: 0.6em; }
.hero h1 { color: white; text-shadow: 0 0 40px rgba(198,40,40,0.3); margin-bottom: 8px; }
.hero h1 span { background: linear-gradient(135deg, var(--red-light), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(240,240,240,0.8); max-width: 600px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { }
.hero-stat .val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--red-light), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat .lbl { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  color: var(--orange); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--muted); max-width: 600px; margin: 0 auto; }
.accent-bar {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  margin: 16px auto 0;
}

/* ── STATS STRIP ── */
.stats-strip { background: var(--bg2); border-top: 1px solid rgba(198,40,40,0.2); border-bottom: 1px solid rgba(198,40,40,0.2); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item { padding: 20px; }
.stat-item .num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--red-light), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}
.stat-item .desc { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.card {
  background: var(--bg2);
  border: 1px solid rgba(198,40,40,0.15);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--red), var(--orange), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.card:hover { border-left-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(198,40,40,0.2); }
.card:hover::before { opacity: 1; }
.card-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.card h3 { margin-bottom: 12px; color: var(--white); }
.card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }
.card-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.card-badge {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 2px;
}
.badge-red { background: rgba(198,40,40,0.2); color: var(--red-light); border: 1px solid rgba(198,40,40,0.4); }
.badge-orange { background: rgba(255,107,53,0.15); color: var(--orange); border: 1px solid rgba(255,107,53,0.3); }
.badge-green { background: rgba(76,175,80,0.15); color: #81c784; border: 1px solid rgba(76,175,80,0.3); }

/* ── STRATEGY CARDS ── */
.strategy-card { }
.strategy-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.strategy-number { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: rgba(198,40,40,0.2); line-height: 1; }
.strategy-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.strategy-stat { background: rgba(0,0,0,0.3); padding: 12px; border-radius: 2px; text-align: center; }
.strategy-stat .s-val { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--orange); }
.strategy-stat .s-lbl { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial {
  background: var(--bg3);
  border: 1px solid rgba(255,107,53,0.15);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.testimonial::before {
  content: '"'; font-family: Georgia, serif; font-size: 5rem; color: var(--red);
  position: absolute; top: 10px; left: 20px; opacity: 0.3; line-height: 1;
}
.testimonial-gain {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem;
  background: linear-gradient(135deg, var(--red-light), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px; display: block;
}
.testimonial p { color: var(--text); font-style: italic; font-size: 0.95rem; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: white;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: white; }
.author-role { font-size: 0.75rem; color: var(--muted); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 120px 0 60px;
  background: var(--bg2);
  position: relative; overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.25) saturate(1.1);
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,0,0,0.7) 0%, rgba(5,0,0,0.95) 100%);
}
.page-header-content { position: relative; z-index: 2; }
.page-header h1 { color: white; margin-bottom: 16px; }
.page-header p { color: var(--muted); font-size: 1.1rem; max-width: 600px; }

/* ── PERFORMANCE TABLE ── */
.perf-table-wrap { overflow-x: auto; margin-bottom: 40px; }
.perf-table { width: 100%; border-collapse: collapse; }
.perf-table th {
  background: rgba(198,40,40,0.2); color: var(--orange);
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 14px 16px; text-align: center; border-bottom: 1px solid rgba(198,40,40,0.3);
}
.perf-table td { padding: 12px 16px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.9rem; }
.perf-table tr:hover td { background: rgba(255,107,53,0.05); }
.pos { color: #81c784; font-weight: 600; }
.neg { color: #ef9a9a; font-weight: 600; }
.year-row td { background: rgba(198,40,40,0.08); font-weight: 700; }

/* ── SVG CHART ── */
.chart-section { background: var(--bg2); }
.chart-wrap { background: var(--bg3); border: 1px solid rgba(198,40,40,0.15); border-radius: var(--radius); padding: 32px; }
.chart-legend { display: flex; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; }

/* ── ANNUAL RETURNS ── */
.annual-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.annual-card {
  background: var(--bg3); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.annual-card.highlight { border-color: rgba(198,40,40,0.4); }
.annual-year { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.annual-pct {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem;
}
.annual-pct.pos-big { background: linear-gradient(135deg, #4caf50, #8bc34a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.annual-pct.neg-big { background: linear-gradient(135deg, #ef5350, #e91e63); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── COURSES ── */
.course-card {
  background: var(--bg2);
  border: 1px solid rgba(198,40,40,0.2);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition);
}
.course-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(198,40,40,0.2); }
.course-header {
  padding: 24px;
  background: linear-gradient(135deg, rgba(198,40,40,0.3) 0%, rgba(255,107,53,0.15) 100%);
  border-bottom: 1px solid rgba(198,40,40,0.2);
}
.course-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: 2px; margin-bottom: 12px;
}
.badge-free { background: rgba(76,175,80,0.2); color: #81c784; border: 1px solid rgba(76,175,80,0.4); }
.badge-premium { background: rgba(198,40,40,0.3); color: var(--orange); border: 1px solid rgba(255,107,53,0.4); }
.course-price { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--orange); }
.course-price span { font-size: 1rem; color: var(--muted); font-family: 'Inter', sans-serif; }
.course-body { padding: 28px; }
.module-list { list-style: none; margin-bottom: 24px; }
.module-list li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem; color: var(--text); display: flex; gap: 10px; align-items: flex-start;
}
.module-list li::before { content: '▸'; color: var(--orange); flex-shrink: 0; }

/* ── WEBINAR ── */
.webinar-banner {
  background: linear-gradient(135deg, rgba(198,40,40,0.2) 0%, rgba(255,107,53,0.1) 100%);
  border: 1px solid rgba(198,40,40,0.3);
  border-radius: var(--radius); padding: 40px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.webinar-banner h3 { margin-bottom: 8px; }
.webinar-banner p { color: var(--muted); margin-bottom: 0; }

/* ── COMMUNITY ── */
.community-section {
  position: relative; overflow: hidden; padding: 100px 0;
}
.community-bg {
  position: absolute; inset: 0;
  background-image: url('../images/community.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.25) saturate(0.8);
}
.community-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(5,0,0,0.85) 50%, var(--bg) 100%);
}
.community-content { position: relative; z-index: 2; text-align: center; }

/* ── FORM ── */
.contact-section { background: var(--bg2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.form-wrap {
  background: var(--bg3);
  border: 1px solid rgba(198,40,40,0.2);
  border-radius: var(--radius); padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,40,40,0.25);
  border-radius: var(--radius);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: rgba(255,107,53,0.05); }
.form-group select option { background: #1a0808; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 0.75rem; color: #ef5350; margin-top: 4px; display: none; }
.form-success {
  display: none; background: rgba(76,175,80,0.15); border: 1px solid rgba(76,175,80,0.4);
  color: #81c784; padding: 16px; border-radius: var(--radius); text-align: center; margin-top: 16px;
}

/* ── SUPPORT CARDS ── */
.support-grid { display: flex; flex-direction: column; gap: 16px; }
.support-card {
  background: var(--bg3); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: center; gap: 16px;
  transition: all var(--transition);
}
.support-card:hover { border-color: rgba(255,107,53,0.3); transform: translateX(4px); }
.support-icon { font-size: 2rem; flex-shrink: 0; }
.support-card h4 { color: white; margin-bottom: 4px; font-size: 1rem; }
.support-card p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ── RISK DISCLAIMER ── */
.risk-disclaimer {
  background: rgba(198,40,40,0.06);
  border: 1px solid rgba(198,40,40,0.2);
  border-radius: var(--radius); padding: 24px;
  margin-top: 40px;
}
.risk-disclaimer h4 { color: var(--red-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.risk-disclaimer p { color: var(--muted); font-size: 0.8rem; line-height: 1.7; margin: 0; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, rgba(198,40,40,0.15) 0%, rgba(255,107,53,0.08) 100%);
  border-top: 1px solid rgba(198,40,40,0.2);
  border-bottom: 1px solid rgba(198,40,40,0.2);
  text-align: center; padding: 100px 0;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--muted); margin-bottom: 40px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid rgba(198,40,40,0.15);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 12px;
}
.footer-brand p { color: var(--muted); font-size: 0.85rem; max-width: 260px; }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.1em; color: white; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted); font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 0.8rem; margin: 0; }
.footer-disclaimer { color: var(--muted2) !important; font-size: 0.72rem !important; max-width: 600px; line-height: 1.6; }

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 44px; height: 44px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white; border: none; cursor: pointer;
  font-size: 1.2rem; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(198,40,40,0.4);
  transition: all var(--transition);
}
#back-to-top:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.5); }
#back-to-top.visible { display: flex; }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── PROS/CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.pros, .cons { padding: 16px; border-radius: 2px; }
.pros { background: rgba(76,175,80,0.08); border: 1px solid rgba(76,175,80,0.2); }
.cons { background: rgba(198,40,40,0.08); border: 1px solid rgba(198,40,40,0.2); }
.pros h5, .cons h5 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.pros h5 { color: #81c784; }
.cons h5 { color: #ef9a9a; }
.pros ul, .cons ul { list-style: none; }
.pros ul li, .cons ul li { font-size: 0.82rem; color: var(--muted); padding: 4px 0; padding-left: 14px; position: relative; }
.pros ul li::before { content: '+'; color: #81c784; position: absolute; left: 0; }
.cons ul li::before { content: '−'; color: #ef9a9a; position: absolute; left: 0; }

/* ── DRAWDOWN ── */
.drawdown-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.dd-card { background: var(--bg3); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 20px; text-align: center; }
.dd-val { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: #ef9a9a; display: block; }
.dd-lbl { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .annual-grid { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .drawdown-strip { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(5,0,0,0.98); padding: 20px 24px; gap: 16px; border-bottom: 1px solid rgba(198,40,40,0.2); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  section { padding: 60px 0; }
  .webinar-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .annual-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
