/* ═══════════════════════════════════════════════════════════════
   Digitalservice — Main Stylesheet
   Design: Glassmorphism Nav · Bento Grid · Blue/Orange Brand
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────── 0. SELF-HOSTED FONTS ─────────────────── */
/* latin-ext (ä, ö, ü, ß u. a.) */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
                   U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
                   U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─────────────────── 1. CSS CUSTOM PROPERTIES ─────────────────── */
:root {
    /* Brand colours (from logo) */
    --orange:        #f5820d;
    --orange-dark:   #d46a00;
    --orange-light:  #fff3e0;
    --blue:          #4a90d9;
    --blue-dark:     #2563ab;
    --blue-light:    #e8f1fb;
    --blue-100:      #dbeafe;
    --blue-200:      #bfdbfe;

    /* Neutrals */
    --bg:            #f7f9fc;
    --white:         #ffffff;
    --gray-50:       #f8fafc;
    --gray-100:      #f1f5f9;
    --gray-200:      #e2e8f0;
    --gray-300:      #cbd5e1;
    --gray-500:      #64748b;
    --gray-600:      #475569;
    --gray-700:      #334155;
    --gray-900:      #0f172a;

    /* Card styling */
    --card-border:   rgba(74, 144, 217, 0.18);
    --card-shadow:   0 4px 24px rgba(74, 144, 217, 0.10);
    --card-shadow-h: 0 12px 40px rgba(74, 144, 217, 0.22);

    /* Typography */
    --font:          'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --radius:        18px;
    --radius-sm:     10px;
    --radius-lg:     24px;

    /* Transitions */
    --ease:          cubic-bezier(0.4, 0, 0.2, 1);
    --transition:    0.25s var(--ease);
}

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

[hidden] { display: none !important; }

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

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--blue-dark);
    transition: color var(--transition);
}

a:hover { color: var(--orange); }

ul { list-style: none; }

h1, h2, h3, h4 {
    color: var(--gray-900);
    line-height: 1.2;
    font-weight: 800;
}

/* ─────────────────── 3. SCROLLBAR & SELECTION ─────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }

::selection { background: rgba(74, 144, 217, 0.2); }

/* ─────────────────── 4. LAYOUT UTILITIES ─────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 52px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 14px;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
}

/* ─────────────────── 5. BUTTONS ─────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(245, 130, 13, 0.30);
}
.btn--primary:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(245, 130, 13, 0.40);
}

.btn--ghost {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
}
.btn--ghost:hover {
    border-color: var(--blue);
    color: var(--blue-dark);
    background: var(--blue-light);
}

.btn--blue {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(74,144,217,0.25);
}
.btn--blue:hover {
    background: var(--blue-dark);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--blue-dark);
    font-weight: 700;
}
.btn--white:hover {
    background: var(--blue-light);
    color: var(--blue-dark);
}

.btn--submit {
    width: 100%;
    padding: 16px 28px;
    font-size: 1rem;
    border-radius: 12px;
    background: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(245, 130, 13, 0.30);
    transition: all var(--transition);
    letter-spacing: 0.02em;
}
.btn--submit:hover:not(:disabled) {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 130, 13, 0.40);
}
.btn--submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.btn--cta {
    background: var(--orange);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.05rem;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(245, 130, 13, 0.35);
    white-space: nowrap;
}
.btn--cta:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(245, 130, 13, 0.45);
}

/* ─────────────────── 6. BADGE ─────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-light);
    color: var(--blue-dark);
    border: 1px solid var(--blue-200);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 18px;
}

/* ─────────────────── 7. TAGS ─────────────────── */
.tag {
    background: var(--blue-light);
    color: var(--blue-dark);
    border: 1px solid var(--blue-200);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all var(--transition);
}

