/* 
 * Vibromera Custom Styles for WordPress
 * Compatible with Hestia Pro Theme
 */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #2E3440 0%, #1976D2 100%);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;

}

.top-bar-badge {
    background: #27ae60;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.language-select {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;

}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
    opacity: 0.95;
    z-index: -1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
    color: white;
    text-decoration: none;
}

.nav {
    list-style: none;
    display: flex;

    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: white;
    border-bottom-color: #E91E63;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-decoration: none;
}

.header-actions {
    display: flex;
    align-items: center;

}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cart-icon:hover {
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cart-badge:not(:empty) {
    display: flex;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
    color: white;
    text-decoration: none;
}

.header .btn {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.header .btn:hover {
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-outline {
    background: transparent;
    color: #1976D2;
    border: 2px solid #1976D2;
    box-shadow: none;
}

.btn-outline:hover {
    background: #1976D2;
    color: white;
}

.header .btn-outline {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);

}

.header .btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-large {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-white {
    background: white;
    color: #1976D2;
}

.btn-white:hover {
    background: #f8f9fa;
    color: #2E3440;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') repeat;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;

    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;

    flex-wrap: wrap;
}

.feature {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.product-card-hero {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;

    border: 1px solid rgba(255,255,255,0.2);
}

.product-card-hero img {
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-card-hero img:hover {
    transform: scale(1.05);
}

.video-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.9;
}

.video-link:hover {
    color: white;
    text-decoration: none;
}

/* Section Styling */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: white;
}

.section-header {
    background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    margin-bottom: 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.section-header h2 {
    color: white;
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.section-content {
    background: white;
    padding: 2rem;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    border-top: none;
}

.support-section .section-content,
.contact-section .section-content {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
  
    border: 1px solid rgba(255,255,255,0.2);
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    margin-bottom: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stock-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stock-available {
    background: #d4edda;
    color: #155724;
}

.stock-order {
    background: #fff3cd;
    color: #856404;
}

.product-image {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.product-image img,
.accessory-image img {
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-image img:hover,
.accessory-image img:hover {
    transform: scale(1.05);
}

.product-title {
    font-size: 1.5rem;
    color: #2E3440;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    color: #666;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 1.5rem;
}

.product-features {
    margin-bottom: 2rem;
}

.feature-item {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;

}

.product-actions .btn {
    flex: 1;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-price {
    color: #1976D2;
    font-weight: 600;
    margin: 1rem 0;
}

/* Support Section */
.support-section {
    background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
    color: white;
}

.contact-section {
    background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    margin: 3rem 0;
}

.support-feature {
    text-align: center;
}

.support-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;

}

.pricing-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;

}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
}

.pricing-amount span {
    font-size: 1.2rem;
    opacity: 0.8;
}

.pricing-features {
    display: flex;
    flex-direction: column;

}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));

}

.testimonial {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;

    margin-bottom: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1976D2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.stars {
    color: #f39c12;
    font-size: 1.2rem;
}

.testimonial-stats {
    display: flex;

    margin-top: 1rem;
    flex-wrap: wrap;
}

.testimonial-stats span {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-single {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;

}

.testimonial-author {
    display: flex;
    align-items: center;

    margin-top: 1rem;
}

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

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    margin-bottom: 2rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2E3440;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    margin-top: 2rem;
}

.benefit {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Accessories */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

}

.accessory-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.accessory-image {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.accessory-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1976D2;
    margin: 1rem 0;
}

.stock-status {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #2E3440;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #1976D2;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #E91E63;
    text-decoration: none;
}

.payment-methods {
    display: flex;

    margin: 1rem 0;
    flex-wrap: wrap;
}

.payment-method {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.social-links {
    display: flex;

    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #1976D2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #E91E63;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;

}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    z-index: 1000;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Compatibility with Hestia Pro */
.vibromera-home {
    --hestia-primary-color: #1976D2;
}

.vibromera-home .btn {
    background: linear-gradient(135deg, var(--hestia-primary-color, #1976D2) 0%, #2E3440 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .nav {
        display: none;
    }
    
    .header {
        padding: 0.8rem 0;
    }
    
    .header-content {
        flex-direction: column;

    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .header-actions {
        flex-wrap: wrap;
        justify-content: center;

    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .products-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header {
        padding: 1rem;
    }
} 
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

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

        /* Top Bar */
        .top-bar {
            background: linear-gradient(135deg, #2E3440 0%, #1976D2 100%);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-bar-left, .top-bar-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .top-bar-badge {
            background: #27ae60;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .language-select {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 0;
            backdrop-filter: blur(10px);
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
            opacity: 0.95;
            z-index: -1;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.05);
            text-shadow: 0 4px 8px rgba(0,0,0,0.4);
        }

        .nav {
            list-style: none;
            display: flex;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
        }

        .nav-link {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }

        .nav-link:hover {
            color: white;
            border-bottom-color: #E91E63;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cart-icon {
            position: relative;
            font-size: 1.5rem;
            cursor: pointer;
            color: rgba(255,255,255,0.9);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .cart-icon:hover {
            color: white;
            transform: scale(1.1);
            text-decoration: none;
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #e74c3c;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .cart-badge:not(:empty) {
            display: flex;
        }

        .btn {
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
            text-align: center;
        }

        .btn {
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
        }
        
        /* Специальные стили для кнопок в header'е */
        .header .btn {
            background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
            box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
        }

        .header .btn:hover {
            box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: #1976D2;
            border: 2px solid #1976D2;
            box-shadow: none;
        }

        .btn-outline:hover {
            background: #1976D2;
            color: white;
        }
        
        /* Специальные стили для outline кнопок в header'е */
        .header .btn-outline {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
        }

        .header .btn-outline:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.5);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .btn-large {
            padding: 1.2rem 2rem;
            font-size: 1.1rem;
        }

        .btn-full {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
            color: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') repeat;
            animation: rotate 60s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .hero-features {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .feature {
            background: rgba(255,255,255,0.2);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .product-card-hero {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .product-card-hero img {
            transition: transform 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .product-card-hero img:hover {
            transform: scale(1.05);
        }

        .product-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .video-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            opacity: 0.9;
        }

        /* Section Styling */
        .section {
            padding: 4rem 0;
        }

        .section-alt {
            background: white;
        }

        .section-title-legacy {
            text-align: center;
            font-size: 2.5rem;
            color: #2E3440;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
        }

        /* Product Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid #f0f0f0;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .stock-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .stock-available {
            background: #d4edda;
            color: #155724;
        }

        .stock-order {
            background: #fff3cd;
            color: #856404;
        }

        .product-image {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
        }

        .product-image img,
        .accessory-image img {
            transition: transform 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .product-image img:hover,
        .accessory-image img:hover {
            transform: scale(1.05);
        }

        .product-title {
            font-size: 1.5rem;
            color: #2E3440;
            margin-bottom: 0.5rem;
        }

        .product-subtitle {
            color: #666;
            margin-bottom: 1rem;
        }

        .product-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1976D2;
            margin-bottom: 1.5rem;
        }

        .product-features {
            margin-bottom: 2rem;
        }

        .feature-item {
            color: #666;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .product-actions {
            display: flex;
            gap: 1rem;
        }

        .product-actions .btn {
            flex: 1;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-price {
            color: #1976D2;
            font-weight: 600;
            margin: 1rem 0;
        }

        /* Support Section */
        .support-section {
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
            color: white;
        }

        .support-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .support-feature {
            text-align: center;
        }

        .support-feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .pricing-card {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            backdrop-filter: blur(10px);
        }

        .pricing-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .pricing-amount {
            font-size: 3rem;
            font-weight: 700;
        }

        .pricing-amount span {
            font-size: 1.2rem;
            opacity: 0.8;
        }

        .pricing-features {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .btn-white {
            background: white;
            color: #1976D2;
        }

        .btn-white:hover {
            background: #f8f9fa;
            color: #2E3440;
        }

        /* About Balanset Section */
        .balanset-intro {
            margin: 3rem 0;
        }

        .balanset-overview {
            margin: 2rem 0;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin: 2rem 0;
        }

        .overview-text h3 {
            color: #2E3440;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .overview-text p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .key-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .feature-point {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #1976D2;
        }

        .feature-icon {
            font-size: 1.5rem;
            margin-top: 0.2rem;
        }

        .feature-point strong {
            color: #2E3440;
            display: block;
            margin-bottom: 0.5rem;
        }

        .feature-point p {
            color: #666;
            margin: 0;
            font-size: 0.9rem;
        }

        .device-showcase {
            text-align: center;
            position: relative;
        }

        .how-it-works {
            margin: 4rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            padding: 3rem;
        }

        .how-it-works h3 {
            color: #2E3440;
            text-align: center;
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .work-intro {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            font-style: italic;
        }

        .process-steps-visual {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .process-step-visual {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            animation: fadeInUp 0.6s ease-out;
        }
        
        .process-step-visual:nth-child(1) { animation-delay: 0.1s; }
        .process-step-visual:nth-child(2) { animation-delay: 0.2s; }
        .process-step-visual:nth-child(3) { animation-delay: 0.3s; }
        .process-step-visual:nth-child(4) { animation-delay: 0.4s; }
        .process-step-visual:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .process-step-visual:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .step-header {
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
            color: white;
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .step-number {
            background: rgba(255,255,255,0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .step-header h4 {
            color: white;
            margin: 0;
            font-size: 1.7rem;
        }

        .step-visual-content {
            padding: 3rem;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .step-text-only {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .step-image {
            position: relative;
        }

        .step-image img {
            width: 100%;
            height: auto;
            max-width: 600px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .step-image:hover img {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .step-images-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        .step-images-grid img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .step-images-grid img:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .image-caption {
            text-align: center;
            font-weight: bold;
            color: #1976D2;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }

        .step-description {
            color: #666;
        }

        .step-description p {
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .step-details {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .step-details li {
            margin-bottom: 0.8rem;
            padding-left: 2rem;
            position: relative;
            color: #666;
            line-height: 1.5;
        }

        .step-details li::before {
            content: '✓';
            color: #1976D2;
            font-weight: bold;
            position: absolute;
            left: 0;
            background: #e3f2fd;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        /* Адаптивные стили для процесса */
        @media (max-width: 1200px) {
            .process-steps-visual {
                max-width: 1000px;
            }
            
            .step-visual-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
                padding: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .process-steps-visual {
                max-width: 100%;
            }
            
            .step-visual-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1.5rem;
            }
            
            .step-images-grid {
                grid-template-columns: 1fr;
            }
            
            .step-header {
                padding: 1rem;
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .step-image img {
                max-width: 100%;
            }
        }

        .technical-specs {
            margin: 4rem 0;
        }

        /* Единый стиль для всех контейнеров заголовков секций */
        .section-header,
        .specs-header {
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
            color: white;
            padding: 2rem;
            border-radius: 15px 15px 0 0;
            margin-bottom: 0;
            text-align: center;
            box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
        }

        /* Единый стиль для всех заголовков секций */
        .section-header h2,
        .section-header h3,
        .specs-header h3 {
            color: white;
            margin: 0;
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            line-height: 1.2;
        }

        /* Адаптивные размеры заголовков */
        @media (max-width: 768px) {
            .section-header h2,
            .section-header h3,
            .specs-header h3 {
                font-size: 1.8rem;
            }
            
            .section-header,
            .specs-header {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .section-header h2,
            .section-header h3,
            .specs-header h3 {
                font-size: 1.5rem;
            }
            
            .section-header,
            .specs-header {
                padding: 1rem;
            }
        }



        .section-content,
        .specs-grid {
            background: white;
            padding: 2rem;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid #f0f0f0;
            border-top: none;
        }
        
        /* Специальные стили для section-content на цветных фонах */
        .support-section .section-content,
        .contact-section .section-content {
            background: rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .spec-category {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .spec-category:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            background: white;
        }

        .spec-category h4 {
            color: #2E3440;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .spec-category ul {
            list-style: none;
            padding: 0;
        }

        .spec-category li {
            color: #666;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.5;
        }

        .spec-category li::before {
            content: '▶';
            color: #1976D2;
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }



        .method-explanation {
            margin: 4rem 0;
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
            border-radius: 20px;
            padding: 3rem;
            color: white;
        }

        .method-explanation h3 {
            color: white;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .method-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            text-align: center;
        }

        .method-formula {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .method-formula h4 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .method-formula p {
            font-size: 1.2rem;
            margin: 0;
        }

        .method-steps-detailed {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .method-step-detail {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .method-step-detail:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }

        .step-badge {
            background: white;
            color: #1976D2;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .method-step-detail p {
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .method-steps-detailed {
                grid-template-columns: 1fr;
            }
        }

        /* Vibration Dangers Section */
        .vibration-dangers {
            margin: 4rem 0;
            background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
            border-radius: 20px;
            padding: 3rem;
            border-left: 5px solid #e74c3c;
        }

        .vibration-dangers h3 {
            color: #c0392b;
            text-align: center;
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .danger-intro {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            font-style: italic;
        }

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

        .danger-category {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #f8d7da;
        }

        .danger-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(231, 76, 60, 0.2);
        }

        .danger-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .danger-icon {
            font-size: 2rem;
        }

        .danger-header h4 {
            color: #c0392b;
            margin: 0;
            font-size: 1.3rem;
        }

        .danger-list {
            list-style: none;
            padding: 0;
        }

        .danger-list li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.6;
            color: #666;
        }

        .danger-list li::before {
            content: '▶';
            color: #e74c3c;
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }

        .danger-list strong {
            color: #c0392b;
        }

        .critical-levels {
            margin: 3rem 0;
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .critical-levels h4 {
            color: #c0392b;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 1.5rem;
        }

        .levels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .level-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .level-card:hover {
            transform: translateY(-3px);
        }

        .level-good {
            border-color: #1976D2;
            background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
        }

        .level-acceptable {
            border-color: #f39c12;
            background: linear-gradient(135deg, #fef9e7 0%, #fdf2e9 100%);
        }

        .level-bad {
            border-color: #e67e22;
            background: linear-gradient(135deg, #fdeaa7 0%, #fdcb6e 20%, #fff 100%);
        }

        .level-critical {
            border-color: #e74c3c;
            background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
        }

        .level-value {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .level-good .level-value { color: #1976D2; }
        .level-acceptable .level-value { color: #f39c12; }
        .level-bad .level-value { color: #e67e22; }
        .level-critical .level-value { color: #e74c3c; }

        .level-unit {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .level-status {
            font-weight: bold;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .level-card p {
            margin: 0;
            font-size: 0.9rem;
            color: #666;
        }

        .solution-highlight {
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
            border-radius: 15px;
            padding: 2rem;
            margin-top: 3rem;
            color: white;
            text-align: center;
        }

        .solution-highlight h4 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .solution-highlight p {
            margin: 0;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .vibration-dangers {
                padding: 2rem 1rem;
            }
            
            .dangers-grid {
                grid-template-columns: 1fr;
            }
            
            .levels-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .levels-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Introduction Section */
        .intro-content {
            margin: 3rem 0;
        }

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

        .intro-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .intro-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .intro-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .intro-card h3 {
            color: #2E3440;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .intro-card p {
            color: #666;
            margin-bottom: 1rem;
        }

        .intro-card ul {
            list-style: none;
            padding: 0;
        }

        .intro-card li {
            color: #666;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .intro-card li::before {
            content: '✓';
            color: #1976D2;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .intro-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
            border-radius: 15px;
            color: white;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.4;
        }

        .intro-cta {
            text-align: center;
            margin: 3rem 0;
        }

        .intro-cta h3 {
            color: #2E3440;
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        .equipment-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .equipment-type {
            background: white;
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .equipment-type:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .equipment-icon {
            font-size: 1.5rem;
        }

        /* Case Studies Section */
        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .case-study {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .case-study:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .case-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .case-icon {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .case-title {
            font-size: 1.3rem;
            color: #2E3440;
            margin: 0;
        }

        .case-subtitle {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        .case-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .metric {
            text-align: center;
        }

        .metric-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1976D2;
            margin-bottom: 0.25rem;
        }

        .metric-label {
            font-size: 0.8rem;
            color: #666;
            line-height: 1.2;
        }

        .case-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .case-result {
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
            color: white;
            padding: 1rem;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .testimonial {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #1976D2;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        .stars {
            color: #f39c12;
            font-size: 1.2rem;
        }

        .testimonial-stats {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .testimonial-stats span {
            background: #f8f9fa;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Contact Form */
        .contact-section {
            background: linear-gradient(135deg, #1976D2 0%, #2E3440 100%);
        }

        .contact-form {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

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

        .form-group-full {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2E3440;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

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

        .form-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .benefit {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
        }

        /* Accessories */
        .accessories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .accessory-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

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

        .accessory-image {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .accessory-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1976D2;
            margin: 1rem 0;
        }

        .stock-status {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        /* Footer */
        .footer {
            background: #2E3440;
            color: white;
            padding: 3rem 0 1rem;
        }

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

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #1976D2;
        }

        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #E91E63;
        }

        .payment-methods {
            display: flex;
            gap: 1rem;
            margin: 1rem 0;
            flex-wrap: wrap;
        }

        .payment-method {
            background: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: #1976D2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #E91E63;
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            animation: pulse 2s infinite;
            z-index: 1000;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        .section-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .testimonial-single {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 2rem;
            margin-top: 2rem;
            backdrop-filter: blur(10px);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .nav {
                display: none;
            }
            
            .header {
                padding: 0.8rem 0;
            }
            
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            .header-actions {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem;
            }
            
            .btn {
                font-size: 0.9rem;
                padding: 0.6rem 1.2rem;
            }
            
            .products-grid,
            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .product-actions {
                flex-direction: column;
            }
        }