/* ============================================================
   Home landing page  –  /
   ============================================================ */

/* Hero */
.hi-hero {
    background: linear-gradient(135deg, #0d3d8e 0%, #1565c0 55%, #1e88e5 100%);
    color: #fff;
    padding: 5rem 0 4.5rem;
    text-align: center;
}

.hi-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hi-hero .lead {
    font-size: 1.1rem;
    opacity: 0.88;
    max-width: 620px;
    margin: 0 auto 2.25rem;
}

.hi-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255 255 255 / 0.15);
    border: 1px solid rgba(255 255 255 / 0.3);
    border-radius: 2rem;
    padding: 0.3rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}

.hi-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.hi-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #1565c0;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}

.hi-btn-primary:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: #1565c0;
}

.hi-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    border: 2px solid rgba(255 255 255 / 0.55);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.hi-btn-secondary:hover {
    background: rgba(255 255 255 / 0.1);
    border-color: rgba(255 255 255 / 0.8);
    color: #fff;
}

/* Section shared */
.hi-features {
    padding: 5rem 0;
    background: #f8fafc;
}

.hi-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.hi-section-sub {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* Feature cards */
.hi-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.15s;
}

.hi-feature-card:hover {
    box-shadow: 0 8px 28px rgba(0 0 0 / 0.09);
    transform: translateY(-2px);
}

.hi-feature-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.hi-icon-blue   { background: #dbeafe; color: #1d4ed8; }
.hi-icon-purple { background: #ede9fe; color: #7c3aed; }
.hi-icon-teal   { background: #ccfbf1; color: #0d9488; }

.hi-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.hi-feature-body {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.65;
    flex-grow: 1;
}

.hi-feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hi-feature-list li {
    font-size: 0.88rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hi-feature-list .bi-check2 {
    color: #16a34a;
    font-size: 1rem;
    flex-shrink: 0;
}

.hi-feature-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1d4ed8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
}

.hi-feature-link:hover {
    text-decoration: underline;
}

/* How it works */
.hi-how {
    padding: 4.5rem 0;
    background: #fff;
}

.hi-how-step {
    text-align: center;
    padding: 1.5rem 1rem;
}

.hi-how-num {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #1565c0;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.hi-how-step strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.hi-how-step p {
    font-size: 0.88rem;
    color: #666;
    margin: 0;
}

/* CTA */
.hi-cta {
    background: linear-gradient(135deg, #0d3d8e 0%, #1565c0 100%);
    color: #fff;
    padding: 4.5rem 0;
    text-align: center;
}

.hi-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hi-cta p {
    opacity: 0.88;
    max-width: 520px;
    margin: 0 auto 2rem;
}

