/* Стили для редизайна ndsplus.online */

/* Hero форма */
.hero-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-form .form-group {
    margin-bottom: 20px;
}

.hero-form input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.hero-form input:focus {
    border-color: #0066FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}

/* Счётчики доверия */
.trust-counter-box {
    padding: 30px 20px;
}

.counter-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 10px;
    line-height: 1.2;
}

.counter-label {
    display: block;
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}

/* Карточки кейсов */
.case-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.case-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-badge {
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-top: auto;
}

/* Формы */
.warm-form input,
.warm-form select,
.hot-form input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.warm-form input:focus,
.warm-form select:focus,
.hot-form input:focus {
    border-color: #0066FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}

/* FAQ */
.faq-item {
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.faq-question {
    user-select: none;
}

.faq-answer {
    padding-top: 15px;
}

/* Блок срочности */
.urgency-block {
    position: relative;
    overflow: hidden;
}

.urgency-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.btn-urgent {
    font-size: 18px;
    padding: 16px 32px;
}

/* Гарантии */
.guarantees {
    margin-top: 40px;
}

.guarantee-item {
    text-align: center;
}

.guarantee-item i {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-form-wrapper {
        padding: 20px;
        margin-top: 30px;
    }
    
    h1.title {
        font-size: 28px !important;
    }
    
    h2.heading {
        font-size: 24px !important;
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .case-card {
        margin-bottom: 20px;
    }
    
    .urgency-block {
        padding: 30px 20px !important;
    }
    
    .urgency-block h3 {
        font-size: 22px !important;
    }
    
    .guarantees {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-counter-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-form-wrapper {
        padding: 15px;
    }
    
    .warm-form,
    .hot-form {
        padding: 25px 20px !important;
    }
    
    .case-content {
        padding: 20px !important;
    }
    
    .urgency-block {
        padding: 25px 15px !important;
    }
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Стили для кнопок */
.sotcox-btn {
    transition: all 0.3s;
}

.sotcox-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,102,255,0.3);
}

/* Стили для форм */
.form-note {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

/* Отзывы */
.testimonial-header {
    margin-bottom: 20px;
}

.testimonial-result {
    margin-top: 20px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Команда */
.team-member-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.credentials-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
