:root {
  --navy-950: #171b19;
  --navy-900: #20342c;
  --ink: #18211d;
  --muted: #637066;
  --line: #d8ded8;
  --paper: #ffffff;
  --silver: #f3f5f1;
  --silver-strong: #dfe6dc;
  --teal: #245b49;
  --green: #245b49;
  --amber: #b87333;
  --red: #c84b3d;
  --shadow: 0 20px 55px rgba(7, 26, 47, 0.15);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 156, 174, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--navy-950);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.shell {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 224, 234, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-950);
  min-width: 210px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 156, 174, 0.96), rgba(231, 164, 45, 0.92)),
    var(--navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52), 0 10px 22px rgba(7, 26, 47, 0.16);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--navy-900);
  font-size: 0.95rem;
  font-weight: 750;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 12px;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--silver);
}

.nav-cta {
  background: var(--navy-950) !important;
  color: #fff !important;
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy-950);
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle span {
  top: 21px;
}

.nav-toggle::after {
  top: 28px;
}

.hero {
  position: relative;
  min-height: clamp(560px, 78svh, 760px);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.sub-hero {
  position: relative;
  min-height: clamp(500px, 68svh, 700px);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 27, 25, 0.92), rgba(23, 27, 25, 0.58) 52%, rgba(23, 27, 25, 0.18)),
    linear-gradient(0deg, rgba(23, 27, 25, 0.3), rgba(23, 27, 25, 0.08));
}

.hero-media,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 27, 25, 0.9), rgba(23, 27, 25, 0.56) 48%, rgba(23, 27, 25, 0.16)),
    linear-gradient(0deg, rgba(23, 27, 25, 0.35), rgba(23, 27, 25, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 62px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 780;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.45);
}

.hero-copy {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: #bfeff5;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.5rem);
  max-width: 880px;
}

.hero-lede {
  margin: 22px 0 0;
  width: min(640px, 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.hero-actions,
.section-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--amber);
  color: #171103;
  box-shadow: 0 14px 30px rgba(231, 164, 45, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
}

.btn-dark {
  background: var(--navy-950);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--navy-950);
  border-color: var(--line);
}

.btn-double-line {
  flex-direction: column;
  padding: 4px 14px;
  line-height: 1.2;
  min-height: 44px;
}

.btn-double-line span {
  font-size: 0.9rem;
}

.btn-double-line .btn-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.95;
  margin-top: 1px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(820px, 100%);
  margin: 38px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(7, 26, 47, 0.28);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  padding: 15px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 850;
}

.trust-band {
  background: var(--navy-950);
  color: #fff;
}

.trust-list {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 820;
}

.section {
  padding: 86px 0;
}

