/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0d;
  --bg-alt: #0e0f13;
  --surface: #15161c;
  --surface-2: #1b1d24;
  --border: rgba(255,255,255,0.08);
  --text: #f4f4f6;
  --text-dim: #9a9ba5;
  --text-dimmer: #6b6c76;
  --lime: #c8ff3d;
  --lime-dim: #a8e02a;
  --violet: #8b5cf6;
  --gradient: linear-gradient(120deg, #c8ff3d, #4ff0b7);
  --shadow-lime: 0 0 40px rgba(200,255,61,0.25);
  --radius: 18px;
  --radius-sm: 12px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-display: 'Bebas Neue', var(--font-head), sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 780px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text-dim); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(200,255,61,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  left: 50%; top: 30%;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient);
  color: #08090a;
  box-shadow: var(--shadow-lime);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 55px rgba(200,255,61,0.4); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: var(--surface); border-color: rgba(255,255,255,0.2); }
.btn--lg { padding: 17px 32px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--nav { padding: 11px 22px; font-size: 0.88rem; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,13,0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__logo {
  width: auto; height: 40px; object-fit: contain;
}
.footer__logo {
  width: auto; height: 50px; object-fit: contain;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 1.7rem;
  line-height: 1;
  padding-top: 2px;
}

.nav__links { display: flex; gap: 32px; margin-left: auto; margin-right: 32px; }
.nav__links a { font-size: 0.92rem; color: var(--text-dim); transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a { padding: 12px 0; color: var(--text-dim); border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 14px; }
.mobile-menu.open { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 168px 0 90px;
  overflow: hidden;
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; pointer-events: none;
}
.hero__glow--1 { width: 600px; height: 600px; background: rgba(200,255,61,0.13); top: -220px; left: -150px; }
.hero__glow--2 { width: 500px; height: 500px; background: rgba(139,92,246,0.16); top: 100px; right: -180px; }

.hero__deco { position: absolute; z-index: 0; color: var(--text); opacity: 0.05; pointer-events: none; }
.hero__deco--dumbbell { width: 380px; top: 60px; right: 4%; transform: rotate(-18deg); }
.hero__deco--target { width: 220px; bottom: 40px; left: 2%; opacity: 0.04; }

.hero__inner { position: relative; z-index: 1; max-width: 780px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 26px;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }

.hero__title { font-size: clamp(2.4rem, 5.2vw, 4.1rem); margin-bottom: 24px; }
.hero__sub { font-size: 1.15rem; max-width: 640px; margin-bottom: 36px; }
.hero__sub strong { color: var(--text); }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.stat__num { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 400; letter-spacing: 0.02em; color: var(--lime); }
.stat__label { font-size: 0.82rem; color: var(--text-dimmer); }

.hero__mock {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
  margin-top: 70px;
}

.float-chip {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 10px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; color: var(--text);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  animation: float 5s ease-in-out infinite;
}
.float-chip svg { color: var(--lime); flex-shrink: 0; }
.float-chip--top { top: 30px; left: calc(50% - 240px); animation-delay: 0s; }
.float-chip--bottom { bottom: 60px; right: calc(50% - 250px); animation-delay: 1.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.phone-mock {
  width: 300px;
  background: linear-gradient(180deg, #1c1e26, #101116);
  border-radius: 38px;
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.phone-mock__notch { width: 90px; height: 18px; background: #06070a; border-radius: 20px; margin: 0 auto 12px; }
.phone-mock__screen { background: var(--bg-alt); border-radius: 24px; padding: 14px; min-height: 420px; }

.ad-card { background: var(--surface); border-radius: 16px; padding: 14px; border: 1px solid var(--border); }
.ad-card__head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ad-card__avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--gradient); }
.ad-card__name { font-size: 0.8rem; font-weight: 700; }
.ad-card__sponsor { font-size: 0.68rem; color: var(--text-dimmer); }
.ad-card__body { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 10px; }
.ad-card__img { height: 90px; border-radius: 10px; background: linear-gradient(135deg, #23262f, #14151a); margin-bottom: 10px; position: relative; overflow: hidden; }
.ad-card__img::after {
  content: "💪"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: 0.5;
}
.ad-card__cta { display: flex; justify-content: space-between; align-items: center; background: var(--surface-2); padding: 9px 12px; border-radius: 9px; font-size: 0.78rem; font-weight: 700; color: var(--lime); }

.flow-arrow { text-align: center; font-size: 0.72rem; color: var(--text-dimmer); margin: 14px 0; }

.magicline-card { background: var(--surface); border-radius: 16px; padding: 14px; border: 1px solid rgba(200,255,61,0.25); }
.magicline-card__top { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--text-dim); margin-bottom: 10px; }
.dot { width: 7px; height: 7px; border-radius: 50%; }
.dot--green { background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.magicline-card__row { display: flex; justify-content: space-between; font-size: 0.78rem; padding: 6px 0; border-top: 1px solid var(--border); }
.magicline-card__row:first-of-type { border-top: none; }
.pulse { color: var(--lime); }

/* ============ TRUSTBAR ============ */
.trustbar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; background: var(--bg-alt); }
.trustbar__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between; }
.trustbar__label { font-size: 0.82rem; color: var(--text-dimmer); flex-shrink: 0; }
.trustbar__logos { display: flex; gap: 32px; flex-wrap: wrap; }
.trustbar__logos span {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; color: var(--text-dimmer);
  font-size: 0.95rem; letter-spacing: 0.02em;
}
.trustbar__logos svg { color: var(--lime); opacity: 0.7; flex-shrink: 0; }

/* ============ SECTIONS ============ */
.section { padding: 110px 0; position: relative; }
.section--alt {
  background-color: var(--bg-alt);
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.section__head { max-width: 640px; margin-bottom: 56px; }
.section__head p { margin-top: 18px; font-size: 1.05rem; }

.divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 40px;
  color: var(--text-dimmer);
}
.divider::before, .divider::after { content: ""; height: 1px; width: 60px; background: var(--border); }
.divider svg { color: var(--lime); opacity: 0.7; }

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(200,255,61,0.08);
  border: 1px solid rgba(200,255,61,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ============ COMPARE ============ */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
.compare__col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.compare__col--good { border-color: rgba(200,255,61,0.35); box-shadow: 0 0 60px rgba(200,255,61,0.06); }
.compare__badge { display: inline-block; font-size: 0.85rem; font-weight: 700; padding: 6px 14px; border-radius: 100px; background: var(--surface-2); color: var(--text-dim); margin-bottom: 22px; }
.compare__badge--good { background: rgba(200,255,61,0.15); color: var(--lime); }
.compare__spark { width: 100%; height: 46px; margin-bottom: 6px; display: block; }
.compare__col li { display: flex; gap: 10px; padding: 11px 0; font-size: 0.95rem; color: var(--text-dim); border-top: 1px solid var(--border); }
.compare__col li:first-child { border-top: none; }
.compare__col--good li { color: var(--text); }
.x { color: #ff5c5c; font-weight: 700; }
.check { color: var(--lime); font-weight: 700; }
.compare__vs { align-self: center; font-family: var(--font-head); font-weight: 700; color: var(--text-dimmer); font-size: 0.9rem; }

/* ============ PILLARS ============ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.18); }
.pillar--highlight { border-color: rgba(200,255,61,0.4); background: linear-gradient(160deg, rgba(200,255,61,0.06), var(--surface) 40%); }
.pillar__num { position: absolute; top: 24px; right: 28px; font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.03em; color: var(--text-dimmer); font-weight: 400; }
.pillar__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--lime);
  margin-bottom: 22px;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { margin-bottom: 18px; font-size: 0.95rem; }
.pillar__list li { font-size: 0.85rem; color: var(--text-dimmer); padding: 6px 0; padding-left: 18px; position: relative; }
.pillar__list li::before { content: "→"; position: absolute; left: 0; color: var(--lime); }

/* ============ STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-top: 8px; }
.step__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.step__num {
  font-family: var(--font-display); font-weight: 400; font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lime);
}
.step__icon {
  color: var(--lime);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  box-sizing: content-box;
}
.step__line { position: absolute; top: 18px; left: -12px; width: calc(100% + 24px); height: 1px; background: var(--border); z-index: -1; }
.step:first-child .step__line { left: 50%; width: 50%; }
.step__line--last { width: 50% !important; left: -12px !important; }
.step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step p { font-size: 0.92rem; }

/* ============ FACTS ============ */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.fact {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 26px 24px;
}
.fact__num { font-family: var(--font-display); font-size: 2.6rem; color: var(--lime); line-height: 1; margin-bottom: 12px; }
.fact__label { font-size: 0.88rem; color: var(--text-dim); }

.fact-example {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 32px; margin-bottom: 56px;
}
.fact-example__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dimmer); margin-bottom: 16px; font-weight: 700; }
.fact-example__row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--border); font-size: 0.98rem; color: var(--text-dim); }
.fact-example__row:first-of-type { border-top: none; }
.fact-example__row b { color: var(--text); font-weight: 700; }
.fact-example__row--total { border-top: 1px solid rgba(200,255,61,0.3); margin-top: 4px; }
.fact-example__row--total b { color: var(--lime); font-family: var(--font-display); font-size: 1.4rem; }
.fact-example__note { font-size: 0.85rem; color: var(--text-dimmer); margin: 16px 0 0; }

/* ============ CALCULATOR ============ */
.calc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.calc__inputs { padding: 44px; display: flex; flex-direction: column; gap: 30px; }
.calc__field label { display: block; font-size: 0.88rem; color: var(--text-dim); margin-bottom: 14px; font-weight: 600; }
.calc__field input[type="range"] {
  width: 100%; height: 6px; border-radius: 100px; background: var(--surface-2);
  -webkit-appearance: none; appearance: none; outline: none; margin-bottom: 10px;
}
.calc__field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--lime); cursor: pointer;
  box-shadow: 0 0 14px rgba(200,255,61,0.6);
  border: 3px solid #0a0a0d;
}
.calc__field input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--lime); cursor: pointer; border: 3px solid #0a0a0d;
}
.calc__value { font-family: var(--font-head); font-weight: 700; color: var(--text); font-size: 1.05rem; }

