:root {
    --primary-color: white;
    --primary-border: white;

    --primary-bg: hsla(216, 98%, 35%, 1);
    --primary-bg-95: hsla(216, 98%, 35%, 0.9);
    --primary-bg-50: hsla(216, 98%, 35%, 0.5);
    --primary-bg-10: hsla(216, 98%, 35%, 0.1);
    --primary-bg-shade: hsla(216, 98%, 25%, 1);

    --primary-bg2: hsla(232, 80%, 31%, 1);
    --primary-bg2-95: hsla(232, 80%, 31%, 0.95);
    --primary-bg2-shade: hsla(232, 80%, 20%, 1);

    --secondary-color: black;
    --secondary-bg: white;
    --secondary-bg-90: rgba(255, 255, 255, 0.9);
    --secondary-bg-shade: rgba(231, 231, 231, 1);

    --transparent-light: rgba(255, 255, 255, 0.1);
    --standard-shadow: rgb(130, 130, 130);

    --accent: #f59e0b;
    --accent-hover: #d97706;
    --success: #25d366;

    font-size: 20px;
    font-family: Roboto, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

/* Screen reader only - visually hidden but accessible */
.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;
}

h1 {
    display: none;
}

p {
    margin: 0;
}

a:link,
a:visited {
    color: var(--primary-bg);
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: var(--primary-bg);
    background-color: transparent;
    text-decoration: underline;
}

html,
body {
    overflow-x: hidden;
    margin: 0;
    min-width: 350px;
    scroll-behavior: smooth;
}

/* ===== HEADER ===== */
header {
    background-color: var(--secondary-bg);
    height: 5rem;
    padding: 0 30px;
    position: absolute; /* mitscrollen lassen */
    width: 100%;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    height: 60%;
    flex-shrink: 0;
}

.header-hint {
    display: none;
}

.header-hint p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-bg);
}

@media (min-width: 1350px) {
    .header-hint {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        white-space: nowrap;
    }
}

.hero-hint-mobile {
    display: none;
}

@media (max-width: 1349px) {
    .hero-hint-mobile {
        display: block;
        color: white;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        font-weight: 500;
        line-height: 1.4;
        max-width: 600px;
    }
}

.hover-button {
    position: relative;
    font-size: 0.9rem;
    background-color: var(--primary-bg);
    color: white;
    border: 2px solid var(--primary-bg);
    border-radius: 30px;
    padding: 12px 24px;
    cursor: pointer;
    z-index: 100;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-weight: 500;
}

.hover-button:hover {
    background-color: var(--primary-bg-shade);
    border-color: var(--primary-bg-shade);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* ===== HERO SECTION ===== */
#hero {
    margin-top: 5rem; /* header offset */
    position: relative;
    min-height: calc(100vh - 5rem);
    display: flex;
    align-items: stretch;
    justify-content: center;
    background-color: hsl(216, 98%, 25%);
    background-image:
        linear-gradient(
            135deg,
            hsla(216, 98%, 25%, 0.97) 0%,
            hsla(232, 80%, 20%, 0.96) 60%,
            hsla(216, 98%, 35%, 0.95) 100%
        ),
        url("img/Tino_Schroeder.png");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    /* Allow the image to protrude above */
    overflow: visible;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the container content */
    padding: 0 40px;
}

.hero-photo-wrapper {
    position: absolute;
    top: -50px; /* Protrude 50px above hero */
    bottom: 0px; /* Flush at the bottom */
    left: -20px; /* Let it grow to the left */
    right: 50%;
    margin-right: 300px; /* Prevent text overlap */
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: none;
    z-index: 51; /* Show above header */
}

.hero-photo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 0;
}

@media (max-width: 1350px) {
    .hero-container {
        justify-content: flex-end;
    }
    .hero-photo-wrapper {
        left: 40px;
        right: auto;
        margin-right: 0;
        width: 42%;
        justify-content: flex-start;
    }
    .hero-photo-wrapper img {
        object-position: bottom left;
    }
    .hero-content {
        width: 58%;
        margin: 0;
    }
}

@media (max-width: 1000px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }
    .hero-photo-wrapper {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        justify-content: center;
        margin: 1rem 0 0 0; /* Flush bottom to touch CTA */
        z-index: auto; /* normal flow, no overlap */
    }
    .hero-photo-wrapper img {
        max-height: 40vh;
        object-position: bottom center;
    }
    .hero-content {
        width: 100%;
        max-width: 700px;
        order: 1;
        padding-top: 2rem;
    }
}

