:root {
  --ink: #070b14;
  --ink-2: #0b1120;
  --ink-3: #121a2a;
  --paper: #f8fafc;
  --paper-2: #eef2f7;
  --line: #d9e1ec;
  --premium-red: #a30f2d;
  --premium-red-dark: #7a0a20;
  --premium-navy: #070b14;
  --premium-navy-2: #0b1120;
  --amber: var(--premium-red);
  --amber-deep: var(--premium-red-dark);
  --teal: var(--premium-red);
  --teal-deep: var(--premium-red-dark);
  --hot: var(--premium-red);
  --hot-deep: var(--premium-red-dark);
  --muted: #445066;
  --soft: #647084;
  --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(7, 11, 20, 0.34);
  --shadow-md: 0 14px 30px -14px rgba(7, 11, 20, 0.24);
  --shadow-sm: 0 6px 14px -6px rgba(7, 11, 20, 0.16);
}
* {
  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-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  color: #fff;
  margin-right: 2px;
  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(163, 15, 45, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(163, 15, 45, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(163, 15, 45, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(163, 15, 45, 0);
  }
}
.topbar a {
  font-weight: 700;
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(163, 15, 45, 0.4);
}
.topbar a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
/* ---------- HEADER / NAV ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 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(163, 15, 45, 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(163, 15, 45, 0.6);
  position: relative;
}
.cta-call::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 99px;
  background: rgba(163, 15, 45, 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;
}
.hamburger-btn {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 880px) {
  nav.menu {
    display: none;
  }
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .hamburger-btn:hover {
    border-color: var(--ink);
    background: rgba(7, 11, 20, 0.04);
  }
  .hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  .hamburger-btn[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  .hamburger-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .mobile-menu {
    position: fixed;
    top: calc(var(--emergency-bar-height, 0px) + var(--site-header-height));
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(7, 11, 20, 0.08);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      max-height 260ms ease,
      visibility 0s linear 260ms;
  }
  .mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    max-height: calc(
      100vh - var(--emergency-bar-height, 0px) - var(--site-header-height)
    );
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      max-height 260ms ease,
      visibility 0s linear 0s;
    overflow-y: auto;
    padding: 12px 0;
  }
  .mobile-menu-link {
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu-link:last-child {
    border-bottom: none;
  }
  .mobile-menu-link:hover,
  .mobile-menu-link:active {
    background-color: var(--paper);
  }
  .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(163, 15, 45, 0.16),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at -5% 100%,
      rgba(163, 15, 45, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #f8faff 0%, var(--paper) 100%);
  padding: 80px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(7, 11, 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(163, 15, 45, 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(163, 15, 45, 0.5) 60%);
  padding: 0 4px;
}
.lede {
  font-size: 20px;
  line-height: 1.5;
  max-width: 560px;
  color: #445066;
  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(163, 15, 45, 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(163, 15, 45, 0.22),
      transparent 60%
    ),
    radial-gradient(
      400px 300px at 100% 100%,
      rgba(163, 15, 45, 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(163, 15, 45, 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(163, 15, 45, 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: #a1adbf;
  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: #a1adbf;
  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(163, 15, 45, 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: #647084;
  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: #445066;
  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);
}
.keytypes .wrap {
  text-align: center;
}
.keytypes .section-eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}
.keytypes .section-eyebrow::before {
  display: none;
}
.keytypes .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.keytypes .section-lede {
  max-width: 670px;
  margin: 0 auto 34px;
}
.keytypes-media {
  max-width: 900px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.keytypes-media a {
  display: block;
  border-radius: 16px;
}
.keytypes-image {
  display: block;
  width: 100%;
  height: 320px;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}
.keytypes-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  object-fit: contain;
}
.keytypes-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(163, 15, 45, 0.32);
  border-radius: 999px;
  color: var(--hot-deep);
  background: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-weight: 700;
}
.keytypes-detail:hover {
  background: var(--hot);
  border-color: var(--hot);
  color: #fff;
}
.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;
  }
  .keytypes-media {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .keytypes-placeholder {
    height: auto;
  }
}
.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, #f7f9fc 0%, #e2e8f0 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, #f8fafc 0%, #eef2f7 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;
  min-height: 44px;
}
.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(163, 15, 45, 0.1);
  padding: 5px 10px;
  border-radius: 99px;
}
.kt-card .turnaround svg {
  width: 11px;
  height: 11px;
}
.keytypes-note {
  margin: 28px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}
.keytypes-note a {
  color: var(--hot-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(163, 15, 45, 0.35);
}
/* ---------- BRAND COVERAGE ---------- */
.brands {
  background: linear-gradient(180deg, var(--paper) 0%, #fff 100%);
}
.brands .wrap {
  text-align: center;
}
.brands .section-eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}
.brands .section-eyebrow::before {
  display: none;
}
.brands .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.brands .section-lede {
  max-width: 620px;
  margin: 0 auto 34px;
}
.brands-media {
  max-width: 980px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: center;
  gap: 18px;
}
.brand-image-card {
  width: 100%;
  max-width: 290px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: #f2f5fa;
  border: 1px solid #d9e1ec;
}
.brand-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.brands-list {
  max-width: 820px;
  margin: 0 auto 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.brands-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.brands-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(163, 15, 45, 0.32);
  border-radius: 999px;
  color: var(--hot-deep);
  background: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-weight: 700;
}
.brands-detail:hover {
  background: var(--hot);
  border-color: var(--hot);
  color: #fff;
}
@media (max-width: 900px) {
  .brands-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .brands-media {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .brand-image-card {
    max-width: 100%;
  }
  .keytypes-placeholder {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}
/* ---------- SERVICES ---------- */
.services {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services .wrap {
  text-align: center;
}
.services .section-eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}
.services .section-eyebrow::before {
  display: none;
}
.services .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.services .section-lede {
  max-width: 680px;
  margin: 0 auto 26px;
}
.services-image-wrap {
  display: block;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 3 / 1;
  margin: 2rem auto 44px;
  border-radius: 24px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}
.services-image,
.services-image-wrap img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.svc-grid {
  max-width: 980px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.svc {
  min-height: 142px;
  padding: 24px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.svc:hover {
  transform: translateY(-2px);
  border-color: rgba(163, 15, 45, 0.32);
  box-shadow: var(--shadow-sm);
}
.svc h3 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}
.svc p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}
.services-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(163, 15, 45, 0.3);
  border-radius: 999px;
  color: var(--hot);
  background: rgba(163, 15, 45, 0.07);
  font-weight: 800;
}
.services-detail:hover {
  color: #fff;
  background: var(--hot);
  border-color: var(--hot);
}
@media (max-width: 1023px) {
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .svc {
    padding: 20px 18px;
  }
}
@media (max-width: 767px) {
  .services .section-lede {
    margin-bottom: 22px;
  }
  .services-image-wrap {
    aspect-ratio: 16 / 9;
    margin-bottom: 32px;
    border-radius: 14px;
  }
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .svc {
    min-height: 0;
    padding: 18px 14px;
  }
}
@media (max-width: 339px) {
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .svc {
    padding: 16px 12px;
  }
}
/* ---------- TESTIMONIALS ---------- */
.testimonial {
  background: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.testimonial::before {
  content: none;
}
.testimonial .wrap {
  position: relative;
  z-index: 2;
}
.testimonial .section-eyebrow {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 16px;
}
.testimonial .section-eyebrow::before {
  display: none;
}
.testimonial .section-title {
  text-align: center;
}
.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(163, 15, 45, 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;
}
/* ---------- FAQ ---------- */
.faq {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq .wrap {
  text-align: center;
}
.faq .section-eyebrow {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 14px;
}
.faq .section-eyebrow::before {
  display: none;
}
.faq .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.faq .section-lede {
  max-width: 640px;
  margin: 0 auto 36px;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
details.q {
  border: 1px solid rgba(7, 11, 20, 0.08);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.98)
  );
  box-shadow: 0 14px 32px -28px rgba(7, 11, 20, 0.4);
  text-align: left;
  transition:
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 260ms ease,
    background-color 260ms ease;
  overflow: hidden;
}
details.q:hover {
  border-color: rgba(163, 15, 45, 0.18);
  box-shadow: 0 22px 38px -28px rgba(7, 11, 20, 0.34);
}
details.q[open],
details.q.is-opening,
details.q.is-closing {
  border-color: rgba(163, 15, 45, 0.28);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 26px 48px -34px rgba(163, 15, 45, 0.35);
  transform: translateY(-1px);
}
details.q summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  color: var(--ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  list-style: none;
}
details.q summary::-webkit-details-marker {
  display: none;
}
.q-label {
  flex: 1 1 auto;
}
.q-toggle {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  position: relative;
  border: 1px solid rgba(163, 15, 45, 0.2);
  border-radius: 999px;
  background: rgba(163, 15, 45, 0.08);
  color: var(--hot);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    transform 260ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    color 220ms ease;
}
.q-toggle::before,
.q-toggle::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 260ms ease,
    opacity 220ms ease;
}
.q-toggle::after {
  transform: rotate(90deg);
}
details.q[open] .q-toggle,
details.q.is-opening .q-toggle,
details.q.is-closing .q-toggle {
  background: var(--hot);
  color: #fff;
  border-color: var(--hot);
  box-shadow: 0 12px 24px -16px rgba(163, 15, 45, 0.9);
}
details.q[open] .q-toggle::after,
details.q.is-opening .q-toggle::after,
details.q.is-closing .q-toggle::after {
  transform: rotate(90deg) scaleX(0);
  opacity: 0;
}
details.q .ans {
  max-width: 720px;
  margin: 0;
  padding: 0 84px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 240ms ease,
    transform 280ms ease,
    padding-bottom 280ms ease;
  will-change: opacity, transform;
}
details.q[open] .ans,
details.q.is-opening .ans {
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
}
.faq-call {
  margin-top: 32px;
}
/* ---------- 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(163, 15, 45, 0.32),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 50% 120%,
      rgba(163, 15, 45, 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: #a1adbf;
  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(163, 15, 45, 0.7);
  transition: all 0.25s ease;
  position: relative;
}
.finalcta .megacall::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 99px;
  background: rgba(163, 15, 45, 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: 14px;
  color: #647084;
}
.finalcta .alt a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.finalcta .alt a:hover {
  color: #fff;
}
.finalcta .service-area-note {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
}
/* ---------- FOOTER ---------- */
footer {
  background: #070b14;
  color: #647084;
  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: #647084;
}
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: #445066;
}
/* ---------- 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 {
    flex-shrink: 1;
    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,
  .testi-grid {
    margin-top: 26px;
  }
  .kt-card,
  .svc,
  .testi {
    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;
  }
  .testimonial::before {
    font-size: 220px;
    top: -30px;
  }
  .testi {
    padding: 26px 22px;
  }
  .testi blockquote {
    font-size: 19px;
  }
  .faq .section-lede {
    margin-bottom: 30px;
  }
  details.q summary {
    padding: 20px 24px;
    font-size: 18px;
    gap: 14px;
  }
  .q-toggle {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }
  details.q .ans {
    padding: 0 64px 0 24px;
    font-size: 15.5px;
  }
  .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;
  }
}
/* ---------- HERO REDESIGN OVERRIDES ---------- */
:root {
  --emergency-bar-height: 42px;
  --site-header-height: 86px;
}
.emergency-bar {
  min-height: var(--emergency-bar-height);
  background: #a30f2d;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.emergency-bar::before,
.emergency-bar a,
.topbar {
  display: none;
}
.emergency-bar .pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  color: #fff;
  margin: 0 4px 0 0;
  background: transparent;
  position: relative;
  animation: none;
  box-shadow: none;
  vertical-align: middle;
}
header.nav {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom: 1px solid #d9e1ec;
}
header.nav .wrap {
  max-width: 1360px;
  padding: 0;
}
.nav-inner {
  min-height: var(--site-header-height);
  padding: 0;
  gap: 28px;
}
.brand-stack {
  gap: 14px;
}
.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}
.brand-mark svg {
  width: 26px;
  height: 26px;
}
.brand {
  font-size: 30px;
  line-height: 0.92;
}
header.nav .brand-text small {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #070b14;
  line-height: 1;
  text-transform: uppercase;
}
header.nav .brand-text > small:not(.brand-locality) {
  display: none;
}
nav.menu {
  gap: 38px;
}
nav.menu a {
  font-size: 18px;
  font-weight: 600;
}
.cta-call {
  min-width: 224px;
  min-height: 52px;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border-radius: 999px;
  box-shadow: none;
  white-space: nowrap;
  background: #a30f2d;
  border-color: #a30f2d;
  font-size: 18px;
  font-weight: 700;
}
.cta-call::before {
  display: none;
}
.cta-call span.label {
  display: inline;
}
.cta-call:hover {
  background: var(--hot-deep);
  color: #fff;
  border-color: var(--hot-deep);
}
.cta-call svg {
  width: 18px;
  height: 18px;
}
.hero {
  background: #f8fafc;
  min-height: calc(
    100vh - var(--emergency-bar-height) - var(--site-header-height)
  );
  min-height: calc(
    100svh - var(--emergency-bar-height) - var(--site-header-height)
  );
  padding: 28px 0;
  display: flex;
  align-items: center;
}
.hero::before {
  display: none;
}
.hero .wrap {
  display: block;
  width: 100%;
  max-width: 980px;
  text-align: center;
}
.hero .wrap > :not(.hero-content) {
  display: none !important;
}
.hero-content {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  color: #a30f2d;
}
.hero-eyebrow svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}
.hero h1.headline {
  max-width: 880px;
  margin: 0 auto 20px;
  font-family: var(--sans);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  color: #070b14;
}
.hero .hero-lede {
  max-width: 600px;
  margin: 0 auto 26px;
  font-size: 21px;
  line-height: 1.42;
  color: #445066;
}
.hero-content > .hero-lede:not(.hero-lede-copy) {
  display: none;
}
.hero .hero-ctas {
  justify-content: center;
  margin: 0 0 20px;
}
.hero .btn {
  border-radius: 999px;
  min-width: 330px;
  min-height: 66px;
  justify-content: center;
  gap: 12px;
  padding: 0 34px;
  font-size: 24px;
  font-weight: 700;
}
.hero .btn svg {
  width: 23px;
  height: 23px;
}
.hero .btn-primary {
  background: #a30f2d;
  border-color: #a30f2d;
  box-shadow: none;
}
.hero .btn-primary:hover {
  background: var(--hot-deep);
  border-color: var(--hot-deep);
  transform: none;
}
.hero-trust {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #445066;
}
.hero-trust svg {
  width: 21px;
  height: 21px;
  color: #a30f2d;
  flex: 0 0 auto;
}
.hero-process {
  width: min(100%, 820px);
  margin-top: 42px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--ink);
}
.hero-process-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-height: 70px;
  padding: 0 26px;
  border-right: 1px solid #d9e1ec;
  text-align: left;
}
.hero-process-item:last-child {
  border-right: 0;
}
.hero-process-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #f4e7ec;
  color: #a30f2d;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}
