/* ==========================================================
   Quadz — Guide to Profitability
   Modern dark, red-accented trading theme
   ========================================================== */

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

:root {
  --bg: #07080b;
  --bg-2: #0c0e13;
  --bg-3: #13161d;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #f4f5f7;
  --text-dim: #a5acb8;
  --text-mute: #6b7280;

  --red-brand: #dc2626;
  --red-2: #f87171;
  --red-dark: #991b1b;
  --red-deep: #7f1d1d;

  --green: #22c55e;
  --red-accent: #ef4444;
  --purple: #8b5cf6;
  --cyan: #22d3ee;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 10px 30px -10px rgba(0,0,0,0.6);
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,0.7);

  --maxw: 1200px;

  --ease: cubic-bezier(.2,.7,.3,1);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Background layers ---------- */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, rgba(0,0,0,0.9), rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, rgba(0,0,0,0.9), rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.bg-glow {
  position: fixed;
  width: 900px; height: 900px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 { top: -300px; left: -200px; background: radial-gradient(closest-side, rgba(220,38,38,0.45), transparent 70%); }
.bg-glow-2 { top: 400px; right: -250px; background: radial-gradient(closest-side, rgba(139,92,246,0.35), transparent 70%); }

main, .nav, footer { position: relative; z-index: 1; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0) 90%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  margin: 16px 0 16px;
  letter-spacing: -0.02em;
}
.section-head p {
  color: var(--text-dim);
  font-size: 17px;
  margin: 0;
}

.grad {
  background: linear-gradient(90deg, var(--red-2) 0%, var(--red-brand) 40%, #7f1d1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.25);
  color: var(--red-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.tag-pill .stars { letter-spacing: 2px; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 8, 11, 0.7);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 8, 11, 0.85);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 15px;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(220,38,38,0.18), rgba(220,38,38,0.04));
  border: 1px solid rgba(220,38,38,0.35);
  overflow: hidden;
  box-shadow: 0 6px 20px -6px rgba(220,38,38,0.45);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.brand-text { color: var(--text); }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--red-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-lg { padding: 15px 26px; font-size: 15px; border-radius: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--red-2) 0%, var(--red-brand) 55%, var(--red-dark) 100%);
  color: #0b0b0f;
  box-shadow: 0 10px 30px -10px rgba(220,38,38,0.6), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(220,38,38,0.7), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-primary .arrow { transition: transform .2s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--red-brand);
  color: var(--red-2);
  background: rgba(220,38,38,0.06);
}

.btn-ghost {
  color: var(--text-dim);
  background: transparent;
}
.btn-ghost:hover { color: var(--text); background: var(--surface); }

/* ---------- HERO ---------- */
.hero {
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.hero-sub {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 560px;
  margin: 0 0 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 560px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat-num span { color: var(--red-brand); font-size: 18px; margin-left: 2px; }
.stat-label { color: var(--text-mute); font-size: 13px; margin-top: 4px; }

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 380px;
}
.indicator-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform .6s var(--ease);
}
.indicator-img:hover { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(19, 22, 29, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
.float-card-1 { top: -10px; right: -10px; animation-delay: 0s; }
.float-card-2 { bottom: 20px; left: -30px; animation-delay: 2s; }
.fc-label { font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.08em; }
.fc-value { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--red-2); font-size: 16px; margin-top: 2px; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Marquee */
.marquee {
  margin-top: 80px;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--text-dim);
  font-size: 18px;
  letter-spacing: 0.02em;
}
.marquee-track span:nth-child(even) { color: var(--red-brand); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- FEATURES ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(220,38,38,0.12), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(220,38,38,0.35);
  background: var(--surface-2);
}
.feature:hover::before { opacity: 1; }
.feature > * { position: relative; }
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(220,38,38,0.18), rgba(220,38,38,0.04));
  border: 1px solid rgba(220,38,38,0.25);
  color: var(--red-2);
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.feature p { margin: 0; color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

/* ---------- MARKET LEVELS ---------- */
.levels-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.levels-copy .tag-pill { margin-bottom: 18px; }
.levels-copy h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.levels-copy p { color: var(--text-dim); font-size: 17px; margin: 0 0 24px; }
.levels-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 12px; }
.levels-list li {
  display: flex; gap: 12px; align-items: center;
  color: var(--text);
  font-size: 15px;
}
.check {
  width: 22px; height: 22px;
  display: inline-grid; place-items: center;
  border-radius: 7px;
  background: rgba(220,38,38,0.15);
  color: var(--red-2);
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(220,38,38,0.25);
}

