/* ============================================================
   Cantonment Transmission — styles.css
   Design system: Vodafone brand guidelines
   Colors: #e60000 (red), #25282b (ink), #ffffff (canvas), #f2f2f2 (canvas-soft)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Barlow+Condensed:wght@400;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --red:          #e60000;
  --red-dark:     #b30000;
  --ink:          #25282b;
  --ink-80:       rgba(37,40,43,0.80);
  --canvas:       #ffffff;
  --canvas-soft:  #f2f2f2;
  --body-text:    #7e7e7e;
  --mute:         #bebebe;
  --on-dark:      #ffffff;

  --pill-lg:      60px;
  --pill-md:      32px;
  --radius-card:  6px;
  --radius-sm:    6px;

  --sp-xxs: 2px;
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  12px;
  --sp-lg:  16px;
  --sp-xl:  20px;
  --sp-2xl: 24px;
  --sp-3xl: 32px;

  --font-display: 'Barlow Condensed', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container-max: 1200px;
  --section-gap:   0px;
  --space-section: 12px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-3xl);
}
.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;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--ink);
  padding: var(--sp-lg) var(--sp-3xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3xl);
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--on-dark);
  white-space: nowrap;
  line-height: 1;
}
.nav__logo span { color: var(--red); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-2xl);
}
.nav__links a {
  color: var(--on-dark);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active { color: var(--red); }

.nav__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  background: var(--red);
  color: var(--on-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 10px var(--sp-2xl);
  border-radius: var(--pill-lg);
  border: 1px solid var(--red);
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--red-dark); border-color: var(--red-dark); }
.nav__cta:active { transform: scale(0.97); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-xs);
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--on-dark);
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  z-index: 999;
  padding: 80px var(--sp-3xl) var(--sp-3xl);
  flex-direction: column;
  gap: var(--sp-2xl);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: var(--on-dark);
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: var(--sp-lg);
}
.nav__mobile .nav__cta { align-self: flex-start; margin-top: var(--sp-lg); }
.nav__mobile-close {
  position: absolute;
  top: var(--sp-lg);
  right: var(--sp-3xl);
  background: none;
  border: none;
  color: var(--on-dark);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   PAGE OFFSET (for fixed nav)
   ============================================================ */
.page-content { padding-top: 64px; }

/* ============================================================
   HERO — index.html
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/karwin-luo-BNCEcEVwleQ-unsplash.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-3xl);
  align-items: start;
  padding: 64px var(--sp-3xl) 64px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero__content { padding-top: var(--sp-3xl); }

.hero__eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--on-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px var(--sp-md);
  border-radius: var(--pill-md);
  margin-bottom: var(--sp-lg);
}

.hero__h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 7vw, 90px);
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: var(--sp-2xl);
}
.hero__h1 em {
  font-style: normal;
  color: var(--red);
}

.hero__sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  margin-bottom: var(--sp-3xl);
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  align-items: center;
  margin-bottom: var(--sp-3xl);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  background: var(--red);
  color: var(--on-dark);
  font-size: 18px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--pill-lg);
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  text-align: center;
  line-height: 1.3;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-primary:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.btn-primary:active { transform: scale(0.97); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--on-dark);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--pill-lg);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: center;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-light:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.btn-outline-light:active { transform: scale(0.97); }

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--red);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--pill-lg);
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: center;
}
.btn-outline-red:hover { background: rgba(230,0,0,0.07); }
.btn-outline-red:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.btn-outline-red:active { transform: scale(0.97); }

/* ---- Lead Form (hero card) ---- */
.hero__form-card {
  background: var(--canvas);
  border-radius: var(--radius-card);
  padding: var(--sp-3xl);
  box-shadow: none;
  border: 1px solid var(--ink);
  align-self: start;
  position: sticky;
  top: 80px;
}

.form-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--sp-2xl);
  text-transform: uppercase;
  letter-spacing: -0.3px;
}
.form-card__title span { color: var(--red); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
.form-grid .full { grid-column: 1 / -1; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: var(--sp-md) var(--sp-lg);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(230,0,0,0.12);
}
.form-textarea { resize: vertical; min-height: 80px; }

.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--ink);
  pointer-events: none;
}
.form-select { padding-right: 36px; cursor: pointer; }

.form-submit {
  width: 100%;
  margin-top: var(--sp-lg);
  font-size: 16px;
  padding: 14px;
}

.form-disclaimer {
  font-size: 11px;
  color: var(--body-text);
  line-height: 1.5;
  margin-top: var(--sp-md);
  text-align: center;
}

/* ---- form success/error ---- */
.form-msg {
  display: none;
  padding: var(--sp-lg);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  margin-top: var(--sp-lg);
  text-align: center;
}
.form-msg.success { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.form-msg.error   { background: #ffebee; color: #b71c1c; border: 1px solid #ef9a9a; }

/* ============================================================
   TRUST GRID
   ============================================================ */
.trust-section {
  background: var(--canvas-soft);
  padding: var(--space-section) 0;
  margin-top: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2xl);
}
.trust-card {
  background: var(--canvas);
  border: 1px solid var(--ink);
  border-radius: var(--radius-card);
  padding: var(--sp-3xl) var(--sp-2xl);
}
.trust-card__icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-lg);
}
.trust-card__icon svg { width: 24px; height: 24px; fill: #fff; }
.trust-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
  line-height: 1.1;
}
.trust-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body-text);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--red);
  padding: var(--space-section) 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3xl);
  flex-wrap: wrap;
}
.cta-banner__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--on-dark);
  line-height: 1.1;
  max-width: 640px;
}
.cta-banner__sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-top: var(--sp-sm);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  line-height: 1.5;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--canvas);
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--pill-lg);
  border: 2px solid var(--canvas);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-white:hover { background: var(--canvas-soft); }