.hero-process-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}
.hero-process-copy strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.hero-process-copy small {
  color: #445066;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}
.strip {
  display: none;
}
@media (max-width: 880px) {
  .cta-call span.label {
    display: inline;
  }
}
@media (max-width: 680px) {
  :root {
    --emergency-bar-height: 35px;
    --site-header-height: 57px;
  }
  .emergency-bar {
    padding: 8px 14px;
    font-size: 12.5px;
  }
  .nav-inner {
    padding: 10px 0;
    gap: 10px;
  }
  header.nav .wrap {
    padding: 0 18px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .brand-mark svg {
    width: 20px;
    height: 20px;
  }
  .brand {
    font-size: 22px;
    white-space: nowrap;
  }
  .brand small {
    display: none;
  }
  header.nav .cta-call {
    display: inline-flex;
  }
  .cta-call {
    gap: 7px;
    padding: 10px 12px;
    font-size: 12.5px;
    flex-shrink: 0;
  }
  .cta-call svg {
    display: none;
  }
  .hero {
    min-height: calc(
      100vh - var(--emergency-bar-height) - var(--site-header-height)
    );
    min-height: calc(
      100svh - var(--emergency-bar-height) - var(--site-header-height)
    );
    padding: 26px 0;
  }
  .hero .wrap {
    padding: 0 20px;
  }
  .hero-eyebrow {
    margin-bottom: 10px;
    font-size: 15px;
    letter-spacing: 0;
  }
  .hero h1.headline {
    max-width: 560px;
    margin-bottom: 14px;
    font-size: clamp(32px, 8.5vw, 40px);
    line-height: 1.08;
  }
  .hero .hero-lede {
    margin-bottom: 20px;
    font-size: 16.5px;
    line-height: 1.55;
  }
  .hero .hero-ctas {
    width: 100%;
  }
  .hero .btn {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    min-height: 0;
    padding: 16px 22px;
    font-size: 15.5px;
  }
  .hero .btn svg {
    width: 18px;
    height: 18px;
  }
  .hero-trust {
    font-size: 13px;
  }
  .hero-content {
    transform: none;
  }
  .hero-process {
    width: min(100%, 320px);
    margin-top: 22px;
    padding: 0;
    grid-template-columns: 1fr;
  }
  .hero-process-item {
    justify-content: flex-start;
    min-height: 0;
    gap: 14px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 11, 20, 0.14);
  }
  .hero-process-item:last-child {
    border-bottom: 0;
  }
  .hero-process-number {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }
  .hero-process-copy strong {
    font-size: 15.5px;
  }
  .hero-process-copy small {
    font-size: 13.5px;
  }
}
@media (max-width: 380px) {
  .brand {
    font-size: 20px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .brand-stack {
    gap: 8px;
  }
  .cta-call {
    padding: 9px 8px;
    font-size: 11.5px;
  }
  .hero h1.headline {
    font-size: 33px;
  }
}
/* ---------- 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;
}

/* ---------- RESPONSIVE POLISH ---------- */
@media (max-width: 1024px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .wrap {
    max-width: 100%;
  }
  header.nav .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-inner {
    gap: 20px;
  }
  nav.menu {
    gap: 22px;
  }
  nav.menu a {
    font-size: 16px;
  }
  .cta-call {
    min-width: 190px;
    min-height: 48px;
    padding: 0 18px;
    font-size: 15.5px;
  }
  .brand-mark {
    width: 46px;
    height: 46px;
  }
  .brand {
    font-size: 28px;
  }
  .hero h1.headline {
    font-size: clamp(44px, 5.5vw, 56px);
  }
  .hero-process {
    width: min(100%, 760px);
    margin-top: 36px;
  }
  .hero-process-item {
    gap: 12px;
    padding: 0 18px;
  }
  .hero-process-copy strong {
    font-size: 16.5px;
  }
  .hero-process-copy small {
    font-size: 14px;
  }
  .brand-image-card {
    max-width: 100%;
  }
}

@media (max-width: 880px) {
  header.nav .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-inner {
    min-height: 70px;
  }
  .brand-stack {
    min-width: 0;
  }
  header.nav .cta-call {
    display: inline-flex;
  }
  .cta-call {
    min-width: 0;
    min-height: 46px;
    padding: 0 16px;
    font-size: 14.5px;
  }
  .hero-process-item {
    padding: 0 14px;
  }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  body {
    padding-bottom: 0;
  }
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  header.nav .wrap {
    padding-left: 14px;
    padding-right: 14px;
  }
  .nav-inner {
    min-height: var(--site-header-height);
    gap: 8px;
    padding: 8px 0;
  }
  .brand-stack {
    flex: 1 1 auto;
    gap: 8px;
    min-width: 0;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
  .brand-mark svg {
    width: 19px;
    height: 19px;
  }
  .brand {
    font-size: 21px;
    white-space: nowrap;
  }
  header.nav .brand-text small {
    display: none;
  }
  .cta-call {
    max-width: 48%;
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }
  .cta-call span.label {
    display: inline;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .emergency-bar {
    min-height: var(--emergency-bar-height);
    padding: 7px 12px;
    text-align: center;
    font-size: 12px;
    line-height: 1.25;
  }
  .hero {
    min-height: auto;
    padding: 32px 0 38px;
  }
  .hero .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-eyebrow {
    gap: 7px;
    margin-bottom: 10px;
    font-size: 14.5px;
  }
  .hero-eyebrow svg {
    width: 19px;
    height: 19px;
  }
  .hero h1.headline {
    max-width: 12em;
    margin-bottom: 14px;
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.08;
  }
  .hero .hero-lede {
    max-width: 32ch;
    margin-bottom: 18px;
    font-size: 15.5px;
    line-height: 1.5;
  }
  .hero .btn {
    max-width: 300px;
    min-height: 48px;
    padding: 13px 18px;
    font-size: 15px;
  }
  .hero-trust {
    gap: 6px;
    font-size: 12.5px;
  }
  .hero-trust svg {
    width: 17px;
    height: 17px;
  }
  .hero-process {
    width: 100%;
    max-width: 300px;
    margin-top: 18px;
  }
  .hero-process-item {
    gap: 10px;
    padding: 9px 0;
  }
  .hero-process-number {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
  .hero-process-copy strong {
    font-size: 14.5px;
  }
  .hero-process-copy small {
    font-size: 12.5px;
  }
  section {
    padding: 56px 0;
  }
  .section-title {
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.08;
  }
  .section-lede {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.55;
  }
  .keytypes-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .keytypes-media a,
  .keytypes-placeholder {
    border-radius: 14px;
  }
  .keytypes-placeholder {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .brands-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .brand-image-card {
    border-radius: 14px;
  }
  .brands-list {
    gap: 8px;
  }
  .brands-list span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }
  .keytypes-detail,
  .brands-detail,
  .services-detail {
    min-height: 46px;
    padding: 0 20px;
  }
  .services-image-wrap {
    aspect-ratio: 16 / 9;
    margin: 1.5rem auto 28px;
    border-radius: 16px;
  }
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .svc {
    min-height: 0;
    padding: 18px 14px;
  }
  .svc h3 {
    font-size: 18px;
  }
  .testi-grid {
    gap: 16px;
  }
  .testi {
    padding: 22px 18px;
  }
  .testi .timetag {
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
  }
  .testi blockquote {
    font-size: 17.5px;
    line-height: 1.45;
  }
  .faq-list {
    max-width: 100%;
  }
  details.q summary {
    padding: 18px 18px;
    font-size: 16.5px;
    gap: 12px;
  }
  .q-toggle {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }
  .q-toggle::before,
  .q-toggle::after {
    width: 11px;
  }
  details.q .ans {
    padding: 0 18px 0 18px;
    font-size: 15px;
  }
  .faq-call {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .finalcta {
    padding: 64px 0;
  }
  .finalcta h2 {
    font-size: clamp(33px, 10vw, 40px);
    line-height: 1.05;
  }
  .finalcta .megacall {
    width: 100%;
    max-width: 100%;
    gap: 10px;
    padding: 16px;
  }
  .finalcta .megacall .ico {
    width: 42px;
    height: 42px;
  }
  .finalcta .megacall .num {
    font-size: clamp(21px, 6vw, 25px);
    white-space: nowrap;
  }
  footer .wrap {
    gap: 24px;
  }
  footer ul {
    gap: 8px;
  }
  footer a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
  }
  footer .legal {
    flex-direction: column;
    align-items: flex-start;
    letter-spacing: 0.04em;
  }
  .mobile-cta {
    display: none;
  }
}

@media (max-width: 380px) {
  .wrap {
    padding-left: 14px;
    padding-right: 14px;
  }
  header.nav .wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
  .brand {
    font-size: 19px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .cta-call {
    max-width: 49%;
    min-height: 40px;
    padding: 0 8px;
    font-size: 11px;
  }
  .hero h1.headline {
    font-size: 29px;
  }
  .hero-process {
    max-width: 286px;
  }
  .hero-process-item {
    padding: 8px 0;
  }
  .brands-media {
    grid-template-columns: 1fr;
    max-width: 260px;
  }
  .services-image-wrap {
    aspect-ratio: 4 / 3;
  }
  .finalcta .megacall .ico {
    display: none;
  }
  .finalcta .megacall .num {
    font-size: 21px;
  }
}

@media (max-width: 340px) {
  .keytypes-media {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 680px) {
  .hero .hero-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .hero .hero-ctas .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
    width: calc(100vw - 40px);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
    text-align: center;
    transform: none;
  }
  .mobile-cta {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .keytypes-placeholder {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}

/*
 * ---------- CUSTOM STICKY HEADER OVERRIDES ----------
 * Keep the emergency bar and navigation stacked in place on tablet/mobile so
 * the brand, call button, and menu do not shift while the page scrolls.
 */
@media (max-width: 1024px) {
  .emergency-bar {
    position: relative !important;
    top: auto !important;
    z-index: auto !important;
  }

  header.nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid #d9e1ec !important;
    box-shadow: 0 2px 6px rgba(7, 11, 20, 0.08) !important;
    width: 100% !important;
    overflow: visible !important;
  }

  header.nav,
  header.nav * {
    overflow: visible !important;
  }

  header.nav + * {
    margin-top: var(--site-header-height) !important;
  }

  #keys,
  #key-types,
  #brands,
  #services,
  #faq {
    scroll-margin-top: calc(
      var(--emergency-bar-height) + var(--site-header-height) + 24px
    ) !important;
  }

  header.nav .cta-call {
    display: inline-flex !important;
  }
  header.nav .cta-call span.label {
    display: inline !important;
  }
}

@media (max-width: 880px) {
  .mobile-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    border-bottom: 1px solid var(--line) !important;
    box-shadow: 0 4px 12px rgba(7, 11, 20, 0.08) !important;
    z-index: 1001 !important;
    max-width: 100% !important;
  }

  .mobile-menu.is-open {
    max-height: calc(
      100vh - var(--emergency-bar-height) - var(--site-header-height)
    ) !important;
    max-height: calc(
      100svh - var(--emergency-bar-height) - var(--site-header-height)
    ) !important;
    overflow-y: auto !important;
  }
}

.image-placeholder {
  min-height: 320px;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1.5px dashed rgba(7, 11, 20, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(163, 15, 45, 0.06), rgba(200, 16, 46, 0.04)),
    repeating-linear-gradient(
      45deg,
      rgba(7, 11, 20, 0.03) 0,
      rgba(7, 11, 20, 0.03) 16px,
      rgba(255, 255, 255, 0.55) 16px,
      rgba(255, 255, 255, 0.55) 32px
    );
  color: var(--ink);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.image-placeholder span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.image-placeholder-tall {
  min-height: 560px;
}

.privacy-policy {
  padding: 88px 0 110px;
  background:
    radial-gradient(
      900px 520px at 100% 0,
      rgba(163, 15, 45, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #fbfcff 0%, var(--paper) 100%);
}

.privacy-policy article {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 11, 20, 0.08);
  border-radius: 28px;
  padding: 42px 40px;
  box-shadow: var(--shadow-md);
}

.privacy-policy h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.98;
  font-weight: 400;
  color: var(--ink);
}

.privacy-policy h2 {
  margin: 36px 0 12px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--ink);
}

.privacy-policy h3 {
  margin: 20px 0 10px;
  font-size: 18px;
  color: var(--ink);
}

.privacy-policy p,
.privacy-policy li,
.privacy-policy address {
  color: #0b1120;
  font-size: 17px;
  line-height: 1.7;
}

.privacy-policy ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.privacy-policy li + li {
  margin-top: 8px;
}

.privacy-effective {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.privacy-contact {
  font-style: normal;
  margin-top: 10px;
}

.privacy-contact a {
  color: var(--hot);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  .privacy-policy {
    padding: 64px 0 90px;
  }

  .privacy-policy article {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .image-placeholder {
    min-height: 240px;
  }

  .keytypes-image {
    height: 240px;
  }

  .image-placeholder-tall {
    min-height: 360px;
  }
}

/* ---------- PERMANENT CTA LIGHTING FIX ----------
   Keeps the site palette premium red + near-black navy while making every call action visibly active. */
:root {
  --cta-lit-red: #d1113b;
  --cta-lit-red-deep: #a30f2d;
  --cta-lit-red-dark: #7a0a20;
  --cta-lit-glow: rgba(209, 17, 59, 0.48);
}

.cta-call,
.btn-primary,
.hero .btn-primary,
.faq-call,
.cc-call,
.finalcta .megacall,
.mobile-cta {
  background: linear-gradient(
    135deg,
    var(--cta-lit-red) 0%,
    var(--cta-lit-red-deep) 56%,
    var(--cta-lit-red-dark) 100%
  ) !important;
  border-color: var(--cta-lit-red) !important;
  color: #ffffff !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 12px 30px -10px rgba(163, 15, 45, 0.78),
    0 0 28px var(--cta-lit-glow) !important;
  text-shadow: 0 1px 1px rgba(7, 11, 20, 0.22);
  animation: ctaLightPulse 2.8s ease-in-out infinite;
}

.cta-call:hover,
.btn-primary:hover,
.hero .btn-primary:hover,
.faq-call:hover,
.cc-call:hover,
.finalcta .megacall:hover,
.mobile-cta:hover {
  background: linear-gradient(
    135deg,
    #e01642 0%,
    var(--cta-lit-red) 48%,
    var(--cta-lit-red-deep) 100%
  ) !important;
  border-color: #e01642 !important;
  color: #ffffff !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.26) inset,
    0 16px 38px -10px rgba(209, 17, 59, 0.86),
    0 0 38px rgba(209, 17, 59, 0.62) !important;
}

.cta-call::before,
.finalcta .megacall::before {
  display: block !important;
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: rgba(209, 17, 59, 0.32) !important;
  z-index: -1;
  animation: ringpulse 2.4s ease-out infinite;
}

.finalcta .megacall .ico,
.cc-call .ico,
.cc-call .arrow {
  background: #ffffff !important;
  color: var(--cta-lit-red-deep) !important;
}

.finalcta .megacall:hover .ico,
.cc-call:hover .ico,
.cc-call:hover .arrow {
  background: #ffffff !important;
  color: var(--cta-lit-red) !important;
}

.finalcta .megacall .lbl,
.finalcta .megacall:hover .lbl,
.cc-call .lbl,
.cc-call:hover .lbl,
.cc-call .num,
.cc-call:hover .num {
  color: #ffffff !important;
}

@keyframes ctaLightPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.2) inset,
      0 12px 30px -10px rgba(163, 15, 45, 0.78),
      0 0 28px rgba(209, 17, 59, 0.48);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.28) inset,
      0 16px 38px -10px rgba(209, 17, 59, 0.88),
      0 0 42px rgba(209, 17, 59, 0.66);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-call,
  .btn-primary,
  .hero .btn-primary,
  .faq-call,
  .cc-call,
  .finalcta .megacall,
  .mobile-cta {
    animation: none;
  }
}

/* ---------- AUTOMOTIVE SERVICE PAGE ---------- */
nav.menu {
  gap: clamp(16px, 2.1vw, 28px);
}
nav.menu a[aria-current="page"] {
  color: var(--premium-red);
}
nav.menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.automotive-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(163, 15, 45, 0.12),
      transparent 34rem
    ),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: var(--ink);
  overflow: hidden;
}

.auto-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(72px, 9vw, 118px) 0 clamp(58px, 8vw, 92px);
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(209, 17, 59, 0.24),
      transparent 28rem
    ),
    radial-gradient(
      circle at 92% 16%,
      rgba(163, 15, 45, 0.18),
      transparent 24rem
    ),
    linear-gradient(135deg, #070b14 0%, #0b1120 56%, #121a2a 100%);
  color: #ffffff;
}

.auto-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 82%);
}

