/* --- sølt. Toast Notification --- */
.solt-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background: #1e1e1e;
    border: 1px solid var(--solt-gold);
    color: #e5e5e5;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.toast-enter { transition: opacity 0.25s ease, transform 0.25s ease; }
.toast-leave { transition: opacity 0.3s ease, transform 0.3s ease; opacity: 0; transform: translateX(-50%) translateY(8px); }

/* --- sølt. - Corporate Identity Styles --- */
:root {
    --solt-gold: #c5a059;
    --solt-bg: #121212;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body { background-color: var(--solt-bg); color: white; font-family: 'Inter', sans-serif; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

[x-cloak] { display: none !important; }

/* --- Navigation --- */
.glass {
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links { display: flex; align-items: center; gap: 3rem; }
.nav-item {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 300;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-item:hover { color: var(--solt-gold); }

.lang-switch {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255,255,255,0.1);
    margin-left: 2rem;
}
.lang-icon { width: 22px; height: auto; opacity: 0.3; transition: all 0.3s; cursor: pointer; }
.lang-icon.active { opacity: 1; transform: scale(1.1); }

.lang-icon svg,
.lang-switch svg {
    display: block;
    width: 100%;
    height: auto;
}

/* --- Hero --- */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--solt-bg) 80%),
                linear-gradient(to bottom, transparent 60%, var(--solt-bg) 100%);
}
@keyframes subtleZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.animate-zoom { animation: subtleZoom 15s ease-out forwards; }

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.2rem 3.5rem;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-weight: 300;
    color: white;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
    cursor: pointer;
}
.btn-primary:hover { color: black; border-color: white; }
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%;
    background-color: white; transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1); z-index: -1;
}
.btn-primary:hover::before { width: 100%; }

.btn-select-car {
    width: 100%;
    margin-top: auto;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 11px;
    transition: all 0.4s;
    cursor: pointer;
}

#fleet .group.relative.overflow-hidden {
    display: flex;
    flex-direction: column;
}

#fleet .group.relative.overflow-hidden > .p-10 {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.btn-select-car:hover {
    background: white;
    color: black;
    border-color: white;
}

/* --- Formular --- */
.form-group { position: relative; margin-bottom: 3.5rem; }
.form-input {
    width: 100%;
    padding: 1rem 0;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    color: white;
    font-size: 16px;
    border-radius: 0;
    outline: none;
}
select.form-input { cursor: pointer; appearance: none; color: #555; }
select.form-input:not(:placeholder-shown) { color: white; }
select.form-input option { background-color: white !important; color: black !important; }

.form-label {
    position: absolute; left: 0; bottom: 1.1rem; color: #8f8f8f;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
    pointer-events: none; transition: all 0.4s;
}
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    transform: translateY(-2.6rem);
    color: var(--solt-gold);
    font-size: 9px;
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px 20px;
  color: #d1d5db;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.cookie-banner__text a {
  color: #c5a059;
  text-decoration: none;
  border-bottom: 1px solid #c5a059;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner__actions button {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
}

.cookie-banner__actions button:hover {
  border-color: rgba(255,255,255,0.45);
}

#cookie-accept {
  background: #c5a059;
  color: black;
  border-color: #c5a059;
}

.calendar-field {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    padding: 1.25rem;
}

.calendar-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--solt-gold);
    margin-bottom: 1rem;
}

.calendar-shell {
    display: grid;
    gap: 0.9rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.calendar-month {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: white;
}

.calendar-nav {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    border-color: rgba(255,255,255,0.35);
    color: var(--solt-gold);
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.45rem;
}

.calendar-weekdays span {
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
}

.calendar-day {
    min-height: 42px;
    border: 1px solid rgba(255,255,255,0.08);
    background: transparent;
    color: white;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.calendar-day.is-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-color: rgba(197,160,89,0.45);
}
.calendar-day .cal-availfrom {
    font-size: 8px;
    line-height: 1.1;
    color: #c5a059;
    letter-spacing: 0.01em;
    margin-top: 1px;
}

.calendar-day:hover:not(:disabled) {
    border-color: rgba(197,160,89,0.55);
    color: var(--solt-gold);
}

.calendar-day.is-empty {
    border-color: transparent;
    background: transparent;
    cursor: default;
}

.calendar-day.is-blocked {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.04);
    cursor: not-allowed;
    position: relative;
}

