/* =========================================================
   AUTOWERKSTATT Rudi Engelhardt — Website Stylesheet
   Designrichtung: Lokal & Vertrauensvoll
   Hesselbach · Wilhelmsthal · Oberfranken
   ========================================================= */

/* --- Lokal gehostete Outfit-Schrift (DSGVO-konform, kein Google-CDN) --- */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Reset & Basis --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Design-Tokens — Variante A: Lokal & Vertrauensvoll --- */
:root {
  --c-bg: #ffffff;
  --c-bg-alt: #f6f7f9;           /* dezenter Grauton */
  --c-bg-soft: #eef0f4;
  --c-text: #202938;             /* warmes Anthrazit */
  --c-text-muted: #5b6470;
  --c-heading: #151a21;
  --c-accent: #ea580c;           /* Werkstatt-Orange, passt zum Logo */
  --c-accent-hover: #c2410c;
  --c-accent-soft: #fde4d3;
  --c-dark: #172033;             /* dunkle Trust-Strip-Farbe */
  --c-dark-2: #0f1626;
  --c-border: #dde2ea;
  --c-border-strong: #b9c0cb;
  --c-success: #16a34a;
  --c-danger: #b91c1c;

  --shadow-sm: 0 1px 3px rgba(20,30,50,0.06);
  --shadow-md: 0 8px 24px rgba(20,30,50,0.08);
  --shadow-lg: 0 16px 38px rgba(28,37,54,0.12);

  --radius: 8px;
  --radius-lg: 12px;

  --container: 1180px;
  --space: 1.5rem;
}

/* --- Typo --- */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--c-heading);
  line-height: 1.15;
  margin: 0 0 0.8em;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1.1em; }
.lead { font-size: 1.18rem; color: var(--c-text-muted); }
.text-muted { color: var(--c-text-muted); }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
section { padding: 4.5rem 0; }
section.tight { padding: 3rem 0; }
.bg-alt { background: var(--c-bg-alt); }
.bg-soft { background: var(--c-bg-soft); }
.bg-dark { background: var(--c-dark); color: #d4d8de; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }

/* --- Header / Navigation (heller Header) --- */
.site-header {
  background: #fff;
  color: var(--c-heading);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 1px 0 rgba(20,30,50,0.02);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--c-heading);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-link:hover { text-decoration: none; }
.logo-mark {
  width: 58px; height: 58px;
  fill: var(--c-accent);
  flex-shrink: 0;
  display: block;
}
img.logo-mark { object-fit: contain; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .name {
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--c-heading);
}
.logo-text .sub {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.nav a:not(.btn) {
  color: var(--c-text);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.4rem 0;
  position: relative;
  text-decoration: none;
}
.nav a:not(.btn):hover { color: var(--c-accent); text-decoration: none; }
.nav a.active:not(.btn) { color: var(--c-accent); }
.nav a.active:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--c-accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-heading);
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.15s ease;
  line-height: 1;
}
.btn-primary {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.btn-primary:hover { background: var(--c-accent-hover); border-color: var(--c-accent-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--c-heading);
  border-color: var(--c-border-strong);
}
.btn-outline:hover { background: var(--c-heading); color: #fff; border-color: var(--c-heading); }
.btn-light {
  background: #fff;
  color: var(--c-heading);
  border-color: #fff;
}
.btn-light:hover { background: var(--c-bg-soft); border-color: var(--c-bg-soft); }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }

/* --- Hero — heller Werkstatt-Verlauf --- */
.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.62)),
    linear-gradient(135deg, #e8ebef 0%, #c2c7cf 48%, #76818d 100%);
  color: var(--c-heading);
  overflow: hidden;
  padding: 5.5rem 0 5rem;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,32,51,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,32,51,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  color: var(--c-heading);
  margin-bottom: 1rem;
  line-height: 1.05;
}
.hero h1 .highlight { color: var(--c-accent); }
.hero .eyebrow {
  display: inline-block;
  color: var(--c-accent);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero .lead {
  color: var(--c-text);
  font-size: 1.18rem;
  margin-bottom: 1.8rem;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(23,32,51,0.15);
  color: var(--c-text-muted);
  font-size: 0.95rem;
}
.hero-meta strong { color: var(--c-heading); font-weight: 700; display: block; }
.hero-visual {
  position: relative;
  text-align: center;
}
.hero-visual svg, .hero-visual img {
  width: 100%;
  max-width: 750px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 38px rgba(20,30,50,0.18));
  display: block;
}