/* ─────────────────── 8. TEXT GRADIENT ─────────────────── */
.text-gradient {
    background: linear-gradient(130deg, var(--blue) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─────────────────── 9. NAVIGATION ─────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
    background: rgba(247, 249, 252, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 24px rgba(15, 23, 42, 0.08);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav__logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: opacity var(--transition);
}
.nav__logo:hover img { opacity: 0.85; }

.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav__link {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
}

.nav__link:hover {
    color: var(--blue-dark);
    background: var(--blue-light);
}

.nav__link--cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 9px 20px;
    box-shadow: 0 2px 10px rgba(245, 130, 13, 0.28);
}
.nav__link--cta:hover {
    background: var(--orange-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 130, 13, 0.38);
}

/* Burger button */
.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: none;
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: all var(--transition);
}
.nav__burger:hover {
    border-color: var(--blue);
    background: var(--blue-light);
}
.nav__burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────── 10. HERO ─────────────────── */
.hero {
    min-height: 100svh;
    padding-top: 88px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(175deg, var(--white) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero__grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding-top: 40px;
    padding-bottom: 80px;
}

.hero__content {
    max-width: 560px;
}

.hero__title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__sub {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero__meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
}

.hero__meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
}
.hero__meta-item svg { flex-shrink: 0; color: var(--blue); }
.hero__meta-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-900);
    font-weight: 700;
}
.hero__meta-item span {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* ── Hero Closure Notice Banner ── */
.hero__notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(245, 130, 13, 0.10);
    border: 1px solid rgba(245, 130, 13, 0.40);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.55;
    max-width: 480px;
}
.hero__notice svg { color: var(--orange); }

/* ── Hero Visual ── */
.hero__visual {
    position: relative;
    height: 480px;
    width: 100%;
}

.hero__blob {
    position: absolute;
    inset: 5% 5%;
    background: radial-gradient(ellipse at 55% 50%, #dbeafe 0%, rgba(219,234,254,0.4) 55%, transparent 78%);
    border-radius: 62% 38% 55% 45% / 52% 60% 40% 48%;
    animation: morphBlob 10s ease-in-out infinite;
}

.hero__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(74,144,217,0.35) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 72%);
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 72%);
}

.hero__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 310px;
    border: 2px dashed rgba(245, 130, 13, 0.22);
    border-radius: 50%;
    animation: rotateRing 22s linear infinite;
}

.hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 13px 18px;
    box-shadow: 0 8px 32px rgba(74, 144, 217, 0.16);
    min-width: 180px;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.hero__float--a:hover,
.hero__float--b:hover {
    box-shadow: 0 12px 40px rgba(74, 144, 217, 0.30);
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.03);
}
.hero__float--c:hover {
    box-shadow: 0 12px 40px rgba(74, 144, 217, 0.30);
    border-color: var(--primary);
    transform: translateX(-50%) translateY(-3px) scale(1.03);
}

.hero__float strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-900);
}
.hero__float span {
    font-size: 0.72rem;
    color: var(--gray-500);
}

.hero__float--a {
    top: 10%;
    left: 4%;
    animation: floatUp 4.5s ease-in-out infinite;
}
.hero__float--b {
    top: 7%;
    right: 3%;
    animation: floatUp 4.5s ease-in-out infinite 1.5s;
}
.hero__float--c {
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatC 4.5s ease-in-out infinite 3s;
}

.hero__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 50%;
    width: 124px;
    height: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(74, 144, 217, 0.25);
    border: 2px solid var(--card-border);
}
.hero__center img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: auto;
}

/* Float icons */
.float-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.float-icon svg { width: 22px; height: 22px; }
.float-icon--blue { background: var(--blue-100); color: var(--blue-dark); }
.float-icon--orange { background: var(--orange-light); color: var(--orange); }

/* Hero wave */
.hero__wave {
    position: relative;
    line-height: 0;
    margin-top: auto;
}
.hero__wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ─────────────────── 11. TRUST / PARTNER BAR ─────────────────── */
.trust {
    background: var(--white);
    padding: 64px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust__label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gray-500);
    margin-bottom: 36px;
}

.trust__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-right: 1px solid var(--gray-200);
    transition: background 0.25s var(--ease);
}

.trust__logo:first-child { border-left: 1px solid var(--gray-200); }

.trust__logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: filter 0.3s var(--ease), transform 0.3s var(--ease);
    display: block;
}

.trust__logo:hover {
    background: var(--blue-light);
}

.trust__logo:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.08);
}

.trust__logo {
    flex-direction: column;
    gap: 6px;
}

