/* Benefits 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);
    --shadow-medium: 0 8px 30px rgba(107, 62, 38, 0.15);
}

* {
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--secondary);
    margin-bottom: 16px;
}

/* Benefits Section */
.benefits {
    padding: 100px 24px;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(248, 165, 194, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(107, 62, 38, 0.06) 0%, transparent 50%),
        var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative Geometric Shapes */
.benefits::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(248, 165, 194, 0.25) 0%, rgba(248, 165, 194, 0.08) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(2px);
    z-index: 0;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: 8%;
    right: 5%;
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, rgba(107, 62, 38, 0.15) 0%, rgba(107, 62, 38, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(2px);
    z-index: 0;
}

/* Floating Cat Stickers */
.benefits-floating-stickers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.benefits-sticker {
    position: absolute;
    width: 100px;
    height: auto;
    opacity: 0.07;
    filter: grayscale(30%) sepia(20%) blur(1px);
}

.benefits-sticker-1 {
    top: 5%;
    right: 8%;
    width: 95px;
}

.benefits-sticker-2 {
    top: 40%;
    left: 3%;
    width: 85px;
    transform: scaleX(-1);
}

.benefits-sticker-3 {
    bottom: 8%;
    right: 15%;
    width: 90px;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

/* Improved Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: var(--shadow-medium);
    border-color: rgba(248, 165, 194, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary), #8b5a3c);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(107, 62, 38, 0.2);
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.benefit-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* 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) {
    .benefits {
        padding: 60px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 24px;
    }
}