/* ─── FONTS ──────────────────────────────────────────────── */

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/poppins-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/poppins-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/poppins-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/poppins-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('assets/fonts/poppins-800.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('assets/fonts/poppins-900.woff2') format('woff2');
}

/* ─── RESET & BASE ───────────────────────────────────────── */

:root {
    --primary:       #002fa7;
    --primary-dark:  #001a6e;
    --primary-light: #3a5fd4;
    --header-bg:     #010d3a;
    --dark:          #010920;
    --text:          #010920;
    --text-muted:    #4a5270;
    --bg:            #ffffff;
    --bg-soft:       #f4f6fb;
    --bg-blue:       #eef1fc;
    --border:        #dde1f0;
    --radius:        14px;
    --radius-lg:     24px;
    --radius-xl:     48px;
}

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

html, body { margin: 0; padding: 0; overflow-x: hidden; }

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ─── CONTAINER ──────────────────────────────────────────── */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── HEADER ─────────────────────────────────────────────── */

.header {
    background: var(--header-bg);
}

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

.logo img {
    height: 120px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: #fff !important;
    color: var(--header-bg) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    margin-left: 0.5rem !important;
    transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
    background: var(--bg-soft) !important;
    color: var(--primary) !important;
}

.nav-icon-divider {
    width: 1px;
    height: 1.25rem;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 0.25rem;
}

.nav-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    padding: 0 !important;
    transition: color 0.2s, background 0.2s !important;
}

.nav-icon-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.nav-icon-link svg {
    width: 1.2rem;
    height: 1.2rem;
}

.nav-icon-wa {
    color: #25D366 !important;
}

.nav-icon-wa:hover {
    background: #25D366 !important;
    color: #fff !important;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* ─── HERO ───────────────────────────────────────────────── */

.hero {
    background: var(--bg);
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 3rem;
}

.hero-text-top {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
}

.hero-text-bottom {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
}

.hero-visual {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding: 0.35rem 1rem;
    border: 1.5px solid rgba(0, 47, 167, 0.3);
    border-radius: 999px;
    background: rgba(0, 47, 167, 0.06);
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--primary);
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 2.5rem;
    line-height: 1.75;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: auto;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -20px -20px auto auto;
    width: 180px;
    height: 180px;
    background: rgba(0, 47, 167, 0.08);
    border-radius: 50%;
    z-index: -1;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: auto auto -24px -24px;
    width: 120px;
    height: 120px;
    background: rgba(0, 47, 167, 0.05);
    border-radius: 50%;
    z-index: -1;
}

/* ─── BUTTONS ────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: inherit;
}

.btn:hover { transform: scale(1.05); }

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-outline-dark:hover {
    background: var(--bg-soft);
    border-color: var(--text-muted);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--bg-soft);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.btn-whatsapp svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ─── TRUST BAR ──────────────────────────────────────────── */

.trust-bar {
    background: var(--bg-blue);
    padding: 3.5rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,47,167,0.04);
}

.trust-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 2.25rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.trust-item strong {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 0.15rem;
}

.trust-item em {
    font-style: normal;
    font-size: 0.74rem;
    color: var(--text-muted);
}

/* ─── SECTIONS ───────────────────────────────────────────── */

.section {
    padding: 5.5rem 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-dark {
    background: var(--header-bg);
    color: #fff;
}

.section-blue {
    background: var(--bg-blue);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.65); }

/* ─── LEISTUNGEN ─────────────────────────────────────────── */

.service-spotlight {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 4rem;
    align-items: center;
}

.service-spotlight-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0, 47, 167, 0.08);
    border-radius: 100px;
    padding: 0.3rem 0.85rem;
    margin-bottom: 1rem;
}

.service-spotlight-content h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.service-spotlight-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 1.25rem;
    max-width: 480px;
}

.service-spotlight-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.service-spotlight-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,47,167,0.06);
}

