/* =========================================================================
   Home page (Index.cshtml) — page-scoped styles.
   ========================================================================= */

/* ---------- Hero ---------- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 64px 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(110, 182, 222, 0.18), transparent 60%),
        linear-gradient(180deg, var(--bg) 0%, var(--tint) 100%);
}

.hero-inner {
    max-width: 880px;
}

.hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--ink);
}

.hero-subhead {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--slate);
    max-width: 720px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 48px 0;
    }
}

/* ---------- Problem ---------- */
.problem {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}
.problem-body {
    font-size: 1.125rem;
    color: var(--slate);
    margin: 0;
}

/* ---------- Features grid ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--cyan-light);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}
.feature-card p {
    margin: 0;
    color: var(--slate);
    font-size: 0.95rem;
}

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

/* ---------- How it works ---------- */
.steps-heading {
    text-align: center;
    margin-bottom: 48px;
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-body { width: 100%; }
.step h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}
.step p {
    margin: 0;
    color: var(--slate);
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 28px;
    }
    .step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
    }
    .step-num {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
        margin-bottom: 0;
    }
}

/* ---------- Pricing teaser ---------- */
.pricing-teaser {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}
.pricing-teaser-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-teaser-list li {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 16px 20px;
    color: var(--slate);
    font-size: 1rem;
    text-align: left;
}
.pricing-teaser-list strong { color: var(--ink); font-weight: 600; }

/* (Final-CTA + .btn-lg styles live in site.css — shared across pages) */
