:root {
  --bg: #ffffff;
  --ink: #111319;
  --muted: #5c6472;
  --line: #e6e9ef;
  --header: #14131a;
  --yellow: #ffd10d;
  --yellow-filter: brightness(0) saturate(100%) invert(84%) sepia(78%) saturate(764%) hue-rotate(349deg) brightness(103%)
    contrast(103%);
  --blue: #0f67c2;
  --blue-soft: #eef5ff;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow: 0 12px 30px rgba(11, 19, 34, 0.08);
  --font-heading: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --header-height-mobile: 86px;
  --header-height-desktop: 92px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.58;
  padding-top: var(--header-height-mobile);
}

a {
  color: inherit;
}

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

.container {
  width: min(1150px, calc(100% - 28px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  z-index: 100;
  background: var(--yellow);
  color: #111;
  padding: 8px 12px;
  border-radius: 10px;
}

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

.eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7381;
  font-size: 12px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(1.45rem, 5.2vw, 2.45rem);
}

h2 {
  font-size: clamp(1.3rem, 4.9vw, 2.15rem);
}

h3 {
  font-size: clamp(1rem, 3.6vw, 1.28rem);
}

p {
  margin: 0;
}

.section {
  padding: 42px 0;
}

main [id] {
  scroll-margin-top: calc(var(--header-height-mobile) + 16px);
}

.section-text {
  margin-top: 12px;
  max-width: 760px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 18px;
  transition: transform 0.16s ease;
}

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

.btn-primary {
  background: var(--yellow);
  color: #111319;
}

.btn-outline {
  border: 1px solid #ccd4e2;
  color: #1d2230;
  background: #fff;
}

.btn-hero {
  background: #176ac6;
  color: #fff;
  box-shadow: 5px 5px 0 #f5cd00;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-row {
  min-height: var(--header-height-mobile);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  position: relative;
}

.brand {
  width: 128px;
}

.mobile-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.mobile-header-whatsapp {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.mobile-header-whatsapp:hover,
.mobile-header-whatsapp:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 209, 13, 0.08);
  outline: none;
}

.mobile-header-whatsapp img {
  width: 34px;
  height: 34px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(92%) saturate(1253%) hue-rotate(90deg) brightness(95%)
    contrast(97%);
}

.menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  width: 58px;
  height: 52px;
  padding: 0;
  background: transparent;
  color: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle-icon {
  line-height: 1;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.menu-toggle-icon-open {
  font-size: 2.5rem;
}

.menu-toggle-icon-close {
  position: absolute;
  opacity: 0;
  transform: scale(0.84);
  font-size: 2.6rem;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-icon-open {
  opacity: 0;
  transform: scale(0.84);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-icon-close {
  opacity: 1;
  transform: scale(1);
}

.desktop-nav,
.desktop-actions {
  display: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 2px 14px 16px;
  background: #14131a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-height: calc(100vh - var(--header-height-mobile));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

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

.mobile-nav a {
  text-decoration: none;
  color: var(--yellow);
  padding: 10px 11px;
  border-radius: 10px;
  font-weight: 600;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: var(--yellow);
  color: #12141a;
}

.mobile-nav .btn-primary {
  margin-top: 8px;
  color: #111319;
  width: fit-content;
  align-self: flex-start;
  white-space: nowrap;
  padding: 12px 28px;
}

.mobile-group {
  border: 1px solid rgba(255, 209, 13, 0.24);
  border-radius: 10px;
  overflow: hidden;
}

.mobile-group summary {
  cursor: pointer;
  color: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  list-style: none;
  padding: 10px 11px;
}

.mobile-group summary::-webkit-details-marker {
  display: none;
}

.mobile-group summary::marker {
  content: '';
}

.mobile-group[open] > summary {
  background: var(--yellow);
  color: #12141a;
}

.mobile-sublink {
  display: block;
  padding-left: 16px !important;
  border-top: 1px solid rgba(255, 209, 13, 0.14);
}

.mobile-subgroup {
  border-top: 1px solid rgba(255, 209, 13, 0.14);
}

.mobile-subgroup summary {
  cursor: pointer;
  color: var(--yellow);
  font-family: var(--font-heading);
  list-style: none;
  padding: 10px 16px;
  font-weight: 700;
}

.mobile-subgroup summary::-webkit-details-marker {
  display: none;
}

.mobile-subgroup summary::marker {
  content: '';
}

.mobile-subgroup[open] summary {
  color: var(--yellow);
}

.mobile-sublink-nested {
  padding-left: 24px !important;
}

.mobile-socials {
  margin: 8px 0;
  display: flex;
  gap: 14px;
}

.mobile-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  text-decoration: none;
  transition: transform 0.16s ease;
}

.mobile-socials a:hover,
.mobile-socials a:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.mobile-socials img {
  width: 21px;
  height: 21px;
  filter: none;
}

.mobile-socials .social-instagram img {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 18px 0 14px;
  background: linear-gradient(180deg, #f2f3f6 0%, #e9ecf1 100%);
}

.hero-top {
  position: relative;
  z-index: 1;
}

.hero-text {
  margin: 12px auto 0;
  color: #2f3645;
  font-size: clamp(0.95rem, 2vw, 1.07rem);
  max-width: 690px;
  text-align: center;
}

.hero-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-copy h1 {
  text-align: center;
}

.hero-accent {
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 99px;
  background: #f4c800;
  margin: 12px auto 0;
}

.hero-car-wrap {
  position: relative;
  z-index: 1;
  margin-top: 12px;
}

.hero-car-wrap img {
  width: 100%;
  max-width: 650px;
  margin-inline: auto;
  filter: drop-shadow(0 10px 18px rgba(9, 14, 26, 0.25));
}

.hero-info {
  position: relative;
  z-index: 2;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #0c5bac;
  border: 1px solid #0a57a4;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(8, 17, 33, 0.2);
}

.hero-panel {
  background: #1268c0;
  color: #fff;
  padding: 14px 12px;
}

.hero-badge {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffd10d;
  color: #111319;
  font-size: 16px;
  margin-bottom: 8px;
}

.hero-badge img {
  width: 18px;
  height: 18px;
}

.hero-panel h2 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #fff;
}

.hero-panel p {
  color: #e5efff;
  font-size: 0.95rem;
  line-height: 1.38;
}

.hero-panel p + p {
  margin-top: 2px;
}

.hero-panel a {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 11px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.86rem;
  background: #ffd10d;
  color: #101218;
}

.map-card {
  margin-top: 20px;
  border: 1px solid #d8e0ec;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.location-search {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid #d8e0ec;
  border-radius: var(--radius-lg);
  background: #eef1f5;
  box-shadow: var(--shadow);
}

.location-search-panel {
  position: relative;
}

.location-search-form {
  display: block;
}

.location-search-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.location-search-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid #cbd7e6;
  border-radius: 18px;
  background: #ffffff;
  padding: 0 18px;
  font: inherit;
  font-size: 1rem;
  color: #162033;
}

.location-search-form input::placeholder {
  color: #617089;
}

.location-search-form input:focus-visible {
  outline: 2px solid rgba(15, 103, 194, 0.24);
  outline-offset: 2px;
  border-color: #8bb4e3;
}

.location-search-actions {
  display: contents;
}

.location-search-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-width: 58px;
  min-height: 58px;
  border: 1px solid #cbd7e6;
  border-radius: 18px;
  padding: 0;
  background: #ffffff;
  color: #111319;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.location-search-icon-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.location-search-icon-button:hover,
.location-search-icon-button:focus-visible {
  background: #f7f9fc;
  border-color: #9db2d3;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(12, 19, 34, 0.12);
}

.location-search-icon-button[disabled] {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.location-search-feedback {
  min-height: 22px;
  margin-top: 10px;
  color: #53627a;
  font-size: 0.94rem;
}

.location-search-feedback.is-error {
  color: #a01f2f;
}

.location-search-results {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.location-search-result {
  display: block;
  border: 1px solid #d4ddeb;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 24px rgba(15, 27, 46, 0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.location-search-result:hover,
.location-search-result:focus-visible {
  transform: translateY(-1px);
  border-color: #8fb3dc;
  box-shadow: 0 14px 26px rgba(15, 27, 46, 0.12);
}

.location-search-result strong {
  display: block;
  font-size: 1rem;
  color: #162033;
}

.location-search-result span {
  display: block;
  margin-top: 3px;
  color: #586a84;
  font-size: 0.9rem;
}

.location-search-nearby {
  margin-top: 18px;
}

.location-search-nearby-title {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #111319;
}

.location-search-nearby-list {
  display: grid;
  gap: 12px;
}

.location-search-nearby-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  background: #f6f8fc;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e1e6ef;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.location-search-nearby-item:hover,
.location-search-nearby-item:focus-visible {
  transform: translateY(-1px);
  border-color: #c7d3e4;
  box-shadow: 0 12px 24px rgba(15, 27, 46, 0.1);
}

.location-search-nearby-pin,
.location-search-nearby-arrow {
  width: 24px;
  height: 24px;
  fill: #111319;
  flex: 0 0 auto;
}

.location-search-nearby-copy {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.location-search-nearby-copy strong {
  font-size: 1rem;
  color: #111319;
}

.location-search-nearby-copy span {
  color: #111319;
  font-size: 0.98rem;
  white-space: nowrap;
}

.map-card iframe {
  border: 0;
  width: 100%;
  min-height: 360px;
}

.deferred-embed-trigger {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: inherit;
  overflow: hidden;
  background: linear-gradient(135deg, #eef2f8 0%, #dce4f2 100%);
  color: #1f283a;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
}

.deferred-embed-trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--embed-preview-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.06);
  filter: blur(14px);
}

.deferred-embed-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(228, 235, 246, 0.72) 100%);
}

.deferred-embed-trigger-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(17, 28, 45, 0.16);
}

.deferred-embed-trigger:hover,
.deferred-embed-trigger:focus-visible {
  outline: none;
}

.deferred-embed-trigger:hover::before,
.deferred-embed-trigger:focus-visible::before {
  transform: scale(1.1);
}

.deferred-embed-trigger:hover .deferred-embed-trigger-label,
.deferred-embed-trigger:focus-visible .deferred-embed-trigger-label {
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 28, 45, 0.22);
}

.services {
  background: #f3f4f7;
}

.google-rating-line {
  margin-bottom: 8px;
}

.hero-rating-line {
  margin-top: 18px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}

.google-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid #d7dee9;
  background: #ffffff;
  color: #1a2232;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  padding: 8px 14px;
  box-shadow: 0 8px 20px rgba(11, 20, 37, 0.07);
}

