:root {
    /* Primary Brand Color - Original Rosa/Pink */
    --primary-pink: #e8588b;
    --primary-pink-dark: #d64176;
    --primary-pink-light: #f089ae;
    
    /* Secondary Cream/Beige Colors */
    --cream-primary: #f7f3e9;
    --cream-dark: #ede7d3;
    --cream-medium: #e4dcbf;
    --cream-light: #faf9f5;
    --cream-accent: #d4c8a8;
    
    /* Supporting Colors */
    --white: #ffffff;
    --black: #2c2825;
    --text-primary: #3d3935;
    --text-secondary: #6b6763;
    --text-light: #8b8884;
    
    /* Additional Colors */
    --success-green: #7fb069;
    --warning-orange: #d4874a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-pink-dark) 0%, var(--primary-pink) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-light) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(44, 40, 37, 0.05);
    --shadow: 0 4px 6px -1px rgba(44, 40, 37, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(44, 40, 37, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(44, 40, 37, 0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--cream-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    min-width: 320px;
}

/* UTILITIES */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    width: 100%;
}

.container-small {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    width: 100%;
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
        padding: 0 3rem;
    }
    .container-small {
        max-width: 1300px;
        padding: 0 3rem;
    }
    .section-container {
        max-width: 1400px;
        padding: 0 3rem;
    }
}


.hero-logo {
    width: 350px;
    height: auto;
    margin: 0rem auto 0rem auto;
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 12px rgba(232, 88, 139, 0.2));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-logo {
        width: 200px;
        margin: 0rem auto 0rem auto;
    }
}

/* DYNAMIC ISLAND NAVBAR */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-container {
    background: rgba(247, 243, 233, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(232, 88, 139, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(44, 40, 37, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.header-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(232, 88, 139, 0.05) 100%);
    border-radius: 50px;
    pointer-events: none;
}

/* Header scrolled state */
header.scrolled .header-container {
    background: rgba(247, 243, 233, 0.95);
    border-color: rgba(232, 88, 139, 0.3);
    box-shadow: 0 12px 40px rgba(44, 40, 37, 0.15);
    transform: scale(0.98);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 2;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (min-width: 1200px) {
    .logo img {
        width: 55px;
        height: 55px;
    }
}

@media (min-width: 1600px) {
    .logo img {
        width: 60px;
        height: 60px;
    }
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Desktop Navigation */
.nav-center {
    display: none;
    position: relative;
    z-index: 2;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(196, 164, 132, 0.2);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-pink);
    background: rgba(232, 88, 139, 0.1);
}

/* Special styling for price calculator CTA in nav */
.nav-price-cta {
    background: var(--gradient-accent) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 20px !important;
    box-shadow: 0 3px 10px rgba(232, 88, 139, 0.3) !important;
}

.nav-price-cta:hover {
    background: var(--primary-pink-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(232, 88, 139, 0.4) !important;
}

.nav-cta {
    display: none;
    position: relative;
    z-index: 2;
}

.cta-phone {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
    white-space: nowrap;
}

.cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-pink-dark);
}

.cta-phone i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.cta-action {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 500;
}

.cta-number {
    font-size: 0.95rem;
    font-weight: 700;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile Menu Button - FIXED Dynamic Island Style */
.mobile-menu-btn {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(232, 88, 139, 0.3);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.mobile-menu-btn:hover {
    background: rgba(232, 88, 139, 0.2);
    transform: scale(1.05);
}

.mobile-menu-btn.active {
    background: var(--primary-pink);
    color: var(--white);
    border-color: var(--primary-pink);
}

/* Mobile Navigation - FIXED Dynamic Island Expanded */
.mobile-nav {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(247, 243, 233, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(232, 88, 139, 0.3);
    border-radius: 30px;
    z-index: 1000;
    transform: scale(0.8) translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(44, 40, 37, 0.2);
    overflow: hidden;
    pointer-events: none;
}

.mobile-nav.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.mobile-nav a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    margin-bottom: 0.3rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 88, 139, 0.1), transparent);
    transition: left 0.5s;
}

.mobile-nav a:hover::before {
    left: 100%;
}

.mobile-nav a:hover {
    color: var(--primary-pink);
    background: rgba(232, 88, 139, 0.1);
    transform: translateX(5px);
}

.mobile-nav a:last-child {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    font-weight: 600;
    border-radius: 20px;
}

.mobile-nav a:last-child:hover {
    transform: translateY(-2px) translateX(0);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-accent);
    color: var(--white);
}

/* Mobile price calculator CTA */
.mobile-price-cta {
    background: var(--gradient-accent) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 1rem 2rem !important;
    margin: 0.5rem 0 !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(232, 88, 139, 0.3) !important;
}

.mobile-price-cta:hover {
    background: var(--primary-pink-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(232, 88, 139, 0.4) !important;
}

/* HERO SECTION - MOBILE FIRST CLEAN LAYOUT */
.hero {
    background: var(--cream-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(80px + 1rem) 1rem 1rem;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8588b' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0;
}

.hero-content {
    width: 100%;
}

/* Mobile-optimized badge */
.hero-badge {
    display: inline-block;
    background: rgba(232, 88, 139, 0.1);
    color: var(--primary-pink);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(232, 88, 139, 0.3);
}

/* Clean mobile title */
.hero-title {
    font-size: 1.9rem;
    color: var(--primary-pink);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title .accent {
    color: var(--text-primary);
}

/* Shorter subtitle for mobile */
.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding: 0 0.5rem;
}

/* Compact buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Simplified trust indicators */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: var(--white);
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(232, 88, 139, 0.2);
    font-size: 0.7rem;
    color: var(--text-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.trust-stars {
    display: flex;
    gap: 1px;
}

.trust-stars i {
    color: var(--warning-orange);
    font-size: 0.65rem;
}

/* Clean mobile trust grid - better layout */
.hero-trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 0;
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge-item {
    background: var(--white);
    border-radius: 10px;
    padding: 0.8rem 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(232, 88, 139, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 70px;
}

.trust-badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 88, 139, 0.15);
}

.trust-badge-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.trust-badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
}

.trust-badge-text .highlight {
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.1rem;
}

/* TABLET RESPONSIVE */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        padding: calc(80px + 2rem) 1.5rem 2rem;
    }
    
    .hero-container {
        max-width: 600px;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
        gap: 1rem;
    }
    
    .trust-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
    
    .hero-trust-badges {
        gap: 1rem;
        max-width: 450px;
    }
    
    .trust-badge-item {
        padding: 1rem 0.7rem;
        min-height: 80px;
    }
    
    .trust-badge-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .trust-badge-text {
        font-size: 0.75rem;
    }
    
    .trust-badge-text .highlight {
        font-size: 0.9rem;
    }
}