.calc__result {
  background: linear-gradient(160deg, rgba(200,255,61,0.1), var(--surface-2));
  padding: 44px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--border);
}
.calc__chart { width: 150px; height: 44px; color: var(--lime); margin-bottom: 18px; }
.calc__result-label { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 8px; }
.calc__result-num { font-family: var(--font-display); font-size: 3.6rem; font-weight: 400; letter-spacing: 0.01em; color: var(--lime); margin-bottom: 14px; line-height: 1; }
.calc__result-sub { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 26px; }
.calc__result-sub b { color: var(--text); }
.calc__disclaimer { font-size: 0.78rem; color: var(--text-dimmer); margin-top: 18px; text-align: center; }

/* ============ FEATURES ============ */
.section--gymfloor {
  position: relative;
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.035) 0, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.035) 0, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 42px);
}

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.feature { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.feature__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border-radius: 12px;
  color: var(--lime); margin-bottom: 18px;
}
.feature h3 { font-size: 1.05rem; margin-bottom: 10px; }
.feature p { font-size: 0.9rem; }

/* ============ ACCORDION ============ */
.acc-item { border-bottom: 1px solid var(--border); }
.acc-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; color: var(--text);
  font-family: var(--font-head); font-size: 1.02rem; font-weight: 600;
  padding: 24px 4px; cursor: pointer; text-align: left;
}
.acc-icon { font-size: 1.4rem; color: var(--lime); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.acc-body p { padding: 0 4px 24px; font-size: 0.95rem; }

/* ============ FINAL CTA ============ */
.cta-final { position: relative; overflow: hidden; }
.cta-final__glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,61,0.1), transparent 70%);
  top: -300px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.cta-final__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-final__text h2 { margin-bottom: 18px; }