.auto-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.auto-kicker {
  margin: 0 0 12px;
  font-family: var(--mono);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.auto-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.auto-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cta-lit-red);
  box-shadow:
    0 0 0 6px rgba(209, 17, 59, 0.18),
    0 0 22px rgba(209, 17, 59, 0.76);
}

.auto-hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(48px, 8.2vw, 96px);
  line-height: 0.93;
  letter-spacing: -0.075em;
  color: #ffffff;
}

.auto-subtitle {
  margin: 26px 0 12px;
  max-width: 760px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 800;
  color: #ffffff;
}

.auto-services-line {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
}
.auto-services-line span {
  color: var(--cta-lit-red);
  margin: 0 8px;
}

.auto-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.auto-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #e01642 0%, #c70f38 45%, #8f0c25 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 18px 42px -14px rgba(209, 17, 59, 0.92),
    0 0 36px rgba(209, 17, 59, 0.62);
  text-shadow: 0 1px 1px rgba(7, 11, 20, 0.34);
  animation: ctaLightPulse 2.8s ease-in-out infinite;
}

.auto-call-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f0184a 0%, #d1113b 52%, #a30f2d 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24) inset,
    0 22px 52px -14px rgba(209, 17, 59, 1),
    0 0 52px rgba(209, 17, 59, 0.76);
}

