
/* =========================================================================
   OAK LAWN AUTO - Auto Repair for All Makes and Models
   Shared stylesheet. Dark & Premium visual language.

   ─────────────────────────────────────────────────────────────────────────
   DESIGN SYSTEM TOKENS - swap these values for your own brand.
   Everything below the token block references these variables, so changing
   a value here re-themes the entire site.
   ========================================================================= */

:root {
  /* ---- Brand & accent ------------------------------------------------- */
  --brand-red:        #e22718;   /* primary accent - matches the logo */
  --brand-red-dark:   #b31d12;   /* pressed / hover state for red CTAs */
  --brand-blue:       #1c69d4;   /* heritage performance blue */
  --brand-blue-light: #0066b1;
  --accent-stripe: linear-gradient(
      90deg,
      var(--brand-blue-light) 0%,  var(--brand-blue-light) 33.33%,
      var(--brand-blue)       33.33%, var(--brand-blue)    66.66%,
      var(--brand-red)        66.66%, var(--brand-red)     100%);

  /* ---- Surfaces ------------------------------------------------------- */
  --canvas:           #000000;   /* page floor - true black */
  --surface-soft:     #0d0d0d;
  --surface-card:     #1a1a1a;
  --surface-elevated: #262626;
  --carbon:           #2b2b2b;

  /* ---- Hairlines ------------------------------------------------------ */
  --hairline:         #3c3c3c;
  --hairline-strong:  #262626;

  /* ---- Text ----------------------------------------------------------- */
  --text-strong:      #ffffff;
  --text-body:        #bbbbbb;
  --text-lead:        #e6e6e6;
  --text-muted:       #7e7e7e;

  /* ---- Typography ----------------------------------------------------- */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-display: 700;
  --tracking-display: -0.5px;
  --tracking-label: 1.5px;
  --tracking-nav: 0.5px;

  /* ---- Spacing (4px base) --------------------------------------------- */
  --space-xxs: 4px;
  --space-xs:  8px;
  --space-sm:  12px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-xxl: 64px;
  --space-section: 96px;
  --container-max: 1400px;

  /* ---- Radius --------------------------------------------------------- */
  --radius-none: 0px;     /* dominant - sharp, engineered */
  --radius-sm:   4px;
  --radius-full: 9999px;  /* circular controls only */
}

/* =========================================================================
   RESET & BASE
   ========================================================================= */

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

* { margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-weight: var(--weight-light);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-body);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

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

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

ul, ol { list-style: none; }

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

/* Skip link for keyboard / screen-reader users */
.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -100px;
  z-index: 200;
  background: var(--text-strong);
  color: #000;
  padding: var(--space-sm) var(--space-md);
  font-weight: var(--weight-display);
  font-size: 13px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  transition: top .15s ease;
}
.skip-link:focus { top: var(--space-md); }

/* =========================================================================
   TYPOGRAPHY HELPERS
   ========================================================================= */

.display {
  font-weight: var(--weight-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  color: var(--text-strong);
  line-height: 1.02;
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: var(--weight-display);
  font-size: 13px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 4px;
  background: var(--accent-stripe);
}

.lead {
  font-size: clamp(17px, 2.1vw, 20px);
  font-weight: var(--weight-light);
  color: var(--text-lead);
  line-height: 1.55;
  max-width: 62ch;
  text-wrap: pretty;
}

.text-red { color: var(--brand-red); }

/* M tricolor stripe divider */
.m-stripe {
  height: 4px;
  width: 120px;
  background: var(--accent-stripe);
  border: 0;
}
.m-stripe--full { width: 100%; }

/* =========================================================================
   LAYOUT
   ========================================================================= */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 3vw, 48px);
}

.section { padding-block: clamp(56px, 9vw, var(--space-section)); }
.section--tight { padding-block: clamp(40px, 6vw, var(--space-xxl)); }
.section--soft { background: var(--surface-soft); }
/* Tighter gap between Why Drivers Choose Us and What We Do */
.section--join-bottom { padding-bottom: clamp(24px, 3vw, 48px); }
.section--join-top { padding-top: clamp(24px, 3vw, 48px); }

.section-head { max-width: 70ch; margin-bottom: var(--space-xl); }
.section-head .display { margin-top: var(--space-md); }
.section-head .lead { margin-top: var(--space-md); }

.grid { display: grid; gap: var(--space-lg); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.center-narrow { max-width: 760px; margin-inline: auto; text-align: center; }
.center-narrow .lead { margin-inline: auto; }

/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  height: 52px;
  padding-inline: var(--space-xl);
  border: 1px solid var(--text-strong);
  background: transparent;
  color: var(--text-strong);
  font-weight: var(--weight-display);
  font-size: 14px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  border-radius: var(--radius-none);
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--text-strong); color: #000; }

.btn--solid { background: var(--text-strong); color: #000; }
.btn--solid:hover { background: var(--brand-red); border-color: var(--brand-red); color: #fff; }

.btn--ghost { border-color: var(--hairline); color: var(--text-strong); }
.btn--ghost:hover { background: transparent; border-color: var(--text-strong); color: var(--text-strong); }

.btn--red { background: var(--brand-red); border-color: var(--brand-red); color: #fff; }
.btn--red:hover { background: var(--brand-red-dark); border-color: var(--brand-red-dark); color: #fff; }

.btn--sm { height: 44px; padding-inline: var(--space-lg); font-size: 13px; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-md); }

/* Text link with chevron */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: var(--weight-display);
  font-size: 13px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-strong);
  transition: gap .16s ease, color .16s ease;
}
.text-link::after { content: "→"; transition: transform .16s ease; }
.text-link:hover { color: var(--brand-red); }
.text-link:hover::after { transform: translateX(4px); }

/* =========================================================================
   HEADER / NAV  (CSS-only mobile menu via checkbox)
   ========================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline-strong);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  height: 116px;
  transition: height .3s ease;
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 96px; width: auto; max-width: 300px; object-fit: contain; transition: height .3s ease; }
.site-header.is-shrunk .brand img { height: 60px; }
.site-header.is-shrunk .nav { height: 80px; }

.nav-toggle, .nav-toggle-label { display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav-links a {
  font-weight: var(--weight-medium);
  font-size: 14px;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  color: var(--text-body);
  padding-block: var(--space-xs);
  border-bottom: 2px solid transparent;
  transition: color .16s ease, border-color .16s ease;
}
.nav-links a:hover { color: var(--text-strong); }
.nav-links a[aria-current="page"] {
  color: var(--text-strong);
  border-bottom-color: var(--brand-red);
}

.nav-cta { display: inline-flex; align-items: center; gap: var(--space-md); }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: var(--weight-display);
  font-size: 14px;
  letter-spacing: var(--tracking-nav);
  color: var(--text-strong);
  white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; flex: none; }

/* =========================================================================
   HERO  (cinematic CSS band - no image dependency)
   ========================================================================= */

.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(28,105,212,0.20), transparent 55%),
    radial-gradient(90% 80% at 12% 92%, rgba(226,39,24,0.16), transparent 55%),
    linear-gradient(180deg, #0b0b0c 0%, #050505 55%, #000 100%);
  border-bottom: 1px solid var(--hairline-strong);
}
/* technical grid overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hairline-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline-strong) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.25;
  mask-image: radial-gradient(circle at 60% 40%, #000, transparent 80%);
}
/* bottom legibility scrim */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-block: clamp(48px, 8vw, 96px); }
.hero h1 {
  font-size: clamp(44px, 8vw, 92px);
  margin-block: var(--space-md) var(--space-lg);
}
.hero .lead { color: var(--text-lead); }
.hero .btn-row { margin-top: var(--space-xl); }

