/* ---------- RESET + BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #ffffff;
  background: #070707;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

:root {
  --bg: #070707;
  --bg-2: #0c0c0c;
  --bg-3: #111111;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-2: rgba(255, 255, 255, 0.72);
  --text-3: rgba(255, 255, 255, 0.48);
  --gold: #c9a871;
  --gold-soft: #d4b886;
  --gold-dark: #a8875a;
  --gold-glow: rgba(201, 168, 113, 0.25);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --container: 1200px;
  --radius: 16px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- AMBIENT BACKGROUND (fixed, runs whole site) ---------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.ambient__glow--1 {
  top: -200px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 113, 0.18) 0%, transparent 60%);
}
.ambient__glow--2 {
  bottom: -200px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 113, 0.12) 0%, transparent 60%);
}
.ambient__glow--3 {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 113, 0.08) 0%, transparent 60%);
}
.ambient__noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Ensure content sits above ambient */
.nav, .hero, .section, .marquee, .footer { position: relative; z-index: 2; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 4rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); font-weight: 600; }
em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 500;
}
p { font-size: 1rem; color: var(--text-2); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ---------- KICKER / EYEBROW ---------- */
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid rgba(201, 168, 113, 0.3);
  background: rgba(201, 168, 113, 0.05);
  border-radius: 50px;
  margin-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-2);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.35s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
}
.btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -15px var(--gold-glow);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  color: var(--gold);
}

.btn--gold {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn--gold:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -15px var(--gold-glow);
}

.btn--ghost {
  padding: 11px 22px;
  font-size: 0.85rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.btn--full { width: 100%; }
.btn--large { padding: 20px 42px; font-size: 1rem; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(7, 7, 7, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s var(--ease);
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(7, 7, 7, 0.9);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  color: var(--text);
  transition: opacity 0.3s var(--ease);
}
.nav__logo:hover { opacity: 0.85; }
.nav__logo-img {
  height: 62px;
  width: auto;
  display: block;
}
.footer .nav__logo-img {
  height: 68px;
}

.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__burger { display: none; flex-direction: column; gap: 5px; }
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  padding: 180px 0 120px;
  display: flex;
  align-items: center;
}
.hero__inner {
  max-width: 980px;
  text-align: center;
  margin: 0 auto;
}
.hero__title {
  margin-bottom: 28px;
  font-weight: 500;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-2);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0.8;
}
.hero__trust p {
  font-size: 0.85rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.hero__trust strong {
  color: var(--text-2);
  font-weight: 500;
}
.trust-line {
  width: 60px; height: 1px;
  background: var(--line-2);
}

/* Inline hero stats row */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stat {
  text-align: center;
  flex: 1;
}
.hero-stat__num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.hero-stat__label {
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-stat__divider {
  width: 1px;
  height: 50px;
  background: var(--line-2);
}

/* ---------- MARQUEE ---------- */
.marquee {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
}
.marquee__track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text-2);
}
.marquee__track span:nth-child(even) {
  color: var(--gold);
  font-size: 1rem;
  font-style: normal;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 140px 0;
  position: relative;
}
.section + .section {
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin-bottom: 80px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-3);
  line-height: 1.7;
}

/* ---------- PROBLEM ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 90px;
}
.pain-card {
  position: relative;
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 113, 0.4);
  background: rgba(201, 168, 113, 0.03);
}
.pain-card:hover::before { transform: scaleX(1); }

.pain-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.pain-card__num {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-variant-numeric: tabular-nums;
}
.pain-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(201, 168, 113, 0.08);
  border: 1px solid rgba(201, 168, 113, 0.2);
  color: var(--gold);
}
.pain-card__icon svg {
  width: 20px;
  height: 20px;
}
.pain-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.25;
}
.pain-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-3);
}

.bold-statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}
.bold-statement p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.bold-line {
  flex-grow: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

/* ---------- SOLUTION / FLOW ---------- */
.flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 100px 0 90px;
}
.flow__line {
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 168, 113, 0.4) 10%,
    rgba(201, 168, 113, 0.4) 90%,
    transparent
  );
}
.flow__step {
  position: relative;
  text-align: center;
  padding-top: 6px;
}
.flow__dot {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid rgba(201, 168, 113, 0.35);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 auto 28px;
  position: relative;
  transition: all 0.4s var(--ease);
  box-shadow: 0 0 0 6px var(--bg);
}
.flow__dot::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201, 168, 113, 0.15);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s var(--ease);
}
.flow__step:hover .flow__dot {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: scale(1.05);
}
.flow__step:hover .flow__dot::after {
  opacity: 1;
  inset: -12px;
}
.flow__content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 600;
}
.flow__content p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-3);
}