.google-rating-link:hover,
.google-rating-link:focus-visible {
  box-shadow: 0 12px 26px rgba(11, 20, 37, 0.12);
}

.google-rating-stars {
  letter-spacing: 0.08em;
  color: #f4c400;
  font-size: 1.22rem;
  text-shadow: 0 1px 2px rgba(73, 55, 0, 0.22);
}

.google-rating-text {
  color: #1a2232;
  font-size: 0.96rem;
}

.hero-rating-line .google-rating-link {
  padding: 10px 18px;
  min-height: 52px;
}

.hero-rating-line .google-rating-stars {
  font-size: 1.32rem;
}

.hero-rating-line .google-rating-text {
  font-size: clamp(1rem, 2.7vw, 1.18rem);
  font-weight: 800;
}

.services-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.service-card {
  display: block;
  border: 1px solid #dbe1ea;
  border-radius: var(--radius-md);
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(9, 17, 31, 0.12);
}

.service-card h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.service-card p {
  color: #475264;
  font-size: 0.95rem;
}

.service-cta {
  display: none;
  margin-top: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #121822;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
}

.c-blue {
  background: #8fc1f0;
}

.c-blue .service-cta {
  background: #156cc6;
  color: #fff;
}

.c-red {
  background: #ef999d;
}

.c-red .service-cta {
  background: #ef1f2d;
  color: #fff;
}