.spotlight-stat {
    padding: 1.25rem 1.75rem;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.spotlight-stat:last-child {
    border-bottom: none;
}

.spotlight-stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.spotlight-stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.leistungen-cta {
    margin-top: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.leistungen-cta p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: 0 12px 40px rgba(0, 47, 167, 0.1);
    transform: translateY(-4px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-icon {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    display: block;
}

.card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.card-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.card-link:hover {
    opacity: 0.75;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.faq-section .section-header,
.faq-section .faq-item {
    opacity: 1 !important;
    transform: none !important;
}

.reveal.visible,
.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* ─── PROZESS STEPS (alternating) ───────────────────────── */

.psteps {
    display: flex;
    flex-direction: column;
}

.pstep {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.pstep:last-child {
    border-bottom: none;
}

.pstep.pstep-reverse {
    grid-template-columns: 2fr 1fr;
}

.pstep.pstep-reverse .pstep-num {
    order: 2;
    text-align: left;
}

.pstep.pstep-reverse .pstep-content {
    order: 1;
}

/* pstep-visible wird per JS gesetzt; hier nur der Zahl-Effekt */

.pstep-num {
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--border);
    text-align: right;
    letter-spacing: -0.04em;
    -webkit-user-select: none;
    user-select: none;
    transition: -webkit-text-stroke-color 0.3s;
}

.pstep:hover .pstep-num {
    -webkit-text-stroke-color: var(--primary);
}

.pstep-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.pstep-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 0 1.25rem;
    line-height: 1.75;
}

.pstep-content .vstep-list {
    margin: 0;
}

.pstep-cta-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 1.25rem;
    line-height: 1.65;
}

.pstep-cta-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.pstep-cta-text a:hover {
    text-decoration: underline;
}

.pstep-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pstep-tool-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pstep-tool-links span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-right: 0.25rem;
}

.pstep-tool-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--bg-blue);
    border: 1.5px solid rgba(0, 47, 167, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.pstep-tool-link:hover {
    background: rgba(0, 47, 167, 0.12);
    border-color: var(--primary);
}

.pstep-tool-soon {
    opacity: 0.55;
    cursor: default;
    pointer-events: none;
}

.pstep-tool-open {
    border-style: dashed;
    color: var(--text-muted);
    cursor: default;
}

.pstep-tool-link em {
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* --- FLOW AKKORDEON ------------------------------------------------- */

.flow-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.flow-accordion-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.flow-accordion-item[open] {
    box-shadow: 0 4px 24px rgba(0, 47, 167, 0.08);
    border-color: var(--border);
}

.flow-accordion-summary {
    list-style: none;
    cursor: pointer;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    user-select: none;
    transition: background 0.15s;
}

.flow-accordion-summary:hover {
    background: var(--bg-soft);
}

.flow-accordion-summary::-webkit-details-marker { display: none; }

.flow-accordion-summary-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.flow-accordion-summary .flow-card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex: 1;
}

.flow-accordion-summary .flow-card-head h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.flow-accordion-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.flow-accordion-arrow {
    font-size: 0.65rem;
    transition: transform 0.25s;
    display: inline-block;
}

.flow-accordion-item[open] .flow-accordion-arrow {
    transform: rotate(180deg);
}

.flow-accordion-item[open] .flow-accordion-toggle-label::before {
    content: 'Schließen';
}

.flow-accordion-toggle-label::before {
    content: 'Details ansehen';
}

.flow-accordion-body {
    padding: 1.75rem 2rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* --- FAQ ------------------------------------------------------------ */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}

.faq-item[open] {
    border-color: var(--primary);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-arrow {
    font-size: 0.7rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer p { margin: 0.75rem 0 0; }
.faq-answer p:first-child { margin-top: 0.75rem; }

@media (max-width: 700px) {
    .pstep,
    .pstep.pstep-reverse {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2.5rem 0;
    }

    .pstep-num {
        font-size: 4rem;
        text-align: left;
        -webkit-text-stroke-color: var(--primary);
    }

    .pstep.pstep-reverse .pstep-num { order: 0; }
    .pstep.pstep-reverse .pstep-content { order: 1; }
}

/* ─── WIE ES FUNKTIONIERT ────────────────────────────────── */


.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    opacity: 0;
}

.step-arrow {
    flex-shrink: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    padding: 3rem 0.5rem 0;
    opacity: 0;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    letter-spacing: -0.01em;
}

.step p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* ─── FEATURE GRID (Anwendungsfälle) ─────────────────────── */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--primary-light);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    box-shadow: 0 6px 24px rgba(0, 47, 167, 0.09);
    transition: opacity 0.55s ease, transform 0.15s ease-out;
}

