/* ===== HOME ENHANCEMENTS CSS ===== */

/* Benefits/Doodles Section */
.benefits-section {
    padding: 96px 0;
    background: linear-gradient(to bottom, var(--neutral-0) 0%, var(--neutral-50) 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 600;
    color: var(--primary-500);
    margin-bottom: 80px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-300);
    /* transparent accent */
    margin: 16px auto 0;
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 56px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    padding: 24px;
    border-radius: 16px;
    transition: background 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.benefit-item:nth-child(1) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.3s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.5s;
}

.benefit-icon {
    height: 160px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 15px rgba(75, 84, 69, 0.15));
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
}

.benefit-item h3 {
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-700);
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 16px;
    color: var(--neutral-900);
    line-height: 1.6;
    max-width: 280px;
}

/* Hero Enhancements */
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--neutral-0);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.cta-button {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateY(0);
}

/* About Section Improvements */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.about-card {
    background: var(--neutral-0);
    padding: 48px 32px;
    border-radius: 2px;
    text-align: center;
    border: 1px solid var(--accent-300);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 84, 69, 0.08);
    border-color: var(--primary-500);
}

.about-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-500);
    position: relative;
    padding-bottom: 16px;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-200);
    /* lighter green */
}

.about-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-900);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .section-title {
        margin-bottom: 48px;
    }

    .benefits-grid {
        gap: 40px;
    }

    .benefit-icon {
        height: 120px;
    }

    .about-card {
        padding: 32px 24px;
    }
}

/* Product Badge */
.product-badge {
    display: inline-block;
    background: var(--primary-500);
    color: var(--neutral-0);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(75, 84, 69, 0.2);
}