:root {
  --ink: #0f1014;
  --ink-2: #1a1c22;
  --ink-3: #2a2d35;
  --paper: #fafaf7;
  --paper-2: #f3f2ec;
  --line: #e5e3da;
  --amber: #ffb627;
  --amber-deep: #d99319;
  --teal: #00b8a9;
  --teal-deep: #008c80;
  --hot: #ff5a36;
  --hot-deep: #e0431f;
  --muted: #5b5e69;
  --soft: #8a8d97;
  --display: "Instrument Serif", ui-serif, Georgia, serif;
  --sans: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow-lg: 0 30px 80px -30px rgba(15, 16, 20, 0.35);
  --shadow-md: 0 14px 30px -14px rgba(15, 16, 20, 0.22);
  --shadow-sm: 0 6px 14px -6px rgba(15, 16, 20, 0.15);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
.phone-icon {
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  line-height: 1;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* ---------- EMERGENCY BAR ---------- */
.emergency-bar {
  background: linear-gradient(90deg, var(--hot-deep), var(--hot));
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emergency-bar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  background-size: 50% 100%;
  animation: scanline 3s linear infinite;
}
@keyframes scanline {
  0% {
    background-position: -50% 0;
  }
  100% {
    background-position: 150% 0;
  }
}
.emergency-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}
.emergency-bar .pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 99px;
  margin-right: 8px;
  animation: redpulse 1.4s ease-out infinite;
  vertical-align: middle;
}
@keyframes redpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  padding: 11px 0;
  font-size: 13.5px;
  border-bottom: 1px solid #000;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar .lhs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.topbar .live {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 99px;
  box-shadow: 0 0 0 0 rgba(0, 184, 169, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 184, 169, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 184, 169, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 184, 169, 0);
  }
}
.topbar a {
  font-weight: 700;
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 182, 39, 0.4);
}
.topbar a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
/* ---------- HEADER / NAV ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.brand-stack {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 12px -4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 182, 39, 0.35),
    transparent 60%
  );
}
.brand-mark svg {
  width: 24px;
  height: 24px;
  color: var(--amber);
  position: relative;
  z-index: 2;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
}
.brand .ital {
  font-style: italic;
  color: var(--amber-deep);
}
.brand small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-top: 2px;
  text-transform: uppercase;
}
nav.menu {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav.menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
nav.menu a:hover {
  color: var(--amber-deep);
}
nav.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
nav.menu a:hover::after {
  transform: scaleX(1);
}
.cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hot);
  color: #fff;
  padding: 13px 22px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--hot);
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px -6px rgba(255, 90, 54, 0.6);
  position: relative;
}
.cta-call::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 99px;
  background: rgba(255, 90, 54, 0.4);
  z-index: -1;
  animation: ringpulse 2.4s ease-out infinite;
}
@keyframes ringpulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}
.cta-call:hover {
  background: var(--ink);
  color: var(--hot);
  border-color: var(--ink);
}
.cta-call svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 880px) {
  nav.menu {
    display: none;
  }
  .cta-call span.label {
    display: none;
  }
  .cta-call {
    padding: 13px 18px;
  }
}
/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      1200px 600px at 88% -10%,
      rgba(255, 182, 39, 0.16),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at -5% 100%,
      rgba(255, 90, 54, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #fbfaf4 0%, var(--paper) 100%);
  padding: 80px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(15, 16, 20, 0.07) 1px,
    transparent 0
  );
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 80%
  );
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    1.1fr
    0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hero-badge.hot {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.hero-badge .pip {
  width: 6px;
  height: 6px;
  background: var(--hot);
  border-radius: 99px;
  box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.6);
  animation: redpulse 1.4s ease-out infinite;
}
.hero-badge.hot .tag {
  background: var(--hot);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
}
h1.headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
}
h1 .ital {
  font-style: italic;
  color: var(--amber-deep);
}
h1 .hot {
  color: var(--hot);
  font-style: italic;
}
h1 .highlight {
  background: linear-gradient(transparent 60%, rgba(255, 182, 39, 0.5) 60%);
  padding: 0 4px;
}
.lede {
  font-size: 20px;
  line-height: 1.5;
  max-width: 560px;
  color: #3a3a3a;
  margin: 0 0 32px;
}
.lede strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 99px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--hot);
  color: #fff;
  border-color: var(--hot);
  box-shadow: 0 14px 30px -10px rgba(255, 90, 54, 0.6);
}
.btn-primary:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.btn svg {
  width: 16px;
  height: 16px;
}
.hero-fast {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.hero-fast .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--hot);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-fast .ico svg {
  width: 22px;
  height: 22px;
}
.hero-fast .txt {
  flex: 1;
  min-width: 200px;
}
.hero-fast .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.hero-fast .val {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 2px;
}
.hero-fast .val .ital {
  font-style: italic;
  color: var(--hot);
}
/* ---------- HERO RIGHT — CALL CARD ---------- */
.call-card {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.call-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      500px 250px at 50% 0%,
      rgba(255, 90, 54, 0.22),
      transparent 60%
    ),
    radial-gradient(
      400px 300px at 100% 100%,
      rgba(255, 182, 39, 0.18),
      transparent 60%
    );
  pointer-events: none;
}
.call-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.cc-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 90, 54, 0.18);
  color: var(--hot);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 90, 54, 0.4);
  z-index: 2;
}
.cc-stamp .dot {
  width: 6px;
  height: 6px;
  background: var(--hot);
  border-radius: 99px;
  animation: redpulse 1.4s ease-out infinite;
}
.cc-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 12px;
  position: relative;
  z-index: 2;
}
.cc-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.cc-title .ital {
  font-style: italic;
  color: var(--amber);
}
.cc-sub {
  font-size: 15.5px;
  color: #cdc6b3;
  margin: 0 0 24px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.cc-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--hot);
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.cc-call::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.cc-call:hover {
  background: var(--amber);
  color: var(--ink);
  transform: translateY(-2px);
}
.cc-call:hover::after {
  transform: translateX(100%);
}
.cc-call .left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cc-call .ico {
  width: 48px;
  height: 48px;
  border-radius: 99px;
  background: #fff;
  color: var(--hot);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cc-call:hover .ico {
  background: var(--ink);
  color: var(--amber);
}
.cc-call .ico svg {
  width: 22px;
  height: 22px;
}
.cc-call .lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cc-call:hover .lbl {
  color: var(--muted);
}
.cc-call .num {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}
.cc-call .arrow {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  display: grid;
  place-items: center;
}
.cc-call:hover .arrow {
  background: var(--ink);
  color: var(--amber);
}
.cc-call .arrow svg {
  width: 14px;
  height: 14px;
}
.cc-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.cc-meta div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  color: #cdc6b3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cc-meta svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}
.cc-meta b {
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 600;
}
/* ---------- VALUE STRIP ---------- */
.strip {
  background: var(--ink);
  color: #fff;
  padding: 34px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #000;
}
.strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 200px at 50% 100%,
    rgba(255, 182, 39, 0.18),
    transparent 60%
  );
}
.strip .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 880px) {
  .strip .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
.strip-item h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: #fff;
}
.strip-item h3 .accent {
  color: var(--amber);
  font-style: italic;
}
.strip-item h3 .hot {
  color: var(--hot);
  font-style: italic;
}
.strip-item p {
  font-family: var(--mono);
  font-size: 11px;
  color: #a39c89;
  margin: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
/* ---------- SECTION SHELL ---------- */
section {
  padding: 96px 0;
  position: relative;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 600;
  margin: 0 0 16px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--amber-deep);
}
.section-eyebrow.hot {
  color: var(--hot);
}
.section-eyebrow.hot::before {
  background: var(--hot);
}
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink);
}
.section-title .ital {
  font-style: italic;
  color: var(--amber-deep);
}
.section-title .hot {
  font-style: italic;
  color: var(--hot);
}
.section-lede {
  font-size: 18px;
  line-height: 1.6;
  color: #3a3a3a;
  max-width: 680px;
  margin: 0 0 56px;
}
/* ---------- KEY TYPES (illustrated) ---------- */
.keytypes {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-bottom: 1px solid var(--line);
}
.kt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 980px) {
  .kt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .kt-grid {
    grid-template-columns: 1fr;
  }
}
.kt-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.kt-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: var(--shadow-md);
}
.kt-illustration {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  background: linear-gradient(180deg, #f7f5ee 0%, #ece9dc 100%);
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: background 0.25s ease;
}
.kt-card:hover .kt-illustration {
  background: linear-gradient(180deg, #fff8e8 0%, #fff0cc 100%);
}
.kt-illustration svg {
  width: 80px;
  height: 80px;
  color: var(--ink);
}
.kt-card h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.kt-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 14px;
  min-height: 60px;
}
.kt-card .turnaround {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hot);
  font-weight: 700;
  background: rgba(255, 90, 54, 0.1);
  padding: 5px 10px;
  border-radius: 99px;
}
.kt-card .turnaround svg {
  width: 11px;
  height: 11px;
}
/* ---------- BRAND COVERAGE ---------- */
.brands {
  background: linear-gradient(180deg, var(--paper) 0%, #fff 100%);
}
.brands-head {
  max-width: 800px;
}
.brands-head .section-lede {
  margin-bottom: 0;
}
.brands-board {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  width: 100%;
  min-width: 0;
  margin-top: 48px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-2) 100%);
  border: 1px solid rgba(15, 16, 20, 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}
