/* ==========================================================================
   AUTOWLIFT — Global Stylesheet
   Towing accessory supplier · Hawthorne, CA
   --------------------------------------------------------------------------
   Table of contents
   1.  Design tokens (colors, spacing, type)
   2.  Reset & base
   3.  Layout helpers (container, section, grid)
   4.  Typography
   5.  Buttons
   6.  Header & navigation
   7.  Hero
   8.  Trust bar / badges
   9.  Cards, features, steps
   10. Benefits & split media sections
   11. Testimonials
   12. FAQ accordion
   13. Tables (specs & pricing)
   14. Video blocks
   15. Forms & CTA band
   16. Footer
   17. Utilities & animation
   18. Responsive breakpoints
   ========================================================================== */

/* 1. DESIGN TOKENS ========================================================= */
:root {
  /* Brand palette */
  --charcoal:      #1A1A1A;
  --charcoal-soft: #232323;
  --charcoal-line: #2E2E2E;
  --red:           #D32F2F;
  --red-dark:      #B71C1C;
  --white:         #FFFFFF;
  --gray:          #4A4A4A;
  --gray-light:    #6E6E6E;
  --blue:          #2D6A9F;
  --blue-dark:     #24557E;
  --light:         #F2F2F2;
  --border:        #DCDCDC;

  /* Spacing scale */
  --gap-sm:  16px;
  --gap-md:  32px;
  --gap-lg:  48px;
  --gap-xl:  64px;
  --section: 100px;
  --section-sm: 80px;

  /* Radii & shadows */
  --radius:    7px;
  --radius-lg: 10px;
  --shadow:    0 4px 18px rgba(0, 0, 0, .10);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, .22);

  /* Type */
  --font-head: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  /* Chrome */
  --header-h: 78px;
  --wrap: 1200px;
}

/* 2. RESET & BASE ========================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }

/* Visible focus for keyboard users */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 700;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  text-decoration: none;
  color: var(--white);
}

/* 3. LAYOUT ================================================================ */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 880px; }

.section { padding: var(--section) 0; }
.section--tight { padding: var(--section-sm) 0; }
.section--light { background: var(--light); }
.section--dark {
  background: var(--charcoal);
  color: var(--white);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255, 255, 255, .80); }
.section--dark a { color: #7FB2DC; }

.section-head {
  max-width: 780px;
  margin: 0 auto var(--gap-xl);
  text-align: center;
}
.section-head--left {
  margin-left: 0;
  text-align: left;
}
.section-head p {
  font-size: 19px;
  color: var(--gray);
  margin: 0;
}
.section--dark .section-head p { color: rgba(255, 255, 255, .78); }

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

/* 4. TYPOGRAPHY ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.015em;
  color: var(--charcoal);
  margin: 0 0 var(--gap-sm);
}

h1 { font-size: clamp(2.25rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.95rem, 3.9vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.14rem; font-weight: 700; letter-spacing: 0; }

p { margin: 0 0 var(--gap-sm); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow--light { color: #FF6B6B; }
.eyebrow--blue { color: var(--blue); }

.lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--gray);
}
.section--dark .lead { color: rgba(255, 255, 255, .82); }

.rule {
  width: 68px;
  height: 4px;
  background: var(--red);
  border: 0;
  margin: 0 0 var(--gap-md);
}
.section-head .rule { margin-left: auto; margin-right: auto; }
.section-head--left .rule { margin-left: 0; }

/* 5. BUTTONS =============================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease,
              color .18s ease, transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(211, 47, 47, .28);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(183, 28, 28, .36);
}

.btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .65);
  color: var(--white);
}
.btn--ghost-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal);
}

.btn--ghost-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn--ghost-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--sm { padding: 11px 22px; font-size: 15px; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
}
.btn-row--center { justify-content: center; }

/* 6. HEADER & NAV ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 1px solid var(--charcoal-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
  height: var(--header-h);
}

/* Wordmark: "AUTOWLIFT" with the "TOW" picked out in Steel Red.
   Written in the HTML as  AU<em>TOW</em>LIFT  */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-size: 1.46rem;
  font-weight: 800;
  letter-spacing: -.01em;   /* tight, so it reads as one solid word */
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
.logo:hover { color: var(--white); text-decoration: none; }
.logo-mark {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 5px;
  background: var(--red);
  display: grid;
  place-items: center;
}
.logo-mark svg { width: 21px; height: 21px; fill: var(--white); }
/* The wordmark is one <span> so the flex `gap` above applies only between the
   icon and the word — never between AU / TOW / LIFT, which must stay flush. */
.logo-text { white-space: nowrap; }

.logo em {
  font-style: normal;
  color: var(--red);   /* highlights "TOW" inside AUTOWLIFT */
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .84);
  padding: 9px 13px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: color .16s ease, background-color .16s ease;
}
.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  text-decoration: none;
}
.nav a.is-active {
  color: var(--white);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--red);
  border-radius: 5px 5px 0 0;
}

