:root {
    --bg: #f4f8f8;
    --surface: #ffffff;
    --surface-2: #edf5f5;
    --border: #c8e0de;
    --border-hover: #3abcb1;
    --green: #3abcb1;
    --green-light: #4ecfc4;
    --green-deep: #268c83;
    --green-glow: rgba(58, 188, 177, 0.2);
    --accent: #7a8a8e;
    --accent-dim: rgba(122, 138, 142, 0.1);
    --text: #2a3a3c;
    --text-dim: #9aacae;
    --text-mid: #5a7275;
    --radius-lg: 20px;
    --radius-md: 14px;
    --google-yellow: #fbbc05;
}

*, *::before, *::after { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse 55% 42% at 85% 5%, rgba(45, 122, 79, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 32% at 5% 90%, rgba(232, 133, 15, 0.05) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232d7a4f' fill-opacity='0.03'%3E%3Cpath d='M0 0h1v1H0zM20 20h1v1h-1z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.bento-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(160px, auto);
    gap: 16px;
}

.tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(45, 122, 79, 0.06),
        0 4px 20px rgba(45, 122, 79, 0.08),
        0 16px 48px rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 0.55s ease both;
}

.tile:hover {
    border-color: var(--green-light);
    transform: translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(45, 122, 79, 0.15),
        0 8px 32px rgba(45, 122, 79, 0.15),
        0 24px 60px rgba(0, 0, 0, 0.1);
}

.tile:nth-child(1)  { animation-delay: 0.05s; }
.tile:nth-child(2)  { animation-delay: 0.1s; }
.tile:nth-child(3)  { animation-delay: 0.15s; }
.tile:nth-child(4)  { animation-delay: 0.2s; }
.tile:nth-child(5)  { animation-delay: 0.25s; }
.tile:nth-child(6)  { animation-delay: 0.3s; }
.tile:nth-child(7)  { animation-delay: 0.35s; }
.tile:nth-child(8)  { animation-delay: 0.4s; }
.tile:nth-child(9)  { animation-delay: 0.45s; }
.tile:nth-child(10) { animation-delay: 0.5s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero */
.hero-tile {
    grid-column: span 3;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    background: linear-gradient(160deg, #e0f5f4 0%, #ccecea 40%, #b8e4e1 100%);
    border-color: rgba(58, 188, 177, 0.25);
    min-height: 460px;
    animation: heroIn 0.8s ease both;
}

.hero-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(255,255,255,0.7) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 0% 100%, rgba(45, 122, 79, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

@keyframes heroIn {
    from { opacity: 0; transform: scale(0.98); }
    to   { opacity: 1; transform: scale(1); }
}

.logo-wrapper {
    position: absolute;
    top: 24px;
    left: 40px;
}

.logo-img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
    display: block;
}

.logo-fallback { display: none; align-items: center; gap: 10px; }

.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 1rem; color: white; letter-spacing: -0.5px;
}

.logo-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 1.1rem; color: var(--green-deep); letter-spacing: -0.5px;
}

.hero-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-label::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--green); border-radius: 2px;
}

.seo-h1 {
    position: absolute;
    width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    clip-path: inset(100%); white-space: nowrap; border: 0;
}

.hero-display {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 0.95;
    margin: 0 0 8px 0;
    color: var(--text);
    position: relative;
    text-transform: uppercase;
}

.hero-display .outline {
    -webkit-text-stroke: 2px var(--green-deep);
    color: transparent;
    display: inline-block;
}

.hero-display .accent-italic {
    color: var(--green);
    font-style: italic;
    display: inline-block;
}

.rolling-wrap {
    display: inline-block;
    height: 0.95em;
    overflow: hidden;
    vertical-align: bottom;
}

.rolling-list {
    margin: 0; padding: 0; list-style: none;
    animation: roll 12s cubic-bezier(0.85, 0, 0.15, 1) infinite;
}

.rolling-list li {
    line-height: 0.95em;
    color: var(--green);
    font-style: italic;
    white-space: nowrap;
}

@keyframes roll {
    0%,  18% { transform: translateY(0); }
    25%, 43% { transform: translateY(-0.95em); }
    50%, 68% { transform: translateY(-1.90em); }
    75%, 93% { transform: translateY(-2.85em); }
    100%     { transform: translateY(-3.80em); }
}

