/* ============================================================
   ROHRREINIGUNG GÜTERSLOH – MAIN STYLESHEET
   Design: Pixel-perfect match to template
   Colors: #2563EB (blue), #0F172A (dark navy), #1E3A5F (mid-navy)
   Font: Plus Jakarta Sans
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ──────────────────────────────── */
:root {
    /* Brand Colors */
    --clr-blue:        #2563EB;
    --clr-blue-dark:   #1D4ED8;
    --clr-blue-light:  #EFF6FF;
    --clr-blue-mid:    #DBEAFE;
    --clr-navy:        #0F172A;
    --clr-navy-mid:    #1E3A5F;
    --clr-green:       #16A34A;
    --clr-amber:       #F59E0B;

    /* Neutrals */
    --clr-white:       #FFFFFF;
    --clr-gray-50:     #F8FAFC;
    --clr-gray-100:    #F1F5F9;
    --clr-gray-200:    #E2E8F0;
    --clr-gray-400:    #94A3B8;
    --clr-gray-500:    #64748B;
    --clr-gray-700:    #334155;
    --clr-gray-900:    #0F172A;

    /* Typography */
    --font-base:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --fw-regular:      400;
    --fw-medium:       500;
    --fw-semibold:     600;
    --fw-bold:         700;
    --fw-extrabold:    800;

    /* Spacing */
    --container-max:   1180px;
    --container-pad:   clamp(16px, 4vw, 40px);
    --section-py:      clamp(60px, 8vw, 96px);

    /* Shadows */
    --shadow-sm:       0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md:       0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
    --shadow-lg:       0 10px 40px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.06);
    --shadow-card:     0 2px 12px rgba(37,99,235,.10);

    /* Border Radius */
    --radius-sm:       6px;
    --radius-md:       10px;
    --radius-lg:       16px;
    --radius-xl:       24px;

    /* Transitions */
    --trans-fast:      150ms ease;
    --trans-base:      250ms ease;
    --trans-slow:      400ms ease;
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.65;
    color: var(--clr-gray-700);
    background: var(--clr-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a        { color: inherit; text-decoration: none; }
ul, ol   { list-style: none; }
button   { cursor: pointer; font-family: inherit; }

/* ── LAYOUT UTILITY ─────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    font-size: 15px;
    line-height: 1;
    transition: background var(--trans-base), color var(--trans-base),
                border-color var(--trans-base), transform var(--trans-fast),
                box-shadow var(--trans-base);
    border: 2px solid transparent;
    white-space: nowrap;
    text-align: center;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--clr-blue);
    color: var(--clr-white);
    border-color: var(--clr-blue);
}
.btn-primary:hover {
    background: var(--clr-blue-dark);
    border-color: var(--clr-blue-dark);
    box-shadow: 0 4px 20px rgba(37,99,235,.35);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-gray-700);
    border-color: var(--clr-gray-200);
}
.btn-outline:hover {
    border-color: var(--clr-blue);
    color: var(--clr-blue);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--clr-gray-100);
    color: var(--clr-gray-900);
    border-color: var(--clr-gray-200);
}
.btn-secondary:hover {
    background: var(--clr-gray-200);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 15px 28px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn-block { width: 100%; justify-content: center; }

.btn-cta-white {
    background: var(--clr-white);
    color: var(--clr-blue);
    border-color: var(--clr-white);
    font-weight: var(--fw-bold);
    font-size: 18px;
    padding: 16px 36px;
}
.btn-cta-white:hover {
    background: var(--clr-blue-light);
    box-shadow: 0 6px 24px rgba(0,0,0,.15);
    transform: translateY(-2px);
}

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: var(--fw-bold);
    letter-spacing: .12em;
    color: var(--clr-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: var(--fw-extrabold);
    color: var(--clr-navy);
    line-height: 1.25;
}

/* ── DESKTOP BR ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .desktop-br { display: none; }
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-gray-100);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--trans-base);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.10);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.header-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.header-nav { flex: 1; }

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-list li a {
    display: block;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: var(--fw-medium);
    color: var(--clr-gray-700);
    border-radius: var(--radius-sm);
    transition: color var(--trans-fast), background var(--trans-fast);
}

.nav-list li a:hover,
.nav-list li.current-menu-item a {
    color: var(--clr-blue);
    background: var(--clr-blue-light);
}

.nav-list li.current-menu-item a {
    font-weight: var(--fw-semibold);
}

/* Header CTA Button */
.btn-header-cta {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 20px;
    line-height: 1.2;
}

.btn-header-cta span {
    font-size: 15px;
    font-weight: var(--fw-bold);
}

.btn-header-cta small {
    font-size: 10px;
    font-weight: var(--fw-regular);
    opacity: .85;
    letter-spacing: .02em;
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-navy);
    border-radius: 2px;
    transition: transform var(--trans-base), opacity var(--trans-base);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ================================================================
   HERO SECTION – Vollflächiges Hintergrundbild
   ================================================================ */
.hero-section {
    /* background-image set via inline style in PHP */
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    min-height: 640px;
}

/* Gradient-Overlay: links weiß/opak → rechts transparent → Bild sichtbar */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(248,250,252,1.0)   0%,
        rgba(239,246,255,0.97) 30%,
        rgba(239,246,255,0.80) 52%,
        rgba(239,246,255,0.20) 72%,
        transparent            100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    min-height: 640px;
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 0;
    gap: 0;
}

