/* ============================================
   Womoport – Hauptstylesheet
   ============================================ */

/* ---- Schrift: Inter (selbst gehostet, DSGVO-konform) ---- */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('/assets/fonts/inter-800.woff2') format('woff2'); }

:root {
    --yellow:   #FFD202;
    --dark:     #1a1a2e;
    --dark2:    #16213e;
    --gray:     #5c5c5c;
    --light:    #f8f8f8;
    --white:    #ffffff;
    --text:     #242424;
    --border:   #e0e0e0;
    --radius:   6px;
    --shadow:   0 4px 20px rgba(0,0,0,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---- Scroll-Reveal & Hero-Animation ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.hero-bg { animation: kenburns 16s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; }
    .hero-bg { animation: none !important; }
    html { scroll-behavior: auto; }
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

a { color: var(--dark); text-decoration: none; }
a:hover { color: var(--yellow); }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 13px 28px;
    background: var(--yellow);
    color: var(--dark) !important;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius);
    border: 2px solid var(--yellow);
    cursor: pointer;
    transition: background .2s, color .2s, transform .15s;
    text-align: center;
}
.btn:hover { background: #e6bc00; border-color: #e6bc00; transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--white) !important;
    border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark) !important; }
.btn-outline.dark {
    color: var(--dark) !important;
    border-color: var(--dark);
}
.btn-outline.dark:hover { background: var(--dark); color: var(--white) !important; }
.btn-sm { padding: 9px 20px; font-size: 14px; }

/* ---- Header ---- */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 84px;
}
.logo { display: flex; align-items: center; margin-right: auto; }

/* Hell-/Dunkel-Umschalter */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: background .2s, border-color .2s, color .2s;
    flex-shrink: 0;
}
.theme-toggle:hover { background: var(--light); border-color: var(--gray); }
.theme-toggle svg { width: 20px; height: 20px; }
.icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: inline; }
.logo-img { display: block; height: 50px; width: auto; }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.main-nav a {
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    transition: background .2s, color .2s;
}
.main-nav a:hover { background: var(--light); color: var(--dark); }
.main-nav a.active { color: var(--dark); font-weight: 700; }
.main-nav .btn { color: var(--dark) !important; margin-left: 8px; }
.main-nav .btn:hover { color: var(--dark) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .3s;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--dark2);
}
.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 1;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,20,35,.55) 0%, rgba(15,20,35,.45) 50%, rgba(15,20,35,.65) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    color: var(--white);
    padding: 40px 0;
}
.hero-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}
.hero-stars svg { width: 26px; height: 26px; color: var(--yellow); }
.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -.5px;
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 36px;
    opacity: .95;
    font-weight: 300;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ---- Section ---- */
section { padding: 80px 0; }
section.bg-light { background: var(--light); }
section.bg-dark { background: var(--dark); color: var(--white); }
section.bg-dark h2, section.bg-dark h3 { color: var(--white); }

.section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--yellow);
    margin-bottom: 8px;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.lead { font-size: 1.1rem; color: var(--gray); max-width: 680px; }
section.bg-dark .lead { color: #aaa; }

/* ---- Features Grid ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    margin-top: 48px;
}
.feature-card {
    background: var(--white);
    border-radius: 14px;
    padding: 30px 28px;
    box-shadow: 0 6px 22px rgba(0,0,0,.07);
    border: 1px solid var(--border);
    transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,0,0,.13); }
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--yellow);
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(255,210,2,.35);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.12rem; margin-bottom: 10px; color: var(--dark); }
.feature-card p { color: var(--gray); font-size: .93rem; line-height: 1.7; }

/* ---- Benefit-Karten (Bildhintergrund + Overlay) ---- */
.benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.benefit-card {
    position: relative;
    min-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--shadow);
}
.benefit-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.benefit-card:hover img { transform: scale(1.05); }
.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,25,45,.15) 0%, rgba(20,25,45,.55) 55%, rgba(20,25,45,.9) 100%);
}
.benefit-body {
    position: relative;
    z-index: 1;
    padding: 34px 30px;
    color: var(--white);
}
.benefit-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    color: var(--yellow);
}
.benefit-icon svg { width: 100%; height: 100%; }
.benefit-body h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 10px; }
.benefit-body p { font-size: .93rem; color: rgba(255,255,255,.88); line-height: 1.6; }

