/* ─── RESET & ROOT ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:              #0a0a0c;
  --bg-elevated:     #111114;
  --bg-card:         #16161a;
  --border:          #222228;
  --border-hover:    #333340;
  --border-glass:    rgba(255, 255, 255, 0.06);
  --border-gold:     rgba(201, 168, 76, 0.25);
  --text:            #e8e8ed;
  --text-secondary:  #8a8a95;
  --text-muted:      #55555f;
  --gold:            #c9a84c;
  --gold-dim:        #a08535;
  --gold-bright:     #e0bb60;
  --gold-glow:       rgba(201, 168, 76, 0.15);
  --gold-glow-soft:  rgba(201, 168, 76, 0.06);
  --green:           #3ecf8e;
  --green-dim:       rgba(62, 207, 142, 0.12);
  --green-border:    rgba(62, 207, 142, 0.25);
  --serif:  'Instrument Serif', Georgia, serif;
  --sans:   'DM Sans', -apple-system, sans-serif;
  --radius:    16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.65);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border-glass);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo .au { color: var(--gold); }

nav { display: flex; align-items: center; gap: 32px; }

nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover { color: var(--text); }
nav a:hover::after { width: 100%; }

.nav-cta {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: var(--bg);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.nav-cta:hover { box-shadow: 0 0 28px rgba(201,168,76,0.45); transform: translateY(-1px); }
.nav-cta:hover::before { left: 100%; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  top: -180px; right: -120px;
  animation: orb-drift 20s ease-in-out infinite;
}

.orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  bottom: -60px; left: -80px;
  animation: orb-drift 26s ease-in-out infinite reverse;
  animation-delay: -9s;
}

.orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(120,90,220,0.04) 0%, transparent 70%);
  top: 40%; left: 38%;
  animation: orb-drift 32s ease-in-out infinite;
  animation-delay: -16s;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 75% 80% at 60% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 80% at 60% 50%, black 20%, transparent 100%);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ─── HERO CONTENT ─── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.hero-content h1 {
  font-family: var(--sans);
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 1.0;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content > p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.55s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201,168,76,0.45), 0 2px 8px rgba(0,0,0,0.3);
}

.btn-primary:hover::before { left: 100%; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}

.hero-stats {
  display: flex;
  gap: 0;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
  flex: 1;
  padding-right: 32px;
}

.stat-item + .stat-item {
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.stat-item .stat-trend {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-item .stat-number {
  font-family: var(--sans);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ─── DASHBOARD MOCKUP ─── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-window {
  width: 100%;
  max-width: 480px;
  background: rgba(14, 14, 18, 0.88);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.10),
    0 48px 96px rgba(0,0,0,0.55),
    0 0 120px rgba(201,168,76,0.06);
  animation: float-main 7s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.dashboard-window::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
  z-index: 1;
}

.window-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: rgba(10,10,12,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.win-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  opacity: 0.85;
}
.win-dot.red    { background: #ff5f56; }
.win-dot.yellow { background: #febc2e; }
.win-dot.green  { background: #27c93f; }

.window-chrome-title {
  margin: 0 auto;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  font-weight: 500;
}

.dashboard-body { padding: 18px; }

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dash-metric {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px 14px;
}

.dash-metric-label {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.dash-metric-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 5px;
}

.dash-metric-change {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 2px;
}

.dash-chart {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.chart-title { font-size: 11px; color: var(--text-secondary); font-weight: 500; }
.chart-period { font-size: 10px; color: var(--text-muted); }

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
}

.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(201,168,76,0.22);
  transform-origin: bottom;
  animation: bar-rise 1s cubic-bezier(0.4,0,0.2,1) forwards;
  animation-fill-mode: backwards;
}

.chart-bar:nth-child(1) { animation-delay: 0.10s; }
.chart-bar:nth-child(2) { animation-delay: 0.15s; }
.chart-bar:nth-child(3) { animation-delay: 0.20s; }
.chart-bar:nth-child(4) { animation-delay: 0.25s; }
.chart-bar:nth-child(5) { animation-delay: 0.30s; }
.chart-bar:nth-child(6) { animation-delay: 0.35s; }
.chart-bar:nth-child(7) { animation-delay: 0.40s; }

.chart-bar.active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
}

.chart-bar:nth-child(1) { height: 38%; }
.chart-bar:nth-child(2) { height: 56%; }
.chart-bar:nth-child(3) { height: 43%; }
.chart-bar:nth-child(4) { height: 79%; }
.chart-bar:nth-child(5) { height: 62%; }
.chart-bar:nth-child(6) { height: 88%; }
.chart-bar:nth-child(7) { height: 100%; }

.btn-primary.sent {
  background: linear-gradient(135deg, #2a5a3a, #1e4a2e);
  pointer-events: none;
}

.dash-leads-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.dash-leads-title {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-lead-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  margin-bottom: 6px;
  transition: background 0.2s ease;
}

.dash-lead-row:last-child { margin-bottom: 0; }
.dash-lead-row:hover { background: rgba(255,255,255,0.04); }

.lead-industry {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 7px;
}

.lead-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin: 0 auto 0 16px;
}

.lead-status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}

.lead-status.live {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid var(--green-border);
}

.lead-status.pending {
  background: rgba(201,168,76,0.10);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.20);
}

.float-badge {
  position: absolute;
  background: rgba(14,14,18,0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 20px rgba(201,168,76,0.08);
  z-index: 3;
}

.badge-roas {
  top: -18px; right: -24px;
  animation: float-badge-1 5.5s ease-in-out infinite;
}

.badge-audit {
  bottom: 24px; left: -32px;
  animation: float-badge-2 6.5s ease-in-out infinite;
  animation-delay: -2.5s;
}

/* ─── SECTIONS GENERAL ─── */
section { padding: 100px 40px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--sans);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.08;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 60px;
}

