/* ============================================================
   Mobile Vehicle Service LLC — mobilevehicleservicellc.com
   Main website stylesheet (2026 rebuild)
   Cars & Trucks | Mobile Service & In-Shop Repair
   ============================================================ */

:root {
  --color-bg:          #0a0a0a;
  --color-bg-alt:      #111111;
  --color-card:        #1a1a1a;
  --color-card-hover:  #202020;
  --color-text:        #ffffff;
  --color-text-muted:  #b0b0b0;
  --color-accent:      #dc2626;
  --color-accent-hover:#ef4444;
  --color-blue:        #3b82f6;
  --color-green:       #22c55e;
  --color-border:      #2a2a2a;
  --color-border-light:#3a3a3a;
  --font-family:       'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.25s ease;
  --container-max: 1200px;
  --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 1.25rem; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; border-radius: var(--radius-md);
  font-weight: 700; font-size: 1rem; line-height: 1.2; white-space: nowrap;
  transition: all var(--transition); text-align: center;
}
.btn-primary { background: var(--color-accent); color: #fff; box-shadow: 0 4px 20px rgba(220,38,38,0.35); }
.btn-primary:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--color-border-light); color: #fff; background: rgba(255,255,255,0.04); }
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* === Badges === */
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.75rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-mobile { background: rgba(220,38,38,0.15); color: var(--color-accent-hover); border: 1px solid rgba(220,38,38,0.4); }
.badge-shop   { background: rgba(59,130,246,0.15); color: #7db3ff; border: 1px solid rgba(59,130,246,0.4); }
.badge-247    { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.4); }

/* === Header === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-height);
  background: rgba(10,10,10,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color var(--transition);
}
.header-scrolled { border-bottom-color: var(--color-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.65rem; color: #fff; }
.logo-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--color-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; }
.logo-text { font-weight: 800; font-size: 0.95rem; letter-spacing: 0.04em; line-height: 1.15; }
.logo-sub { font-weight: 500; font-size: 0.68rem; color: var(--color-text-muted); letter-spacing: 0.02em; white-space: nowrap; }
.nav-desktop { display: none; gap: 1.1rem; }
.nav-desktop a { font-size: 0.85rem; font-weight: 600; color: var(--color-text-muted); white-space: nowrap; }
.nav-desktop a:hover, .nav-desktop a.active { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone { padding: 0.65rem 1.15rem; font-size: 0.9rem; white-space: nowrap; }
@media (max-width: 560px) {
  .header-phone { padding: 0.5rem 0.7rem; font-size: 0.78rem; }
  .logo-text { font-size: 0.78rem; }
  .logo-sub { display: none; }
  .logo-icon { width: 34px; height: 34px; }
  .header-inner { gap: 0.5rem; }
}
.menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: #fff; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; z-index: 99;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; padding: 1.5rem 1.25rem; gap: 0.25rem;
  transform: translateX(100%); transition: transform var(--transition); overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { padding: 0.9rem 0.5rem; font-size: 1.05rem; font-weight: 600; border-bottom: 1px solid var(--color-border); }
.mobile-nav a.active { color: var(--color-accent); }
.mobile-nav .nav-cta { margin-top: 1.25rem; border-bottom: none; }
.mobile-nav .nav-address { margin-top: 1rem; padding: 0.9rem 0.5rem; color: var(--color-text-muted); font-size: 0.9rem; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}

/* === Hero === */
.hero {
  position: relative; min-height: 92vh;
  min-height: min(92vh, 940px);
  display: flex; align-items: center;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  background-size: cover; background-position: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.96) 25%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.5));
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero-eyebrow { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.hero h1 { font-size: clamp(2rem, 5.5vw, 3.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--color-accent); }
.hero-sub { font-size: 1.15rem; color: var(--color-text-muted); margin-bottom: 2rem; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.875rem; color: var(--color-text-muted); }
.hero-trust span { display: flex; align-items: center; gap: 0.45rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }

/* Page hero (interior pages) */
.page-hero {
  position: relative; padding: calc(var(--header-height) + 4rem) 0 3.5rem;
  background-size: cover; background-position: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.88), rgba(10,10,10,0.94)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 800; line-height: 1.15; margin: 0.9rem 0 1rem; max-width: 760px; }
