/* ================================================
   INDEX � MODERN DESIGN v4
   Sichtbare Cards, Animationen, Bubbles, Sektionen
   ================================================ */

/* ---- KEIN HORIZONTALES SCROLLEN ---- */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ---- PAGE BACKGROUND ---- */
body {
    background-color: #c8e6c9;
    background-image:
        radial-gradient(ellipse 120% 90% at -10% -10%, rgba(56,142,60,0.7) 0%, transparent 45%),
        radial-gradient(ellipse 100% 80% at 110% 5%, rgba(27,94,32,0.6) 0%, transparent 45%),
        radial-gradient(ellipse 80% 70% at 10% 110%, rgba(76,175,80,0.55) 0%, transparent 45%),
        radial-gradient(ellipse 70% 60% at 90% 95%, rgba(46,125,50,0.5) 0%, transparent 45%),
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(104,159,56,0.2) 0%, transparent 60%),
        linear-gradient(135deg, #a5d6a7 0%, #c8e6c9 35%, #dcedc8 65%, #b2dfdb 100%);
    background-attachment: fixed;
}

/* Animierte Hintergrund-Blobs */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse 50% 40% at 25% 30%, rgba(56,142,60,0.3) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 75% 70%, rgba(27,94,32,0.25) 0%, transparent 60%);
    animation: bgBlob 12s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes bgBlob {
    0%   { transform: scale(1) translate(0, 0); opacity: 1; }
    50%  { transform: scale(1.15) translate(20px, -15px); opacity: 0.7; }
    100% { transform: scale(0.9) translate(-15px, 20px); opacity: 0.9; }
}

/* ---- HERO ---- */
.hero {
    position: relative;
    overflow: hidden;
    height: 480px;
    min-height: 380px;
    max-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76,175,80,0.4) 0%, transparent 70%);
    top: -80px; left: -100px;
    filter: blur(70px);
    pointer-events: none;
    animation: blobFloat 8s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27,94,32,0.3) 0%, transparent 70%);
    bottom: -60px; right: -80px;
    filter: blur(70px);
    pointer-events: none;
    animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(28px,-18px) scale(1.06); }
    66%      { transform: translate(-18px,14px) scale(0.96); }
}

/* Bubbles */
.hero-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-bubbles span {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    animation: bubbleRise linear infinite;
}
.hero-bubbles span:nth-child(1) { width:55px;  height:55px;  left:8%;   animation-duration:13s; animation-delay:0s; }
.hero-bubbles span:nth-child(2) { width:28px;  height:28px;  left:22%;  animation-duration:9s;  animation-delay:2s; }
.hero-bubbles span:nth-child(3) { width:75px;  height:75px;  left:38%;  animation-duration:15s; animation-delay:1s; }
.hero-bubbles span:nth-child(4) { width:18px;  height:18px;  left:58%;  animation-duration:8s;  animation-delay:4s; }
.hero-bubbles span:nth-child(5) { width:45px;  height:45px;  left:72%;  animation-duration:12s; animation-delay:0.5s; }
.hero-bubbles span:nth-child(6) { width:35px;  height:35px;  left:88%;  animation-duration:10s; animation-delay:3s; }
.hero-bubbles span:nth-child(7) { width:22px;  height:22px;  left:4%;   animation-duration:7s;  animation-delay:5s; }
.hero-bubbles span:nth-child(8) { width:65px;  height:65px;  left:52%;  animation-duration:16s; animation-delay:2.5s; }
@keyframes bubbleRise {
    0%   { transform: translateY(0) scale(1);        opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 0.5; }
    100% { transform: translateY(-115vh) scale(1.15); opacity: 0; }
}

/* Hero Glass Card */
.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.13);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 24px;
    padding: 36px 44px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 8px 48px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.1),
                inset 0 1px 0 rgba(255,255,255,0.25);
    animation: heroCardIn 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes heroCardIn {
    from { opacity:0; transform:translateY(44px) scale(0.96); }
    to   { opacity:1; transform:translateY(0) scale(1); }
}
.hero-content h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.hero-content p {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin-bottom: 26px;
    opacity: 0.9;
}

/* ---- GOOGLE RATING ---- */
.google-rating-container {
    background: transparent;
    padding: 32px 20px 0;
    margin-top: 0;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}
