/* ==========================================================================
   DAY Auto Care — Main Site Design System
   Mobile-first. Practical, trustworthy, local-service look.
   Foundation shared with lp.dayautocare.com landing pages.
   ========================================================================== */

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

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--color-accent);
}

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin: 0 0 0.5em;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.65rem;
  margin-top: 0;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

@media (min-width: 720px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
}

/* ---------- Theme tokens ---------- */
:root {
  --color-bg: #ffffff;
  --color-surface: #f4f6f9;
  --color-surface-2: #eef1f5;
  --color-text: #0f1b2d;
  --color-text-muted: #4a5568;
  --color-primary: #0f1b2d;
  --color-primary-dark: #08111d;
  --color-accent: #e85d2f;
  --color-accent-dark: #c84a1f;
  --color-trust: #1f7a4a;
  --color-trust-light: #e6f3ec;
  --color-warn: #b35900;
  --color-border: #d8dee6;
  --color-danger: #c0392b;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 45, 0.08);
  --shadow-md: 0 6px 18px rgba(15, 27, 45, 0.1);

  --container: 1120px;
  --container-narrow: 760px;
  --bar-height: 64px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 48px 0;
}

.section--lg {
  padding: 72px 0;
}

.section--surface {
  background: var(--color-surface);
}

.section--dark {
  background: var(--color-primary);
  color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--dark p {
  color: #c5cfdc;
}

.section__lead {
  max-width: 720px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.section--dark .section__lead {
  color: #c5cfdc;
}

.section__heading {
  margin-bottom: 12px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Site Header & Nav ---------- */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 800;
  flex-shrink: 0;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.brand__name {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand__sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hamburger toggle (CSS-only) */
.nav-toggle {
  display: none;
}

.nav-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-text);
  min-height: 44px;
}

.nav-toggle-btn__bars {
  width: 22px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.nav-toggle-btn__bars::before,
.nav-toggle-btn__bars::after,
.nav-toggle-btn__bars span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
}

.nav-toggle-btn__bars::before {
  top: 0;
}

.nav-toggle-btn__bars span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-btn__bars::after {
  bottom: 0;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 8px 20px 20px;
  box-shadow: var(--shadow-md);
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-nav a {
  display: block;
  padding: 12px 6px;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-surface);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-accent);
}

.site-nav__cta {
  margin-top: 12px;
}

.nav-toggle:checked ~ .site-nav {
  display: block;
}

.header-cta {
  display: none;
}

.header-cta__phone {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
}

.header-cta__phone:hover {
  color: var(--color-accent);
}

.header-cta__sub {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-align: right;
}

@media (min-width: 960px) {
  .nav-toggle-btn {
    display: none;
  }
  .site-nav {
    display: flex;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    align-items: center;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 4px;
  }
  .site-nav a {
    padding: 10px 14px;
    border-bottom: 0;
    border-radius: var(--radius-sm);
  }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: var(--color-surface);
    color: var(--color-text);
  }
  .site-nav__cta {
    margin: 0 0 0 8px;
  }
  .header-cta {
    display: block;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.05s ease, background 0.15s ease, color 0.15s ease;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--sm {
  min-height: 44px;
  padding: 8px 16px;
  font-size: 0.95rem;
}

.btn--call {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

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

.btn--text {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--text:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--form {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  width: 100%;
}

.btn--form:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "›";
  margin: 0 6px;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: var(--color-text);
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--color-primary);
  color: #fff;
  padding: 36px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--color-accent);
}

.hero--lg {
  padding: 56px 0 64px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd6c2;
  margin-bottom: 12px;
}

.hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.hero h1 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.hero__sub {
  font-size: 1.1rem;
  color: #d8dfe8;
  margin-bottom: 22px;
  max-width: 620px;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.hero__trust {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: #c5cfdc;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__trust-item::before {
  content: "✓";
  color: #58c98a;
  font-weight: 900;
}

@media (min-width: 720px) {
  .hero {
    padding: 56px 0 60px;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
  .hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero__ctas .btn {
    flex: 0 0 auto;
  }
}

/* Split (hero with form) */
.split {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
  }
}

/* ---------- Service cards (homepage / overview) ---------- */
.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
  color: var(--color-text);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.service-card__desc {
  color: var(--color-text-muted);
  margin: 0 0 14px;
  font-size: 0.98rem;
  flex-grow: 1;
}

.service-card__link {
  font-weight: 700;
  color: var(--color-accent-dark);
  text-decoration: none;
  font-size: 0.95rem;
}

.service-card:hover .service-card__link {
  color: var(--color-accent);
}

/* ---------- Comparison (mobile vs shop) ---------- */
.comparison {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .comparison {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison__col {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}

.comparison__col--good {
  border-color: var(--color-trust);
  background: var(--color-trust-light);
}

.comparison__col h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.comparison__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison__col li {
  padding: 8px 0 8px 24px;
  position: relative;
  border-top: 1px solid rgba(15, 27, 45, 0.08);
}

.comparison__col li:first-child {
  border-top: 0;
}

.comparison__col--bad li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 8px;
  color: #aa3a3a;
  font-weight: 900;
}

.comparison__col--good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--color-trust);
  font-weight: 900;
}

/* ---------- How it works (steps) ---------- */
.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}

