:root {
  --bg: #141414;
  --surface: #1e1e1e;
  --border: #2e2e2e;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --fg: #f0f0f0;
  --fg-muted: #999;
  --fg-dim: #555;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

/* HEADER */
.site-header {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.tagline {
  color: var(--fg-muted);
  font-size: 0.875rem;
  font-weight: 300;
}

/* HERO */
.hero {
  padding: 6rem 2rem 4rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  max-width: 460px;
}

/* CALL CARD */
.call-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.call-card-header {
  background: var(--accent-dim);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.call-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.call-status {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
}
.call-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.call-line {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--fg-muted);
}
.call-reply {
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
  margin-left: 0.25rem;
}
.caller-tag {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  margin-bottom: 0.25rem;
}
.call-booked {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  margin-top: 0.25rem;
}

/* STATS ROW */
.stats-row {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* SECTION SHARED */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 3rem;
}

/* PROCESS */
.process { background: var(--bg); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.0625rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step p { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.7; }

/* INDUSTRIES */
.industries { background: var(--surface); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.industry-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.industry-card:hover { border-color: var(--accent); }
.industry-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.industry-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.625rem;
}
.industry-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* PROMISE */
.promise { background: var(--bg); }
.promise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.promise-text p { font-size: 1rem; color: var(--fg-muted); line-height: 1.75; margin-bottom: 1rem; }
.promise-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--fg);
}
.promise-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonials { background: var(--surface); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
}
.quote {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.attribution strong {
  display: block;
  font-size: 0.875rem;
  color: var(--fg);
  font-style: normal;
}
.attribution span {
  display: block;
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.25rem;
}

/* CLOSING */
.closing {
  background: linear-gradient(135deg, #141414 0%, #1c1206 100%);
  border-top: 1px solid var(--border);
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 0.875rem;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-inner .wordmark {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-note {
  font-size: 0.875rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-text { order: 1; }
  .hero-visual { order: 2; }
  .steps { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-inner { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 40px; height: 1px; }
}
@media (max-width: 600px) {
  .hero { padding: 4rem 1.25rem 3rem; }
  .section-inner { padding: 3.5rem 1.25rem; }
  .industry-grid { grid-template-columns: 1fr; }
  .call-card { transform: none; }
}