.google-rating {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    animation: fadeSlideUp 0.6s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes fadeSlideUp {
    from { opacity:0; transform:translateY(14px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ---- WELCOME CARD ---- */
.welcome {
    background: transparent;
    padding: 48px 20px;
    position: relative;
    overflow: hidden;
}
.welcome .container {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
    border-radius: 24px;
    padding: 48px 52px;
    box-shadow: 0 12px 48px rgba(46,125,50,0.25), 0 4px 16px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
}
.welcome .container::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    top: -100px; right: -80px;
    pointer-events: none;
}
.welcome .container::after {
    content: '';
    position: absolute;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    bottom: -60px; left: -40px;
    pointer-events: none;
}
.welcome h2 {
    position: relative;
    z-index: 1;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 16px;
}
.welcome p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ---- PORTRAIT SECTION 1 � Wei�e Card auf grauem BG ---- */
.idx-section-white {
    background: transparent;
    padding: 40px 20px;
    position: relative;
}
.idx-section-white .container {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 52px 56px;
    box-shadow: 0 8px 40px rgba(56,142,60,0.12), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 1200px;
}
.idx-section-white .container::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,142,60,0.05) 0%, transparent 70%);
    top: -80px; right: -60px;
    pointer-events: none;
}

/* ---- PORTRAIT SECTION 2 � Gr�ne Card auf grauem BG ---- */
.idx-section-gray {
    background: transparent;
    padding: 40px 20px;
    position: relative;
}
.idx-section-gray .container {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    border-radius: 28px;
    padding: 52px 56px;
    box-shadow: 0 8px 40px rgba(56,142,60,0.10), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #c8e6c9;
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 1200px;
}
.idx-section-gray .container::after {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,142,60,0.08) 0%, transparent 70%);
    bottom: -70px; left: -50px;
    pointer-events: none;
}

/* Bleaching Section */
.idx-bleaching-section {
    background: transparent;
    padding: 40px 20px;
}
.idx-bleaching-section .container {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    overflow: visible !important;
}

/* ---- SERVICES � Dark Green Card ---- */
.services {
    background: transparent;
    padding: 40px 20px;
    position: relative;
}
.services > .container {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 60%, #33691e 100%);
    border-radius: 28px;
    padding: 52px 48px;
    box-shadow: 0 12px 48px rgba(46,125,50,0.25), 0 4px 16px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    position: relative;
    max-width: 1200px;
}
.services > .container::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.services h2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    position: relative;
    z-index: 1;
}

/* Service Cards auf dunklem BG */
.service-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.4s ease,
                background 0.3s ease;
    backdrop-filter: blur(4px);
}
.service-card h3 {
    color: #fff;
    font-size: 1.1rem;
}
.service-card p {
    color: rgba(255,255,255,0.72);
}
.service-card::before {
    background: linear-gradient(90deg, #4caf50, #388e3c) !important;
}
.service-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(56,142,60,0.25), 0 4px 16px rgba(0,0,0,0.2);
}
.services .btn-secondary {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    box-shadow: none;
}
.services .btn-secondary:hover {
    background: rgba(255,255,255,0.18);
}

/* ---- DR. YEBOAH PORTRAIT (3. Portrait) ---- */
.idx-section-white:last-of-type .container {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border: 1px solid #c8e6c9;
    box-shadow: 0 8px 40px rgba(56,142,60,0.10);
}

/* ---- IMAGES ---- */
.idx-img {
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.idx-img:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 28px 70px rgba(0,0,0,0.18);
}

