/* Category landing pages — aligned with home/splash (no purple gradient AI-slop) */

.category-hero {
    background: linear-gradient(165deg, #0f1419 0%, #1a222c 55%, #243040 100%);
    color: #f2f5f9;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.category-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 60% at 50% -30%, rgba(31, 111, 84, 0.28), transparent 55%);
    pointer-events: none;
}

.category-hero > * {
    position: relative;
    z-index: 1;
}

.category-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-hero-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.category-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.94;
    color: rgba(242, 245, 249, 0.92);
}

.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.category-section {
    margin: 3rem 0;
}

.category-section h2 {
    font-size: 1.8rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(15, 20, 25, 0.06);
    border: 1px solid rgba(26, 35, 50, 0.08);
    border-top: 3px solid #1f6f54;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.benefit-card:hover {
    box-shadow: 0 6px 20px rgba(15, 20, 25, 0.1);
}

.benefit-card a {
    text-decoration: none;
    color: inherit;
}

.benefit-card strong {
    font-size: 1.05rem;
    color: #1a2332;
}

.benefit-card::before {
    content: "";
}

.cta-section {
    background: #f6f4ef;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid rgba(26, 35, 50, 0.08);
}

.cta-section h2 {
    color: #1a2332;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 20, 25, 0.12);
}

.btn-primary {
    background: #1f6f54;
    color: #fff;
}

.btn-primary:hover {
    background: #185544;
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: #1f6f54;
    border: 2px solid #1f6f54;
}

.btn-secondary:hover {
    background: rgba(31, 111, 84, 0.08);
}

@media (max-width: 768px) {
    .category-hero h1 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}