/* DESKTOP RESPONSIVE */
@media (min-width: 769px) {
    .hero {
        padding: calc(80px + 3rem) 2rem 3rem;
    }
    
    .hero-container {
        max-width: 1200px;
    }
    
    .hero-content {
        max-width: 700px;
        margin: 0 auto 3rem;
    }
    
    .hero-badge {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: clamp(2.8rem, 5vw, 4rem);
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
        padding: 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 3rem;
        gap: 1.5rem;
    }
    
    .hero-trust {
        margin-bottom: 3rem;
    }
    
    .trust-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .hero-trust-badges {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 700px;
    }
    
    .trust-badge-item {
        padding: 1.5rem;
        min-height: 100px;
    }
    
    .trust-badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .trust-badge-text {
        font-size: 0.85rem;
    }
    
    .trust-badge-text .highlight {
        font-size: 1rem;
    }
}

/* TRUST BADGES IN HERO - PERFECT MOBILE */
.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid rgba(232, 88, 139, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease forwards;
    text-align: center;
}

.trust-badge-item:nth-child(1) { animation-delay: 0.2s; }
.trust-badge-item:nth-child(2) { animation-delay: 0.4s; }
.trust-badge-item:nth-child(3) { animation-delay: 0.6s; }
.trust-badge-item:nth-child(4) { animation-delay: 0.8s; }