/* --- Trust-Strip (dunkle Leiste mit Vertrauenselementen) --- */
.trust-strip {
  background: var(--c-dark);
  color: #fff;
  padding: 1.8rem 0;
}
.trust-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.1rem 2.5rem;
}
.trust-strip .trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 600;
  font-size: 1.08rem;
  color: #fff;
}
.trust-strip .trust-item svg {
  width: 26px; height: 26px;
  fill: var(--c-accent);
  flex-shrink: 0;
}
.trust-strip .trust-item strong {
  color: #fff;
  font-weight: 700;
}
.trust-strip .trust-item span {
  color: #c5cbd6;
  font-weight: 500;
}

/* --- USPs / Feature-Boxen --- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.usp {
  background: #fff;
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.usp:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--c-border-strong); }
.usp-icon {
  width: 52px; height: 52px;
  background: var(--c-accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.usp-icon svg { width: 26px; height: 26px; fill: var(--c-accent); }
.usp h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.usp p { margin: 0; color: var(--c-text-muted); font-size: 0.95rem; }

/* --- Service Cards (helle Karten auf hellem Grund) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
}
.services-grid .service-card { grid-column: span 2; }
/* Wenn genau 5 Cards vorhanden sind: die letzten zwei in Reihe 2 horizontal zentrieren */
.services-grid .service-card:nth-child(4):nth-last-child(2) { grid-column: 2 / span 2; }
.services-grid .service-card:nth-child(5):last-child { grid-column: 4 / span 2; }
.service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: all 0.2s;
  position: relative;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--c-border-strong);
}
.service-card .icon-wrap {
  width: 54px; height: 54px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.service-card .icon-wrap svg { width: 28px; height: 28px; fill: var(--c-accent); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--c-heading); }
.service-card p { color: var(--c-text-muted); margin: 0; }
.service-card ul { color: var(--c-text); }

/* --- Section-Header --- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-header .eyebrow {
  display: inline-block;
  color: var(--c-accent);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-header h2 { margin-bottom: 0.6rem; }
.section-header p { color: var(--c-text-muted); font-size: 1.08rem; margin: 0; }

/* --- Vertrauensbereich: Bewertung, Ersatzwagen, Kostenvoranschlag --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  text-align: center;
}
.trust-card .big {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.trust-card .stars {
  color: var(--c-accent);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}
.trust-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.trust-card p { color: var(--c-text-muted); margin: 0; font-size: 0.96rem; }
.trust-card .icon-large {
  width: 56px; height: 56px;
  background: var(--c-accent-soft);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.trust-card .icon-large svg { width: 28px; height: 28px; fill: var(--c-accent); }

/* --- CTA-Banner (dunkel) --- */
.cta-banner {
  background: var(--c-dark);
  color: #fff;
  padding: 4rem 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin: 0 0 0.4rem; }