.trust__logo-name {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.trust__sub {
    text-align: center;
    font-size: 0.78rem;
    color: var(--gray-500);
    max-width: 680px;
    margin: 28px auto 0;
    line-height: 1.6;
}

/* Logos mit weißem JPG-Hintergrund via Blend-Mode entfernen */
img[alt="o2 Partner Haßloch"],
img[alt="Vodafone Partner Haßloch"] {
    mix-blend-mode: multiply;
}

@media (max-width: 640px) {
    .trust__logo {
        padding: 14px 22px;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        width: 50%;
    }
    .trust__logo:first-child { border-left: none; }
}

/* ─────────────────── 12. LEISTUNGEN / BENTO GRID ─────────────────── */
.leistungen {
    padding: 100px 0;
    background: var(--bg);
}

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 16px;
}

/* Card base */
.card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(74,144,217,0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-h);
}
.card:hover::before { opacity: 1; }

/* Card variants */
.card--large {
    grid-column: span 2;
    grid-row: span 2;
}

.card--wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
}
.card--wide .card__icon-wrap {
    align-self: flex-start;
}
.card--wide > div:not(.card__icon-wrap) {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 14px;
}

.card--blue-bg {
    background: linear-gradient(145deg, #f0f8ff 0%, #e8f1fb 100%);
}

.card--highlight {
    background: linear-gradient(145deg, #fff8f2 0%, #fff0e0 100%);
}

.card--cta {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-color: transparent;
    color: var(--white);
}
.card--cta:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(74,144,217,0.35); }
.card--cta::before { display: none; }
/* Card elements */
.card__icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
    flex-shrink: 0;
}
.card__icon-wrap--blue { background: var(--blue-100); color: var(--blue-dark); }
.card__icon-wrap--orange { background: var(--orange-light); color: var(--orange); }

.card:hover .card__icon-wrap--blue {
    background: var(--orange-light);
    color: var(--orange);
}

.card__icon { width: 26px; height: 26px; }

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--gray-900);
}

.card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin: 0;
}

/* CTA card overrides — must come after .card p and .card h3 to win same-specificity */
.card--cta h3 { color: var(--white); }
.card--cta p  { color: var(--white); }

.card__list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-700);
    font-weight: 500;
}
.card__list li svg {
    color: var(--orange);
    flex-shrink: 0;
}

.card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.card__btn { align-self: flex-start; }

.card__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.badge-new {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    background: var(--orange);
    border-radius: 99px;
    padding: 2px 7px;
    vertical-align: middle;
    letter-spacing: 0.03em;
}
.badge-ai {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 99px;
    padding: 2px 7px;
    vertical-align: middle;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(124,58,237,0.4);
}

.trust-pill {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blue-dark);
    background: var(--blue-100);
    border: 1px solid rgba(74,144,217,0.2);
    border-radius: 99px;
    padding: 4px 12px;
}

.card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.card__cta-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ─────────────────── 13. USP / ÜBER UNS ─────────────────── */
.usp {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.usp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-200), transparent);
}

.usp__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.usp__content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 20px;
    line-height: 1.15;
}

.usp__content p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}

.usp__content .btn { margin-top: 8px; }

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

.stat-card {
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: var(--blue-200);
    background: var(--blue-light);
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
}

.stat-card--accent {
    background: var(--orange);
    border-color: var(--orange-dark);
    color: var(--white);
}
.stat-card--accent .stat-card__number,
.stat-card--accent .stat-card__label { color: var(--white); }
.stat-card--accent:hover { background: var(--orange-dark); transform: translateY(-3px); }

.stat-card__number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-card__number span {
    font-size: 1.4rem;
    font-weight: 700;
    opacity: 0.7;
    margin-left: 2px;
}
.stat-card__number svg { color: var(--orange); }

.stat-card__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─────────────────── 14. CTA BANNER ─────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--blue-light) 0%, #d0e8ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,130,13,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner__text h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--gray-900);
    margin-bottom: 10px;
}

.cta-banner__text p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* ─────────────────── 15. KONTAKT ─────────────────── */
.kontakt {
    padding: 100px 0;
    background: var(--bg);
}

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

.kontakt__info h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    margin-bottom: 14px;
}