.hero-content {
    padding: clamp(48px, 7vw, 80px) 32px clamp(48px, 7vw, 80px) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-blue-light);
    border: 1.5px solid #BFDBFE;
    color: var(--clr-blue);
    font-size: 11px;
    font-weight: var(--fw-bold);
    letter-spacing: .1em;
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    text-transform: uppercase;
    width: fit-content;
}

/* Headline */
.hero-headline {
    font-size: clamp(26px, 3.8vw, 46px);
    font-weight: var(--fw-extrabold);
    color: var(--clr-navy);
    line-height: 1.12;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.hero-headline--blue {
    color: var(--clr-blue);
}

.hero-subtext {
    font-size: 16px;
    color: var(--clr-gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-btn-call {
    background: var(--clr-blue);
    font-size: 16px;
    font-weight: var(--fw-bold);
    padding: 16px 28px;
    box-shadow: 0 4px 20px rgba(37,99,235,.30);
}

/* Trust Bar */
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--clr-gray-200);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item div strong {
    display: block;
    font-size: 13px;
    font-weight: var(--fw-bold);
    color: var(--clr-navy);
    line-height: 1.2;
}

.trust-item div span {
    font-size: 12px;
    color: var(--clr-gray-500);
}

/* Hero Image Wrap – transparent spacer; bg is on .hero-section */
.hero-image-wrap {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 60px;
    padding-left: 24px;
}

/* Price Badge */
.hero-price-badge {
    position: relative;
    background: var(--clr-white);
    border: 2.5px solid var(--clr-blue);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(37,99,235,.30);
    z-index: 10;
    line-height: 1.1;
}

.price-label {
    font-size: 10px;
    font-weight: var(--fw-semibold);
    color: var(--clr-blue);
    line-height: 1.3;
}

.price-number {
    font-size: 30px;
    font-weight: var(--fw-extrabold);
    color: var(--clr-blue);
    line-height: 1;
}

.price-sub {
    font-size: 10px;
    font-weight: var(--fw-semibold);
    color: var(--clr-gray-500);
}


/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section {
    padding: var(--section-py) 0;
    background: var(--clr-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--clr-white);
    border: 1.5px solid var(--clr-gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 22px 22px;
    transition: border-color var(--trans-base), box-shadow var(--trans-base), transform var(--trans-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-blue-light), transparent);
    opacity: 0;
    transition: opacity var(--trans-base);
}

.service-card:hover {
    border-color: var(--clr-blue);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--clr-blue-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: background var(--trans-base);
}

.service-card:hover .service-icon {
    background: var(--clr-blue-mid);
}

.service-title {
    font-size: 15px;
    font-weight: var(--fw-bold);
    color: var(--clr-navy);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.service-text {
    font-size: 13px;
    color: var(--clr-gray-500);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-gray-100);
    color: var(--clr-blue);
    position: relative;
    z-index: 1;
    transition: background var(--trans-fast), color var(--trans-fast);
}

.service-link:hover {
    background: var(--clr-blue);
    color: var(--clr-white);
}


/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
    padding: var(--section-py) 0;
    background: var(--clr-gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-headline {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: var(--fw-extrabold);
    color: var(--clr-navy);
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--clr-gray-500);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 15px;
}

.about-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-box {
    background: var(--clr-white);
    border: 1.5px solid var(--clr-gray-200);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: border-color var(--trans-base), box-shadow var(--trans-base);
}

.stat-box:hover {
    border-color: var(--clr-blue);
    box-shadow: var(--shadow-card);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: var(--fw-extrabold);
    color: var(--clr-blue);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--clr-gray-500);
    font-weight: var(--fw-medium);
    line-height: 1.4;
}


/* ================================================================
   PRICING SECTION – Vollflächiges Van-Hintergrundbild
   ================================================================ */
.pricing-section {
    /* background-image set via inline style in PHP */
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

/* Gradient: links opak für Karteninhalt → rechts transparent → Van sichtbar */
.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(248,250,252,0.97)  0%,
        rgba(248,250,252,0.95) 40%,
        rgba(248,250,252,0.70) 65%,
        rgba(248,250,252,0.10) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

/* Pricing Card – kompakter, macht Platz für den Van */
.pricing-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 48px;
    background: rgba(255,255,255,0.90);
    border: 1.5px solid rgba(226,232,240,0.80);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
    /* Karte nimmt nur 65% der Breite – Van rechts sichtbar */
    max-width: 65%;
}

.price-box {
    text-align: center;
}

.price-box-label {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--clr-blue);
    margin-bottom: 8px;
}

