/* =========================================================
   Scrap My Car Coventry — Stylesheet
   ========================================================= */

/* --- Reset & Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a202c;
  background: #fff;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* --- CSS Variables --------------------------------------- */
:root {
  --primary:       #1a3a6b;
  --primary-dark:  #112447;
  --accent:        #e8720c;
  --accent-dark:   #c85e08;
  --text:          #1a202c;
  --text-muted:    #4a5568;
  --bg-light:      #f7f9fc;
  --border:        #e2e8f0;
  --white:         #ffffff;
  --radius:        8px;
  --radius-lg:     14px;
  --shadow:        0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:     0 6px 28px rgba(0,0,0,0.12);
  --transition:    0.2s ease;
  --header-h:      68px;
}

/* --- Typography ------------------------------------------ */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--primary-dark); }
h1 { font-size: clamp(1.7rem, 4vw, 2.7rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.15rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
p  { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }

/* --- Layout --------------------------------------------- */
.container   { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.section     { padding: 4rem 0; }
.section-sm  { padding: 2.5rem 0; }
.bg-light    { background: var(--bg-light); }
.text-center { text-align: center; }

/* --- Buttons -------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  white-space: nowrap; line-height: 1.2;
}
.btn:hover           { transform: translateY(-1px); }
.btn-primary         { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover   { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-secondary       { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline         { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline:hover   { background: #fff; color: var(--primary); border-color: #fff; }
.btn-lg   { padding: 0.9rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- Top Bar -------------------------------------------- */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem; padding: 0.45rem 0;
}
.top-bar .container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.top-bar-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-weight: 700; font-size: 0.95rem; color: #fff;
}
.top-bar-phone a       { color: #fff; }
.top-bar-phone a:hover { color: var(--accent); }
.top-bar-hours         { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* --- Header / Nav --------------------------------------- */
.site-header {
  background: var(--primary); position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.7rem; }
.logo-icon {
  width: 40px; height: 40px; background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; flex-shrink: 0;
}
.logo-text    { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name    { font-size: 1rem; font-weight: 700; color: #fff; }
.logo-tagline { font-size: 0.65rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }

/* Desktop nav */
.nav-desktop    { display: none; }
.nav-desktop ul { display: flex; align-items: center; gap: 0.15rem; }
.nav-desktop a {
  color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 500;
  padding: 0.5rem 0.7rem; border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.nav-desktop a:hover,
.nav-desktop a.active    { background: rgba(255,255,255,0.12); color: #fff; }
.nav-cta-link            { background: var(--accent) !important; color: #fff !important; margin-left: 0.5rem; }
.nav-cta-link:hover      { background: var(--accent-dark) !important; }

/* Hamburger */
.menu-toggle {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 38px; height: 38px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile { display: none; background: var(--primary-dark); position: absolute; top: 100%; left: 0; right: 0; box-shadow: 0 6px 16px rgba(0,0,0,0.25); }
.nav-mobile.is-open { display: block; }
.nav-mobile ul      { padding: 0.5rem 0; }
.nav-mobile a {
  display: block; color: rgba(255,255,255,0.88);
  padding: 0.75rem 1.5rem; font-size: 0.975rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}
.nav-mobile a:hover { background: rgba(255,255,255,0.07); }
.nav-mobile-cta {
  display: block !important; margin: 0.75rem 1.25rem !important;
  background: var(--accent) !important; border-radius: var(--radius) !important;
  text-align: center !important; border-bottom: none !important; font-weight: 700 !important;
}

/* --- Hero ----------------------------------------------- */
.hero {
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 3.5rem 0; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,114,12,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; position: relative; z-index: 1; }
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(232,114,12,0.18); border: 1px solid rgba(232,114,12,0.35);
  color: #ffb870; font-size: 0.78rem; font-weight: 700;
  padding: 0.3rem 0.75rem; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem;
}
.hero h1   { color: #fff; margin-bottom: 1rem; }
.hero-lead { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 1.75rem; line-height: 1.75; }
.hero-checks     { display: flex; flex-direction: column; gap: 0.5rem; }
.hero-check      { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.hero-check-icon {
  width: 20px; height: 20px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: #fff; flex-shrink: 0; font-weight: 700;
}

/* Quote card */
.quote-card { background: #fff; border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: 0 12px 48px rgba(0,0,0,0.28); }
.quote-card-head { margin-bottom: 1.25rem; }
.quote-card-head h3 { color: var(--primary-dark); font-size: 1.25rem; margin-bottom: 0.2rem; }
.quote-card-head p  { font-size: 0.875rem; margin: 0; }

/* Forms */
.form-group   { margin-bottom: 1rem; }
.form-label   { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.form-control {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.975rem; color: var(--text); background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,107,0.1); }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-note  { font-size: 0.775rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }
.form-success {
  display: none; background: #f0fdf4; border: 1px solid #86efac;
  border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center;
}
.form-success h4 { color: #166534; margin-bottom: 0.5rem; }
.form-success p  { color: #15803d; }

/* --- Trust Bar ------------------------------------------ */
.trust-bar { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 1.4rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-icon {
  width: 44px; height: 44px; background: rgba(26,58,107,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.trust-label { font-size: 0.875rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.trust-sub   { font-size: 0.775rem; color: var(--text-muted); margin-top: 0.1rem; }

/* --- Section Headers ------------------------------------ */
.section-header          { margin-bottom: 2.5rem; }
.section-header.centered { text-align: center; }
.section-tag { display: inline-block; font-size: 0.775rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 0.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { font-size: 1rem; max-width: 580px; }
.section-header.centered p { margin: 0 auto; }

/* --- Cards ---------------------------------------------- */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover      { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon       { font-size: 2rem; margin-bottom: 0.85rem; display: block; }
.card h3         { margin-bottom: 0.5rem; }
.card-accent-top { border-top: 3px solid var(--accent); }

/* --- Steps ---------------------------------------------- */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.step       { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  width: 50px; height: 50px; flex-shrink: 0; background: var(--accent);
  color: #fff; font-size: 1.2rem; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-body h3 { margin-bottom: 0.4rem; }

/* --- Feature List --------------------------------------- */
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.feature-check {
  width: 22px; height: 22px; flex-shrink: 0; background: #dcfce7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: #16a34a; font-weight: 700; margin-top: 0.1rem;
}
.feature-item p { margin: 0; font-size: 0.95rem; }

/* --- Areas Grid ----------------------------------------- */
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
.area-tag {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.75rem; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.875rem; color: var(--text);
}
.area-tag::before { content: '📍'; font-size: 0.85rem; flex-shrink: 0; }

/* --- FAQ Accordion -------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.6rem; overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.25rem; cursor: pointer; background: #fff; user-select: none;
  font-weight: 600; font-size: 0.975rem; color: var(--primary-dark);
  gap: 1rem; transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-toggle {
  width: 26px; height: 26px; flex-shrink: 0; background: var(--bg-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.15rem; transition: transform 0.3s, background 0.2s;
}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); background: rgba(232,114,12,0.1); }
.faq-answer {
  display: none; padding: 0 1.25rem 1.1rem;
  background: var(--bg-light); border-top: 1px solid var(--border);
  color: var(--text-muted); line-height: 1.75; font-size: 0.95rem;
}
.faq-answer p:first-child { margin-top: 1rem; }

/* --- Page Hero ------------------------------------------ */
.page-hero { background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 2.75rem 0; }
.page-hero h1 { color: #fff; margin-bottom: 0.7rem; }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 640px; margin-bottom: 0; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 0.9rem;
}
.breadcrumb a       { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep     { color: rgba(255,255,255,0.35); }

/* --- Inline CTA Block ----------------------------------- */
.inline-cta {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin: 2.5rem 0;
}
.inline-cta-text p       { color: rgba(255,255,255,0.8); margin: 0; font-size: .9rem; }
.inline-cta-text strong  { color: #fff; font-size: 1rem; display: block; margin-bottom: .2rem; }
.inline-cta-buttons      { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-wa                  { background: #25d366; color: #fff; border-color: #25d366; }
.btn-wa:hover            { background: #1fbe5a; border-color: #1fbe5a; }

/* --- Price / Bullet List -------------------------------- */
.bullet-list             { padding-left: 0; list-style: none; }
.bullet-list li          { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .65rem; font-size: .95rem; color: var(--text-muted); }
.bullet-list li::before  { content: '—'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.bullet-list li strong   { color: var(--text); }

/* --- Accepts Grid --------------------------------------- */
.accepts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; }
.accepts-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .65rem .85rem; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: .875rem; color: var(--text);
}
.accepts-item::before { content: '✓'; color: #16a34a; font-weight: 700; flex-shrink: 0; }

/* --- CTA Banner ----------------------------------------- */
.cta-banner { background: linear-gradient(135deg, var(--accent) 0%, #c85e08 100%); padding: 3.5rem 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; font-size: 1.05rem; }
.cta-buttons   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Info / Two-column grid ----------------------------- */
.info-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }

/* --- Highlight Box -------------------------------------- */
.highlight-box { background: #eff6ff; border: 1px solid #bfdbfe; border-left: 4px solid var(--primary); border-radius: var(--radius); padding: 1.25rem; }
.highlight-box p { color: #1e40af; margin: 0; font-size: 0.9rem; }

/* --- Contact Details ------------------------------------ */
.contact-detail      { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon { width: 46px; height: 46px; flex-shrink: 0; background: rgba(26,58,107,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-detail-body strong { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-detail-body a       { color: var(--primary); font-weight: 600; font-size: 1.05rem; }
.contact-detail-body a:hover { color: var(--accent); }
.contact-detail-body p       { margin: 0; font-size: 0.95rem; }

/* --- Footer --------------------------------------------- */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.7); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p     { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.footer-heading     { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.footer-links       { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a       { color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-contact-item  { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; font-size: 0.875rem; }
.footer-contact-item a       { color: #fff; font-weight: 600; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-contact-item span    { color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.footer-bottom a       { color: rgba(255,255,255,0.48); }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* --- Mobile Sticky Buttons ------------------------------ */
.mobile-sticky { position: fixed; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: 1fr 1fr; z-index: 200; box-shadow: 0 -3px 14px rgba(0,0,0,0.18); }
.sticky-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.9rem 1rem; font-size: 0.925rem; font-weight: 700;
  color: #fff; border: none; cursor: pointer; text-decoration: none; font-family: inherit;
}
.sticky-call       { background: var(--primary); }
.sticky-call:hover { background: var(--primary-dark); }
.sticky-wa         { background: #25d366; }
.sticky-wa:hover   { background: #1fbe5a; }

/* --- Truck Strip ---------------------------------------- */
.truck-strip        { width: 100%; overflow: hidden; position: relative; height: 240px; }
.truck-strip img    { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; display: block; }
.truck-strip-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,22,46,0.72));
  padding: 1.5rem 1.5rem 0.75rem;
  color: rgba(255,255,255,0.92); font-size: 0.85rem;
}
.truck-strip-caption strong { color: #fff; }
@media (min-width: 640px)  { .truck-strip { height: 320px; } }
@media (min-width: 1024px) { .truck-strip { height: 400px; } }

/* --- Latest Collections --------------------------------- */
.collections-list { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.collection-entry {
  position: relative;
  padding: 1.1rem 1.35rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.collection-entry:last-child { border-bottom: none; }
.collection-entry:hover      { background: var(--bg-light); }
.collection-entry.is-example { background: #fffbf0; }
.collection-entry.is-example:hover { background: #fff8e6; }
.collection-example-badge {
  position: absolute; top: .85rem; right: 1rem;
  background: #fef3c7; color: #92400e;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  padding: .2rem .5rem; border-radius: 4px; letter-spacing: .04em;
}
.collection-meta    { display: flex; align-items: center; gap: .5rem; margin-bottom: .3rem; flex-wrap: wrap; }
.collection-date    { font-size: .78rem; color: var(--text-muted); font-weight: 500; }
.collection-sep     { color: var(--border); font-size: .9rem; }
.collection-area    { font-size: .78rem; color: var(--accent); font-weight: 600; }
.collection-vehicle { font-weight: 700; color: var(--primary-dark); font-size: .975rem; margin-bottom: .3rem; }
.collection-desc    { font-size: .875rem; color: var(--text-muted); margin: 0; line-height: 1.6; padding-right: 4rem; }
.collections-footer { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: .85rem; }

/* --- Why Choose Us Grid --------------------------------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.why-item {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.5rem; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  border-top: 3px solid var(--accent);
}
.why-icon        { font-size: 1.75rem; line-height: 1; }
.why-item h3     { font-size: 1rem; margin-bottom: 0; }
.why-item p      { font-size: 0.875rem; margin: 0; line-height: 1.65; }

/* --- Reviews -------------------------------------------- */
.reviews-placeholder {
  max-width: 580px; margin: 0 auto; text-align: center;
  padding: 2.5rem 2rem; background: #fff;
  border: 2px dashed var(--border); border-radius: var(--radius-lg);
}
.stars-row       { color: #f59e0b; font-size: 1.6rem; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.reviews-note    { font-weight: 600; color: var(--text); margin-bottom: 0.6rem; font-size: 0.975rem; }
.reviews-cta-note { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* --- Map Section ----------------------------------------- */
.map-section { background: var(--bg-light); }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 1.5rem;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (min-width: 560px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid  { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .nav-desktop   { display: flex; }
  .menu-toggle   { display: none; }
  .hero          { padding: 5.5rem 0; }
  .hero-grid     { grid-template-columns: 1fr 420px; align-items: center; gap: 3.5rem; }
  .hero-checks   { flex-direction: row; flex-wrap: wrap; gap: 0.6rem 1.5rem; }
  .cards-grid    { grid-template-columns: repeat(3, 1fr); }
  .steps-grid    { grid-template-columns: repeat(3, 1fr); }
  .why-grid      { grid-template-columns: repeat(5, 1fr); }
  .footer-grid   { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .mobile-sticky { display: none; }
  .areas-grid    { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1023px) { body { padding-bottom: 58px; } }
@media (max-width: 560px) { .map-embed iframe { height: 280px; } }