.calendar-day.is-blocked::after {
    content: '';
    position: absolute;
    left: 7px;
    right: 7px;
    top: 50%;
    height: 1px;
    background: rgba(197,160,89,0.45);
    transform: rotate(-18deg);
}

.calendar-day.is-selected {
    background: rgba(197,160,89,0.18);
    border-color: var(--solt-gold);
    color: white;
}

.calendar-day.is-today {
    box-shadow: inset 0 0 0 1px rgba(197,160,89,0.35);
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
}

.calendar-legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 0.45rem;
    border: 1px solid rgba(255,255,255,0.15);
}

.calendar-legend-dot.is-available {
    background: transparent;
}

.calendar-legend-dot.is-blocked {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.08);
}

.calendar-legend-dot.is-selected {
    background: rgba(197,160,89,0.35);
    border-color: var(--solt-gold);
}

.calendar-note {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
}

.calendar-note--error {
    color: #f87171;
}

.booking-summary-card {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    padding: 1.5rem;
}

.booking-summary-eyebrow {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--solt-gold);
    margin-bottom: 1.25rem;
}

.booking-summary-row,
.booking-summary-total {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #cfcfcf;
}

.booking-summary-total {
    margin-top: 0.4rem;
    font-size: 13px;
    color: white;
    border-bottom: none;
}

.booking-summary-note {
    margin-top: 1rem;
    font-size: 11px;
    line-height: 1.6;
    color: #8b8b8b;
}

.booking-mileage-card {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    padding: 1.25rem;
}

.booking-mileage-header,
.booking-mileage-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.booking-mileage-header {
    margin-bottom: 1rem;
}

.booking-mileage-title,
.booking-mileage-included,
.booking-mileage-meta {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.booking-mileage-title {
    color: var(--solt-gold);
}

.booking-mileage-included,
.booking-mileage-meta {
    color: #cfcfcf;
}

.booking-mileage-controls {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 0.75rem;
    align-items: stretch;
}

.booking-mileage-button {
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.booking-mileage-button:hover:not(:disabled) {
    border-color: var(--solt-gold);
    color: var(--solt-gold);
    background: rgba(197,160,89,0.08);
}

.booking-mileage-button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.booking-mileage-extra {
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 54px;
}

.booking-mileage-extra strong {
    font-size: 18px;
    color: white;
}

.booking-mileage-extra span {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9ca3af;
}

.booking-mileage-meta {
    margin-top: 0.9rem;
}

/* Animationen */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.animate-fadeInUp { animation: fadeInUp 1.4s ease-out forwards; }
.delay-300 { animation-delay: 0.3s; }
.delay-600 { animation-delay: 0.6s; }

.booking-readonly-field .form-input[readonly] {
    color: white;
    cursor: default;
}

.rental-request-shell {
    margin-top: 0.5rem;
}

.rental-picker-field {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    padding: 1.25rem;
}

.rental-picker-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--solt-gold);
    margin-bottom: 1rem;
}

.rental-picker-control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 0.85rem;
}

.rental-picker-chip {
    min-height: 54px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: white;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-align: left;
    padding: 0 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.rental-picker-chip:hover,
.rental-picker-chip.is-active {
    border-color: var(--solt-gold);
    color: var(--solt-gold);
}

.rental-picker-chip--time {
    text-align: center;
}

.picker-panel {
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
}

.picker-panel--time {
    max-height: 280px;
    overflow-y: auto;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
}

.time-slot {
    min-height: 42px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.25s ease;
}

.time-slot:hover,
.time-slot.is-active {
    border-color: var(--solt-gold);
    background: rgba(197,160,89,0.12);
    color: var(--solt-gold);
}

.booking-summary-notes {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.booking-summary-notes-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--solt-gold);
    margin-bottom: 0.75rem;
}

@media (max-width: 767px) {
    .rental-picker-control {
        grid-template-columns: 1fr;
    }

    .time-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .booking-mileage-header,
    .booking-mileage-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

.vehicle-gallery-frame {
    position: relative;
    background: #111;
}

.vehicle-gallery-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.65s ease;
    will-change: transform;
}

