:root {
  --bg: #080809;
  --bg2: #0f0f11;
  --bg3: #161618;
  --border: rgba(255,255,255,0.08);
  --gold: #C8A96E;
  --gold-light: #E2C98A;
  --gold-dim: rgba(200,169,110,0.15);
  --white: #F5F2EC;
  --muted: rgba(245,242,236,0.5);
  --muted2: rgba(245,242,236,0.25);
  --serif: 'DM Serif Display', serif;
  --sans: 'Sora', sans-serif;
  --radius: 4px;
  --max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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.35;
}

/* ─── TYPOGRAPHY ─── */
.serif { font-family: var(--serif); }
.gold { color: var(--gold); }
.muted { color: var(--muted); }

h1, h2, h3 { font-family: var(--serif); line-height: 1.15; font-weight: 400; }

/* ─── UTILITIES ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
@media(max-width:768px) { .container { padding: 0 24px; } }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.label::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--gold);
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.25s ease;
  border: none;
}
.btn-gold {
  background: var(--gold); color: #080809;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(200,169,110,0.25); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }

.btn svg { width: 14px; height: 14px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(8,8,9,0.92); backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--serif); font-size: 22px; color: var(--white);
  text-decoration: none; letter-spacing: -0.01em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--muted);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 16px; }

@media(max-width:900px) {
  .nav-links { display: none; }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 140px 40px 100px;
  position: relative; overflow: hidden;
}
.hero-inner { max-width: var(--max); margin: 0 auto; width: 100%; }

.hero::after {
  content: '';
  position: absolute; top: 20%; right: -5%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-dim); border: 1px solid rgba(200,169,110,0.2);
  padding: 7px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero h1 {
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1.05; letter-spacing: -0.02em;
  max-width: 900px; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 18px; color: var(--muted); line-height: 1.7;
  max-width: 560px; margin-bottom: 48px; font-weight: 300;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-proof {
  margin-top: 80px; padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.proof-stat .num {
  font-family: var(--serif); font-size: 36px; color: var(--white); display: block;
}
.proof-stat .desc { font-size: 13px; color: var(--muted); }
.proof-divider { width: 1px; height: 48px; background: var(--border); }

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0; overflow: hidden;
}
.ticker {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 24px;
  padding: 0 40px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  letter-spacing: 0.05em;
}
.ticker-item .sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── SECTION BASE ─── */
section { padding: 120px 40px; }
@media(max-width:768px) { section { padding: 80px 24px; } }

.section-header { margin-bottom: 64px; }
.section-header h2 { font-size: clamp(36px, 4vw, 60px); letter-spacing: -0.02em; margin-bottom: 20px; }
.section-header p { font-size: 17px; color: var(--muted); max-width: 520px; line-height: 1.7; font-weight: 300; }

/* ─── PROBLEM SECTION ─── */
.problem { background: var(--bg); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media(max-width:900px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.problem-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 8px;
  transition: border-color 0.2s;
}
.problem-list li:hover { border-color: rgba(200,169,110,0.2); }
.problem-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(200,169,110,0.08); border: 1px solid rgba(200,169,110,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 14px;
}
.problem-text strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.problem-text span { font-size: 13px; color: var(--muted); line-height: 1.6; }

.vs-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.vs-header {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.vs-col-head {
  padding: 20px 24px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.vs-col-head.them { color: var(--muted); border-right: 1px solid var(--border); }
.vs-col-head.us { color: var(--gold); }
.vs-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.vs-row:last-child { border-bottom: none; }
.vs-cell {
  padding: 16px 24px; font-size: 13px; line-height: 1.5;
  display: flex; align-items: center; gap: 10px;
}
.vs-cell.bad { color: var(--muted); border-right: 1px solid var(--border); }
.vs-cell.good { color: var(--white); }
.vs-cell .x { color: #FF5A5A; font-size: 12px; }
.vs-cell .check { color: var(--gold); font-size: 12px; }

/* ─── FUNNEL SECTION ─── */
.funnel { background: var(--bg2); }
.funnel-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  margin-bottom: 80px;
}
@media(max-width:900px) { .funnel-intro { grid-template-columns: 1fr; } }

.funnel-insight {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px;
}
.funnel-insight blockquote {
  font-family: var(--serif); font-size: 24px; line-height: 1.4;
  color: var(--white); margin-bottom: 16px;
}
.funnel-insight blockquote em { color: var(--gold); font-style: italic; }
.funnel-insight cite { font-size: 12px; color: var(--muted); font-style: normal; letter-spacing: 0.08em; }

.funnel-tabs {
  display: flex; gap: 4px; margin-bottom: 40px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 4px;
}
.tab-btn {
  flex: 1; padding: 12px 16px; border: none; background: transparent;
  color: var(--muted); font-family: var(--sans); font-size: 13px;
  font-weight: 600; cursor: pointer; border-radius: 6px;
  letter-spacing: 0.04em; transition: all 0.2s;
}
.tab-btn.active { background: var(--bg3); color: var(--white); }
.tab-btn .stage-label { display: block; font-size: 10px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2px; }

.funnel-panel { display: none; }
.funnel-panel.active { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }

.funnel-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 28px; transition: border-color 0.25s, transform 0.25s;
}
.funnel-card:hover { border-color: rgba(200,169,110,0.25); transform: translateY(-3px); }
.funnel-card-type {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.funnel-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.funnel-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.funnel-card .impact {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted); font-style: italic;
}

/* ─── SERVICES ─── */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  border: 1px solid var(--border); border-radius: 10px; padding: 40px 32px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
  background: var(--bg2);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: rgba(200,169,110,0.2); transform: translateY(-4px); }

.service-num {
  font-family: var(--serif); font-size: 64px; color: rgba(200,169,110,0.1);
  line-height: 1; margin-bottom: 24px; display: block;
}
.service-card h3 { font-size: 22px; margin-bottom: 16px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.service-tags {
  margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px;
}
.service-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 4px;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid rgba(200,169,110,0.15);
}

/* ─── PROCESS ─── */
.process { background: var(--bg2); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
@media(max-width:900px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .process-steps { grid-template-columns: 1fr; } }

.process-step {
  padding: 40px 32px; border: 1px solid var(--border);
  position: relative; background: var(--bg);
  transition: background 0.3s;
}
.process-step:not(:last-child) { border-right: none; }
.process-step:hover { background: var(--bg3); }
@media(max-width:900px) {
  .process-step:nth-child(2) { border-right: 1px solid var(--border); }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: none; }
}

.step-num {
  font-family: var(--serif); font-size: 48px;
  color: var(--gold); line-height: 1; margin-bottom: 20px; display: block; opacity: 0.4;
}
.process-step h3 { font-size: 18px; margin-bottom: 12px; font-family: var(--sans); font-weight: 600; }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

.process-cta {
  margin-top: 60px; text-align: center;
  padding: 48px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 12px;
}
.process-cta h3 { font-size: 32px; margin-bottom: 12px; }
.process-cta p { color: var(--muted); margin-bottom: 28px; font-size: 15px; }

/* ─── WHO WE SERVE ─── */
.who { background: var(--bg); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:900px) { .who-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .who-grid { grid-template-columns: 1fr; } }

.who-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 32px; transition: border-color 0.3s;
}
.who-card:hover { border-color: rgba(200,169,110,0.25); }
.tier-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 20px;
}
.tier-1 { background: rgba(200,169,110,0.15); color: var(--gold); border: 1px solid rgba(200,169,110,0.3); }
.tier-2 { background: rgba(245,242,236,0.06); color: var(--muted); border: 1px solid var(--border); }
.tier-3 { background: rgba(245,242,236,0.04); color: var(--muted2); border: 1px solid rgba(255,255,255,0.05); }