.page-hero p { color: var(--color-text-muted); font-size: 1.1rem; max-width: 640px; }
.breadcrumbs { font-size: 0.82rem; color: var(--color-text-muted); }
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-accent); }

/* === Sections === */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--color-bg-alt); }
.section-header { max-width: 720px; margin-bottom: 2.75rem; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow { color: var(--color-accent); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.6rem; }
.section-header h2 { font-size: clamp(1.6rem, 3.8vw, 2.4rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.01em; margin-bottom: 0.9rem; }
.section-header p { color: var(--color-text-muted); font-size: 1.05rem; }

/* === Two-branch cards (Cars / Trucks) === */
.branch-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .branch-grid { grid-template-columns: 1fr 1fr; } }
.branch-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-card); border: 1px solid var(--color-border);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.branch-card:hover { border-color: var(--color-accent); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.branch-img { height: 220px; overflow: hidden; position: relative; }
.branch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.branch-card:hover .branch-img img { transform: scale(1.05); }
.branch-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(26,26,26,1)); }
.branch-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; margin-top: -2.5rem; position: relative; z-index: 1; }
.branch-body h3 { font-size: 1.45rem; font-weight: 800; margin-bottom: 0.5rem; }
.branch-body > p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.branch-options { display: grid; gap: 0.75rem; margin-bottom: 1.5rem; }
.branch-option {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 1rem; border-radius: var(--radius-md);
  background: var(--color-bg-alt); border: 1px solid var(--color-border);
}
.branch-option svg { width: 26px; height: 26px; flex-shrink: 0; margin-top: 2px; }
.branch-option strong { display: block; font-size: 0.95rem; margin-bottom: 0.15rem; }
.branch-option span { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.45; display: block; }
.branch-body .btn { margin-top: auto; }

/* === Service grid === */
.service-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .service-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all var(--transition); display: flex; flex-direction: column; gap: 0.75rem;
}
.service-card:hover { border-color: var(--color-border-light); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.service-card .icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(220,38,38,0.12); display: flex; align-items: center; justify-content: center;
}
.service-card .icon-wrap svg { width: 28px; height: 28px; color: var(--color-accent); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; }
.service-card p { color: var(--color-text-muted); font-size: 0.92rem; flex: 1; }
.service-card .card-link { font-weight: 700; font-size: 0.9rem; color: var(--color-accent); }
.service-card .card-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; }

/* === Matrix (Mobile vs In-Shop) === */
.matrix { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .matrix { grid-template-columns: 1fr 1fr; } }
.matrix-col {
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden;
}
.matrix-col::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.matrix-col.mobile-col::before { background: var(--color-accent); }
.matrix-col.shop-col::before { background: var(--color-blue); }
.matrix-col h3 { font-size: 1.3rem; font-weight: 800; margin: 0.75rem 0 0.35rem; }
.matrix-col > p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.matrix-list li { display: flex; gap: 0.65rem; padding: 0.55rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--color-border); }
.matrix-list li:last-child { border-bottom: none; }
.matrix-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.mobile-col .matrix-list svg { color: var(--color-accent); }
.shop-col .matrix-list svg { color: var(--color-blue); }