/* compact page hero for interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 12vw, 140px) clamp(48px, 7vw, 88px);
  background:
    radial-gradient(100% 120% at 85% 0%, rgba(28,105,212,0.16), transparent 55%),
    radial-gradient(80% 100% at 0% 100%, rgba(226,39,24,0.12), transparent 55%),
    linear-gradient(180deg, #0a0a0b, #000);
  border-bottom: 1px solid var(--hairline-strong);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hairline-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline-strong) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at 75% 20%, #000, transparent 75%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(38px, 6.5vw, 72px);
  margin-block: var(--space-md) var(--space-md);
}
.breadcrumb {
  font-size: 12px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}
.breadcrumb a:hover { color: var(--text-strong); }

/* =========================================================================
   CARDS
   ========================================================================= */

.card {
  background: var(--surface-card);
  padding: var(--space-xl);
  border-radius: var(--radius-none);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-elevated);
  color: var(--text-strong);
  margin-bottom: var(--space-lg);
}
.icon-badge svg { width: 28px; height: 28px; stroke: currentColor; }

.card h3 {
  font-weight: var(--weight-display);
  font-size: 22px;
  letter-spacing: -0.2px;
  color: var(--text-strong);
  margin-bottom: var(--space-sm);
}
.card p { color: var(--text-body); margin-bottom: var(--space-md); }
.card .text-link { margin-top: auto; }

/* numbered service card variant */
.card--index .card-index {
  font-weight: var(--weight-display);
  font-size: 14px;
  letter-spacing: var(--tracking-label);
  color: var(--brand-red);
  margin-bottom: var(--space-md);
}

/* photo card */
.photo-card {
  background: var(--surface-card);
  display: flex;
  flex-direction: column;
}
.photo-card .frame { aspect-ratio: 16 / 10; background: var(--surface-elevated); overflow: hidden; }
.photo-card .frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-card .body { padding: var(--space-lg) var(--space-lg) var(--space-xl); }
.photo-card .tag {
  font-weight: var(--weight-display);
  font-size: 12px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-muted);
}
.photo-card h3 {
  font-weight: var(--weight-display);
  font-size: 22px;
  color: var(--text-strong);
  margin-block: var(--space-sm);
}

/* =========================================================================
   STATS BAND
   ========================================================================= */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: var(--space-xl) var(--space-lg);
  border-left: 1px solid var(--hairline-strong);
}
.stat:first-child { border-left: 0; }
.stat .num {
  font-weight: var(--weight-display);
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: var(--tracking-display);
  color: var(--text-strong);
  line-height: 1;
}
.stat .num .text-red { color: var(--brand-red); }
.stat .label {
  margin-top: var(--space-sm);
  font-size: 12px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero tagline under the H1 */
.hero-tagline {
  margin-top: var(--space-md);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: var(--space-md);
}

/* Split hero: copy left, rounded photo box right */
.hero--split { align-items: center; min-height: 0; }
.hero--split .container { padding-block: clamp(40px, 5vw, 72px) clamp(40px, 4.5vw, 64px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero .hero-title {
  font-weight: var(--weight-display);
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--text-strong);
  margin-block: var(--space-md) var(--space-sm);
}
.hero-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #161616 0%, #0a0a0a 60%, #1a0605 100%);
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active { opacity: 1; }
/* Hero slide shown in full (not cropped) over a soft blurred backdrop */
.hero-slide--fit { display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slide--fit .hero-slide__bg { position: absolute; inset: -30px; background-size: cover; background-position: center; filter: blur(22px) brightness(0.55); transform: scale(1.1); }
.hero-media .hero-slide--fit img { position: relative; width: calc(100% - 32px); height: auto; max-height: calc(100% - 32px); object-fit: contain; border-radius: 16px; box-shadow: 0 16px 40px rgba(0,0,0,0.55); }

.hero-dots {
  position: absolute; right: 18px; bottom: 30px;
  display: flex; gap: 8px; z-index: 2;
}
.hero-dot {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.55); cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: background .3s, transform .3s;
}
.hero-dot.is-active { background: #ffffff; transform: scale(1.25); }
.hero-media__pin { z-index: 2; }
@media (min-width: 901px) {
  .hero-copy .btn-row { flex-wrap: nowrap; }
  .hero-copy .btn-row .btn { padding-inline: 28px; white-space: nowrap; }
}
.hero-media__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #5a5a5a; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
}
.hero-media__pin {
  position: absolute; left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffffff; color: #111111;
  font-size: 15px; font-weight: 600;
  padding: 10px 18px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.hero-media__pin svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 4 / 3; }
}

/* Rounded hero buttons */
.hero-copy .btn { border-radius: 999px; }

/* Pill buttons + blue variant */
.btn--pill { border-radius: 999px; }
.btn--blue { background: #1c69d4; border-color: #1c69d4; color: #fff; text-transform: none; letter-spacing: 0.2px; font-size: 16px; }
.btn--blue:hover { background: #1552a8; border-color: #1552a8; color: #fff; }
.btn--blue svg { width: 18px; height: 18px; }

/* Centered section headings */
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }

/* Centered process steps */
.timeline--center .tl-step { text-align: center; }
.timeline--center .tl-step .tl-num { left: 30%; }

/* Why drivers choose us: photo left, copy right */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.why-media {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.why-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 70%; display: block; }
.why-title {
  font-weight: var(--weight-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--text-strong);
  margin: var(--space-md) 0;
  text-wrap: balance;
}
.why-lead { color: var(--text-lead); font-size: 17px; line-height: 1.65; }
.check-list { display: grid; gap: 14px; margin: var(--space-lg) 0 var(--space-xl); }
.check-list li { display: grid; grid-template-columns: 20px 1fr; gap: 14px; color: var(--text-lead); font-size: 16px; line-height: 1.6; }
.check-list li svg { width: 20px; height: 20px; color: var(--brand-red); margin-top: 3px; }
.check-list strong { color: var(--text-strong); font-weight: 700; }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   SPECIALS + REVIEWS PAGES
   ========================================================================= */
.page-hero--compact { padding-block: clamp(56px, 8vw, 96px) clamp(40px, 5vw, 64px); }
.page-title {
  font-weight: var(--weight-display);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: var(--text-strong);
  margin: var(--space-md) 0;
  text-wrap: balance;
}
.page-hero .page-title { font-size: clamp(30px, 3.8vw, 48px); }
.page-crosslink { margin-top: var(--space-xl); text-align: center; color: var(--text-body); }
.page-crosslink a { color: var(--brand-red); text-decoration: underline; text-underline-offset: 3px; }
.btn--sm svg, .btn svg { width: 16px; height: 16px; }

/* Platform cards */
.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); margin-top: var(--space-xl); }
.platform-card {
  background: var(--surface-card); border: 1px solid var(--hairline-strong); border-radius: 18px;
  padding: var(--space-lg); display: flex; flex-direction: column; gap: 8px;
}
.platform-icon {
  width: 40px; height: 40px; border-radius: 10px; background: #fff; color: var(--brand-red);
  display: inline-flex; align-items: center; justify-content: center;
}
.platform-icon svg { width: 20px; height: 20px; }
.platform-card h3 { color: var(--text-strong); font-size: 17px; font-weight: 700; margin-top: 6px; }
.platform-card p { color: var(--text-body); font-size: 14px; flex: 1; }
.platform-card .btn { margin-top: var(--space-sm); width: 100%; }