/* ---- STAT NUMBERS ---- */
.idx-stat-num {
    background: linear-gradient(135deg, #388e3c, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 6px rgba(56,142,60,0.2));
}

/* ---- BLEACHING BANNER ---- */
.idx-bleaching-inner {
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
    border-radius: 24px;
}
.idx-bleaching-banner:hover .idx-bleaching-inner {
    transform: translateY(-5px) scale(1.005);
    box-shadow: 0 32px 80px rgba(46,125,50,0.4);
}

/* ---- CTA ---- */
.cta {
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129,199,132,0.18) 0%, transparent 65%);
    top: -100px; left: -80px;
    animation: blobFloat 10s ease-in-out infinite;
    pointer-events: none;
}
.cta::after {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76,175,80,0.12) 0%, transparent 65%);
    bottom: -70px; right: -60px;
    animation: blobFloat 12s ease-in-out infinite reverse;
    pointer-events: none;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
                transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity:1; transform:translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
                transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible { opacity:1; transform:translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
                transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible { opacity:1; transform:translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Wave Trenner */
.section-wave { display:none; } /* Waves deaktiviert � Cards stattdessen */

/* ---- MOBILE ---- */
@media (max-width: 768px) {
    /* Kein horizontales Scrollen durch Bubbles/Blobs */
    .hero,
    .welcome,
    .idx-section-white,
    .idx-section-gray,
    .idx-bleaching-section,
    .services,
    .cta {
        overflow-x: hidden;
    }

    /* Bubbles auf Mobile kleiner + keine Seiten�berschreitung */
    .hero::before { width:200px; height:200px; left:-50px; }
    .hero::after  { width:160px; height:160px; right:-50px; }

    .hero { height:340px; min-height:280px; max-height:420px; }
    .hero-content {
        padding: 26px 22px;
        border-radius: 18px;
        width: 93%;
    }
    .hero-content h1 { font-size:1.5rem; }
    .hero-content p  { font-size:0.95rem; margin-bottom:20px; }

    .welcome,
    .idx-section-white,
    .idx-section-gray,
    .idx-bleaching-section,
    .services {
        padding: 20px 14px;
    }

    .welcome .container,
    .idx-section-white .container,
    .idx-section-gray .container,
    .services > .container {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .services .service-grid {
        grid-template-columns: 1fr;
    }

    /* Pseudo-Blobs auf Mobile nicht seitlich rausgehen lassen */
    .welcome .container::before,
    .welcome .container::after,
    .idx-section-white .container::before,
    .idx-section-gray .container::after,
    .services > .container::before {
        display: none;
    }
}


/* =============================================
   SOMMER BANNER � reinfliegen von unten
   ============================================= */
.sommer-banner {
    position: fixed;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9000;
    width: calc(100% - 32px);
    max-width: 860px;
    transition: bottom 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.sommer-banner--visible {
    bottom: 24px;
    pointer-events: all;
}
.sommer-banner--hidden {
    bottom: -200px !important;
    pointer-events: none;
}

.sommer-banner-inner {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #43a047 100%);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 40px rgba(46,125,50,0.4), 0 2px 12px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}
.sommer-banner-inner::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    top: -60px; right: 120px;
    pointer-events: none;
}

.sommer-banner-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    animation: sunSpin 6s linear infinite;
}
@keyframes sunSpin {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.sommer-banner-text {
    flex: 1;
    min-width: 0;
}
.sommer-banner-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
}
.sommer-banner-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.82);
    margin-top: 3px;
}

.sommer-banner-btns {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.sommer-banner-btn {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 9px 18px;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.sommer-banner-btn:hover {
    transform: translateY(-2px);
}
.sommer-banner-btn--white {
    background: #fff;
    color: #2e7d32;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.sommer-banner-btn--outline {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}
.sommer-banner-btn--outline:hover {
    background: rgba(255,255,255,0.2);
}
.sommer-banner-btn--termin {
    background: #fff;
    color: #2e7d32;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-weight: 800;
    border: 2px solid #fff;
}

.sommer-banner-close {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.sommer-banner-close:hover {
    background: rgba(255,255,255,0.25);
}

/* Mobile */
@media (max-width: 768px) {
    .sommer-banner { width: calc(100% - 24px); }
    .sommer-banner--visible {
        bottom: max(24px, calc(24px + env(safe-area-inset-bottom)));
    }
    .sommer-banner-inner {
        flex-wrap: wrap;
        padding: 16px 18px;
        gap: 10px;
    }
    .sommer-banner-icon { font-size: 1.8rem; }
    .sommer-banner-title { font-size: 0.9rem; white-space: normal; }
    .sommer-banner-sub { font-size: 0.78rem; }
    .sommer-banner-btns {
        width: 100%;
        flex-wrap: wrap;
        gap: 6px;
    }
    .sommer-banner-btn {
        flex: 0 0 auto;
        font-size: 0.78rem;
        padding: 7px 14px;
    }
    .sommer-banner-close { position: absolute; top: 10px; right: 10px; }
    .sommer-banner-inner { position: relative; }
}


/* =============================================
   L�CHELN SECTION
   ============================================= */
.idx-laecheln-section {
    background: transparent;
    padding: 40px 20px;
}
.idx-laecheln-section .container {
    background: rgba(255,255,255,0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 52px 48px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #e8ecf2;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}
.idx-laecheln-section .container::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,142,60,0.05) 0%, transparent 70%);
    top: -100px; right: -80px;
    pointer-events: none;
}

.idx-laecheln-header {
    text-align: center;
    margin-bottom: 40px;
}
.idx-laecheln-h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}
.idx-laecheln-sub {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.idx-laecheln-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.idx-laecheln-card {
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    border: 1px solid #e8ecf2;
    border-radius: 20px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.35s ease,
                border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.idx-laecheln-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #4caf50, #388e3c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.idx-laecheln-card:hover::before { transform: scaleX(1); }
.idx-laecheln-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(56,142,60,0.14), 0 4px 12px rgba(0,0,0,0.06);
    border-color: #c8e6c9;
}

.idx-laecheln-card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1;
}
.idx-laecheln-card-body { flex: 1; }
.idx-laecheln-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.idx-laecheln-card-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}
.idx-laecheln-card-arrow {
    margin-top: 18px;
    font-size: 1.1rem;
    color: #388e3c;
    font-weight: 700;
    transition: transform 0.2s ease;
}
.idx-laecheln-card:hover .idx-laecheln-card-arrow {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .idx-laecheln-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .idx-laecheln-grid { grid-template-columns: 1fr; }
    .idx-laecheln-section .container { padding: 28px 20px; border-radius: 18px; }
    .idx-laecheln-card { padding: 22px 18px; }
}


/* =============================================
   CTA SECTION � ANIMIERT
   ============================================= */
.cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
    padding: 80px 20px;
}

/* Bubbles */
.cta-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-bubbles span {
    position: absolute;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    animation: bubbleRise linear infinite;
}
.cta-bubbles span:nth-child(1) { width:80px;  height:80px;  left:5%;  animation-duration:14s; animation-delay:0s; }
.cta-bubbles span:nth-child(2) { width:40px;  height:40px;  left:20%; animation-duration:10s; animation-delay:2s; }
.cta-bubbles span:nth-child(3) { width:60px;  height:60px;  left:50%; animation-duration:12s; animation-delay:1s; }
.cta-bubbles span:nth-child(4) { width:30px;  height:30px;  left:70%; animation-duration:9s;  animation-delay:3s; }
.cta-bubbles span:nth-child(5) { width:50px;  height:50px;  left:88%; animation-duration:11s; animation-delay:0.5s; }

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

/* Live-Dot */
.cta-icon-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}
.cta-pulse-dot {
    width: 10px;
    height: 10px;
    background: #69f0ae;
    border-radius: 50%;
    display: inline-block;
    animation: ctaPulse 1.8s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(105,240,174,0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(105,240,174,0); }
}
.cta-live-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: #69f0ae;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* �berschrift */
.cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}
.cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.cta-btn-main {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #2e7d32 !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
    animation: ctaBtnPop 0.6s 0.3s cubic-bezier(0.34,1.56,0.64,1) both;
}
.cta-btn-main:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
@keyframes ctaBtnPop {
    from { opacity:0; transform: scale(0.85); }
    to   { opacity:1; transform: scale(1); }
}

