
:root {
  --gold: #C9A84C;
  --gold-light: #E8C86A;
  --gold-dim: rgba(201,168,76,0.15);
  --gold-border: rgba(201,168,76,0.3);
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #161616;
  --text: #F0EDE6;
  --muted: #8A8580;
  --card: #141414;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px; /* Offset for fixed nav on subpages */
}

/* Home page offset removal */
body.home-page { padding-top: 0; }

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #0A0A0A; }
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline { background: transparent; border: 1.5px solid var(--gold-border); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.btn-lg { padding: 18px 36px; font-size: 17px; border-radius: 10px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
}
.home-page nav { background: transparent; border-bottom: none; }
.home-page nav.scrolled {
  background: rgba(10,10,10,0.92);
  padding: 14px 0;
  border-bottom: 1px solid var(--gold-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.05em; color: var(--text); text-decoration: none; }
.logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; letter-spacing: 0.02em; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 70px;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
  padding: 40px 24px; z-index: 999;
  flex-direction: column; align-items: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); font-size: 22px; font-weight: 600; text-decoration: none; }
@media (max-width: 768px) { .nav-links, .nav-right .btn-outline { display: none; } .hamburger { display: flex; } }

/* PAGE HERO (For subpages) */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.page-hero p { color: var(--gold); font-size: 18px; margin-top: 12px; font-weight: 500; }

/* HOME HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; position: relative; overflow: hidden; margin-top: -80px;}
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 70%); }
.hero-grid { position: absolute; inset: 0; opacity: 0.04; background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; text-align: center; }
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 9vw, 88px); line-height: 1.0; letter-spacing: 0.02em; margin-bottom: 24px; color: var(--text); }
.hero h1 em { font-style: normal; color: var(--gold); display: block; }
.hero p { font-size: clamp(16px, 2.5vw, 20px); color: var(--muted); max-width: 580px; margin: 0 auto 40px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-checks { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; color: var(--muted); font-size: 14px; margin-bottom: 64px; }
.hero-checks span { display: flex; align-items: center; gap: 6px; }
.hero-checks .check { color: var(--gold); font-size: 16px; }
.stats-row { display: flex; justify-content: center; gap: 0; border: 1px solid var(--gold-border); border-radius: var(--radius-lg); background: var(--card); overflow: hidden; max-width: 600px; margin: 0 auto; }
.stat { flex: 1; padding: 24px 20px; text-align: center; border-right: 1px solid var(--gold-border); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }

/* SECTIONS */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 6vw, 58px); letter-spacing: 0.03em; line-height: 1.05; margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 auto; }

/* HOW IT WORKS */
#how { background: var(--bg2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before { content: ''; position: absolute; top: 44px; left: calc(16.67% + 20px); right: calc(16.67% + 20px); height: 1px; background: linear-gradient(90deg, transparent, var(--gold-border), transparent); }
.step { text-align: center; padding: 40px 24px; background: var(--card); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.06); position: relative; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-dim); border: 1.5px solid var(--gold-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--gold); }
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.65; }
@media (max-width: 700px) { .steps { grid-template-columns: 1fr; } .steps::before { display: none; } }

/* WHO IT'S FOR */
#who { background: var(--bg); padding-bottom: 40px; }
.biz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.biz-card { background: var(--card); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06); padding: 28px 20px; text-align: center; transition: all 0.25s ease; }
.biz-card:hover { border-color: var(--gold-border); background: #1A1A14; transform: translateY(-3px); }
.biz-icon { font-size: 36px; margin-bottom: 12px; }
.biz-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.biz-card p { font-size: 13px; color: var(--muted); }
@media (max-width: 800px) { .biz-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .biz-grid { grid-template-columns: 1fr; } }

/* PRICING */
#pricing { background: var(--bg2); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.plan { background: var(--card); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.07); padding: 40px 32px; position: relative; overflow: hidden; transition: all 0.3s ease; }
.plan:hover { transform: translateY(-4px); }
.plan.featured { background: #141209; border: 1.5px solid var(--gold); box-shadow: var(--shadow-gold), inset 0 0 80px rgba(201,168,76,0.04); }
.plan-badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: #0A0A0A; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.plan-name { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.plan-price { font-family: 'Bebas Neue', sans-serif; font-size: 64px; line-height: 1; color: var(--text); }
.plan-price sup { font-size: 28px; vertical-align: top; margin-top: 10px; display: inline-block; color: var(--muted); }
.plan-price sub { font-size: 20px; color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.plan-subtext { font-size: 13px; color: var(--gold); margin: 6px 0 28px; font-weight: 500; }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--muted); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan .btn { width: 100%; justify-content: center; }
.pricing-note { text-align: center; color: var(--muted); font-size: 15px; padding-top: 8px; }
.pricing-note strong { color: var(--text); }
@media (max-width: 840px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 28px; } }

/* INCLUDED */
#included { background: var(--bg); padding-top: 40px; }
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.included-item { display: flex; align-items: flex-start; gap: 14px; background: var(--card); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06); padding: 20px 22px; }
.included-icon { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.included-item p { font-size: 15px; line-height: 1.5; }
@media (max-width: 600px) { .included-grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
#testimonials { background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--card); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.06); padding: 36px 28px; position: relative; }
.testi-card::before { content: '\201C'; font-family: 'DM Serif Display', serif; font-size: 80px; line-height: 0.6; color: var(--gold); opacity: 0.4; position: absolute; top: 24px; left: 24px; }
.testi-quote { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; padding-top: 20px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-dim); border: 1.5px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--gold); flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 14px; }
.testi-biz { font-size: 12px; color: var(--gold); margin-top: 2px; }
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 4px; }
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }

/* FAQ */
#faq { background: var(--bg); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 600; text-align: left; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 22px; flex-shrink: 0; transition: transform 0.3s; }
.faq-a { display: none; padding: 0 0 24px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* FINAL CTA */
#cta { background: var(--bg2); text-align: center; padding: 120px 0; }
.cta-inner { max-width: 640px; margin: 0 auto; }
#cta h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px, 7vw, 70px); letter-spacing: 0.02em; line-height: 1.05; margin-bottom: 20px; }
#cta p { font-size: 18px; color: var(--muted); margin-bottom: 40px; }
.cta-sub { font-size: 14px; color: var(--muted); margin-top: 16px; }

/* CONTACT */
.form-wrap { max-width: 480px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--card); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 15px; padding: 14px 16px; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success .checkmark { font-size: 56px; margin-bottom: 16px; }
.form-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* FOOTER */
footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.07); padding: 56px 0 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand .logo { font-size: 30px; display: block; margin-bottom: 10px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 280px; line-height: 1.6; }
.footer-contact h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-contact a { display: block; color: var(--muted); font-size: 15px; text-decoration: none; margin-bottom: 8px; }
.footer-contact a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 20px auto 0; }