.trust-badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(232, 88, 139, 0.2);
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-badge-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.trust-badge-text .highlight {
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.2rem;
}

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

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-buttons {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 300px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(232, 88, 139, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Button Optimizations */
@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .btn-primary, .btn-secondary {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
        max-width: 250px;
    }
}

/* CTA SECTIONS */
.cta-section {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 3rem 1rem;
    text-align: center;
    width: 100%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.cta-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-btn {
    background: var(--white);
    color: var(--primary-pink);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* SECTIONS */
.section {
    padding: clamp(2rem, 8vw, 5rem) clamp(0.5rem, 3vw, 1rem);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 88, 139, 0.1);
    color: var(--primary-pink);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(232, 88, 139, 0.2);
}

.section-title {
    font-size: clamp(2rem, 7vw, 3.5rem);
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 1200px) {
    .section-title {
        font-size: clamp(2.5rem, 5vw, 3.2rem);
    }
    .section-subtitle {
        font-size: 1.2rem;
        max-width: 800px;
    }
}

@media (min-width: 1600px) {
    .section-title {
        font-size: 3.5rem;
    }
    .section-subtitle {
        font-size: 1.3rem;
        max-width: 900px;
    }
}

/* SERVICES SECTION */
.services {
    background: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 3rem auto 0;
    }
}

@media (min-width: 1600px) {
    .services-grid {
        gap: 2.5rem;
        max-width: 1400px;
    }
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    max-width: 350px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .service-card {
        padding: 2.5rem 2rem;
        max-width: none;
    }
}

@media (min-width: 1600px) {
    .service-card {
        padding: 3rem 2.5rem;
    }
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-pink);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

@media (min-width: 1200px) {
    .service-card h3 {
        font-size: 1.3rem;
    }
    .service-card p {
        font-size: 1rem;
    }
}

@media (min-width: 1600px) {
    .service-card h3 {
        font-size: 1.4rem;
    }
    .service-card p {
        font-size: 1.1rem;
    }
}

.service-cta {
    margin-top: 1.5rem;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

/* Desktop hover effects */
@media (min-width: 769px) {
    .service-card:hover .service-cta {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile: Always show CTA button */
@media (max-width: 768px) {
    .service-cta {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.8rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--cream-medium);
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--cream-light);
    color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    background: var(--gradient-accent);
    color: var(--white);
    transform: scale(1.1);
}

.about-card h4 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    margin-bottom: 0.8rem;
}

.about-card p {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 3vw, 1rem);
    line-height: 1.6;
}

/* SIMPLE PROCESS SECTION - DESKTOP OPTIMIZED */
.process {
    background: var(--white);
    position: relative;
    padding: clamp(4rem, 10vw, 6rem) 1rem;
}

.process-content {
    position: relative;
    z-index: 2;
}

.social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .social-proof {
        gap: 2rem;
        max-width: 1000px;
    }
}

.proof-item {
    text-align: center;
    background: var(--cream-light);
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(232, 88, 139, 0.1);
    flex: 1;
    min-width: 120px;
    transition: all 0.3s ease;
}

@media (min-width: 1200px) {
    .proof-item {
        padding: 2rem 1.5rem;
        min-width: 180px;
    }
}

.proof-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.proof-number {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 900;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
    display: block;
}

@media (min-width: 1200px) {
    .proof-number {
        font-size: 2.8rem;
    }
}

.proof-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

@media (min-width: 1200px) {
    .proof-label {
        font-size: 1.1rem;
    }
}

/* PROCESS STEPS - DESKTOP 4 COLUMNS */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1300px;
    }
}

@media (min-width: 1600px) {
    .process-steps {
        gap: 2.5rem;
        max-width: 1400px;
    }
}

.process-step {
    background: var(--cream-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(232, 88, 139, 0.1);
    transition: all 0.3s ease;
    max-width: 320px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .process-step {
        padding: 2.5rem 2rem;
        max-width: none;
    }
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 88, 139, 0.1);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    margin: 0 auto 1.5rem;
}

@media (min-width: 1200px) {
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}

.process-step h3 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    margin-bottom: 1rem;
}

@media (min-width: 1200px) {
    .process-step h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

@media (min-width: 1200px) {
    .process-step p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* BEFORE/AFTER INTERACTIVE SLIDER */
.before-after {
    background: var(--cream-primary);
}

.comparison-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: clamp(280px, 50vw, 400px);
    border: 3px solid var(--cream-medium);
    cursor: col-resize;
}

.comparison-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    font-size: clamp(1rem, 4vw, 1.3rem);
    font-weight: 600;
    text-align: center;
    padding: 2rem;
}

.before-item {
    background: linear-gradient(135deg, #8b8884 0%, #a8a39f 100%);
}

.after-item {
    background: var(--gradient-accent);
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease;
}

.comparison-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--white);
    z-index: 10;
    transform: translateX(-50%);
    transition: left 0.3s ease;
}

.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 20;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.comparison-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.comparison-handle:active {
    cursor: grabbing;
}