.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4.5px auto;
  background: var(--white);
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* 7. HERO ================================================================== */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(26, 26, 26, .95) 0%, rgba(26, 26, 26, .86) 42%,
                    rgba(26, 26, 26, .55) 72%, rgba(26, 26, 26, .42) 100%),
    linear-gradient(to top, rgba(26, 26, 26, .92) 0%, rgba(26, 26, 26, 0) 45%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 11vw, 140px) 0 clamp(72px, 10vw, 128px);
  max-width: 760px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: var(--gap-md);
  text-shadow: 0 2px 22px rgba(0, 0, 0, .45);
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-size: clamp(1.03rem, 1.6vw, 1.24rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, .88);
  margin-bottom: var(--gap-md);
  max-width: 640px;
}
.hero-note {
  margin-top: var(--gap-md);
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .62);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { width: 15px; height: 15px; fill: var(--red); flex: none; }

/* Compact hero for interior pages */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: clamp(60px, 8vw, 96px) 0 clamp(56px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-img, none);
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(26,26,26,.94) 0%, rgba(26,26,26,.72) 65%, rgba(26,26,26,.5) 100%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 17ch; }
.page-hero p {
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  max-width: 62ch;
  margin-bottom: 0;
}
.page-hero .btn-row { margin-top: var(--gap-md); }

/* Breadcrumb */
.crumbs {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 18px;
}
.crumbs a { color: rgba(255, 255, 255, .78); }
.crumbs a:hover { color: var(--white); }
.crumbs span { margin: 0 7px; }

/* 8. TRUST BAR ============================================================= */
.trust-bar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: var(--gap-lg) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15.5px;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.trust-item span {
  display: block;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--gray);
}

/* 9. CARDS / FEATURES / STEPS ============================================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--gap-md);
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #C9C9C9;
}
.card h3 { margin-bottom: 10px; }
.card p {
  color: var(--gray);
  font-size: 16px;
  margin: 0;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 9px;
  background: rgba(211, 47, 47, .09);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; stroke: var(--red); fill: none; stroke-width: 1.9; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: var(--gap-md) var(--gap-md) var(--gap-md);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--gray);
  font-size: 16px;
  margin: 0;
}

/* Media figure */
.figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.figure figcaption {
  font-size: 14px;
  color: var(--gray);
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 0;
}

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-sm);
}
.photo-strip figure { margin: 0; }
.photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.photo-strip figcaption {
  font-size: 13.5px;
  color: var(--gray);
  margin-top: 9px;
  line-height: 1.45;
}
.section--dark .photo-strip figcaption { color: rgba(255, 255, 255, .68); }

/* 10. SPLIT / BENEFITS ===================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
/* Which side the photo sits on is set by the order of the two <div>s in the
   HTML: put .split-media first for a left-hand photo, second for a right-hand one. */
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.split-media--stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm);
}
.split-media--stack img { aspect-ratio: 1 / 1; object-fit: cover; }
.split-media--stack img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.benefit {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: var(--gap-md);
  align-items: start;
  padding: var(--gap-md) 0;
  border-top: 1px solid var(--border);
}
.section--dark .benefit { border-top-color: var(--charcoal-line); }
.benefit:first-of-type { border-top: 0; padding-top: 0; }
.benefit:last-of-type { padding-bottom: 0; }
.benefit-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  opacity: .85;
}
.benefit h3 { margin-bottom: 10px; }
.benefit p { margin: 0; }

/* Stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1.05;
  margin-bottom: 6px;
}
.stat span {
  font-size: 15px;
  color: rgba(255, 255, 255, .74);
  line-height: 1.45;
}

/* Checklist */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}
.checklist li {
  position: relative;
  padding-left: 34px;
  font-size: 16.5px;
  line-height: 1.6;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.checklist--blue li::before { background-color: var(--blue); }

/* 11. TESTIMONIALS ========================================================= */
.quote-card {
  background: var(--charcoal-soft);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-lg);
  padding: var(--gap-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.quote-card .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.quote-card .stars svg { width: 17px; height: 17px; fill: var(--red); }
.quote-card blockquote {
  margin: 0 0 var(--gap-md);
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .92);
  flex: 1;
}
.quote-card cite {
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--charcoal-line);
}
.quote-avatar {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
}
.quote-card cite strong {
  display: block;
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
}
.quote-card cite span {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
}

/* 12. FAQ ================================================================== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.section--dark .faq-list { border-top-color: var(--charcoal-line); }

.faq-item { border-bottom: 1px solid var(--border); }
.section--dark .faq-item { border-bottom-color: var(--charcoal-line); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap-sm);
  text-align: left;
  background: none;
  border: 0;
  padding: 24px 4px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--charcoal);
  transition: color .16s ease;
}
.section--dark .faq-q { color: var(--white); }
.faq-q:hover { color: var(--red); }

.faq-icon {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(211, 47, 47, .1);
  display: grid;
  place-items: center;
  transition: transform .24s ease, background-color .24s ease;
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--red); stroke-width: 2.6; fill: none; }
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
}
.faq-q[aria-expanded="true"] .faq-icon svg { stroke: var(--white); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq-a > div { overflow: hidden; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  padding: 0 44px 26px 4px;
  margin: 0;
  color: var(--gray);
  font-size: 16.5px;
}
.section--dark .faq-a p { color: rgba(255, 255, 255, .78); }

/* 13. TABLES =============================================================== */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16.5px;
  min-width: 480px;
}
caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 22px 0;
  color: var(--charcoal);
}
th, td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
thead th {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-bottom: 0;
}
tbody tr:nth-child(even) { background: #FAFAFA; }
tbody tr:last-child th,
tbody tr:last-child td { border-bottom: 0; }
tbody th {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--charcoal);
  width: 46%;
}
td.value {
  font-weight: 500;
  color: var(--gray);
}
.pending {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
}

/* Price block */
.price-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  box-shadow: var(--shadow-lg);
}
.price-card .price {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 4.25rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin: 6px 0 4px;
}
.price-card .price sup {
  font-size: .42em;
  top: -.72em;
  margin-right: 3px;
  color: var(--red);
}
.price-card .price-note {
  font-size: 15px;
  color: rgba(255, 255, 255, .62);
  margin-bottom: var(--gap-md);
}
.price-card .checklist li { color: rgba(255, 255, 255, .9); font-size: 16px; }
.price-card hr {
  border: 0;
  border-top: 1px solid var(--charcoal-line);
  margin: var(--gap-md) 0;
}

/* Badge pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--font-head);
  color: var(--white);
  background: var(--blue);
  border-radius: 100px;
  padding: 6px 15px;
}
.pill--red { background: var(--red); }
.pill--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .85);
}

/* 14. VIDEO ================================================================ */
.video-card {
  background: var(--charcoal-soft);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.video-frame {
  background: #000;
  display: grid;
  place-items: center;
}
.video-frame video {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #000;
}
.video-body { padding: var(--gap-md); }
.video-body h3 { color: var(--white); margin-bottom: 10px; }
.video-body p { color: rgba(255, 255, 255, .76); font-size: 16px; margin: 0; }
.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.video-tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--charcoal-line);
  border-radius: 4px;
  padding: 4px 11px;
}

/* 15. FORMS ================================================================ */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm) var(--gap-sm);
}
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
}
.field .optional {
  font-weight: 400;
  color: var(--gray-light);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid #C8C8C8;
  border-radius: var(--radius);
  padding: 13px 15px;
  width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { resize: vertical; min-height: 132px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45, 106, 159, .16);
}
.field input:invalid:not(:placeholder-shown) { border-color: var(--red); }