.auto-call-button svg {
  width: 20px;
  height: 20px;
}

.auto-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin: 24px 0;
}
.auto-assurance-grid span {
  position: relative;
  padding: 14px 14px 14px 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}
.auto-assurance-grid span::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 21px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 0 5px rgba(209, 17, 59, 0.26),
    0 0 18px rgba(209, 17, 59, 0.8);
}

.auto-warning {
  max-width: 800px;
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--cta-lit-red);
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.auto-dispatch-card {
  position: relative;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.045)
    ),
    rgba(7, 11, 20, 0.9);
  box-shadow:
    0 32px 90px -34px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  overflow: hidden;
}
.auto-dispatch-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 17, 59, 0.42), transparent 68%);
}
.auto-card-topline {
  display: inline-flex;
  margin-bottom: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(209, 17, 59, 0.16);
  color: #ffffff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.auto-car-symbol {
  position: relative;
  height: 145px;
  border-radius: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.04)
    ),
    linear-gradient(135deg, #0b1120, #070b14);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
}
.auto-car-symbol::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 72px;
  transform: translate(-50%, -50%);
  border-radius: 48px 48px 30px 30px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 38px rgba(209, 17, 59, 0.34);
}
.auto-car-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 92px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 38px 38px 10px 10px;
  border: 3px solid rgba(209, 17, 59, 0.86);
}
.auto-car-symbol span {
  position: absolute;
  bottom: 39px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 8px rgba(209, 17, 59, 0.24);
}
.auto-car-symbol span:first-child {
  left: calc(50% - 84px);
}
.auto-car-symbol span:last-child {
  right: calc(50% - 84px);
}
.auto-dispatch-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.auto-dispatch-card p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 20px;
}
.auto-dispatch-card ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.auto-dispatch-card li {
  position: relative;
  padding-left: 24px;
  color: #ffffff;
  font-weight: 700;
}
.auto-dispatch-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cta-lit-red);
  box-shadow: 0 0 14px rgba(209, 17, 59, 0.74);
}

