/* Solution Section Styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #fff3f0;
    --secondary: #6b3e26;
    --accent: #f8a5c2;
    --text-dark: #4a3728;
    --text-light: #8b6f5c;
    --white: #ffffff;
    --gradient-warm: linear-gradient(135deg, #fff3f0 0%, #ffe4dc 100%);
    --shadow-soft: 0 4px 20px rgba(107, 62, 38, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--primary);
    color: var(--text-dark);
    line-height: 1.7;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Solution Section */
.solution {
    padding: 100px 24px;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(248, 165, 194, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(107, 62, 38, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 243, 240, 1) 0%, rgba(255, 228, 220, 1) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Geometric Shapes */
.solution::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 8%;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(248, 165, 194, 0.4) 0%, rgba(248, 165, 194, 0.15) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(2px);
    z-index: 0;
}

.solution::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, rgba(107, 62, 38, 0.2) 0%, rgba(107, 62, 38, 0.08) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(2px);
    z-index: 0;
}

/* Floating Cat Stickers */
.solution-floating-stickers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.solution-sticker {
    position: absolute;
    width: 100px;
    height: auto;
    opacity: 0.08;
    filter: grayscale(30%) sepia(20%) blur(1px);
}

.solution-sticker-1 {
    top: 12%;
    left: 8%;
    width: 90px;
}

.solution-sticker-2 {
    bottom: 15%;
    right: 10%;
    width: 85px;
    transform: scaleX(-1);
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.solution-cat-image {
    width: 180px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 10px 20px rgba(107, 62, 38, 0.15));
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Fade Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .solution {
        padding: 60px 20px;
    }

    .solution-cat-image {
        width: 140px;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}