/* ─── VARIABLES ─────────────────────────────────────── */
:root {
  --bg: #0d0d0d;
  --surface: #161616;
  --surface-alt: #1e1e1e;
  --fg: #f0ede6;
  --fg-muted: #8a8880;
  --accent: #f5a623;
  --accent-dim: #c47d0e;
  --accent-glow: rgba(245, 166, 35, 0.15);
  --border: rgba(240, 237, 230, 0.08);
}

/* ─── BASE ─────────────────────────────────────────── */
*, *::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;
  line-height: 1.55;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; line-height: 1.1; }
section { padding: 80px 32px; }
a { color: var(--accent); text-decoration: none; }

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-cta {
  background: var(--accent);
  color: var(--bg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-dim); }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 85vh;
  padding: 80px 40px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.hero-headline {
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  color: var(--fg);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.65;
}
.hero-services-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.hero-services-tag span {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

/* Hero right: spark graphic + stats */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hero-spark-graphic {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spark-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
}
.spark-ring-1 { width: 80px; height: 80px; opacity: 0.4; }
.spark-ring-2 { width: 140px; height: 140px; opacity: 0.2; }
.spark-ring-3 { width: 200px; height: 200px; opacity: 0.1; }
.spark-core {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 30px var(--accent), 0 0 60px rgba(245, 166, 35, 0.4);
}
.hero-stat-block {
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px 32px;
  border-radius: 4px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── SERVICES ─────────────────────────────────────── */
.services { background: var(--surface); }
.services-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--bg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
}
.service-icon svg { width: 100%; height: 100%; }
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--fg);
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.service-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--accent);
}

/* ─── PROCESS ─────────────────────────────────────── */
.process {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process .section-label,
.process .section-title { display: block; text-align: center; }
.process-steps {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 48px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step { text-align: center; max-width: 200px; }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  display: block;
  line-height: 1;
}
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: 0.05em;
  margin: 8px 0;
}
.step-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.55; }
.process-arrow { color: var(--fg-muted); opacity: 0.4; }

.process-pricing {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 24px;
}
.pricing-item {
  padding: 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.pricing-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.pricing-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ─── WHY ──────────────────────────────────────────── */
.why { background: var(--surface); }
.why-content { max-width: 900px; margin: 0 auto; }
.why-title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--fg);
  margin-bottom: 48px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.why-item {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px;
}
.why-item-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 10px;
}
.why-item-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

.why-stripe {
  margin-top: 64px;
  background: var(--accent);
  border-radius: 4px;
  overflow: hidden;
}
.stripe-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 24px 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.stripe-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--bg);
  letter-spacing: 0.1em;
}

/* ─── CLOSING ──────────────────────────────────────── */
.closing { background: var(--bg); text-align: center; }
.closing-content { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.closing-tags span {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 2px;
}

/* ─── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  display: block;
  margin-top: 4px;
}
.footer-info { text-align: right; }
.footer-service { font-size: 12px; color: var(--fg-muted); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 24px;
  }
  .hero-right { display: none; }
  .hero-headline { font-size: 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-pricing { flex-direction: column; }
  .pricing-divider { width: 100px; height: 1px; }
  section { padding: 64px 24px; }
  .nav { padding: 16px 24px; }
  .footer { flex-direction: column; }
  .footer-info { text-align: left; }
  .process-steps { gap: 16px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 48px; }
  .hero-services-tag { gap: 6px; }
  .closing-tags { gap: 6px; }
  .stripe-text { font-size: 18px; }
}