.price-box-price {
    font-size: 18px;
    color: var(--clr-gray-700);
    margin-bottom: 20px;
    line-height: 1;
}

.price-box-price strong {
    display: block;
    font-size: 56px;
    font-weight: var(--fw-extrabold);
    color: var(--clr-navy);
    line-height: 1;
}

/* Pricing Checklist */
.pricing-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--clr-gray-700);
    font-weight: var(--fw-medium);
}

.pricing-checklist li svg {
    flex-shrink: 0;
}

.pricing-image-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pricing-van-bg {
    width: 100%;
    height: 320px;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,.12));
    border-radius: var(--radius-lg);
}


/* ================================================================
   REVIEWS SECTION
   ================================================================ */
.reviews-section {
    padding: var(--section-py) 0;
    background: var(--clr-gray-50);
}

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

.review-card {
    background: var(--clr-white);
    border: 1.5px solid var(--clr-gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: box-shadow var(--trans-base), transform var(--trans-base);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 14px;
    color: var(--clr-gray-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    quotes: "\201E" "\201C";
}

.review-text::before { content: open-quote; }
.review-text::after  { content: close-quote; }

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-style: normal;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-blue);
    color: var(--clr-white);
    font-size: 13px;
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 14px;
    color: var(--clr-navy);
    font-weight: var(--fw-semibold);
}

.review-author span {
    font-size: 12px;
    color: var(--clr-gray-400);
}


/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
    background: linear-gradient(135deg, #1E3A5F 0%, #1D4ED8 60%, #2563EB 100%);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-banner-left {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--clr-white);
}

.cta-banner-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    flex-shrink: 0;
}

.cta-banner-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: var(--fw-extrabold);
    color: var(--clr-white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.cta-banner-sub {
    font-size: 15px;
    color: rgba(255,255,255,.80);
}

.cta-banner-right {
    text-align: center;
}

.cta-banner-hint {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    margin-top: 8px;
    font-style: italic;
}


/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-section {
    padding: var(--section-py) 0;
    background: var(--clr-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-label { text-align: left; }

.contact-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: var(--fw-extrabold);
    color: var(--clr-navy);
    line-height: 1.25;
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 15px;
    color: var(--clr-gray-500);
    line-height: 1.75;
    margin-bottom: 24px;
}

.contact-trust {
    margin-bottom: 28px;
    padding: 16px 20px;
    background: var(--clr-gray-50);
    border: 1px solid var(--clr-gray-200);
    border-radius: var(--radius-md);
}

.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--clr-gray-500);
    line-height: 1.5;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--clr-white);
    border: 1.5px solid var(--clr-gray-200);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 20px;
    font-weight: var(--fw-bold);
    color: var(--clr-navy);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--clr-gray-500);
    margin-bottom: 28px;
}

