.cta {
    position: relative;
    overflow: hidden;
    background-color: #071633;
}

.cta--promo {
    background-image: url("/src/assets/img/cta/cta-bg.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.cta--repair {
    background-image: url("/src/assets/img/cta/cta-bg-2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 18, 63, 0.92) 0%,
        rgba(0, 18, 63, 0.78) 38%,
        rgba(0, 18, 63, 0.35) 72%,
        rgba(0, 18, 63, 0.2) 100%
    );
    pointer-events: none;
}

.cta__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.cta__glow--1 {
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    top: -120px;
    left: -80px;
    background: var(--accent-color);
}

.cta__glow--2 {
    width: min(280px, 40vw);
    height: min(280px, 40vw);
    bottom: -60px;
    left: 40%;
    background: var(--primary-color);
    opacity: 0.25;
}

.cta__container {
    position: relative;
    z-index: 1;
    padding: 0px 10px;
    padding-inline: 0;
}

.cta__panel {
    max-width: min(560px, 100%);
    padding: clamp(28px, 4.5vw, 48px);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.12),
        0 24px 64px rgba(0, 18, 63, 0.35);
}

.cta__title {
    margin: 0 0 clamp(20px, 3vw, 28px);
    color: var(--light-color);
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.28;
}

.cta__title b {
    color: var(--accent-color);
}

.cta__list {
    margin: 0 0 clamp(24px, 3.5vw, 32px);
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta__list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.cta__list-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.cta__check {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-top: 2px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--accent-color), #0ea8d9);
    box-shadow: 0 4px 14px rgba(20, 190, 254, 0.45);
}

.cta__check::after {
    content: "";
    width: 6px;
    height: 10px;
    margin-bottom: 2px;
    border: solid var(--dark-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cta__list-text {
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.45;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.cta__text {
    margin: 0 0 clamp(20px, 3vw, 28px);
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.55;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.cta__button.button {
    width: 100%;
    max-width: 320px;
    padding: 14px 28px;
    font-size: clamp(17px, 1.1vw, 20px);
    border-radius: 12px;
    cursor: pointer;
    background: var(--light-color);
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.cta__button.button:hover {
    background: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(196, 102, 8, 0.35);
}

.cta__button.button:active {
    transform: translateY(0);
}

.cta__action.button {
    width: 100%;
    max-width: 100%;
    padding: 14px 28px;
    font-size: clamp(17px, 1.1vw, 20px);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(20, 190, 254, 0.35);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.2s ease;
}

.cta__action.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(20, 190, 254, 0.45);
}

.cta__action.button:active {
    transform: translateY(0);
}

@media (max-width: 990px) {
    .cta--promo {
        background-position: center;
    }

    .cta__action.button,
    .cta__button.button {
        max-width: none;
    }
}