.c-gray {
  background: #d2d4d6;
}

.c-gray .service-cta {
  background: #8b9096;
  color: #fff;
}

.c-sand {
  background: #f0e2aa;
}

.c-sand .service-cta {
  background: #f4c400;
  color: #1a1d23;
}

.c-green {
  background: #9fd6a3;
}

.c-green .service-cta {
  background: #2ba43e;
  color: #fff;
}

.c-dark {
  background: #a4a6ab;
}

.c-dark .service-cta {
  background: #1b1b22;
  color: #fff;
}

.about-section {
  position: relative;
  overflow: hidden;
  background: var(--header);
  padding: 46px 0;
}

.about-legacy-inner {
  position: relative;
  z-index: 1;
}

.about-legacy-intro h2 {
  color: #fff;
  font-size: clamp(1.3rem, 4.9vw, 2.15rem);
  line-height: 1.15;
}

.about-legacy-accent {
  display: block;
  width: 84px;
  height: 5px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--yellow);
}

.section-text-dark {
  color: rgba(242, 246, 255, 0.92);
}

.about-legacy-intro .section-text {
  margin-top: 16px;
  max-width: 980px;
  font-size: 1rem;
}

.about-legacy-grid {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.about-legacy-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.about-legacy-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.about-legacy-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(31%) sepia(99%) saturate(2157%) hue-rotate(194deg) brightness(95%)
    contrast(93%);
}

.about-legacy-item h3 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  line-height: 1.2;
  font-weight: 700;
}

.about-legacy-item p {
  margin-top: 8px;
  color: rgba(240, 245, 255, 0.9);
  font-size: 1rem;
  line-height: 1.45;
}

.about-legacy-video {
  margin-top: 30px;
}

.about-legacy-video h3 {
  color: #fff;
  font-size: clamp(1.3rem, 4.9vw, 2.15rem);
  line-height: 1.15;
}

.about-legacy-video p {
  margin-top: 12px;
  color: rgba(240, 245, 255, 0.9);
}

.about-video-frame {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
  display: flex;
}

.about-video-frame iframe,
.about-video-frame .deferred-embed-trigger {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-video-frame .deferred-embed-trigger {
  min-height: 0;
  color: #f4f6fb;
  background: linear-gradient(145deg, #1f2534 0%, #151925 100%);
}

.about-video-frame .deferred-embed-trigger::after {
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.2) 0%, rgba(10, 13, 19, 0.64) 100%);
}

