.hero {
    background: linear-gradient(180deg, var(--fi-dark-2) 0%, var(--fi-dark) 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.22;
    pointer-events: none;
}

.hero::before {
    width: 320px;
    height: 320px;
    background: #9dd6ff;
    top: -120px;
    right: -80px;
}

.hero::after {
    width: 260px;
    height: 260px;
    background: #86efac;
    bottom: -120px;
    left: -80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem 0 4rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.0rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 2rem;
}

.hero .lead {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin-bottom: 1.75rem;
}

.hero-image-wrap {
    text-align: center;
}

.hero-image {
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.22));
    border-radius: 1rem;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-cta {
    padding: 0.9rem 1.35rem;
    border-radius: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.hero-note {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
}

.intro-band {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.intro-card {
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 1.0);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 1.5rem;
    box-shadow: var(--fi-shadow);
    padding: 2rem;
}

.home-main .section {
    padding: 4.5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-title p {
    color: var(--fi-muted);
    max-width: 44rem;
    margin: 0 auto;
}

.feature-row {
    align-items: center;
    row-gap: 2rem;
    margin-bottom: 4rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--fi-border);
    border-radius: var(--fi-radius);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.feature-image {
    width: 100%;
    border-radius: 1rem;
    display: block;
}

.feature-copy h3 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.feature-copy .lead-text {
    font-size: 1.125rem;
    line-height: 1.65;
    margin-bottom: 0.9rem;
}

.feature-copy p {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}

.feature-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.benefits,
.info-section {
    background: var(--fi-bg-soft);
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}

.info-panel {
    background: #fff;
    border: 1px solid var(--fi-border);
    border-radius: 1.25rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    padding: 1.75rem;
}

.info-panel p {
    color: #374151;
    line-height: 1.8;
}

.examples-section {
    background: #fff;
}

.example-card h3 {
    padding: 1rem 1.25rem;
}

.benefit-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--fi-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: #eefbf3;
    color: var(--fi-accent);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .hero-content {
        padding: 3.5rem 0 3rem;
        text-align: center;
    }

    .hero .lead,
    .hero-note {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group {
        justify-content: center;
    }

    .intro-card {
        margin-top: -1rem;
    }
}
