:root {
    --brand-blue: #26509f;
    --brand-blue-dark: #173d7f;
    --brand-blue-light: #eaf2ff;

    --text-color: #14171c;
    --text-muted: #555d68;

    --background-color: #ffffff;
    --background-light: #f5f7fa;
    --background-grey: #f2f3f5;

    --border-color: #e2e6ec;

    --container-width: 1400px;

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 28px;

    --shadow-small:
        0 8px 24px rgba(15, 23, 42, 0.08);

    --shadow-medium:
        0 18px 45px rgba(15, 23, 42, 0.14);
}


/* GRUNDEINSTELLUNGEN */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text-color);
    background: var(--background-color);

    line-height: 1.5;
}

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

a {
    color: inherit;
}

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

.page-container {
    width: min(
        calc(100% - 48px),
        var(--container-width)
    );

    margin-inline: auto;
}
[id] {
    scroll-margin-top: 100px;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border-color);

    backdrop-filter: blur(14px);
}

.header-inner {
    width: min(
        calc(100% - 48px),
        var(--container-width)
    );

    min-height: 76px;

    margin-inline: auto;

    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 180px;
    height: auto;
}

.main-navigation {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 25px;
}

.main-navigation a {
    position: relative;

    font-size: 13px;
    font-weight: 700;

    color: var(--text-color);
    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.2s ease;
}

.main-navigation a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--brand-blue);

    transition:
        width 0.2s ease;
}

.main-navigation a:hover {
    color: var(--brand-blue);
}

.main-navigation a:hover::after {
    width: 100%;
}

.header-button {
    min-height: 42px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    color: #ffffff;
    background: var(--brand-blue);

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    white-space: nowrap;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.header-button:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 10px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 3px;

    margin: 5px 0;

    border-radius: 10px;
    background: var(--text-color);
}


/* BUTTONS */

.button {
    min-height: 46px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border: 1px solid transparent;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #ffffff;
    background: var(--brand-blue);
}

.button-primary:hover {
    background: var(--brand-blue-dark);
}

.button-outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.2);
}

.button-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
}

.button-light {
    color: var(--brand-blue-dark);
    background: #ffffff;
}

.button-light:hover {
    background: #edf3ff;
}


/* HERO */

.hero {
    position: relative;

    min-height: 540px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #ffffff;
    background: #111111;
}

.hero-background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center ;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 8, 15, 0.94) 0%,
            rgba(3, 8, 15, 0.78) 37%,
            rgba(3, 8, 15, 0.18) 72%,
            rgba(3, 8, 15, 0.06) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 85px;
    padding-bottom: 85px;
}

.hero-copy {
    max-width: 600px;
}

.eyebrow {
    margin: 0 0 10px;

    color: var(--brand-blue);

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.eyebrow-light {
    color: #ffffff;
}

.hero h1 {
    margin: 0;

    font-size: clamp(46px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.045em;

    text-transform: uppercase;
}

.hero h1 span {
    color: var(--brand-blue);
}

.hero-description {
    max-width: 500px;

    margin: 25px 0 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 18px;
    line-height: 1.65;
}

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

    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* LEISTUNGSKARTEN */

.service-overview {
    position: relative;
    z-index: 5;

    margin-top: -38px;
}

.service-grid {
    padding: 18px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    border-radius: var(--radius-medium);
    background: #ffffff;

    box-shadow: var(--shadow-medium);
}

.service-card {
    position: relative;

    overflow: hidden;

    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
    background: #ffffff;

    box-shadow: var(--shadow-small);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 34px rgba(15, 23, 42, 0.13);
}

.service-card > img {
    width: 100%;
    height: 145px;

    object-fit: cover;
}

.service-card-icon {
    position: absolute;
    z-index: 2;

    top: -1px;
    left: 18px;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 4px solid #ffffff;
    border-radius: 50%;

    color: #ffffff;
    background: var(--brand-blue);

    font-size: 22px;
}

.service-card-content {
    padding: 18px;
}

.service-card h2 {
    margin: 0;

    font-size: 19px;
}

.service-card p {
    min-height: 66px;

    margin: 9px 0 14px;

    color: var(--text-muted);

    font-size: 14px;
}

.service-card a {
    color: var(--brand-blue);

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.service-card a span {
    margin-left: 6px;
}


/* ALLGEMEINE INHALTSBEREICHE */

.content-section {
    padding-top: 18px;
}

.feature-box,
.rental-box,
.vehicle-section {
    border-radius: var(--radius-medium);
    overflow: hidden;
}

.feature-box {
    min-height: 420px;

    display: grid;
    grid-template-columns: 44% 56%;
}

.feature-box-light {
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f1f4f8 100%
        );
}

.feature-copy {
    padding: 62px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.feature-copy h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.feature-copy > p:not(.eyebrow) {
    max-width: 550px;

    margin: 20px 0 0;

    color: var(--text-muted);

    font-size: 17px;
}

.feature-media {
    min-height: 420px;
}

.feature-media img {
    width: 100%;
    height: auto;
    margin-left: 0;
    object-fit: contain;  
}

.check-list {
    margin: 24px 0 28px;
    padding: 0;

    list-style: none;
}

.check-list li {
    position: relative;

    margin: 8px 0;
    padding-left: 26px;

    color: #2d333b;

    font-size: 15px;
}

.check-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: var(--brand-blue);

    font-weight: 900;
}


/* VERMIETUNG */

.rental-box {
    min-height: 435px;

    display: grid;
    grid-template-columns: 44% 56%;

    background:
        linear-gradient(
            135deg,
            #f9fcff 0%,
            #dfecff 100%
        );
}

.rental-media {
    position: relative;

    min-height: 435px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;
}

.rental-car {
    width: 85%;
    max-height: 390px;

    object-fit: contain;
    object-position: center bottom;
}
.rental-video {
    object-fit: contain;
}

.video-card {
    position: absolute;
    right: 30px;
    bottom: 24px;

    width: 180px;
    aspect-ratio: 9 / 14;
    overflow: hidden;

    border: 6px solid #ffffff;
    border-radius: 13px;
    background: #0d0d0d;

    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.3);
}
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}