.step__num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px;
}

.step h3 {
  margin-bottom: 6px;
}

.step p {
  color: var(--color-text-muted);
  margin: 0;
}

/* ---------- Fix list (what we handle) ---------- */
.fix-list {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  padding: 0;
  list-style: none;
  margin: 0;
}

@media (min-width: 720px) {
  .fix-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fix-list li {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fix-list li::before {
  content: "→";
  color: var(--color-accent);
  font-weight: 900;
  flex-shrink: 0;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--color-trust-light);
  border-top: 1px solid #c6e2d2;
  border-bottom: 1px solid #c6e2d2;
  padding: 16px 0;
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  text-align: center;
  font-weight: 700;
  color: #14532d;
  font-size: 0.95rem;
}

.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-strip__item::before {
  content: "●";
  color: var(--color-trust);
  font-size: 0.6em;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}

.testimonial__stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.testimonial__quote {
  font-size: 1.02rem;
  color: var(--color-text);
  margin-bottom: 10px;
}

.testimonial__author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 10px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  font-weight: 700;
  position: relative;
  font-size: 1.02rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__body {
  padding: 0 18px 18px;
  color: var(--color-text-muted);
}

.faq__body p:last-child {
  margin-bottom: 0;
}

/* ---------- Lead form ---------- */
.lead-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-md);
}

.lead-form__title {
  margin: 0 0 4px;
  font-size: 1.3rem;
}

.lead-form__sub {
  color: var(--color-text-muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--color-text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font-size: 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  color: var(--color-text);
  min-height: 48px;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 47, 0.18);
}

.field--row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .field--row {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.field--row-2 {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.lead-form__legal {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  text-align: center;
}

/* ---------- Service area grid ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
  padding: 0;
  list-style: none;
  margin: 0;
}

@media (min-width: 600px) {
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .area-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-grid li {
  font-weight: 600;
  color: var(--color-text);
  padding: 4px 0;
}

/* ---------- Map embed wrapper ---------- */
.map-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 16px 0 24px;
}

.map-embed iframe,
.map-embed__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-embed__placeholder {
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
}

/* ---------- CTA bands ---------- */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  padding: 36px 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 6px;
}

.cta-band p {
  color: #c5cfdc;
  margin-bottom: 20px;
}

.cta-band__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

@media (min-width: 600px) {
  .cta-band__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ---------- Related services ---------- */
.related {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .related {
    grid-template-columns: 1fr 1fr;
  }
}

.related__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 18px;
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.related__card:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

.related__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.related__title {
  font-size: 1.1rem;
  font-weight: 800;
}

.related__arrow {
  margin-left: auto;
  color: var(--color-accent);
  font-weight: 900;
}

/* ---------- Legal prose (privacy / terms) ---------- */
.legal-prose {
  max-width: 760px;
}

.legal-prose h2 {
  margin-top: 1.5em;
  font-size: 1.3rem;
}

.legal-prose h3 {
  margin-top: 1.25em;
  font-size: 1.1rem;
}

.legal-prose p,
.legal-prose li {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.legal-prose ul {
  padding-left: 1.4em;
}

.legal-prose__updated {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1.5em;
}

/* ---------- Site Footer ---------- */
.site-footer {
  background: var(--color-primary-dark);
  color: #c5cfdc;
  padding: 40px 0 96px;
  font-size: 0.94rem;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.site-footer__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.site-footer h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  padding: 4px 0;
}

.site-footer__brand strong {
  color: #fff;
  font-size: 1.05rem;
}

.site-footer__bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.85rem;
  color: #8997ab;
}

.site-footer__bottom a {
  color: #c5cfdc;
}

@media (min-width: 720px) {
  .site-footer {
    padding-bottom: 40px;
  }
}

/* ---------- Sticky mobile call/text bar ---------- */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  z-index: 40;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

.sticky-bar .btn {
  min-height: 50px;
  font-size: 1rem;
  padding: 10px 14px;
}

@media (min-width: 720px) {
  .sticky-bar {
    display: none;
  }
}

/* ---------- Stat / credential blocks ---------- */
.stats {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat__num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-primary);
  display: block;
  line-height: 1.1;
}

.stat__label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ---------- Utility ---------- */
.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;
}

.muted {
  color: var(--color-text-muted);
}

.small {
  font-size: 0.9rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}

.no-margin {
  margin: 0;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