.hero-logo {
    width: 280px;
    margin-bottom: 2rem;
    opacity: 0.95;
    filter: brightness(1.1);
}

#hero h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
    background: var(--accent);
    color: #1a1a2e;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.45);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    display: inline-block;
}

.hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.55);
}

.primary-cta {
    background: var(--primary-bg);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(2, 62, 176, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-block;
}

.primary-cta:hover {
    background: var(--primary-bg-shade);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(2, 62, 176, 0.35);
}

.hero-hint {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.05em;
}

/* ===== TRUST BAR ===== */
#trust-bar {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    padding: 25px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-bg);
}

.trust-stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.trust-label {
    font-size: 0.75rem;
    color: #555;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-bg);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #555;
    text-align: center;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== BENEFITS SECTION ===== */
#benefits {
    padding: 80px 20px;
    background: white;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-bg-10);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.benefit-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-bg);
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    font-weight: 300;
}

/* ===== REVIEWS SECTION ===== */
#reviews {
    padding: 80px 20px 100px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url(img/handschlag.png);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.reviews-content {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header .section-title {
    margin-bottom: 0.8rem;
}

.reviews-header .section-subtitle {
    margin-bottom: 1.5rem;
}

/* Google Reviews Link */
.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: white;
    border: 2px solid #e8eaed;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.google-reviews-link:hover {
    border-color: #4285f4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

.google-logo {
    height: 23px;
    width: 68px;
    flex-shrink: 0;
}

.google-reviews-link span {
    color: var(--primary-bg);
    font-weight: 500;
    font-size: 0.85rem;
}

.google-reviews-link:hover span {
    color: #4285f4;
}

#google-rating-display {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Slider */
.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
}

.slideshow-container {
    padding: 0;
    position: relative;
    background-color: transparent;
}

/* Slides */
.mySlides {
    padding: 45px 60px;
    text-align: center;
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
}

/* Arrows */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 14px;
    color: #888;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50%;
    user-select: none;
    z-index: 20;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
}

.next {
    right: -20px;
}

.prev {
    left: -20px;
}

.prev:hover,
.next:hover {
    background-color: var(--primary-bg);
    color: white;
}

/* Dots */
.dot-container {
    text-align: center;
    padding: 20px 0;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.active,
.dot:hover {
    background-color: var(--primary-bg);
    transform: scale(1.15);
}

/* Review card content */
.google-review-badge {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 1rem;
}

.star-icon {
    width: 20px;
    height: 20px;
    margin: 0 1px;
}

q {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
}

.author {
    color: #666;
    padding-top: 15px;
    font-size: 0.85rem;
    font-weight: 300;
}

.loading-reviews {
    text-align: center;
    padding: 80px 20px;
    color: var(--primary-bg);
    font-size: 1.1rem;
}

/* Read More Button */
.read-more-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 0.82rem;
    font-weight: 400;
    cursor: pointer;
    padding: 8px 0;
    margin: 8px 0 0 0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more-btn:hover {
    color: #555;
}

.read-more-btn::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: -2px;
}

.read-more-btn:hover::after {
    transform: rotate(45deg) translateY(2px);
}

.read-more-btn.expanded::after {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.read-more-btn.expanded:hover::after {
    transform: rotate(-135deg) translateY(-2px);
}

.review-text {
    display: block;
    transition: all 0.3s ease;
    overflow: hidden;
}

.review-text.expanded {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.7;
    text-align: left;
}

/* Custom scrollbar */
.review-text.expanded::-webkit-scrollbar {
    width: 5px;
}

.review-text.expanded::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.review-text.expanded::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.review-text.expanded::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* ===== WHATSAPP CTA SECTION ===== */
#whatsapp-cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    text-align: center;
    box-shadow: inset 0 0 30px rgba(0, 216, 29, 0.1);
}

.whatsapp-content h3 {
    font-size: 1.7rem;
    color: #166534;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.whatsapp-content p {
    color: #15803d;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 300;
}