.auto-section {
  padding: clamp(70px, 9vw, 112px) 0;
}
.auto-section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 46px);
}
.auto-section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.auto-section-heading p {
  margin: 0 0 12px;
  color: var(--premium-red);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.auto-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5.4vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}
.auto-section-heading.light h2,
.auto-section-heading.light p {
  color: #ffffff;
}
.auto-section-heading.light p {
  color: rgba(255, 255, 255, 0.7);
}

/* Automotive problems clean image gallery section */
.auto-problems-clean {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(163, 15, 45, 0.08),
      transparent 28rem
    ),
    radial-gradient(
      circle at 15% 78%,
      rgba(7, 11, 20, 0.05),
      transparent 24rem
    ),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.auto-problems-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 11, 20, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 11, 20, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 16%,
    #000 84%,
    transparent
  );
}
.auto-problems-clean .wrap {
  position: relative;
  z-index: 1;
}
.auto-problems-clean-inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
.auto-problems-heading {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 54px);
}
.auto-problems-heading .auto-section-support {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.auto-placeholder-gallery {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  max-width: 960px;
  margin: 0 auto;
}
.auto-placeholder-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.auto-placeholder-row-bottom {
  display: flex;
  justify-content: center;
}
.auto-clean-image-placeholder {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(220px, 24vw, 280px);
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background: transparent;
  border: 1px solid rgba(202, 213, 226, 0.55);
  box-shadow: 0 28px 70px -48px rgba(7, 11, 20, 0.12);
}
.auto-clean-image-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.auto-clean-image-placeholder::before,
.auto-clean-image-placeholder::after {
  display: none !important;
}
.auto-placeholder-row-bottom .auto-clean-image-placeholder {
  width: calc((100% - clamp(20px, 3vw, 28px)) / 2);
  max-width: 466px;
}

@media (max-width: 720px) {
  .auto-placeholder-row {
    grid-template-columns: 1fr;
  }
  .auto-placeholder-row-bottom .auto-clean-image-placeholder {
    width: 100%;
    max-width: none;
  }
  .auto-clean-image-placeholder {
    min-height: 210px;
  }
}

.auto-services,
.auto-engineered {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(163, 15, 45, 0.08),
      transparent 26rem
    ),
    linear-gradient(180deg, #06080f 0%, #09111d 52%, #05070d 100%);
  color: #ffffff;
}
.auto-services .auto-section-heading {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 52px);
  text-align: center;
}
.auto-services .auto-section-heading p,
.auto-services .auto-section-heading h2,
.auto-services .auto-section-heading .auto-section-support {
  margin-left: auto;
  margin-right: auto;
}
.auto-services .auto-section-heading p {
  letter-spacing: 0.18em;
}
.auto-services-support {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
}
.auto-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  max-width: 1040px;
  margin: 0 auto;
}
.auto-service-grid article {
  grid-column: span 2;
  min-height: 420px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 54px -42px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.auto-service-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}
