.home {
    .home__section {
        padding: 64px 0;
    }


    .hero {
        .hero__eyebrow {
            color: var(--coral-dust);
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
        }
        .hero__title {
            font-size: 54px;
            line-height: 1.1;
            font-weight: 700;
        }
        .hero__subtitle {
            color: var(--q-muted);
            margin-top: 1rem;
            font-size: 18px;
        }
        .hero__cta {
            display: flex;
            gap: .8rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }


        .hero__stats {
            display: flex;
            flex-direction: column;
            gap: 12px;

            .hero__stats-title {
                font-size: 18px;
                font-weight: 700;
            }
            .hero__stats-list {
                display: flex;
                gap: 18px;

                .hero__stats-item {
                    background: var(--color-bg--secondary);
                    padding: 18px;
                    border-radius: 6px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-direction: column;
                    gap: 4px;
                    text-align: center;
                    min-width: 162px;

                    strong {
                        font-size: 30px;
                        color: var(--coral-dust);
                        font-weight: 700;
                    }
                }


            }
        }
    }


}