.btn-white:active { transform: scale(0.97); }
.btn-white:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

/* ============================================================
   TOWING OFFER
   ============================================================ */
.towing-section {
  background: var(--ink);
  padding: var(--space-section) 0;
}
.towing-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3xl);
  flex-wrap: wrap;
}
.towing-badge {
  flex-shrink: 0;
  background: var(--red);
  border-radius: var(--radius-sm);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.towing-badge svg { width: 44px; height: 44px; fill: #fff; }
.towing-content {}
.towing-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-xs);
}
.towing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--on-dark);
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
}
.towing-headline em { font-style: normal; color: var(--red); }
.towing-body {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  padding: var(--space-section) 0;
}
.section + .section {
  padding-top: 0;
  margin-top: var(--section-gap);
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-md);
}
.section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: var(--sp-lg);
}
.section-headline em { font-style: normal; color: var(--red); }
.section-sub {
  font-size: 17px;
  color: var(--body-text);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: var(--sp-3xl);
}

/* ============================================================
   PAGE HERO (services / contact)
   ============================================================ */
.page-hero {
  background: var(--ink);
  padding: 72px var(--sp-3xl) var(--space-section);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero__content { position: relative; z-index: 1; max-width: var(--container-max); margin: 0 auto; }
.page-hero__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-md);
}
.page-hero__h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--on-dark);
  line-height: 0.95;
  margin-bottom: var(--sp-2xl);
}
.page-hero__h1 em { font-style: normal; color: var(--red); }
.page-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.65;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-block {
  padding: var(--space-section) 0;
  border-bottom: 1px solid var(--canvas-soft);
}
.service-block:last-of-type { border-bottom: none; }

.service-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.service-block__inner.reverse { direction: rtl; }
.service-block__inner.reverse > * { direction: ltr; }

.service-block__img {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-block__body {}
.service-block__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-md);
}
.service-block__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: var(--sp-lg);
}
.service-block__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: var(--sp-2xl);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-2xl);
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 6px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
  padding: var(--space-section) 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--sp-3xl);
  padding-right: var(--sp-3xl);
}

.contact-info {}
.info-block {
  margin-bottom: var(--sp-3xl);
}
.info-block__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-sm);
}
.info-block__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
}
.info-block__sub {
  font-size: 15px;
  color: var(--body-text);
  margin-top: var(--sp-xs);
  line-height: 1.6;
}
.info-block .btn-primary { margin-top: var(--sp-lg); font-size: 16px; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: var(--sp-sm) 0;
  font-size: 15px;
  border-bottom: 1px solid var(--canvas-soft);
  color: var(--ink);
}
.hours-table td:first-child { font-weight: 600; padding-right: var(--sp-2xl); }
.hours-table td:last-child { color: var(--body-text); }
.hours-table tr:last-child td { border-bottom: none; }

.service-area-box {
  background: var(--canvas-soft);
  border: 1px solid var(--ink);
  border-radius: var(--radius-card);
  padding: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}
.service-area-box__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}
.service-area-box__text {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.6;
}

.contact-form-card {
  background: var(--canvas);
  border: 1px solid var(--ink);
  border-radius: var(--radius-card);
  padding: var(--sp-3xl);
  position: sticky;
  top: 80px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--on-dark);
  padding: var(--space-section) 0 var(--sp-2xl);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: var(--sp-2xl);
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--on-dark);
  margin-bottom: var(--sp-lg);
}
.footer__logo span { color: var(--red); }
.footer__tagline {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: var(--sp-2xl);
}
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  background: var(--red);
  color: var(--on-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 10px var(--sp-2xl);
  border-radius: var(--pill-lg);
  border: 1px solid var(--red);
  transition: background 0.2s ease;
}
.footer__phone:hover { background: var(--red-dark); }
.footer__col-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.57px;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: var(--sp-lg);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--on-dark); }
.footer__hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.footer__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer__hours-row span:first-child { font-weight: 600; color: rgba(255,255,255,0.9); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.footer__disclaimer {
  font-size: 11px;
  color: var(--mute);
  line-height: 1.6;
}
.footer__copy {
  font-size: 12px;
  color: var(--mute);
}

/* ============================================================
   SPEECHMARK ORB
   ============================================================ */
.speechmark-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.speechmark-orb svg { width: 28px; height: 28px; fill: #fff; }

/* ============================================================
   BADGE CHIP
   ============================================================ */
.badge-chip {
  display: inline-block;
  background: var(--canvas-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 3px var(--sp-md);
  border-radius: var(--pill-md);
  border: 1px solid transparent;
}
.badge-chip.red { background: var(--red); color: var(--on-dark); }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--canvas-soft); }
.divider-dark { border: none; border-top: 1px solid rgba(255,255,255,0.12); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__form-card { position: static; }
  .trust-grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .service-block__inner { grid-template-columns: 1fr; }
  .service-block__inner.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-card { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-2xl); }
}

@media (max-width: 767px) {
  :root { --sp-3xl: 20px; }
  .container { padding: 0 var(--sp-lg); }
  .nav { padding: var(--sp-md) var(--sp-lg); }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero { min-height: auto; }
  .hero__inner { padding: 40px var(--sp-lg) 40px; }
  .page-hero { padding: 64px var(--sp-lg) var(--space-section); }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .towing-inner { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 44px; }
  .btn-primary { font-size: 16px; padding: 13px 24px; }
  .btn-white { font-size: 16px; padding: 13px 24px; }
}