.cta-btn-phone {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.35);
    transition: background 0.3s, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.cta-btn-phone:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-4px);
}

/* Trust-Zeile */
.cta-trust-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
}
.cta-trust-row span::before { content: ''; }

/* Notfall Badge */
.cta-notfall-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.cta-notfall-badge {
    background: #d32f2f;
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    animation: notfallPulse 2s ease-in-out infinite;
    white-space: nowrap;
}
@keyframes notfallPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(211,47,47,0.5); }
    50%       { box-shadow: 0 0 0 8px rgba(211,47,47,0); }
}
.cta-notfall-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}
.cta-notfall-text strong {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .cta { padding: 60px 16px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-btn-main,
    .cta-btn-phone { width: 100%; justify-content: center; }
    .cta-trust-row { flex-direction: column; gap: 8px; align-items: center; }
}


/* =============================================
   HERO � SPLIT LAYOUT
   ============================================= */
.hero-content--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    text-align: left;
    max-width: 960px;
    width: 94%;
    padding: 40px 48px;
}

.hero-left h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #ffffff 0%, #c8e6c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-left p {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    margin-bottom: 24px;
    opacity: 0.88;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

/* Trennlinie zwischen links und rechts */
.hero-right {
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 32px;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    font-weight: 500;
    animation: checkIn 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-checklist li:nth-child(1) { animation-delay: 0.2s; }
.hero-checklist li:nth-child(2) { animation-delay: 0.35s; }
.hero-checklist li:nth-child(3) { animation-delay: 0.5s; }
.hero-checklist li:nth-child(4) { animation-delay: 0.65s; }
.hero-checklist li:nth-child(5) { animation-delay: 0.8s; }
.hero-checklist li:nth-child(6) { animation-delay: 0.95s; }

@keyframes checkIn {
    from { opacity:0; transform: translateX(20px); }
    to   { opacity:1; transform: translateX(0); }
}

.hero-check {
    width: 22px;
    height: 22px;
    background: rgba(56,142,60,0.3);
    border: 1px solid rgba(56,142,60,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #a5d6a7;
    flex-shrink: 0;
}

/* Mobile: nur linker Text, Checklist ausblenden */
@media (max-width: 640px) {
    .hero {
        height: auto;
        min-height: 320px;
        max-height: none;
        padding: 40px 0;
    }
    .hero-content--split {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 28px 24px;
        text-align: center;
        width: 92%;
    }
    .hero-right {
        display: none;
    }
    .hero-left h1 {
        font-size: 1.6rem;
        -webkit-text-fill-color: #fff;
        background: none;
    }
    .hero-left p {
        font-size: 0.95rem;
    }
    .hero-left .btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ---- NEUPATIENT BLASE (fest im Seiteninhalt) ---- */
@keyframes npBlasenIn {
    0%   { opacity: 0; transform: translateY(30px) scale(0.9); }
    70%  { transform: translateY(-4px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes npPulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(105,240,174,0.7); }
    50%       { box-shadow: 0 0 0 10px rgba(105,240,174,0); }
}
@keyframes npBadgePop {
    0%   { transform: scale(0.7); opacity: 0; }
    70%  { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.np-section {
    padding: 32px 20px;
    display: flex;
    justify-content: center;
    background: transparent;
}

.np-blase {
    width: 300px;
    background: linear-gradient(145deg, #0d3b12 0%, #1b5e20 45%, #2e7d32 100%);
    border-radius: 24px;
    padding: 28px 24px 24px;
    box-shadow:
        0 20px 60px rgba(27,94,32,0.5),
        0 8px 24px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff !important;
    overflow: hidden;
    position: relative;
    animation: npBlasenIn 0.8s cubic-bezier(0.22,1,0.36,1) both;
}

/* Glanz oben */
.np-blase::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

/* Dekokreis hinten */
.np-blase::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    bottom: -60px; right: -40px;
    pointer-events: none;
}

.np-blase-pulse {
    width: 10px; height: 10px;
    background: #69f0ae;
    border-radius: 50%;
    margin-bottom: 12px;
    animation: npPulseDot 1.8s ease-in-out infinite;
    position: relative; z-index: 1;
}

.np-blase-badge {
    display: inline-block;
    background: rgba(105,240,174,0.15);
    border: 1px solid rgba(105,240,174,0.4);
    color: #69f0ae;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 12px;
    animation: npBadgePop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.4s both;
    position: relative; z-index: 1;
}

.np-blase-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 8px;
    position: relative; z-index: 1;
}

.np-blase-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}

.np-blase-btns {
    display: flex;
    flex-direction: column;
    gap: 9px;
    position: relative; z-index: 1;
}

.np-blase-btn-main {
    background: #fff;
    color: #1b5e20 !important;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.2s cubic-bezier(0.22,1,0.36,1), box-shadow 0.2s;
}
.np-blase-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.np-blase-btn-tel {
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: background 0.2s, transform 0.2s;
}
.np-blase-btn-tel:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .np-blase {
        width: 100%;
        max-width: 320px;
    }
}

/* ---- UNDER-IMAGE BADGE (In guten H�nden) ---- */
.igh-under-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 14px 18px;
    margin-top: 14px;
    box-shadow: 0 4px 16px rgba(56,142,60,0.10);
}
.igh-under-badge .idx-badge-icon {
    width: 40px;
    height: 40px;
    background: #e8f5e9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.igh-under-badge .idx-badge-icon svg {
    width: 20px;
    height: 20px;
}
.igh-under-badge .idx-badge-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
}
.igh-under-badge .idx-badge-sub {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

/* ---- IN GUTEN H�NDEN � Bild 25% gr��er auf Desktop ---- */
@media (min-width: 769px) {
    .igh-wrap {
        grid-column: 1;
    }
    /* Sektion bekommt ein breiteres Bild-zu-Text Verh�ltnis */
    .igh-section .idx-two-col {
        grid-template-columns: 1.35fr 1fr;
        align-items: start;
    }
    .igh-wrap .idx-img {
        width: 100%;
        max-width: 100%;
    }
}

/* ================================================================
   INSTAGRAM SECTION
   ================================================================ */

@keyframes igBlasenIn {
    0%   { opacity: 0; transform: translateY(30px) scale(0.9); }
    70%  { transform: translateY(-4px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes igPulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(225,48,108,0.7); }
    50%       { box-shadow: 0 0 0 10px rgba(225,48,108,0); }
}
@keyframes igBadgePop {
    0%   { transform: scale(0.7); opacity: 0; }
    70%  { transform: scale(1.1); }
    100% { transform: scale(1);   opacity: 1; }
}
@keyframes igSkeletonShimmer {
    0%   { background-position: -400px 0; }
    100% { background-position:  400px 0; }
}

.ig-section {
    padding: 48px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* -- Blase -- */
.ig-blase {
    width: 260px;
    flex-shrink: 0;
    background: linear-gradient(145deg, #1a0a2e 0%, #6a1a4c 50%, #c13584 100%);
    border-radius: 24px;
    padding: 28px 24px 24px;
    box-shadow:
        0 20px 60px rgba(193,53,132,0.45),
        0 8px 24px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    overflow: hidden;
    position: relative;
    animation: igBlasenIn 0.8s cubic-bezier(0.22,1,0.36,1) both;
}
.ig-blase::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}
.ig-blase::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    bottom: -60px; right: -40px;
    pointer-events: none;
}

.ig-blase-pulse {
    width: 10px; height: 10px;
    background: #f77737;
    border-radius: 50%;
    margin-bottom: 12px;
    animation: igPulseDot 1.8s ease-in-out infinite;
    position: relative; z-index: 1;
}

.ig-blase-badge {
    display: inline-block;
    background: rgba(247,119,55,0.2);
    border: 1px solid rgba(247,119,55,0.5);
    color: #f77737;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 12px;
    animation: igBadgePop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.4s both;
    position: relative; z-index: 1;
}

.ig-blase-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 8px;
    position: relative; z-index: 1;
}

.ig-blase-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}

.ig-blase-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #c13584 !important;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.2s cubic-bezier(0.22,1,0.36,1), box-shadow 0.2s;
    position: relative; z-index: 1;
}
.ig-blase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* -- Feed Grid -- */
.ig-feed-wrap { flex: 1; min-width: 280px; max-width: 680px; }