.vehicle-gallery-image {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.vehicle-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.38);
    border-radius: 999px;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.vehicle-gallery-frame:hover .vehicle-gallery-arrow {
    opacity: 1;
}

.vehicle-gallery-arrow:hover {
    border-color: var(--solt-gold);
    background: rgba(197,160,89,0.92);
    color: #111;
}

.vehicle-gallery-arrow-prev {
    left: 14px;
}

.vehicle-gallery-arrow-next {
    right: 14px;
}

@media (max-width: 767px) {
    .vehicle-gallery-arrow {
        opacity: 1;
        width: 36px;
        height: 36px;
        font-size: 28px;
        background: rgba(0,0,0,0.38);
    }

    .vehicle-gallery-arrow-prev {
        left: 10px;
    }

    .vehicle-gallery-arrow-next {
        right: 10px;
    }
}

/* Vehicle price row on fleet cards */
#fleet h3 {
    min-height: 4.5rem;
}

.vehicle-price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    margin-top: auto;
    margin-bottom: 2rem;
}
.vehicle-price-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.vehicle-price-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: #8f8f8f;
}
.vehicle-price-value {
    font-size: 13px;
    font-weight: 300;
    color: var(--solt-gold);
    letter-spacing: 0.05em;
}

/* Public vehicle Coming-Soon stamp */
.vehicle-coming-soon-watermark {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: block;
    padding: 0;
    text-align: center;
    background: transparent;
    pointer-events: none;
}

.vehicle-coming-soon-title {
    position: absolute;
    top: 34px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px 8px;
    border: 2px solid rgba(210, 22, 22, 0.95);
    border-radius: 5px;
    color: rgba(225, 28, 28, 0.98);
    background: rgba(255,255,255,0.08);
    font-size: clamp(23px, 2.8vw, 35px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: none;
    transform: rotate(-6deg);
    transform-origin: left center;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.45));
    box-shadow:
        inset 0 0 0 1px rgba(210, 22, 22, 0.28),
        0 0 0 1px rgba(255,255,255,0.07);
}

.vehicle-coming-soon-copy {
    position: absolute;
    top: 128px;
    left: 50%;
    width: min(520px, calc(100% - 60px));
    max-width: none;
    padding: 14px 18px;
    border: 1px solid rgba(197,160,89,0.55);
    border-radius: 999px;
    background: rgba(10,10,10,0.78);
    color: #f4e5c1;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.32);
}

@media (max-width: 767px) {
    .vehicle-coming-soon-title {
        top: 24px;
        left: 16px;
        padding: 7px 12px 6px;
        font-size: clamp(19px, 6vw, 27px);
        letter-spacing: 0.11em;
        transform: rotate(-5deg);
    }

    .vehicle-coming-soon-copy {
        top: 100px;
        width: min(330px, calc(100% - 32px));
        padding: 11px 13px;
        border-radius: 18px;
        font-size: 10px;
        letter-spacing: 0.06em;
        line-height: 1.4;
    }
}

/* Keep gallery arrows visually above the Coming-Soon notice */
.vehicle-gallery-arrow {
    z-index: 8;
}

.vehicle-gallery-arrow-prev,
.vehicle-gallery-arrow-next {
    top: 58%;
}

.vehicle-coming-soon-copy {
    width: min(460px, calc(100% - 120px));
}

@media (max-width: 767px) {
    .vehicle-gallery-arrow {
        z-index: 8;
    }

    .vehicle-gallery-arrow-prev,
    .vehicle-gallery-arrow-next {
        top: 60%;
    }

    .vehicle-coming-soon-copy {
        width: min(290px, calc(100% - 64px));
    }
}

.booking-consent-shell {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.booking-consent-line {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b8b8b8;
}

.booking-consent-checkbox {
    width: 16px;
    height: 16px;
    margin-top: 0.15rem;
    accent-color: var(--solt-gold);
    flex: 0 0 auto;
}

.booking-consent-link {
    color: var(--solt-gold);
    text-decoration: none;
    border: 0;
    border-bottom: 1px solid rgba(197,160,89,0.45);
    background: transparent;
    padding: 0;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    cursor: pointer;
}

.booking-consent-link:hover {
    color: white;
    border-bottom-color: white;
}

.rental-terms-panel {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 1.25rem);
    transform: translateX(-50%);
    z-index: 20;
    width: min(720px, calc(100vw - 3rem));
    max-height: min(70vh, 620px);
    overflow-y: auto;
    border: 1px solid rgba(197,160,89,0.35);
    background: rgba(18,18,18,0.98);
    box-shadow: 0 28px 80px rgba(0,0,0,0.55);
    padding: 2rem;
}