.one-liner {
  text-align: center;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.one-liner p {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 500;
  color: var(--text);
}

/* ---------- FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  position: relative;
  padding: 40px 34px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 113, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 113, 0.35);
  background: rgba(201, 168, 113, 0.02);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover .feature-card__arrow {
  color: var(--gold);
  transform: translateX(4px);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  background: rgba(201, 168, 113, 0.08);
  border: 1px solid rgba(201, 168, 113, 0.2);
  color: var(--gold);
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 26px;
}
.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-weight: 600;
}
.feature-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-3);
  flex-grow: 1;
}
.feature-card__arrow {
  margin-top: 22px;
  font-size: 1.2rem;
  color: var(--text-3);
  transition: all 0.35s var(--ease);
}

.feature-card--accent {
  background: linear-gradient(135deg, rgba(201, 168, 113, 0.08), rgba(201, 168, 113, 0.02));
  border-color: rgba(201, 168, 113, 0.25);
}

/* ---------- PRICING ---------- */
.pricing-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.pricing-card {
  position: relative;
  max-width: 540px;
  width: 100%;
  padding: 56px 52px 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(201, 168, 113, 0.3);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 50px 120px -40px rgba(0, 0, 0, 0.8),
              0 0 120px -30px var(--gold-glow);
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 168, 113, 0.7), transparent 40%, transparent 60%, rgba(201, 168, 113, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 22px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 14px 30px -10px var(--gold-glow);
}
.pricing-card__head {
  text-align: center;
  margin-bottom: 34px;
}
.pricing-card__head h3 {
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 10px;
  font-family: var(--serif);
}
.pricing-card__head p {
  font-size: 0.92rem;
  color: var(--text-3);
}
.pricing-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.price-line { text-align: center; }
.price-amount {
  display: block;
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.price-period {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 600;
}
.price-divider {
  width: 1px;
  height: 56px;
  background: var(--line-2);
}
.pricing-card__list {
  margin-bottom: 34px;
}
.pricing-card__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  font-size: 0.94rem;
  color: var(--text-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-card__list li:last-child { border-bottom: none; }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(201, 168, 113, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 113, 0.3);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card__foot {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 20px;
}

/* ---------- HOW IT WORKS ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 80px;
}
.how-card {
  padding: 38px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}
.how-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 113, 0.35);
  background: rgba(201, 168, 113, 0.025);
}
.how-card--wide {
  grid-column: span 4;
  background: linear-gradient(135deg, rgba(201, 168, 113, 0.08), rgba(201, 168, 113, 0.02));
  border-color: rgba(201, 168, 113, 0.3);
  text-align: center;
  padding: 46px;
}
.how-card--wide h3 { font-size: 1.5rem; }
.how-card--wide p { max-width: 600px; margin: 0 auto; }
.how-card__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
  font-style: italic;
}
.how-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
  font-family: var(--serif);
}
.how-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-3);
}

.highlight-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 36px;
  background: rgba(201, 168, 113, 0.04);
  border: 1px solid rgba(201, 168, 113, 0.25);
  border-radius: var(--radius);
  text-align: center;
}
.highlight-strip p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--text);
}
.highlight-strip__icon {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ---------- RESULTS ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 900px;
  margin: 0 auto 100px;
}
.result-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.result-item__mark {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.result-item__body { flex-grow: 1; }
.result-item h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
  font-weight: 600;
  font-family: var(--serif);
}
.result-item__bar {
  width: 100%;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.result-item__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  transition: width 1.8s var(--ease);
}
.result-item.visible .result-item__bar span {
  width: var(--w);
}

.big-statement {
  text-align: center;
  padding: 70px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.big-statement p {
  font-size: 1.1rem;
  color: var(--text-3);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.big-statement h3 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-family: var(--serif);
  font-weight: 500;
}

/* ---------- FINAL CTA ---------- */
.section--cta {
  padding: 160px 0;
  text-align: center;
}
.section--cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  max-width: 820px;
  position: relative;
}
.section--cta h2 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  margin: 22px 0 22px;
  line-height: 1.08;
}
.cta-sub {
  font-size: 1.2rem;
  color: var(--text-2);
  margin-bottom: 44px;
}
.cta-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-meta span {
  font-size: 0.85rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
  background: rgba(0, 0, 0, 0.4);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-3);
  max-width: 300px;
  margin-top: 18px;
  line-height: 1.6;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer__col a {
  display: block;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-3);
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  padding: 30px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- LEGAL PAGES ---------- */
.legal {
  padding: 200px 0 140px;
  position: relative;
  z-index: 2;
}
.legal__inner {
  max-width: 820px;
}
.legal h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  margin: 18px 0 18px;
  font-weight: 500;
  line-height: 1.1;
}
.legal__updated {
  font-size: 0.85rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.legal__content h2 {
  font-size: 1.45rem;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--text);
  margin: 44px 0 14px;
  letter-spacing: -0.01em;
}
.legal__content h2:first-child { margin-top: 0; }
.legal__content p {
  font-size: 0.98rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 18px;
}
.legal__content ul {
  margin: 0 0 22px 0;
  padding: 0;
  list-style: none;
}
.legal__content ul li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}
.legal__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.legal__content a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 168, 113, 0.3);
  transition: all 0.3s var(--ease);
}
.legal__content a:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold);
}
.legal__back {
  margin-top: 60px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-card--wide { grid-column: span 2; }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .flow__line { display: none; }
  .section { padding: 110px 0; }
}
@media (max-width: 768px) {
  .section { padding: 90px 0; }
  .hero { padding: 140px 0 80px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-card--wide { grid-column: span 1; }
  .flow { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; gap: 10px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .pricing-card { padding: 44px 28px; }
  .pricing-card__price { gap: 18px; }
  .price-amount { font-size: 2.4rem; }
  .bold-statement { flex-direction: column; }
  .bold-line { max-width: 60px; }
  .highlight-strip { flex-direction: column; gap: 14px; }
  .cta-meta { gap: 18px; }
  .marquee__track { font-size: 1.1rem; gap: 28px; }
  h1 br, h2 br { display: none; }
  .hero__stats { gap: 20px; padding-top: 36px; margin-top: 50px; }
  .hero-stat__divider { height: 36px; }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .result-item { flex-direction: column; gap: 10px; padding: 24px 0; }
}