.kontakt__info > p {
    color: var(--gray-500);
    margin-bottom: 36px;
    line-height: 1.7;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.info-item__icon {
    width: 44px;
    height: 44px;
    background: var(--blue-light);
    border: 1px solid var(--blue-200);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue-dark);
}
.info-item__icon svg { width: 20px; height: 20px; }
a.info-item__icon--whatsapp {
    background: #e8f8ee;
    border-color: #b5e5c7;
    color: #25d366;
    transition: background .15s, transform .15s;
    text-decoration: none;
}
a.info-item__icon--whatsapp:hover {
    background: #25d366;
    color: #fff !important;
    transform: scale(1.08);
}

.info-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--gray-500);
    margin-bottom: 3px;
}

.info-item span {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.55;
}

.info-item a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
}
.info-item a:hover { color: var(--orange); }

/* Form card */
.form-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.form-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.form-card > p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

/* Form fields */
.form { display: flex; flex-direction: column; gap: 20px; }

.form__group { display: flex; flex-direction: column; gap: 6px; }

.form__label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-700);
    letter-spacing: 0.02em;
}
.form__label span { color: var(--orange); }
.form__label--hint { color: var(--gray-400); font-weight: 400; font-size: .82rem; }

.form__input,
.form__textarea {
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--gray-900);
    background: var(--bg);
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px 16px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    resize: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.14);
    background: var(--white);
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--gray-300); }

select.form__input { cursor: pointer; }

.form__textarea { resize: vertical; min-height: 130px; }

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

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

/* Checkbox */
.form__privacy { margin-top: -4px; }

.form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.form__checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    accent-color: var(--orange);
    flex-shrink: 0;
    margin-top: 1px;
    cursor: pointer;
}

.form__checkbox-label a {
    color: var(--blue-dark);
    text-decoration: underline;
    font-weight: 600;
}

/* Success & Error states */
.form__success,
.form__error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.form__success {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    color: #166534;
}
.form__success svg { width: 22px; height: 22px; color: #16a34a; flex-shrink: 0; }
.form__success-reset {
    margin-top: 8px;
    background: none;
    border: 1.5px solid #16a34a;
    color: #166534;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}
.form__success-reset:hover { background: #dcfce7; }

.form__error {
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    color: #991b1b;
}
.form__error svg { width: 22px; height: 22px; color: #dc2626; flex-shrink: 0; }

/* ─────────────────── 16. PREISE ─────────────────── */
.preise {
    padding: 100px 0;
    background: var(--blue-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 144, 217, .15);
}

.pricing-card--featured {
    border-color: var(--orange);
    box-shadow: 0 8px 32px rgba(245, 130, 13, .18);
    transform: translateY(-6px);
}

.pricing-card--featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(245, 130, 13, .22);
}

.pricing-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.pricing-card__header { text-align: center; }

.pricing-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.pricing-card--featured .pricing-card__icon {
    background: var(--orange-light);
}
.pricing-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--blue);
}
.pricing-card--featured .pricing-card__icon svg {
    color: var(--orange);
}

.pricing-card__header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 4px;
}
.price-from {
    font-size: .9rem;
    font-weight: 600;
    color: var(--gray-500);
}
.price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -.03em;
    line-height: 1;
}
.pricing-card--featured .price-amount { color: var(--orange); }
.price-note {
    font-size: .9rem;
    font-weight: 700;
    color: var(--gray-500);
    align-self: flex-start;
    margin-top: 4px;
}

.pricing-card__sub {
    font-size: .82rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.pricing-card__list li {
    font-size: .9rem;
    color: var(--gray-600);
    padding-left: 20px;
    position: relative;
    line-height: 1.45;
}
.pricing-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}
.pricing-card--featured .pricing-card__list li::before {
    background: var(--orange);
}

.pricing-card__btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Footnotes */
.pricing-footnotes {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pricing-footnotes p {
    font-size: .8rem;
    color: var(--gray-500);
    line-height: 1.5;
}
.pricing-footnotes strong { color: var(--gray-700); }

/* ─────────────────── 17. BOOKING WIDGET ─────────────────── */

/* Step indicator */
.book-steps {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}
.book-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.book-step__num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    font-weight: 800;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, color .3s;
}
.book-step__label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray-500);
    transition: color .3s;
    white-space: nowrap;
}
.book-step.active .book-step__num  { background: var(--orange); color: #fff; }
.book-step.active .book-step__label { color: var(--orange); }
.book-step.done   .book-step__num  { background: var(--blue);   color: #fff; }
.book-step.done   .book-step__label { color: var(--blue); }
.book-step__line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    margin: 0 8px;
    margin-bottom: 20px;
    transition: background .3s;
}
.book-step__line.done { background: var(--blue); }

/* Calendar */
.book-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.book-cal-header span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gray-900);
}
.book-cal-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    color: var(--gray-700);
    line-height: 1;
}
.book-cal-nav-btn:hover { border-color: var(--blue); color: var(--blue); }

