.home-page .nav-container,
.home-page main .container,
.home-page .footer .container {
    max-width: var(--site-max-width);
    width: 100%;
    padding-inline: var(--site-gutter);
}

.home-page .section {
    padding: clamp(68px, 10vw, 108px) 0;
}

.home-page .section-sm {
    padding: clamp(34px, 5vw, 56px) 0;
}

.home-page .hero.hero-home {
    padding: clamp(28px, 5vw, 56px) 0 clamp(46px, 6vw, 72px);
    background:
        radial-gradient(circle at top left, rgba(15, 61, 62, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(230, 122, 76, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
}

.hero-home .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.hero-home .hero-text {
    display: grid;
    gap: 16px;
}

.hero-home .badge {
    margin-bottom: 0;
    width: fit-content;
}

.hero-home .hero-heading {
    margin: 0;
    font-size: clamp(1.55rem, 2.6vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
    max-width: 30ch;
}

.hero-home .hero-heading-styled {
    display: grid;
    gap: 0.14em;
    max-width: 30ch;
}

.hero-home .hero-heading-line {
    display: block;
}

.hero-home .hero-heading-line-lg {
    font-size: 1em;
    line-height: 1.12;
}

.hero-home .hero-summary {
    margin: 0;
    max-width: 56ch;
    font-size: clamp(0.98rem, 1.3vw, 1.12rem);
    line-height: 1.76;
}

.hero-home .hero-buttons {
    gap: 14px;
}

.hero-home .hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.hero-home .hero-proof li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.96rem;
    font-weight: 500;
}

.hero-home .hero-proof i {
    color: var(--primary);
}

.hero-home .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.hero-metric {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--gray-200);
    box-shadow: 0 16px 32px rgba(15, 61, 62, 0.05);
}

.hero-metric strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.2rem;
    line-height: 1.1;
    color: var(--gray-900);
}

.hero-metric span {
    display: block;
    color: var(--gray-500);
    font-size: 0.88rem;
    line-height: 1.45;
}

.hero-stage {
    padding: clamp(20px, 2.1vw, 26px);
    border-radius: 32px;
    background: var(--white);
    border: 1px solid rgba(228, 231, 236, 0.95);
    box-shadow: 0 24px 48px rgba(15, 61, 62, 0.1);
}

.hero-stage-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-stage-top strong {
    display: block;
    color: var(--gray-900);
    font-size: 1.05rem;
}

.hero-stage-top span {
    display: block;
    color: var(--gray-500);
    font-size: 0.84rem;
    margin-top: 4px;
}

.hero-stage-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.hero-stage-pill i {
    color: var(--accent);
}

.hero-dashboard {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: linear-gradient(180deg, #fbfcfc 0%, #f6f9fb 100%);
}

.hero-dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.hero-dashboard-dots {
    display: flex;
    gap: 8px;
}

.hero-dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.hero-dashboard-dots span:nth-child(1) {
    background: #ff5f56;
}

.hero-dashboard-dots span:nth-child(2) {
    background: #ffbd2e;
}

.hero-dashboard-dots span:nth-child(3) {
    background: #27c93f;
}

.hero-dashboard-label {
    color: var(--gray-500);
    font-size: 0.82rem;
    font-weight: 500;
}

.hero-dashboard-body {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: clamp(300px, 34vw, 380px);
}

.hero-dashboard-side {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 20px 16px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.hero-dashboard-nav-item {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-dashboard-nav-item.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.hero-dashboard-main {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 18px;
}

.hero-dashboard-banner {
    min-height: 88px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 61, 62, 0.1), rgba(230, 122, 76, 0.16));
    border: 1px solid rgba(15, 61, 62, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
}

.hero-dashboard-banner-copy {
    display: grid;
    gap: 6px;
}

.hero-dashboard-banner-copy strong {
    color: var(--gray-900);
    font-size: 0.98rem;
}

.hero-dashboard-banner-copy span {
    color: var(--gray-600);
    font-size: 0.82rem;
    line-height: 1.45;
    max-width: 34ch;
}

.hero-dashboard-banner-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.hero-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-dashboard-card {
    min-height: 108px;
    border-radius: 18px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 16px;
    display: grid;
    align-content: start;
    gap: 8px;
}

.hero-dashboard-card strong {
    color: var(--gray-900);
    font-size: 0.9rem;
}

.hero-dashboard-card span {
    color: var(--gray-500);
    font-size: 0.78rem;
}

.hero-dashboard-card em {
    color: var(--primary);
    font-style: normal;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-dashboard-panel {
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 14px 16px;
}

.hero-dashboard-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-dashboard-panel-head strong {
    color: var(--gray-900);
    font-size: 0.88rem;
}

.hero-dashboard-panel-head span {
    color: var(--gray-500);
    font-size: 0.76rem;
}

.hero-dashboard-lines {
    display: grid;
    gap: 10px;
}

.hero-dashboard-lines span {
    height: 13px;
    border-radius: 999px;
    background: var(--gray-200);
}

.hero-dashboard-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--gray-500);
    font-size: 0.76rem;
    font-weight: 600;
}

.brand-strip {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.brand-strip-label {
    margin: 0 0 22px;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.94rem;
}

.brand-strip-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.brand-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--gray-200);
    color: var(--gray-400);
    font-size: clamp(1rem, 1.5vw, 1.28rem);
    font-weight: 600;
    text-align: center;
}

.audience-card {
    height: 100%;
}

.audience-card p {
    margin-bottom: 0;
}

.benefits-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: clamp(24px, 4vw, 48px);
    align-items: stretch;
}