/* ---- Feature-Split (Bild + Label-Box) ---- */
.feature-split { padding: 80px 0; }
.feature-split.bg-light { background: var(--light); }
.fs-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.feature-split.reverse .fs-media { order: -1; }
.fs-text .section-label { margin-bottom: 10px; }
.fs-text > p { color: var(--gray); margin: 14px 0 24px; }
.check-list { list-style: none; }
.check-list li {
    position: relative;
    padding: 9px 0 9px 32px;
    font-size: .98rem;
    border-bottom: 1px solid var(--border);
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 20px;
    height: 20px;
    background: var(--yellow);
    border-radius: 50%;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/14px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/14px no-repeat;
}
.fs-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.fs-media img { width: 100%; height: 480px; object-fit: cover; display: block; }
.fs-label {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 52px;
    white-space: nowrap;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,.3);
}

/* ---- Preis-Teaser-Kacheln (Startseite) ---- */
.price-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}
.teaser-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    color: var(--text);
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    transition: box-shadow .25s, transform .25s;
}
.teaser-card:hover { box-shadow: 0 16px 44px rgba(0,0,0,.14); transform: translateY(-4px); color: var(--text); }
.teaser-media { position: relative; height: 220px; overflow: hidden; }
.teaser-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.teaser-card:hover .teaser-media img { transform: scale(1.05); }
.teaser-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 5px 14px;
    border-radius: 20px;
}
.teaser-body { padding: 28px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.teaser-body h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 8px; }
.teaser-body p { color: var(--gray); font-size: .95rem; margin-bottom: 20px; flex: 1; }
.teaser-price {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.teaser-price strong { font-size: 2rem; font-weight: 800; color: var(--dark); }
.teaser-body .btn { align-self: flex-start; }

/* ---- Belegungsanzeige ---- */
.availability { padding: 0; margin-top: -38px; position: relative; z-index: 5; }
.avail-card {
    background: var(--dark);
    color: #fff;
    border-radius: 14px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    box-shadow: 0 16px 44px rgba(0,0,0,.22);
    border-top: 4px solid var(--yellow);
}
.avail-status { display: flex; align-items: center; gap: 16px; flex: 1 1 320px; }
.avail-dot {
    flex-shrink: 0;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #2ecc71;
    position: relative;
    box-shadow: 0 0 0 rgba(46,204,113,.6);
    animation: availPulse 2s infinite;
}
@keyframes availPulse {
    0%   { box-shadow: 0 0 0 0 rgba(46,204,113,.65); }
    70%  { box-shadow: 0 0 0 14px rgba(46,204,113,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.avail-line { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
.avail-free { color: var(--yellow); font-size: 1.6rem; font-weight: 800; }
.avail-sub { font-size: .9rem; color: #b9bdca; margin-top: 4px; }
.avail-meter { flex: 1 1 220px; min-width: 200px; }
.avail-meter-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.avail-meter-cap { font-size: .8rem; color: #b9bdca; text-transform: uppercase; letter-spacing: .6px; }
.avail-pct { font-size: 1.05rem; font-weight: 800; color: var(--yellow); }
.avail-bar { height: 12px; background: rgba(255,255,255,.14); border-radius: 7px; overflow: hidden; box-shadow: inset 0 1px 2px rgba(0,0,0,.3); }
.avail-bar-fill {
    display: block; height: 100%; width: 0;
    background: linear-gradient(90deg, #ffba00, var(--yellow));
    border-radius: 7px;
    box-shadow: 0 0 12px rgba(255,210,2,.5);
    transition: width 1.4s cubic-bezier(.22,.61,.36,1);
}
.avail-btn { flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .avail-dot { animation: none; } .avail-bar-fill { transition: none; } }
@media (max-width: 768px) {
    .availability { margin-top: -22px; }
    .avail-card { flex-direction: column; align-items: stretch; gap: 20px; text-align: left; padding: 22px 22px 24px; }
    .avail-status { flex: 0 0 auto; align-items: flex-start; }
    .avail-dot { margin-top: 6px; }
    .avail-meter { flex: 0 0 auto; min-width: 0; }
    .avail-line { font-size: 1.15rem; }
    .avail-btn { width: 100%; text-align: center; }
}

/* ---- Zahlen-/Vertrauens-Band ---- */
.stats-band { background: var(--dark); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-size: clamp(2.2rem, 4vw, 3.1rem); font-weight: 800; color: var(--yellow); line-height: 1; letter-spacing: -1px; }
.stat-label { color: #cfd3df; font-size: .95rem; margin-top: 10px; font-weight: 500; }
.stat + .stat, .stats-grid .stat { position: relative; }
@media (max-width: 680px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; } }

/* ---- Galerie-Lightbox ---- */
.gallery-grid img { cursor: zoom-in; }
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10,12,20,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 12px 50px rgba(0,0,0,.5); }
.lightbox-btn {
    position: absolute;
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
}
.lightbox-btn:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lb-prev { left: 10px; } .lb-next { right: 10px; } .lightbox-btn { width: 44px; height: 44px; } }

/* ---- Hub / Standorte-Übersicht ---- */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 44px;
}
@media (max-width: 900px) { .hub-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .hub-grid { grid-template-columns: 1fr; } }

/* ---- Pricing ---- */
.pricing-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.pricing-tab {
    padding: 10px 22px;
    border: 2px solid var(--border);
    border-radius: 30px;
    background: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    color: var(--text);
}
.pricing-tab.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark);
}
/* Breiterer Container nur für die Preis-Sektion (verhindert Zeilenumbrüche in den Karten) */
.container-pricing { max-width: 1400px; }
.pricing-pane { display: none; }
.pricing-pane.active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.pricing-pane#carport.active { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }

.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
    position: relative;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.price-card:hover { box-shadow: 0 14px 40px rgba(0,0,0,.13); transform: translateY(-4px); }
.price-card.popular { box-shadow: 0 14px 40px rgba(0,0,0,.16); }

/* Farbiger Karten-Header */
.price-head {
    padding: 26px 20px 22px;
    text-align: center;
    color: var(--white);
    position: relative;
}
.price-head.c-basis   { background: #1c6079; }
.price-head.c-komfort { background: #3a5bb0; }
.price-head.c-premium { background: #16164e; }
.price-head.c-flex    { background: #e0731f; }
.price-tier { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; line-height: 1.1; }
.price-tier-sub { font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; opacity: .85; margin-top: 4px; }

/* Best-Seller-Banner (Eck-Banner, sauber in die Kartenecke geclippt) */
.price-ribbon {
    position: absolute;
    top: 20px;
    right: -46px;
    width: 170px;
    text-align: center;
    background: #d12b2b;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 0;
    transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(0,0,0,.3);
    z-index: 3;
}

.price-body { padding: 26px 22px 28px; display: flex; flex-direction: column; flex: 1; }
.price-intro, .price-features li, .perks-list li, .price-term .cal { white-space: nowrap; }
.price-amount { font-size: 2.3rem; font-weight: 800; color: var(--dark); line-height: 1; text-align: center; }
.price-amount span { font-size: .95rem; font-weight: 500; color: var(--gray); }
.price-period { font-size: .85rem; color: var(--gray); margin: 8px 0 24px; text-align: center; }

.price-features { list-style: none; margin-bottom: 0; }
.price-features li {
    position: relative;
    padding: 9px 0 9px 30px;
    font-size: .93rem;
    border-bottom: 1px solid #eee;
}
.price-features li:last-child { border: none; }
.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 19px;
    height: 19px;
}
.price-features li.yes::before {
    background: #27a745;
    border-radius: 50%;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/13px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/13px no-repeat;
}
.price-features li.star::before {
    background: #f5b400;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 17.27 6.18 3.73-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") center/19px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 17.27 6.18 3.73-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") center/19px no-repeat;
}
/* Intro-Zeile + "Alles aus X, plus:" */
.price-intro {
    text-align: center;
    font-size: .85rem;
    font-style: italic;
    color: var(--gray);
    margin: -4px 0 16px;
    min-height: 1.2em;
}
/* "Ihre Vorteile"-Box – hebt die erweiterten Leistungen des Tarifs hervor */
.perks-box {
    background: #fff8d6;
    border: 1px solid #f3e08a;
    border-radius: 8px;
    padding: 12px 16px 8px;
    margin: 16px 0 4px;
}
.perks-label {
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b07d00;
    margin-bottom: 4px;
}
.perks-list { margin: 0 !important; }
.perks-list li { border-bottom: 1px dashed #ecd98c; font-weight: 600; color: var(--dark); }
.perks-list li:last-child { border-bottom: none; }

/* Laufzeit-Zeile (Kalender) – schiebt sich samt Button ans Kartenende */
.price-term {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #eee;
    margin-bottom: 22px;
}
.price-term .cal {
    position: relative;
    padding-left: 26px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
}
.price-term .cal::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: #3a5bb0;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 16H5V9h14zM5 7V6h14v1z'/%3E%3C/svg%3E") center/16px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 16H5V9h14zM5 7V6h14v1z'/%3E%3C/svg%3E") center/16px no-repeat;
}
.price-card .btn { width: 100%; }

.pricing-footnotes {
    margin-top: 28px;
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ---- Ausstattung / Specs ---- */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}
.specs-list { list-style: none; }
.specs-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
}
.specs-list li::before { content: '▸'; color: var(--yellow); font-size: 1.1rem; }
.specs-img { border-radius: 10px; overflow: hidden; }
.specs-img img { width: 100%; height: 400px; object-fit: cover; }

/* ---- Maße Tabelle ---- */
.dims-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    font-size: .95rem;
}
.dims-table th {
    background: rgba(255,210,2,.15);
    color: var(--yellow);
    padding: 10px 16px;
    text-align: left;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.dims-table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ---- Galerie ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 40px;
}
.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform .3s;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* ---- FAQ ---- */
.faq-list { margin-top: 40px; }
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--text);
    transition: color .2s;
}
.faq-question:hover,
.faq-item.open .faq-question { color: var(--dark); }
.faq-question::after {
    content: '';
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: var(--gray);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E") center/22px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.41 8.59 12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E") center/22px no-repeat;
    transition: transform .35s ease, background .2s;
}
.faq-item.open .faq-question::after { transform: rotate(180deg); background: var(--yellow); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 4px;
    color: var(--gray);
    font-size: .97rem;
    line-height: 1.75;
    transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-answer { max-height: 340px; padding: 0 4px 22px; }

/* ---- Kontaktformular ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
}
.contact-info h3 { margin-bottom: 20px; font-size: 1.3rem; }
.contact-info address {
    font-style: normal;
    line-height: 2;
    margin-bottom: 24px;
}
.contact-info address a { color: var(--text); }
.contact-info address a:hover { color: var(--dark); text-decoration: underline; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
label .req { color: #c00; margin-left: 2px; }
input, select, textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: .95rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color .2s;
    color: var(--text);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--yellow);
}
textarea { min-height: 120px; resize: vertical; }
select { cursor: pointer; }
.honeypot { display: none; }
.form-note { font-size: .82rem; color: var(--gray); margin-top: 4px; }

#form-result {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: .9rem;
    display: none;
}
#form-result.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
#form-result.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ---- Standort-Map ---- */
.map-section { padding: 0; }
.map-section iframe { display: block; }

/* ---- Intro / Content pages ---- */
.page-hero {
    background: var(--dark);
    padding: 60px 0;
    color: var(--white);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { margin-top: 12px; opacity: .8; max-width: 600px; }

.content-section { padding: 64px 0; }
.content-section h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.content-section h2:first-child { margin-top: 0; }
.content-section p, .content-section li { margin-bottom: 12px; color: var(--gray); line-height: 1.75; }
.content-section ul { padding-left: 20px; }
.content-section a { color: var(--dark); text-decoration: underline; }

/* ---- CTA-Banner ---- */
.cta-banner {
    background: var(--yellow);
    padding: 60px 0;
    text-align: center;
}
.cta-banner h2 { color: var(--dark); margin-bottom: 8px; }
.cta-banner p { color: var(--dark); opacity: .75; margin-bottom: 28px; font-size: 1.1rem; }
.cta-banner .btn { background: var(--dark); border-color: var(--dark); color: var(--white) !important; }
.cta-banner .btn:hover { background: #111; }

/* ---- Footer (hell, wie Header) ---- */
.site-footer {
    background: var(--white);
    color: var(--gray);
    padding: 64px 0 0;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.5fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border);
}
.footer-col h4 {
    color: var(--dark);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.footer-col p { font-size: .9rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: var(--gray); font-size: .9rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--dark); }
.footer-col address { font-style: normal; font-size: .9rem; color: var(--gray); line-height: 1.9; }
.footer-col address a { color: var(--gray); }
.footer-col address a:hover { color: var(--dark); }
.footer-brand { font-size: 1.5rem; font-weight: 800; color: var(--dark); letter-spacing: -.5px; margin-bottom: 14px; }
.footer-bottom {
    padding: 22px 0;
}
.footer-bottom p { font-size: .85rem; color: #888; }
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--dark); }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Landingpages (SEO) ---- */
.hero-eyebrow {
    display: inline-block;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .85rem;
    margin-bottom: 14px;
}
.hero.hero-sm { min-height: 480px; }
.lp-prose { max-width: 820px; margin: 0 auto; }
.lp-prose h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    margin: 44px 0 16px;
}
.lp-prose h2:first-child { margin-top: 0; }
.lp-prose h2::before {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
    margin-bottom: 16px;
}
.lp-prose p { margin-bottom: 16px; color: #3a3a3a; line-height: 1.8; }
.lp-prose p:last-child { margin-bottom: 0; }
.lp-prose ul, .lp-prose ol { padding-left: 1.5em; margin: 0 0 16px; }
.lp-prose ul { list-style: disc; }
.lp-prose ol { list-style: decimal; }
.lp-prose li { margin-bottom: 8px; color: #3a3a3a; line-height: 1.7; }
.lp-prose li::marker { color: var(--yellow); }

/* Standort + Google Map (versetzt, lockert auf) */
.lp-standort {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 36px;
    align-items: stretch;
    max-width: 1000px;
    margin: 8px auto 0;
}
.lp-standort .standort-card { margin: 0; align-self: start; }
.lp-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 360px;
    transform: translateY(28px);
}
.lp-map iframe { display: block; width: 100%; height: 100%; min-height: 360px; border: 0; }
.lp-map.lp-map-full { transform: none; min-height: 440px; max-width: 1000px; margin: 0 auto; }
.lp-map.lp-map-full iframe { min-height: 440px; }

.distance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
    margin: 8px 0 24px;
}
.distance-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    position: relative;
    padding-left: 44px;
}
.distance-item::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 16px;
    width: 18px;
    height: 18px;
    background: var(--yellow);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center/18px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center/18px no-repeat;
}
.distance-item .city { display: block; font-weight: 700; color: var(--dark); font-size: .95rem; }
.distance-item .time { font-size: .85rem; color: var(--gray); }