.book-cal-dow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 5px;
}
.book-cal-dow span {
    text-align: center;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray-300);
    padding: 3px 0;
}
.book-cal-dow span.biz { color: var(--blue); }

.book-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.book-cal-loading {
    grid-column: 1 / -1;
    padding: 28px 0;
    text-align: center;
    font-size: .85rem;
    color: var(--gray-300);
    font-weight: 600;
    animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .4; }
}
.book-cal-day {
    aspect-ratio: 1;
    border-radius: 9px;
    border: 1.5px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    font-weight: 700;
    transition: all .15s;
    cursor: default;
    color: var(--gray-300);
}
.book-cal-day--available {
    background: var(--blue-light);
    border-color: var(--blue-200);
    color: var(--blue-dark);
    cursor: pointer;
}
.book-cal-day--available:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74,144,217,.25);
}
.book-cal-day--today.book-cal-day--available {
    background: var(--orange-light);
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 0 0 2px var(--orange);
}
.book-cal-day--today.book-cal-day--available:hover {
    background: var(--orange);
    color: var(--white);
}
.book-cal-day--selected {
    background: var(--orange) !important;
    color: var(--white) !important;
    border-color: var(--orange) !important;
    transform: none;
    box-shadow: 0 2px 10px rgba(245,130,13,.35);
}

/* Time slots */
.book-selected-date {
    font-size: .95rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 18px;
    padding: 10px 14px;
    background: var(--blue-light);
    border-radius: 9px;
    border: 1px solid var(--blue-200);
}
/* Service pre-selector */
.book-service-picker {
    margin-bottom: 20px;
}
.book-service-picker__label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--gray-500);
    margin-bottom: 10px;
}
.book-service-picker__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.book-service-pill {
    padding: 10px 20px;
    border-radius: 24px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--gray-600);
    transition: all .15s;
}
.book-service-pill:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.book-service-pill--active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 2px 10px rgba(245,130,13,.25);
}

.book-slots { display: flex; flex-direction: column; gap: 14px; }
.book-slots-group h4 {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--gray-500);
    margin-bottom: 8px;
}
.book-slots-row { display: flex; flex-wrap: wrap; gap: 8px; }
.book-slot {
    padding: 9px 16px;
    border-radius: 9px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s;
    color: var(--gray-700);
}
.book-slot:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
}
.book-slot--selected {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 2px 10px rgba(245,130,13,.3);
}
.book-slot--booked {
    background: var(--gray-50, #f8f9fa);
    color: var(--gray-300, #c0c0c0);
    border-color: var(--gray-200);
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: .6;
}

/* Dauer-Picker Step 3 — kompakter Abstand */
.book-slots-group--compact { margin-top: 12px; margin-bottom: 4px; }
.book-slots-group--compact h4 { font-size: .8rem; }

/* Dauer-Picker (Vor-Ort Service) */
.book-duration-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.book-duration-btn {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.book-duration-btn:hover {
    border-color: var(--blue);
    background: var(--blue-light);
}
.book-duration-btn--selected {
    border-color: var(--orange);
    background: rgba(245,130,13,.08);
    box-shadow: 0 2px 10px rgba(245,130,13,.2);
}
.book-duration-btn--unavailable,
.book-duration-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
    border-color: var(--gray-200);
    background: var(--gray-50);
}
.book-duration-btn--unavailable:hover,
.book-duration-btn:disabled:hover {
    border-color: var(--gray-200);
    background: var(--gray-50);
}
.book-duration-time {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}
.book-duration-price {
    font-size: .9rem;
    font-weight: 600;
    color: var(--orange);
}
.book-duration-picker--error {
    animation: durationShake .3s ease;
}
.book-duration-picker--error .book-duration-btn {
    border-color: #e53e3e;
}
.book-duration-picker--notice .book-duration-btn--selected {
    animation: durationNotice .4s ease;
    border-color: var(--orange);
}
@keyframes durationNotice {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}
@keyframes durationShake {
    0%,100% { transform: translateX(0); }
    25%      { transform: translateX(-6px); }
    75%      { transform: translateX(6px); }
}

/* Summary badge */
.book-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--orange-light);
    border: 1.5px solid var(--orange);
    border-radius: 10px;
    margin-bottom: 22px;
}
.book-summary svg { color: var(--orange); flex-shrink: 0; }
.book-summary span { font-size: .92rem; font-weight: 700; color: var(--gray-900); }

