/* ================== Заголовок ================== */

.title {
    padding-top: 50px;
    text-align: center;
    color: #ffffff;
}

.main-title {
    font-size: clamp(42px, 8vw, 96px);
    font-weight: 700;
}

.sub-text {
    font-size: clamp(1.1rem, 2.5vw, 2rem);
    opacity: 0.9;
    margin-top: 20px;
}

.text-width {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

/* ================== Разделительная линия ================== */

.divider-line {
    height: 3px;
    background-color: white;
    width: 100%;
    max-width: 420px;
    margin: 25px auto;
    border: none;
}

.divider-line.wide {
    max-width: 900px;
}

/* ================== Кнопки ================== */

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.buttons-container.wide {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.buttons-container .cta-button {
    flex: 1;
    min-width: 0;

    display: block; 
    padding: 14px 20px;

    text-align: center;
    white-space: normal;
    line-height: 1.4;

    border-radius: 14px;
    color: white;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    transition: all 0.25s ease;
}

.buttons-container .cta-button:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* ================== Адаптив ================== */

@media (max-width: 768px) {
    .buttons-container {
        gap: 10px;
    }
}