.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    border-radius: 16px;
    overflow: hidden;
}

.ig-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
    background: #f0f0f0;
}
.ig-post img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.ig-post:hover img { transform: scale(1.08); }

.ig-post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.3s;
}
.ig-post:hover .ig-post-overlay { background: rgba(0,0,0,0.45); }

.ig-post-stats {
    display: flex;
    gap: 12px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s;
}
.ig-post:hover .ig-post-stats { opacity: 1; }

.ig-video-icon {
    color: #fff;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.ig-post:hover .ig-video-icon { opacity: 1; }

/* Skeleton */
.ig-skeleton {
    aspect-ratio: 1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 400px 100%;
    animation: igSkeletonShimmer 1.4s ease-in-out infinite;
}

/* Mehr-Button */
.ig-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #c13584, #e1306c, #f77737);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(193,53,132,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ig-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(193,53,132,0.45);
}

@media (max-width: 700px) {
    .ig-section { flex-direction: column; align-items: center; gap: 24px; }
    .ig-blase   { width: 100%; max-width: 320px; }
    .ig-feed-wrap { width: 100%; }
}

/* -- Instagram Slider (ersetzt Grid) -------------------------- */
.ig-section {
    max-width: 700px !important;
    gap: 28px !important;
    align-items: center !important;
}