/* Back button */
.book-back {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--blue);
    font-size: .85rem;
    font-weight: 700;
    padding: 0;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font);
}
.book-back:hover { color: var(--orange); }

/* Panel fade-in */
.book-panel { animation: bookFadeIn .22s ease; }
@keyframes bookFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .book-slot { padding: 8px 12px; font-size: .82rem; }
    .book-cal-day { font-size: .8rem; }
}

/* ─────────────────── 18. FOOTER ─────────────────── */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding-top: 72px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer__brand img {
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__brand p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--gray-500);
    max-width: 280px;
    margin-bottom: 20px;
}

.footer__contact-quick {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition);
}
.footer__quick-link:hover { color: var(--orange); }
.footer__quick-link svg { color: var(--blue); }

.footer__nav h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer__nav a {
    font-size: 0.9rem;
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }

.footer__info h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-500);
    margin-bottom: 14px;
    margin-top: 28px;
}
.footer__info > nav > h4,
.footer__info > nav:first-child h4 { margin-top: 0; }
.footer__hours { margin-top: 28px; }
.footer__info ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.footer__info a {
    font-size: 0.9rem;
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition);
}
.footer__info a:hover { color: var(--white); }

.footer__hours p {
    font-size: 0.88rem;
    color: var(--gray-300);
    line-height: 1.65;
    margin-bottom: 6px;
}
.footer__hours--closed { color: var(--gray-500) !important; }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.footer__bottom-links {
    display: flex;
    gap: 20px;
}
.footer__bottom-links a {
    font-size: 0.82rem;
    color: var(--gray-500);
    text-decoration: none;
    transition: color var(--transition);
}
.footer__bottom-links a:hover { color: var(--gray-300); }

/* ─────────────────── 17. ANIMATIONS ─────────────────── */
@keyframes morphBlob {
    0%, 100% { border-radius: 62% 38% 55% 45% / 52% 60% 40% 48%; }
    33%       { border-radius: 40% 60% 45% 55% / 62% 40% 58% 42%; }
    66%       { border-radius: 55% 45% 60% 40% / 42% 55% 45% 58%; }
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

@keyframes floatC {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(-10px); }
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger nur vor der Einlauf-Animation — nach visible-Klasse kein Delay mehr */
[data-animate]:not(.visible) .card:nth-child(1) { transition-delay: 0.05s; }
[data-animate]:not(.visible) .card:nth-child(2) { transition-delay: 0.10s; }
[data-animate]:not(.visible) .card:nth-child(3) { transition-delay: 0.15s; }
[data-animate]:not(.visible) .card:nth-child(4) { transition-delay: 0.20s; }
[data-animate]:not(.visible) .card:nth-child(5) { transition-delay: 0.25s; }
[data-animate]:not(.visible) .card:nth-child(6) { transition-delay: 0.30s; }

/* ─────────────────── 18. RESPONSIVE ─────────────────── */

/* Tablet – 1024px */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__visual { display: none; }
    .hero__content { max-width: 100%; text-align: center; }
    .hero__actions { justify-content: center; }
    .hero__meta { justify-content: center; }

    .bento { grid-template-columns: repeat(2, 1fr); }
    .card--large { grid-column: span 2; grid-row: span 1; }
    .card--wide { grid-column: span 2; }
    .card--cta { flex-direction: column; align-items: flex-start; }

    .usp__grid { grid-template-columns: 1fr; gap: 40px; }
    .usp__content { text-align: center; }
    .usp__content .btn { margin-inline: auto; }

    .kontakt__grid { grid-template-columns: 1fr; gap: 40px; }

    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: span 2; }
}