.standort-card {
    background: var(--light);
    border-left: 4px solid var(--yellow);
    border-radius: 8px;
    padding: 24px 28px;
    margin: 28px 0;
    line-height: 1.8;
}
.standort-card strong { color: var(--dark); }

.lp-media {
    border-radius: 12px;
    overflow: hidden;
    margin: 8px 0 0;
    box-shadow: var(--shadow);
}
.lp-media img { width: 100%; height: 420px; object-fit: cover; display: block; }

.grecaptcha-badge { z-index: 998 !important; }

/* ============================================
   Dunkelmodus
   ============================================ */
[data-theme="dark"] {
    --text: #e7e8ec;
    --gray: #a6abb7;
    --light: #181a23;
    --border: #2c2f3c;
}
[data-theme="dark"] body { background: #14151c; color: var(--text); }

/* Header */
[data-theme="dark"] .site-header { background: #1b1d27; border-bottom-color: var(--border); }
[data-theme="dark"] .logo-img { filter: brightness(0) invert(1); }
[data-theme="dark"] .main-nav a,
[data-theme="dark"] .main-nav a.active { color: var(--text); }
[data-theme="dark"] .main-nav a:hover { background: rgba(255,255,255,.08); }
[data-theme="dark"] .main-nav { background: #1b1d27; border-bottom-color: var(--border); }
[data-theme="dark"] .nav-toggle span { background: var(--text); }

/* Flächen / Karten / Formularfelder */
[data-theme="dark"] section.bg-light,
[data-theme="dark"] .feature-split.bg-light { background: #181a23; }
[data-theme="dark"] .feature-card,
[data-theme="dark"] .price-card,
[data-theme="dark"] .teaser-card,
[data-theme="dark"] .distance-item,
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea { background: #1e2029; color: var(--text); }

/* Texte/Überschriften, die fix dunkel waren */
[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .teaser-body h3,
[data-theme="dark"] .teaser-price strong,
[data-theme="dark"] .price-amount,
[data-theme="dark"] .footer-col h4,
[data-theme="dark"] .footer-brand,
[data-theme="dark"] .standort-card strong,
[data-theme="dark"] .distance-item .city,
[data-theme="dark"] .faq-question,
[data-theme="dark"] .faq-question:hover,
[data-theme="dark"] .faq-item.open .faq-question { color: var(--text); }
[data-theme="dark"] .lp-prose p,
[data-theme="dark"] .lp-prose li { color: #c7ccd6; }

/* Links */
[data-theme="dark"] a { color: var(--text); }
[data-theme="dark"] a:hover { color: var(--yellow); }
[data-theme="dark"] .content-section a { color: #ffe066; }
[data-theme="dark"] .footer-col ul a:hover,
[data-theme="dark"] .footer-col address a:hover { color: var(--yellow); }

/* Footer */
[data-theme="dark"] .site-footer { background: #1b1d27; border-top-color: var(--border); }
[data-theme="dark"] .footer-bottom p,
[data-theme="dark"] .footer-bottom a { color: #8a8f9c; }

/* Outline-Button dunkel -> hell */
[data-theme="dark"] .btn-outline.dark { color: var(--text) !important; border-color: var(--text); }
[data-theme="dark"] .btn-outline.dark:hover { background: var(--text); color: #14151c !important; }

/* Feinheiten */
[data-theme="dark"] .price-features li { border-bottom-color: var(--border); }
[data-theme="dark"] .price-term { border-top-color: var(--border); }
[data-theme="dark"] .price-term .cal { color: var(--text); }
[data-theme="dark"] .price-term .cal::before { background: #8ea8e0; }
[data-theme="dark"] .price-head { color: #fff; }
[data-theme="dark"] .perks-box { background: #2a2614; border-color: #4d451d; }
[data-theme="dark"] .faq-item { border-bottom-color: var(--border); }


/* ---- Standort Sektion ---- */
.standort-info strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.standort-info p { color: var(--gray); margin-bottom: 6px; }
.standort-info a { color: var(--dark); }
.standort-info a:hover { text-decoration: underline; }

/* ---- Responsive ---- */
/* Preis-Karten früh auf 2 Spalten, damit sie breit genug für eine Zeile sind */
@media (max-width: 1200px) {
    .pricing-pane.active { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
    .benefit-cards { grid-template-columns: 1fr; }
    .benefit-card { min-height: 300px; }
    .pricing-pane.active { grid-template-columns: repeat(2, 1fr); }
    .fs-grid { grid-template-columns: 1fr; gap: 36px; }
    .feature-split.reverse .fs-media { order: 0; }
    .fs-media img { height: 360px; }
}

@media (max-width: 768px) {
    section { padding: 56px 0; }
    .feature-split { padding: 56px 0; }
    .fs-label { font-size: 1.1rem; padding: 16px 36px; }
    .lp-standort { grid-template-columns: 1fr; gap: 24px; }
    .lp-map { transform: none; min-height: 300px; }
    .lp-map iframe { min-height: 300px; }

    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 2px solid var(--border);
        padding: 16px 24px 24px;
        box-shadow: 0 6px 16px rgba(0,0,0,.08);
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 4px; align-items: stretch; }
    .main-nav a { display: block; padding: 12px 14px; color: var(--text); }
    .main-nav a:hover { background: var(--light); }
    .main-nav .btn { text-align: center; margin-top: 8px; }
    .site-header { position: relative; }

    .hero { min-height: 420px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { text-align: center; }

    .specs-grid { grid-template-columns: 1fr; }
    .price-teaser-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .form-row { grid-template-columns: 1fr; }
    .pricing-pane.active,
    .pricing-pane#carport.active { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}