.rental-terms-close {
    position: absolute;
    top: 0.75rem;
    right: 0.9rem;
    border: 0;
    background: transparent;
    color: #9ca3af;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.rental-terms-close:hover {
    color: white;
}

.rental-terms-title {
    margin-bottom: 1.25rem;
    color: var(--solt-gold);
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.rental-terms-content {
    display: grid;
    gap: 1rem;
    color: #d6d6d6;
    font-size: 13px;
    line-height: 1.75;
}

.rental-terms-content strong {
    color: white;
    font-weight: 400;
}

@media (max-width: 640px) {
    .rental-terms-panel {
        position: fixed;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        transform: none;
        width: auto;
        max-height: 78vh;
        padding: 1.5rem;
    }
}

.footer-contact-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 3rem;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    background: rgba(255,255,255,0.015);
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.footer-contact-icon:hover {
    color: var(--solt-gold);
    border-color: rgba(197,160,89,0.45);
    background: rgba(197,160,89,0.06);
    transform: translateY(-1px);
}

.footer-contact-icon i {
    font-size: 14px;
    line-height: 1;
}

.direct-contact-cta {
    max-width: 760px;
    margin: -3rem auto 5rem;
    padding: 1.75rem;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.018);
    text-align: center;
}

.direct-contact-cta__eyebrow {
    margin-bottom: 0.75rem;
    color: var(--solt-gold);
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.direct-contact-cta__text {
    max-width: 560px;
    margin: 0 auto 1.5rem;
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.08em;
}

.direct-contact-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

.direct-contact-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(197,160,89,0.35);
    padding: 0.85rem 1.1rem;
    color: #d6d6d6;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.direct-contact-cta__link:hover {
    color: white;
    border-color: rgba(197,160,89,0.75);
    background: rgba(197,160,89,0.06);
}

.direct-contact-cta__link i {
    color: var(--solt-gold);
    font-size: 14px;
}

@media (max-width: 640px) {
    .direct-contact-cta {
        margin-top: -2rem;
        margin-bottom: 4rem;
        padding: 1.5rem;
    }

    .direct-contact-cta__actions {
        display: grid;
    }

    .direct-contact-cta__link {
        justify-content: center;
    }
}

/* --- Header 2026 / dynamische Navigation --- */

.site-header-main {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.desktop-mega-nav {
    display: none;
    align-items: center;
    gap: 2.2rem;
}

.mega-nav-item {
    position: relative;
    padding-bottom: 1.35rem;
    margin-bottom: -1.35rem;
    z-index: 20;
}

.mega-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: white;
    text-decoration: none;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    transition: color 0.25s ease;
}

.mega-nav-link:hover {
    color: var(--solt-gold);
}