/* Mobile – 768px */
@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(247, 249, 252, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        gap: 4px;
    }
    .nav__links.open { display: flex; }
    .nav__link { padding: 12px 14px; }
    .nav__link--cta { text-align: center; margin-top: 4px; }
    .nav__burger { display: flex; }
    .nav__logo img { height: 36px; }

    .hero { min-height: auto; padding-top: 80px; padding-bottom: 20px; }
    .hero__grid { padding-top: 32px; padding-bottom: 48px; }
    .hero__title { font-size: 2.2rem; }

    .bento { grid-template-columns: 1fr; }
    .card--large,
    .card--wide { grid-column: span 1; }
    .card--wide { flex-direction: column; align-items: flex-start; }
    .card--cta { padding: 24px; }

    .trust__logos { flex-wrap: wrap; }

    .cta-banner__inner { flex-direction: column; text-align: center; }
    .cta-banner__inner .btn--cta { width: 100%; }

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

    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__brand { grid-column: auto; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }

    .form-card { padding: 28px 22px; }
}

/* Small mobile – 480px */
@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; text-align: center; justify-content: center; }
    .hero__meta { flex-direction: column; gap: 14px; }
    .usp__stats { grid-template-columns: 1fr; }
    .card__cta-actions { flex-direction: column; width: 100%; }
    .card__cta-actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   NEUIGKEITEN / BLOG  (index preview + full listing + single post)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Section (index preview) ─── */
.neuigkeiten {
    padding: 100px 0;
    background: var(--white);
}

/* ─── Post category pill ─── */
.post-cat {
    display: inline-block;
    border-radius: 999px;
    padding: 3px 12px;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.post-cat--news { background: var(--blue-light); color: var(--blue-dark); border: 1px solid var(--blue-200); }
.post-cat--blog { background: #fdf4ff; color: #7e22ce; border: 1px solid #e9d5ff; }

/* ─── Post date ─── */
.post-date {
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: auto;
    display: block;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

/* ─── Posts grid ─── */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.posts-grid--full {
    grid-template-columns: repeat(3, 1fr);
}

/* ─── Post card ─── */
.post-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-h);
    color: inherit;
}

.post-card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--blue-light);
}
.post-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
    display: block;
}
.post-card:hover .post-card__img img { transform: scale(1.04); }

.post-card__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-200);
}
.post-card__img--placeholder svg { width: 40px; height: 40px; }

.post-card__body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.post-card__body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.35;
    margin: 0;
}
.post-card__body p {
    font-size: 0.87rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─── Skeleton loader ─── */
.posts-skeleton {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.skeleton-card {
    border-radius: var(--radius);
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    aspect-ratio: 3 / 4;
    min-height: 280px;
}
.skeleton-line {
    border-radius: 8px;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    display: block;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ─── Empty state ─── */
.posts-empty, .no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    color: var(--gray-500);
    font-size: 0.95rem;
}
.no-posts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--gray-300);
}
.no-posts svg { color: var(--gray-200); }
.no-posts p { color: var(--gray-500); }

/* ─── nav active ─── */
.nav__link.active {
    color: var(--blue-dark);
    background: var(--blue-light);
}

/* ─────────────────── PAGE HERO (neuigkeiten + post) ─────────────────── */
.page-hero {
    padding: 120px 0 56px;
    background: linear-gradient(175deg, var(--white) 0%, var(--blue-light) 100%);
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 14px;
}
.page-hero p {
    color: var(--gray-500);
    font-size: 1.05rem;
    max-width: 560px;
    margin-inline: auto;
}

/* ─── Filter bar ─── */
.filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--gray-200);
    border-radius: 999px;
    background: var(--white);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue-dark); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ─── Page main ─── */
.page-main { padding: 56px 0 100px; background: var(--bg); }

/* ─────────────────── SINGLE POST PAGE ─────────────────── */
.post-page { padding: 100px 0 80px; background: var(--bg); }

.post-container { max-width: 780px; }

.post-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-500);
    text-decoration: none;
    margin-bottom: 28px;
    transition: color var(--transition);
}
.post-back:hover { color: var(--orange); }