.ig-blase {
    width: 220px !important;
    flex-shrink: 0;
}

.ig-feed-wrap {
    flex: 1;
    min-width: 0;
    max-width: 280px;
}

.ig-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ig-slider {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #1a0a2e;
}

.ig-post--single {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}
.ig-post--single img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.ig-post--single:hover img { transform: scale(1.05); }

.ig-skeleton-single {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(90deg, #2a1a3e 25%, #3a2a4e 50%, #2a1a3e 75%);
    background-size: 400px 100%;
    animation: igSkeletonShimmer 1.4s ease-in-out infinite;
    border-radius: 16px;
}

/* Pfeile */
.ig-arrow {
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 50%;
    width: 36px; height: 36px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}
.ig-arrow:hover { background: rgba(193,53,132,0.6); border-color: #c13584; }

/* Dots */
.ig-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}
.ig-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(193,53,132,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.ig-dot--active {
    background: #c13584;
    transform: scale(1.3);
}

@media (max-width: 600px) {
    .ig-section { flex-direction: column !important; align-items: center !important; }
    .ig-blase   { width: 100% !important; max-width: 280px !important; }
    .ig-feed-wrap { width: 100%; max-width: 280px; }
}

/* ================================================================
   BLASEN SEKTION � Neupatient + Instagram nebeneinander
   ================================================================ */

.blasen-section {
    padding: 32px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: transparent;
}

/* Instagram-Blase: gleicher Stil wie np-blase aber Instagram-Farben */
.ig-blase {
    width: 300px;
    background: linear-gradient(145deg, #0d3b12 0%, #1b5e20 45%, #2e7d32 100%);
    border-radius: 24px;
    padding: 28px 24px 24px;
    box-shadow:
        0 20px 60px rgba(27,94,32,0.5),
        0 8px 24px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    overflow: hidden;
    position: relative;
    animation: npBlasenIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}
.ig-blase::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}
.ig-blase::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    bottom: -60px; right: -40px;
    pointer-events: none;
}

.ig-blase-pulse {
    width: 10px; height: 10px;
    background: #69f0ae;
    border-radius: 50%;
    margin-bottom: 12px;
    animation: npPulseDot 1.8s ease-in-out infinite;
    position: relative; z-index: 1;
}

.ig-blase-badge {
    display: inline-block;
    background: rgba(105,240,174,0.15);
    border: 1px solid rgba(105,240,174,0.4);
    color: #69f0ae;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 12px;
    animation: npBadgePop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.55s both;
    position: relative; z-index: 1;
}

.ig-blase-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 8px;
    position: relative; z-index: 1;
}