.about-video-frame .deferred-embed-trigger-label {
  background: rgba(10, 14, 21, 0.82);
  color: #f4f6fb;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}

.about-video-frame .deferred-embed-trigger:hover,
.about-video-frame .deferred-embed-trigger:focus-visible {
  background: linear-gradient(145deg, #252d3f 0%, #1a2030 100%);
}

.about-video-frame .deferred-embed-trigger:hover .deferred-embed-trigger-label,
.about-video-frame .deferred-embed-trigger:focus-visible .deferred-embed-trigger-label {
  background: rgba(14, 18, 27, 0.9);
}

.cta-box {
  border: 1px solid #cad5e6;
  border-radius: 30px;
  background: #eceff4;
  box-shadow: none;
  padding: 24px;
}

.cta-box p {
  margin-top: 10px;
  color: #4e586d;
}

.cta-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-actions .btn img {
  width: 16px;
  height: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fafbfc;
  margin-top: 0;
  padding: 46px 0 18px;
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.site-footer h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.site-footer p {
  color: #272f3f;
}

.site-footer p + p {
  margin-top: 8px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  font-weight: 600;
}

.partner-logo {
  margin-top: 12px;
  width: min(220px, 100%);
  border-radius: 10px;
}

.global-contact-band {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, #e9edf4 0%, #e1e6ef 100%);
  border-top: 1px solid #dde2ec;
  border-bottom: 1px solid #d6dce7;
}

.global-contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 42px 0;
}

.global-contact-kicker {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #232837;
}

.global-contact-inner h2 {
  margin: 12px 0 0;
  font-size: clamp(1.7rem, 6.8vw, 2.95rem);
  line-height: 1.05;
  color: #070a11;
}

.global-contact-line {
  display: inline-block;
  width: 68px;
  height: 4px;
  margin-top: 14px;
  border-radius: 99px;
  background: #f6c90e;
}

.global-contact-inner p {
  margin-top: 14px;
  color: #2f3747;
  font-size: clamp(1.02rem, 2.5vw, 1.25rem);
}

.btn-global-contact {
  margin-top: 16px;
  background: #186ac6;
  color: #fff;
  box-shadow: 5px 5px 0 #f5cd00;
}

.btn-global-contact img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid #e1e4ea;
  font-size: 0.93rem;
  color: #4f596d;
}

.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: #111827;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: var(--yellow);
  color: #111827;
  box-shadow: 0 12px 26px rgba(6, 12, 26, 0.2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.to-top:hover,
.to-top:focus-visible {
  box-shadow: 0 14px 32px rgba(6, 12, 26, 0.26);
  transform: translateY(-2px) scale(1);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: none;
}

.cookie-banner.is-open {
  display: block;
}

.cookie-banner-card {
  width: min(100%, 980px);
  margin-left: auto;
  border-radius: 24px;
  border: 1px solid #d9e0ea;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(10, 16, 31, 0.16);
  backdrop-filter: blur(10px);
  padding: 18px 18px 16px;
}

.cookie-banner-kicker {
  margin: 0;
  color: #576074;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-banner-card h2 {
  margin: 8px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.12;
}

.cookie-banner-text {
  margin: 10px 0 0;
  color: #344055;
  max-width: 70ch;
  line-height: 1.55;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cookie-banner-actions .btn,
.cookie-banner-settings-actions .btn,
.consent-embed-card .btn {
  min-height: 44px;
}

.cookie-banner-settings {
  margin-top: 14px;
  border-top: 1px solid #e4e8ef;
  padding-top: 14px;
  display: grid;
  gap: 12px;
}

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #f6f8fb;
}

.cookie-setting-row strong {
  display: block;
  font-size: 1rem;
}

.cookie-setting-row p {
  margin: 4px 0 0;
  color: #4d596d;
  font-size: 0.94rem;
  line-height: 1.45;
}

.cookie-setting-row-toggle {
  cursor: pointer;
}

.cookie-setting-row-toggle input {
  width: 22px;
  height: 22px;
  accent-color: #176ac6;
  flex: 0 0 auto;
}

.cookie-setting-badge {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e1e8f5;
  color: #243046;
  font-size: 0.86rem;
  font-weight: 700;
}

.cookie-banner-settings-actions {
  display: flex;
  justify-content: flex-end;
}

.consent-embed-placeholder {
  display: flex;
  min-height: 320px;
  border: 1px solid #d9e0ea;
  border-radius: 24px;
  background: #f6f8fb;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.consent-embed-card {
  max-width: 520px;
  text-align: center;
}

.consent-embed-kicker {
  margin: 0;
  color: #5a6478;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consent-embed-card h3 {
  margin: 8px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.consent-embed-card p {
  margin: 10px 0 0;
  color: #344055;
  line-height: 1.55;
}

.consent-embed-card .btn {
  margin-top: 14px;
}

@media (max-width: 720px) {
  .location-search {
    padding: 18px;
  }

  .to-top {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-banner-card {
    padding: 16px 14px 14px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn,
  .cookie-banner-settings-actions .btn {
    width: 100%;
  }

  .cookie-setting-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-settings-actions {
    justify-content: stretch;
  }
}

body.booking-overlay-open {
  overflow: hidden;
}

.booking-success-overlay {
  --success-bg: #ffffff;
  --success-line: #ced9ec;
  --success-text: #171c27;
  --success-muted: #384a62;
  --success-accent: #176ac6;
  --success-accent-dark: #0f4e93;
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(8, 12, 20, 0.2);
  backdrop-filter: blur(1px);
}

.booking-success-overlay.is-open {
  display: flex;
}

.booking-success-card {
  position: relative;
  width: min(760px, calc(100% - 56px));
  max-height: calc(100vh - 84px);
  overflow: auto;
  border-radius: 28px;
  background: var(--success-bg);
  border: 1px solid var(--success-line);
  box-shadow: 0 24px 54px rgba(10, 16, 31, 0.16);
  color: var(--success-text);
  padding: clamp(20px, 3.2vw, 34px);
}

.booking-success-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--success-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.booking-success-close:hover,
.booking-success-close:focus-visible {
  background: rgba(25, 35, 53, 0.1);
}

.booking-success-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--success-accent) 14%, #ffffff);
  color: var(--success-accent-dark);
  padding: 7px 14px;
  font-size: 0.88rem;
  font-weight: 700;
}

.booking-success-card h2 {
  margin-top: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.booking-success-copy {
  margin-top: 12px;
  color: var(--success-muted);
  line-height: 1.62;
}

.booking-success-referral {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--success-accent) 35%, #ffffff);
  background: color-mix(in srgb, var(--success-accent) 9%, #ffffff);
  padding: 14px;
}

.booking-success-referral h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
}

.booking-success-referral p {
  margin: 8px 0 0;
  color: var(--success-muted);
}

.booking-success-referral-bonus {
  margin-top: 8px;
  margin-bottom: 2px;
  color: var(--success-accent-dark);
  font-size: clamp(1.12rem, 2.6vw, 1.44rem);
  font-weight: 800;
  line-height: 1.2;
}

.booking-success-referral-row {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.booking-success-referral-row input {
  width: 100%;
  border: 1px solid var(--success-line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--success-text);
  padding: 10px 12px;
  font: inherit;
}

.booking-success-referral-row button {
  border: 0;
  border-radius: 999px;
  min-height: 42px;
  padding: 10px 16px;
  background: var(--success-accent);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.booking-success-referral-row button:hover,
.booking-success-referral-row button:focus-visible {
  background: var(--success-accent-dark);
}

.booking-success-ref-note {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.booking-success-actions {
  margin-top: 18px;
}

.booking-success-done {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 10px 18px;
  background: var(--success-accent);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.booking-success-done:hover,
.booking-success-done:focus-visible {
  background: var(--success-accent-dark);
}

.booking-success-overlay[data-theme='fahrstunden'] {
  --success-bg: #f8fbff;
  --success-line: #c9d8eb;
  --success-text: #171c27;
  --success-muted: #3a4d64;
  --success-accent: #176ac6;
  --success-accent-dark: #0f4e93;
}

.booking-success-overlay[data-theme='vku'] {
  --success-bg: #fff8df;
  --success-line: #e7d598;
  --success-text: #2a250f;
  --success-muted: #52462a;
  --success-accent: #f4c400;
  --success-accent-dark: #be9300;
}

.booking-success-overlay[data-theme='nothilfe'] {
  --success-bg: #fff1f3;
  --success-line: #efc4c9;
  --success-text: #2c1316;
  --success-muted: #5a2d34;
  --success-accent: #df1122;
  --success-accent-dark: #b40b18;
}

.booking-success-overlay[data-theme='refresher'] {
  --success-bg: #f3fbf3;
  --success-line: #b7d8bb;
  --success-text: #102216;
  --success-muted: #2d4c37;
  --success-accent: #2ba43e;
  --success-accent-dark: #207f2f;
}

.booking-success-overlay[data-theme='taxi'] {
  --success-bg: #fff8df;
  --success-line: #dfd0a0;
  --success-text: #2a220a;
  --success-muted: #5a4b20;
  --success-accent: #d2a200;
  --success-accent-dark: #9a7600;
}

.booking-success-overlay[data-theme='kontrollfahrt'] {
  --success-bg: #eceef2;
  --success-line: #b9bcc4;
  --success-text: #12151c;
  --success-muted: #333843;
  --success-accent: #1b1b22;
  --success-accent-dark: #0f1116;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 430px) {
  .hero-info {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 740px) {
  .location-search {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: center;
  }

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

  .booking-success-referral-row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .booking-success-referral-row button {
    min-width: 160px;
  }

  .service-cta {
    display: inline-flex;
  }

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

@media (min-width: 1020px) {
  body {
    padding-top: var(--header-height-desktop);
  }

  main [id] {
    scroll-margin-top: calc(var(--header-height-desktop) + 16px);
  }

  .nav-row {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    min-height: var(--header-height-desktop);
  }

  .brand {
    width: 111px;
  }

  .mobile-header-actions {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-self: center;
    height: 100%;
  }

  .desktop-item {
    position: relative;
    height: 100%;
    display: inline-flex;
    align-items: center;
  }

  .desktop-item-wide {
    position: static;
  }

  .desktop-link,
  .desktop-trigger {
    text-decoration: none;
    color: var(--yellow);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.94rem;
    line-height: 1;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color 0.18s ease, background-color 0.18s ease;
    white-space: nowrap;
  }

  .desktop-link:hover,
  .desktop-link:focus-visible,
  .desktop-item:hover > .desktop-trigger,
  .desktop-item:focus-within > .desktop-trigger {
    color: #111319;
    background: var(--yellow);
    outline: none;
  }

  .desktop-caret {
    width: 10px;
    height: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
  }

  .desktop-caret::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid currentColor;
  }

  .desktop-item.has-dropdown:hover .desktop-caret,
  .desktop-item.has-dropdown:focus-within .desktop-caret {
    transform: rotate(180deg);
  }

  .desktop-dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 85;
    background: #21232b;
    border: 1px solid rgba(255, 209, 13, 0.18);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  }

  .desktop-item.has-dropdown:hover > .desktop-dropdown,
  .desktop-item.has-dropdown:focus-within > .desktop-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .desktop-dropdown a {
    color: var(--yellow);
    text-decoration: none;
    font-size: 1rem;
    display: block;
    border-radius: 8px;
    padding: 6px 8px;
    transition: color 0.16s ease, background-color 0.16s ease;
  }

  .desktop-dropdown a:hover,
  .desktop-dropdown a:focus-visible {
    background: var(--yellow);
    color: #111319;
    outline: none;
  }

  .desktop-dropdown-courses {
    min-width: 780px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .desktop-dropdown-courses a {
    font-size: 1.18rem;
    line-height: 1.2;
  }

  .desktop-dropdown-contact {
    min-width: 200px;
    padding: 10px;
    display: grid;
    gap: 4px;
  }

  .desktop-dropdown-mega {
    left: 0;
    right: 0;
    width: min(1240px, calc(100vw - 24px));
    margin-inline: auto;
    padding: 14px 18px;
  }

  .mega-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .mega-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .mega-col h4 {
    margin: 0 0 6px;
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
  }

  .mega-col a {
    font-size: 1.02rem;
    line-height: 1.28;
    padding: 4px 6px;
  }

  .mega-col-offers {
    background: rgba(255, 255, 255, 0.09);
    padding: 12px;
    border-radius: 10px;
  }

  .desktop-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .desktop-actions > a:not(.btn) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: transform 0.16s ease;
  }

  .desktop-actions > a:not(.btn):hover,
  .desktop-actions > a:not(.btn):focus-visible {
    transform: translateY(-1px);
    outline: none;
  }

  .desktop-actions > a:not(.btn) img {
    width: 20px;
    height: 20px;
    filter: none;
  }

  .desktop-actions .btn {
    font-size: 0.9rem;
    padding: 11px 15px;
    white-space: nowrap;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero-copy {
    max-width: 900px;
    margin-inline: auto;
  }

  .hero-car-wrap {
    margin-top: 18px;
  }

  .hero-info {
    margin-top: -10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-panel {
    min-height: 188px;
  }

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

  .about-legacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 36px;
  }

  .about-legacy-video {
    margin-top: 34px;
  }

  .about-video-frame {
    max-width: 940px;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
  }
}
