/* ============================================================
   LEISTUNGEN SECTION
   ============================================================ */

   .leistungen-section {
    background-color: var(--nachtblau);
    padding: 60px 24px;
}

.leistungen-headline {
    color: var(--weiss);
    text-align: center;
    margin: 0 0 40px;
}

.leistungen-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.leistung-card {
    background-color: var(--weiss);
    border-radius: 12px;
    overflow: hidden;
    max-width: 360px;
    margin: 0 auto;
}

.leistung-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.leistung-card-body {
    padding: 24px;
}

.leistung-card-title {
    color: var(--nachtblau);
    margin: 0 0 12px;
}

.leistung-card-text {
    color: var(--nachtblau);
    margin: 0 0 16px;
}

.leistung-card-link {
    color: var(--nachtblau);
    text-decoration: none;
}

.leistung-card-link:hover {
    text-decoration: underline;
}

@media (min-width: 700px) {
    .leistungen-grid {
        flex-direction: row;
        gap: 24px;
    }

    .leistung-card {
        flex: 1;
        max-width: none;
        margin: 0;
    }
}


/* ============================================================
   RADMARKEN SECTION
   ============================================================ */

.radmarken-section {
    background-color: var(--nachtblau);
    padding: 0 24px 60px;
}

.radmarken-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.radmarken-text {
    order: 1;
}

.radmarken-img--brompton {
    order: 2;
}

.radmarken-img--ahooga {
    order: 3;
}

.radmarken-img--tern {
    order: 4;
}

.radmarken-img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: contain;
    aspect-ratio: 327 / 259;
    background-color: var(--weiss);
}

.radmarken-headline {
    color: var(--weiss);
    margin: 0 0 16px;
}

.radmarken-copy {
    color: var(--weiss);
    margin: 0 0 16px;
}

.radmarken-link {
    color: var(--weiss);
    text-decoration: none;
}

.radmarken-link:hover {
    text-decoration: underline;
}

@media (min-width: 700px) {
    .radmarken-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 16px;
    }

    .radmarken-text {
        order: unset;
        grid-column: 2;
        grid-row: 1;
    }

    .radmarken-img--brompton {
        order: unset;
        grid-column: 2;
        grid-row: 2;
        aspect-ratio: unset;
        height: 100%;
    }

    .radmarken-img--ahooga {
        order: unset;
        grid-column: 1;
        grid-row: 1;
        aspect-ratio: unset;
        height: 100%;
    }

    .radmarken-img--tern {
        order: unset;
        grid-column: 1;
        grid-row: 2;
        aspect-ratio: unset;
        height: 100%;
    }
}


/* ============================================================
   FEATURE SECTION
   ============================================================ */

.feature-section {
    background-color: var(--weiss);
    padding: 60px 24px;
}

.feature-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-headline {
    color: var(--nachtblau);
    margin: 0 0 40px;
}

.feature-block {
    margin-bottom: 32px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block-title {
    color: var(--nachtblau);
    font-weight: bold;
    letter-spacing: 0.15em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.feature-block-copy {
    color: var(--nachtblau);
    margin: 0 0 8px;
}

.feature-block-copy:last-child {
    margin-bottom: 0;
}

.feature-images {
    width: 100%;
}

.feature-img-large {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

@media (min-width: 700px) {
    .feature-section {
        padding: 60px 60px;
    }

    .feature-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .feature-text {
        flex: 1;
    }

    .feature-images {
        flex: 1;
    }

    .feature-img-large {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
}


/* ============================================================
   HERO3 SECTION
   ============================================================ */

.hero3-section {
    background-color: var(--nachtblau);
    overflow: visible;
    padding-top: 12px;
}

.hero3-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px 60px;
}

.hero3-image-wrap {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    background-color: var(--sonnenuntergangsgelb);
    overflow: hidden;
    margin-bottom: 40px;
}

.hero3-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero3-text {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.hero3-copy {
    color: var(--sandgelb);
    margin: 0;
}

.hero3-btn {
    display: inline-block;
    background-color: var(--sonnenuntergangsgelb);
    color: var(--nachtblau);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 100px;
}

.hero3-btn:hover {
    background-color: var(--sandgelb);
}

@media (min-width: 700px) {
    .hero3-inner {
        flex-direction: row;
        align-items: center;
        gap: 60px;
        padding: 60px 60px 60px;
        overflow: visible;
    }

    .hero3-text {
        flex: 1;
        max-width: none;
        align-items: flex-start;
        order: 1;
    }

    .hero3-image-wrap {
        flex-shrink: 0;
        width: 380px;
        max-width: none;
        aspect-ratio: 1 / 1;
        margin-bottom: 0;
        margin-top: -98px;
        border-radius: 24px;
        overflow: visible;
        order: 2;
    }

    .hero3-img {
        border-radius: 24px;
        overflow: hidden;
    }
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials-section {
    background-color: var(--nachtblau);
    padding: 60px 12px;
}

.testimonials-headline {
    color: var(--weiss);
    margin: 0 0 40px;
    padding: 0 12px;
}

.testimonials-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonials-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid var(--sonnenuntergangsgelb);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
}

.testimonials-arrow svg {
    width: 14px;
    height: 14px;
}

.testimonials-arrow:hover {
    background-color: var(--sonnenuntergangsgelb);
}

.testimonials-arrow:hover svg path {
    stroke: var(--nachtblau);
}

.testimonials-track {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background-color: var(--weiss);
    border-radius: 12px;
    padding: 32px 24px 24px;
    min-width: 65vw;
    max-width: 65vw;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.testimonial-quote {
    color: var(--nachtblau);
    margin: 0 0 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    color: var(--nachtblau);
    font-weight: bold;
}

.testimonial-role {
    color: var(--nachtblau);
    font-size: 14px;
}

@media (min-width: 700px) {
    .testimonials-section {
        padding: 60px 60px;
    }

    .testimonials-headline {
        padding: 0;
    }

    .testimonials-wrapper {
        gap: 16px;
    }

    .testimonials-arrow {
        width: 48px;
        height: 48px;
    }

    .testimonials-arrow svg {
        width: 24px;
        height: 24px;
    }

    .testimonials-track {
        gap: 24px;
    }

    .testimonial-card {
        min-width: 350px;
        max-width: 350px;
    }
}