/* Reveal per Opacity — kein translateY, damit Hover-Scale nicht konfliktet */
.feature-card.reveal,
.feature-card.reveal.visible {
    transform: none;
}

.feature-card:hover,
.feature-card.reveal.visible:hover {
    transform: scale(1.1);
    transition-delay: 0s !important;
}

.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    display: block;
}

.feature-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ─── PRAXIS & NUTZEN ────────────────────────────────────── */

.nutzen-tab-bar {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    scrollbar-width: none;
    padding-bottom: 2px;
}

@media (max-width: 600px) {
    .nutzen-tab-bar {
        justify-content: flex-start;
        overflow-x: auto;
    }
}

.nutzen-tab-bar::-webkit-scrollbar {
    display: none;
}

.nutzen-tab-btn {
    flex-shrink: 0;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nutzen-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nutzen-tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.nutzen-panel {
    display: none;
}

.nutzen-panel.active {
    display: block;
}

.nutzen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.nutzen-before,
.nutzen-after {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    border: 1.5px solid var(--border);
}

.nutzen-after {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.nutzen-col h3 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.25rem;
    color: var(--text-muted);
}

.nutzen-after h3 {
    color: var(--primary);
}

.nutzen-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nutzen-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.55;
}

.nutzen-before .nutzen-list li::before {
    content: '✕';
    color: #dc2626;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.nutzen-after .nutzen-list li::before {
    content: '✓';
    color: #16a34a;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.nutzen-cta {
    margin-top: 3rem;
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ─── ÜBER MICH ──────────────────────────────────────────── */

.about-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5rem;
    align-items: left;
}

.about-content h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-cta { margin-top: 1.5rem; }

.about-photo img {
    width: 240px;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-xl);
    display: block;
}

/* ─── KONTAKT ────────────────────────────────────────────── */

.contact-inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    background: var(--header-bg);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.contact-inner h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    color: #fff;
}

.contact-inner > p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2.5rem;
    line-height: 1.75;
    font-size: 1rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.contact-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    padding-left: 2.25rem;
    position: relative;
}

.contact-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6b8cff;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
    top: -0.1rem;
    transform: translateX(-0.4rem);
}


/* ─── FOOTER ─────────────────────────────────────────────── */

/* ─── IMPRESSUM ──────────────────────────────────────────── */

.impressum-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.impressum-body > main {
    flex: 1;
}

.impressum-content {
    max-width: 720px;
}

.impressum-title {
    margin-bottom: 2.5rem;
}


/* ─── FOOTER ─────────────────────────────────────────────── */

.footer-contact {
    background: var(--bg);
    padding: 4rem 0 3rem;
}

