/* assets/styles/home.css */

/* STEP 1 — HERO SECTION */
.home-hero {
    padding: clamp(60px, 10vw, 120px) 0;
    background-size: cover;
    background-position: center;
    color: white;
}

.home-hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.1;
    margin-top: 25px;
    color: white;
}

.home-hero .lead {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: white;
}

.hero-actions {
    margin-top: 30px;
}

.hero-actions .btn {
    width: 100%;
    max-width: 320px;
}

@media (min-width: 576px) {
    .hero-actions .btn {
        width: auto;
    }
}

/* STEP 2 — VALUE CARDS */
.value-card {
    height: 100%;
}

.value-card h4 {
    color: var(--teal);
    font-weight: 900;
    margin-bottom: 8px;
}

.value-card .card-body-text {
    color: var(--muted);
}

@media (max-width: 768px) {
    .value-card {
        min-height: auto;
    }
}

/* STEP 3 — HOW-IT-WORKS GRID */
.how-card {
    height: 100%;
}

.how-card-title {
    font-weight: 900;
    color: var(--slate);
    margin-top: 6px;
}

.how-card-body {
    color: var(--muted);
    margin-top: 8px;
}

/* STEP 4 — FINAL CTA BLOCK */
.final-cta-card {
    margin-top: 18px;
    padding: 18px;
    border-color: rgba(47,127,122,.35);
}

.final-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.final-cta-title {
    font-size: 22px;
    font-weight: 950;
    color: var(--slate);
}

.final-cta-sub {
    color: var(--muted);
    margin-top: 6px;
}

@media (min-width: 768px) {
    .final-cta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.final-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .final-cta-buttons {
        justify-content: flex-end;
    }
}

@media (max-width: 576px) {
    .final-cta-buttons .btn {
        width: 100%;
    }
}