.mega-dropdown {
    position: absolute;
    top: calc(100% - 1.35rem);
    left: 50%;
    min-width: 230px;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(18,18,18,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.45);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mega-nav-item::after {
    content: "";
    position: absolute;
    left: -1.75rem;
    right: -1.75rem;
    top: 42px;
    height: 2.2rem;
}

.mega-dropdown::before {
    content: "";
    position: absolute;
    left: -1rem;
    right: -1rem;
    top: -1.4rem;
    height: 1.4rem;
}

.mega-nav-item:hover .mega-dropdown,
.mega-nav-item:focus-within .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown a {
    display: block;
    padding: 0.85rem 0.7rem;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mega-dropdown a:hover {
    color: var(--solt-gold);
    padding-left: 1rem;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.header-contact-choice {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: white;
    z-index: 30;
}

.header-contact-choice summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 38px;
    padding: 0 0.85rem;
    border: 1px solid rgba(197,160,89,0.35);
    border-radius: 999px;
    color: white;
    background: rgba(197,160,89,0.055);
    cursor: pointer;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-contact-choice summary::-webkit-details-marker {
    display: none;
}

.header-contact-choice summary:hover,
.header-contact-choice[open] summary {
    color: var(--solt-gold);
    border-color: rgba(197,160,89,0.75);
    background: rgba(197,160,89,0.09);
}

.header-contact-choice summary i {
    color: var(--solt-gold);
    font-size: 14px;
}

.header-contact-choice__menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    min-width: 190px;
    padding: 0.65rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(18,18,18,0.97);
    box-shadow: 0 24px 70px rgba(0,0,0,0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.header-contact-choice__menu a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 0.75rem;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.header-contact-choice__menu a:last-child {
    border-bottom: 0;
}

.header-contact-choice__menu a:hover {
    color: var(--solt-gold);
    padding-left: 1rem;
}

.header-contact-choice__menu i {
    width: 15px;
    color: var(--solt-gold);
    text-align: center;
}

.hamburger-button {
    width: 44px;
    height: 34px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-button span {
    display: block;
    width: 34px;
    height: 1px;
    background: white;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-menu-open .hamburger-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-menu-open .hamburger-button span:nth-child(2) {
    opacity: 0;
}

.site-menu-open .hamburger-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.section-scroll-rail {
    display: none;
}

.mobile-menu-panel {
    position: fixed;
    inset: 82px 0 auto 0;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 1.5rem 1.25rem 2rem;
    background: rgba(18,18,18,0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-group {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-group > button {
    width: 100%;
    padding: 1.2rem 0;
    background: transparent;
    border: none;
    color: white;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
}

.mobile-menu-group a {
    display: block;
    padding: 0.8rem 0 0.8rem 1rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@media (min-width: 1024px) {
    .desktop-mega-nav {
        display: flex;
    }

    .section-scroll-rail {
        display: flex;
        width: 100%;
        overflow: hidden;
        border-top: 1px solid rgba(255,255,255,0.05);
        background: linear-gradient(90deg, rgba(197,160,89,0.08), rgba(255,255,255,0.02), rgba(197,160,89,0.08));
    }

    .section-scroll-rail button {
        flex: 0 0 var(--section-rail-item-width, 25vw);
        padding: 0.95rem 1rem;
        color: white;
        background: transparent;
        border: none;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.45em;
        cursor: pointer;
        transform: translateX(var(--section-rail-offset, 37.5vw));
        transition: transform 0.42s cubic-bezier(.22,.61,.36,1), color 0.25s ease, background 0.25s ease, filter 0.25s ease;
    }

    .section-scroll-rail.is-scrolling button {
        filter: drop-shadow(0 0 18px rgba(197,160,89,0.22));
    }

    .section-scroll-rail button.is-active {
        color: var(--solt-gold);
        background: rgba(197,160,89,0.12);
    }

    .mobile-menu-panel {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .hamburger-button {
        display: inline-flex;
    }

    .lang-switch {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
    }

    .header-contact-choice summary {
        padding: 0 0.7rem;
        letter-spacing: 0.08em;
    }

    .header-contact-choice__menu {
        right: -3.7rem;
    }
}

/* --- iOS Safari: Header-Jitter beim Scrollen verhindern --- */
@media (max-width: 1023px) {
    @supports (-webkit-touch-callout: none) {
        
    }
}
@media (max-width: 480px) {
    .header-contact-choice summary span {
        display: none;
    }

    .header-contact-choice summary {
        width: 38px;
        justify-content: center;
        padding: 0;
    }
}



/* ─── Floating contact ─────────────────────────────────────── */
.float-contact {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 9997;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.float-contact__label {
    font-size: clamp(9px, 0.6vw, 11px);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.7);
    text-align: right;
    pointer-events: none;
}
.float-contact__buttons {
    display: flex;
    gap: 8px;
}
.float-contact__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(48px, 3.5vw, 64px);
    height: clamp(48px, 3.5vw, 64px);
    background: rgba(18, 18, 18, 0.92);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: rgba(197, 160, 89, 0.8);
    font-size: clamp(18px, 1.4vw, 22px);
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.float-contact__btn:hover {
    border-color: var(--solt-gold);
    color: var(--solt-gold);
    background: rgba(18, 18, 18, 0.98);
}
@media (max-width: 767px) {
    .float-contact {
        right: 14px;
        bottom: 16px;
        gap: 6px;
    }
    .float-contact__btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    .float-contact__label {
        display: none;
    }
}

/* ─── Nav link hover — line animation ─────────────────────── */
.mega-nav-link {
    position: relative;
}
.mega-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--solt-gold);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-nav-link:hover::after {
    width: 100%;
}

/* ─── Header scroll behaviour ─────────────────────────────
   transform is set via Alpine :style binding (not CSS class)
   so no .site-header--hidden rule is needed here.
   The transition runs whenever Alpine updates the inline style. */
.site-header {
    top: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Section scroll rail: standalone fixed element ───────────
   Moved out of <header> so it stays visible when nav hides.
   Top position controlled via Alpine :style on .section-scroll-rail-wrap */
.section-scroll-rail-wrap {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 48;
}

/* ─── Funnel ───────────────────────────────────────────────── */
.funnel-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 1.5rem 8rem;
}
.funnel-quick {
    padding: 5rem 1.5rem 8rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.funnel-indicator {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 3.5rem;
}
.funnel-dot {
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,.12);
    transition: background .3s;
}
.funnel-dot.is-done { background: var(--solt-gold); }
.funnel-dot.is-next { background: rgba(197,160,89,.35); }

.funnel-back {
    background: transparent;
    border: none;
    color: #555;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    margin-bottom: 2.5rem;
    transition: color .2s;
    display: block;
}
.funnel-back:hover { color: var(--solt-gold); }

.funnel-step { animation: funnel-step-in .4s cubic-bezier(.16,1,.3,1) both; }
@keyframes funnel-step-in {
    from { opacity:0; transform:translateY(18px); }
    to   { opacity:1; transform:translateY(0); }
}

.funnel-eyebrow {
    font-size: 10px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--solt-gold);
    margin-bottom: .75rem;
}
.funnel-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 200;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
    line-height: 1.15;
}
.funnel-sub {
    font-size: 13px;
    color: #8f8f8f;
    letter-spacing: .05em;
    margin-bottom: 3rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Step 1: mode buttons */
.funnel-mode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (max-width: 600px) {
    .funnel-mode-grid { grid-template-columns: 1fr; }
}
.funnel-mode-btn {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
    padding: 2.5rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    transition: border-color .3s, background .3s;
}
.funnel-mode-btn:hover {
    border-color: var(--solt-gold);
    background: rgba(197,160,89,.05);
}
.funnel-mode-icon { font-size: 1.6rem; }
.funnel-mode-label {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -.01em;
}
.funnel-mode-sub {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #555;
}

/* Step 2: vehicle cards */
.funnel-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.funnel-vehicle-card {
    border: 1px solid rgba(255,255,255,.08);
    background: #1a1a1a;
    cursor: pointer;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: border-color .3s;
    padding: 0;
}
.funnel-vehicle-card.is-selected { border-color: var(--solt-gold); }
.funnel-vehicle-card:hover { border-color: rgba(255,255,255,.25); }
.funnel-vehicle-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}
.funnel-vehicle-body { padding: 1rem 1.1rem 1.2rem; }
.funnel-vehicle-tagline {
    font-size: 9px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--solt-gold);
    margin-bottom: .3rem;
}
.funnel-vehicle-name {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    margin-bottom: .3rem;
}
.funnel-vehicle-spec {
    font-size: 10px;
    color: #555;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.funnel-vehicle-check {
    position: absolute;
    top: .6rem;
    right: .6rem;
    background: var(--solt-gold);
    color: #000;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Step 3: date options */
.funnel-date-options { margin-bottom: 2rem; }
.funnel-flexible-btn {
    border: 1px solid rgba(255,255,255,.15);
    background: transparent;
    color: #888;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    padding: .9rem 2rem;
    cursor: pointer;
    transition: all .25s;
    margin-bottom: .5rem;
}
.funnel-flexible-btn.is-active {
    border-color: var(--solt-gold);
    color: var(--solt-gold);
    background: rgba(197,160,89,.06);
}
.funnel-date-pickers { margin-top: 1rem; }
.funnel-date-row { margin-bottom: 2rem; }
.funnel-date-label {
    display: block;
    font-size: 9px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: .75rem;
}
.funnel-date-chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.funnel-select {
    width: 100%;
    margin-top: .5rem;
}

/* Step 4: contact */
.funnel-contact-form { text-align: left; max-width: 480px; margin: 0 auto 2rem; }
.funnel-reveal-btn { padding: 1.2rem 4rem; font-size: 12px; }

/* Step 5: price reveal */
.funnel-reveal-step { text-align: center; }
.funnel-price-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.funnel-price-card {
    border: 1px solid rgba(255,255,255,.08);
    padding: 2.5rem 3rem;
    text-align: center;
    min-width: 200px;
}
.funnel-price-card--hero {
    border-color: var(--solt-gold);
    background: rgba(197,160,89,.04);
}
.funnel-price-eyebrow {
    font-size: 9px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: #8f8f8f;
    margin-bottom: .75rem;
}
.funnel-price-amount {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 200;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: .5rem;
    animation: funnel-step-in .6s cubic-bezier(.16,1,.3,1) both;
}
.funnel-price-detail {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #555;
}
.funnel-legal {
    font-size: 10px;
    color: #444;
    letter-spacing: .1em;
    margin-top: 1rem;
    text-transform: uppercase;
}

/* Step 6: success */
.funnel-success-step { text-align: center; padding: 4rem 0; }

/* Step actions */
.funnel-step-actions { text-align: center; margin-top: 2.5rem; }

/* Entry buttons (quick section) */
.funnel-entry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 680px;
    margin: 0 auto;
}
@media (max-width: 600px) { .funnel-entry-grid { grid-template-columns: 1fr; } }
.funnel-entry-btn {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    align-items: center;
    cursor: pointer;
    transition: border-color .3s, background .3s;
}
.funnel-entry-btn:hover {
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.04);
}
.funnel-entry-label {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -.01em;
}
.funnel-entry-sub {
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #555;
}


/* Funnel location picker */
.funnel-location-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    color: #aaa;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .9rem 1.2rem;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    text-align: left;
}
.funnel-location-toggle:hover { border-color: rgba(255,255,255,.35); color: #fff; }
.funnel-location-arrow { font-size: 14px; opacity: .5; }
.funnel-location-list {
    margin-top: .5rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.funnel-location-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.08);
    color: #ccc;
    padding: .9rem 1.2rem;
    cursor: pointer;
    font-size: 13px;
    text-align: left;
    transition: border-color .2s, background .2s;
    width: 100%;
}
.funnel-location-btn:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); }
.funnel-location-btn.is-selected { border-color: var(--solt-gold); background: rgba(197,160,89,.06); color: #fff; }
.funnel-location-btn--other .funnel-location-name { color: #8f8f8f; }
.funnel-location-name { font-size: 13px; }
.funnel-location-fee { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: #555; }
.funnel-location-btn.is-selected .funnel-location-fee { color: var(--solt-gold); }
.funnel-location-other-input { margin-top: .75rem; }

/* Funnel price calculation animation */
.funnel-calculating-step { text-align: center; padding: 4rem 0; }
.funnel-calc-loader {
    width: 56px; height: 56px;
    border: 1px solid rgba(197,160,89,.2);
    border-top-color: var(--solt-gold);
    border-radius: 50%;
    animation: funnel-spin 1s linear infinite;
    margin: 0 auto 2.5rem;
}
@keyframes funnel-spin { to { transform: rotate(360deg); } }
.funnel-calc-phrase {
    font-size: 11px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--solt-gold);
    margin-bottom: .75rem;
    min-height: 1.5em;
    transition: opacity .2s;
}
.funnel-calc-sub {
    font-size: 11px;
    color: #444;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.funnel-location-note {
    background: rgba(197,160,89,.07);
    border: 1px solid rgba(197,160,89,.2);
    color: #a08040;
    font-size: 11px;
    letter-spacing: .08em;
    line-height: 1.7;
    padding: .9rem 1.2rem;
    margin: 1.5rem 0;
    text-align: left;
}
.funnel-location-note .fa-circle-info { margin-right: .5rem; }


/* ── QUICK-WIN: Tastatur-Fokus sichtbar (Barrierefreiheit) ── */
a:focus-visible, button:focus-visible, [role="button"]:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid #c5a059;
    outline-offset: 3px;
}