.post-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.post-meta-top .post-date {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

#postTitle {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.post-excerpt {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 28px;
    font-style: italic;
    border-left: 3px solid var(--orange);
    padding-left: 16px;
}

.post-hero-img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 36px;
    object-fit: cover;
    max-height: 440px;
    display: block;
}

/* Post body typography */
.post-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 48px;
}
.post-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--gray-900); margin: 32px 0 12px; }
.post-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin: 24px 0 10px; }
.post-body p  { margin-bottom: 16px; }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 16px; }
.post-body li { margin-bottom: 6px; }
.post-body a  { color: var(--blue-dark); font-weight: 600; text-decoration: underline; }
.post-body a:hover { color: var(--orange); }
.post-body strong { color: var(--gray-900); font-weight: 700; }
.post-body blockquote {
    border-left: 3px solid var(--orange);
    padding: 4px 16px;
    margin: 20px 0;
    color: var(--gray-500);
    font-style: italic;
}

/* Post CTA footer */
.post-footer-cta {
    background: linear-gradient(135deg, var(--blue-light) 0%, #dbeafe 100%);
    border-radius: var(--radius);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
}
.post-footer-cta h3 { font-size: 1.2rem; margin-bottom: 4px; }
.post-footer-cta p  { color: var(--gray-500); font-size: 0.9rem; }

/* Not found */
.post-loading, .post-notfound {
    padding: 60px 0;
}
.post-notfound {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    color: var(--gray-300);
}
.post-notfound h2 { color: var(--gray-900); }
.post-notfound p  { color: var(--gray-500); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .posts-grid, .posts-grid--full, .posts-skeleton { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .posts-grid, .posts-grid--full, .posts-skeleton { grid-template-columns: 1fr; }
    .post-footer-cta { flex-direction: column; text-align: center; }
    .post-footer-cta .btn { width: 100%; justify-content: center; }
    .page-hero { padding: 100px 0 40px; }
}

/* ─────────────────── 25. HERO RATING BADGE ─────────────────── */
.hero__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 16px;
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: 40px;
    width: fit-content;
    font-size: 0.85rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hero__rating:hover {
    border-color: var(--blue);
    box-shadow: 0 2px 12px rgba(74,144,217,.15);
    color: var(--gray-900);
}
.hero__rating-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 0.95rem;
    line-height: 1;
}
.hero__rating-score {
    font-weight: 700;
    color: var(--gray-900);
}
.hero__rating-count {
    color: var(--gray-500);
}
.hero__rating-google {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gray-500);
    font-size: 0.8rem;
    border-left: 1px solid var(--gray-200);
    padding-left: 10px;
    margin-left: 2px;
}

/* ─────────────────── 26. BEWERTUNGEN SECTION ─────────────────── */
.reviews {
    padding: 96px 0;
    background: var(--gray-50);
}
.reviews .section-header { margin-bottom: 48px; }

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.reviews-summary-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}
.reviews-summary-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.reviews-summary-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 1.3rem;
}
.reviews-summary-count {
    font-size: 0.88rem;
    color: var(--gray-500);
}

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

.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    border: 1.5px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.review-card:hover {
    box-shadow: 0 6px 24px rgba(74,144,217,.1);
    border-color: var(--blue-200);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--blue-light);
}
.review-card__avatar-initial {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-card__author {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-900);
    line-height: 1.2;
}
.review-card__time {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 1px;
}

.review-card__stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 0.9rem;
}

.review-card__text {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.65;
    flex: 1;
}
.review-card__text--truncated {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-card__expand {
    background: none;
    border: none;
    padding: 0;
    color: var(--blue-dark);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}
.review-card__expand:hover { color: var(--orange); }

.review-card__google {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--gray-100);
}

.reviews-cta {
    text-align: center;
}
.reviews-skeleton {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.reviews-skeleton-card {
    height: 180px;
    border-radius: var(--radius);
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

@media (max-width: 960px) {
    .reviews-grid, .reviews-skeleton { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .reviews-grid, .reviews-skeleton { grid-template-columns: 1fr; }
    .reviews-summary-score { font-size: 2.4rem; }
    .hero__rating { font-size: 0.8rem; padding: 8px 14px; }
}