/* Form Elements */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--clr-gray-700);
    margin-bottom: 6px;
}

.form-group label span {
    color: var(--clr-blue);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-base);
    color: var(--clr-gray-900);
    background: var(--clr-gray-50);
    border: 1.5px solid var(--clr-gray-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--trans-fast), box-shadow var(--trans-fast),
                background var(--trans-fast);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    background: var(--clr-white);
    border-color: var(--clr-blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,.10);
}

.form-group input::placeholder {
    color: var(--clr-gray-400);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
    font-weight: var(--fw-bold);
    letter-spacing: .04em;
    margin-top: 6px;
    border-radius: var(--radius-md);
}

/* Form Feedback */
.form-message {
    padding: 0;
    font-size: 14px;
    border-radius: var(--radius-md);
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--trans-base);
}

.form-message.show {
    padding: 12px 16px;
    margin-bottom: 16px;
    max-height: 100px;
}

.form-message.success {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #15803D;
}

.form-message.error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
}

/* Loading spinner */
.spin {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: var(--clr-navy);
    color: var(--clr-white);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
    gap: 48px;
    padding-top: 64px;
    padding-bottom: 48px;
}

/* Footer Brand */
.footer-logo img {
    filter: brightness(0) invert(1);
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    color: rgba(255,255,255,.70);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans-fast), color var(--trans-fast);
}

.social-link:hover {
    background: var(--clr-blue);
    color: var(--clr-white);
}

/* Footer Columns */
.footer-col-title {
    font-size: 13px;
    font-weight: var(--fw-bold);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.90);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    transition: color var(--trans-fast);
}

.footer-links a:hover {
    color: var(--clr-white);
}

/* Footer Contact */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.60);
    line-height: 1.5;
}

.footer-contact-list li svg {
    flex-shrink: 0;
    margin-top: 1px;
    opacity: .70;
}

.footer-contact-list a {
    color: rgba(255,255,255,.70);
    transition: color var(--trans-fast);
}

.footer-contact-list a:hover {
    color: var(--clr-white);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,.40);
}

.footer-legal-nav {
    display: flex;
    gap: 20px;
}

.footer-legal-nav a {
    font-size: 13px;
    color: rgba(255,255,255,.40);
    transition: color var(--trans-fast);
}

.footer-legal-nav a:hover {
    color: rgba(255,255,255,.75);
}


/* ================================================================
   RESPONSIVE – TABLET (max 1100px)
   ================================================================ */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        /* Still in grid naturally */
    }

    /* Pricing: auf Tablet Karte voller, Van bleibt Hintergrund */
    .pricing-grid {
        grid-template-columns: 180px 1fr;
        max-width: 70%;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }
}

