:root {
  --bg-dark: #0d0d0d;
  --bg-section: #141414;
  --bg-card: #1c1c1c;
  --fg: #f0f0f0;
  --fg-muted: #999;
  --accent: #ff6b00;
  --accent-glow: rgba(255, 107, 0, 0.15);
  --green: #00c853;
  --red: #ff3d3d;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a0a00 50%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 32px;
  position: relative;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
}

.accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stat {
  background: var(--bg-card);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 16px;
  padding: 32px 48px;
  text-align: center;
  position: relative;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ── Pricing Comparison ── */
.pricing {
  padding: 80px 24px;
  background: var(--bg-section);
}

.pricing-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.price-col {
  text-align: center;
  padding: 32px 24px;
  border-radius: 12px;
  min-width: 160px;
  flex: 1;
}

.price-col.theirs {
  background: var(--bg-card);
  opacity: 0.6;
}

.price-col.ours {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
  opacity: 1;
}

.price-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
}

.price-amount.crossed {
  text-decoration: line-through;
  color: var(--red);
}

.price-col.ours .price-amount {
  color: var(--green);
}

.price-detail {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 8px;
}

.price-divider {
  display: flex;
  align-items: center;
}

.vs {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── Services ── */
.services {
  padding: 100px 24px;
  text-align: center;
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: left;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── Trust ── */
.trust {
  padding: 100px 24px;
  background: var(--bg-section);
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.trust-content {
  flex: 1;
}

.trust h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-marker {
  width: 4px;
  min-height: 40px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 4px;
}

.trust-point strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.trust-point p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.trust-quote {
  flex: 0 0 340px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 40px 32px;
}

.trust-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.trust-quote cite {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: normal;
}

/* ── Closing ── */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #1a0a00 100%);
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-detail {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .trust {
    flex-direction: column;
    padding: 60px 24px;
  }

  .trust-quote {
    flex: none;
    width: 100%;
  }

  .pricing-compare {
    flex-direction: column;
    gap: 12px;
  }

  .price-divider {
    display: none;
  }

  .price-col {
    min-width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 60px 24px 40px;
  }

  .hero-stat {
    padding: 24px 32px;
  }

  .closing {
    padding: 80px 24px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    gap: 12px;
  }

  .service-card {
    padding: 24px 20px;
  }
}