.play-button {
    position: absolute;
    inset: 50% auto auto 50%;

    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--text-color);
    background: #ffffff;

    transform: translate(-50%, -50%);

    font-size: 19px;
}


/* FAHRZEUGHANDEL */

.vehicle-section {
    padding: 44px 46px 34px;

    background:
        linear-gradient(
            135deg,
            var(--background-grey) 0%,
            #ffffff 100%
        );
}

.section-heading {
    margin-bottom: 22px;
}

.section-heading h2 {
    margin: 0;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.035em;
}

.section-heading > p:not(.eyebrow) {
    margin: 12px 0 0;

    color: var(--text-muted);
}

.vehicle-slider {
    position: relative;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.vehicle-card {
    position: relative;

    min-height: 225px;

    overflow: hidden;

    border-radius: var(--radius-small);
    background: #dddddd;
}

.vehicle-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.35s ease;
}

.vehicle-card:hover img {
    transform: scale(1.035);
}

.vehicle-information {
    position: absolute;
    inset: auto 0 0;

    padding: 18px;

    color: #ffffff;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.88)
        );
}

.vehicle-information h3 {
    margin: 25px 0 0;

    font-size: 19px;
}

.vehicle-information p {
    margin: 3px 0 0;

    font-size: 14px;
}

.slider-button {
    position: absolute;
    z-index: 2;
    top: 50%;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border-color);
    border-radius: 50%;

    color: var(--brand-blue);
    background: #ffffff;

    box-shadow: var(--shadow-small);

    font-size: 28px;

    cursor: pointer;

    transform: translateY(-50%);
}

.slider-button-left {
    left: -43px;
}

.slider-button-right {
    right: -43px;
}

.vehicle-benefits {
    margin-top: 24px;

    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 22px;
    align-items: center;
}

.vehicle-benefit {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.benefit-icon {
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--brand-blue);
    background: var(--brand-blue-light);

    font-weight: 800;
}

.vehicle-benefit h3 {
    margin: 0;

    color: var(--brand-blue);

    font-size: 15px;
}

.vehicle-benefit p {
    margin: 4px 0 0;

    color: var(--text-muted);

    font-size: 13px;
}


/* VORTEILE */

.advantages-section {
    padding-top: 18px;
	margin-bottom: 4px;
}

.advantages-box {
    padding: 32px 48px 38px;

    border-radius: var(--radius-medium);

    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--brand-blue-dark) 0%,
            var(--brand-blue) 100%
        );
}

.advantages-title {
    margin: 0 0 28px;

    text-align: center;

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.advantage {
    text-align: center;
}

.advantage-icon {
    min-height: 54px;

    display: grid;
    place-items: center;

    font-size: 45px;
    line-height: 1;
}

.advantage h2 {
    margin: 12px 0 7px;

    font-size: 16px;
}

.advantage p {
    max-width: 240px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;
}


/* KONTAKT CTA */

.contact-cta {
    position: relative;

    margin-top: 0;

    overflow: hidden;

    color: #ffffff;
    background: var(--brand-blue-dark);
}

.contact-background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(16, 51, 104, 0.96),
            rgba(22, 63, 126, 0.8)
        );
}

.contact-cta-inner {
    position: relative;
    z-index: 2;

    min-height: 180px;

    padding-top: 32px;
    padding-bottom: 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-cta h2 {
    margin: 0;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
}

.contact-cta p {
    max-width: 620px;

    margin: 12px 0 0;

    color: rgba(255, 255, 255, 0.88);
}


/* FOOTER */

.site-footer {
    padding: 30px 0;

    background: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns:
        1.25fr
        1fr
        1fr
        1fr
		1fr
        auto;

    gap: 38px;
    align-items: start;
}

.footer-logo img {
    width: 180px;
}

.footer-column h2 {
    margin: 0 0 7px;

    font-size: 14px;
}

.footer-column p,
.footer-column address {
    margin: 3px 0;

    color: var(--text-muted);

    font-size: 13px;
    font-style: normal;
}

.footer-column a {
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--brand-blue);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border-color);
    border-radius: 50%;

    color: var(--text-color);

    font-size: 11px;
    font-weight: 800;
    text-decoration: none;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.social-links a:hover {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}


