:root {
  --bg: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --fg: #e8e8ed;
  --fg-muted: #9898a8;
  --accent: #ff4d4d;
  --accent-glow: rgba(255, 77, 77, 0.15);
  --accent-soft: #ff6b6b;
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
}

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

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 48px 80px;
  padding-top: calc(64px + 80px); /* account for fixed nav */
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-inner { max-width: 680px; position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid rgba(255, 77, 77, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

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

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

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 140px;
  line-height: 1.4;
}

.hero-pin {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  z-index: 1;
}

.pin-icon { width: 300px; height: auto; }

/* ===== PROBLEM ===== */
.problem {
  padding: 120px 48px;
  background: var(--bg-secondary);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.problem h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 64px;
  color: var(--fg);
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.3s;
}

.problem-card:hover { border-color: rgba(255, 77, 77, 0.2); }

.problem-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--fg);
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 48px;
  background: var(--bg);
}

.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.services-header {
  margin-bottom: 72px;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.services-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.service-item:last-child { border-bottom: 1px solid var(--border); }

.service-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 36px;
  padding-top: 4px;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--fg);
}

.service-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ===== PROOF ===== */
.proof {
  padding: 120px 48px;
  background: var(--bg-secondary);
}

.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.proof h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 48px;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 64px;
}

.tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  background: var(--bg-card);
  transition: all 0.3s;
}

.tag:hover {
  border-color: rgba(255, 77, 77, 0.3);
  color: var(--fg);
}

.proof-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--fg-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

.proof-quote blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.4;
  font-style: normal;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 48px;
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 32px;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.closing-accent {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-soft) !important;
  font-size: 1.25rem !important;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat-label { max-width: 100%; }

  .hero-pin { display: none; }

  .problem, .services, .proof, .closing {
    padding: 80px 24px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-item {
    flex-direction: column;
    gap: 12px;
    padding: 28px 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .proof-tags { gap: 8px; }
  .tag { font-size: 0.75rem; padding: 8px 16px; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary { text-align: center; }
}

/* ===== HERO CTAs ===== */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* ===== GLOBAL BUTTONS ===== */
.btn-primary {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--accent-soft);
  box-shadow: 0 8px 28px rgba(255,77,77,0.25);
}
.btn-secondary {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: rgba(255,77,77,0.3);
  color: var(--fg);
}

/* ===== HERO STAT spacing when CTAs precede them ===== */
.hero-stats { margin-top: 0; }