.auto-service-grid article:nth-child(5) {
  grid-column: 4 / span 2;
}
.auto-service-placeholder {
  position: relative;
  min-height: 208px;
  flex: 1 1 52%;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    ),
    linear-gradient(
      135deg,
      rgba(6, 8, 15, 0.96) 0%,
      rgba(10, 18, 31, 0.94) 100%
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.auto-service-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.auto-service-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.015)
    ),
    repeating-linear-gradient(
      135deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.035) 18px 20px
    );
}
.auto-service-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(163, 15, 45, 0.16),
      transparent 7rem
    ),
    linear-gradient(180deg, transparent 0%, rgba(5, 7, 13, 0.18) 100%);
}
.auto-service-card-body {
  min-height: 208px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.auto-service-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2.3vw, 28px);
  line-height: 1.12;
  letter-spacing: 0;
}
.auto-service-divider {
  width: 42px;
  height: 3px;
  margin: 16px auto 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cf183f, #99112e);
}
.auto-service-grid p {
  margin: 0;
  max-width: 220px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.auto-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}
.auto-check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.auto-check-list li {
  position: relative;
  padding: 18px 20px 18px 52px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 750;
  box-shadow: 0 14px 30px -26px rgba(7, 11, 20, 0.34);
}
.auto-check-list li::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--premium-red);
  box-shadow: 0 0 0 6px rgba(163, 15, 45, 0.12);
}
.auto-check-list.light li {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.auto-area {
  background: #ffffff;
}
.auto-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 0 auto 26px;
}
.auto-area-grid span {
  padding: 18px 18px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
  font-weight: 800;
  color: var(--ink);
}
.auto-search-box {
  max-width: 900px;
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 30px;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}
.auto-search-box h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 30px;
  letter-spacing: -0.04em;
}
.auto-search-box ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.auto-search-box li {
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--mono);
  font-size: 13px;
}
.auto-search-box p {
  margin: 18px 0 0;
  color: #ffffff;
  font-weight: 900;
}

.auto-emergency-cta {
  padding: clamp(58px, 8vw, 92px) 0;
  background: linear-gradient(135deg, #a30f2d, #7a0a20);
  color: #ffffff;
}
.auto-emergency-cta .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}
.auto-emergency-cta p {
  margin: 0 0 10px;
  font-family: var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.72);
}
.auto-emergency-cta h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}
.auto-emergency-cta span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}
.auto-emergency-panel {
  padding: 30px;
  border-radius: 30px;
  background: rgba(7, 11, 20, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.auto-emergency-panel h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.auto-emergency-panel ul {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding-left: 20px;
}
.auto-emergency-panel li {
  color: #ffffff;
  font-weight: 750;
}
.auto-emergency-panel .auto-call-button {
  width: 100%;
}

.auto-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.auto-faq-list .q {
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px -34px rgba(7, 11, 20, 0.38);
}
.auto-faq-list .q summary {
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
}
.auto-faq-list .ans {
  padding: 0 24px 22px;
  color: var(--muted);
}

/* Keep new automotive CTAs included in the permanent lighting system. */
.auto-call-button {
  will-change: transform, box-shadow;
}

@media (max-width: 1080px) {
  .auto-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }
  .auto-service-grid article,
  .auto-service-grid article:nth-child(4),
  .auto-service-grid article:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 880px) {
  .auto-hero-grid,
  .auto-split,
  .auto-emergency-cta .wrap {
    grid-template-columns: 1fr;
  }
  .auto-hero h1 {
    max-width: 100%;
  }
  .auto-assurance-grid,
  .auto-area-grid,
  .auto-search-box ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .auto-hero {
    padding-top: 54px;
  }
  .auto-service-grid {
    grid-template-columns: 1fr;
  }
  .auto-service-grid article {
    min-height: 0;
  }
  .auto-service-placeholder {
    min-height: 190px;
    flex-basis: auto;
  }
  .auto-service-card-body {
    min-height: 0;
    padding: 24px 20px;
  }
  .auto-call-button {
    width: 100%;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
  }
  .auto-dispatch-card {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auto-call-button {
    animation: none;
  }
}

/* ---------- AUTOMOTIVE INTRO HOMEPAGE-STYLE REFINEMENT ----------
   Matches the Automotive intro structure/form to the Lock Lab USA homepage hero
   while preserving Automotive-specific content and the professional /automotive/ URL. */
.automotive-page .auto-hero.auto-hero-home-style {
  background: #f8fafc;
  color: var(--ink);
  min-height: calc(
    100vh - var(--emergency-bar-height) - var(--site-header-height)
  );
  min-height: calc(
    100svh - var(--emergency-bar-height) - var(--site-header-height)
  );
  padding: 28px 0;
  display: flex;
  align-items: center;
  position: relative;
  isolation: auto;
}

.automotive-page .auto-hero.auto-hero-home-style::before {
  display: none;
}

.automotive-page .auto-hero.auto-hero-home-style .wrap {
  display: block;
  width: 100%;
  max-width: 980px;
  text-align: center;
}

.auto-hero-home-content {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.automotive-page .auto-hero.auto-hero-home-style .auto-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--premium-red);
}

.automotive-page .auto-hero.auto-hero-home-style .auto-eyebrow::before {
  display: none;
}

.automotive-page .auto-hero.auto-hero-home-style .auto-eyebrow svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.automotive-page .auto-hero.auto-hero-home-style h1.headline {
  max-width: 880px;
  margin: 0 auto 20px;
  font-family: var(--sans);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  color: var(--ink);
}

.automotive-page .auto-hero.auto-hero-home-style .auto-hero-lede {
  max-width: 650px;
  margin: 0 auto 10px;
  font-size: 21px;
  line-height: 1.42;
  color: #445066;
  font-weight: 500;
}

.automotive-page .auto-hero.auto-hero-home-style .auto-services-line {
  max-width: 760px;
  margin: 0 auto 26px;
  color: #445066;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.automotive-page .auto-hero.auto-hero-home-style .auto-services-line span {
  color: var(--premium-red);
  margin: 0 8px;
}

.automotive-page .auto-hero.auto-hero-home-style .auto-hero-ctas {
  justify-content: center;
  margin: 0 0 20px;
}

.automotive-page .auto-hero.auto-hero-home-style .btn {
  border-radius: 999px;
  min-width: 330px;
  min-height: 66px;
  justify-content: center;
  gap: 12px;
  padding: 0 34px;
  font-size: 24px;
  font-weight: 700;
}

.automotive-page .auto-hero.auto-hero-home-style .btn svg {
  width: 23px;
  height: 23px;
}

.automotive-page .auto-hero.auto-hero-home-style .auto-hero-trust {
  margin: 0;
}

.automotive-page .auto-hero.auto-hero-home-style .auto-hero-process {
  width: min(100%, 820px);
  margin-top: 42px;
}

@media (max-width: 680px) {
  .automotive-page .auto-hero.auto-hero-home-style {
    min-height: auto;
    padding: 56px 0 62px;
  }

  .automotive-page .auto-hero.auto-hero-home-style .auto-eyebrow {
    font-size: 16px;
    justify-content: center;
  }

  .automotive-page .auto-hero.auto-hero-home-style .auto-eyebrow svg {
    width: 22px;
    height: 22px;
  }

  .automotive-page .auto-hero.auto-hero-home-style h1.headline {
    font-size: clamp(38px, 12vw, 48px);
  }

  .automotive-page .auto-hero.auto-hero-home-style .auto-hero-lede {
    font-size: 18px;
  }

  .automotive-page .auto-hero.auto-hero-home-style .auto-services-line {
    font-size: 15px;
  }

  .automotive-page .auto-hero.auto-hero-home-style .btn {
    min-width: 0;
    width: 100%;
    min-height: 60px;
    font-size: 19px;
  }
}

/* ---------- PREMIUM INTRO BACKGROUND FIX ----------
   Applies only to the homepage intro and Automotive intro. */
.hero,
.automotive-page .auto-hero.auto-hero-home-style {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(209, 17, 59, 0.3) 0%,
      rgba(209, 17, 59, 0.13) 26%,
      transparent 46%
    ),
    radial-gradient(
      circle at 82% 12%,
      rgba(163, 15, 45, 0.26) 0%,
      rgba(163, 15, 45, 0.1) 28%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 105%,
      rgba(255, 255, 255, 0.09) 0%,
      transparent 42%
    ),
    linear-gradient(135deg, #070b14 0%, #0b1120 46%, #111827 100%) !important;
  color: #ffffff;
}

.hero::before,
.automotive-page .auto-hero.auto-hero-home-style::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  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),
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.06) 42%,
      transparent 72%
    );
  background-size:
    72px 72px,
    72px 72px,
    100% 100%;
  opacity: 0.68;
}