@media (min-width: 1800px) {
    .hero-home .hero-content {
        grid-template-columns: minmax(0, 1.14fr) minmax(460px, 0.86fr);
        gap: clamp(40px, 4vw, 72px);
    }

    .hero-home .hero-heading {
        max-width: 13ch;
    }

    .hero-home .hero-summary {
        max-width: 64ch;
    }
}

.benefits-copy {
    display: grid;
    gap: 18px;
}

.benefits-copy > p:last-of-type {
    margin-bottom: 4px;
}

.benefits-list {
    display: grid;
    gap: 14px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(228, 231, 236, 0.95);
}

.benefit-item p,
.benefit-item h4 {
    margin-bottom: 0;
}

.benefit-item h4 {
    margin-bottom: 6px;
}

.benefit-item p {
    color: var(--gray-500);
}

.benefits-panel {
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 32px;
    border-radius: 30px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.benefits-panel h3,
.benefits-panel p {
    color: inherit;
    margin-bottom: 0;
}

.benefits-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.benefits-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.benefits-stat {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.benefits-stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: 2rem;
    line-height: 1;
}

.benefits-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.benefits-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
}

.benefits-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1180px) {
    .hero-home .hero-content,
    .benefits-shell {
        grid-template-columns: 1fr;
    }

    .hero-home .hero-heading,
    .hero-home .hero-summary {
        max-width: none;
    }

    .hero-home .hero-heading-styled {
        max-width: none;
    }


    .hero-stage {
        max-width: 760px;
    }
}

@media (max-width: 960px) {
    .brand-strip-list,
    .hero-home .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-dashboard-body {
        grid-template-columns: 120px minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .home-page .nav-container,
    .home-page main .container,
    .home-page .footer .container {
        width: 100%;
        padding-inline: var(--site-gutter-mobile);
    }

    .home-page .section {
        padding: 64px 0;
    }

    .hero-home .hero-buttons,
    .benefits-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-home .hero-buttons .btn,
    .benefits-actions .btn {
        width: 100%;
    }

    .brand-strip-list,
    .hero-home .hero-metrics,
    .benefits-stats {
        grid-template-columns: 1fr;
    }

    .hero-dashboard-body {
        grid-template-columns: 1fr;
    }

    .hero-dashboard-side {
        display: none;
    }

    .hero-dashboard-banner,
    .hero-dashboard-foot,
    .hero-dashboard-panel-head {
        flex-direction: column;
        align-items: flex-start;
    }
}