.hero-sub {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.6;
    margin: 16px 0 28px;
    max-width: 520px;
    position: relative;
}

.hero-sub strong { color: var(--text); font-weight: 600; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

.btn {
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-green { background: var(--green); color: white; border-color: var(--green-light); }
.btn-green:hover { background: var(--green-light); box-shadow: 0 4px 20px rgba(45,122,79,0.35); transform: translateY(-1px); }

.btn-outline {
    background: rgba(45,122,79,0.08);
    color: var(--green-deep);
    border-color: var(--border-hover);
}
.btn-outline:hover { background: rgba(45,122,79,0.14); border-color: var(--green); }

/* Booking */
.tile-booking {
    background: linear-gradient(135deg, #268c83 0%, #3abcb1 50%, #268c83 100%);
    border-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tile-booking:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(58,188,177,0.25); }

.tile-booking h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
    margin: 0 0 8px;
}

.tile-booking p { color: rgba(255,255,255,0.85); margin: 0 0 20px; font-size: 0.9rem; }

.btn-white {
    background: white; color: var(--green);
    border-radius: 12px; padding: 12px 20px;
    font-weight: 700; text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.25s ease; font-size: 0.95rem;
}
.btn-white:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* Service tiles */
.tile-label {
    display: flex; align-items: center; gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--green); margin-bottom: 12px;
}
.tile-label::before { content: ''; width: 14px; height: 2px; background: var(--green); border-radius: 2px; }

.tile h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem; font-weight: 700;
    letter-spacing: -0.3px; color: var(--text);
    margin: 0 0 10px;
}

.tile p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; margin: 0; }

.step-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4.5rem; font-weight: 800;
    color: rgba(45, 122, 79, 0.06);
    position: absolute; bottom: 8px; right: 16px;
    line-height: 1; pointer-events: none; user-select: none;
}

.tile-fullservice { grid-column: span 2; border-color: rgba(45, 122, 79, 0.2); }
.tile-fullservice::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 100% 0%, rgba(45,122,79,0.06), transparent 60%);
    pointer-events: none;
}

/* SEO Content Tile */
.tile-seo {
    grid-column: span 4;
    background: var(--surface);
    padding: 40px;
}

.tile-seo h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    margin: 0 0 20px;
}

.tile-seo .seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 8px;
}

.tile-seo p, .tile-seo li {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.75;
}

.tile-seo h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    margin: 0 0 10px;
    color: var(--text);
}

.tile-seo ul { margin: 0; padding-left: 20px; }
.tile-seo strong { color: var(--text); font-weight: 600; }

