/* CHINA BUSINESS TOUR - UPDATED STYLES WITH ALL FIXES */
/* Стили с исправлениями согласно требованиям */

/* ======================== */
/* ОСНОВЫ И ПЕРЕМЕННЫЕ */
/* ======================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-50: #f8fafc;
    --primary-100: #f1f5f9;
    --primary-500: #64748b;
    --primary-600: #475569;
    --primary-700: #334155;
    --primary-800: #1e293b;
    --primary-900: #0f172a;
    --accent-500: #dc2626;
    --accent-600: #b91c1c;
    --accent-100: #fee2e2;
}

/* Убираем горизонтальную прокрутку */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-800);
}

/* ======================== */
/* ИСПРАВЛЕНИЕ 4: Результаты клиентов - фиксируем обрезку буквы "у" */
/* ======================== */

.testimonials-title {
    line-height: 1.3 !important;
    padding: 0.75rem 0 !important;
    margin-bottom: 2rem !important;
}

/* ======================== */
/* HERO SLIDER - ИСПРАВЛЕНИЕ 3 */
/* ======================== */

.hero-slider-container {
    position: relative;
    min-height: 600px;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slides-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    padding: 4rem 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Navigation - СКРЫТО ДЛЯ АВТОСЛАЙДЕРА */
.hero-slider-nav {
    display: none;
}

.hero-nav-btn {
    display: none;
}

/* Hero Indicators - СКРЫТО ДЛЯ АВТОСЛАЙДЕРА */
.hero-slider-indicators {
    display: none;
    z-index: 10;
}

.hero-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator:hover {
    background: rgba(220, 38, 38, 0.8);
    border-color: rgba(220, 38, 38, 0.8);
    transform: scale(1.2);
}

.hero-indicator.active {
    background: var(--accent-500);
    border-color: var(--accent-500);
    transform: scale(1.3);
}

/* ======================== */
/* УТИЛИТЫ И ТЕКСТ */
/* ======================== */

.gradient-text {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    line-height: 1.2;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem !important;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
    margin: 2rem 0;
}

/* ======================== */
/* АНИМАЦИИ */
/* ======================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================== */
/* КАРТОЧКИ И КОНТЕЙНЕРЫ */
/* ======================== */

.premium-card {
    background: white;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pain-indicator {
    border-left: 4px solid var(--accent-500);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(220, 38, 38, 0.01) 100%);
}

.solution-indicator {
    border-left: 4px solid #059669;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(5, 150, 105, 0.01) 100%);
}

.guarantee-card {
    border-left: 4px solid #059669;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(5, 150, 105, 0.01) 100%);
}

.expert-testimonial {
    border-left: 4px solid #7c3aed;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(124, 58, 237, 0.01) 100%);
}

/* ======================== */
/* CTA КНОПКИ (сохраняем анимацию подмигивания) */
/* ======================== */

.cta-button {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-align: center !important;
    font-size: 1rem !important;
}

.cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4) !important;
    background: linear-gradient(135deg, var(--accent-600) 0%, #991b1b 100%) !important;
    color: white !important;
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%) !important;
}

.cta-button.secondary:hover {
    box-shadow: 0 8px 25px rgba(71, 85, 105, 0.4) !important;
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%) !important;
}

.cta-button.urgent {
    background: linear-gradient(135deg, #ea580c 0%, var(--accent-500) 100%) !important;
    animation: pulse 2s infinite;
}

/* Подмигивание кнопки */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Дополнительные CTA варианты */
.header-cta {
    font-size: 0.9rem !important;
    padding: 0.75rem 1.5rem !important;
}

.hero-primary {
    background: linear-gradient(135deg, var(--accent-500) 0%, #dc2626 100%) !important;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3) !important;
}

.hero-secondary {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%) !important;
}

.hope-cta {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
}

.program-cta {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
}

.dates-cta-available {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
}

.dates-cta-urgent {
    background: linear-gradient(135deg, var(--accent-500) 0%, #991b1b 100%) !important;
    animation: pulse 2s infinite !important;
}

.dates-cta-discount {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
}

.contact-cta {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%) !important;
    font-size: 1.1rem !important;
    padding: 1.25rem 2rem !important;
}

/* ======================== */
/* КАРУСЕЛЬ ОТЗЫВОВ */
/* ======================== */

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    overflow: hidden;
}