.comparison-handle i {
    color: var(--primary-pink);
    font-size: 1rem;
}

/* TESTIMONIALS SECTION - 9 BEWERTUNGEN */
.testimonials {
    background: var(--white);
    padding: 5rem 0;
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    display: none;
    background: var(--cream-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(232, 88, 139, 0.1);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-content {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 0.2rem 0;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(232, 88, 139, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary-pink);
    transform: scale(1.2);
}

.nav-dot:hover {
    background: var(--primary-pink);
    transform: scale(1.1);
}

/* WARUM WIR SECTION - NEUER CSS FIX */
.why-milsis {
    background: var(--cream-primary);
}

.why-cards-slider {
    position: relative;
    overflow: show;
    margin-top: 3rem;
    width: 100%;
    padding: 0 1rem;
}

.why-cards-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    align-items: stretch;
}

.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    /* Mobile: Eine Card pro View, zentriert */
    width: calc(100vw - 4rem);
    max-width: 300px;
    flex: 0 0 auto;
    margin: 0 0.5rem;
}

/* Erstes Element - linksbündig */
.why-card:first-child {
    margin-left: 0;
}

/* Letztes Element - rechtsbündig */
.why-card:last-child {
    margin-right: 0;
}

@media (min-width: 768px) {
    .why-cards-slider {
        padding: 0;
    }
    
    .why-card {
        width: calc(50% - 1rem);
        max-width: none;
        margin: 0 0.5rem;
    }
}