/* level card visual */
.level-card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.level-row {
  display: grid;
  grid-template-columns: 60px 1fr 90px;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 13px;
}
.level-tag {
  font-weight: 700;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  text-align: center;
  letter-spacing: 0.04em;
}
.level-tag.pdh { background: rgba(139,92,246,0.15); color: #c4b5fd; }
.level-tag.pwh { background: rgba(34,211,238,0.15); color: #67e8f9; }
.level-tag.eq  { background: rgba(220,38,38,0.15); color: var(--red-2); }
.level-tag.pwl { background: rgba(251,191,36,0.15); color: #fcd34d; }
.level-tag.pdl { background: rgba(239,68,68,0.15); color: #fca5a5; }
.level-bar {
  height: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  overflow: hidden;
}
.level-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-2), var(--red-brand));
}
.level-val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-align: right;
  color: var(--text);
}
.level-sep {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}
.level-kz { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kz-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
}
.kz-item span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--text-mute);
}
.kz-item.active { border-color: rgba(220,38,38,0.35); color: var(--red-2); background: rgba(220,38,38,0.06); }
.kz-item.active span { background: var(--red-brand); box-shadow: 0 0 0 4px rgba(220,38,38,0.2); }

/* ---------- PRICING ---------- */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); }

.price-card-featured {
  background:
    radial-gradient(circle at top, rgba(220,38,38,0.12), transparent 60%),
    linear-gradient(180deg, rgba(220,38,38,0.05), rgba(220,38,38,0) 90%),
    var(--surface);
  border-color: rgba(220,38,38,0.4);
  box-shadow: 0 30px 80px -30px rgba(220,38,38,0.35);
}
.ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, var(--red-2), var(--red-dark));
  color: #0b0b0f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 20px -5px rgba(220,38,38,0.5);
}
.plan-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-card-featured .plan-label { color: var(--red-2); }

.price-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.price-head p { color: var(--text-dim); margin: 0; font-size: 14.5px; }

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.price-card-featured .price-amount { color: var(--red-2); }
.price-per { color: var(--text-dim); font-size: 15px; }
.price-alt { color: var(--text-mute); font-size: 12px; margin-top: -14px; }

.price-feat { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.price-feat li {
  color: var(--text);
  font-size: 14.5px;
  padding-left: 28px;
  position: relative;
}
.price-feat li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 6px;
  background: rgba(220,38,38,0.15);
  color: var(--red-2);
  font-size: 11px;
  font-weight: 800;
}
.price-foot { text-align: center; font-size: 12px; color: var(--text-mute); margin-top: -6px; }

/* ---------- REVIEWS ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.review:hover { transform: translateY(-4px); border-color: rgba(220,38,38,0.3); }
.review-stars { color: var(--red-brand); letter-spacing: 2px; font-size: 14px; }
.review p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: #0b0b0f;
}
.r-name { font-weight: 600; font-size: 13.5px; }
.handle { color: var(--text-mute); font-weight: 400; margin-left: 4px; }
.r-time { color: var(--text-mute); font-size: 12px; }

.rating-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 620px;
  margin: 0 auto;
}
.rating-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--red-2);
  line-height: 1;
}
.rating-bars { flex: 1; display: grid; gap: 6px; }
.rb { display: grid; grid-template-columns: 30px 1fr 40px; gap: 10px; align-items: center; font-size: 12px; color: var(--text-dim); }
.rb-bar { height: 6px; background: rgba(255,255,255,0.05); border-radius: 999px; overflow: hidden; }
.rb-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--red-2), var(--red-brand)); }
.rb-pct { text-align: right; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.faq-item[open] { border-color: rgba(220,38,38,0.3); background: var(--surface-2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--red-2);
  transition: transform .3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-dim); margin: 12px 0 0; font-size: 15px; line-height: 1.65; }

/* ---------- CTA ---------- */
.cta-section {
  padding: 100px 0 120px;
}
.cta-inner {
  max-width: 860px;
  text-align: center;
  background:
    radial-gradient(circle at 30% 0%, rgba(220,38,38,0.25), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(139,92,246,0.2), transparent 60%),
    linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: 72px 48px;
  box-shadow: var(--shadow-lg);
}
.cta-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.cta-inner p { color: var(--text-dim); font-size: 18px; margin: 0 0 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
  padding: 64px 0 24px;
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--text-dim); font-size: 14px; margin-top: 14px; max-width: 320px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  margin: 0 0 16px;
}
.footer-cols a {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.footer-cols a:hover { color: var(--red-2); }
.footer-bottom {
  padding-top: 20px;
}
.footer-bottom p { color: var(--text-mute); font-size: 12px; margin: 0; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: auto; }
  .indicator-img { transform: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .levels-wrap { grid-template-columns: 1fr; gap: 40px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    background: rgba(7,8,11,0.98);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.mobile-open a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
  }

  .hero { padding: 40px 0 60px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 22px; }

  .feature-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }

  .rating-summary { flex-direction: column; align-items: stretch; gap: 20px; text-align: center; }
  .rating-num { text-align: center; }

  .cta-inner { padding: 48px 24px; border-radius: 20px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .float-card { display: none; }
  .marquee-track { font-size: 15px; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .float-card, .eyebrow .dot { animation: none; }
}
