/* ================= HERO ================= */
.hero {
    border-radius: var(--radius-xl);
    padding: 60px 24px;
    margin-bottom: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        linear-gradient(
            rgba(15, 23, 42, 0.75),
            rgba(15, 23, 42, 0.75)
        ),
        url('https://images.unsplash.com/photo-1607082350899-7e105aa886ae?q=80&w=1400&auto=format&fit=crop') center/cover;

    color: #ffffff;
}

.hero-content {
    max-width: 720px;
}

/* BADGE */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    margin-bottom: 16px;
}

/* TITLE */
.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

/* TEXT */
.hero-content p {
    font-size: 15px;
    margin: 18px 0 28px;
    color: rgba(255,255,255,0.85);
}

/* ACTIONS */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
    padding: 12px 26px;
    border-radius: var(--radius-full);

    background: var(--brand-green);
    color: #ffffff;

    font-weight: 600;
    text-decoration: none;

    transition: all 0.25s var(--ease);
}

.btn-primary:hover {
    background: var(--brand-green-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 12px 26px;
    border-radius: var(--radius-full);

    border: 1px solid rgba(255,255,255,0.4);
    color: #ffffff;

    font-weight: 500;
    text-decoration: none;

    transition: all 0.25s var(--ease);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}


/* ================= INTRO ================= */
.intro-section {
    text-align: center;
    margin-bottom: 50px;
}

.intro-content {
    max-width: 720px;
    margin: auto;
}

.intro-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.intro-content p {
    font-size: 14px;
    color: var(--text-muted);
}


/* ================= SECTION HEADER ================= */
.section-header {
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 22px;
    font-weight: 700;
}

.section-header p {
    font-size: 13px;
    color: var(--text-muted);
}


/* ================= GRID ================= */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ================= CATEGORY CARD ================= */
.category-card {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px;
    text-decoration: none;
    color: var(--text-primary);
}

/* ICON */
.category-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: var(--radius-md);
    background: var(--brand-green-ghost);
    color: var(--brand-green);

    font-size: 18px;
}

/* TEXT */
.category-info h3 {
    font-size: 14px;
    font-weight: 600;
}

.category-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ARROW */
.category-arrow {
    margin-left: auto;
    font-size: 14px;
    color: var(--text-muted);
}


/* ================= CTA ================= */
.cta-section {
    margin-top: 60px;
}

.cta-card {
    background: var(--brand-navy);
    color: #ffffff;

    border-radius: var(--radius-xl);
    padding: 40px 28px;

    text-align: center;
}

.cta-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: var(--radius-full);

    background: var(--brand-green);
    color: #ffffff;

    font-weight: 600;
    text-decoration: none;

    transition: 0.25s;
}

.cta-btn:hover {
    background: var(--brand-green-dark);
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hero {
        padding: 40px 16px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .intro-content h2 {
        font-size: 22px;
    }

    .cta-card {
        padding: 28px 18px;
    }
}