.cta-final__text p { margin-bottom: 26px; font-size: 1.05rem; }
.cta-final__list li { display: flex; gap: 10px; padding: 8px 0; color: var(--text-dim); }

.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.contact-form__cal { font-size: 0.9rem; }
.contact-form__divider { display: flex; align-items: center; gap: 12px; color: var(--text-dimmer); font-size: 0.82rem; }
.contact-form__divider::before, .contact-form__divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 13px 16px; color: var(--text);
  font-family: var(--font-body); font-size: 0.92rem; outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--lime); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-dimmer); }
.contact-form__note { text-align: center; font-size: 0.8rem; color: var(--text-dimmer); }

/* ============ FOOTER ============ */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 70px 0 26px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer__brand p { font-size: 0.88rem; margin-top: 6px; max-width: 280px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-size: 0.85rem; color: var(--text-dimmer); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.footer__col a { font-size: 0.9rem; color: var(--text-dim); transition: color 0.2s; }
.footer__col a:hover { color: var(--lime); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 0.82rem; color: var(--text-dimmer); flex-wrap: wrap; gap: 10px; }

/* ============ MOBILE CTA ============ */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; padding: 14px 16px; background: rgba(10,10,13,0.9); backdrop-filter: blur(12px); border-top: 1px solid var(--border); }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ LEGAL PAGES ============ */
.legal { padding: 160px 0 100px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 12px; }
.legal .legal__updated { color: var(--text-dimmer); font-size: 0.85rem; margin-bottom: 48px; }
.legal h2 { font-size: 1.3rem; margin: 44px 0 14px; }
.legal h3 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--text); }
.legal p, .legal li { color: var(--text-dim); font-size: 0.98rem; margin-bottom: 14px; }
.legal ul { margin: 0 0 14px; padding-left: 20px; list-style: disc; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--text); }
.legal .legal__box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 20px 24px; margin-bottom: 28px;
}
.legal .legal__note {
  background: rgba(200,255,61,0.06); border: 1px solid rgba(200,255,61,0.2);
  border-radius: var(--radius-sm); padding: 16px 20px; font-size: 0.88rem; color: var(--text-dim);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step__line { display: none; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .compare__vs { display: none; }
  .facts { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .calc__result { border-left: none; border-top: 1px solid var(--border); }
  .cta-final__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .mobile-cta { display: block; }
  body { padding-bottom: 70px; }
}

@media (max-width: 600px) {
  .hero { padding-top: 130px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .contact-form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .btn--nav { display: none; }
}
