/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .order-card,
    .faq-item,
    .testimonial-card,
    .research-item,
    .step,
    .gallery-item,
    .feature-item {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    /* Larger touch targets */
    .btn {
        min-height: 44px;
    }
    
    .faq-question {
        min-height: 60px;
        padding: 20px;
    }
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 28px;
    color: #FF6B35;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #FF6B35;
}

.header-contact {
    color: #FF6B35;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

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

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 35px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero-benefits {
    list-style: none;
    margin: 30px 0;
}

.hero-benefits li {
    padding: 15px 0;
    font-size: 17px;
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.3s;
    z-index: 1;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
}

.video-container iframe {
    border-radius: 20px;
    display: block;
}

/* Buttons */
.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e8851a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.5);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    overflow: auto;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #333;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Research Section */
.research {
    background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%);
    position: relative;
}

.research::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #F7931E, #4CAF50, #667eea);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.research-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.3s;
    border-top: 4px solid #FF6B35;
    position: relative;
    overflow: hidden;
}

.research-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,107,53,0.05) 0%, rgba(102,126,234,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.research-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

.research-item:hover::before {
    opacity: 1;
}

.research-item:nth-child(2) {
    border-top-color: #4CAF50;
}

.research-item:nth-child(3) {
    border-top-color: #667eea;
}

.research-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.disclaimer-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

.step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 8px 25px rgba(76,175,80,0.4);
}

.step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Results Section */
.results {
    background: #f9f9f9;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.result-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.result-box h3 {
    color: #FF6B35;
    margin-bottom: 20px;
}

.result-box ul {
    list-style: none;
}

.result-box li {
    padding: 8px 0;
}

.timeline p {
    padding: 15px;
    background: #f5f5f5;
    margin: 10px 0;
    border-radius: 5px;
}

.disclaimer {
    color: #d32f2f;
    font-style: italic;
    margin-top: 20px;
}

/* Product Gallery */
.product-gallery {
    background: #f9f9f9;
    padding: 80px 0;
}

.product-gallery h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.product-gallery h2 i {
    color: #FF6B35;
    margin-right: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.gallery-item.main-product {
    grid-row: span 2;
    min-height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.product-image-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    text-align: center;
    padding: 40px;
    cursor: pointer;
    transition: all 0.3s;
}

.product-image-placeholder:hover {
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
}

.product-image-placeholder.small {
    min-height: 190px;
    padding: 20px;
}

.product-image-placeholder i {
    margin-bottom: 15px;
    color: #bbb;
}

.product-image-placeholder p {
    margin: 10px 0;
    font-weight: 600;
    color: #666;
}

.product-image-placeholder small {
    color: #999;
    font-size: 12px;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.feature-item i {
    font-size: 36px;
    color: #FF6B35;
    margin-bottom: 15px;
}

.feature-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 18px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials h2 {
    color: white;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.testimonial-card h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-card p {
    line-height: 1.7;
}

.testimonial-card .disclaimer {
    font-size: 12px;
    margin-top: 15px;
    color: rgba(255,255,255,0.8);
}

/* Order Section */
.order-section {
    background: #f9f9f9;
}

.order-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
}

.order-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.order-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.order-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    position: relative;
    transition: transform 0.3s;
}

.order-card:hover {
    transform: translateY(-5px);
}

.badge {
    background: #FF6B35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.order-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 10px;
}

.price-desc {
    color: #666;
    margin-bottom: 30px;
}

.order-card ul {
    list-style: none;
    margin: 30px 0;
}

.order-card li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.order-card .btn {
    width: 100%;
    margin-top: 20px;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.form-group small {
    color: #999;
    font-size: 14px;
}

/* FAQ */
.faq {
    background: #f9f9f9;
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

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

.faq-question h4 {
    color: #2c3e50;
    font-size: 18px;
}

.toggle {
    font-size: 24px;
    color: #FF6B35;
    font-weight: 700;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

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

/* Contact */
.contact {
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 40px auto;
    line-height: 2;
}

.contact-info p {
    font-size: 18px;
    margin: 15px 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 14px;
    color: #bbb;
    margin-top: 20px;
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
}

.thank-you-container {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

.thank-you-container h1 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.thank-you-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.order-summary {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.order-summary h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row .label {
    font-weight: 600;
    color: #666;
}

.detail-row .value {
    color: #333;
}

.product-detail {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.price-detail {
    border-bottom: none;
    font-size: 18px;
}

.price-detail .value {
    color: #FF6B35;
    font-weight: 700;
}

.next-steps {
    text-align: left;
    margin: 30px 0;
}

.next-steps h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps li {
    margin: 10px 0;
    line-height: 1.6;
}

.consultation-info {
    text-align: left;
    margin: 30px 0;
    background: #e8f5e9;
    padding: 25px;
    border-radius: 10px;
}

.consultation-info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.consultation-info ul {
    list-style: none;
    padding: 0;
}

.consultation-info li {
    padding: 8px 0;
}

.contact-support {
    background: #fff3cd;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.contact-support p {
    margin: 5px 0;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 25px;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.cookie-text a {
    color: #F7931E;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76,175,80,0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
}

/* Responsive Design */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .research-grid,
    .steps,
    .product-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .gallery-item.main-product {
        grid-column: span 2;
    }
}

/* Mobile (до 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav {
        display: none;
    }
    
    .header-contact {
        font-size: 14px;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 0;
    }
    
    .hero::before,
    .hero::after {
        display: none; /* Hide decorative circles on mobile */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-benefits {
        text-align: left;
        max-width: 400px;
        margin: 30px auto;
    }
    
    .hero-benefits li {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .btn-large {
        padding: 15px 35px;
        font-size: 16px;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .section-header h2,
    h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    /* Grids */
    .research-grid,
    .steps,
    .results-grid,
    .testimonial-grid,
    .order-options,
    .product-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .research-item,
    .step,
    .result-item,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.main-product {
        grid-row: span 1;
        grid-column: span 1;
        min-height: 300px;
    }
    
    .gallery-item img {
        min-height: 300px;
        object-fit: contain; /* Показать всё изображение на мобильных */
    }
    
    .product-image-placeholder {
        min-height: 250px;
    }
    
    .product-image-placeholder.small {
        min-height: 200px;
    }
    
    /* Order Cards */
    .order-card {
        padding: 25px 20px;
    }
    
    .price {
        font-size: 32px;
    }
    
    /* Contact Section */
    .contact > .container > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .contact h3 {
        font-size: 22px;
    }
    
    #contactForm {
        padding: 25px 20px !important;
    }
    
    /* FAQ */
    .faq-question h4 {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Cookie Banner */
    .cookie-banner {
        padding: 20px 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-text h4 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 25px 20px;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Small Mobile (до 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .video-container iframe {
        height: 200px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .price {
        font-size: 28px;
    }
    
    .order-card ul li {
        font-size: 14px;
    }
    
    .feature-item i {
        font-size: 28px;
    }
    
    .feature-item h4 {
        font-size: 16px;
    }
    
    .cookie-text h4 {
        font-size: 15px;
    }
}