/* TABLET */

@media (max-width: 1180px) {

    .header-inner {
        gap: 18px;
    }

    .main-navigation {
        gap: 16px;
    }

    .main-navigation a {
        font-size: 12px;
    }

    .header-button {
        padding-inline: 14px;
    }

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

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

    .vehicle-benefits > .button {
        grid-column: 1 / -1;
        justify-self: end;
    }

    .slider-button-left {
        left: 8px;
    }

    .slider-button-right {
        right: 8px;
    }
}


/* MOBILE-NAVIGATION UND KLEINE TABLETS */

@media (max-width: 960px) {

    .page-container {
        width: min(
            calc(100% - 30px),
            var(--container-width)
        );
    }

    .header-inner {
        width: min(
            calc(100% - 30px),
            var(--container-width)
        );

        min-height: 68px;
    }

    .logo img {
        width: 150px;
    }

    .menu-toggle {
        margin-left: auto;

        display: block;
    }

    .main-navigation {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;

        margin: 0;
        padding: 20px;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        border-top: 1px solid var(--border-color);
        background: #ffffff;

        box-shadow: var(--shadow-medium);
    }

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

    .main-navigation a {
        padding: 13px 5px;

        border-bottom: 1px solid var(--border-color);

        font-size: 14px;
    }

    .main-navigation a::after {
        display: none;
    }

    .header-button {
        display: none;
    }

    .hero {
        min-height: 520px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 8, 15, 0.92),
                rgba(3, 8, 15, 0.6)
            );
    }

    .feature-box,
    .rental-box {
        grid-template-columns: 1fr;
    }

    .feature-copy {
        padding: 42px;
    }

    .feature-media {
        min-height: 350px;
    }

    .rental-media {
        min-height: 420px;
    }

    .vehicle-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vehicle-card:last-child {
        display: none;
    }

    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .social-links {
        grid-column: 1 / -1;
    }
}


/* SMARTPHONE */

@media (max-width: 640px) {

    .hero {
        min-height: 580px;
    }

    .hero-background {
        object-position: 66% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 8, 15, 0.96),
                rgba(3, 8, 15, 0.72)
            );
    }

    .hero-content {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .service-overview {
        margin-top: -22px;
    }

    .service-grid {
        padding: 12px;

        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }

    .feature-copy {
        padding: 34px 25px;
    }

    .feature-copy h2 {
        font-size: 36px;
    }

    .feature-media {
        min-height: 280px;
    }

    .rental-media {
        min-height: 360px;
    }

    .rental-car {
        width: 100%;
    }

    .video-card {
    position: absolute;
    right: 30px;
    bottom: 24px;

    width: 180px;
    aspect-ratio: 9 / 14;

    overflow: hidden;

    border: 6px solid #ffffff;
    border-radius: 13px;

    background: #0d0d0d;

    box-shadow:
        0 14px 35px rgba(15, 23, 42, 0.3);
}

/*.video-card {
    position: relative;
    width: 180px;
    aspect-ratio: 9 / 14;
    overflow: hidden;
    border: 6px solid #ffffff;
    border-radius: 13px;
    background: #0d0d0d;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.3);
}*/

.video-card video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    padding: 0;
    border: 0;
    border-radius: 50%;

    color: #26509f;
    background: rgba(255, 255, 255, 0.95);

    font-size: 22px;
    cursor: pointer;

    transform: translate(-50%, -50%);
}

.video-card.is-playing .play-button {
    display: none;
}

    .vehicle-section {
        padding: 36px 18px 28px;
    }

    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-card {
        min-height: 240px;
    }

    .vehicle-card:not(:first-child) {
        display: none;
    }

    .vehicle-benefits {
        grid-template-columns: 1fr;
    }

    .vehicle-benefits > .button {
        grid-column: auto;
        justify-self: stretch;
    }

    .slider-button-left {
        left: 5px;
		margin-left: 22px;
    }

    .slider-button-right {
        right: 5px;
		
    }

    .advantages-box {
        padding: 30px 22px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta-inner {
        min-height: 230px;

        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .contact-cta-inner .button {
        width: 100%;
    }

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

    .social-links {
        grid-column: auto;
    }
}
@media (max-width: 640px) {

    #aufbereitung .feature-copy h2 {
        font-size: 30px;
        line-height: 1.04;
    }

}
@media (max-width: 390px) {

    #aufbereitung .feature-copy h2 {
        font-size: 27px;
    }

}
@media (max-width: 640px) {

    #vermietung .feature-copy h2 {
        font-size: clamp(22px, 7vw, 30px);
        line-height: 1.05;
        letter-spacing: -0.03em;
        white-space: nowrap;
    }

}