.sa-hero {
    --sa-bg-start: #fdfdf8;
    --sa-bg-end: #edf4d6;
    --sa-overlay-color: #000000;
    --sa-overlay-opacity: 0;
    --sa-curve-color: #bfc2b6;
    --sa-curve-width: 2px;
    --sa-card-width: 250px;
    --sa-card-gap: 28px;
    --sa-hover-lift: 10px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 24px 24px 34px;
    border-radius: 26px;
    background: linear-gradient(180deg, var(--sa-bg-start) 0%, var(--sa-bg-end) 100%);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sa-hero::before {
    content: "";
    position: absolute;
    left: -14%;
    bottom: -45%;
    width: 40%;
    height: 58%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(252, 240, 228, 0.7), rgba(252, 240, 228, 0) 72%);
    pointer-events: none;
    z-index: 0;
}

.sa-hero::after {
    content: "";
    position: absolute;
    right: -16%;
    bottom: -55%;
    width: 42%;
    height: 62%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(216, 239, 166, 0.85), rgba(216, 239, 166, 0) 75%);
    pointer-events: none;
    z-index: 0;
}

.sa-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background-color: var(--sa-overlay-color);
    opacity: var(--sa-overlay-opacity);
    pointer-events: none;
}

.sa-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.sa-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.sa-logo-wrap {
    min-width: 110px;
}

.sa-logo {
    display: inline-flex;
    align-items: center;
    color: #101010;
    font-size: 33px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
}

.sa-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.sa-nav-link {
    color: #2c2c2c;
    font-size: 20px;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sa-nav-link:hover {
    color: #11c95a;
}

.sa-auth-actions {
    display: inline-flex;
    align-items: center;
    gap: 22px;
}

.sa-login-link {
    color: #171717;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sa-login-link:hover {
    color: #11c95a;
}

.sa-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 10px 34px;
    border: 1px solid #111111;
    border-radius: 999px;
    background: #1fdc61;
    color: #111111;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.sa-top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.sa-content {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.sa-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #cfcfca;
    border-radius: 999px;
    background: #ffffff;
    color: #1c1c1c;
    font-size: 15px;
    line-height: 1.2;
    padding: 10px 20px;
    margin-top: 8px;
}

.sa-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
}

.sa-badge-icon svg {
    width: 1em;
    height: 1em;
}

.sa-title {
    margin: 24px auto 0;
    max-width: 820px;
    color: #090909;
    font-size: clamp(46px, 6.5vw, 122px);
    font-weight: 800;
    line-height: 0.93;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.sa-title-line {
    display: block;
}

.sa-title-highlight {
    color: #16cc58;
}

.sa-subtitle {
    margin: 24px auto 0;
    color: #202020;
    font-size: clamp(20px, 1.7vw, 37px);
    line-height: 1.4;
}

.sa-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    min-height: 56px;
    padding: 10px 40px;
    border: 1px solid #111111;
    border-radius: 999px;
    background: #20d85d;
    color: #111111;
    font-size: 40px;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.sa-primary-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.sa-primary-btn-icon svg {
    width: 1em;
    height: 1em;
}

.sa-primary-btn.sa-primary-btn--icon-before .sa-primary-btn-icon {
    margin-right: 8px;
}

.sa-primary-btn.sa-primary-btn--icon-after .sa-primary-btn-icon {
    margin-left: 8px;
}

.sa-primary-btn:hover {
    transform: translateY(-3px);
    background: #16c950;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.09);
}

.sa-card-zone {
    position: relative;
    margin-top: 34px;
    padding-top: 0;
}

.sa-card-curve {
    position: absolute;
    left: 50%;
    top: 0;
    width: 160%;
    height: 230px;
    transform: translateX(-50%);
    border-top: var(--sa-curve-width) solid var(--sa-curve-color);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    pointer-events: none;
}

.sa-slider-window {
    overflow: hidden;
    padding: 16px 0 34px;
    position: relative;
    z-index: 1;
}

.sa-slider-track {
    display: flex;
    align-items: stretch;
    gap: var(--sa-card-gap);
    width: max-content;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.sa-card {
    position: relative;
    flex: 0 0 min(var(--sa-card-width), 82vw);
    border: 1px solid #d7d7cf;
    border-radius: 24px;
    background: #ffffff;
    transform: rotate(var(--sa-card-rotate, 0deg));
    transition: transform 0.24s ease;
}

.sa-card:hover {
    transform: rotate(var(--sa-card-rotate, 0deg)) translateY(calc(-1 * var(--sa-hover-lift)));
}

.sa-card-inner {
    display: block;
    text-decoration: none;
    color: inherit;
}

.sa-pin {
    position: absolute;
    left: 50%;
    top: -16px;
    width: 20px;
    height: 34px;
    transform: translateX(-50%);
    border-radius: 4px;
    background: var(--sa-pin-color, #1ed652);
    border: 1px solid rgba(17, 17, 17, 0.22);
    box-shadow: 0 8px 18px rgba(30, 214, 82, 0.35);
}

.sa-pin::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 5px;
    width: 7px;
    height: 7px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
}

.sa-card-media {
    padding: 14px 14px 0;
}

.sa-card-media img {
    width: 100%;
    height: 140px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.sa-card-body {
    padding: 10px 16px 16px;
}

.sa-card-title {
    margin: 0;
    color: #131313;
    font-size: 35px;
    line-height: 1.25;
}

.sa-card-description {
    margin: 4px 0 0;
    color: #636363;
    font-size: 24px;
    line-height: 1.35;
}

.sa-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.sa-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.45;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.sa-logo-item:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

.sa-logo-item img {
    display: block;
    height: 24px;
    width: auto;
    object-fit: contain;
}

.sa-logo-text {
    color: #7a7a74;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

@media (max-width: 1366px) {
    .sa-logo {
        font-size: 24px;
    }

    .sa-nav-link,
    .sa-login-link {
        font-size: 15px;
    }

    .sa-top-btn,
    .sa-primary-btn {
        font-size: 16px;
    }

    .sa-primary-btn {
        min-height: 52px;
    }

    .sa-card-title {
        font-size: 28px;
    }

    .sa-card-description {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .sa-topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .sa-logo-wrap {
        text-align: center;
    }

    .sa-nav-links {
        gap: 18px;
    }

    .sa-auth-actions {
        justify-content: center;
        gap: 14px;
    }

    .sa-card-curve {
        width: 220%;
        height: 200px;
    }
}

@media (max-width: 767px) {
    .sa-hero {
        border-radius: 18px;
        padding: 18px 14px 22px;
    }

    .sa-badge {
        margin-top: 0;
        font-size: 13px;
        padding: 8px 14px;
    }

    .sa-title {
        line-height: 1;
        margin-top: 14px;
        font-size: clamp(28px, 9vw, 44px);
    }

    .sa-subtitle {
        margin-top: 14px;
        font-size: 16px;
    }

    .sa-primary-btn {
        margin-top: 14px;
        width: 100%;
    }

    .sa-card-zone {
        margin-top: 20px;
        padding-top: 0;
    }

    .sa-card-curve {
        top: 0;
        width: 260%;
        height: 168px;
    }

    .sa-card-media img {
        height: 118px;
    }

    .sa-logos {
        margin-top: 18px;
        gap: 18px;
    }

    .sa-logo-text {
        font-size: 15px;
    }
}