.whatsapp-large-button {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-large-button:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

/* ===== CONTACT SECTION ===== */
#contact-section {
    padding: 80px 20px 60px;
    background: white;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-trust {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 20px;
}

.contact-logo {
    width: 200px;
}

.contact-promises {
    list-style: none;
    padding: 0;
}

.contact-promises li {
    font-size: 0.85rem;
    color: #444;
    padding: 6px 0;
    line-height: 1.5;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
}

.contact-social li {
    list-style: none;
    display: flex;
    align-items: center;
}

.contact-social li a {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 28px;
    height: 28px;
    display: block;
    transition: transform 0.2s ease;
}

.contact-icon:hover {
    transform: scale(1.15);
}

/* Contact Booking Box (Calendly) */
.contact-booking-box {
    flex: 1.2;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 480px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ===== FOOTER ===== */
footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 12px;
    background-color: #f5f7fa;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

footer > a {
    color: #888;
    font-size: 0.65rem;
}

footer > a:hover {
    color: var(--primary-bg);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
a.whatsapp-float,
a.whatsapp-float:visited,
a.whatsapp-float:link {
    position: fixed;
    min-width: 160px;
    height: 56px;
    bottom: -100px; /* Initially hidden below screen */
    opacity: 0;
    pointer-events: none;
    right: 30px;
    background-color: #1a7a2e;
    color: white;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px 0 16px;
    z-index: 100;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 8px 32px rgba(26, 122, 46, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

a.whatsapp-float.show-whatsapp {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

a.whatsapp-float:hover {
    background-color: #12591f;
    transform: translateY(-4px);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.2),
        0 12px 40px rgba(26, 122, 46, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.whatsapp-text {
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===== ANIMATIONS ===== */
.fade {
    animation: fade 1.2s ease-in-out;
}

@keyframes fade {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE: LARGE SCREENS ===== */
@media (min-width: 1921px) {
    :root {
        font-size: 24px;
    }

    .trust-bar-inner {
        max-width: 1200px;
    }
}

/* ===== RESPONSIVE: MEDIUM ===== */
@media (max-width: 1350px) {
    :root {
        font-size: 18px;
    }

    #hero h2 {
        font-size: 1.8rem;
    }

    .hero-logo {
        width: 240px;
    }
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1000px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-trust {
        width: 100%;
    }

    .contact-booking-box {
        width: 100%;
        max-width: 500px;
    }

    .reviews-slider {
        max-width: 90vw;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 768px) {
    header {
        padding: 0 15px;
    }

    .hover-button {
        font-size: 0.75rem;
        padding: 10px 18px;
    }

    /* Hero */
    #hero {
        min-height: 90vh;
        background-attachment: scroll;
    }

    #hero h2 {
        font-size: 1.4rem;
    }

    .hero-sub {
        font-size: 0.9rem;
    }

    .hero-logo {
        width: 200px;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 30px 20px;
    }

    /* Trust bar */
    .trust-bar-inner {
        gap: 1.2rem;
    }

    .trust-divider {
        display: none;
    }

    .trust-number {
        font-size: 1.2rem;
    }

    .trust-label {
        font-size: 0.65rem;
    }

    /* Benefits */
    #benefits {
        padding: 50px 15px;
    }

    .benefits-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 30px 25px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    /* Reviews */
    #reviews {
        padding: 50px 15px 70px;
    }

    .mySlides {
        padding: 30px 20px 20px;
        min-height: 350px;
    }

    .prev,
    .next {
        padding: 10px;
        font-size: 14px;
    }

    .prev {
        left: 2px;
    }

    .next {
        right: 2px;
    }

    /* WhatsApp CTA */
    #whatsapp-cta {
        padding: 40px 15px;
    }

    .whatsapp-content h3 {
        font-size: 1.3rem;
    }

    .whatsapp-large-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    /* Contact */
    #contact-section {
        padding: 50px 15px 40px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    #contact-form .row {
        flex-direction: column;
    }

    /* Floating WhatsApp */
    a.whatsapp-float {
        min-width: 140px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        padding: 0 16px 0 12px;
        border-radius: 25px;
        font-size: 0.85rem;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }

    .whatsapp-text {
        font-size: 0.85rem;
    }
}

/* ===== RESPONSIVE: SMALL MOBILE ===== */
@media (max-width: 480px) {
    :root {
        font-size: 16px;
    }

    .hero-logo {
        width: 170px;
    }

    #hero h2 {
        font-size: 1.3rem;
    }

    .hero-cta {
        padding: 14px 26px;
        font-size: 0.9rem;
    }

    .trust-bar-inner {
        flex-direction: row;
        gap: 0.8rem;
        #contact-form {
            width: 100%;
            max-width: 500px;
        }

        .reviews-slider {
            max-width: 90vw;
        }

        .prev {
            left: 5px;
        }

        .next {
            right: 5px;
        }
    }

    /* ===== RESPONSIVE: MOBILE ===== */
    @media (max-width: 768px) {
        header {
            padding: 10px 15px 0;
        }

        .hover-button {
            font-size: 0.75rem;
            padding: 10px 18px;
            right: 15px;
            top: 1.2rem;
        }

        /* Hero */
        #hero {
            min-height: 90vh;
            background-attachment: scroll;
        }

        #hero h2 {
            font-size: 1.4rem;
        }

        .hero-sub {
            font-size: 0.9rem;
        }

        .hero-logo {
            width: 200px;
            margin-bottom: 1.5rem;
        }

        .hero-cta {
            padding: 15px 30px;
            font-size: 0.95rem;
        }

        .hero-content {
            padding: 30px 20px;
        }

        /* Trust bar */
        .trust-bar-inner {
            gap: 1.2rem;
        }

        .trust-divider {
            display: none;
        }

        .trust-number {
            font-size: 1.2rem;
        }

        .trust-label {
            font-size: 0.65rem;
        }

        /* Benefits */
        #benefits {
            padding: 50px 15px;
        }

        .benefits-grid {
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .benefit-card {
            padding: 30px 25px;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .section-subtitle {
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        /* Reviews */
        #reviews {
            padding: 50px 15px 70px;
        }

        .mySlides {
            padding: 30px 20px 20px;
            min-height: 350px;
        }

        .prev,
        .next {
            padding: 10px;
            font-size: 14px;
        }

        .prev {
            left: 2px;
        }

        .next {
            right: 2px;
        }

        /* WhatsApp CTA */
        #whatsapp-cta {
            padding: 40px 15px;
        }

        .whatsapp-content h3 {
            font-size: 1.3rem;
        }

        .whatsapp-large-button {
            padding: 14px 28px;
            font-size: 0.95rem;
        }

        /* Contact */
        #contact-section {
            padding: 50px 15px 40px;
        }

        .contact-wrapper {
            flex-direction: column;
            gap: 30px;
        }

        #contact-form .row {
            flex-direction: column;
        }

        /* Floating WhatsApp */
        a.whatsapp-float {
            min-width: 140px;
            height: 50px;
            bottom: 20px;
            right: 20px;
            padding: 0 16px 0 12px;
            border-radius: 25px;
            font-size: 0.85rem;
        }

        .whatsapp-icon {
            width: 24px;
            height: 24px;
        }

        .whatsapp-text {
            font-size: 0.85rem;
        }
    }

    /* ===== RESPONSIVE: SMALL MOBILE ===== */
    @media (max-width: 480px) {
        :root {
            font-size: 16px;
        }

        .hero-logo {
            width: 170px;
        }

        #hero h2 {
            font-size: 1.3rem;
        }

        .hero-cta {
            padding: 14px 26px;
            font-size: 0.9rem;
        }

        .trust-bar-inner {
            flex-direction: row;
            gap: 0.8rem;
        }

        .trust-item {
            gap: 2px;
        }
    }
}

/* ===== LEITFADEN MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #999;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-bg);
    text-decoration: none;
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    color: var(--primary-bg);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.modal-header p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

#leitfaden-form {
    display: flex;
    flex-direction: column;
}

#leitfaden-form input {
    margin-bottom: 12px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #f9fbfd;
    transition: all 0.2s;
}

#leitfaden-form input:focus {
    outline: none;
    border-color: var(--primary-bg);
    background-color: white;
    box-shadow: 0 0 0 3px var(--primary-bg-10);
}

.modal-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.modal-message.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.modal-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ===== MOBILE ADJUSTMENTS ===== */
@media (max-width: 600px) {
    header {
        padding: 0 15px; /* Less padding on small screens to give button more space */
    }

    .hover-button {
        padding: 10px 14px; /* Smaller button padding */
        font-size: 0.8rem; /* Smaller font on small screens */
    }
}