.who-card h3 { font-size: 18px; font-family: var(--sans); font-weight: 600; margin-bottom: 12px; }
.who-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.who-meta { display: flex; flex-direction: column; gap: 6px; }
.who-meta span {
  font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 8px;
}
.who-meta span::before { content: '→'; color: var(--gold); font-size: 11px; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:900px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px;
  display: flex; flex-direction: column; gap: 24px;
}
.testi-quote {
  font-family: var(--serif); font-size: 18px; line-height: 1.55;
  color: var(--white); flex: 1;
}
.testi-quote::before { content: '"'; color: var(--gold); font-size: 40px; display: block; line-height: 0.7; margin-bottom: 16px; }
.testi-meta { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--bg3));
  border: 1px solid rgba(200,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px; color: var(--gold); flex-shrink: 0;
}
.testi-meta-text strong { display: block; font-size: 14px; font-weight: 600; }
.testi-meta-text span { font-size: 12px; color: var(--muted); }
.testi-outlet {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); padding: 4px 10px; border-radius: 4px;
  background: var(--gold-dim); border: 1px solid rgba(200,169,110,0.15);
  align-self: flex-start;
}

/* ─── CASE STUDIES ─── */
.cases { background: var(--bg); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:900px) { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: border-color 0.3s, transform 0.3s;
}
.case-card:hover { border-color: rgba(200,169,110,0.25); transform: translateY(-4px); }
.case-card-header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--border);
}
.case-stage {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.case-card-header h3 { font-size: 20px; margin-bottom: 10px; font-family: var(--sans); font-weight: 600; }
.case-card-header p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.case-card-body { padding: 24px 28px; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case-metric .m-val { font-family: var(--serif); font-size: 28px; color: var(--gold); display: block; }
.case-metric .m-label { font-size: 12px; color: var(--muted); }
.case-outlets {
  margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px;
}
.case-outlet-tag {
  font-size: 11px; padding: 4px 9px; border-radius: 3px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--muted);
}

/* ─── FORM SECTION ─── */
.apply { background: var(--bg2); }
.apply-inner {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start;
}
@media(max-width:900px) { .apply-inner { grid-template-columns: 1fr; } }

.apply-left h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 20px; }
.apply-left p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }

.apply-bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.apply-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--muted); line-height: 1.5;
}
.apply-bullets .cb {
  width: 20px; height: 20px; border-radius: 4px;
  background: var(--gold-dim); border: 1px solid rgba(200,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 11px; flex-shrink: 0; margin-top: 2px;
}

.form-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 44px;
}
.form-title {
  font-family: var(--serif); font-size: 24px; margin-bottom: 6px;
}
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 13px 16px;
  font-family: var(--sans); font-size: 14px; color: var(--white);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted2); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(200,169,110,0.5);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.06);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.field select option { background: #1a1a1c; color: var(--white); }
.field textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%; padding: 16px; margin-top: 8px;
  background: var(--gold); color: #080809;
  border: none; border-radius: var(--radius);
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(200,169,110,0.25); }
.form-disclaimer { text-align: center; margin-top: 14px; font-size: 12px; color: var(--muted2); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 64px 40px 40px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
@media(max-width:900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media(max-width:600px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .logo { font-family: var(--serif); font-size: 24px; margin-bottom: 16px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }

.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--muted2); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── DIVIDER LINE ─── */
.gold-line {
  width: 48px; height: 2px; background: var(--gold); margin: 20px 0 32px;
}

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── STICKY CTA BAR ─── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transform: translateY(100%); transition: transform 0.4s ease;
  backdrop-filter: blur(20px);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar p { font-size: 14px; color: var(--muted); }
@media(max-width:600px) { .sticky-bar { flex-direction: column; gap: 12px; } }