.testimonials-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    min-height: 350px;
    display: flex;
    align-items: stretch;
    width: 100%;
    flex-shrink: 0;
}

.carousel-slide .grid {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.carousel-slide .premium-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.testimonial-result {
    margin-top: auto;
}

.expert-card {
    border-left: 4px solid #059669;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(5, 150, 105, 0.01) 100%);
}

/* Навигационные кнопки карусели */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.carousel-nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    opacity: 1;
    background: #f8fafc;
}

.carousel-nav-btn i {
    font-size: 20px;
    color: var(--primary-700);
}

#prevBtn {
    left: 10px;
}

#nextBtn {
    right: 10px;
}

/* Индикаторы карусели */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.carousel-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator:hover {
    background-color: #94a3b8;
    transform: scale(1.1);
}

.carousel-indicator.active {
    background-color: var(--accent-500);
    transform: scale(1.3);
}

/* ======================== */
/* ИСПРАВЛЕНИЕ 6: ПРОГРАММА - Детальные стили */
/* ======================== */

.program-day {
    position: relative;
}

.program-day-badge {
    text-align: center;
    position: sticky;
    top: 100px;
}

.day-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 0.5rem;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.day-title {
    font-weight: 600;
    color: var(--primary-600);
    font-size: 0.9rem;
}

.program-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.program-item:last-child {
    border-bottom: none;
}

.program-item.highlight {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(5, 150, 105, 0.01) 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(5, 150, 105, 0.2);
    margin: 0.5rem 0;
}

.program-item strong {
    color: var(--primary-800);
    display: block;
    margin-bottom: 0.25rem;
}

.program-feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.program-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
}

/* ======================== */
/* ИСПРАВЛЕНИЕ 7: ПРАЙСИНГ - Выравнивание кнопок и плашек */
/* ======================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 600px; /* Фиксированная высота для выравнивания */
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent-500);
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: 'Популярный';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-800);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-500);
    margin-bottom: 0.5rem;
}

.price-description {
    color: var(--primary-600);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1; /* Растягиваем для выравнивания */
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--primary-600);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.pricing-features li i {
    color: #10b981;
    margin-right: 0.5rem;
    margin-top: 0.125rem;
}

/* ИСПРАВЛЕНИЕ 7: Выравнивание кнопок и информационных плашек */
.pricing-footer {
    margin-top: auto; /* Прижимаем к низу */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-info-badge {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #166534;
}

.pricing-info-badge.urgent {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #fecaca;
    color: #991b1b;
}

.pricing-info-badge.premium {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: #e2e8f0;
    color: var(--primary-700);
}

.pricing-cta {
    width: 100%;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    text-align: center !important;
}

/* ======================== */
/* ИСПРАВЛЕНИЕ 11: FAQ - Отступы в ответах */
/* ======================== */

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-800);
}

.faq-answer {
    padding: 0 2rem; /* Убрали bottom padding для закрытого состояния */
    background: #f8fafc;
    color: var(--primary-600);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 2rem; /* Отступы со всех сторон в открытом состоянии */
    max-height: 1000px !important; /* ИСПРАВЛЕНИЕ: Добавлена достаточная высота для контента */
    opacity: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-500);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* ======================== */
/* ИСПРАВЛЕНИЕ 10: ДАТЫ ТУРОВ - Выравнивание кнопок */
/* ======================== */

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.date-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 400px; /* Фиксированная высота */
}

.date-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.date-card.available {
    border-color: #10b981;
}

.date-card.limited {
    border-color: var(--accent-500);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, white 100%);
}

.date-header {
    margin-bottom: 1.5rem;
}