.section-muted {
  background: var(--silver);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(270px, 0.45fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-dark .section-head p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

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

.grid-3,
.grid-4,
.gallery-grid,
.vehicle-grid,
.process-grid,
.silo-grid,
.mini-grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.silo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.vehicle-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.service-card,
.process-step,
.image-card,
.region-panel,
.lead-form,
.faq-item,
.legal-summary,
.legal-content,
.link-card,
.mini-card,
.content-main,
.side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.link-card {
  min-height: 215px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(23, 27, 25, 0.06);
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.link-card span,
.link-card em {
  color: var(--teal);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.link-card strong {
  color: var(--navy-950);
  font-size: 1.1rem;
  line-height: 1.2;
}

.link-card p {
  margin: 0;
  color: var(--muted);
}

.link-card em {
  align-self: end;
  color: var(--amber);
}

.service-card {
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(7, 26, 47, 0.06);
}

.service-card img {
  width: 100%;
  height: clamp(210px, 18vw, 280px);
  aspect-ratio: 1.35;
  object-fit: cover;
}

.service-card__body {
  padding: 20px;
}

.service-card h3,
.process-step h3,
.region-panel h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
}

.service-card p,
.process-step p,
.region-panel p,
.image-card p {
  margin: 0;
  color: var(--muted);
}

.process-step {
  padding: 22px;
}

.step-number {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.process-grid .process-step:nth-child(1) .step-number {
  background: #2b6cb0;
}

.process-grid .process-step:nth-child(2) .step-number {
  background: var(--teal);
}

.process-grid .process-step:nth-child(3) .step-number {
  background: var(--amber);
}

.process-grid .process-step:nth-child(4) .step-number {
  background: var(--red);
}

.vehicle-photo {
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.vehicle-photo img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.check-panel {
  display: grid;
  gap: 14px;
}

.check-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.check-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-panel .check-row:nth-child(1) .check-icon {
  background: var(--amber);
}

.check-panel .check-row:nth-child(2) .check-icon {
  background: var(--red);
}

.check-panel .check-row:nth-child(3) .check-icon {
  background: #2b6cb0;
}

.check-panel .check-row:nth-child(4) .check-icon {
  background: var(--green);
}

html[data-theme="dark"] .check-panel .check-row:nth-child(3) .check-icon {
  background: #63b3ed;
  color: #0f1412;
}

.check-row strong {
  display: block;
  margin-bottom: 4px;
}

.check-row span {
  color: var(--muted);
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: clamp(210px, 18vw, 280px);
  aspect-ratio: 1.45;
  object-fit: cover;
}

.image-card figcaption {
  padding: 15px 16px 17px;
}

.image-card strong {
  display: block;
  margin-bottom: 4px;
}

.region-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.content-main,
.side-panel,
.mini-card {
  padding: 24px;
}

.content-main h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.content-main > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.mini-card h3 {
  margin: 0 0 10px;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
}

.side-panel {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 92px;
}

.side-panel img {
  width: 100%;
  height: 210px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.side-panel p {
  margin: 6px 0 0;
  color: var(--muted);
}

.region-panel {
  padding: 26px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.link-group-title {
  margin: 0 0 14px;
  color: #fff;
}

.link-group-title + .compact-links {
  margin-bottom: 26px;
}

.compact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.compact-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy-950);
  font-weight: 830;
}

.compact-links a:hover {
  border-color: var(--amber);
}

.compact-links--dark a {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.area-tags li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 760;
}

.export-fit {
  display: grid;
  gap: 10px;
}

.export-fit button {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  text-align: left;
  font-weight: 820;
  cursor: pointer;
}

.export-fit button.is-active,
.export-fit button:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.fit-result {
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 156, 174, 0.22), rgba(231, 164, 45, 0.15)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.fit-result strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.35rem;
}

.fit-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.lead-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: start;
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.cta-strip h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.contact-aside {
  padding: 28px 0;
}

.contact-aside h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  color: var(--navy-950);
}

.lead-form {
  padding: 22px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label,
.checkbox-field {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 820;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

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

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 20px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: var(--red);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy-950);
  font-weight: 880;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  gap: 9px;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: 180ms ease;
}

.floating-actions.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-action {
  min-width: 142px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(7, 26, 47, 0.22);
}

.floating-action--phone {
  background: var(--navy-950);
}

.floating-action--wa {
  background: var(--green);
}

/* Experten-Boost Section */
.expert-boost {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(184, 115, 51, 0.14), transparent 36%),
    linear-gradient(135deg, var(--ink), var(--navy-950));
}

.expert-boost h2 {
  color: #fff;
}

.expert-boost p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
}

.expert-boost__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.expert-grid article {
  min-height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.expert-grid strong,
.expert-grid p {
  display: block;
}

.expert-grid strong {
  color: var(--amber);
  font-size: 1.06rem;
  line-height: 1.2;
}

.expert-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.site-footer {
  background: linear-gradient(180deg, #09121c 0%, #04090f 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.75fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.footer-logo svg {
  color: var(--amber);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-logo strong {
  font-size: 1.15rem;
  letter-spacing: -0.2px;
}

.footer-desc {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
}

.footer-hours {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-hours strong {
  color: #fff;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-title {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  display: block;
}

.footer-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link-icon svg {
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--teal);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link-icon:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-link-icon:hover svg {
  color: var(--amber);
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom p {
  margin: 0;
}

.legal-hero {
  padding: 80px 0 58px;
  background:
    linear-gradient(135deg, rgba(7, 26, 47, 0.96), rgba(9, 50, 80, 0.92)),
    var(--navy-950);
  color: #fff;
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.legal-hero p {
  width: min(700px, 100%);
  color: rgba(255, 255, 255, 0.74);
}

.legal-section {
  padding: 70px 0;
  background: var(--silver);
}

.legal-layout {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 22px;
  align-items: start;
}

.legal-summary,
.legal-content {
  padding: 24px;
}

.legal-content h2 {
  margin: 26px 0 10px;
  font-size: 1.4rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--navy-950);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .main-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    justify-content: space-between;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .section-head,
  .vehicle-grid,
  .region-layout,
  .lead-layout,
  .legal-layout,
  .content-grid,
  .expert-boost__layout,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    display: grid;
  }

  .grid-3,
  .gallery-grid,
  .silo-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4,
  .process-grid,
  .expert-grid,
  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy small {
    font-size: 0.66rem;
  }

  .hero {
    min-height: auto;
    align-items: end;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(23, 27, 25, 0.95), rgba(23, 27, 25, 0.68) 62%, rgba(23, 27, 25, 0.22)),
      linear-gradient(90deg, rgba(23, 27, 25, 0.55), rgba(23, 27, 25, 0.12));
  }

  .sub-hero::after {
    background:
      linear-gradient(0deg, rgba(23, 27, 25, 0.96), rgba(23, 27, 25, 0.7) 62%, rgba(23, 27, 25, 0.28)),
      linear-gradient(90deg, rgba(23, 27, 25, 0.58), rgba(23, 27, 25, 0.12));
  }

  .hero-inner {
    padding: 82px 0 40px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .hero-facts,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .process-grid,
  .silo-grid,
  .mini-grid,
  .trust-list,
  .form-grid,
  .footer-grid,
  .expert-grid,
  .compact-links {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .vehicle-photo img {
    min-height: 280px;
  }

  .service-card img,
  .image-card img {
    height: 170px;
    aspect-ratio: auto;
  }

  .side-panel img {
    height: 180px;
    aspect-ratio: auto;
  }

  .vehicle-photo img {
    min-height: 0;
    height: 220px;
  }

  .image-card figcaption,
  .service-card__body {
    padding: 14px 16px 16px;
  }

  .lead-form {
    padding: 16px;
  }

  .content-main,
  .side-panel,
  .mini-card,
  .cta-strip {
    padding: 18px;
  }

  .side-panel {
    position: static;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr;
  }

  .floating-action {
    min-width: 0;
  }
}

/* Optimized Theme Toggle Button with Spin-and-Fade Morph */
.theme-toggle {
  display: inline-grid;
  place-items: center;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 0.18s ease, color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  margin-left: 8px;
  overflow: hidden;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--amber);
  background: #fbf6f0;
  border-color: rgba(184, 115, 51, 0.54);
  transform: translateY(-1px);
}

.theme-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

/* Spin-and-Fade transition classes */
.theme-toggle__icon {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.theme-toggle__icon--moon {
  transform: rotate(-90deg) scale(0);
  opacity: 0;
}

.theme-toggle__icon--sun {
  transform: rotate(0) scale(1);
  opacity: 1;
}

html[data-theme="dark"] .theme-toggle {
  color: var(--amber);
  background: rgba(184, 115, 51, 0.12);
  border-color: rgba(184, 115, 51, 0.42);
}

html[data-theme="dark"] .theme-toggle__icon--sun {
  transform: rotate(90deg) scale(0);
  opacity: 0;
}

html[data-theme="dark"] .theme-toggle__icon--moon {
  transform: rotate(0) scale(1);
  opacity: 1;
}

/* Header actions alignment */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 1040px) {
  .header-actions {
    margin-left: auto;
  }
}

/* Floating Ghost Actions Stack */
.floating-ghost-actions {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(16px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-ghost-actions.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.floating-ghost-action {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--navy-950);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-ghost-label {
  position: absolute;
  right: 62px;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  border: 1px solid transparent;
}

.floating-ghost-action:hover .floating-ghost-label,
.floating-ghost-action:focus-visible .floating-ghost-label {
  opacity: 1;
  transform: translateX(0);
}

.floating-ghost-action--phone .floating-ghost-label {
  background: #2b6cb0;
  border-color: #2b6cb0;
  color: #fff;
}

.floating-ghost-action--form .floating-ghost-label {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.floating-ghost-action--wa .floating-ghost-label {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.floating-ghost-action svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.floating-ghost-action--wa svg {
  fill: currentColor;
  stroke: none;
}

.floating-ghost-action:hover,
.floating-ghost-action:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.floating-ghost-action--phone {
  color: #2b6cb0;
  border-color: rgba(43, 108, 176, 0.32);
}

.floating-ghost-action--phone:hover,
.floating-ghost-action--phone:focus-visible {
  color: #fff;
  background: #2b6cb0;
  border-color: #2b6cb0;
}

.floating-ghost-action--form {
  color: var(--teal);
  border-color: rgba(36, 91, 73, 0.32);
}

.floating-ghost-action--form:hover,
.floating-ghost-action--form:focus-visible {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.floating-ghost-action--wa {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.32);
}

.floating-ghost-action--wa:hover,
.floating-ghost-action--wa:focus-visible {
  color: #fff;
  background: #25d366;
  border-color: #25d366;
}

/* Dark Mode Overrides */
html[data-theme="dark"] {
  --navy-950: #ffffff;
  --navy-900: #e8ece9;
  --ink: #cbd6d0;
  --muted: #8ba093;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #0f1412;
  --silver: #161e1b;
  --silver-strong: #222d27;
  --teal: #50a386;
  --green: #50a386;
  --amber: #d9975b;
  color-scheme: dark;
}

html[data-theme="dark"] body {
  background: var(--paper);
  color: var(--ink);
}

html[data-theme="dark"] .site-header {
  background: rgba(15, 20, 18, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .main-nav a:hover,
html[data-theme="dark"] .main-nav a[aria-current="page"] {
  background: var(--silver);
}

html[data-theme="dark"] .nav-toggle {
  background: var(--silver);
  color: #fff;
  border-color: var(--line);
}

html[data-theme="dark"] .service-card,
html[data-theme="dark"] .process-step,
html[data-theme="dark"] .image-card,
html[data-theme="dark"] .region-panel,
html[data-theme="dark"] .lead-form,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .legal-summary,
html[data-theme="dark"] .legal-content,
html[data-theme="dark"] .link-card,
html[data-theme="dark"] .mini-card,
html[data-theme="dark"] .content-main,
html[data-theme="dark"] .side-panel,
html[data-theme="dark"] .cta-strip,
html[data-theme="dark"] .check-row,
html[data-theme="dark"] .compact-links a {
  background: var(--paper);
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .floating-ghost-action {
  background: rgba(15, 20, 18, 0.75);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .floating-ghost-action--phone {
  color: #63b3ed;
  border-color: rgba(99, 179, 237, 0.32);
}

html[data-theme="dark"] .floating-ghost-action--phone:hover,
html[data-theme="dark"] .floating-ghost-action--phone:focus-visible {
  background: #63b3ed;
  color: #0f1412;
  border-color: #63b3ed;
}

html[data-theme="dark"] .floating-ghost-action--form {
  color: #50a386;
  border-color: rgba(80, 163, 134, 0.32);
}

html[data-theme="dark"] .floating-ghost-action--form:hover,
html[data-theme="dark"] .floating-ghost-action--form:focus-visible {
  background: #50a386;
  color: #0f1412;
  border-color: #50a386;
}

html[data-theme="dark"] .floating-ghost-action--wa {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.32);
}

html[data-theme="dark"] .floating-ghost-action--wa:hover,
html[data-theme="dark"] .floating-ghost-action--wa:focus-visible {
  background: #4ade80;
  color: #0f1412;
  border-color: #4ade80;
}

html[data-theme="dark"] .floating-ghost-action--phone .floating-ghost-label {
  background: rgba(15, 20, 18, 0.85);
  border-color: #63b3ed;
  color: #63b3ed;
}

html[data-theme="dark"] .floating-ghost-action--form .floating-ghost-label {
  background: rgba(15, 20, 18, 0.85);
  border-color: #50a386;
  color: #50a386;
}

html[data-theme="dark"] .floating-ghost-action--wa .floating-ghost-label {
  background: rgba(15, 20, 18, 0.85);
  border-color: #4ade80;
  color: #4ade80;
}

html[data-theme="dark"] .field input,
html[data-theme="dark"] .field select,
html[data-theme="dark"] .field textarea {
  background: var(--silver);
  color: #fff;
  border-color: var(--line);
}

html[data-theme="dark"] .contact-list strong {
  color: #fff;
}

/* Dark mode footer enhancements */
html[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, #090e0c 0%, #050706 100%);
  border-top-color: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .footer-tagline {
  color: #50a386;
}

html[data-theme="dark"] .footer-link-icon svg {
  color: #50a386;
}

html[data-theme="dark"] .footer-link-icon:hover svg {
  color: var(--amber);
}

/* Mobile responsive adjustments */
@media (max-width: 680px) {
  .floating-ghost-actions {
    right: 16px;
    gap: 10px;
  }
  .floating-ghost-action {
    width: 44px;
    height: 44px;
  }
  .floating-ghost-action svg {
    width: 20px;
    height: 20px;
  }
  .floating-ghost-label {
    display: none;
  }
}