@media (min-width: 1200px) {
    .why-card {
        width: calc(33.333% - 1rem);
        margin: 0 0.5rem;
        min-height: 300px;
        padding: 2.5rem 2rem;
    }
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(232, 88, 139, 0.15);
    border-color: var(--primary-pink);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem 0;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-btn:disabled {
    background: var(--cream-dark);
    cursor: not-allowed;
    transform: none;
    opacity: 0.5;
}

.careers {
    background: var(--gradient-accent);
    color: var(--white);
    padding: clamp(3rem, 8vw, 5rem) 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.careers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.careers-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.careers-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.careers h2 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.careers p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.careers-btn {
    background: var(--white);
    color: var(--primary-pink);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.careers-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.careers-btn i {
    font-size: 1.2rem;
}

/* ÜBER UNS SECTION - STARK VEREINFACHT */
.about-us {
    background: var(--white);
    position: relative;
}

.about-content {
    margin-top: 3rem;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

@media (min-width: 1200px) {
    .about-story {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

.about-text h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

@media (min-width: 1200px) {
    .about-text h3 {
        font-size: 1.8rem;
    }
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary-pink);
    font-weight: 600;
}

.about-image {
    position: relative;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.image-caption {
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: -30px;
    position: relative;
    z-index: 2;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

/* CONTACT - FROM OLD CODE */
.contact {
    background: var(--cream-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cream-medium);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(232, 88, 139, 0.05);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--gradient-accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
    font-size: clamp(0.9rem, 3vw, 1rem);
    line-height: 1.4;
}

.contact-details a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cream-medium);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cream-medium);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(232, 88, 139, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* FOOTER */
.footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 3rem 1rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-pink);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary-pink);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* FLOATING PHONE BUTTON */
.phone-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.phone-float:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(232, 88, 139, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(232, 88, 139, 0.6), 0 0 0 10px rgba(232, 88, 139, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(232, 88, 139, 0.4);
    }
}

/* LEAD GENERATOR PRICE CALCULATOR */
.price-calculator {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    margin: 3rem 0;
    border: 2px solid rgba(232, 88, 139, 0.1);
}

.calculator-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.calculator-step {
    transition: all 0.3s ease;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.calculator-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calculator-input label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.calculator-input select,
.calculator-input input,
.calculator-input textarea {
    padding: 1rem;
    border: 2px solid var(--cream-medium);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--cream-light);
}

.calculator-input select:focus,
.calculator-input input:focus,
.calculator-input textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(232, 88, 139, 0.1);
}

.price-preview {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 2rem;
}

.price-preview h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.estimated-price {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.8rem;
    opacity: 0.9;
}

.calculate-btn {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .price-calculator {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .estimated-price {
        font-size: 1.8rem;
    }
}

/* Urgency Badge */
.urgency-badge {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

/* Phone Number Highlighting */
.phone-highlight {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.phone-highlight h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.phone-highlight a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
}

/* Local Keywords Section */
.local-keywords {
    background: var(--cream-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 2rem 0;
    border: 1px solid rgba(232, 88, 139, 0.1);
}

.local-keywords h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.keyword-tag {
    background: rgba(232, 88, 139, 0.1);
    color: var(--primary-pink);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(232, 88, 139, 0.2);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 998;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

/* Google Reviews Widget */
.google-reviews {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    margin: 2rem 0;
}

.google-reviews h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.google-logo {
    color: #4285f4;
    font-weight: 700;
}

.review-stars {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.review-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (min-width: 768px) {
    .nav-center, .nav-cta {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .services-grid,
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .why-card {
        min-width: 280px;
        margin-right: 1rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(80px + 1rem) 0.5rem 1rem;
        min-height: 90vh;
    }
    
    .hero-container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1rem);
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .trust-stars i {
        font-size: 0.7rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        max-width: 280px;
    }
    
    .section {
        padding: 2rem 0.5rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }
    
    .service-card,
    .about-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .process-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .header-container {
        padding: 0.5rem 1rem;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .mobile-menu-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .hero-trust-badges {
        gap: 0.6rem;
        padding: 0 0.5rem;
    }
    
    .trust-badge-item {
        padding: 0.8rem 0.6rem;
    }
    
    .trust-badge-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .trust-badge-text {
        font-size: 0.75rem;
    }
    
    .trust-badge-text .highlight {
        font-size: 0.9rem;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

/* COOKIE BANNER STYLES */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--primary-pink);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
}

.cookie-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.cookie-btn-secondary {
    background: var(--cream-medium);
    color: var(--text-primary);
    border: 1px solid var(--cream-accent);
}

.cookie-btn-secondary:hover {
    background: var(--cream-accent);
}

.cookie-btn-minimal {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--cream-medium);
}

.cookie-btn-minimal:hover {
    background: var(--cream-light);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.cookie-modal h3 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--cream-light);
    border-radius: 12px;
    border: 1px solid var(--cream-medium);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cookie-category h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.cookie-category p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    background: var(--cream-medium);
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.active {
    background: var(--primary-pink);
}

.cookie-toggle.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cookie-toggle.active::after {
    transform: translateX(24px);
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* BEFORE/AFTER SLIDER FIX */
.before-after {
    background: var(--cream-primary);
}

.comparison-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: clamp(300px, 50vw, 450px);
    border: 3px solid var(--cream-medium);
    cursor: col-resize;
}

.comparison-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    text-align: center;
    padding: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.before-item {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('draußen_vorher.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.after-item {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('draußen_nachher.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease;
}

.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    cursor: col-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 3;
    border: 3px solid var(--primary-pink);
}

.comparison-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.comparison-handle i {
    color: var(--primary-pink);
    font-size: 1.5rem;
}

.comparison-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* SPEZIFISCHE BILDER FÜR VERSCHIEDENE BEFORE/AFTER SECTIONS */
#comparisonContainer1 .before-item {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('draußen_vorher.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#comparisonContainer1 .after-item {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('draußen_nachher.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease;
}

#comparisonContainer2 .before-item {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('dusche_vorher.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#comparisonContainer2 .after-item {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('dusche_nachher.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease;
}

#comparisonContainer3 .before-item {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('klo_vorher.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#comparisonContainer3 .after-item {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('klo_nachher.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease;
}

#comparisonContainer4 .before-item {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('bett_vorher.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#comparisonContainer4 .after-item {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('bett_nachher.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease;
}

/* SMOOTH SCROLLING */
html {
    scroll-behavior: smooth;
}

/* DARK MODE SUPPORT - Optional */
@media (prefers-color-scheme: dark) {
    :root {
        /* Dark mode adjustments können hier hinzugefügt werden */
    }
}

/* PRINT STYLES */
@media print {
    header, .phone-float, .whatsapp-float, .cookie-banner {
        display: none !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    body {
        color: black !important;
        background: white !important;
    }
}

/* HIGH CONTRAST MODE SUPPORT */
@media (prefers-contrast: high) {
    :root {
        --primary-pink: #c2185b;
        --text-primary: #000000;
        --text-secondary: #333333;
    }
}

/* REDUCED MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto !important;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.hidden { display: none; }
.visible { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

/* Gap utilities */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Margin utilities */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-4 { margin: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

/* Padding utilities */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }