@font-face{font-family:'Clash Display';src:url('fonts/clash-display-500.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap;}
@font-face{font-family:'Clash Display';src:url('fonts/clash-display-600.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap;}
@font-face{font-family:'Clash Display';src:url('fonts/clash-display-700.woff2') format('woff2');font-weight:700;font-style:normal;font-display:swap;}
@font-face{font-family:'Satoshi';src:url('fonts/satoshi-400.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:'Satoshi';src:url('fonts/satoshi-500.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap;}
@font-face{font-family:'Satoshi';src:url('fonts/satoshi-700.woff2') format('woff2');font-weight:700;font-style:normal;font-display:swap;}
@font-face{font-family:'Satoshi';src:url('fonts/satoshi-900.woff2') format('woff2');font-weight:900;font-style:normal;font-display:swap;}

/* ==========================================================================
   DC'S TOWING & ROADSIDE SERVICE — design system
   Premium, dark, industrial. Electric blue + metallic silver on charcoal.
   ========================================================================== */

:root {
  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  --text-base: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.5vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.25rem + 1.1vw, 2.125rem);
  --text-2xl: clamp(2.125rem, 1.5rem + 2.6vw, 3.5rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Surfaces */
  --ink: #05070a;
  --charcoal: #0a0e13;
  --surface: #10151c;
  --surface-2: #151b24;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #eef2f8;
  --muted: #97a2b2;
  --faint: #6b7583;

  /* Electric blue */
  --blue: #1f7dff;
  --blue-hi: #57a5ff;
  --blue-deep: #0a3f92;
  --blue-glow: rgba(31, 125, 255, 0.35);

  /* Metallic silver */
  --silver: linear-gradient(180deg, #ffffff 0%, #e6ebf2 38%, #9aa6b5 62%, #f2f6fb 100%);
  --chrome-line: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.9);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shell: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --font-display: 'Clash Display', 'Satoshi', system-ui, sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.005em;
  word-spacing: 0.06em;
  text-wrap: balance;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--blue-hi);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  z-index: 200;
}
.skip:focus {
  left: var(--space-4);
  top: var(--space-4);
}

/* ---------- Layout primitives ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section {
  position: relative;
}

.band {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.band--tight {
  padding-block: clamp(var(--space-12), 5vw, var(--space-16));
}

.band--surface {
  background: linear-gradient(180deg, var(--charcoal), var(--ink));
}

.hair {
  height: 1px;
  background: var(--chrome-line);
  opacity: 0.5;
}

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-hi);
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue-glow);
}

.h-sec {
  font-size: var(--text-xl);
  text-transform: uppercase;
  font-weight: 600;
}

.lede {
  color: var(--muted);
  max-width: 62ch;
  font-size: var(--text-base);
}

.metal {
  background-image: var(--silver);
  background-size: 100% 1.05em;
  background-repeat: repeat-y;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sec-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.95rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.btn--primary {
  background: linear-gradient(180deg, var(--blue-hi), var(--blue) 55%, #0f62d6);
  color: #fff;
  box-shadow: 0 10px 30px -10px var(--blue-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(31, 125, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(87, 165, 255, 0.6);
  background: rgba(31, 125, 255, 0.1);
}

.btn--lg {
  padding: 1.1rem 1.9rem;
  font-size: var(--text-sm);
}

.btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}

.header.is-scrolled {
  background: rgba(5, 7, 10, 0.94);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
}

.brand svg {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-left: auto;
}

.nav a {
  position: relative;
  white-space: nowrap;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
}

.nav a:hover {
  color: var(--text);
}

.nav a[aria-current='page'] {
  color: #fff;
}

.nav a[aria-current='page']::after {
  content: '';
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: 0;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue-glow);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: none;
}

.header__phone {
  display: none;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.burger span::before,
.burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}
.burger span::before {
  top: -6px;
}
.burger span::after {
  top: 6px;
}

@media (max-width: 1000px) {
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: var(--space-2) var(--gutter) var(--space-6);
    background: rgba(6, 9, 13, 0.98);
    border-bottom: 1px solid var(--line);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.4s var(--ease);
  }
  .nav.is-open {
    clip-path: inset(0 0 0 0);
  }
  .nav a {
    padding: var(--space-4) 0;
    font-size: var(--text-lg);
    border-bottom: 1px solid var(--line);
  }
  .nav a[aria-current='page']::after {
    display: none;
  }
  .burger {
    display: flex;
    order: 3;
  }
  .header__cta {
    margin-left: auto;
  }
  .header__cta .btn--ghost {
    display: none;
  }
}

@media (min-width: 1260px) {
  .header__phone {
    display: block;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(92svh, 860px);
  display: flex;
  align-items: flex-end;
  padding-block: clamp(var(--space-20), 12vw, var(--space-24)) clamp(var(--space-12), 6vw, var(--space-20));
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 62%;
  filter: brightness(1.12) contrast(1.04) saturate(1.05);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.7) 0%, rgba(5, 7, 10, 0.18) 34%, rgba(5, 7, 10, 0.78) 84%, var(--ink) 100%),
    linear-gradient(95deg, rgba(5, 7, 10, 0.93) 0%, rgba(5, 7, 10, 0.6) 42%, rgba(5, 7, 10, 0) 72%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  left: -18vw;
  bottom: -22vw;
  background: radial-gradient(circle, rgba(31, 125, 255, 0.26), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 720px;
}

.hero h1 {
  font-size: var(--text-2xl);
  text-shadow: 0 2px 40px rgba(5, 7, 10, 0.9);
  text-transform: uppercase;
  margin-block: var(--space-5) var(--space-5);
}

.hero__sub {
  font-size: var(--text-lg);
  line-height: 1.45;
  color: #cfd8e4;
  font-weight: 500;
  max-width: 36ch;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding: var(--space-3) var(--space-5) var(--space-3) var(--space-3);
  background: linear-gradient(100deg, rgba(31, 125, 255, 0.22), rgba(31, 125, 255, 0.04));
  border: 1px solid rgba(87, 165, 255, 0.35);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.hero__phone:hover {
  transform: translateY(-2px);
  border-color: var(--blue-hi);
}

.hero__phone svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--blue-hi);
}

.hero__phone-label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.hero__phone-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2.4vw, 2.125rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.hero__tag {
  margin-top: var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #dbe3ee;
}

.badge247 {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(var(--space-12), 6vw, var(--space-20));
  display: none;
  place-items: center;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  border: 1px solid rgba(87, 165, 255, 0.45);
  background: radial-gradient(circle at 50% 30%, rgba(31, 125, 255, 0.22), rgba(5, 7, 10, 0.75) 70%);
  box-shadow: 0 0 60px -14px var(--blue-glow), inset 0 0 40px -20px rgba(87, 165, 255, 0.6);
  text-align: center;
}

.badge247 strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 0.95;
  color: var(--blue-hi);
}

.badge247 span {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

@media (min-width: 1080px) {
  .badge247 {
    display: grid;
  }
}

/* Interior page hero */
.phero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 100% at 12% 0%, rgba(31, 125, 255, 0.16), transparent 60%),
    linear-gradient(180deg, #080b10, var(--ink));
  overflow: hidden;
}

.phero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(90% 80% at 70% 0%, #000, transparent 75%);
}

.phero h1 {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
  text-transform: uppercase;
  margin-block: var(--space-5) var(--space-5);
}

.crumb {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.crumb a:hover {
  color: var(--blue-hi);
}

/* ---------- Trust bar ---------- */
.trustbar {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #090d12, #06090d);
}

.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-4);
  background: var(--ink);
}

.trust svg {
  width: 30px;
  height: 30px;
  flex: none;
  color: var(--blue-hi);
}

.trust b {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.trust span {
  font-size: var(--text-xs);
  color: var(--faint);
}

@media (min-width: 860px) {
  .trustbar__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}

.card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8) var(--space-6) var(--space-6);
  background: linear-gradient(180deg, var(--surface-2), var(--surface) 60%, #0c1117);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent 70%);
  opacity: 0.55;
  transition: opacity 0.35s var(--ease);
}

.card::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
  background: radial-gradient(circle, rgba(31, 125, 255, 0.16), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(87, 165, 255, 0.34);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  opacity: 1;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(31, 125, 255, 0.18), rgba(31, 125, 255, 0.04));
  border: 1px solid rgba(87, 165, 255, 0.28);
  color: var(--blue-hi);
}

.card__icon svg {
  width: 30px;
  height: 30px;
}

.card h3 {
  font-size: var(--text-lg);
  text-transform: uppercase;
  font-weight: 600;
}

.card p {
  color: var(--muted);
  font-size: var(--text-sm);
}

.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.card li {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c3ccd9;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.03);
}

.card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-hi);
}

.card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease);
}

.card:hover .card__link svg {
  transform: translateX(4px);
}

/* ---------- Split (why choose / about) ---------- */
.split {
  display: grid;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 0.85fr;
  }
  .split--flip > :first-child {
    order: 2;
  }
}

.figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 10, 0.55));
}

.figure--wide img {
  aspect-ratio: 4 / 3;
}

.benefits {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-8);
  padding: 0;
  list-style: none;
}

.benefit {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: var(--space-4);
  align-items: start;
}

.benefit svg {
  width: 34px;
  height: 34px;
  color: var(--blue-hi);
}

.benefit b {
  display: block;
  font-size: var(--text-base);
  letter-spacing: 0.01em;
}

.benefit p {
  color: var(--muted);
  font-size: var(--text-sm);
}

/* ---------- Emergency banner ---------- */
.emergency {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid rgba(87, 165, 255, 0.28);
  background:
    radial-gradient(90% 140% at 15% 50%, rgba(31, 125, 255, 0.3), transparent 62%),
    linear-gradient(100deg, #071021, #05070a 70%);
}

.emergency__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding-block: clamp(var(--space-12), 7vw, var(--space-20));
}

.emergency h2 {
  font-size: var(--text-xl);
  text-transform: uppercase;
}