/* === Shop block (address) === */
.shop-block {
  display: grid; gap: 2rem; align-items: center;
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem; overflow: hidden;
}
@media (min-width: 900px) { .shop-block { grid-template-columns: 1.1fr 1fr; padding: 2.5rem; } }
.shop-block h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 0.75rem; }
.shop-block .shop-desc { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.shop-info { display: grid; gap: 0.9rem; margin-bottom: 1.75rem; }
.shop-info-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.shop-info-item svg { width: 22px; height: 22px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.shop-info-item strong { display: block; font-size: 0.95rem; }
.shop-info-item span { color: var(--color-text-muted); font-size: 0.9rem; }
.shop-img { border-radius: var(--radius-md); overflow: hidden; }
.shop-img img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }

/* === Emergency banner === */
.emergency-banner {
  background: linear-gradient(120deg, #1a0303, #2a0606);
  border: 1px solid rgba(220,38,38,0.4); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center;
}
.emergency-banner h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: 0.6rem; }
.emergency-banner p { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.emergency-phone { font-size: clamp(1.6rem, 4.5vw, 2.6rem); font-weight: 800; color: var(--color-accent); display: block; margin-bottom: 0.4rem; }
.emergency-phone:hover { color: var(--color-accent-hover); }

/* === Steps === */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.75rem; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-accent); color: #fff; font-weight: 800; font-size: 1.15rem; margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p { color: var(--color-text-muted); font-size: 0.92rem; }

/* === Area / coverage === */
.area-wrap { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .area-wrap { grid-template-columns: 1fr 1fr; } }
.area-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); }
.chip-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.88rem; font-weight: 600;
  background: var(--color-card); border: 1px solid var(--color-border);
}
.chip:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* === FAQ === */
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-bottom: 0.75rem; background: var(--color-card); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem; font-weight: 700; font-size: 1rem; text-align: left;
}
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); color: var(--color-accent); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 1.4rem 1.25rem; color: var(--color-text-muted); font-size: 0.95rem; }

/* === Contact form === */
.form-wrap { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .form-wrap { grid-template-columns: 1fr 1.1fr; } }
.form-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 2rem; }
.form-grid { display: grid; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (min-width: 560px) { .form-grid { grid-template-columns: 1fr 1fr; } }
label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--color-text-muted); }
input, select, textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: var(--radius-sm);
  background: var(--color-bg); border: 1px solid var(--color-border-light);
  color: #fff; font-family: inherit; font-size: 0.95rem; transition: border-color var(--transition);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--color-accent); }
