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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
    transition: opacity 0.8s ease-in-out;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    cursor: pointer;
    font-size: 2rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.2s ease;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
}

.language-switcher:hover {
    transform: scale(1.1);
}

.language-switcher:active {
    transform: scale(0.95);
}

/* Smooth cross-fade animation for language changes */
.transitioning {
    opacity: 0.3;
}

/* Animated Background */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(-45deg, #f0f9ff, #ffffff, #fef3f2, #e0f2fe);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

/* Organic Blobs */
.blob-left {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 30%, rgba(26,109,139,0.15) 0%, rgba(26,109,139,0.05) 50%, transparent 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: 50%;
    left: 5%;
    transform: translate(-20%, -50%);
    animation: blobFloat 20s ease-in-out infinite;
    filter: blur(40px);
    z-index: 0;
}

.blob-right {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at 70% 70%, rgba(230,46,18,0.12) 0%, rgba(230,46,18,0.04) 50%, transparent 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 50%;
    right: 5%;
    transform: translate(20%, -50%);
    animation: blobFloat 25s ease-in-out infinite reverse;
    filter: blur(50px);
    z-index: 0;
}

.blob-center {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26,109,139,0.08) 0%, transparent 70%);
    border-radius: 50% 40% 60% 40% / 50% 60% 40% 50%;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: blobFloat 18s ease-in-out infinite;
    filter: blur(35px);
    z-index: 0;
}

@keyframes blobFloat {
    0%, 100% { 
        transform: translate(var(--tx, -20%), var(--ty, -50%)) rotate(0deg) scale(1);
    }
    33% { 
        transform: translate(calc(var(--tx, -20%) + 30px), calc(var(--ty, -50%) - 40px)) rotate(120deg) scale(1.05);
    }
    66% { 
        transform: translate(calc(var(--tx, -20%) - 30px), calc(var(--ty, -50%) + 40px)) rotate(240deg) scale(0.95);
    }
}

.blob-right {
    --tx: 20%;
    --ty: -50%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content Container */
.hero-content {
    max-width: 600px;
    padding-right: 2rem;
}

/* Hero Title - Blue with Red accent on .kids */
.hero-content h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    
    color: #1a6d8b;
    
    /* Enhanced shadow for depth */
    filter: drop-shadow(0 4px 8px rgba(26, 109, 139, 0.25))
            drop-shadow(0 10px 20px rgba(26, 109, 139, 0.15))
            drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
    
    animation: fadeInUp 0.8s ease-out, titleLive 5s ease-in-out infinite;
    
    position: relative;
    display: inline-block;
}

@keyframes titleLive {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 4px 8px rgba(26, 109, 139, 0.25))
                drop-shadow(0 10px 20px rgba(26, 109, 139, 0.15))
                drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
    }
    25% {
        transform: scale(1.015) rotate(0.5deg);
        filter: drop-shadow(0 6px 12px rgba(26, 109, 139, 0.3))
                drop-shadow(0 14px 28px rgba(26, 109, 139, 0.2))
                drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    }
    50% { 
        transform: scale(1.015) rotate(0deg);
        filter: drop-shadow(0 8px 16px rgba(26, 109, 139, 0.35))
                drop-shadow(0 18px 36px rgba(26, 109, 139, 0.25))
                drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
    }
    75% {
        transform: scale(1.015) rotate(-0.5deg);
        filter: drop-shadow(0 6px 12px rgba(26, 109, 139, 0.3))
                drop-shadow(0 14px 28px rgba(26, 109, 139, 0.2))
                drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    }
}

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

.hero-content .tagline {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.75rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    white-space: pre-line;
    overflow-wrap: break-word;
}

.cta-group {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1a6d8b 0%, #083d5b 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(26, 109, 139, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 109, 139, 0.4);
}

