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

:root {
  --bg: #080808;
  --bg-card: #111111;
  --fg: #f5f5f5;
  --fg-muted: #888888;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --danger: #dc2626;
  --danger-hover: #b91c1c;
  --border: #1f1f1f;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

/* === NAV === */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-emergency {
  background: transparent;
}
.nav-emergency:hover { background: var(--danger); }

@media (max-width: 720px) {
  .nav-tagline { display: none; }
  .nav { padding: 1rem 1rem; }
  .nav-emergency { padding: 0.4rem 0.75rem; font-size: 0.8rem; }
}

/* === SECTION LABEL === */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* === HERO === */
.hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.hero-headline br { display: block; }

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

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  background: var(--accent);
  color: #080808;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.hero-cta:hover { background: #fbbf24; transform: translateY(-1px); }
.hero-cta:active { transform: translateY(0); }

.hero-stat {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 180px;
}

.hero-stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

/* === WHY CHOOSE === */
.why-choose {
  padding: 3rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.wc-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.wc-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0.5rem 2.5rem;
}

.wc-card {
  padding: 0.5rem 0;
}

.wc-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
  background: var(--bg-card);
}

.wc-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.wc-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === HOW === */
.how {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
  border: 1px solid var(--border);
}

.how-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}

.how-step:last-child { border-right: none; }

.step-num {
  display: block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.step-icon-wrap {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.how-step p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === SERVICES === */
.services {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  line-height: 1.15;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s;
}

.service-card:hover { background: var(--bg-card); }

.service-card.featured {
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
}

.service-card.featured:hover { background: rgba(245,158,11,0.16); }

.service-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

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

.service-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 0.25rem 0.6rem;
  font-weight: 600;
}

/* === WHY === */
.why {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.why-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1rem;
}

.why-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--fg-muted);
}

.why-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  border-radius: 50%;
}

.why-point strong { color: var(--fg); }

/* === TESTIMONIALS === */
.testimonials {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 3rem;
  color: var(--fg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.testimonial-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: background 0.2s;
}

.testimonial-card:hover { background: #0c0c0c; }

.testimonial-quote {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}

.testimonial-result {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* === COVERAGE === */
.coverage {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.coverage-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.coverage-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.coverage-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}

.coverage-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.coverage-badge {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1.25rem;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
}

.coverage-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* === CLOSING === */
.closing {
  padding: 6rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

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

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 2.5rem 2rem;
}

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

.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}

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

.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: right;
}

/* === CLICK-TO-CALL BAR (mobile sticky) === */
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--accent);
  color: #080808;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.callbar:hover,
.callbar:active {
  background: #fbbf24;
}

.callbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callbar-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.callbar-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.75;
}

.callbar-num {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .wc-inner { grid-template-columns: 1fr; }
  .wc-divider { display: none; }
  .wc-card { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
  .wc-card:last-child { border-bottom: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stat { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-step:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .how, .services, .why, .coverage, .closing { padding: 3.5rem 1.5rem; }
  .callbar { display: flex; }
  body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .closing-headline { font-size: 1.8rem; }
  .coverage-badge { font-size: 0.75rem; padding: 0.4rem 0.9rem; }
}