.form-foot {
  margin-top: var(--gap-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap-sm);
}
.form-privacy {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}
.form-status {
  margin-top: var(--gap-sm);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 15.5px;
  font-weight: 500;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: rgba(45, 106, 159, .1);
  border: 1px solid rgba(45, 106, 159, .35);
  color: var(--blue-dark);
}
.form-status.is-error {
  background: rgba(211, 47, 47, .08);
  border: 1px solid rgba(211, 47, 47, .35);
  color: var(--red-dark);
}
/* Honeypot */
.hp-field {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* CTA band */
.cta-band {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/action-claws-on-wheel.jpg") center / cover no-repeat;
  opacity: .16;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.cta-band h2 { color: var(--white); }
.cta-band .lead { color: rgba(255, 255, 255, .82); }

.contact-line {
  margin-top: var(--gap-md);
  padding-top: var(--gap-md);
  border-top: 1px solid var(--charcoal-line);
  font-size: 15px;
  color: rgba(255, 255, 255, .68);
}
.contact-line a { color: #7FB2DC; font-weight: 500; }

/* Contact detail list */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--gap-md);
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-list .contact-icon {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 8px;
  background: rgba(211, 47, 47, .1);
  display: grid;
  place-items: center;
}
.contact-list .contact-icon svg { width: 21px; height: 21px; stroke: var(--red); fill: none; stroke-width: 1.9; }
.contact-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.contact-list span, .contact-list a { font-size: 16px; color: var(--gray); }
.contact-list a { color: var(--blue); }
.section--dark .contact-list strong { color: var(--white); }
.section--dark .contact-list span { color: rgba(255, 255, 255, .75); }

/* 16. FOOTER =============================================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .72);
  padding: var(--section-sm) 0 var(--gap-md);
  font-size: 15.5px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--gap-md);
  padding-bottom: var(--gap-lg);
  border-bottom: 1px solid var(--charcoal-line);
}
.footer-brand .logo { margin-bottom: var(--gap-sm); }
.footer-brand p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .62);
  max-width: 34ch;
}
.footer-col h4 {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.footer-col a {
  color: rgba(255, 255, 255, .72);
  font-size: 15.5px;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--charcoal-line);
  display: grid;
  place-items: center;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.socials a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}
.socials svg { width: 18px; height: 18px; fill: var(--white); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px var(--gap-md);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--gap-md);
  font-size: 14.5px;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom a { color: rgba(255, 255, 255, .62); }

/* 17. UTILITIES ============================================================ */
.text-center { text-align: center; }
.mt-md { margin-top: var(--gap-md); }
.mt-lg { margin-top: var(--gap-lg); }
.mb-md { margin-bottom: var(--gap-md); }
.mb-lg { margin-bottom: var(--gap-lg); }
.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;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* 18. RESPONSIVE =========================================================== */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--gap-lg) var(--gap-md); }
}

@media (max-width: 960px) {
  :root { --section: 76px; --section-sm: 60px; }

  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--charcoal);
    border-bottom: 1px solid var(--charcoal-line);
    padding: 10px 20px 26px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav a {
    padding: 15px 6px;
    font-size: 17px;
    border-bottom: 1px solid var(--charcoal-line);
    border-radius: 0;
  }
  .nav a.is-active { box-shadow: inset 3px 0 0 var(--red); padding-left: 14px; }
  /* The header quote button becomes a full-width button inside the open menu */
  .nav .btn,
  .nav .header-cta {
    display: flex;
    margin: 20px 0 0;
    border-bottom: 0;
    padding: 16px 32px;
    font-size: 16px;
    color: var(--white);
  }
  .nav .btn:hover { background: var(--red-dark); color: var(--white); }

  .grid--3, .grid--4, .steps, .trust-grid, .photo-strip, .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .cta-split { grid-template-columns: 1fr; }
  .hero-inner { max-width: 100%; }
  .hero-media img,
  .hero-media video { object-position: 62% center; }
}

@media (max-width: 620px) {
  body { font-size: 16.5px; }
  :root { --section: 64px; --section-sm: 52px; --gap-md: 26px; }

  .container { padding: 0 20px; }
  .grid--2, .grid--3, .grid--4, .steps, .trust-grid, .photo-strip, .stats,
  .form-grid, .footer-top, .split-media--stack {
    grid-template-columns: 1fr;
  }
  .split-media--stack img:first-child { grid-column: auto; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .form-foot .btn { width: 100%; }
  .benefit { grid-template-columns: 1fr; gap: 12px; }
  .benefit-num { font-size: 2.1rem; }
  .faq-a p { padding-right: 8px; }
  th, td { padding: 14px 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