.ig-blase-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}

.ig-blase-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #1b5e20 !important;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.2s cubic-bezier(0.22,1,0.36,1), box-shadow 0.2s;
    position: relative; z-index: 1;
}
.ig-blase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

@media (max-width: 680px) {
    .blasen-section { flex-direction: column; align-items: center; }
    .ig-blase { width: 100%; max-width: 320px; }
}

/* ================================================================
   NEWS BOARD � Startseite
   ================================================================ */

.news-board {
    width: 100%;
    padding: 0 20px 8px;
    max-width: 700px;
    margin: 0 auto;
}

.news-board-inner {
    background: linear-gradient(135deg, #0d3b12 0%, #1b5e20 100%);
    border-radius: 20px;
    padding: 20px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(27,94,32,0.35);
    animation: npBlasenIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

.news-board-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #69f0ae;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-board-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-board-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.news-board-emoji {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1.3;
}

.news-board-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: #fff;
    margin-bottom: 3px;
}

.news-board-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

/* -- Admin: News Items -- */
.news-admin-item {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.news-admin-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.news-item-emoji {
    width: 52px;
    padding: 8px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
    font-family: inherit;
}

.news-item-title {
    flex: 1;
    padding: 8px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
}
.news-item-title:focus, .news-item-emoji:focus { outline: none; border-color: #388e3c; }

.news-item-text {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: inherit;
    resize: vertical;
    box-sizing: border-box;
    line-height: 1.5;
}
.news-item-text:focus { outline: none; border-color: #388e3c; }

.news-del-btn {
    background: #ffebee;
    border: none;
    color: #d32f2f;
    border-radius: 8px;
    width: 34px; height: 34px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.2s;
}
.news-del-btn:hover { background: #d32f2f; color: #fff; }

/* -- Blasen-�berschrift -- */
.blasen-headline-wrap {
    text-align: center;
    padding: 36px 20px 0;
    width: 100%;
}
.blasen-headline {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.blasen-headline::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #69f0ae, #fff);
    border-radius: 2px;
    margin: 8px auto 0;
}

@media (max-width: 680px) {
    .blasen-section {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 24px 16px;
    }
    .np-blase,
    .ig-blase {
        width: 100%;
        max-width: 340px;
    }
    .blasen-headline-wrap {
        padding: 24px 16px 0;
    }
}