/* Review cards */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.review-card {
  background: var(--surface-card); border: 1px solid var(--hairline-strong); border-radius: 20px;
  padding: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm); margin: 0;
}
.review-card .stars { color: #f5b301; display: inline-flex; gap: 3px; }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card blockquote { color: var(--text-lead); font-size: 15px; line-height: 1.6; margin: 0; flex: 1; }
.review-card figcaption { color: var(--text-strong); font-weight: 700; font-size: 14px; }
.review-link { color: var(--brand-red); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.review-link svg { width: 14px; height: 14px; }
.review-link:hover { text-decoration: underline; }

/* Coupons */
.coupon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.coupon {
  background: linear-gradient(180deg, #1a0605 0%, #120404 100%);
  border: 2px dashed rgba(255,255,255,0.85); border-radius: 18px;
  padding: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm);
}
.coupon-top { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-md); }
.coupon-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.coupon-tag, .coupon-exp { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.coupon-tag { background: var(--brand-red); color: #fff; }
.coupon-exp { background: #f5b301; color: #111; }
.coupon-logo { height: 58px; width: auto; flex: none; }
.coupon-title { color: var(--text-strong); font-size: 22px; font-weight: 700; margin-top: var(--space-sm); }
.coupon-price strong { color: var(--brand-red); font-size: 30px; font-weight: 800; }
.coupon-price span { color: var(--text-lead); font-size: 15px; }
.coupon-list { background: rgba(255,255,255,0.05); border-radius: 12px; padding: var(--space-md); display: grid; gap: 8px; }
.coupon-list li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; color: var(--text-strong); font-size: 14px; }
.coupon-list svg { width: 18px; height: 18px; color: var(--brand-red); margin-top: 1px; }
.coupon-fine { color: #d4d4d4; font-size: 12.5px; line-height: 1.55; }
.coupon-redeem { color: var(--brand-red); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 6px; border-top: 1px dashed rgba(255,255,255,0.4); padding-top: var(--space-sm); margin-top: auto; }
.coupon-redeem svg { width: 14px; height: 14px; }
.coupon-print { width: 100%; }
.coupon-disclaimer { margin-top: var(--space-xl); color: var(--text-muted); font-size: 13px; }
.coupon-disclaimer a { color: var(--text-lead); text-decoration: underline; }

@media (max-width: 1024px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .platform-grid, .review-grid, .coupon-grid { grid-template-columns: 1fr; }
}

/* Print only the chosen coupon, on a single page */
#print-area { display: none; }
@media print {
  @page { size: letter portrait; margin: 0.5in; }
  body.printing-coupon > *:not(#print-area) { display: none !important; }
  body.printing-coupon { background: #fff !important; margin: 0 !important; padding: 0 !important; }
  body.printing-coupon #print-area { display: block !important; }
  #print-area .coupon {
    background: #fff !important; color: #111 !important;
    border: 2px dashed #111 !important; max-width: 7in; margin: 0 auto;
    break-inside: avoid; page-break-inside: avoid;
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
  #print-area .coupon-title, #print-area .coupon-list li, #print-area .coupon-price span { color: #111 !important; }
  #print-area .coupon-list { background: #f3f3f3 !important; }
  #print-area .coupon-fine { color: #555 !important; }
  #print-area .coupon-redeem { border-top-color: #999 !important; }
  #print-area .coupon-logo { background: #000 !important; border-radius: 10px; padding: 6px 10px; }
  #print-area .coupon-print { display: none !important; }
}

/* Nav fits 7 links on laptop widths */
.nav-links { gap: 22px; }
.nav-menu { gap: var(--space-lg); }
.brand img { max-width: 240px; }
@media (min-width: 861px) and (max-width: 1320px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12.5px; letter-spacing: 0.3px; }
  .nav-phone { display: none; }
  .brand img { height: 76px; }
}
@media (min-width: 861px) and (max-width: 1040px) {
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 11.5px; }
  .nav-cta .btn--sm { padding-inline: 14px; font-size: 11px; }
  .brand img { height: 60px; max-width: 170px; }
}

/* Areas we serve pills */
.area-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 1100px; margin: 0 auto; padding: 0; list-style: none; }
.area-grid li { flex: 0 1 200px; }
.area-pill {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px;
  background: var(--surface-card); border: 1px solid var(--hairline);
  color: var(--text-strong); font-weight: 600; font-size: 15px;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.area-pill svg { width: 16px; height: 16px; color: var(--brand-red); flex: none; }
.area-pill:hover { border-color: var(--brand-red); background: #1f0907; transform: translateY(-2px); }
@media (max-width: 480px) { .area-grid li { flex-basis: calc(50% - 7px); } .area-pill { font-size: 13px; padding: 10px 12px; } }

/* =========================================================================
   SERVICES GRID + SERVICE DETAIL PAGES
   ========================================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.svc-card { display: flex; flex-direction: column; background: var(--surface-card); border: 1px solid var(--hairline-strong); border-radius: 18px; overflow: hidden; transition: transform .18s ease, border-color .18s ease; }
.svc-card:hover { transform: translateY(-4px); border-color: var(--brand-red); }
.svc-card__media { height: 150px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85);
  background: radial-gradient(70% 90% at 70% 30%, rgba(226,39,24,0.35), transparent 70%), radial-gradient(60% 80% at 20% 90%, rgba(28,105,212,0.25), transparent 70%), #0b0b0c; }
.svc-card__media svg { width: 72px; height: 72px; overflow: visible; }
.svc-card__media svg * { vector-effect: non-scaling-stroke; stroke-width: 2.4px; }
.svc-card__body { padding: var(--space-lg); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.svc-card__badge { width: 36px; height: 36px; border-radius: 10px; background: rgba(226,39,24,0.12); color: var(--brand-red); display: inline-flex; align-items: center; justify-content: center; }
.svc-card__badge svg { width: 18px; height: 18px; }
.svc-card h3 { color: var(--text-strong); font-size: 18px; font-weight: 700; margin-top: 4px; }
.svc-card p { color: var(--text-body); font-size: 14px; line-height: 1.55; flex: 1; }
.svc-card__more { color: var(--brand-red); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; }
.svc-card__more svg { width: 14px; height: 14px; }

.svc-hero { background: #000; border-bottom: 1px solid var(--hairline-strong); padding-block: clamp(56px, 8vw, 104px); }
.svc-hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.svc-eyebrow { display: flex; align-items: center; gap: 12px; color: var(--brand-red); font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; }
.svc-eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--brand-red); }
.svc-title { font-weight: var(--weight-display); text-transform: uppercase; color: var(--text-strong); font-size: clamp(34px, 4.4vw, 58px); line-height: 1.02; letter-spacing: -0.5px; margin: var(--space-md) 0; text-wrap: balance; }
.svc-hero .lead { max-width: 56ch; }
.svc-hero .btn { border-radius: 999px; }
.svc-perks { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: var(--space-lg); padding: 0; list-style: none; }
.svc-perks li { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.svc-perks li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-red); }
.svc-banner { position: relative; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; border: 1px solid var(--hairline);
  background: radial-gradient(60% 90% at 78% 45%, rgba(226,39,24,0.30), transparent 70%), radial-gradient(50% 70% at 10% 100%, rgba(28,105,212,0.18), transparent 70%), linear-gradient(135deg, #151515, #050505);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.svc-banner__art { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); width: 36%; aspect-ratio: 1 / 1; max-height: 74%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.9); }
.svc-banner__art svg { width: 100%; height: 100%; overflow: visible; filter: drop-shadow(0 0 22px rgba(226,39,24,0.45)); }
.svc-banner__art svg * { vector-effect: non-scaling-stroke; stroke-width: 5px; }
.svc-banner__copy { position: absolute; inset: 0; padding: clamp(18px, 3vw, 32px); display: flex; flex-direction: column; justify-content: center; gap: 6px; max-width: 58%; }
.svc-banner__kicker { color: var(--brand-red); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-size: clamp(13px, 1.4vw, 18px); }
.svc-banner__name { color: #fff; font-weight: 900; font-size: clamp(22px, 2.9vw, 40px); line-height: 0.98; letter-spacing: -1px; }
.svc-banner__name--long { font-size: clamp(20px, 2.2vw, 30px); letter-spacing: -0.5px; }
.svc-banner__tag { color: #e6e6e6; font-size: clamp(13px, 1.3vw, 17px); font-weight: 600; }
.svc-banner__pin { margin-top: 10px; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(0,0,0,0.65); border: 1px solid var(--hairline); color: #fff; font-size: 13px; font-weight: 600; }
.svc-banner__pin i { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-red); }

.svc-body { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.svc-body article p { color: var(--text-lead); font-size: 16px; line-height: 1.7; margin-bottom: var(--space-md); }
.svc-h2 { color: var(--text-strong); font-weight: 700; font-size: clamp(26px, 2.8vw, 34px); line-height: 1.15; margin-bottom: var(--space-md); }
.svc-h3 { color: var(--text-strong); font-weight: 700; font-size: 20px; margin: var(--space-lg) 0 0; }
.svc-body .check-list { margin-bottom: 0; }
.svc-related { position: sticky; top: 110px; background: var(--surface-card); border: 1px solid var(--hairline-strong); border-radius: 18px; padding: var(--space-lg); }
.svc-related h3 { color: var(--text-strong); font-size: 18px; font-weight: 700; margin-bottom: var(--space-md); }
.svc-related ul { display: grid; gap: 10px; padding: 0; list-style: none; margin: 0 0 var(--space-lg); }
.svc-related li a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid var(--hairline); border-radius: 10px; color: var(--text-strong); font-size: 14px; font-weight: 600; transition: border-color .16s ease, background .16s ease; }
.svc-related li a:hover { border-color: var(--brand-red); background: #1f0907; }
.svc-related li svg { width: 16px; height: 16px; color: var(--brand-red); flex: none; }
.svc-related__note { margin-top: var(--space-md); color: var(--text-body); font-size: 13px; }
.svc-related__note a { color: var(--brand-red); text-decoration: underline; }

@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .svc-hero__grid, .svc-body { grid-template-columns: 1fr; } .svc-related { position: static; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* Military & veteran discount pop up */
.promo-pop {
  position: fixed; right: 24px; bottom: 24px; z-index: 1000;
  width: min(360px, calc(100vw - 32px)); max-height: calc(100vh - 48px); overflow-y: auto;
  background: #141414; border: 2px solid var(--brand-red); border-radius: 20px;
  padding: 22px 22px 18px; box-shadow: 0 24px 60px rgba(0,0,0,0.65);
  opacity: 0; transform: translateY(48px) scale(0.96); filter: blur(6px);
  transform-origin: 50% 100%;
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1), filter .8s cubic-bezier(.16,1,.3,1);
}
.promo-pop.is-open { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.promo-pop.is-closing { transition-duration: .45s; transition-timing-function: cubic-bezier(.4,0,1,1); transform: translateY(24px) scale(0.98); }
@media (prefers-reduced-motion: reduce) {
  .promo-pop, .promo-pop.is-closing { transition: opacity .3s ease; transform: none; filter: none; }
}
.promo-pop[hidden] { display: none; }
.promo-pop__close {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--hairline); background: #1f1f1f; color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.promo-pop__close svg { width: 16px; height: 16px; }
.promo-pop__close:hover { border-color: var(--brand-red); }
.promo-pop__badges { display: flex; flex-wrap: wrap; gap: 8px; padding-right: 40px; }
.promo-pop__title { color: #fff; font-size: 20px; font-weight: 700; line-height: 1.2; margin: 14px 0 6px; }
.promo-pop__price strong { color: var(--brand-red); font-size: 30px; font-weight: 800; }
.promo-pop__price span { color: var(--text-body); font-size: 14px; }
.promo-pop__list { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 14px; margin: 14px 0 16px; display: grid; gap: 8px; list-style: none; }
.promo-pop__list li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; color: var(--text-lead); font-size: 14px; line-height: 1.45; }
.promo-pop__list svg { width: 18px; height: 18px; color: var(--brand-red); }
.promo-pop__btn { width: 100%; margin-top: 10px; }
.promo-pop__btn svg { width: 16px; height: 16px; }
.promo-pop__fine { color: var(--text-muted); font-size: 12px; line-height: 1.5; margin-top: 12px; }
.promo-pop__fine a { color: var(--text-lead); text-decoration: underline; }
@media (max-width: 600px) {
  .promo-pop { right: 12px; left: 12px; bottom: 12px; width: auto; padding: 18px 18px 14px; }
  .promo-pop__title { font-size: 18px; }
  .promo-pop__price strong { font-size: 26px; }
}
@media print { .promo-pop { display: none !important; } }

/* Minimized offer pill */
.promo-pill {
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--brand-red); color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .2px;
  box-shadow: 0 12px 30px rgba(226,39,24,0.35), 0 6px 18px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(20px) scale(0.94);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1), background .2s ease;
}
.promo-pill.is-open { opacity: 1; transform: translateY(0) scale(1); }
.promo-pill:hover { background: var(--brand-red-dark); }
.promo-pill[hidden] { display: none; }
.promo-pill svg { width: 18px; height: 18px; flex: none; }
@media (max-width: 600px) { .promo-pill { right: 12px; bottom: 12px; padding: 12px 18px; font-size: 14px; } }
@media (prefers-reduced-motion: reduce) { .promo-pill { transition: opacity .3s ease; transform: none; } }
@media print { .promo-pill { display: none !important; } }

/* Home page stats band: red and black mist */
.stats-band--bright {
  position: relative;
  background:
    radial-gradient(60% 140% at 15% 50%, rgba(226,39,24,0.85), transparent 70%),
    radial-gradient(55% 140% at 85% 40%, rgba(226,39,24,0.65), transparent 70%),
    radial-gradient(40% 120% at 50% 110%, rgba(179,29,18,0.55), transparent 70%),
    linear-gradient(90deg, #1a0302 0%, #000000 50%, #1a0302 100%);
  border-block: 1px solid rgba(226,39,24,0.45);
}
.stats-band--bright .stat { border-left-color: rgba(255,255,255,0.35); }
.stats-band--bright .stat .num { color: #ffffff; }
.stats-band--bright .stat .num .text-red { color: #ffffff; }
.stats-band--bright .stat .label { color: #ffffff; font-weight: 700; }

/* =========================================================================
   PROCESS TIMELINE
   ========================================================================= */

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.tl-step { position: relative; padding-top: var(--space-xl); }
.tl-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--hairline);
}
.tl-step:first-child::after,
.tl-step::after { }
.tl-step .tl-num {
  position: absolute;
  top: 0; left: 0;
  height: 4px;
  width: 40%;
  background: var(--accent-stripe);
}
.tl-step .step-k {
  font-weight: var(--weight-display);
  font-size: 13px;
  letter-spacing: var(--tracking-label);
  color: var(--brand-red);
  margin-bottom: var(--space-sm);
}
.tl-step h3 {
  font-weight: var(--weight-display);
  font-size: 20px;
  color: var(--text-strong);
  text-transform: uppercase;
  letter-spacing: -0.2px;
  margin-bottom: var(--space-sm);
}
.tl-step p { color: var(--text-body); font-size: 15px; }

/* =========================================================================
   COMPARISON TABLE
   ========================================================================= */

.compare {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--hairline-strong);
}
.compare caption { text-align: left; margin-bottom: var(--space-lg); }
.compare th, .compare td {
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  border-bottom: 1px solid var(--hairline-strong);
  border-right: 1px solid var(--hairline-strong);
}
.compare th:last-child, .compare td:last-child { border-right: 0; }
.compare thead th {
  font-weight: var(--weight-display);
  font-size: 13px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-strong);
  background: var(--surface-card);
}
.compare thead th.col-us { background: var(--surface-elevated); color: var(--text-strong); }
.compare tbody th {
  font-weight: var(--weight-medium);
  color: var(--text-lead);
  font-size: 15px;
}
.compare tbody td { color: var(--text-body); font-size: 15px; }
.compare td.col-us { color: var(--text-strong); }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare .yes { color: var(--text-strong); display: inline-flex; align-items: center; gap: var(--space-sm); }
.compare .no  { color: var(--text-muted); display: inline-flex; align-items: center; gap: var(--space-sm); }
.compare .yes svg, .compare .no svg { width: 18px; height: 18px; flex: none; }

/* =========================================================================
   FAQ ACCORDION  (pure CSS via <details>/<summary>)
   ========================================================================= */

.faq { border-top: 1px solid var(--hairline-strong); }
.faq details { border-bottom: 1px solid var(--hairline-strong); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  font-weight: var(--weight-display);
  font-size: clamp(17px, 2.4vw, 20px);
  color: var(--text-strong);
  text-transform: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  position: relative;
  width: 22px; height: 22px; flex: none;
}
.faq summary .plus::before,
.faq summary .plus::after {
  content: "";
  position: absolute;
  background: var(--brand-red);
  transition: transform .2s ease;
}
.faq summary .plus::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq summary .plus::after  { left: 10px; top: 0; width: 2px; height: 22px; }
.faq details[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq details > .answer {
  padding: 0 0 var(--space-lg);
  color: var(--text-body);
  max-width: 70ch;
}
.faq summary:focus-visible { outline: 2px solid var(--text-strong); outline-offset: 4px; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */

.quote-card {
  background: var(--surface-card);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  height: 100%;
}
.quote-card .stars { display: inline-flex; gap: 2px; color: var(--brand-red); }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote {
  color: var(--text-lead);
  font-size: 17px;
  font-weight: var(--weight-light);
  line-height: 1.55;
  flex: 1;
}
.quote-card .who { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.quote-card .who .name { font-weight: var(--weight-display); color: var(--text-strong); font-size: 14px; letter-spacing: .3px; }
.quote-card .who .meta { font-size: 12px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-muted); }

/* Review carousel */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.carousel-slide { flex: 0 0 100%; min-width: 100%; display: flex; justify-content: center; padding: 0 4px; }
.quote-card--carousel {
  max-width: 760px;
  width: 100%;
  text-align: center;
  align-items: center;
  border: 1px solid var(--hairline-strong);
}
.quote-card--carousel blockquote { flex: initial; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  color: var(--text-strong);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow:hover { border-color: var(--brand-red); color: var(--brand-red); }
.carousel-arrow--prev { left: -8px; }
.carousel-arrow--next { right: -8px; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: var(--space-lg); }
.carousel-dot {
  width: 24px; height: 3px;
  background: var(--hairline-strong);
  border: none; padding: 0;
  cursor: pointer;
  transition: background .2s ease;
}
.carousel-dot.is-active { background: var(--brand-red); }
@media (max-width: 860px) {
  .carousel-arrow { display: none; }
}

/* Careers hero (two column, rounded photo) */
.careers-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.careers-hero-media { position: relative; margin: 0; border-radius: 24px; overflow: hidden; border: 1px solid var(--hairline-strong); }
.careers-hero-media img { width: 100%; height: clamp(440px, 44vw, 620px); object-fit: cover; display: block; }
.media-pin {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(10,10,11,.82);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline-strong);
  color: var(--text-strong);
  font-size: 13px; font-weight: var(--weight-display); letter-spacing: .3px;
}
.media-pin svg { width: 14px; height: 14px; color: var(--brand-red); }
.hero-perks { display: flex; flex-wrap: wrap; gap: var(--space-md) var(--space-xl); margin-top: var(--space-xl); }
.hero-perks span { display: inline-flex; align-items: center; gap: 8px; color: var(--text-lead); font-size: 14px; }
.hero-perks svg { width: 16px; height: 16px; color: var(--brand-red); flex: none; }
@media (max-width: 900px) {
  .careers-hero { grid-template-columns: 1fr; }
  .careers-hero-media img { height: clamp(320px, 60vw, 440px); }
}

/* =========================================================================
   SPLIT  (image / content)
   ========================================================================= */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split .media { background: var(--surface-card); }
.split .media img { width: 100%; max-width: 560px; height: auto; display: block; margin-inline: auto; }
.split .media--wide { }
.split--reverse .media { order: 2; }

/* feature list with stripe bullets */
.feature-list { display: grid; gap: var(--space-md); margin-top: var(--space-lg); }
.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--space-md);
  align-items: start;
  color: var(--text-lead);
}
.feature-list li::before {
  content: "";
  width: 28px; height: 4px;
  background: var(--accent-stripe);
  margin-top: 9px;
}

/* =========================================================================
   SERVICE DETAIL ROWS  (spec cells)
   ========================================================================= */

.spec-list { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--hairline-strong); }
.spec-item {
  padding: var(--space-xl);
  border-right: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
}
.spec-item:nth-child(2n) { border-right: 0; }
.spec-item .k {
  display: flex; align-items: center; gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.spec-item .k svg { width: 26px; height: 26px; stroke: var(--brand-red); flex: none; }
.spec-item h3 {
  font-weight: var(--weight-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  color: var(--text-strong);
}
.spec-item p { color: var(--text-body); font-size: 15px; }

/* =========================================================================
   PRICING / PACKAGE TIERS
   ========================================================================= */

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.tier {
  background: var(--surface-card);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  border-top: 4px solid var(--hairline);
}
.tier--featured { background: var(--surface-elevated); border-top: 4px solid transparent; position: relative; }
.tier--featured::before {
  content: "";
  position: absolute; top: -4px; left: 0; right: 0; height: 4px;
  background: var(--accent-stripe);
}
.tier .tier-name { font-weight: var(--weight-display); text-transform: uppercase; letter-spacing: var(--tracking-label); font-size: 14px; color: var(--text-strong); }
.tier .tier-price { font-weight: var(--weight-display); font-size: 44px; color: var(--text-strong); letter-spacing: var(--tracking-display); line-height: 1; }
.tier .tier-price small { font-size: 14px; font-weight: var(--weight-light); color: var(--text-muted); letter-spacing: 0; }
.tier .tier-desc { color: var(--text-body); font-size: 14px; }
.tier ul { display: grid; gap: var(--space-sm); }
.tier ul li { display: grid; grid-template-columns: 18px 1fr; gap: var(--space-sm); color: var(--text-body); font-size: 14px; align-items: start; }
.tier ul li svg { width: 18px; height: 18px; color: var(--brand-red); margin-top: 2px; }
.tier .btn { margin-top: auto; }
.tier .tier-flag { font-size: 11px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--brand-red); font-weight: var(--weight-display); }

/* =========================================================================
   CTA BAND
   ========================================================================= */

.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 80% 0%, rgba(28,105,212,0.22), transparent 55%),
    radial-gradient(80% 120% at 0% 100%, rgba(226,39,24,0.18), transparent 55%),
    linear-gradient(180deg, #0a0a0b, #000);
  border-block: 1px solid var(--hairline-strong);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(32px, 5.5vw, 60px); margin-bottom: var(--space-md); }

/* =========================================================================
   FORMS
   ========================================================================= */

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.field { display: flex; flex-direction: column; gap: var(--space-xs); }
.field--full { grid-column: 1 / -1; }
.field label {
  font-weight: var(--weight-display);
  font-size: 12px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-strong);
}
.field label .req { color: var(--brand-red); }
.field input,
.field select,
.field textarea {
  height: 52px;
  padding: 0 var(--space-md);
  background: var(--surface-card);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-none);
  color: var(--text-strong);
  font-family: var(--font-sans);
  font-weight: var(--weight-light);
  font-size: 16px;
  transition: border-color .16s ease;
}
.field textarea { height: auto; min-height: 140px; padding: var(--space-md); resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #9e9e9e; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--text-strong); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23bbbbbb' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right var(--space-md) center; padding-right: var(--space-xl); }
.form-note { font-size: 13px; color: #b8b8b8; }
/* Web3Forms: honeypot and submit status */
.botcheck { display: none !important; }
.form-status { display: none; margin-top: var(--space-md); padding: 14px 16px; border-radius: 10px; font-size: 15px; line-height: 1.5; color: #fff; }
.form-status.is-ok { display: block; background: rgba(28,105,212,0.18); border: 1px solid var(--brand-blue, #1c69d4); }
.form-status.is-error { display: block; background: rgba(226,39,24,0.15); border: 1px solid var(--brand-red); }
.form-status a { color: #fff; text-decoration: underline; }
button[type="submit"][disabled] { opacity: .65; cursor: wait; }
.form-note a { color: var(--text-lead); border-bottom: 1px solid var(--hairline); }
.form-note a:hover { color: var(--brand-red); border-bottom-color: var(--brand-red); }

/* file upload control */
.field input[type="file"] {
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 14px;
  font-weight: var(--weight-light);
  color: var(--text-body);
  cursor: pointer;
}
.field input[type="file"]::file-selector-button {
  height: 100%;
  margin-right: var(--space-md);
  padding-inline: var(--space-lg);
  border: 0;
  border-right: 1px solid var(--hairline-strong);
  background: var(--surface-elevated);
  color: var(--text-strong);
  font-family: var(--font-sans);
  font-weight: var(--weight-display);
  font-size: 12px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  cursor: pointer;
  transition: background .16s ease, color .16s ease;
}
.field input[type="file"]::file-selector-button:hover { background: var(--brand-red); color: #fff; }
.field .hint { font-size: 13px; color: #b8b8b8; margin-top: var(--space-xxs); }
.file-clear {
  display: none;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: var(--space-xs);
  padding: 8px 14px;
  background: none;
  border: 1px solid var(--hairline-strong);
  color: var(--text-lead);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .16s ease, color .16s ease;
}
.file-clear.is-visible { display: inline-flex; }
.file-clear:hover { border-color: var(--brand-red); color: var(--brand-red); }
.file-clear svg { width: 13px; height: 13px; }

/* =========================================================================
   CONTACT / INFO BLOCKS
   ========================================================================= */

.info-list { display: grid; gap: var(--space-lg); }
.info-row { display: grid; grid-template-columns: 48px 1fr; gap: var(--space-md); align-items: start; }
.info-row .ico {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #ededee;
  border-radius: 12px;
  color: var(--brand-red);
}
.info-row .ico svg { width: 22px; height: 22px; stroke: currentColor; }
.info-row .k { font-size: 12px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--brand-red); margin-bottom: 2px; }
.info-row .v { color: var(--text-lead); font-size: 16px; }
.info-row .v a:hover { color: var(--text-strong); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: var(--space-md) 0; border-bottom: 1px solid var(--hairline-strong); text-align: left; }
.hours-table th { font-weight: var(--weight-medium); color: var(--text-lead); font-size: 15px; }
.hours-table td { color: var(--text-body); font-size: 15px; text-align: right; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table .closed { color: var(--brand-red); font-weight: var(--weight-medium); }
.info-row .note { font-size: 13px; color: #b8b8b8; margin-top: var(--space-xxs); }

.map-frame {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(28,105,212,0.14), transparent 60%),
    linear-gradient(180deg, var(--surface-card), var(--surface-soft));
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.map-frame::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hairline-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline-strong) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .4;
}
.map-frame svg { width: 40px; height: 40px; stroke: var(--brand-red); position: relative; }
.map-frame .map-label { position: relative; font-size: 13px; letter-spacing: var(--tracking-label); text-transform: uppercase; }

/* =========================================================================
   CAREERS - open roles
   ========================================================================= */

.role {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-xl);
  background: var(--surface-card);
  border-left: 4px solid var(--brand-red);
}
.role h3 { font-weight: var(--weight-display); font-size: 22px; color: var(--text-strong); text-transform: uppercase; letter-spacing: -0.2px; }
.role .meta { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-sm); }
.role .meta span { font-size: 12px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--text-muted); display: inline-flex; align-items: center; gap: var(--space-xs); }

/* Roles as plus dropdowns */
details.role { display: block; padding: 0; overflow: hidden; }
details.role summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  list-style: none;
}
details.role summary h3 { font-size: 19px; }
details.role summary::-webkit-details-marker { display: none; }
details.role summary .plus { position: relative; width: 22px; height: 22px; flex: none; }
details.role summary .plus::before,
details.role summary .plus::after {
  content: "";
  position: absolute;
  background: var(--brand-red);
  transition: transform .2s ease;
}
details.role summary .plus::before { top: 10px; left: 0; width: 22px; height: 2px; }
details.role summary .plus::after  { left: 10px; top: 0; width: 2px; height: 22px; }
details.role[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.role-body { padding: 0 var(--space-xl) var(--space-lg); }
.role-body p { color: var(--text-body); max-width: 70ch; margin-bottom: var(--space-lg); }

/* Careers page: rounded boxes */
#page-careers .card,
#page-careers .role { border-radius: 16px; }
#page-careers .field input,
#page-careers .field select,
#page-careers .field textarea { border-radius: 10px; }
#page-careers .icon-badge { border-radius: 16px; }
#page-careers .btn { border-radius: 999px; }
.role-list { display: grid; gap: var(--space-md); }

.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline-strong); border: 1px solid var(--hairline-strong); }
.value-grid .v-item { background: var(--canvas); padding: var(--space-xl); }
.value-grid .v-item h3 { font-weight: var(--weight-display); font-size: 18px; text-transform: uppercase; color: var(--text-strong); margin-bottom: var(--space-sm); letter-spacing: -0.2px; }
.value-grid .v-item p { color: var(--text-body); font-size: 15px; }

/* =========================================================================
   FOOTER
   ========================================================================= */

.site-footer { background: var(--canvas); border-top: 1px solid var(--hairline-strong); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  padding-block: var(--space-xxl);
}
.footer-brand img { height: 110px; width: auto; margin-bottom: var(--space-lg); }
.footer-brand p { color: #d6d6d6; font-size: 14px; max-width: 34ch; }
.footer-col h4 {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-strong);
  margin-bottom: var(--space-lg);
}
.footer-col ul { display: grid; gap: var(--space-sm); }
.footer-col ul a { color: #c9c9c9; font-size: 14px; transition: color .16s ease; }
.footer-col ul a:hover { color: var(--text-strong); }
.footer-contact div { margin-bottom: var(--space-md); }
.footer-contact .k { font-size: 11px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: #c9c9c9; }
.footer-contact .v { color: var(--text-lead); font-size: 15px; }
.footer-contact .v a:hover { color: var(--text-strong); }

.socials { display: flex; gap: var(--space-md); margin-top: var(--space-lg); }
.socials a {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--hairline);
  color: var(--text-body);
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.socials a:hover { background: var(--text-strong); color: #000; border-color: var(--text-strong); }
.socials svg { width: 20px; height: 20px; }

.footer-bar {
  border-top: 1px solid var(--hairline-strong);
  padding-block: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: space-between;
}
.footer-bar .m-stripe { width: 80px; }
.footer-bar p { font-size: 13px; color: #c9c9c9; }
.footer-bar .legal { display: flex; gap: var(--space-lg); }
.footer-bar .legal a { font-size: 13px; color: #c9c9c9; }
.footer-bar .legal a:hover { color: var(--text-strong); }

/* rate & review strip */
.footer-review {
  border-top: 1px solid var(--hairline-strong);
  padding-block: var(--space-lg);
}
.footer-review h4 {
  font-size: 11px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-strong);
  font-weight: var(--weight-display);
  margin-bottom: var(--space-md);
}
.review-links { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.review-links a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px var(--space-md);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  color: var(--text-lead);
  font-size: 14px;
  font-weight: var(--weight-medium);
  line-height: 1;
  transition: border-color .16s ease, color .16s ease, background .16s ease;
}
.review-links a svg { width: 16px; height: 16px; flex: none; }
.review-links a:hover {
  border-color: var(--brand-red);
  color: var(--text-strong);
  background: var(--surface-card);
}

/* footer bar right cluster + agency credit */
.footer-bar-right { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-lg); }
.athos-badge { color: var(--text-muted); transition: opacity .16s ease; }
.athos-badge:hover { opacity: 1 !important; }

/* =========================================================================
   UTILITY
   ========================================================================= */

.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--hairline-strong); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  /* ---- Mobile nav (CSS-only) ---- */
  .nav-toggle-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    cursor: pointer;
    color: var(--text-strong);
    border: 1px solid var(--hairline);
  }
  .nav-toggle-label svg { width: 24px; height: 24px; }
  .nav-toggle-label .ico-close { display: none; }
  .nav-menu {
    position: fixed;
    inset: 108px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline-strong);
    padding: var(--space-md) var(--space-lg) var(--space-xl);
    transform: translateY(-110%);
    transition: transform .25s ease;
    box-shadow: 0 24px 40px rgba(0,0,0,0.6);
  }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--hairline-strong);
    font-size: 16px;
  }
  .nav-links a[aria-current="page"] { border-bottom-color: var(--hairline-strong); color: var(--brand-red); }
  .nav-cta { margin-top: var(--space-lg); flex-direction: column; align-items: stretch; gap: var(--space-md); }
  .nav-cta .btn { width: 100%; }
  .nav-toggle:checked ~ .nav-menu { transform: translateY(0); }
  .nav-toggle:checked ~ .nav-toggle-label .ico-open { display: none; }
  .nav-toggle:checked ~ .nav-toggle-label .ico-close { display: inline; }
  .nav-toggle:focus-visible ~ .nav-toggle-label { outline: 2px solid var(--text-strong); outline-offset: 2px; }
}