.btn-secondary {
    background: white;
    color: #1a6d8b;
    border: 2px solid #1a6d8b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Logo Animation */
.hero-visual {
    animation: fadeInRight 1s ease-out 0.3s both;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
}

/* Floating Therapy Bubbles - Realistische Seifenblasen mit 3D-Effekt */
.therapy-bubble {
    position: absolute;
    /* Position wird von JavaScript gesetzt (weit ausserhalb Kids) */
    width: 80px;
    height: 80px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;  /* VOR den Kids - Bubbles schweben im Vordergrund! */
    
    /* CSS Custom Properties für organische Bewegung */
    --float-duration: 30s;
    --float-distance-y: 20px;
    --float-distance-x: 15px;
    --fade-delay: 0.5s;
}

.therapy-bubble img {
    width: 100%;
    height: 100%;
    /* Subtiler Konturschatten für Definition - ::after macht den dramatischen 3D-Effekt */
    filter: 
        drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15))           /* Scharfer Konturschatten */
        drop-shadow(0 4px 12px rgba(26, 109, 139, 0.12));   /* Subtiler Brand-Schatten */
}

/* Dramatischer Schatten HINTER der Bubble für starken 3D-Effekt */
.therapy-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;  /* Viel größer als Bubble */
    height: 140%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.35) 0%,      /* Viel intensiver */
        rgba(0, 0, 0, 0.22) 25%,
        rgba(0, 0, 0, 0.12) 50%,
        transparent 75%
    );
    border-radius: 50%;
    filter: blur(25px);  /* Mehr Blur = weicher und größer */
    z-index: -1;
    pointer-events: none;
}

/* Lighting Highlight für Glaseffekt (Ansatz 1) */
.therapy-bubble::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(
        circle, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.3) 30%,
        transparent 60%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

/* Kids Image - dahinter */
.logo-image {
    position: relative;
    z-index: 5;
}

/* Individuelle Bubble-Animationen */
.bubble-1 {
    --fade-delay: 0.5s;
    animation: 
        bubbleFadeIn 1s ease-out var(--fade-delay) forwards,
        bubbleFloat var(--float-duration) ease-in-out calc(var(--fade-delay) + 1s) infinite;
}

.bubble-2 {
    --fade-delay: 0.8s;
    animation: 
        bubbleFadeIn 1s ease-out var(--fade-delay) forwards,
        bubbleFloat var(--float-duration) ease-in-out calc(var(--fade-delay) + 1s) infinite;
}

.bubble-3 {
    --fade-delay: 1.1s;
    animation: 
        bubbleFadeIn 1s ease-out var(--fade-delay) forwards,
        bubbleFloat var(--float-duration) ease-in-out calc(var(--fade-delay) + 1s) infinite;
}

.bubble-4 {
    --fade-delay: 1.4s;
    animation: 
        bubbleFadeIn 1s ease-out var(--fade-delay) forwards,
        bubbleFloat var(--float-duration) ease-in-out calc(var(--fade-delay) + 1s) infinite;
}

/* Fade-In Animation */
@keyframes bubbleFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 0.85;
        transform: scale(1);
    }
}

/* Organische Seifenblasen-Bewegung:
   - Langsames Auf und Ab (wie echte Seifenblasen)
   - Leichtes Seitliches Driften
   - Sanfte Rotation
   - DRAMATISCHE Größen-Variation für 3D-Effekt (0.85-1.2)
*/
@keyframes bubbleFloat {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(var(--float-distance-x), calc(var(--float-distance-y) * -1)) rotate(5deg) scale(1.2);
    }
    50% {
        transform: translate(calc(var(--float-distance-x) * 0.5), calc(var(--float-distance-y) * -1.5)) rotate(0deg) scale(0.85);
    }
    75% {
        transform: translate(calc(var(--float-distance-x) * -0.3), calc(var(--float-distance-y) * -0.8)) rotate(-3deg) scale(1.15);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-visual img {
    width: 100%;
    height: auto;
    max-width: 400px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.08));
    animation: logoPulse 6s ease-in-out infinite;
}

/* Logo image - no transition needed, body fade handles everything */
.logo-image {
    /* Transition removed to prevent conflicts with body fade */
}

@keyframes logoPulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.02);
    }
}

/* Features */
.features {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    position: relative;
}

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

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