textarea { min-height: 120px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.privacy-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--color-text-muted); }
.privacy-check input { width: auto; margin-top: 3px; }
.form-note { font-size: 0.8rem; color: var(--color-text-muted); text-align: center; }
.contact-side h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.contact-line { display: flex; gap: 0.8rem; padding: 0.9rem 0; border-bottom: 1px solid var(--color-border); align-items: flex-start; }
.contact-line svg { width: 22px; height: 22px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.contact-line strong { display: block; font-size: 0.9rem; }
.contact-line a, .contact-line span { color: var(--color-text-muted); font-size: 0.95rem; }
.contact-line a:hover { color: var(--color-accent); }

/* === CTA section === */
.cta-section { text-align: center; }
.cta-section h2 { font-size: clamp(1.6rem, 3.8vw, 2.3rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta-section > .container > p { color: var(--color-text-muted); margin-bottom: 1.75rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* === Footer === */
.footer { background: #070707; border-top: 1px solid var(--color-border); padding: 3.5rem 0 0; }
.footer-grid { display: grid; gap: 2rem; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand p { color: var(--color-text-muted); font-size: 0.9rem; margin: 1rem 0; max-width: 300px; }
.footer-address { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; }
.footer h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 1rem; }
.footer-links a { display: block; padding: 0.3rem 0; font-size: 0.92rem; color: var(--color-text-muted); }
.footer-links a:hover { color: var(--color-accent); }
.footer-bottom { border-top: 1px solid var(--color-border); padding: 1.4rem 0; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between; font-size: 0.82rem; color: var(--color-text-muted); }

/* === Sticky mobile call bar === */
.sticky-call {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: flex; gap: 0; background: rgba(10,10,10,0.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
}
.sticky-call a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem; font-weight: 700; font-size: 0.95rem;
}
.sticky-call .call-btn { background: var(--color-accent); color: #fff; }
.sticky-call .call-btn:hover { color: #fff; background: var(--color-accent-hover); }
.sticky-call svg { width: 20px; height: 20px; }
@media (min-width: 768px) { .sticky-call { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 56px; } }

/* === Reveal animations === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* === Misc === */
.text-accent { color: var(--color-accent); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.two-col { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col img { border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.check-list li { display: flex; gap: 0.65rem; padding: 0.45rem 0; font-size: 0.98rem; }
.check-list svg { width: 22px; height: 22px; color: var(--color-green); flex-shrink: 0; margin-top: 1px; }
.prose p { color: var(--color-text-muted); margin-bottom: 1rem; }
.prose h2 { font-size: 1.4rem; margin: 1.75rem 0 0.75rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; color: var(--color-text-muted); margin-bottom: 1rem; }
.prose li { margin-bottom: 0.35rem; }

/* === Image aspect guards (CLS) === */
.two-col img, .area-img img, .shop-img img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.branch-img img { aspect-ratio: 16/9; }

/* === Reviews v2 === */
.reviews-grid { display: grid; gap: 1.4rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  position: relative;
  background: linear-gradient(165deg, #1e1e1e 0%, #141414 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: all var(--transition);
  overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 0.4rem; left: 1.1rem;
  font-family: Georgia, serif; font-size: 4.2rem; line-height: 1;
  color: var(--color-accent); opacity: 0.9;
}
.review-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent 65%);
  opacity: 0; transition: opacity var(--transition);
}
.review-card:hover { border-color: rgba(220,38,38,0.45); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.5); }
.review-card:hover::after { opacity: 1; }
.review-top { display: flex; align-items: center; justify-content: space-between; }
.review-stars { color: #fbbf24; font-size: 0.95rem; letter-spacing: 0.18em; }
.review-google {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem; font-weight: 600; color: var(--color-text-muted);
  border: 1px solid var(--color-border); border-radius: 999px; padding: 0.22rem 0.6rem;
}
.review-google svg { width: 13px; height: 13px; }
.review-text { color: #d8d8d8; font-size: 0.95rem; line-height: 1.7; flex: 1; }
.review-author { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid var(--color-border); padding-top: 0.9rem; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: rgba(220,38,38,0.14); color: var(--color-accent);
  border: 1.5px solid rgba(220,38,38,0.5);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
}
.review-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.review-author span { font-size: 0.75rem; color: var(--color-text-muted); }
.rating-banner {
  display: inline-flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center;
  background: linear-gradient(165deg, #1e1e1e, #141414);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 1.1rem 2rem; margin-bottom: 2.25rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.rating-banner .big { font-size: 2.1rem; font-weight: 800; line-height: 1; }
.rating-banner .stars { color: #fbbf24; letter-spacing: 0.12em; font-size: 1.05rem; }
.rating-banner span { color: var(--color-text-muted); font-size: 0.88rem; }

/* === Interactive features (maps, weather, geo) === */
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card); position: relative;
}
.map-frame .leaflet-container { background: #0a0a0a; font-family: var(--font-family); }
.map-frame .leaflet-control-attribution { background: rgba(10,10,10,0.7); color: #666; font-size: 9px; }
.map-frame .leaflet-control-attribution a { color: #888; }
.map-frame .leaflet-popup-content-wrapper { background: #1a1a1a; color: #fff; border-radius: 8px; }
.map-frame .leaflet-popup-tip { background: #1a1a1a; }
.units-map { height: 420px; }
.coverage-map { height: 480px; }
.geo-map { height: 240px; }
@media (max-width: 767px) { .units-map { height: 320px; } .coverage-map { height: 340px; } }

.unit-marker { position: relative; }
.unit-dot {
  position: absolute; inset: 6px; border-radius: 50%;
  background: var(--color-accent); border: 2px solid #fff;
  box-shadow: 0 0 8px rgba(220,38,38,0.9); z-index: 2;
}
.unit-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(220,38,38,0.45);
  animation: unitPulse 2s ease-out infinite;
}
@keyframes unitPulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.map-legend {
  display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1rem;
  font-size: 0.85rem; color: var(--color-text-muted);
}
.map-legend span { display: flex; align-items: center; gap: 0.45rem; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.legend-dot.red { background: var(--color-accent); box-shadow: 0 0 6px rgba(220,38,38,0.8); }
.legend-dot.ring { background: transparent; border: 2px solid var(--color-accent); }
.legend-dot.gold { background: #fbbf24; }

.weather-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(26,26,26,0.85); border: 1px solid var(--color-border);
  border-radius: 999px; padding: 0.5rem 1.1rem;
  font-size: 0.85rem; color: var(--color-text-muted);
}
.weather-pill .wx-icon { font-size: 1.15rem; }
.weather-pill .wx-temp { font-weight: 800; color: #fff; font-size: 0.95rem; }
.weather-pill .wx-city { font-size: 0.75rem; opacity: 0.75; }

.geo-box {
  grid-column: 1 / -1;
  background: var(--color-bg); border: 1px dashed var(--color-border-light);
  border-radius: var(--radius-md); padding: 1.1rem;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.geo-box-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.geo-box-head p { font-size: 0.85rem; color: var(--color-text-muted); flex: 1; min-width: 200px; }
.geo-status { font-size: 0.85rem; color: var(--color-text-muted); }
.geo-status.ok { color: #4ade80; }
.geo-status.err { color: #f87171; }
#geo-map-wrap { display: none; border-radius: var(--radius-sm); overflow: hidden; }

/* === Weather card (visible version) === */
.weather-card {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(26,26,26,0.72); backdrop-filter: blur(10px);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg); padding: 0.9rem 1.4rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.weather-card .wx-icon { font-size: 2.2rem; line-height: 1; }
.weather-card .wx-main { display: flex; flex-direction: column; }
.weather-card .wx-temp { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1.1; }
.weather-card .wx-desc { font-size: 0.82rem; color: var(--color-text-muted); }
.weather-card .wx-city {
  font-size: 0.72rem; color: var(--color-text-muted);
  display: flex; align-items: center; gap: 0.35rem;
}
.weather-card .wx-city::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; animation: liveBlink 2s ease-in-out infinite;
}
@keyframes liveBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* === Quick request form block (conversion funnel) === */
.quick-form-wrap {
  display: grid; gap: 2.25rem; align-items: center;
  background: linear-gradient(145deg, #1c1c1c 0%, #121212 100%);
  border: 1px solid rgba(220,38,38,0.35);
  border-radius: var(--radius-lg);
  padding: 2.25rem; position: relative; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.quick-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--color-accent), transparent 70%);
}
.quick-form-wrap { grid-template-columns: minmax(0, 1fr); }
.quick-form-wrap select, .quick-form-wrap input, .quick-form-wrap textarea { min-width: 0; max-width: 100%; }
@media (min-width: 960px) { .quick-form-wrap { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); padding: 2.75rem; } }
.qf-pitch h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); font-weight: 800; margin-bottom: 0.75rem; }
.qf-pitch > p { color: var(--color-text-muted); margin-bottom: 1.25rem; }
.qf-points { display: grid; gap: 0.7rem; margin-bottom: 1.5rem; }
.qf-points li { display: flex; gap: 0.6rem; align-items: center; font-size: 0.95rem; }
.qf-points svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; }
.qf-call { display: flex; align-items: center; gap: 0.9rem; }
.qf-call .num { font-size: 1.5rem; font-weight: 800; color: var(--color-accent); }
.qf-call span { font-size: 0.8rem; color: var(--color-text-muted); display: block; }
.qf-form {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.5rem;
}
.qf-form .form-grid { gap: 0.85rem; }

/* === Geo box OR divider === */
.geo-or { display: flex; align-items: center; gap: 0.75rem; color: var(--color-text-muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; }
.geo-or::before, .geo-or::after { content: ''; flex: 1; height: 1px; background: var(--color-border); }

/* === Mobile fixes: geo/form blocks === */
@media (max-width: 767px) {
  .quick-form-wrap { padding: 1.5rem 1.1rem; }
  .qf-form { padding: 1.1rem; }
  .geo-box-head { flex-direction: column; align-items: stretch; }
  .geo-box-head p { min-width: 0; }
  .geo-box-head .btn { width: 100%; white-space: normal; }
  .geo-map { height: 200px; }
  .weather-card { padding: 0.75rem 1rem; gap: 0.7rem; }
  .weather-card .wx-icon { font-size: 1.7rem; }
  .weather-card .wx-temp { font-size: 1.2rem; }
  .qf-call .num { font-size: 1.25rem; }
}
@media (max-width: 380px) {
  .weather-card .wx-city { display: none; }
}

/* === Button wrap fix (mobile overflow) === */
.qf-form .btn, .geo-box .btn, .form-card .btn { white-space: normal; line-height: 1.3; }