/* ─── DIVIDERS ─── */
.divider {
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ─── HOW IT WORKS ─── */
#how-it-works { background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: linear-gradient(148deg, rgba(22,22,26,0.95) 0%, rgba(14,14,18,0.90) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover {
  border-color: rgba(201,168,76,0.20);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.05);
}

.step-card:hover::before,
.step-card:hover::after { opacity: 1; }

.step-number {
  font-family: var(--sans);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  font-style: normal;
  letter-spacing: -0.04em;
  opacity: 0.30;
  line-height: 1;
  margin-bottom: 20px;
  transition: opacity 0.4s ease;
}

.step-card:hover .step-number { opacity: 0.55; }

.step-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── INDUSTRIES ─── */
#industries {
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

#industries::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.industry-card {
  background: linear-gradient(148deg, rgba(16,16,20,0.95) 0%, rgba(10,10,14,0.90) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: default;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-card:hover {
  border-color: rgba(201,168,76,0.20);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 40px rgba(201,168,76,0.04);
}

.industry-card:hover::before { opacity: 1; }

.industry-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  filter: saturate(0.7);
  transition: filter 0.35s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.industry-card:hover .industry-icon {
  filter: saturate(1);
  transform: scale(1.12) translateY(-2px);
}

.industry-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.industry-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── PRICING ─── */
#pricing { background: var(--bg); }

.pricing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.price-philosophy {
  background: linear-gradient(148deg, rgba(22,22,26,0.95) 0%, rgba(16,16,20,0.90) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.price-philosophy::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

.price-philosophy h4 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.price-philosophy p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.price-philosophy p:last-child { margin-bottom: 0; }

.pricing-features {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s ease, padding-left 0.3s ease;
}

.pricing-features li:hover {
  color: var(--text);
  padding-left: 4px;
}

.pricing-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(201,168,76,0.55);
}

/* ─── FAQ ─── */
#faq { background: var(--bg-elevated); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.faq-item {
  background: linear-gradient(148deg, rgba(16,16,20,0.95) 0%, rgba(10,10,14,0.90) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.faq-item:hover { border-color: rgba(255,255,255,0.09); }

.faq-item.open {
  border-color: rgba(201,168,76,0.20);
  box-shadow: 0 0 40px rgba(201,168,76,0.04);
}

.faq-question {
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  -webkit-user-select: none;
  user-select: none;
  transition: color 0.2s;
  gap: 16px;
}

.faq-item.open .faq-question { color: var(--text); }

.faq-toggle {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.22);
  color: var(--gold);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.3s;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(201,168,76,0.18);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ─── BOTTOM CTA ─── */
.bottom-cta {
  background: var(--bg);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.bottom-cta .section-label { justify-content: center; }
.bottom-cta .section-label::before { display: none; }
.bottom-cta .section-title { margin: 0 auto 16px; }
.bottom-cta .section-desc { margin: 0 auto 40px; text-align: center; }

.bottom-form {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(148deg, rgba(22,22,26,0.95) 0%, rgba(16,16,20,0.92) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 44px;
  text-align: left;
  position: relative;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 48px 96px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.05);
}

.bottom-form::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.55), transparent);
}

/* ─── FORM STYLES ─── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(10,10,12,0.80);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  transition: all 0.25s ease;
  outline: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(201,168,76,0.40);
  background: rgba(10,10,12,0.95);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.07), inset 3px 0 0 var(--gold-dim);
}

.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); }

.btn-primary.full-width { width: 100%; justify-content: center; margin-top: 8px; }

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* ─── FOOTER ─── */
footer {
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-inner .copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-inner .footer-links { display: flex; gap: 24px; }

.footer-inner .footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-inner .footer-links a:hover { color: var(--text-secondary); }

/* ─── ANIMATIONS ─── */
@keyframes orb-drift {
  0%, 100% { transform: translate(0px, 0px) scale(1); }
  33%       { transform: translate(-28px, 22px) scale(1.04); }
  66%       { transform: translate(18px, -28px) scale(0.96); }
}

@keyframes float-main {
  0%, 100% { transform: translateY(0px)   rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(0.5deg); }
  66%       { transform: translateY(-5px)  rotate(-0.3deg); }
}

@keyframes float-badge-1 {
  0%, 100% { transform: translateY(0px)  rotate(-2deg); }
  50%       { transform: translateY(-9px) rotate(0deg); }
}

@keyframes float-badge-2 {
  0%, 100% { transform: translateY(0px)   rotate(1.5deg); }
  50%       { transform: translateY(-11px) rotate(-1deg); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

@keyframes bar-rise {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeInUp 0.9s ease forwards; }
.hero-visual   { animation: fadeInUp 0.9s 0.18s ease both; }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; max-width: 680px; }
  .dashboard-window { max-width: 440px; margin: 0 auto; }
  .badge-roas { top: -12px; right: 0; }
  .badge-audit { bottom: 16px; left: 0; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-content { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 72px 20px; }
  .header-inner { padding: 0 20px; }
  nav { display: none; }
  .hero { padding: 104px 20px 64px; min-height: unset; }
  .hero-grid { gap: 48px; }
  .hero-content h1 { font-size: 40px; }
  .hero-content > p { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stats { flex-wrap: wrap; }
  .stat-item { flex: 0 0 calc(50% - 16px); padding: 0 0 20px 0 !important; border-left: none !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:last-child { border-bottom: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .bottom-cta { padding: 80px 20px; }
  .bottom-form { padding: 28px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 520px) {
  .industries-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