.coverage-summary {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
  min-height: 540px;
  padding: 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.coverage-label {
  margin: 0 0 -10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.coverage-summary h3 {
  max-width: 480px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  overflow-wrap: break-word;
}
.coverage-summary p:not(.coverage-label) {
  max-width: 520px;
  margin: 0;
  color: #d8d3c7;
  font-size: 16px;
  line-height: 1.65;
}
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.coverage-stats span {
  color: #bdb7aa;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}
.coverage-stats strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
.coverage-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  min-height: 48px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 26px -16px rgba(255, 182, 39, 0.7);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.coverage-call:hover {
  background: #ffc759;
  transform: translateY(-2px);
}
.make-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  background: #fff;
  color: var(--ink);
}
.make-group {
  min-width: 0;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.make-group:nth-child(2n) {
  border-right: 0;
}
.make-group:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.make-group h3 {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
}
.make-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  min-width: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}
.make-group li {
  max-width: 100%;
  padding: 9px 12px;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  overflow-wrap: anywhere;
  white-space: normal;
}
.brands-cta {
  margin-top: 28px;
  text-align: center;
  font-size: 16px;
  color: var(--muted);
}
.brands-cta a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
@media (max-width: 980px) {
  .brands-board {
    grid-template-columns: 1fr;
  }
  .coverage-summary {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}
@media (max-width: 640px) {
  .brands-board {
    margin-top: 34px;
    border-radius: 16px;
  }
  .coverage-summary {
    gap: 22px;
    padding: 30px 22px;
  }
  .coverage-summary h3 {
    max-width: 100%;
    font-size: 31px;
    line-height: 1.04;
  }
  .coverage-summary p:not(.coverage-label) {
    max-width: 100%;
  }
  .coverage-stats,
  .make-groups {
    grid-template-columns: 1fr;
  }
  .coverage-call {
    width: 100%;
  }
  .make-group {
    padding: 24px 22px;
    border-right: 0;
  }
  .make-group ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .make-group li {
    display: grid;
    min-height: 38px;
    place-items: center;
    text-align: center;
    line-height: 1.2;
  }
  .make-group:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }
}
/* ---------- SERVICES ---------- */
.services {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}
.svc {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 28px 28px;
  border-radius: 18px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(0.18);
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d6d3c8;
}
.svc:hover::before {
  transform: scaleX(1);
  background: var(--amber);
}
.svc.urgent::before {
  background: var(--hot);
  transform: scaleX(1);
}
.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--amber);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.svc.urgent .svc-icon {
  background: linear-gradient(135deg, var(--hot) 0%, var(--hot-deep) 100%);
  color: #fff;
}
.svc-icon svg {
  width: 26px;
  height: 26px;
}
.svc h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc h3 .urgent-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--hot);
  color: #fff;
  padding: 3px 8px;
  border-radius: 99px;
  text-transform: uppercase;
}
.svc p {
  font-size: 15px;
  line-height: 1.55;
  color: #444;
  margin: 0 0 18px;
}
.svc .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--amber-deep);
}
.svc.urgent .more {
  color: var(--hot);
}
.svc .more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.svc:hover .more svg {
  transform: translateX(4px);
}
/* ---------- HOW IT WORKS ---------- */
.how {
  background: var(--paper);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 880px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}
