.cta-section {
    position: relative;
    background: #111110;
    padding: 100px 0;
    border-radius: 60px 60px 0 0;
    overflow: hidden;
}

.cta-section__glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 30% 30%, rgba(37, 139, 255, 0.36), transparent 60%);
    filter: blur(151.55px);
    pointer-events: none;
}

.cta-section__inner {
    position: relative;
    z-index: 1;
}

.cta-section__grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
}

.cta-section__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -0.46px;
    color: #f6f5f1;
    padding-bottom: 32px;
    max-width: 710px;
}

.cta-section__meta {
    display: flex;
    gap: 28px;
}

.cta-section__meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cta-section__meta-label {
    font-family: 'Space Mono', 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #a9a89f;
    min-width: 60px;
}

.cta-section__meta-value {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.5;
    color: #f6f5f1;
}

.cta-section__action {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-section__timer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cta-section__timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 13px 15px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
}

.cta-section__timer-num {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    color: #f6f5f1;
}

.cta-section__timer-label {
    font-family: 'Space Mono', 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #a9a89f;
}

.cta-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 54.5px;
    padding: 0 26px;
    border-radius: 100px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    background: #258bff;
    border: 1px solid #258bff;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.cta-section__btn:hover {
    background: #1a7aeb;
}

.cta-section__note {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #8f8e85;
}

@media (max-width: 1024px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-section__title {
        font-size: 32px;
    }

    .cta-section__grid {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        border-radius: 40px 40px 0 0;
    }

    .cta-section__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-section__title {
        font-size: 24px;
        padding-bottom: 20px;
    }

    .cta-section__meta {
        gap: 20px;
        flex-wrap: wrap;
    }

    .cta-section__meta-item {
        gap: 3px;
    }

    .cta-section__meta-value {
        font-size: 14px;
    }

    .cta-section__meta-label {
        font-size: 11px;
    }

    .cta-section__action {
        gap: 16px;
    }

    .cta-section__timer {
        gap: 12px;
    }

    .cta-section__timer-box {
        padding: 10px 12px;
    }

    .cta-section__timer-num {
        font-size: 18px;
    }

    .cta-section__timer-label {
        font-size: 9px;
    }

    .cta-section__btn {
        height: 48px;
        font-size: 14px;
    }

    .cta-section__note {
        font-size: 12px;
    }

    .cta-section__glow {
        width: 250px;
        height: 250px;
    }
}