.cta-banner p { color: #c5cbd6; margin: 0; max-width: 540px; }
.cta-banner .btn-group { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* --- Öffnungszeiten-Box --- */
.hours-box {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.hours-box h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.hours-box h3 svg { width: 24px; height: 24px; fill: var(--c-accent); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--c-border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table tr.today { background: var(--c-accent-soft); }
.hours-table tr.today td { font-weight: 700; color: var(--c-heading); }
.hours-table td { padding: 0.65rem 0; color: var(--c-text); }
.hours-table td:last-child { text-align: right; }
.hours-status {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}
.hours-status.open { background: rgba(22,163,74,0.12); color: var(--c-success); }
.hours-status.closed { background: var(--c-accent-soft); color: var(--c-danger); }
.hours-status .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.hours-status.open .dot { background: var(--c-success); }
.hours-status.closed .dot { background: var(--c-danger); }

/* --- Kontakt-Layout --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--c-border);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .icon {
  width: 40px; height: 40px;
  background: var(--c-accent-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-list .icon svg { width: 20px; height: 20px; fill: var(--c-accent); }
.contact-info-list .label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-info-list .value {
  font-size: 1.05rem;
  color: var(--c-heading);
  font-weight: 600;
}
.contact-info-list a { color: var(--c-heading); }
.contact-info-list a:hover { color: var(--c-accent); }

/* --- Form --- */
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: var(--c-heading);
}
.form-group .required { color: var(--c-accent); }
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  color: var(--c-text);
}
.form-control:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(234,88,12,0.12);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--c-text-muted);
}
.form-check input { margin-top: 0.25rem; flex-shrink: 0; }
.form-alert {
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.form-alert.success { background: rgba(22,163,74,0.08); color: var(--c-success); border: 1px solid rgba(22,163,74,0.25); }
.form-alert.error { background: var(--c-accent-soft); color: var(--c-danger); border: 1px solid rgba(234,88,12,0.25); }

/* --- Map Box --- */
.map-wrap {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-bg-alt);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-consent {
  position: absolute;
  inset: 0;
  background: var(--c-dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 2;
}
.map-consent svg { width: 48px; height: 48px; fill: var(--c-accent); margin-bottom: 1rem; }
.map-consent h4 { color: #fff; margin: 0 0 0.6rem; font-size: 1.2rem; }
.map-consent p { color: #c5cbd6; margin: 0 0 1.4rem; font-size: 0.95rem; max-width: 380px; }
.map-consent.hidden { display: none; }

/* --- Footer --- */
.site-footer {
  background: var(--c-dark-2);
  color: #a8b0bc;
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 0.55rem; }
.footer-grid a { color: #a8b0bc; text-decoration: none; }
.footer-grid a:hover { color: var(--c-accent); }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand svg, .footer-brand img { width: 50px; height: 50px; fill: var(--c-accent); object-fit: contain; }
.footer-brand .name { color: #fff; font-weight: 800; font-size: 1.1rem; }
.footer-brand .sub { color: #6b7280; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.86rem;
  color: #6b7280;
}

/* --- Page Headers (Subpages) — hell --- */
.page-header {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,255,255,0.6)),
    linear-gradient(135deg, #e8ebef 0%, #c2c7cf 48%, #76818d 100%);
  color: var(--c-heading);
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--c-border);
}
.page-header .container { position: relative; }
.page-header h1 { color: var(--c-heading); margin-bottom: 0.5rem; }
.page-header p { color: var(--c-text); font-size: 1.1rem; margin: 0; max-width: 720px; }
.breadcrumb {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  margin-bottom: 1rem;
  font-weight: 600;
}
.breadcrumb a { color: var(--c-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-accent); }

/* --- Legal Page Content --- */
.legal-content h2 { margin-top: 2.2rem; font-size: 1.45rem; color: var(--c-heading); }
.legal-content h3 { margin-top: 1.6rem; font-size: 1.1rem; color: var(--c-heading); }
.legal-content p, .legal-content li { color: var(--c-text); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
  .footer-grid { gap: 2rem; }
  /* Service-Cards: 2 Spalten auf Tablet, Zentrierungs-Override deaktivieren */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card,
  .services-grid .service-card:nth-child(4):nth-last-child(2),
  .services-grid .service-card:nth-child(5):last-child { grid-column: auto; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
    gap: 0.2rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.8rem 0; border-bottom: 1px solid var(--c-border); }
  .nav a.active::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .cta-banner .container { flex-direction: column; text-align: center; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { padding: 1.2rem 0; }
  .trust-strip .container { grid-template-columns: 1fr; gap: 0.8rem; }
  .trust-strip .trust-item { font-size: 1rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .logo-text .name { font-size: 1.05rem; }
  .logo-text .sub { font-size: 0.65rem; }
  .hero h1 { font-size: 2rem; }
  .hero .lead { font-size: 1.05rem; }
  .btn { padding: 0.85rem 1.2rem; font-size: 0.96rem; }
}