.hero .wrap,
.automotive-page .auto-hero.auto-hero-home-style .wrap {
  position: relative;
  z-index: 1;
}

.hero-eyebrow,
.automotive-page .auto-hero.auto-hero-home-style .auto-eyebrow {
  color: #ffffff !important;
  padding: 10px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 16px 38px -24px rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(10px);
}

.hero-eyebrow svg,
.automotive-page .auto-hero.auto-hero-home-style .auto-eyebrow svg,
.hero-trust svg,
.automotive-page .auto-hero.auto-hero-home-style .auto-hero-trust svg {
  color: #ff315d !important;
  filter: drop-shadow(0 0 12px rgba(209, 17, 59, 0.55));
}

.hero h1.headline,
.automotive-page .auto-hero.auto-hero-home-style h1.headline {
  color: #ffffff !important;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.hero .hero-lede,
.automotive-page .auto-hero.auto-hero-home-style .auto-hero-lede,
.automotive-page .auto-hero.auto-hero-home-style .auto-services-line,
.hero-trust,
.automotive-page .auto-hero.auto-hero-home-style .auto-hero-trust {
  color: rgba(245, 248, 252, 0.86) !important;
}

.automotive-page .auto-hero.auto-hero-home-style .auto-services-line span {
  color: #ff315d !important;
}

.hero-process,
.automotive-page .auto-hero.auto-hero-home-style .auto-hero-process {
  color: #ffffff !important;
}

.hero-process-item,
.automotive-page .auto-hero.auto-hero-home-style .hero-process-item {
  border-right-color: rgba(255, 255, 255, 0.16) !important;
}

.hero-process-number,
.automotive-page .auto-hero.auto-hero-home-style .hero-process-number {
  background: rgba(209, 17, 59, 0.16) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 6px rgba(209, 17, 59, 0.08),
    0 16px 32px -20px rgba(0, 0, 0, 0.8);
}

.hero-process-copy strong,
.automotive-page .auto-hero.auto-hero-home-style .hero-process-copy strong {
  color: #ffffff !important;
}

.hero-process-copy small,
.automotive-page .auto-hero.auto-hero-home-style .hero-process-copy small {
  color: rgba(245, 248, 252, 0.78) !important;
}

@media (max-width: 680px) {
  .hero-eyebrow,
  .automotive-page .auto-hero.auto-hero-home-style .auto-eyebrow {
    padding: 9px 14px !important;
  }

  .hero-process-item,
  .automotive-page .auto-hero.auto-hero-home-style .hero-process-item {
    border-right: 0 !important;
    border-bottom-color: rgba(255, 255, 255, 0.14) !important;
  }
}

/* Homepage/standard nav More dropdown */
nav.menu .nav-more {
  position: relative;
  display: inline-flex;
  align-items: center;
}
nav.menu .nav-more-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
nav.menu .nav-more-trigger:hover,
nav.menu .nav-more:focus-within .nav-more-trigger {
  color: var(--amber-deep);
}
nav.menu .nav-more-trigger::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 .nav-more:hover .nav-more-trigger::after,
nav.menu .nav-more:focus-within .nav-more-trigger::after {
  transform: scaleX(1);
}
.more-arrow {
  font-size: 8px;
  line-height: 1;
  transform: translateY(1px);
}
.nav-more-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: 150px;
  padding: 8px;
  border: 1px solid rgba(217, 225, 236, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px -20px rgba(7, 11, 20, 0.34);
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
  z-index: 1005;
}
.nav-more-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
nav.menu .nav-more:hover .nav-more-menu,
nav.menu .nav-more:focus-within .nav-more-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 0s;
}
nav.menu .nav-more-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
nav.menu .nav-more-menu a::after {
  display: none;
}
nav.menu .nav-more-menu a:hover {
  color: var(--amber-deep);
  background: rgba(163, 15, 45, 0.08);
}
.mobile-menu-label {
  padding: 14px 20px 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--soft);
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-sub-link {
  padding-left: 32px;
}

/* Match More trigger to existing desktop nav link sizing */
nav.menu .nav-more-trigger {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  nav.menu .nav-more-trigger {
    font-size: 16px;
  }
}

/* ---------- Automotive compact sizing + mobile row preservation ---------- */
.automotive-page {
  overflow-x: hidden;
}

.automotive-page .wrap {
  padding-left: clamp(12px, 4vw, 24px);
  padding-right: clamp(12px, 4vw, 24px);
}

.automotive-page .auto-hero.auto-hero-home-style {
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(44px, 6vw, 76px);
}

