:root {
  --bg: #0A0A0A;
  --bg-alt: #1C1A18;
  --bg-card: #161614;
  --fg: #F5F5F0;
  --fg-muted: #8A8780;
  --fg-subtle: #5A5855;
  --gold: #C9A96E;
  --gold-bright: #D4AF37;
  --gold-dim: #B5864B;
  --border: rgba(201,169,110,0.15);
  --border-subtle: rgba(245,245,240,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

::selection { background: rgba(201,169,110,0.25); color: var(--fg); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── Typography ── */
.serif { font-family: 'Playfair Display', serif; }
.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #0A0A0A;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover {
  background: #D4AF37;
  box-shadow: 0 0 24px rgba(201,169,110,0.3);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover { color: var(--fg); border-color: var(--fg-muted); }

/* ── Layout helpers ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

/* ── Divider ── */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
  margin: 0;
}

/* ─────────────────────────────────────────
   NAVBAR
   ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.navbar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.navbar-logo span { color: var(--gold); }
.navbar-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.navbar-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--fg); }
.navbar-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s;
}
.navbar-cta:hover { background: rgba(201,169,110,0.08); border-color: var(--gold); }

/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_190923/be4623cb-e8a2-43be-9e9a-60de11003aab.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(10,10,10,0.7) 0%, #0A0A0A 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-inner {
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.9;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 700;
  line-height: 1.02;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 44px;
  max-width: 560px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-note {
  font-size: 13px;
  color: var(--fg-subtle);
  margin-top: 20px;
}

/* ─────────────────────────────────────────
   WHAT WE DO
   ───────────────────────────────────────── */
.section-label { margin-bottom: 20px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.section-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 600px;
}
.section-body + .section-body { margin-top: 20px; }

/* ─────────────────────────────────────────
   WHY REVENUE LOST (cards)
   ───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.card {
  background: var(--bg-card);
  padding: 48px 40px;
}
.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  opacity: 0.7;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.card-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* ─────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────── */
.steps-list { list-style: none; display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.step-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   PRICING
   ───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--gold-dim);
  background: #1C1916;
}
.pricing-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.pricing-period {
  font-size: 13px;
  color: var(--fg-subtle);
  margin-bottom: 32px;
}
.pricing-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
}
.pricing-cta {
  display: block;
  text-align: center;
  background: rgba(201,169,110,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.pricing-cta:hover {
  background: rgba(201,169,110,0.18);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201,169,110,0.15);
}
.pricing-prereq-note {
  font-size: 11px;
  color: var(--gold-dim);
  font-weight: 400;
  margin-bottom: 8px;
  margin-top: -4px;
  font-style: italic;
}
.pricing-feature-note {
  font-size: 11px;
  color: var(--gold-dim);
  font-weight: 400;
  margin-top: 10px;
  font-style: italic;
  text-align: center;
}
.pricing-fine-print {
  font-size: 12px;
  color: var(--fg-subtle);
  text-align: center;
  margin-top: 40px;
  line-height: 1.6;
}
.pricing-trust-note {
  font-size: 12px;
  color: var(--fg-subtle);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────
   TRUST
   ───────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 36px 32px;
}
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.trust-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.trust-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.65;
}
.trust-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-subtle);
  line-height: 1.6;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

/* ─────────────────────────────────────────
   OUR STORY
   ───────────────────────────────────────── */
.story-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--fg-muted);
  max-width: 660px;
}
.story-mission {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  max-width: 600px;
  margin: 48px 0;
  padding-left: 28px;
  border-left: 2px solid var(--gold-dim);
  line-height: 1.5;
}
.story-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 16px;
}

/* ─────────────────────────────────────────
   FAQ
   ───────────────────────────────────────── */
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.faq-q {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 20px; font-weight: 300; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}
.faq-item.open .faq-a { display: block; }

/* ─────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────── */
.cta-center { text-align: center; }
.cta-center .section-title { max-width: 600px; margin: 0 auto 20px; }
.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-email {
  font-size: 13px;
  color: var(--fg-subtle);
}
.cta-email a { color: var(--fg-muted); text-decoration: none; border-bottom: 1px solid var(--border-subtle); }

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.footer {
  padding: 48px 0 36px;
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
.footer-brand .footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 13px;
  color: var(--fg-subtle);
  margin-bottom: 4px;
}
.footer-safety {
  font-size: 12px;
  color: var(--fg-subtle);
  max-width: 300px;
  line-height: 1.5;
}
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a {
  font-size: 13px;
  color: var(--fg-subtle);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg-muted); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--fg-subtle);
  text-align: center;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 900px) {
  .container, .navbar, .hero-content { padding-left: 28px; padding-right: 28px; }
  .cards-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .navbar-links { display: none; }
  .hero h1 { font-size: clamp(38px, 8vw, 64px); }
}
@media (max-width: 600px) {
  .container, .navbar, .hero-content { padding-left: 20px; padding-right: 20px; }
  .section { padding: 72px 0; }
  .step { grid-template-columns: 56px 1fr; gap: 24px; }
  .step-num { font-size: 40px; }
  .footer-inner { flex-direction: column; }
}