.step {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.step:hover {
  transform: translateY(-3px);
  border-color: var(--amber);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--amber);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 16px;
}
.step .timing {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hot);
  font-weight: 700;
  margin-bottom: 8px;
  padding: 4px 10px;
  background: rgba(255, 90, 54, 0.1);
  border-radius: 99px;
}
.step h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.step p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
/* ---------- WHY US ---------- */
.why {
  background: #fff;
  border-top: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.why-list li {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.why-list li:last-child {
  border-bottom: 1px solid var(--line);
}
.why-list .ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--amber);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.why-list .ico svg {
  width: 20px;
  height: 20px;
}
.why-list h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.why-list p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
.why-cta {
  margin-top: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(135deg, #111217 0%, #17120f 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 18px;
  box-shadow:
    0 24px 55px -32px rgba(15, 16, 20, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.why-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    360px 180px at 100% 0%,
    rgba(255, 182, 39, 0.2),
    transparent 60%
  );
  pointer-events: none;
}
.why-cta p {
  margin: 0 0 18px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.why-cta strong {
  color: #fff;
}
.why-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--hot) 0%, var(--hot-deep) 100%);
  color: #fff;
  padding: 14px 20px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 14px 28px -16px rgba(255, 90, 54, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  z-index: 2;
}
.why-cta-btn .phone-icon {
  width: 18px;
  height: 18px;
}
.why-cta-btn:hover {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: #111217;
  box-shadow:
    0 16px 30px -18px rgba(217, 147, 25, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}
/* ---------- TESTIMONIALS ---------- */
.testimonial {
  background: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -50px;
  left: -10px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 380px;
  line-height: 1;
  color: rgba(255, 182, 39, 0.1);
  pointer-events: none;
}
.testimonial .wrap {
  position: relative;
  z-index: 2;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
@media (max-width: 980px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
.testi {
  background: #fff;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testi-stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi blockquote {
  font-family: var(--display);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 20px;
  flex-grow: 1;
}
.testi .timetag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hot);
  font-weight: 700;
  margin-bottom: 18px;
  padding: 6px 10px;
  background: rgba(255, 90, 54, 0.1);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.testi .timetag svg {
  width: 11px;
  height: 11px;
}
.testi .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testi .avatar {
  width: 42px;
  height: 42px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--amber-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
}
.testi .name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.testi .role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
/* ---------- AREAS SERVED ---------- */
.areas {
  background: #fff;
  border-top: 1px solid var(--line);
}
.areas-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.72fr);
  gap: 60px;
  align-items: start;
}
@media (max-width: 1100px) {
  .areas-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 38px;
  }
}
@media (max-width: 880px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}
.areas-zones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 22px;
  margin-top: 34px;
}
.area-zone {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.area-zone h3 {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}
.areas-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}
.areas-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--amber-deep);
  box-shadow: 0 0 0 3px rgba(217, 147, 25, 0.1);
  flex: 0 0 auto;
}
.areas-list span:hover {
  background: var(--ink);
  color: var(--amber);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.areas-list span:hover::before {
  color: var(--amber);
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 182, 39, 0.16);
}
.areas-card {
  position: sticky;
  top: 104px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(155deg, #141115 0%, #0d0e12 52%, #1b100d 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 34px;
  text-align: left;
  box-shadow:
    0 28px 70px -34px rgba(15, 16, 20, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.areas-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    440px 240px at 50% 0%,
    rgba(255, 182, 39, 0.18),
    transparent 60%
  );
  pointer-events: none;
}
.areas-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 182, 39, 0.7),
    transparent
  );
}
.areas-card-inner {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}
.dispatch-kicker {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.areas-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.02;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -0.015em;
}
.areas-card h3 .ital {
  font-style: italic;
  color: var(--hot);
}
.dispatch-copy {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15.5px;
  line-height: 1.65;
}
.areas-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--hot) 0%, var(--hot-deep) 100%);
  color: #fff;
  border-radius: 99px;
  padding: 15px 22px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  box-shadow:
    0 18px 36px -18px rgba(255, 90, 54, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.areas-call .phone-icon {
  width: 18px;
  height: 18px;
}
.areas-call:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 42px -20px rgba(255, 90, 54, 1),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.dispatch-standard {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dispatch-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dispatch-row > span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  padding-top: 2px;
}
.dispatch-row strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}
.dispatch-row p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  line-height: 1.45;
}
.dispatch-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
}
.dispatch-foot span {
  font-family: var(--display);
  font-size: 76px;
  line-height: 0.8;
  color: var(--amber);
  letter-spacing: -0.04em;
}
.dispatch-foot p {
  max-width: 15ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 1100px) {
  .areas-zones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 880px) {
  .areas-card {
    position: relative;
    top: auto;
  }
  .areas-card-inner {
    min-height: auto;
  }
}
@media (max-width: 560px) {
  .areas-zones {
    grid-template-columns: 1fr;
  }
  .dispatch-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .dispatch-foot p {
    max-width: none;
    text-align: left;
  }
}
/* ---------- FAQ ---------- */
.faq {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
details.q {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
details.q:last-child {
  border-bottom: 1px solid var(--line);
}
details.q[open] summary::after {
  transform: rotate(45deg);
  background: var(--amber);
  color: var(--ink);
}
details.q[open] summary {
  color: var(--amber-deep);
}
details.q summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 23px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s ease;
}
details.q summary::-webkit-details-marker {
  display: none;
}
details.q summary::after {
  content: "+";
  color: #fff;
  background: var(--ink);
  width: 34px;
  height: 34px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 22px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  line-height: 1;
  flex-shrink: 0;
}
details.q .ans {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: #444;
  max-width: 62ch;
}
/* ---------- FINAL CTA ---------- */
.finalcta {
  background: var(--ink);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.finalcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 400px at 50% 0%,
      rgba(255, 90, 54, 0.32),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 50% 120%,
      rgba(255, 182, 39, 0.22),
      transparent 60%
    );
}
.finalcta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 80%
  );
}
.finalcta .wrap {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.finalcta h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.finalcta h2 .ital {
  font-style: italic;
  color: var(--amber);
}
.finalcta h2 .hot {
  font-style: italic;
  color: var(--hot);
}
.finalcta p.sub {
  font-size: 19px;
  line-height: 1.6;
  color: #cdc6b3;
  margin: 0 auto 36px;
  max-width: 560px;
}
.finalcta .megacall {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--hot);
  color: #fff;
  padding: 24px 36px 24px 28px;
  border-radius: 99px;
  box-shadow: 0 20px 60px -20px rgba(255, 90, 54, 0.7);
  transition: all 0.25s ease;
  position: relative;
}
.finalcta .megacall::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 99px;
  background: rgba(255, 90, 54, 0.4);
  z-index: -1;
  animation: ringpulse 2.4s ease-out infinite;
}
.finalcta .megacall:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--amber);
  color: var(--ink);
}
.finalcta .megacall .ico {
  width: 54px;
  height: 54px;
  border-radius: 99px;
  background: #fff;
  color: var(--hot);
  display: grid;
  place-items: center;
}
.finalcta .megacall:hover .ico {
  background: var(--ink);
  color: var(--amber);
}
.finalcta .megacall .ico svg {
  width: 24px;
  height: 24px;
}
.finalcta .megacall .txt {
  text-align: left;
}
.finalcta .megacall .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.finalcta .megacall:hover .lbl {
  color: var(--muted);
}
.finalcta .megacall .num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.finalcta .alt {
  margin-top: 28px;
  font-size: 15px;
  color: #a39c89;
}
.finalcta .alt a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.finalcta .alt a:hover {
  color: #fff;
}
/* ---------- FOOTER ---------- */
footer {
  background: #06070a;
  color: #7a7d87;
  padding: 56px 0 40px;
  font-size: 14px;
}
footer .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
@media (max-width: 880px) {
  footer .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
footer .brand-stack {
  margin-bottom: 14px;
}
footer .brand {
  color: #fff;
}
footer .brand small {
  color: #7a7d87;
}
footer .tag {
  font-family: var(--display);
  font-style: italic;
  color: var(--hot);
  font-size: 18px;
  margin: 8px 0 18px;
}
footer h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  font-weight: 600;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer a:hover {
  color: var(--amber);
}
footer .legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #5a5d67;
}
/* ---------- STICKY MOBILE CTA ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--hot);
  color: #fff;
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.mobile-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ink), var(--amber), var(--ink));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.mobile-cta svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 680px) {
  .mobile-cta {
    display: flex;
  }
  body {
    padding-bottom: 64px;
  }
}
/* ---------- PHONE LAYOUT ---------- */
@media (max-width: 680px) {
  html {
    scroll-padding-top: 78px;
  }
  body {
    font-size: 16px;
    overflow-x: hidden;
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
  .wrap {
    width: 100%;
    max-width: 100%;
    padding: 0 18px;
  }
  section,
  .hero,
  .strip,
  footer,
  header.nav {
    max-width: 100vw;
    overflow: hidden;
  }
  .emergency-bar {
    padding: 9px 16px;
    font-size: 13px;
    line-height: 1.35;
  }
  .emergency-bar a {
    display: block;
    margin-top: 2px;
  }
  .topbar {
    padding: 9px 0;
    font-size: 12.5px;
  }
  .topbar .wrap {
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    text-align: center;
  }
  .topbar .lhs {
    justify-content: center;
  }
  .nav-inner {
    padding: 12px 0;
    gap: 12px;
  }
  .brand-stack {
    gap: 10px;
    min-width: 0;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .brand-mark svg {
    width: 22px;
    height: 22px;
  }
  .brand {
    font-size: 25px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 0.24em;
  }
  header.nav .cta-call {
    display: none;
  }
  .cta-call {
    padding: 11px 14px;
    flex-shrink: 0;
  }
  .hero {
    padding: 48px 0 64px;
  }
  .hero .wrap {
    gap: 30px;
    min-width: 0;
  }
  .hero .wrap > * {
    min-width: 0;
  }
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    margin-bottom: 18px;
  }
  .hero-badge {
    width: fit-content;
    max-width: 100%;
    padding: 7px 11px;
    font-size: 12px;
  }
  h1.headline {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 18px;
  }
  .lede {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 24px;
    overflow-wrap: break-word;
  }
  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 15px 18px;
    font-size: 15px;
    white-space: normal;
    text-align: center;
  }
  .hero-fast {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    width: 100%;
    max-width: 100%;
    padding: 16px;
    border-radius: 12px;
  }
  .hero-fast .txt {
    min-width: 0;
  }
  .hero-fast .lbl {
    letter-spacing: 0.14em;
  }
  .hero-fast .val {
    font-size: 20px;
    overflow-wrap: anywhere;
  }
  .call-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 18px;
    padding: 28px 20px;
  }
  .cc-stamp {
    position: relative;
    top: auto;
    right: auto;
    width: max-content;
    max-width: 100%;
    margin: 0 0 14px;
  }
  .cc-title {
    font-size: 31px;
  }
  .cc-sub {
    font-size: 14.5px;
    overflow-wrap: break-word;
  }
  .cc-call {
    max-width: 100%;
    padding: 16px;
    gap: 10px;
    border-radius: 14px;
  }
  .cc-call .left {
    gap: 10px;
    min-width: 0;
  }
  .cc-call .left > div {
    min-width: 0;
  }
  .cc-call .ico {
    width: 42px;
    height: 42px;
  }
  .cc-call .num {
    font-size: 22px;
  }
  .cc-call .arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .cc-meta {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }
  .strip {
    padding: 28px 0;
  }
  .strip .wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }
  .strip-item h3 {
    font-size: 32px;
  }
  section {
    padding: 68px 0;
  }
  .section-eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
    gap: 8px;
  }
  .section-eyebrow::before {
    width: 18px;
  }
  .section-title {
    font-size: 38px;
    line-height: 1.04;
  }
  .section-lede {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 34px;
  }
  .kt-grid,
  .svc-grid,
  .how-grid,
  .testi-grid {
    margin-top: 26px;
  }
  .kt-card,
  .svc,
  .step,
  .testi,
  .why-cta,
  .areas-card {
    border-radius: 14px;
  }
  .kt-card {
    padding: 24px 20px;
  }
  .kt-card p {
    min-height: 0;
  }
  .svc {
    padding: 28px 22px 24px;
  }
  .svc h3 {
    font-size: 24px;
    flex-wrap: wrap;
  }
  .why-list li {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 20px 0;
  }
  .why-list .ico {
    width: 40px;
    height: 40px;
  }
  .testimonial::before {
    font-size: 220px;
    top: -30px;
  }
  .testi {
    padding: 26px 22px;
  }
  .testi blockquote {
    font-size: 19px;
  }
  .areas-list {
    gap: 8px;
  }
  .areas-list span {
    padding: 9px 12px;
    font-size: 13px;
  }
  .faq-grid {
    gap: 24px;
  }
  details.q {
    padding: 18px 0;
  }
  details.q summary {
    font-size: 21px;
    gap: 16px;
  }
  details.q summary::after {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
  .finalcta {
    padding: 76px 0;
  }
  .finalcta h2 {
    font-size: 42px;
  }
  .finalcta p.sub {
    font-size: 17px;
    margin-bottom: 26px;
  }
  .finalcta .megacall {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
  }
  .finalcta .megacall .ico {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
  }
  .finalcta .megacall .txt {
    min-width: 0;
  }
  .finalcta .megacall .lbl {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .finalcta .megacall .num {
    font-size: 25px;
  }
  footer {
    padding: 44px 0 34px;
  }
  footer .wrap {
    gap: 28px;
    margin-bottom: 28px;
  }
  footer .legal {
    align-items: flex-start;
  }
  .mobile-cta {
    padding: 15px 18px calc(15px + env(safe-area-inset-bottom));
    min-height: 64px;
  }
}

@media (max-width: 380px) {
  .wrap {
    padding: 0 16px;
  }
  .brand {
    font-size: 23px;
  }
  .brand small {
    letter-spacing: 0.18em;
  }
  .cta-call {
    padding: 10px 12px;
  }
  h1.headline {
    font-size: 39px;
  }
  .section-title {
    font-size: 35px;
  }
  .cc-title {
    font-size: 29px;
  }
  .cc-call .ico,
  .cc-call .arrow {
    display: none;
  }
  .cc-call {
    justify-content: center;
    text-align: center;
  }
  .finalcta h2 {
    font-size: 39px;
  }
  .finalcta .megacall .ico {
    display: none;
  }
  .finalcta .megacall .txt {
    text-align: center;
  }
  .finalcta .megacall .num {
    font-size: 24px;
  }
}
/* ---------- REVEAL ANIMATIONS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.9s ease,
      transform 0.9s ease;
  }
  .reveal.on {
    opacity: 1;
    transform: none;
  }
}
/* ---------- ACCESSIBILITY ---------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}
