/* 🎨 Глобальні змінні */
:root {
    --primary-color: #ff6b6b;
    --primary-hover: #ff5252;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --dark-color: #2d3436;
    --light-color: #f8f9fa;
    --text-color: #2d3436;
    --text-light: #636e72;
    --border-color: #dfe6e9;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 50px rgba(0,0,0,0.15);
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-orange: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* 🔄 Скидання стилів */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* 🎯 Шапка сайту */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    font-size: 32px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

/* 🚀 Hero секція */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.95;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 60px 0;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: var(--primary-color);
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-arrow {
    font-size: 24px;
    font-weight: bold;
}

.hero-note {
    margin-top: 20px;
    font-size: 18px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* 💰 Блок з ціною */
.price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 20px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.discount-badge {
    background: var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: 12px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.5);
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.old-price {
    font-size: 22px;
    text-decoration: line-through;
    opacity: 0.7;
    color: rgba(255,255,255,0.7);
}

.new-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* ⏰ Таймер */
.timer-block {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 20px;
    margin: 25px 0;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.timer-label {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.15);
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 75px;
}

.timer-value {
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.timer-unit {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 5px;
}

.timer-separator {
    font-size: 32px;
    font-weight: bold;
    color: white;
    opacity: 0.6;
}

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

/* 📋 Секції */
section {
    padding: 80px 0;
}

/* 📊 Статистика */
.stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
}

.stats-intro {
    text-align: center;
    margin-bottom: 40px;
}

.stats-intro .section-title {
    color: white;
    margin-bottom: 15px;
}

.stats-text {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .stats-text {
        font-size: 16px;
    }
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* ℹ️ Про нас */
.about {
    background: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.about-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* 🎥 Приклади робіт */
.examples {
    background: white;
}

/* Загальна обгортка для всіх каруселей */
.carousel-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 60px;
}

/* Карусель відео */
.videos-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.videos-carousel::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 280px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    scroll-snap-align: center;
    background: #000;
    position: relative;
    display: block;
    text-decoration: none;
}

.video-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s;
}

.video-card:hover .video-overlay {
    background: linear-gradient(transparent 20%, rgba(0,0,0,0.9) 100%);
}

.play-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.video-card:hover .play-icon {
    transform: scale(1.15);
    background: var(--primary-color);
    color: white;
}

.video-label {
    position: absolute;
    bottom: 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 🎵 Аудіо секція */
.audio-section {
    margin-top: 80px;
}

.audio-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
}

/* Карусель аудіо */
.audio-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.audio-carousel::-webkit-scrollbar {
    display: none;
}

.audio-card {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s;
    scroll-snap-align: center;
}

.audio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.audio-card .audio-info h4 {
    color: white;
}

.audio-icon {
    font-size: 40px;
}

.audio-info {
    flex: 1;
    min-width: 0;
}

.audio-info h4 {
    margin-bottom: 10px;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

audio {
    width: 100%;
    height: 40px;
    border-radius: 20px;
}

/* ⭐ Відгуки */
.reviews {
    background: var(--light-color);
}

.reviews-carousel-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.reviews-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.reviews-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.review-card {
    flex: 0 0 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.review-image {
    width: 100%;
    height: auto;
    display: block;
    background: #e0e0e0;
    min-height: 450px;
    object-fit: cover;
}

/* Кнопки каруселі */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn span {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.carousel-btn:hover span {
    color: white;
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

/* Індикатори (точки) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: var(--primary-hover);
}

/* 📝 Форма замовлення */
.order {
    background: white;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.order-info .section-title {
    text-align: left;
}

.order-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.order-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.benefit-icon {
    font-size: 24px;
}

.order-form-wrapper {
    background: var(--light-color);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

/* 🎯 Спрощена секція замовлення */
.order-content-simple {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.order-content-simple .section-title {
    margin-bottom: 20px;
}

.order-content-simple .order-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.order-arrow {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.order-terms-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.order-terms-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

.order-terms-note a:hover {
    color: var(--primary-hover);
}

.order-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px 60px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 60px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.order-main-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 107, 107, 0.5);
}

.order-main-btn .btn-icon {
    font-size: 28px;
}

/* 📱 Модальне вікно месенджерів */
.messenger-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.messenger-modal.active {
    opacity: 1;
    visibility: visible;
}

.messenger-modal-content {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.messenger-modal.active .messenger-modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
}

.modal-title {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.modal-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-instruction {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 18px;
    color: #856404;
    margin-bottom: 30px;
    border: 2px solid #ffc107;
}

.modal-instruction strong {
    color: var(--primary-color);
    font-size: 20px;
}

.messenger-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.messenger-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 35px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 140px;
}

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

.viber-btn {
    background: linear-gradient(135deg, #7360f2 0%, #59267c 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(115, 96, 242, 0.4);
}

.viber-btn:hover {
    box-shadow: 0 15px 40px rgba(115, 96, 242, 0.5);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #005f8f 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
}

.telegram-btn:hover {
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
}

.messenger-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.messenger-icon svg {
    width: 35px;
    height: 35px;
}

.messenger-name {
    font-size: 18px;
    font-weight: 700;
}

/* 📱 Соцмережі */
.social {
    background: var(--light-color);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.social-card {
    background: white;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 3px solid transparent;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.social-card.tiktok:hover { border-color: #000000; }
.social-card.youtube:hover { border-color: #FF0000; }
.social-card.instagram:hover { border-color: #E1306C; }
.social-card.telegram:hover { border-color: #0088cc; }
.social-card.viber:hover { border-color: #7360f2; }

.social-icon {
    font-size: 56px;
    margin-bottom: 15px;
}

.social-card h3 {
    font-size: 20px;
    margin-bottom: 0;
}

/* 🦶 Футер */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-section p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.7);
}

.footer-section a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.phone-link, .email-link {
    color: var(--accent-color) !important;
    text-decoration: none;
    transition: all 0.3s;
}

.phone-link:hover, .email-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* ⬆️ Кнопка вгору */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
}

/* 📱 Адаптивність */
@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .order-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .price-block {
        flex-direction: column;
        gap: 10px;
    }
    
    .discount-badge {
        font-size: 20px;
        padding: 10px 18px;
    }
    
    .new-price {
        font-size: 36px;
    }
    
    .timer-block {
        padding: 20px 15px;
    }
    
    .timer-item {
        padding: 10px 12px;
        min-width: 55px;
    }
    
    .timer-value {
        font-size: 24px;
    }
    
    .timer-unit {
        font-size: 10px;
    }
    
    .timer-separator {
        font-size: 24px;
    }
    
    .timer-label {
        font-size: 14px;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .audio-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        flex: 0 0 280px;
    }
    
    .video-card {
        flex: 0 0 220px;
        height: 400px;
    }
    
    .play-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .video-label {
        font-size: 12px;
        bottom: 15px;
    }
    
    .audio-card {
        flex: 0 0 260px;
    }
    
    .carousel-wrapper {
        padding: 0 45px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn span {
        font-size: 24px;
    }
    
    .carousel-btn-prev {
        left: 0;
    }
    
    .carousel-btn-next {
        right: 0;
    }
    
    .order-form-wrapper {
        padding: 30px 20px;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-main-btn {
        padding: 20px 40px;
        font-size: 20px;
    }
    
    .messenger-modal-content {
        padding: 40px 25px;
        margin: 20px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .messenger-buttons {
        flex-direction: row;
        gap: 15px;
    }
    
    .messenger-btn {
        padding: 20px 25px;
        min-width: 120px;
    }
    
    .messenger-icon {
        width: 50px;
        height: 50px;
    }
    
    .messenger-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .messenger-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-btn {
        padding: 15px 35px;
        font-size: 16px;
    }
    
    .review-card {
        flex: 0 0 250px;
    }
    
    .video-card {
        flex: 0 0 180px;
        height: 320px;
    }
    
    .play-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .video-label {
        font-size: 11px;
        bottom: 12px;
    }
    
    .audio-card {
        flex: 0 0 240px;
        padding: 15px;
    }
    
    .audio-icon {
        font-size: 32px;
    }
    
    .review-image {
        min-height: 350px;
    }
    
    .carousel-wrapper {
        padding: 0 35px;
    }
    
    .carousel-btn-prev {
        left: 0;
    }
    
    .carousel-btn-next {
        right: 0;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .carousel-btn span {
        font-size: 20px;
    }
    
    .carousel-dots {
        margin-top: 20px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 24px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* 🎁 Промо текст під таймером */
.timer-promo {
    margin-top: 15px;
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
}

.timer-promo #promoDate {
    text-decoration: underline;
}

/* ❓ FAQ секція */
.faq {
    background: white;
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--light-color);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    text-align: left;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    background: #e8e9eb;
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: white;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* 🏢 ФОП в футері */
.footer-fop {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Іконки соцмереж */
.social-icon-img {
    font-size: 56px;
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Адаптивність FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    
    .timer-promo {
        font-size: 14px;
    }
}

