
.fd-hero .fm-actions .btn-default:not(.btn-highlighted) {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .24);
}

.fd-hero-card {
    position: relative;
    padding: 30px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .24);
    box-shadow: 0 24px 70px rgba(110, 14, 8, .24);
    backdrop-filter: blur(8px);
    color: #fff;
}

.fd-hero-card__top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    font-weight: 900;
}

.fd-hero-card__top i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .2);
    font-size: 22px;
}

.fd-hero-card h3 {
    color: #fff;
    font-size: 28px;
    line-height: 1.12;
    margin-bottom: 14px;
}

.fd-hero-card p {
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 22px;
}

.fd-hero-tags,
.fd-clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fd-hero-tags span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.fd-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fd-benefit-card,
.fd-argument-card,
.fd-step {
    background: #fff;
    border: 1px solid var(--fm-border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 16px 50px rgba(16, 24, 40, .06);
    height: 100%;
}

.fd-benefit-card i,
.fd-argument-card i {
    display: inline-flex;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #fff2f0;
    color: var(--fm-red);
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.fd-benefit-card h3,
.fd-argument-card h3,
.fd-step h3 {
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.fd-benefit-card p,
.fd-argument-card p,
.fd-step p,
.fd-check-list p {
    color: var(--fm-muted);
    line-height: 1.45;
    margin: 0;
}

.fm-section-head-left.fd-sticky-head {
    position: sticky;
    top: 110px;
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.fd-sticky-head .btn-default {
    margin-top: 8px;
}

.fd-check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.fd-check-list div {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--fm-border);
    box-shadow: 0 12px 38px rgba(16, 24, 40, .05);
}

.fd-check-list span,
.fd-step b {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 17px;
    align-items: center;
    justify-content: center;
    background: #fff2f0;
    color: var(--fm-red);
    font-weight: 900;
}

.fd-clients-grid {
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.fd-clients-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--fm-border);
    box-shadow: 0 10px 32px rgba(16, 24, 40, .06);
    font-weight: 800;
    color: #1d2939;
}

.fd-arguments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fd-argument-card--wide {
    grid-column: span 2;
    background: linear-gradient(135deg, #fff, #fff6f5);
    border-color: #ffd8d4;
}

.fd-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.fd-step b {
    margin-bottom: 18px;
}

.fd-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
}

.fd-final-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 245px;
}

.fd-final-actions .btn-default {
    justify-content: center;
}

@media (max-width: 1199px) {
    .fd-benefits-grid,
    .fd-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .fd-arguments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .fd-hero-card {
        margin-top: 34px;
    }

    .fm-section-head-left.fd-sticky-head {
        position: static;
        margin-bottom: 28px;
    }

    .fd-final-cta {
        grid-template-columns: 1fr;
    }

    .fd-final-actions {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .fd-benefits-grid,
    .fd-arguments-grid,
    .fd-steps {
        grid-template-columns: 1fr;
    }

    .fd-argument-card--wide {
        grid-column: auto;
    }

    .fd-benefit-card,
    .fd-argument-card,
    .fd-step,
    .fd-hero-card {
        border-radius: 24px;
        padding: 24px;
    }

    .fd-check-list div {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fd-clients-grid {
        justify-content: flex-start;
    }

    .fd-clients-grid span {
        width: 100%;
        border-radius: 18px;
    }
}
