/* ===== Benefits Section ===== */
.benefits {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f5f8 100%);
    max-width: 100%;
    margin: 0;
    padding: 5rem 2rem;
}

.benefits-container {
    max-width: 1280px;
    margin: 0 auto;
}

.benefits-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #4a5568;
}

.benefits-heading .highlight {
    color: #2d6a7a;
    font-weight: 800;
    font-style: italic;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.benefit-item {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 106, 122, 0.08), transparent);
    transition: right 0.8s ease;
}

.benefit-item:hover::before {
    right: 100%;
}

.benefit-item:hover {
    border-color: #2d6a7a;
    box-shadow: 0 12px 40px -8px rgba(45, 106, 122, 0.2);
    transform: translateX(8px);
}

.benefit-number {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #2d6a7a 0%, #6ba3aa 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-item:hover .benefit-number {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(45, 106, 122, 0.35);
}

.benefit-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.benefit-item:hover h4 {
    color: #2d6a7a;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6577;
    transition: color 0.3s ease;
}

.benefit-item:hover p {
    color: #4a5568;
}

/* ===== Responsive: Benefits ===== */
@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .benefits-heading {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .benefits {
        padding: 6rem 3rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}