.date-header h3 {
    color: var(--primary-800);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.availability {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.date-card.available .availability {
    background: #dcfce7;
    color: #166534;
}

.date-card.limited .availability {
    background: #fee2e2;
    color: #991b1b;
}

.companies-highlight {
    font-size: 0.875rem;
    color: var(--primary-500);
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Растягиваем текст */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

/* ИСПРАВЛЕНИЕ 10: Кнопки прижимаем к низу и выравниваем */
.date-card-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.date-card .cta-button {
    width: 100%;
    padding: 1rem !important;
    margin: 0 !important;
}

.urgent-booking {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
    color: white;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    margin-top: 3rem;
}

.urgent-booking h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgent-booking p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons .cta-button.primary {
    background: white !important;
    color: var(--accent-500) !important;
}

.cta-buttons .cta-button.primary:hover {
    background: #f8fafc !important;
    transform: translateY(-2px);
    color: var(--accent-500) !important;
}

.cta-buttons .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 2px solid white !important;
}

.cta-buttons .cta-button.secondary:hover {
    background: white !important;
    color: var(--accent-500) !important;
}

/* ======================== */
/* ИСПРАВЛЕНИЕ 12: КОНТАКТЫ - Компактная форма */
/* ======================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-800);
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem; /* ИСПРАВЛЕНИЕ 12: Уменьшены отступы */
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--primary-700);
    margin-bottom: 0.25rem; /* ИСПРАВЛЕНИЕ 12: Уменьшен отступ */
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem; /* ИСПРАВЛЕНИЕ 12: Уменьшен padding */
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px; /* ИСПРАВЛЕНИЕ 12: Уменьшена высота */
    max-height: 120px;
}

.contact-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--accent-500);
}

.contact-info h3 {
    color: var(--primary-800);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--primary-600);
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--accent-500);
    width: 20px;
}

/* ======================== */
/* ИСПРАВЛЕНИЕ 9: СПОСОБЫ ОПЛАТЫ - Интерактивность */
/* ======================== */

.payment-interactive {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.payment-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.payment-tab {
    flex: 1;
    padding: 1.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-600);
}

.payment-tab:hover {
    background: rgba(220, 38, 38, 0.05);
    color: var(--primary-800);
}

.payment-tab.active {
    background: var(--accent-500);
    color: white;
    font-weight: 600;
}

.payment-content {
    padding: 3rem;
    min-height: 300px;
}

.payment-option {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.payment-option.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-details h3 {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-800);
    margin-bottom: 1rem;
}

.payment-features {
    list-style: none;
    margin: 2rem 0;
}

.payment-features li {
    padding: 0.75rem 0;
    color: var(--primary-600);
    display: flex;
    align-items: center;
}

.payment-features li i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.payment-highlight {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #10b981;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
}

.payment-highlight.warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-left-color: #f59e0b;
}

.payment-highlight.premium {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left-color: var(--primary-600);
}

/* ======================== */
/* АДАПТИВНОСТЬ */
/* ======================== */

@media (max-width: 768px) {
    .hero-title {
        line-height: 1.3;
        padding: 1rem 0;
        margin-bottom: 1.5rem !important;
        font-size: 2.5rem !important;
    }
    
    .hero-slider-container {
        min-height: 500px;
    }
    
    .hero-slide {
        padding: 2rem 0;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .carousel-container {
        padding: 0 60px;
    }
    
    .carousel-nav-btn {
        width: 44px;
        height: 44px;
    }
    
    #prevBtn {
        left: 5px;
    }
    
    #nextBtn {
        right: 5px;
    }
    
    .carousel-slide .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .dates-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-tabs {
        flex-direction: column;
    }
    
    .payment-tab {
        border-bottom: 1px solid #e2e8f0;
    }
    
    .payment-content {
        padding: 2rem;
    }
    
    .program-day-badge {
        position: static;
        margin-bottom: 2rem;
    }
    
    .day-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .urgent-booking {
        padding: 2rem;
    }
    
    .urgent-booking h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.4;
    }
    
    .hero-image img {
        height: 200px;
    }
}

/* Планшеты */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .dates-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ======================== */
/* ДОПОЛНИТЕЛЬНЫЕ ИСПРАВЛЕНИЯ */
/* ======================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.max-w-7xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

/* Убираем конфликты */
button, a[class*="bg-accent"] {
    transition: all 0.3s ease !important;
}

/* Обеспечиваем видимость всех элементов */
main, section, div {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Стили для акцентных элементов */
.bg-accent-100 {
    background-color: var(--accent-100);
}

.text-accent-500 {
    color: var(--accent-500);
}