@media (max-width: 720px) {
    .tile-seo .seo-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Google */
.tile-google {
    grid-column: span 2;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; gap: 8px;
}

.google-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 1.1rem;
    letter-spacing: -0.5px; margin-bottom: 4px;
}
.google-logo span:nth-child(1) { color: #4285F4; }
.google-logo span:nth-child(2) { color: #EA4335; }
.google-logo span:nth-child(3) { color: #FBBC05; }
.google-logo span:nth-child(4) { color: #4285F4; }
.google-logo span:nth-child(5) { color: #34A853; }
.google-logo span:nth-child(6) { color: #EA4335; }

.stars { color: var(--google-yellow); font-size: 1.6rem; letter-spacing: 3px; }
.google-sub { color: var(--text-mid); font-size: 0.85rem; margin: 4px 0 16px; }

.btn-ghost {
    background: var(--surface-2); color: var(--text-mid);
    border: 1px solid var(--border-hover); border-radius: 10px;
    padding: 10px 20px; font-size: 0.85rem; font-weight: 500;
    text-decoration: none; transition: all 0.25s ease;
}
.btn-ghost:hover { color: var(--text); border-color: var(--green); background: rgba(45,122,79,0.06); }

/* FAQ */
.tile-faq { grid-column: span 4; }

.faq-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem; font-weight: 800;
    letter-spacing: -0.5px; color: var(--text);
    margin: 0 0 24px;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
    width: 100%; background: none; border: none;
    color: var(--text-mid); padding: 18px 0;
    font-size: 1rem; font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    text-align: left; transition: color 0.2s ease;
}
.faq-question:hover { color: var(--text); }

.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1rem;
    color: var(--text-dim);
    transition: all 0.25s ease;
}

.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--text-dim); font-size: 0.925rem; line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-item.active .faq-question { color: var(--text); }
.faq-item.active .faq-icon { background: var(--green); border-color: var(--green); color: white; }

/* Cities */
.tile-cities { grid-column: span 2; }
.city-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.city-tag {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: 8px; padding: 6px 12px;
    font-size: 0.82rem; color: var(--text-mid);
    transition: all 0.2s ease;
    cursor: default;
}
.city-tag:hover { border-color: var(--green); color: var(--text); background: rgba(45,122,79,0.06); transform: translateY(-1px); }

/* Contact */
.tile-contact {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--surface) 60%, #d8f2f0 100%);
    border-color: rgba(58, 188, 177, 0.25);
}

.contact-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem; font-weight: 800;
    letter-spacing: -0.5px; color: var(--green-deep);
    text-decoration: none; display: inline-block;
    margin: 10px 0 6px; transition: color 0.2s;
}
.contact-number:hover { color: var(--green); }

.contact-person { color: var(--text-dim); font-size: 0.85rem; margin: 4px 0 0; }
.contact-hours { color: var(--text-mid); font-size: 0.9rem; margin: 14px 0 0; font-weight: 500; }
.contact-emergency { color: var(--green); font-size: 0.85rem; margin: 6px 0 0; font-weight: 600; }

/* Footer */
.site-footer {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 32px auto 0;
    padding: 20px 0; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
    font-size: 0.8rem; color: var(--text-dim);
    text-decoration: none; transition: color 0.2s; cursor: pointer;
}
.footer-links a:hover { color: var(--text-mid); }

/* Responsive */
@media (max-width: 900px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-tile { grid-column: span 2; }
    .tile-faq { grid-column: span 2; }
    .tile-fullservice { grid-column: span 2; }
    .tile-google { grid-column: span 2; }
    .tile-seo { grid-column: span 2; }
    .tile-cta-bottom { grid-column: span 2; }
}

@media (max-width: 600px) {
    body { padding: 12px; }
    .bento-grid { grid-template-columns: 1fr; gap: 12px; }
    .tile { grid-column: span 1 !important; padding: 24px; }
    .hero-tile { min-height: 480px; }
    .hero-display { font-size: 2rem; letter-spacing: -1.5px; }
    .btn-group { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .site-footer { flex-direction: column; align-items: flex-start; }
    .tile-seo { padding: 24px; }
}

/* WhatsApp Floating Button */
.wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
    display: flex; align-items: center; gap: 12px;
    background: #25D366; color: white;
    border-radius: 50px; padding: 14px 22px 14px 18px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: waPulse 2.5s infinite ease-in-out;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55); }
.wa-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.wa-label { white-space: nowrap; }

@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4); }
    50%      { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.65); }
}

@media (max-width: 600px) {
    .wa-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
    .wa-label { display: none; }
}