.footer-contact .contact-inner {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.footer-contact .contact-inner h2 {
    color: var(--dark);
}

.footer-contact .contact-list li {
    color: var(--text-muted);
}

.footer {
    background: var(--header-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 0 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding-top: 3rem;
}

.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem 4rem;
    width: 100%;
    align-items: start;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin: 0 0 0.75rem;
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-col nav a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-col nav a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ─── FLOW BEISPIELE ─────────────────────────────────────── */

.flow-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.flow-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.flow-card-head h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0.5rem 0 0;
    color: var(--dark);
}

.flow-tag {
    display: inline-block;
    background: var(--bg-blue);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.flow-visual {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    padding: 0.875rem 1rem;
    background: var(--bg-soft);
    border-radius: calc(var(--radius) - 2px);
    border: 1px solid var(--border);
}

.fv-step {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    white-space: nowrap;
}

.fv-arrow {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.flow-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.flow-before,
.flow-after {
    border-radius: calc(var(--radius) - 2px);
    padding: 1rem 1.1rem;
}

.flow-before {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.flow-after {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.fc-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.4rem;
}

.flow-before .fc-label { color: #dc2626; }
.flow-after  .fc-label { color: #16a34a; }

.flow-before p,
.flow-after p {
    margin: 0 0 0.875rem;
    font-size: 0.865rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.fc-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fc-metric {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.fc-metric-icon { font-size: 1rem; flex-shrink: 0; }

.fc-metric-val {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.fc-metric-sub {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.flow-teaser-metrics {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-soft);
    border-radius: calc(var(--radius) - 2px);
    border: 1px solid var(--border);
    flex-wrap: wrap;
}

.ftm-before {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ftm-before strong { color: #dc2626; font-weight: 700; }

.ftm-arrow {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
}

.ftm-after {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.ftm-after strong { color: #16a34a; font-weight: 800; font-size: 1rem; }
.ftm-after span { color: var(--text-muted); }

.flow-grid-note {
    margin-top: 1.25rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

.flow-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.flow-tool {
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--bg-soft);
    color: var(--text-muted);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    border: 1px solid var(--border);
}

/* legacy – kept for backwards compat */
.footer-links { display: none; }

/* ─── FEATURES (borderless 3-col) ───────────────────────── */

.features-row--single {
    display: block;
    max-width: 640px;
    margin: 0 auto;
}

.features-row--single .feature-item {
    padding: 0;
    border-left: none;
}

.features-row--single .feature-item--primary {
    border-top: none;
    padding-top: 0;
}

.features-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
}

.feature-item {
    padding: 0 2.5rem;
}

.feature-item:first-child {
    padding-left: 0;
}

.feature-item:last-child {
    padding-right: 0;
}

.feature-item:not(:first-child) {
    border-left: 1px solid var(--border);
}

.feature-item--primary {
    border-top: 3px solid var(--primary);
    padding-top: 1.5rem;
}

.feature-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    opacity: 0.18;
}

.feature-item--primary .feature-num {
    opacity: 1;
}

.feature-icon-wrap {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.feature-list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-faq-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.service-faq-list li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border);
}
.service-faq-list li strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
}
.service-faq-list li span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.service-affiliate-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}
.service-affiliate-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.service-affiliate-link:hover {
    text-decoration: underline;
}

.feature-cta {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
}

/* ─── SECTION-DARK: pstep overrides ─────────────────────── */

.section-dark .pstep {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-dark .pstep-num {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.25);
}

.section-dark .pstep:hover .pstep-num {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.6);
}

/* Zahl hellt sich beim Einscrollens auf (mobiler Hover-Ersatz) */
.section-dark .pstep-num {
    transition: -webkit-text-stroke-color 0.8s ease;
}

.section-dark .pstep.pstep-visible .pstep-num {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.45);
}

.section-dark .pstep-content h3 {
    color: #fff;
}

.section-dark .pstep-content p {
    color: rgba(255, 255, 255, 0.65);
}

.section-dark .pstep-cta-text {
    color: rgba(255, 255, 255, 0.65);
}

.section-dark .pstep-cta-text a {
    color: #6b8cff;
}

.section-dark .btn-outline-dark {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.section-dark .btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ─── COMPARE GRID (Us vs Others) ───────────────────────── */

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.compare-col {
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.compare-them {
    background: #f8f8f8;
    border: 1px solid var(--border);
}

.compare-us {
    background: rgba(0, 47, 167, 0.04);
    border: 2px solid var(--primary);
}

.compare-col-header {
    margin-bottom: 1.5rem;
}

.compare-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 999px;
}

.compare-label--them {
    background: #e5e7eb;
    color: #6b7280;
}

.compare-label--us {
    background: rgba(0, 47, 167, 0.1);
    color: var(--primary);
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.compare-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.75rem 0 0.75rem 1.75rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    line-height: 1.55;
}

.compare-list li:last-child {
    border-bottom: none;
}

.compare-list--them li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
    line-height: 1.55;
}

.compare-list--us li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.55;
}

.compare-list--us li {
    color: var(--text);
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.testimonial-quote {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-text-top,
    .hero-text-bottom {
        grid-column: 1;
        grid-row: auto;
        align-self: auto;
    }

    .hero-visual {
        grid-column: 1;
        grid-row: auto;
        align-self: auto;
    }

    .hero h1 { margin: 0 auto 0; }

    .hero-sub { margin: 0 auto 2.5rem; }

    .hero-ctas { justify-content: center; }

    .hero-visual img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .card { text-align: center; }

    .feature-card { text-align: center; }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        max-width: 560px;
        margin: 0 auto;
    }

    .step {
        width: 100%;
    }

    .step-arrow {
        transform: rotate(90deg) !important;
        padding: 0;
        margin: 0 auto;
    }

    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-item { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .trust-item:nth-child(2), .trust-item:nth-child(4) { border-right: none; }
    .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
    .trust-item strong { font-size: 1.75rem; }
    .service-spotlight { grid-template-columns: 1fr; gap: 2rem; }
    .service-spotlight-stats { flex-direction: row; flex-wrap: wrap; }
    .spotlight-stat { flex: 1 1 40%; border: none; }
    .service-faq-list { gap: 0.6rem; }

    .features-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature-item,
    .feature-item:first-child,
    .feature-item:last-child {
        padding: 0;
    }

    .feature-item:not(:first-child) {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 2.5rem;
    }

    .feature-item--primary {
        border-top: 3px solid var(--primary);
    }

    .compare-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Praxisbeispiele: Vorher/Nachher untereinander */
    .flow-compare {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .flow-accordion-item {
        max-width: 100%;
        overflow: hidden;
    }

    .flow-visual {
        max-width: 100%;
        overflow-x: auto;
    }

    .flow-accordion-body,
    .flow-before,
    .flow-after {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .nutzen-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .nutzen-list li { justify-content: center; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .about-content p,
    .about-content h2 { text-align: left; }

    .about-cta {
        display: table;
        margin-left: auto;
        margin-right: auto;
    }

    .about-photo { order: -1; }

    .about-photo img {
        width: 180px;
        height: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-inner {
        position: relative;
        justify-content: center;
    }

    .logo img {
        height: 120px;
    }

    .burger {
        display: flex;
        position: absolute;
        right: 0;
    }

    .nav-icon-divider {
        display: none;
    }

    .nav {
        position: fixed;
        top: 120px;
        left: 0;
        width: 100%;
        max-width: none;
        max-height: 0;
        overflow: hidden;
        background: var(--header-bg);
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem;
        gap: 0.5rem;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        z-index: 99;
    }

    .nav.open {
        max-height: 500px;
        padding: 1.5rem;
    }

    .nav a {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-cta { margin-left: 0 !important; }

    .hero { padding: 3rem 0 2.5rem; }

    .section { padding: 3.5rem 0; }

    .trust-item { padding: 1.5rem 1rem; }
    .trust-item strong { font-size: 1.6rem; }
}

/* ─── MOBILE: Praxisbeispiele (flow accordion) ───────────── */
@media (max-width: 700px) {
    .flow-accordion-summary {
        padding: 1.25rem 1rem;
    }

    .flow-accordion-summary-top {
        gap: 0.75rem;
        align-items: flex-start;
    }

    .flow-accordion-summary .flow-card-head h3 {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .flow-accordion-toggle-label::before {
        content: '';
    }

    .flow-accordion-body {
        padding: 1.25rem 1rem 1.5rem;
        gap: 1rem;
    }

    .flow-visual {
        gap: 0.3rem;
        padding: 0.75rem 0.75rem;
    }

    .fv-step {
        white-space: normal;
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .flow-compare {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .flow-before,
    .flow-after {
        padding: 0.875rem 0.875rem;
    }

    .fc-metric-val { font-size: 0.9rem; }
    .fc-metric-sub { font-size: 0.68rem; }

    .flow-teaser-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

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

    .container { padding: 0 1.25rem; }

    .contact-inner { padding: 2rem 1.25rem; }

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

    .service-spotlight-stats { flex-direction: column; }
    .spotlight-stat { flex: none; border-right: none !important; border-bottom: none !important; }
    .service-faq-list { gap: 0.5rem; }
    .service-faq-list li { padding-left: 0.75rem; }

    .section-header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONEN
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Scroll-Fortschrittsbalken ────────────────────────── */

.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 9999;
    pointer-events: none;
    /* Bewegung wird via GSAP scrub gesteuert (alle Browser) */
}

/* ── 2. Hero-Bild schwebt ────────────────────────────────── */

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.hero-visual {
    animation: hero-float 6s ease-in-out infinite;
    will-change: transform;
}

/* Inline SVG: gleiche Größe wie bisher das img-Tag */
.hero-visual svg.hero-svg {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    margin-left: auto;
    overflow: visible;
}

/* ── 3. Button Shimmer ───────────────────────────────────── */

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -110%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 80%
    );
    transition: left 0.55s ease;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 150%;
}

/* ── 4. Blur-Clearing Scroll-Reveal ─────────────────────── */

/* Überschreibt die bestehenden .reveal Regeln weiter oben */
.reveal {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible,
.reveal.revealed {
}

/* feature-card Override bleibt korrekt */
.feature-card.reveal,
.feature-card.reveal.visible {
    filter: none;
}

/* ── 5. Hub Hero-Animation ──────────────────────────────── */

.hero-hub { animation: none; }
.hero-hub::before,
.hero-hub::after { display: none; }

.hub-container {
    position: relative;
    width: min(520px, 100%);
    aspect-ratio: 520 / 460;
    margin: 0 auto;
    overflow: visible;
}

.hub-svg-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hub-bg-line {
    stroke: var(--border);
    stroke-width: 1.5;
    stroke-dasharray: 6 5;
    fill: none;
}

.hub-pulse-line {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.7;
}

@keyframes hub-pulse { to { stroke-dashoffset: -192; } }
.hp1 { stroke-dasharray: 12 200; animation: hub-pulse 2.0s linear infinite; }
.hp2 { stroke-dasharray: 12 200; animation: hub-pulse 2.5s linear infinite 0.5s; }
.hp3 { stroke-dasharray: 12 200; animation: hub-pulse 2.8s linear infinite 1.0s; }
.hp4 { stroke-dasharray: 12 200; animation: hub-pulse 2.2s linear infinite 1.5s; }
.hp5 { stroke-dasharray: 12 200; animation: hub-pulse 3.0s linear infinite 0.8s; }
.hp6 { stroke-dasharray: 12 200; animation: hub-pulse 2.3s linear infinite 0.3s; }

.hub-center-el {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 112px; height: 104px;
    background: var(--primary);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 5px;
    padding: 10px 10px;
    box-shadow: 0 8px 36px rgba(0,47,167,0.4), 0 0 0 8px rgba(0,47,167,0.08);
    z-index: 3;
}

.hub-center-el .hub-center-icon {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    margin: 0;
}

.hub-center-el span {
    font-size: 0.55rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
}

.hub-center-el svg { width: 24px; height: 24px; flex-shrink: 0; }
.hub-center-el span { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em; opacity: 0.9; text-align: center; line-height: 1.35; }

.hub-sat {
    position: absolute;
    width: 82px; height: 82px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: box-shadow 0.2s, border-color 0.2s;
}

@media (hover: hover) {
    .hub-sat:hover {
        box-shadow: 0 6px 24px rgba(0,47,167,0.14);
        border-color: var(--primary-light);
    }
}

.hub-sat svg  { width: 22px; height: 22px; color: var(--primary); }
.hub-sat span { font-size: 0.6rem; font-weight: 700; color: var(--text-muted); }

/* Radius 200 SVG-Einheiten von Zentrum (260,230) auf 520×460 Koordinatensystem */
#hs1 { top:  7%; left: 50%; }    /* oben        (260, 32)  */
#hs2 { top: 27%; left: 83%; }    /* oben rechts (432, 124) */
#hs3 { top: 73%; left: 83%; }    /* unten rechts(432, 336) */
#hs4 { top: 93%; left: 50%; }    /* unten       (260, 428) */
#hs5 { top: 73%; left: 17%; }    /* unten links  (88, 336) */
#hs6 { top: 27%; left: 17%; }    /* oben links   (88, 124) */

@media (max-width: 500px) {
    .hub-sat { width: 68px; height: 68px; border-radius: 14px; }
    .hub-sat svg { width: 18px; height: 18px; }
    .hub-center-el { width: 110px; height: 96px; border-radius: 18px; }
    .hub-center-el svg { width: 18px; height: 18px; }
}

@media (min-width: 961px) {
    .hub-container { width: min(640px, 100%); }
}

/* n8n CTA Button */
.btn-n8n-link {
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
}

.n8n-logo-btn {
    height: 24px;
    width: auto;
    min-width: 100px;
    display: block;
    flex-shrink: 0;
}

/* ─── KALKULATOR ─────────────────────────────────────────── */

[x-cloak] { display: none !important; }

.calc-section {
    padding: 5rem 0;
}

.calc-section .section-header h2 { color: #fff; }
.calc-section .section-header p  { color: rgba(255, 255, 255, 0.65); }

.calc-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    background: rgba(58, 95, 212, 0.18);
    border: 1px solid rgba(58, 95, 212, 0.35);
    border-radius: 999px;
    padding: 0.3rem 1rem;
    margin-bottom: 1rem;
}

.calc-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.calc-tab-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.calc-tab-btn {
    flex-shrink: 0;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
}

.calc-tab-btn:hover {
    border-color: var(--primary-light);
    color: #fff;
}

.calc-tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.calc-ki-row {
    display: flex;
    gap: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
}

.calc-ki-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.45rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
}

.calc-ki-btn.active {
    background: var(--primary);
    color: #fff;
}

.calc-no-ki-badge {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    flex-shrink: 0;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.calc-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.calc-panel-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.75rem;
}

.calc-sliders {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.calc-slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-slider-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.calc-slider-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.calc-slider-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border-radius: 999px;
    padding: 0.15rem 0.65rem;
    min-width: 3.5rem;
    text-align: center;
    flex-shrink: 0;
}

.calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(
        to right,
        var(--primary) var(--pct, 0%),
        rgba(255, 255, 255, 0.15) var(--pct, 0%)
    );
    outline: none;
    cursor: pointer;
    margin: 0.25rem 0;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 47, 167, 0.5);
    transition: transform 0.15s;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 47, 167, 0.5);
}

.calc-slider-minmax {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
}

.calc-results {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-result-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    flex: 1;
}

.calc-result-card--highlight {
    background: rgba(0, 47, 167, 0.25);
    border-color: rgba(0, 47, 167, 0.5);
}

.calc-result-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
}

.calc-result-icon svg {
    width: 20px;
    height: 20px;
}

.calc-result-icon--green {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.calc-result-icon--primary {
    background: rgba(0, 47, 167, 0.3);
    color: var(--primary-light);
}

.calc-result-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.2rem;
}

.calc-result-value {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.calc-result-value--lg {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.calc-cta {
    text-align: center;
}

.calc-disclaimer {
    margin: 1rem 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 820px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }

    .calc-top-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .calc-tab-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        max-width: 100%;
    }

    .calc-tab-bar::-webkit-scrollbar {
        display: none;
    }
}

/* ─── FOOTER ERWEITERUNG ─────────────────────────────────── */

.footer-logo-link {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-top: 20px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 20px;
}

.footer-social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social-pill:hover {
    border-color: var(--primary-light);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social-pill svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.5;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-contact-link {
    display: flow;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.15s;
    word-break: break-all;
}

.footer-contact-link:hover {
    color: #fff;
}

.footer-contact-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 720px) {
    .footer-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* ─── CHAT WIDGET ─────────────────────────────────────────── */

.chat-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,47,167,0.35);
    transition: background 0.2s, transform 0.15s;
}

.chat-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.06);
}

.chat-btn svg {
    width: 1.4rem;
    height: 1.4rem;
    pointer-events: none;
}

.chat-window {
    position: fixed;
    bottom: 5.25rem;
    right: 1.5rem;
    z-index: 10000;
    width: 360px;
    height: 500px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(1,9,32,0.16);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: var(--header-bg);
    color: #fff;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.chat-header-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
}

.chat-header-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.chat-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0.2rem;
    transition: color 0.15s;
}

.chat-close:hover { color: #fff; }

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.chat-bubble {
    max-width: 80%;
    padding: 0.6rem 0.85rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    word-break: break-word;
}

.chat-bubble-bot {
    background: var(--bg-soft);
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
}

.chat-bubble-user {
    background: var(--primary);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}

.chat-loading {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.65rem 0.9rem;
}

.chat-loading span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--text-muted);
    animation: chatDot 1.2s infinite ease-in-out;
}

.chat-loading span:nth-child(2) { animation-delay: 0.2s; }
.chat-loading span:nth-child(3) { animation-delay: 0.4s; }

@keyframes chatDot {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.chat-input-area {
    border-top: 1px solid var(--border);
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
    background: var(--bg);
}

.chat-textarea {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    font-family: inherit;
    font-size: 0.875rem;
    resize: none;
    outline: none;
    color: var(--text);
    background: var(--bg-soft);
    transition: border-color 0.2s;
    max-height: 7rem;
    overflow-y: auto;
}

.chat-textarea:focus { border-color: var(--primary); }
.chat-textarea:disabled { opacity: 0.6; }

.chat-send {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.chat-send:hover { background: var(--primary-dark); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; }

.chat-send svg {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 480px) {
    .chat-window {
        right: 0.75rem;
        left: 0.75rem;
        width: auto;
        bottom: 5rem;
        max-height: calc(100dvh - 6rem);
        transition: bottom 0.2s ease, max-height 0.2s ease;
    }
    .chat-btn {
        right: 1rem;
        bottom: 1rem;
    }
    .chat-textarea {
        font-size: 16px;
    }
}

.chat-escalate-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.9);
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
}

.chat-escalate-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.chat-contact-form {
    border-top: 1px solid var(--border);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-shrink: 0;
    background: var(--bg);
}

.chat-contact-title {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.chat-input-field {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    font-family: inherit;
    font-size: 0.875rem;
    outline: none;
    color: var(--text);
    background: var(--bg-soft);
    transition: border-color 0.2s;
}

.chat-input-field:focus { border-color: var(--primary); }

.chat-privacy-note {
    margin: 0;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.chat-privacy-note a {
    color: var(--primary);
    text-decoration: underline;
}

.chat-send-contact {
    width: 100%;
    padding: 0.6rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.chat-send-contact:hover { background: var(--primary-dark); }
.chat-send-contact:disabled { opacity: 0.5; cursor: not-allowed; }

/* ─── BUCHUNGS-KARTEN ────────────────────────────────────── */

.booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.booking-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.booking-card--featured {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.booking-card.booking-card--featured h3 { color: #fff; }
.booking-card.booking-card--featured p  { color: rgba(255,255,255,0.9); }

.booking-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.booking-duration {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-blue);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.booking-card--featured .booking-duration {
    color: var(--primary);
    background: #fff;
}

.booking-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.25);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.booking-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}

.booking-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
}

.booking-card .btn {
    margin-top: 0.5rem;
    text-align: center;
}

.booking-card--featured .btn-primary {
    background: #fff;
    color: var(--primary);
}

.booking-card--featured .btn-primary:hover {
    background: var(--bg-soft);
}

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

/* ─── COOKIE-BANNER MOBILE ───────────────────────────────── */

@media (max-width: 480px) {
    #cookie-banner {
        padding: 1rem !important;
    }
    #cookie-banner button {
        flex: 1 1 100%;
    }
}
