:root {
  --ink: #101820;
  --muted: #5e6872;
  --line: #dde3e7;
  --soft: #f6f7f8;
  --white: #ffffff;
  --blue: #101820;
  --blue-dark: #101820;
  --green: #1f5e4a;
  --amber: #f88c00;
  --orange-dark: #d97300;
  --red: #f88c00;
  --shadow: 0 16px 40px rgba(14, 38, 64, .12);
  --display-font: Impact, Haettenschweiler, "Arial Black", "Arial Narrow Bold", Arial, sans-serif;
  --body-font: Arial, Helvetica, sans-serif;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
svg { width: 1.05em; height: 1.05em; fill: currentColor; flex: 0 0 auto; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: white;
  padding: .7rem 1rem;
  z-index: 30;
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: repeating-linear-gradient(120deg, var(--amber) 0 48px, transparent 48px 70px);
}
.topbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.brand-logo {
  width: min(292px, 48vw);
  height: auto;
}
.brand-location {
  border-left: 3px solid var(--amber);
  padding-left: .7rem;
  color: var(--muted);
  font-family: var(--display-font);
  font-size: .86rem;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.site-nav a, .mini-action {
  text-decoration: none;
  border-radius: 8px;
  padding: .65rem .75rem;
  color: #243546;
  font-weight: 700;
  font-size: .94rem;
}
.site-nav a[aria-current="page"], .site-nav a:hover {
  background: var(--soft);
  color: var(--ink);
}
.header-actions { display: flex; gap: .5rem; align-items: center; }
.mini-action {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid var(--line);
  background: white;
}
.mini-action.strong {
  color: var(--ink);
  background: var(--amber);
  border-color: var(--amber);
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 8px;
  padding: .65rem .85rem;
  font-weight: 800;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  gap: 36px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 34px;
}
.hero-copy { max-width: 670px; }
.eyebrow {
  margin: 0 0 .7rem;
  color: var(--amber);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}
h1, h2, h3 { line-height: 1.1; margin: 0; letter-spacing: 0; }
h1, h2 {
  font-family: var(--display-font);
  font-weight: 900;
}
h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  max-width: 11ch;
}
h2 { font-size: clamp(1.7rem, 3vw, 2.65rem); }
h3 { font-size: 1.15rem; }
p { margin: .85rem 0 0; }
.lead {
  color: #34495c;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  max-width: 58ch;
}
.hero-media {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 8px;
  padding: .78rem 1rem;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.primary { background: var(--amber); color: var(--ink); }
.secondary { background: var(--ink); color: white; }
.ghost { background: white; color: var(--blue-dark); border-color: var(--line); }
.button:hover, .mini-action:hover { transform: translateY(-1px); }
.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  padding: 0;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-weight: 700;
}
.hero-points li, .check-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}
.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.trust-strip div { padding: 18px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { display: block; }
.trust-strip span { color: var(--muted); font-size: .93rem; }
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}
.section-head p, .two-col p, .split-band p, .info-card p, .contact-card p {
  color: var(--muted);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.info-card, .contact-card, .feature-panel, .booking-card, .faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 20px;
}
.info-card { min-height: 210px; display: flex; flex-direction: column; }
.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--orange);
  background:
    radial-gradient(circle at 50% 45%, rgba(248, 140, 0, .16), transparent 56%),
    linear-gradient(145deg, #16202a 0%, #0b1117 100%);
  border: 1px solid #263543;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 20px rgba(16, 24, 32, .12);
  margin-bottom: 14px;
}
.card-icon svg { width: 34px; height: 34px; }
.dash-icon, .dash-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dash-icon .dash-mark {
  filter: drop-shadow(0 0 3px rgba(248, 140, 0, .65));
}
.info-card:hover .card-icon {
  color: #ffae34;
  border-color: #f88c00;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 24px rgba(248, 140, 0, .18);
}
.text-link {
  margin-top: auto;
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: 32px;
  align-items: start;
}
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list svg { color: var(--green); margin-top: .2rem; }
.feature-panel {
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}
.split-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.split-band article {
  padding: 28px;
  border-radius: 8px;
  background: var(--soft);
  border-left: 5px solid var(--amber);
}
.cta-band {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, .98), rgba(16, 24, 32, .9)),
    repeating-linear-gradient(120deg, transparent 0 42px, rgba(248, 140, 0, .34) 42px 78px, transparent 78px 112px),
    var(--blue-dark);
  color: white;
}
.cta-band p { color: #dcecf8; max-width: 720px; }
.cta-band .eyebrow { color: var(--amber); }
.cta-band .ghost { color: white; background: transparent; border-color: rgba(255,255,255,.35); }
.compact { margin-top: 0; justify-content: flex-end; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.area-banner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
  gap: 24px;
  align-items: center;
  background: var(--soft);
  border-radius: 8px;
  padding: 34px;
}
.area-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.area-links a {
  padding: .62rem .8rem;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.quote-widget {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .78fr);
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 54%, rgba(248, 140, 0, .08) 54%, rgba(248, 140, 0, .08) 100%),
    var(--white);
  box-shadow: var(--shadow);
}
.quote-copy p { color: var(--muted); }
.quote-benefits {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: .65rem;
  font-weight: 800;
}
.quote-benefits li {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.quote-benefits svg { color: var(--amber); }
.quote-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: #101820;
  color: white;
}
.quote-form label,
.quote-form fieldset {
  display: grid;
  gap: 6px;
  margin: 0;
  border: 0;
  padding: 0;
  font-weight: 800;
}
.quote-form fieldset {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.quote-form legend {
  grid-column: 1 / -1;
  color: #dce6ed;
  font-weight: 800;
}
.quote-form fieldset label {
  min-height: 44px;
  align-items: center;
  grid-template-columns: auto 1fr;
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.quote-form input,
.quote-form select {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
  background: white;
  color: var(--ink);
}
.quote-result {
  display: grid;
  gap: .45rem;
  min-height: 124px;
  padding: 14px;
  border-radius: 8px;
  background: white;
  color: var(--ink);
}
.quote-result strong { font-family: var(--display-font); font-size: 1.3rem; }
.quote-result span {
  width: fit-content;
  padding: .28rem .55rem;
  border-radius: 8px;
  background: #fff1dc;
  color: var(--ink);
  font-weight: 900;
}
.quote-result p, .quote-result small { margin: 0; color: var(--muted); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.price-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 286px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.price-card h4 {
  margin: 0 0 .5rem;
  font-size: .93rem;
  text-transform: uppercase;
}
.price-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.price-level {
  width: fit-content;
  margin: 0 0 .7rem;
  padding: .32rem .55rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--amber);
  font-weight: 900;
}
.service-offer-band {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
  gap: 24px;
  align-items: stretch;
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16,24,32,.97), rgba(16,24,32,.9)),
    repeating-linear-gradient(120deg, transparent 0 34px, rgba(248,140,0,.32) 34px 64px, transparent 64px 96px),
    var(--ink);
  color: white;
}
.service-offer-band p { color: #dce6ed; }
.service-offer-band .eyebrow { color: var(--amber); }
.service-offer-band .ghost { background: transparent; color: white; border-color: rgba(255,255,255,.38); }
.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.service-proof-grid article {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: .35rem;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.service-proof-grid strong {
  color: var(--amber);
  font-family: var(--display-font);
  font-size: 1.65rem;
  line-height: 1;
}
.service-proof-grid span { color: #eef4f8; font-weight: 800; }
.service-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-package {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(16, 24, 32, .08);
}
.service-package:nth-child(2) {
  border-color: rgba(248, 140, 0, .65);
  box-shadow: 0 16px 36px rgba(248, 140, 0, .16);
}
.package-price {
  width: fit-content;
  margin: 0 0 .7rem;
  padding: .38rem .62rem;
  border-radius: 8px;
  background: #fff1dc;
  color: var(--ink);
  font-weight: 900;
}
.service-package ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.service-package li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  color: var(--muted);
}
.service-package li svg { color: var(--amber); margin-top: .2rem; }
.trust-docs {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, .9fr);
  gap: 28px;
  align-items: start;
  background: var(--soft);
  border-radius: 8px;
  padding: 34px;
}
.trust-docs-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.trust-docs-list article {
  padding: 18px;
  border-radius: 8px;
  background: white;
  border-left: 5px solid var(--amber);
}
.trust-docs-list p { color: var(--muted); }
.service-commercial {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, #fff, #fff7eb);
}
.service-commercial p { color: var(--muted); }
.commercial-chips {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.commercial-chips li {
  padding: .45rem .65rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--amber);
  font-weight: 900;
}
.commercial-actions {
  display: grid;
  gap: .7rem;
}
.competitor-section {
  padding-top: 36px;
  padding-bottom: 34px;
}
.competitor-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.competitor-row {
  display: grid;
  grid-template-columns: minmax(170px, .35fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.competitor-row:last-child { border-bottom: 0; }
.competitor-row.head {
  background: var(--ink);
  color: white;
  font-weight: 900;
}
.competitor-row.autoaid {
  background: #fff1dc;
}
.competitor-row span:first-child {
  font-weight: 900;
}
.benchmark-note {
  color: var(--muted);
  font-size: .92rem;
  margin-top: .8rem;
}
.local-seo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr);
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.local-facts {
  display: grid;
  gap: 10px;
}
.local-facts a {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-height: 48px;
  padding: .78rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  background: var(--soft);
}
.ev-importance {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .62fr);
  gap: 24px;
  align-items: start;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #fff, #fff7eb);
  padding: 34px;
}
.ev-importance p { color: var(--muted); }
.importance-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 8px;
  background: #101820;
  color: white;
}
.importance-panel p { color: #dce6ed; }
.importance-panel .check-list svg { color: var(--amber); }
.importance-panel .check-list li { color: white; }
.source-foundation {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.source-foundation p { color: var(--muted); }
.source-links {
  display: grid;
  gap: 10px;
}
.source-links a {
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-decoration: none;
  font-weight: 900;
  color: var(--orange-dark);
}
details summary {
  cursor: pointer;
  font-weight: 800;
}
details p { color: var(--muted); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hours {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: .7rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: .7rem;
}
.booking-frame {
  width: 100%;
  min-height: 720px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.site-footer {
  margin-top: 48px;
  background: #101820;
  color: white;
  padding: 42px 0 96px;
}
.footer-grid, .footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1fr .9fr;
  gap: 28px;
}
.site-footer h2 { font-size: 1rem; margin-bottom: .7rem; }
.site-footer a {
  display: block;
  color: #dbe9f5;
  text-decoration: none;
  margin: .35rem 0;
}
.site-footer p, .muted { color: #8fa3b5; }
.footer-logo-box {
  display: inline-flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 10px 12px;
  max-width: 330px;
}
.footer-logo-box .brand-logo { width: 280px; }
.footer-bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 18px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #a9bac8;
}
.footer-bottom a { display: inline; margin: 0; }
.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mobile-cta a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-decoration: none;
}
.mobile-cta a:nth-child(2) { background: var(--orange-dark); color: var(--ink); }
.mobile-cta a:nth-child(3) { background: var(--amber); color: var(--ink); }
.firmafon-widget-slot {
  position: fixed;
  right: 18px;
  bottom: 28px;
  z-index: 80;
}
@media (max-width: 1180px) {
  .site-nav, .header-actions { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-nav[data-open="true"] {
    display: grid;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .hero { grid-template-columns: 1fr; }
  h1 { max-width: 12ch; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .topbar, .hero, .section, .trust-strip, .footer-grid, .footer-bottom, .cta-band {
    width: min(100% - 24px, 1180px);
  }
  .hero { padding-top: 32px; gap: 22px; }
  h1 { font-size: 2.25rem; max-width: 13ch; }
  .brand-logo { width: min(226px, 58vw); }
  .brand-location { display: none; }
  .hero-media, .hero-media img { min-height: 240px; }
  .cta-row, .cta-band, .two-col, .split-band, .steps, .area-banner, .contact-grid, .quote-widget, .price-grid, .local-seo, .service-offer-band, .service-package-grid, .trust-docs, .trust-docs-list, .service-commercial, .competitor-row, .ev-importance, .source-foundation {
    display: grid;
    grid-template-columns: 1fr;
  }
  .quote-widget { padding: 18px; }
  .service-offer-band, .trust-docs { padding: 22px; }
  .service-commercial, .ev-importance { padding: 20px; }
  .service-proof-grid { grid-template-columns: 1fr; }
  .quote-form fieldset { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .trust-strip, .card-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip div:last-child { border-bottom: 0; }
  .section { padding: 42px 0; }
  .cta-band { padding: 24px; }
  .booking-frame { min-height: 620px; }
  .mobile-cta { display: grid; }
  .firmafon-widget-slot {
    right: 14px;
    bottom: 82px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}