.emergency p {
  color: #c2cdda;
  max-width: 46ch;
  font-size: var(--text-sm);
}

.emergency__num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.2rem + 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-block: var(--space-2);
}

.emergency__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (min-width: 900px) {
  .emergency__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
  }
  .emergency__actions {
    flex-direction: column;
    align-items: stretch;
    min-width: 240px;
  }
}

/* ---------- Service area ---------- */
.area {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 900px) {
  .area {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.area__panel {
  position: relative;
  padding: var(--space-8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), #0b1016);
  overflow: hidden;
}

.area__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(87, 165, 255, 0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(70% 70% at 30% 30%, #000, transparent);
}

.chips {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips li {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: #c8d1de;
}

.editable {
  color: var(--blue-hi);
  font-weight: 500;
}

.note {
  font-size: var(--text-xs);
  color: var(--faint);
  letter-spacing: 0.04em;
}

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.quote {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  border: 1px solid var(--line);
  border-left: 2px solid rgba(87, 165, 255, 0.5);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--surface), #0a0e14);
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--blue-hi);
}

.stars svg {
  width: 15px;
  height: 15px;
}

.quote blockquote {
  margin: 0;
  font-size: var(--text-sm);
  color: #d3dbe6;
}

.quote footer {
  margin-top: auto;
  font-size: var(--text-xs);
  color: var(--faint);
}

.quote footer b {
  display: block;
  color: var(--text);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
}

.placeholder-tag {
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a1220;
  background: linear-gradient(180deg, #7fb8ff, var(--blue));
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: var(--space-3);
  max-width: 900px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--surface), #0a0e14);
  transition: border-color 0.25s var(--ease);
}

details[open] {
  border-color: rgba(87, 165, 255, 0.3);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.01em;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '';
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--blue-hi);
  border-bottom: 2px solid var(--blue-hi);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.3s var(--ease);
}

details[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

details p {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--muted);
  font-size: var(--text-sm);
  max-width: 72ch;
}

/* ---------- Steps ---------- */
.steps {
  counter-reset: s;
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  counter-increment: s;
  position: relative;
  padding: var(--space-6);
  padding-top: var(--space-10);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--surface), #0a0e14);
}