/* TOP MARQUEE */
.top-marquee {
    background: linear-gradient(90deg, #268c83 0%, #3abcb1 50%, #268c83 100%);
    color: white;
    padding: 10px 0;
    overflow: hidden; position: relative;
    margin: -20px -20px 24px -20px;
}
@media (max-width: 720px) {
    .top-marquee { margin: -12px -12px 16px -12px; }
}

.top-marquee-track {
    display: flex; gap: 36px;
    width: max-content;
    animation: topMarquee 50s linear infinite;
}
.top-marquee:hover .top-marquee-track { animation-play-state: paused; }

.top-marquee-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.03em; white-space: nowrap;
    color: white;
    display: inline-flex; align-items: center; gap: 8px;
}
.top-marquee-item .sep { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

@keyframes topMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Service tile illustrations */
.tile.has-illu { overflow: hidden; position: relative; }

.tile-illu {
    position: absolute; bottom: -15px; right: -15px;
    width: 150px; height: 150px;
    opacity: 0.15;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none; z-index: 0;
}

.tile-illu svg { width: 100%; height: 100%; display: block; }

.tile-illu svg path,
.tile-illu svg circle,
.tile-illu svg rect,
.tile-illu svg line,
.tile-illu svg ellipse {
    stroke: var(--green); fill: none;
    stroke-width: 1.8;
    stroke-linecap: round; stroke-linejoin: round;
}

.tile.has-illu:hover .tile-illu {
    opacity: 0.35;
    transform: translate(-8px, -8px) rotate(-4deg) scale(1.06);
}

.tile.has-illu > *:not(.tile-illu) { position: relative; z-index: 1; }
.tile-fullservice.has-illu .tile-illu { opacity: 0.2; }
.tile-fullservice.has-illu:hover .tile-illu { opacity: 0.4; }

@media (max-width: 720px) {
    .tile-illu { width: 110px; height: 110px; }
}

/* Krankenkassen-Info Block */
.kk-info {
    margin: 28px 0 32px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(45, 122, 79, 0.06) 0%, rgba(45, 122, 79, 0.02) 100%);
    border: 1px solid rgba(45, 122, 79, 0.22);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.kk-info::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(45, 122, 79, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.kk-badge-row {
    display: flex; flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-bottom: 20px;
    position: relative;
}

.kk-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--green); color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem; font-weight: 700;
    padding: 5px 14px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 0.08em;
}

.kk-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700; color: var(--text);
    letter-spacing: -0.3px;
}

.kk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px; margin-bottom: 18px;
    position: relative;
}

.kk-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 18px 20px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.kk-card:hover { border-color: rgba(45,122,79,0.35); transform: translateY(-2px); }

.kk-card--mid {
    border-color: rgba(45, 122, 79, 0.28);
    background: linear-gradient(180deg, rgba(45, 122, 79, 0.05) 0%, var(--surface) 100%);
}

.kk-icon {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem; font-weight: 700;
    color: var(--green); text-transform: uppercase;
    letter-spacing: 0.06em; margin-bottom: 8px;
}

.kk-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: var(--text); margin-bottom: 6px;
}

.kk-text { font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }

.kk-disclaimer {
    font-size: 0.88rem; color: var(--text-mid); line-height: 1.6;
    margin: 0; padding-top: 14px;
    border-top: 1px solid var(--border);
    position: relative;
}
.kk-disclaimer strong { color: var(--green-deep); }

@media (max-width: 720px) {
    .kk-info { padding: 22px 18px; }
    .kk-grid { grid-template-columns: 1fr; }
}

/* Bottom CTA */
.tile-cta-bottom {
    grid-column: span 4;
    background: linear-gradient(135deg, #268c83 0%, #3abcb1 50%, #268c83 100%);
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

.tile-cta-bottom::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(232, 133, 15, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800; letter-spacing: -0.5px;
    color: white; margin: 4px 0 8px; line-height: 1.15;
}

.cta-text { color: rgba(255, 255, 255, 0.9); font-size: 1rem; line-height: 1.55; margin: 0; max-width: 540px; }

.cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

.btn-white-solid { background: #ffffff; color: var(--green-deep); border-color: #ffffff; }
.btn-white-solid:hover { background: #f0f8f4; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.btn-outline-light { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(10px); }
.btn-outline-light:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }

.tile-label-on-dark { color: rgba(255,255,255,0.8) !important; }
.tile-label-on-dark::before { background: rgba(255,255,255,0.6) !important; }

.seo-closing { margin-top: 24px; }
.google-rezensionen-label { color: var(--text-mid); font-size: 0.9rem; font-weight: 500; margin-left: 6px; }
.hero-content { position: relative; }
.hero-connector { color: var(--text-mid); font-style: italic; }

@media (max-width: 900px) {
    .tile-cta-bottom { grid-column: span 2; }
    .cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .cta-buttons { width: 100%; }
    .cta-buttons .btn { flex: 1; justify-content: center; }
}

@media (max-width: 600px) {
    .tile-cta-bottom { grid-column: span 1; }
    .cta-buttons .btn { width: 100%; flex: none; }
}

/* Cookie Consent */
.cookie-banner {
    position: fixed; bottom: 20px; left: 20px; right: 20px;
    max-width: 560px; margin: 0 auto;
    background: var(--surface);
    border: 1px solid rgba(45, 122, 79, 0.3);
    border-radius: var(--radius-lg); padding: 24px 28px;
    box-shadow: 0 0 0 1px rgba(45,122,79,0.1), 0 20px 60px rgba(0,0,0,0.12);
    z-index: 10000;
    transform: translateY(calc(100% + 40px));
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    display: none;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--text); margin: 0 0 8px; display: flex; align-items: center; gap: 8px; }
.cookie-banner p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.55; margin: 0 0 16px; }
.cookie-banner p a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btn { flex: 1; min-width: 120px; padding: 11px 18px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.88rem; cursor: pointer; border: 1px solid transparent; transition: all 0.2s ease; text-align: center; }
.cookie-btn-accept { background: var(--green); color: white; border-color: var(--green-light); }
.cookie-btn-accept:hover { background: var(--green-light); transform: translateY(-1px); }
.cookie-btn-decline { background: transparent; color: var(--text-mid); border-color: var(--border-hover); }
.cookie-btn-decline:hover { color: var(--text); border-color: var(--green); background: rgba(45,122,79,0.06); }

.cookie-reopen {
    position: fixed; bottom: 28px; left: 28px; z-index: 9998;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--surface); border: 1px solid var(--border-hover);
    color: var(--text-mid); display: none; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1); transition: all 0.25s ease;
}
.cookie-reopen.visible { display: flex; }
.cookie-reopen:hover { color: var(--text); border-color: var(--green); box-shadow: 0 4px 20px rgba(45,122,79,0.2); }

