/* 🎨 СПОКОЙНЫЙ СОВРЕМЕННЫЙ СТИЛЬ ДЛЯ ВСЕГО САЙТА */

/* Цвета сайта */
:root {
    --primary-orange: #ff6c00;
    --primary-green: #28a745;
    --primary-red: #dc3545;
    --text-dark: #2d3748;
    --text-gray: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
}

/* Карточки фич (главная страница) */
.single-feature {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-orange);
    margin-bottom: 30px;
}

.single-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.single-feature h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 20px;
}

.single-feature p {
    color: var(--text-gray);
}

/* Карточки сервисов */
.single-service {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-green);
    margin-bottom: 20px;
    min-height: auto;
    height: 100%;
}

.single-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.single-service h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 15px;
}

.single-service span {
    color: var(--text-gray);
}

/* Тарифные планы */
.single-pricing-plan {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
}

.single-pricing-plan:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.single-pricing-plan h4 {
    color: var(--text-dark);
    font-weight: 700;
}

.single-pricing-plan strong {
    color: var(--primary-orange);
    font-size: 2.5rem;
}

.single-pricing-plan p {
    color: var(--text-gray);
}

/* Отзывы */
.single-review-slide {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-green);
    min-height: auto !important;
    height: auto !important;
}

.single-review-slide h4 {
    color: var(--text-dark);
    font-weight: 700;
}

.single-review-slide span {
    color: var(--text-gray);
}

.single-review-slide p {
    color: var(--text-gray);
    margin-bottom: 0;
    white-space: normal;
    overflow: visible;
}

.single-review-slide i.fas.fa-star {
    color: #ffc107;
}

/* Swiper для отзывов */
.review-slider .swiper-slide {
    height: auto !important;
}

.review-slider .swiper-wrapper {
    align-items: stretch;
}

/* Кнопки */
.btn-primary {
    background: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 30px;
    border-radius: 10px;
}

.btn-primary:hover {
    background: #ff8a26 !important;
    border-color: #ff8a26 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 108, 0, 0.4);
}

.btn {
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 30px;
    border-radius: 10px;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Секции */
.section-title h2 {
    color: var(--text-dark);
    font-weight: 700;
}

.section-title p {
    color: var(--text-gray);
}

/* Pricing features */
.pricing-features h3 {
    color: var(--text-dark);
    font-weight: 700;
}

.pricing-features .list-item li {
    color: var(--text-dark);
}

.pricing-features .list-item li i {
    color: var(--primary-green);
}

/* App info */
.app-info h2 {
    color: var(--text-dark);
    font-weight: 700;
}

.app-info p {
    color: var(--text-gray);
}

/* Data centers */
.data-centers li {
    color: var(--text-dark);
}

.data-centers li i {
    color: var(--primary-orange);
}

/* Инструкция/Rules страница */
.instruction-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-orange);
}

.instruction-card h3,
.instruction-card h4 {
    color: var(--text-dark);
    font-weight: 700;
}

.instruction-card p,
.instruction-card li {
    color: var(--text-gray);
}

.instruction-step {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border-top: 3px solid var(--primary-green);
    transition: all 0.3s ease;
}

.instruction-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.instruction-step h4 {
    color: var(--text-dark);
    font-weight: 700;
}

.instruction-step p,
.instruction-step li {
    color: var(--text-gray);
}

/* Контакты страница */
.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-card h3,
.contact-info-card h4 {
    color: var(--text-dark);
    font-weight: 700;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-gray);
}

.contact-info-card i {
    color: var(--primary-orange);
}

/* Форма контактов */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 108, 0, 0.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .single-feature,
    .single-service,
    .single-pricing-plan,
    .single-review-slide,
    .instruction-card,
    .instruction-step,
    .contact-info-card {
        margin-bottom: 20px;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header улучшения */
.header-top.bg-primary {
    background-color: var(--text-dark) !important;
}

.header-menu ul li a:hover {
    color: var(--primary-orange) !important;
}

/* Banner */
.banner-content h1 {
    color: var(--text-dark);
}

.banner-content h2 {
    color: var(--text-gray);
}