.steps li::before {
  content: '0' counter(s);
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(87, 165, 255, 0.55);
  letter-spacing: 0.02em;
}

.steps b {
  display: block;
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.steps p {
  color: var(--muted);
  font-size: var(--text-sm);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.stat {
  padding: var(--space-6);
  background: var(--surface);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #fff;
  line-height: 1;
}

.stat span {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}

@media (min-width: 720px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: clamp(var(--space-8), 4vw, var(--space-12));
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 0.9fr;
  }
}

.form {
  display: grid;
  gap: var(--space-5);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), #0a0e14);
}

.field {
  display: grid;
  gap: var(--space-2);
}

.field label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem var(--space-4);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(31, 125, 255, 0.07);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--blue-hi) 50%),
    linear-gradient(135deg, var(--blue-hi) 50%, transparent 50%);
  background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.row2 {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 600px) {
  .row2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form__note {
  font-size: var(--text-xs);
  color: var(--faint);
}

.form__status {
  display: none;
  padding: var(--space-4);
  border: 1px solid rgba(87, 165, 255, 0.45);
  border-radius: var(--radius-sm);
  background: rgba(31, 125, 255, 0.1);
  font-size: var(--text-sm);
  color: #d9e6f8;
}

.form__status.is-visible {
  display: block;
}

.info-stack {
  display: grid;
  gap: var(--space-4);
  align-content: start;
}

.info {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(100deg, var(--surface), #0a0e14);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

a.info:hover {
  border-color: rgba(87, 165, 255, 0.45);
  transform: translateY(-2px);
}

.info svg {
  width: 26px;
  height: 26px;
  color: var(--blue-hi);
}

.info b {
  display: block;
  font-size: var(--text-base);
}

.info span {
  font-size: var(--text-xs);
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #070a0e, #04060a);
  padding-block: var(--space-16) var(--space-8);
}

.footer__top {
  display: grid;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 860px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: var(--space-12);
  }
}

.footer__brand svg {
  height: 44px;
  width: auto;
  margin-bottom: var(--space-5);
}

.footer p {
  color: var(--muted);
  font-size: var(--text-sm);
  max-width: 42ch;
}

.footer h4 {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.footer li a {
  font-size: var(--text-sm);
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.footer li a:hover {
  color: var(--blue-hi);
}

.footer__phone {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  padding-top: var(--space-8);
  font-size: var(--text-xs);
  color: var(--faint);
}

/* ---------- Mobile call bar ---------- */
.callbar {
  position: fixed;
  z-index: 90;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4) calc(var(--space-3) + env(safe-area-inset-bottom));
  background: rgba(6, 9, 13, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
}

.callbar .btn {
  padding: 0.9rem 1rem;
}

@media (min-width: 1001px) {
  .callbar {
    display: none;
  }
}

@media (max-width: 1000px) {
  body {
    padding-bottom: 84px;
  }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- Mobile refinements ---------- */
.trust span {
  line-height: 1.4;
  display: block;
  margin-top: 2px;
}

@media (max-width: 760px) {
  .header__inner {
    min-height: 64px;
    gap: var(--space-3);
  }
  .brand svg {
    height: 32px;
  }
  .nav {
    inset-block-start: 64px;
  }
  .header__cta .btn--primary {
    padding: 0.7rem 0.85rem;
    font-size: 0;
    gap: 0;
  }
  .header__cta .btn--primary svg {
    width: 20px;
    height: 20px;
  }
  .hero {
    min-height: min(80svh, 720px);
    padding-block: var(--space-16) var(--space-12);
  }
  .hero__media img {
    object-position: 76% 58%;
  }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(5, 7, 10, 0.84) 0%, rgba(5, 7, 10, 0.5) 26%, rgba(5, 7, 10, 0.88) 62%, var(--ink) 100%);
  }
  .hero__sub br {
    display: none;
  }
  .hero__actions .btn {
    flex: 1 1 auto;
  }
  .badge247 {
    display: none;
  }
}

/* ---------- FAQ split layout ---------- */
.faq-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: var(--space-10) var(--space-16);
  align-items: start;
}
.faq-split .sec-head {
  margin-bottom: 0;
}
.faq-split .faq {
  max-width: none;
}
@media (max-width: 900px) {
  .faq-split {
    grid-template-columns: 1fr;
  }
}

/* ---------- Brand logo (real emblem) ---------- */
.header__inner {
  min-height: 100px;
}
.brand img {
  height: 84px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease);
}
.header.is-scrolled .header__inner {
  min-height: 82px;
}
.header.is-scrolled .brand img {
  height: 66px;
}
.footer__logo {
  height: 118px;
  width: auto;
  display: block;
  margin-bottom: var(--space-5);
}
.nav {
  inset-block-start: 100px;
}
.header.is-scrolled .nav {
  inset-block-start: 82px;
}

@media (max-width: 1100px) {
  .brand img {
    height: 68px;
  }
  .header__inner {
    min-height: 86px;
  }
}

@media (max-width: 760px) {
  .header__inner {
    min-height: 74px;
  }
  .brand img,
  .header.is-scrolled .brand img {
    height: 58px;
  }
  .nav,
  .header.is-scrolled .nav {
    inset-block-start: 74px;
  }
  .footer__logo {
    height: 96px;
  }
}

/* ---------- Mobile nav stacking fix ---------- */
@media (max-width: 1000px) {
  .nav {
    z-index: 120;
    background: #080b10;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
  }
}

/* ---------- Logo sizing, final ---------- */
@media (max-width: 760px) {
  .header__inner {
    min-height: 80px;
  }
  .brand img,
  .header.is-scrolled .brand img {
    height: 64px;
  }
  .nav,
  .header.is-scrolled .nav {
    inset-block-start: 80px;
  }
}

/* ---------- Review stars: dim the unearned ones ---------- */
.stars__off {
  opacity: 0.22;
}
.quotes [hidden] {
  display: none !important;
}

/* ---------- Reviews grid holds its shape at any review count ---------- */
.quotes {
  margin-inline: auto;
  align-items: start;
}
.quotes:has(.quote:first-child:last-child) {
  max-width: 560px;
}
.quotes:has(.quote:nth-child(2):last-child) {
  max-width: 880px;
}

/* ---------- Payment methods ---------- */
.pays {
  list-style: none;
  margin: var(--space-8) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
.pay {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-5);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.pay:hover {
  border-color: rgba(31, 125, 255, 0.45);
  transform: translateY(-2px);
}
.pay svg {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--blue-hi);
}
.pay b {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  color: var(--text);
}
.pay span {
  display: block;
  margin-top: 3px;
  font-size: var(--text-xs);
  color: var(--muted);
}
@media (max-width: 520px) {
  .pays { gap: var(--space-3); }
  .pay { padding: var(--space-4); }
}

/* ---- form status states + honeypot ------------------------------------- */
.form__status.is-error {
  border-color: rgba(255, 138, 128, 0.5);
  background: rgba(255, 90, 74, 0.1);
  color: #ffd9d4;
}

.form__status.is-ok {
  border-color: rgba(94, 224, 160, 0.45);
  background: rgba(46, 204, 128, 0.1);
  color: #d6f8e6;
}

.form button[type="submit"][disabled] {
  opacity: 0.65;
  cursor: progress;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