.automotive-page .auto-hero.auto-hero-home-style h1.headline {
  font-size: clamp(38px, 5.6vw, 70px);
  line-height: 0.96;
}

.automotive-page .auto-hero.auto-hero-home-style .auto-hero-lede {
  font-size: clamp(17px, 2vw, 21px);
}

.automotive-page .auto-section {
  padding: clamp(44px, 6vw, 72px) 0;
}

.automotive-page .auto-section-heading {
  max-width: 680px;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.automotive-page .auto-section-heading p {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.automotive-page .auto-section-heading h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.automotive-page .auto-section-support {
  display: block;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
}

.automotive-page .auto-problems-clean-inner {
  max-width: 840px;
}

.automotive-page .auto-problems-heading {
  max-width: 650px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.automotive-page .auto-problems-heading .auto-section-support {
  max-width: 600px;
}

/* Automotive page text responsiveness */
.automotive-page .auto-section-heading {
  padding: 0 0.2rem;
}

.automotive-page .auto-section-heading h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.12;
}

.automotive-page .auto-section-support {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
}

.automotive-page .auto-service-grid h3 {
  font-size: clamp(22px, 2.5vw, 28px);
}

.automotive-page .auto-dispatch-card h2,
.automotive-page .auto-emergency-cta h2 {
  font-size: clamp(30px, 4vw, 36px);
}

.automotive-page .auto-search-box h3 {
  font-size: clamp(22px, 3vw, 26px);
}

@media (max-width: 880px) {
  .automotive-page .auto-section-heading h2 {
    font-size: clamp(28px, 5.2vw, 44px);
    line-height: 1.18;
  }
  .automotive-page .auto-section-support {
    font-size: clamp(15px, 1.9vw, 18px);
  }
  .automotive-page .auto-service-grid h3 {
    font-size: clamp(20px, 3.1vw, 26px);
  }
  .automotive-page .auto-dispatch-card h2,
  .automotive-page .auto-emergency-cta h2 {
    font-size: clamp(28px, 5vw, 34px);
  }
  .automotive-page .auto-search-box h3 {
    font-size: 22px;
  }
}

@media (max-width: 620px) {
  .automotive-page .auto-section-heading h2 {
    font-size: clamp(26px, 6vw, 38px);
    line-height: 1.25;
  }
  .automotive-page .auto-section-support {
    font-size: 15px;
  }
  .automotive-page .auto-service-grid h3 {
    font-size: clamp(20px, 4.2vw, 24px);
  }
  .automotive-page .auto-dispatch-card h2,
  .automotive-page .auto-emergency-cta h2 {
    font-size: clamp(28px, 6vw, 32px);
  }
  .automotive-page .auto-search-box h3 {
    font-size: 20px;
  }
}

.automotive-page .auto-placeholder-gallery {
  max-width: 760px;
  gap: clamp(14px, 2vw, 20px);
}

.automotive-page .auto-placeholder-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.automotive-page .auto-clean-image-placeholder {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  box-shadow: 0 22px 52px -42px rgba(7, 11, 20, 0.78);
}

.automotive-page .auto-clean-image-placeholder::before {
  inset: 12px;
  border-radius: 14px;
}

.automotive-page .auto-placeholder-row-bottom .auto-clean-image-placeholder {
  width: calc((100% - clamp(14px, 2vw, 20px)) / 2);
  max-width: 370px;
}

.automotive-page .auto-services .auto-section-heading {
  max-width: 660px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.automotive-page .auto-services-support {
  max-width: 570px;
}

.automotive-page .auto-service-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  max-width: 880px;
}

.automotive-page .auto-service-grid article {
  grid-column: span 2;
  min-height: 330px;
  border-radius: 20px;
}

.automotive-page .auto-service-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.automotive-page .auto-service-grid article:nth-child(5) {
  grid-column: 4 / span 2;
}

.automotive-page .auto-service-placeholder {
  min-height: 150px;
  flex: 0 0 46%;
}

.automotive-page .auto-service-placeholder::before {
  inset: 12px;
  border-radius: 13px;
}

.automotive-page .auto-service-card-body {
  min-height: 150px;
  padding: 18px 16px 20px;
}

.automotive-page .auto-service-grid h3 {
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.12;
}

.automotive-page .auto-service-divider {
  width: 34px;
  height: 2px;
  margin: 11px auto 12px;
}

.automotive-page .auto-service-grid p {
  max-width: 190px;
  font-size: 14px;
  line-height: 1.42;
}

@media (max-width: 720px) {
  .automotive-page .auto-hero.auto-hero-home-style {
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .automotive-page .auto-hero.auto-hero-home-style h1.headline {
    font-size: clamp(34px, 10vw, 44px);
  }

  .automotive-page .auto-section {
    padding: 38px 0;
  }

  .automotive-page .auto-section-heading {
    margin-bottom: 18px;
  }

  .automotive-page .auto-section-heading h2 {
    font-size: clamp(25px, 7.4vw, 34px);
    line-height: 1.06;
    letter-spacing: -0.035em;
  }

  .automotive-page .auto-section-heading p {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .automotive-page .auto-section-support {
    font-size: 14px;
    line-height: 1.45;
  }

  .automotive-page .auto-placeholder-gallery {
    max-width: 440px;
    gap: 10px;
  }

  .automotive-page .auto-placeholder-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .automotive-page .auto-placeholder-row-bottom .auto-clean-image-placeholder {
    width: calc((100% - 10px) / 2);
    max-width: none;
  }

  .automotive-page .auto-clean-image-placeholder {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .automotive-page .auto-clean-image-placeholder::before {
    inset: 8px;
    border-radius: 9px;
  }
}

@media (max-width: 620px) {
  .automotive-page .auto-service-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 7px;
    max-width: 100%;
  }

  .automotive-page .auto-service-grid article {
    grid-column: span 2;
    min-height: 184px;
    border-radius: 14px;
  }

  .automotive-page .auto-service-grid article:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .automotive-page .auto-service-grid article:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .automotive-page .auto-service-placeholder {
    min-height: 72px;
    flex: 0 0 72px;
  }

  .automotive-page .auto-service-placeholder::before {
    inset: 6px;
    border-radius: 8px;
  }

  .automotive-page .auto-service-card-body {
    min-height: 104px;
    padding: 8px 4px 9px;
  }

  .automotive-page .auto-service-grid h3 {
    font-size: clamp(10.5px, 2.75vw, 12.5px);
    line-height: 1.08;
    letter-spacing: -0.015em;
  }

  .automotive-page .auto-service-divider {
    width: 22px;
    height: 2px;
    margin: 6px auto 7px;
  }

  .automotive-page .auto-service-grid p {
    max-width: 82px;
    font-size: clamp(9px, 2.35vw, 10.5px);
    line-height: 1.25;
  }
}

@media (max-width: 380px) {
  .automotive-page .wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  .automotive-page .auto-placeholder-gallery,
  .automotive-page .auto-placeholder-row,
  .automotive-page .auto-service-grid {
    gap: 6px;
  }

  .automotive-page .auto-placeholder-row-bottom .auto-clean-image-placeholder {
    width: calc((100% - 6px) / 2);
  }

  .automotive-page .auto-service-grid article {
    min-height: 176px;
  }

  .automotive-page .auto-service-placeholder {
    min-height: 66px;
    flex-basis: 66px;
  }
}