.section-header h2 {
    font-size: 3rem;
    color: #e62e12;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: 1.4rem;
    color: #1a1a1a;
    font-weight: 600;
    max-width: 900px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

/* Features Section - Value Proposition Card mit Mesh Gradient */
.features .section-header p {
    max-width: 100%;
    padding: 3rem 2.5rem;
    /* Mesh Gradient - Modern und organisch */
    background: 
        radial-gradient(at 0% 0%, rgba(26,109,139,0.12) 0%, transparent 50%),
        radial-gradient(at 100% 100%, rgba(230,46,18,0.1) 0%, transparent 50%),
        radial-gradient(at 50% 0%, rgba(26,109,139,0.06) 0%, transparent 50%),
        radial-gradient(at 0% 100%, rgba(230,46,18,0.05) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    /* Mehrschichtige Schatten für Tiefe */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.03),
        0 10px 30px rgba(26, 109, 139, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
}

/* Entferne das rotierende Overlay - Mesh Gradient ist dynamisch genug */
.features .section-header p::after {
    display: none;
}

.features .section-header p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,109,139,0.05) 0%, rgba(230,46,18,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.features .section-header p:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #1a6d8b;
}

.features .section-header p:hover::before {
    opacity: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,109,139,0.05) 0%, rgba(230,46,18,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #1a6d8b;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1a6d8b, #083d5b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(26, 109, 139, 0.3);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(26, 109, 139, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Contact */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ef 100%);
}

/* Contact Section Header Card */
.contact .section-header {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    max-width: 650px;
    margin: 0 auto 3rem;
}

.contact .section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,109,139,0.05) 0%, rgba(230,46,18,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.contact .section-header:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #1a6d8b;
}

.contact .section-header:hover::before {
    opacity: 1;
}

.contact .section-header h2 {
    color: #e62e12;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact .section-header p {
    color: #4b5563;
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #374151;
    font-size: 1.05rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #f9fafb;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #1a6d8b;
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 109, 139, 0.1);
    transform: translateY(-2px);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

button {
    width: 100%;
    background: linear-gradient(135deg, #e62e12 0%, #c72510 100%);
    color: white;
    padding: 1.15rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(230, 46, 18, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

button:hover::before {
    left: 100%;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230, 46, 18, 0.4);
}

button:active {
    transform: translateY(-1px);
}

/* Success Message Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
    animation: modalSlide 0.5s ease-out;
    min-width: 400px;
}

.success-modal.show {
    display: block;
}

.success-modal::before {
    content: '✓';
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Overlay for modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.modal-overlay.show {
    display: block;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #083d5b 0%, #052836 100%);
    color: white;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26,109,139,0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.newsletter-section {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-section h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.newsletter-section p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    width: auto;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #fc9e75 0%, #fb8a5b 100%);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #fb8a5b 0%, #fa7642 100%);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.hidden { display: none !important; }

/* Responsive */
@media (max-width: 1200px) {
    .hero-visual img {
        max-width: 350px;
    }
    
    .blob-left, .blob-right {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-header p {
        font-size: 1.2rem;
    }
    
    .features .section-header p {
        padding: 2rem 1.5rem;
    }
    
    .contact .section-header {
        padding: 2rem 1.5rem;
    }
    
    .contact .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-visual {
        order: -1;
        padding-left: 0;
    }
    
    /* Tablet: Smaller bubbles and reduced float distance */
    .therapy-bubble {
        width: 60px;
        height: 60px;
        --float-distance-y: 15px;  /* Minimal für Tablet */
        --float-distance-x: 12px;
    }
    
    .hero-visual img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .success-modal {
        min-width: 300px;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
    
    .blob-left {
        width: 400px;
        height: 400px;
        left: -10%;
    }
    
    .blob-right {
        width: 450px;
        height: 450px;
        right: -10%;
    }
    
    .language-switcher {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .features .section-header p {
        padding: 1.5rem 1.25rem;
    }
    
    .contact .section-header {
        padding: 1.5rem 1.25rem;
    }
    
    .contact .section-header h2 {
        font-size: 1.75rem;
    }
    
    .hero-content .tagline {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .contact-wrapper {
        padding: 2rem;
    }
    
    .hero-visual img {
        max-width: 100%;
    }
    
    /* Mobile: Even smaller bubbles and minimal float distance */
    .therapy-bubble {
        width: 50px;
        height: 50px;
        --float-distance-y: 10px;  /* Extrem minimal für Mobile */
        --float-distance-x: 8px;
    }
    
    .success-modal {
        min-width: 280px;
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .blob-left, .blob-right, .blob-center {
        width: 300px;
        height: 300px;
    }
    
    .language-switcher {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