/* ================================================================
   RESPONSIVE – TABLET (max 900px)
   ================================================================ */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
        min-height: auto;
    }

    .hero-content {
        padding: 48px 0 0;
        order: 1;
    }

    .hero-image-wrap {
        order: 2;
        min-height: 400px;
        -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
        background-position: center 20%;
    }

    .hero-trust {
        justify-content: flex-start;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

/* ================================================================
   RESPONSIVE – MOBILE (max 768px)
   ================================================================ */
@media (max-width: 768px) {
    /* Header */
    .header-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--clr-white);
        border-bottom: 1px solid var(--clr-gray-100);
        box-shadow: 0 8px 24px rgba(0,0,0,.10);
        padding: 16px 20px;
        z-index: 999;
    }

    .header-nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-list li a {
        padding: 12px 8px;
        display: block;
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid var(--clr-gray-100);
    }

    .hamburger {
        display: flex;
    }

    .btn-header-cta span { font-size: 14px; }

    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 48px 0 36px;
    }

    .hero-image-wrap {
        min-height: 340px;
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        background-position: center top;
    }

    .hero-price-badge {
        bottom: 20px;
        left: 20px;
    }

    .hero-trust {
        justify-content: flex-start;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Pricing: Mobile – Karte voll breit, Van im Hintergrund sichtbar */
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 24px;
        max-width: 100%;
    }
    /* Mobile: Overlay anders – von oben opak, unten transparent → Van unten sichtbar */
    .pricing-section::before {
        background: linear-gradient(
            to bottom,
            rgba(248,250,252,0.97)  0%,
            rgba(248,250,252,0.95) 55%,
            rgba(248,250,252,0.50) 80%,
            rgba(248,250,252,0.05) 100%
        );
    }
    .pricing-section {
        background-position: center bottom;
        padding-bottom: calc(var(--section-py) + 60px);
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* CTA Banner */
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-banner-left {
        flex-direction: column;
        text-align: center;
    }

    /* About stats */
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 40px;
        padding-bottom: 28px;
    }

    .footer-col--brand {
        grid-column: auto;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Contact form */
    .contact-form-card {
        padding: 24px 20px;
    }
}

/* ================================================================
   RESPONSIVE – SMALL MOBILE (max 480px)
   ================================================================ */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-call,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================================================
   ACCESSIBILITY & PRINT
   ================================================================ */
:focus-visible {
    outline: 2px solid var(--clr-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
}

@media print {
    .site-header,
    .hero-buttons,
    .cta-banner,
    .contact-section,
    .site-footer { display: none; }
    body { font-size: 12pt; }
}


/* ================================================================
   CONTACT FORM 7 (CF7) STYLES
   ================================================================ */

/* CF7 wrapper */
.wpcf7 { width: 100%; }
.wpcf7-form { display: flex; flex-direction: column; gap: 0; }

/* CF7 form fields – match our design */
.wpcf7-form-control-wrap { display: block; width: 100%; }

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-base);
    color: var(--clr-gray-900);
    background: var(--clr-gray-50);
    border: 1.5px solid var(--clr-gray-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--trans-fast), box-shadow var(--trans-fast),
                background var(--trans-fast);
    appearance: none;
    -webkit-appearance: none;
    margin-bottom: 18px;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    background: var(--clr-white);
    border-color: var(--clr-blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,.10);
}

.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* CF7 Submit Button */
.wpcf7-form input[type="submit"],
.wpcf7-submit {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: var(--fw-bold);
    font-family: var(--font-base);
    letter-spacing: .04em;
    background: var(--clr-blue);
    color: var(--clr-white);
    border: 2px solid var(--clr-blue);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--trans-base), transform var(--trans-fast),
                box-shadow var(--trans-base);
    text-transform: uppercase;
    margin-top: 4px;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
    background: var(--clr-blue-dark);
    border-color: var(--clr-blue-dark);
    box-shadow: 0 4px 20px rgba(37,99,235,.35);
    transform: translateY(-1px);
}

/* CF7 Validation Messages */
.wpcf7-not-valid-tip {
    color: #DC2626;
    font-size: 12px;
    margin-top: -14px;
    margin-bottom: 10px;
    display: block;
}

.wpcf7-response-output {
    margin: 12px 0 0 !important;
    padding: 12px 16px !important;
    border-radius: var(--radius-md) !important;
    font-size: 14px !important;
    border-width: 1px !important;
}

.wpcf7-mail-sent-ok {
    background: #F0FDF4 !important;
    border-color: #BBF7D0 !important;
    color: #15803D !important;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked {
    background: #FEF2F2 !important;
    border-color: #FECACA !important;
    color: #DC2626 !important;
}

/* CF7 Loading Spinner */
.wpcf7 .ajax-loader {
    display: none !important;
}

.wpcf7-form.submitting input[type="submit"] {
    opacity: 0.7;
    cursor: not-allowed;
}