@media (max-width: 600px) {
    .cookie-banner { bottom: 12px; left: 12px; right: 12px; padding: 20px; }
    .cookie-actions { flex-direction: column; }
    .cookie-btn { width: 100%; }
    .cookie-reopen { bottom: 20px; left: 20px; width: 38px; height: 38px; }
}

/* ── Cookie Details / Einstellungen ── */
.cookie-details {
    border-top: 1px solid var(--border);
    margin: 12px 0;
    padding-top: 14px;
}

.cookie-category {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 8px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.cookie-category strong {
    font-size: 0.88rem;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}

.cookie-category p {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.45;
}

.cookie-toggle-fixed {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    background: rgba(58,188,177,0.1);
    border: 1px solid rgba(58,188,177,0.3);
    border-radius: 100px;
    padding: 3px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 42px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0; height: 0;
    position: absolute;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 100px;
    transition: background 0.25s ease;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px; width: 18px;
    left: 3px; bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.25s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--green);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(18px);
}

/* Settings button */
.cookie-btn-settings {
    background: transparent;
    color: var(--text-mid);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 0 0 auto;
}
.cookie-btn-settings:hover {
    color: var(--text);
    border-color: var(--green);
    background: rgba(58,188,177,0.06);
}

/* Make banner slightly wider for 3 buttons */
.cookie-banner {
    max-width: 600px;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .cookie-btn-settings { width: 100%; }
}

/* ── SITE NAVBAR ── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(58,188,177,0.08);
    margin: -20px -20px 0 -20px;
}

.site-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img { display: block; }

.nav-logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-icon {
    width: 38px; height: 38px;
    background: var(--green);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem; color: white;
}

.nav-logo span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green);
    color: white;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 9px 18px;
    border-radius: 100px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.nav-phone:hover {
    background: var(--green-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(58,188,177,0.3);
}

.nav-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--text-mid);
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 18px;
    border-radius: 100px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    white-space: nowrap;
}
.nav-wa:hover {
    border-color: #25D366;
    color: #25D366;
    background: rgba(37,211,102,0.06);
}

/* Marquee margin fix with navbar */
.top-marquee {
    margin-top: 0;
}

/* Hero no longer needs logo space */
.hero-tile {
    justify-content: center;
    padding-top: 48px;
}

@media (max-width: 600px) {
    .site-nav { margin: -12px -12px 0 -12px; }
    .site-nav-inner { padding: 10px 16px; }
    .nav-phone { font-size: 0.82rem; padding: 8px 14px; }
    .nav-wa { display: none; }
    .nav-logo img { height: 42px; }
}

@media (max-width: 400px) {
    .nav-phone span { display: none; }
}