@media (max-width: 720px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: var(--space-xl); }
  .split--reverse .media { order: 0; }
  .spec-list { grid-template-columns: 1fr; }
  .spec-item { border-right: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .role { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr; }
  .compare { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: 0 !important; border-top: 1px solid var(--hairline-strong); }
  .stat:first-child { border-top: 0; }
  .btn { width: 100%; }
  .hero .btn-row .btn, .cta-band .btn-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* =========================================================================
   SINGLE-FILE SPA - page switching
   ========================================================================= */
.page { display: none; }
.page.active { display: block; }

/* Active nav state controlled by JS */
.nav-links a.current {
  color: var(--text-strong);
  border-bottom-color: var(--brand-red);
}

/* Scroll anchor offset for sticky header */
html { scroll-padding-top: 80px; }

/* =========================================================================
   HERO SOCIAL ICONS STRIP - right side of all hero sections
   ========================================================================= */
.hero-socials {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-socials a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  color: var(--text-body);
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.hero-socials a:hover {
  background: var(--text-strong);
  color: #000;
  border-color: var(--text-strong);
}
.hero-socials svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 480px) {
  .hero-socials {
    top: auto;
    bottom: var(--space-lg);
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
  }
}


/* Mobile fixes: let grid columns shrink to the screen, and fit the hCaptcha box on small phones */
.split > *, .form-grid > *, .field { min-width: 0; }
.field input, .field select, .field textarea { min-width: 0; max-width: 100%; }
@media (max-width: 400px) {
  .h-captcha { transform: scale(0.85); transform-origin: left top; margin-bottom: calc(var(--space-md) - 12px) !important; }
}

/* Mobile fixes: keep the closed menu fully out of view, and put the social icons under the hero text on phones */
@media (max-width: 860px) {
  .nav-menu { transform: translateY(calc(-100% - 160px)); visibility: hidden; transition: transform .25s ease, visibility 0s linear .25s; }
  .nav-toggle:checked ~ .nav-menu { transform: translateY(0); visibility: visible; transition: transform .25s ease; }
}
@media (max-width: 480px) {
  .hero-socials { position: static; transform: none; flex-direction: row; justify-content: flex-start; margin: var(--space-lg) auto 0; padding-inline: var(--space-lg); max-width: 100%; }
}
