/* ===== СТИЛИ ДЛЯ КНОПОК ===== */
.cta-button {
    background: var(--red-accent);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
    text-transform: uppercase;
}

.cta-button:hover {
    background: #c62828;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.submit-button {
    background: var(--red-accent);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(229, 57, 53, 0.4);
}

.submit-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.submit-button:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.action-button {
    background: var(--red-accent);
    color: var(--white);
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(229, 57, 53, 0.2);
}

.action-button:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
}

.content-button {
    background: #555;
    color: var(--white);
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.content-button:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Адаптивность для кнопок */
@media (max-width: 768px) {
    .cta-button {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .action-button,
    .content-button {
        width: 100%;
        max-width: 300px;
    }
}