/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Header */
.header {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    backdrop-filter: blur(10px);
    height: 80px;
    transition: transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.brand-description {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    text-align: right;
}

.brand-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: #007bff;
}

/* Navigation Menu */
.nav-menu {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 60px;
    transform: translateY(0);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* When header hides, pin nav to very top without gap */
.header.hidden + .nav-menu {
    top: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover {
    background-color: #000;
    color: #fff;
}

.chat-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-icon {
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Mobile Menu Toggle - скрываем на десктопе */
.mobile-menu-toggle {
    display: none;
}

/* Mobile Menu */
@media (max-width: 768px) {
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 999;
        padding: 1rem;
        max-height: 80vh;
        overflow-y: auto;
        border-top: none; /* Убираем возможную полоску */
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        color: #fff;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }
    
    /* Убираем возможные полоски от меню */
    .nav-menu {
        border-bottom: none;
    }
    
    .nav-list {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
}

/* Main Content */
main {
    margin-top: 140px; /* Adjust for header + nav-menu */
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #545b62;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.benefits-content .benefits-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin: 0.5rem auto 2rem auto;
    font-weight: 500;
    line-height: 1.2;
    max-width: 700px;
    display: block;
    padding: 0 1rem;
    width: 100%;
}

/* Legal and Privacy Pages */
.legal-content,
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}


/* Benefits Section */
.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
}

.benefits-header .section-title {
    margin-bottom: 0.5rem;
}

.benefits-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin: 0.5rem auto 0 auto;
    font-weight: 500;
    line-height: 1.2;
    max-width: 700px;
    display: block;
    padding: 0 1rem;
}


#how-to-use .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin: 0.1rem auto 2rem auto;
    font-weight: 500;
    line-height: 1.2;
    max-width: 700px;
    display: block;
    padding: 0 1rem;
}

#how-to-use .container {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-image {
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Product Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.5s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    font-family: inherit;
    transform: scale(1);
    position: relative;
    z-index: 1;
    overflow: visible;
}

.tab-btn:hover {
    background: #e3f2fd;
    border-color: #007bff;
    color: #007bff;
    transform: scale(1.05);
}

.tab-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transform: scale(1.1);
}

.tab-btn:active {
    transform: scale(0.95);
}


/* Product Images */
.benefits-img-container {
    position: relative;
    height: 400px;
}

.benefits-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: all 0.8s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0.95);
    border-radius: 12px;
    background: #f8f9fa;
    background-image: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    visibility: hidden;
    display: none;
}

.benefits-img.active,
.benefits-img.loaded {
    opacity: 1;
    position: relative;
    transform: scale(1);
    background: none !important;
    animation: none !important;
    visibility: visible;
    display: block;
}

.benefits-img.error {
    background: #f8f9fa !important;
    background-image: none !important;
    animation: none !important;
    visibility: visible;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* General image loading styles */
img.loaded {
    background: none !important;
    animation: none !important;
}

img.error {
    background: #f8f9fa !important;
    background-image: none !important;
    animation: none !important;
}

/* Legal, Privacy, Partners pages specific styles */
body.legal-page,
body.privacy-page,
body.partners-page {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

body.legal-page main,
body.privacy-page main,
body.partners-page main {
    margin-top: 80px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 4rem 0 !important;
    position: relative !important;
    z-index: 1 !important;
    box-sizing: border-box !important;
}

body.legal-page .container,
body.privacy-page .container,
body.partners-page .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 2 !important;
    box-sizing: border-box !important;
}

body.legal-page .blog-card,
body.privacy-page .blog-card,
body.partners-page .blog-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 3rem !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 3 !important;
    background: #fff !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e9ecef !important;
}

/* Объединяем заголовок с контентом в один блок */
body.legal-page .section-title,
body.privacy-page .section-title {
    margin-bottom: 2rem !important;
    text-align: center !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    color: #333 !important;
}

body.legal-page .legal-section,
body.privacy-page .privacy-section {
    margin-bottom: 2rem !important;
}

body.legal-page .legal-section:last-child,
body.privacy-page .privacy-section:last-child {
    margin-bottom: 0 !important;
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 768px) {
    body.legal-page main,
    body.privacy-page main {
        padding: 2rem 0 !important;
    }
    
    body.legal-page .container,
    body.privacy-page .container {
        padding: 0 15px !important;
    }
    
    body.legal-page .blog-card,
    body.privacy-page .blog-card {
        padding: 2rem !important;
    }
    
    body.legal-page .section-title,
    body.privacy-page .section-title {
        font-size: 2.2rem !important;
    }
    
    body.legal-page .legal-section h2,
    body.privacy-page .privacy-section h2 {
        font-size: 1.5rem !important;
    }
}

/* Hide sidebars on legal pages */
body.legal-page .left-sidebar,
body.legal-page .right-sidebar,
body.privacy-page .left-sidebar,
body.privacy-page .right-sidebar,
body.partners-page .left-sidebar,
body.partners-page .right-sidebar {
    display: none !important;
}

/* Override any conflicting styles */
body.legal-page .section,
body.privacy-page .section,
body.partners-page .section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 2 !important;
    box-sizing: border-box !important;
}

/* Force override any conflicting styles */
body.legal-page *,
body.privacy-page *,
body.partners-page * {
    box-sizing: border-box !important;
}

/* Ensure footer doesn't overlap */
body.legal-page .footer,
body.privacy-page .footer,
body.partners-page .footer {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    box-sizing: border-box !important;
}

/* Force main content to take full width and prevent sidebar overlap */
body.legal-page .main-content,
body.privacy-page .main-content,
body.partners-page .main-content {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 2 !important;
    box-sizing: border-box !important;
}

/* Ensure no sidebars interfere */
body.legal-page .left-sidebar,
body.legal-page .right-sidebar,
body.privacy-page .left-sidebar,
body.privacy-page .right-sidebar,
body.partners-page .left-sidebar,
body.partners-page .right-sidebar {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Ensure proper layout for legal content */
.legal-section {
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.legal-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Legal page specific styles */
body.legal-page .section-title,
body.privacy-page .section-title,
body.partners-page .section-title {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.legal-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    align-items: flex-start;
}

.benefits-subtitle-left {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: left;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.benefit-section {
    margin-bottom: 0.1rem;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0;
    text-align: left;
}

.benefit-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.1;
    text-align: left;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.5rem 0 !important;
    box-shadow: none !important;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
    text-align: left;
    justify-content: flex-start;
}

.benefit-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.checkmark {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.benefit-item.animate .checkmark {
    opacity: 1;
    transform: scale(1);
}

.benefit-text {
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
    flex: 1;
}

/* Animation delays for checkmarks */
.benefit-item:nth-child(1).animate .checkmark {
    animation: checkmarkAppear 0.8s ease 0.5s forwards;
}

.benefit-item:nth-child(2).animate .checkmark {
    animation: checkmarkAppear 0.8s ease 1s forwards;
}

.benefit-item:nth-child(3).animate .checkmark {
    animation: checkmarkAppear 0.8s ease 1.5s forwards;
}

.benefit-item:nth-child(4).animate .checkmark {
    animation: checkmarkAppear 0.8s ease 2s forwards;
}

@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    50% {
        transform: scale(1.2) rotate(-90deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Responsive design for tabs */
@media (max-width: 768px) {
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-header {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .benefits-image {
        order: 1;
    }
    
    .product-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .product-images {
        height: 300px;
    }
}

/* How to Use Section */
.steps-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 20px;
    background-color: #007bff;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

.step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.step-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Solutions Section */
.solutions-business-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.solutions-card-content {
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.solutions-card-brand {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0 20px 0 20px;
    transform: rotate(15deg) translate(20px, -10px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    z-index: 3;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.solutions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.solutions-tabs {
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solutions-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.solutions-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: #f8f9fa;
    background-image: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    visibility: hidden;
    display: none;
}

.solutions-img.active,
.solutions-img.loaded {
    opacity: 1;
    background: none !important;
    animation: none !important;
    visibility: visible;
    display: block;
}

.solutions-img.error {
    background: #f8f9fa !important;
    background-image: none !important;
    animation: none !important;
    visibility: visible;
}

.solution-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.solution-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.solution-cta {
    font-size: 1.1rem;
    color: #007bff;
    margin-top: 2rem;
    text-align: center;
    font-weight: 600;
    font-style: italic;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 15px 15px 0 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    border-bottom: none;
    align-items: stretch;
}

.tab-btn {
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: #6c757d;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.tab-btn:hover {
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.tab-btn:hover::before {
    opacity: 0.1;
}

.tab-btn.active {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.tab-btn.active::before {
    opacity: 0;
}

.tab-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    border-top: none;
    min-height: 300px;
    flex: 1;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solution-item .checkmark {
    color: #28a745;
    font-size: 1.4rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
    background: #d4edda;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.solution-item span {
    color: #495057;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.solution-text {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-left: 0;
    position: relative;
}

.solution-text::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Advantages Section */
.advantages-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.advantages-card .section-title {
    margin-bottom: 1rem;
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.advantages-image {
    text-align: center;
}

.advantages-img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.2rem 0 !important;
    margin-bottom: 0.3rem !important;
    box-shadow: none !important;
}

.advantages-list .advantage-item .checkmark.green {
    color: #28a745 !important;
    font-size: 1.4rem !important;
    font-weight: bold !important;
    flex-shrink: 0 !important;
    margin-top: 0.1rem !important;
    background: #d4edda !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2) !important;
    opacity: 1 !important;
    transform: none !important;
}

.checkmark.green {
    color: #28a745;
    font-size: 1.4rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
    background: #d4edda;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.advantage-text {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #495057;
    font-weight: 500;
}

/* Reviews Section */
.reviews-carousel {
    position: relative;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.carousel-btn:hover {
    background: #0056b3;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.reviews-container {
    flex: 1;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative; /* Для правильного позиционирования */
}

.reviews-track {
    display: flex;
    transition: transform 0.6s ease;
    min-height: 200px;
    width: 100%;
    will-change: transform;
    align-items: center;
}

.review-item {
    flex: 0 0 calc(100% / 3);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.review-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    object-fit: cover;
    max-height: 400px; /* Ограничиваем высоту для лучшего отображения */
}

.review-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.review-content {
    width: 100%;
}

/* Индикаторы карусели */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-indicator.active {
    background: #007bff;
    border-color: #007bff;
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: #007bff;
    transform: scale(1.1);
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

.review-author {
    font-weight: 600;
    color: #333;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Discounts Section */
.discounts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.discounts-image {
    text-align: center;
}

.discounts-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.discounts-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.discounts-description {
    margin-bottom: 2rem;
    color: #666;
}

.marketplace-codes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.marketplace-code {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-height: 50px;
    width: 100%;
    justify-content: flex-start;
}

.marketplace-name {
    min-width: 120px;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}

.marketplace-status {
    min-width: 150px;
    font-weight: 400;
    color: #666;
    flex-shrink: 0;
    white-space: nowrap;
}

.copy-btn {
    margin-left: auto;
    flex-shrink: 0;
}

.go-btn {
    flex-shrink: 0;
}

.code-field {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-shrink: 0;
}

.code-input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f9fa;
    min-width: 150px;
}

.copy-btn {
    padding: 0.5rem 1rem;
    background-color: #6c757d;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    min-width: 100px;
}

.copy-btn:hover:not(:disabled) {
    background-color: #545b62;
}

.copy-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.copy-btn.copy-ready {
    background-color: #28a745;
}

.copy-btn.copy-ready:hover {
    background-color: #218838;
}

.copy-btn.copied {
    background-color: #17a2b8;
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.go-btn {
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 80px;
}

.go-btn:hover {
    background-color: #0056b3;
}

.discounts-note {
    color: #666;
    font-style: italic;
}

/* Marketplaces Section */
.marketplaces-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.marketplaces-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.marketplaces-card .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.marketplaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.marketplace-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.marketplace-card:hover:not(.disabled) {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background-color: rgba(255, 255, 255, 1);
}

.marketplace-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.marketplace-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.marketplace-title {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.5rem;
}

.coming-soon {
    color: #666;
    font-size: 0.9rem;
}

.marketplaces-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Video Section */
.video-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.video-card .section-title {
    margin-bottom: 2rem;
    text-align: center;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-container {
    text-align: center;
}

.video-player {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.video-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.video-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Video Section Responsive */
@media (max-width: 768px) {
    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-card {
        padding: 2rem;
    }
    
    .marketplaces-card {
        padding: 2rem;
    }
    
    .marketplaces-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .marketplace-card {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact-card,
#contact .contact-card,
#contact .section .contact-card,
section#contact .contact-card,
#contact .container .contact-card,
#contact .section .container .contact-card {
    background: #fff !important;
    border-radius: 20px !important;
    padding: 3rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    margin: 2rem auto !important;
    border: 1px solid #e9ecef !important;
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
}

#contact .contact-card .section-title,
#contact .section .contact-card .section-title,
section#contact .contact-card .section-title,
#contact .container .contact-card .section-title,
#contact .section .container .contact-card .section-title {
    margin-bottom: 1rem !important;
    text-align: center !important;
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

#contact .contact-card .section-subtitle,
#contact .section .contact-card .section-subtitle,
section#contact .contact-card .section-subtitle,
#contact .container .contact-card .section-subtitle,
#contact .section .container .contact-card .section-subtitle {
    text-align: center !important;
    font-size: 1.2rem !important;
    color: #666 !important;
    margin: 0 auto 2rem auto !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-image {
    text-align: center;
}

.contact-img {
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #007bff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Volume Options Section */
.volume-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

/* Aroma Intensity Styles */
.aroma-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.aroma-content {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 300px;
}

.aroma-left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aroma-right-column {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
}

.aroma-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-align: center;
}

.aroma-scale {
    position: relative;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.scale-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #666;
}

.scale-bar {
    position: relative;
    height: 20px;
    background: linear-gradient(90deg, #e9ecef 0%, #e9ecef 100%);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.scale-progress {
    height: 100%;
    background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    border-radius: 10px;
    width: 40%;
    animation: aromaProgress 3s ease-in-out infinite;
    position: relative;
}


@keyframes aromaProgress {
    0% { width: 0%; }
    50% { width: 40%; }
    100% { width: 40%; }
}

@keyframes aromaBlink {
    0%, 50%, 100% { 
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    25% { 
        opacity: 0.7;
        transform: translateX(-50%) scale(1.1);
    }
}

@keyframes activePulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(33, 150, 243, 0);
    }
}

/* Aroma Sticker Styles */
.aroma-sticker {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    animation: stickerPulse 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.aroma-sticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.sticker-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.sticker-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sticker-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

@keyframes stickerPulse {
    0%, 100% { 
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
        transform: translateY(0);
    }
    50% { 
        box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
        transform: translateY(-3px);
    }
}

/* Aroma Ratings Styles */
.aroma-ratings {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    justify-content: space-between;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.rating-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.rating-number {
    background: #007bff;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.rating-text {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.2;
}

/* Mobile responsiveness for aroma scale */
@media (max-width: 768px) {
    .aroma-card {
        padding: 1.5rem;
    }
    
    .aroma-content {
        flex-direction: column;
        gap: 1.5rem;
        min-height: auto;
    }
    
    .aroma-left-column {
        gap: 0.8rem;
    }
    
    .aroma-right-column {
        flex: none;
    }
    
    .aroma-ratings {
        justify-content: flex-start;
    }
    
    .rating-item {
        padding: 0.5rem;
        gap: 0.6rem;
    }
    
    .rating-number {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .rating-text {
        font-size: 0.8rem;
    }
}

.volume-card .section-title {
    margin-bottom: 2rem;
    text-align: center;
}

.volume-stickers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 1200px) {
    .volume-stickers {
        grid-template-columns: repeat(4, 1fr);
    }
}

.volume-sticker {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.volume-sticker:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}

.sticker-1 {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    color: #333;
    border: 2px solid #bbdefb;
}

.sticker-2 {
    background: linear-gradient(135deg, #f1f8e9, #e8f5e8);
    color: #333;
    border: 2px solid #c8e6c9;
}

.sticker-3 {
    background: linear-gradient(135deg, #fff3e0, #fce4ec);
    color: #333;
    border: 2px solid #ffccbc;
}

.sticker-4 {
    background: linear-gradient(135deg, #f3e5f5, #e1f5fe);
    color: #333;
    border: 2px solid #e1bee7;
}

/* Blog Section Styles */
.blog-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.blog-card .section-title {
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.blog-item-image {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-img {
    transform: scale(1.05);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
}

.blog-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-item-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #764ba2;
}

.blog-footer {
    text-align: center;
    position: relative;
    z-index: 1;
}

.read-all-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.read-all-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Compact Blog Styles */
.blog-card {
    padding: 2rem;
}

.blog-card .section-title {
    margin-bottom: 1.5rem;
}

.blog-compact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-compact-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border-left: 4px solid #4CAF50;
    border: 1px solid #e0e0e0;
}

.blog-compact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: #2e7d32;
    background: #e8f5e8;
}

.blog-compact-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-compact-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.blog-compact-excerpt {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-compact-item .blog-category {
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.blog-compact-item .blog-read-more {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    align-self: flex-start;
}

/* Mobile adjustments for compact blog */
@media (max-width: 768px) {
    .blog-card {
        padding: 1.5rem;
    }
    
    .blog-compact-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-compact-item {
        padding: 0.8rem;
    }
    
    .blog-compact-title {
        font-size: 0.95rem;
    }
    
    .blog-compact-excerpt {
        font-size: 0.8rem;
    }
    
    .blog-compact-item .blog-category {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }
    
    .blog-compact-item .blog-read-more {
        font-size: 0.8rem;
    }
}

/* Article Navigation Styles */
.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.nav-previous,
.nav-next {
    flex: 1;
    max-width: 45%;
}

.nav-previous .nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-next .nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-direction: row-reverse;
}

.nav-previous .nav-link:hover,
.nav-next .nav-link:hover {
    background: #e9ecef;
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.nav-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    min-width: 2rem;
    text-align: center;
}

.nav-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

/* Mobile adjustments for article navigation */
@media (max-width: 768px) {
    .article-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-previous,
    .nav-next {
        max-width: 100%;
    }
    
    .nav-previous .nav-link,
    .nav-next .nav-link {
        padding: 1rem;
    }
    
    .nav-title {
        font-size: 0.9rem;
    }
    
    .nav-arrow {
        font-size: 1.2rem;
        min-width: 1.5rem;
    }
}

/* Chat Section - SMS Style */
.chat-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.chat-card .section-title {
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
    font-weight: 600;
}

.chat-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.chat-window {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.chat-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.chat-status {
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* SMS Style Messages */
.message {
    display: flex;
    margin-bottom: 0.75rem;
    animation: fadeInUp 0.4s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.message.user {
    justify-content: flex-end;
}

.message.bot {
    justify-content: flex-start;
}

.message-content {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    word-wrap: break-word;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.message.user .message-content {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 123, 255, 0.3);
}

.message.bot .message-content {
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    text-align: right;
    opacity: 0.8;
}

.message.user .message-time {
    color: rgba(255, 255, 255, 0.8);
}

.message.typing .message-content {
    opacity: 0.8;
    background: #e9ecef;
    color: #6c757d;
    animation: pulse 1.5s infinite;
}

.message:hover .message-content {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.message.user:hover .message-content {
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-form {
    margin-top: auto;
    border-top: 1px solid #e0e0e0;
}

.chat-input {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #fff;
}

.chat-input-field {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.chat-input-field:focus {
    border-color: #007bff;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.chat-send-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 80px;
}

.chat-send-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.chat-info {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #d1e7ff;
}

.chat-subtitle {
    color: #007bff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.chat-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item .checkmark.green {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    background: #d4edda;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    transform: none !important;
}

.volume-sticker .sticker-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: inherit;
}

.volume-sticker .sticker-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: inherit;
    margin: 0 0 1rem 0;
}

.volume-sticker .sticker-source {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    margin-top: auto;
    border: 2px solid #4CAF50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.volume-price {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

.price-badge {
    background: #f8f9fa;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
}

.price-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
}

.price-text-small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}




.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Composition Section */
.composition-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.composition-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.composition-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #007bff;
    background: none;
    color: #007bff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.composition-btn.active,
.composition-btn:hover {
    background-color: #007bff;
    color: #fff;
}

.composition-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.composition-pane {
    display: none;
}

.composition-pane.active {
    display: block;
}

.composition-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.composition-note {
    text-align: center;
    color: #666;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Section */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.read-all-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-all-link:hover {
    color: #0056b3;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: #fff;
}

.footer-link.copy-email {
    cursor: pointer;
    position: relative;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link.copy-email:hover {
    color: #4CAF50;
}

.footer-link.copy-email::after {
    content: "📋";
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-link.copy-email:hover::after {
    opacity: 1;
}

.footer-link.copy-email.copied::after {
    content: "✓";
    color: #4CAF50;
    opacity: 1;
}

.footer-icon {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000;
}

.modal-content h3 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: #666;
    line-height: 1.5;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-content,
    .advantages-content,
    .discounts-content,
    .video-content,
    .contact-content,
    .chat-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-content {
        grid-template-columns: 1fr;
    }
    
    .marketplaces-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons,
    .composition-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    
    /* Улучшения для планшетов */
    .reviews-carousel {
        margin-top: 1.5rem;
    }
    
    .carousel-indicators {
        margin-top: 1rem;
    }
    
    .marketplace-code {
        padding: 1rem;
    }
    
    .chat-window {
        margin: 0;
    }
    
    .chat-messages {
        max-height: 250px;
    }
    
    .form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Убираем отступы контейнера для формы */
    .container {
        padding: 0 !important;
    }
    
    /* Специально для секции контактов - убираем все отступы */
    #contact .container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    /* Скрываем стрелку "наверх" в мобильной версии */
    .scroll-to-top {
        display: none !important;
    }
    
    /* Скрываем меню в мобильной версии */
    .nav-menu {
        display: none !important;
    }
    
    /* Уменьшаем отступ для основного контента */
    main {
        margin-top: 80px !important; /* Только высота шапки */
    }
    
    /* Упрощаем шапку - только бренд */
    .header-content {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .brand-description {
        display: none !important; /* Скрываем описание бренда */
    }
    
    /* Форма на всю ширину экрана */
    .contact-form {
        padding: 1rem !important;
        margin: 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-content {
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
    }
    
    .contact-section {
        padding: 1rem 0 !important;
        margin: 0 !important;
    }
    
    /* Поля формы на всю ширину */
    .form-input,
    .form-textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 12px !important;
        border-radius: 8px !important;
    }
    
    .form-textarea {
        min-height: 80px !important;
    }
    
    /* Убираем горизонтальную прокрутку */
    body {
        overflow-x: hidden !important;
    }
    
    html {
        overflow-x: hidden !important;
    }
    
    /* Возвращаем отступы для всех секций кроме контактов */
    .section .container:not(#contact .container) {
        padding: 0 16px !important;
    }
    
    /* Специально для секции контактов - убираем отступы */
    #contact .section {
        padding: 0 !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero-content {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .reviews-carousel {
        flex-direction: column;
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .reviews-container {
        order: 1;
    }
    
    .carousel-btn.carousel-prev {
        order: 0;
    }
    
    .carousel-btn.carousel-next {
        order: 2;
    }
    
    .marketplace-code {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .copy-btn,
    .go-btn {
        width: 100%;
        margin-left: 0 !important;
    }
    
    .chat-window {
        margin: 0;
        border-radius: 8px;
    }
    
    .chat-input {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .chat-send-btn {
        width: 100%;
    }
    
    .chat-messages {
        max-height: 200px;
    }
    
    .message {
        margin: 0.5rem 0;
        padding: 0.75rem;
    }
    
    .message.user {
        margin-left: 10%;
    }
    
    .message.bot {
        margin-right: 10%;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 16px; /* Предотвращает зум на iOS */
        padding: 12px;
        min-height: 44px; /* Touch target size */
    }
    
    .form-textarea {
        min-height: 80px; /* Larger textarea for mobile */
    }
    
    /* Solutions tabs mobile layout */
    .tab-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 8px 4px;
        font-size: 11px;
        min-height: 44px;
        white-space: nowrap;
        min-width: auto;
        height: 44px;
        flex: 1;
    }
    
    /* Для 5 вкладок делаем 3 в первом ряду и 2 во втором с центрированием */
    .tab-buttons {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        justify-items: center;
    }
    
    .tab-btn:nth-child(4) {
        grid-column: 1 / 2;
        justify-self: end;
    }
    
    .tab-btn:nth-child(5) {
        grid-column: 3 / 4;
        justify-self: start;
    }
    
    .solutions-card-brand {
        transform: rotate(12deg) translate(15px, -5px);
        padding: 0.8rem 1.5rem;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .solutions-card-content {
        padding: 2rem;
    }
    
    .advantages-card {
        padding: 2rem;
    }
    
    .advantages-card .section-title {
        margin-bottom: 0.5rem;
    }
    
    .contact-card {
        padding: 2rem !important;
        margin: 1rem auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    #contact .contact-card .section-title {
        margin-bottom: 1rem !important;
    }
    
    #contact .contact-card .section-subtitle {
        text-align: center !important;
        font-size: 1.1rem !important;
        margin: 0 auto 2rem auto !important;
    }
    

}

/* Очень маленькие экраны */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .review-item {
        padding: 1rem;
    }
    
    .marketplace-code {
        padding: 0.75rem;
    }
    
    .chat-window {
        padding: 1rem;
    }
    
    .form {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem !important;
        margin: 1rem auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    #contact .contact-card .section-title {
        margin-bottom: 1rem !important;
    }
    
    #contact .contact-card .section-subtitle {
        text-align: center !important;
        font-size: 1rem !important;
        margin: 0 auto 1.5rem auto !important;
    }
}

/* Ландшафтная ориентация на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .section {
        padding: 1.5rem 0;
    }
    
    .reviews-carousel {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .carousel-indicators {
        margin-top: 0.5rem;
    }
    
    .review-item {
        padding: 1rem;
    }
    
    .review-image {
        max-width: 90%;
        height: auto;
        max-height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .reviews-track {
        min-height: 250px;
    }
    
    .contact-card {
        padding: 2rem !important;
        margin: 1rem auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    #contact .contact-card .section-title {
        margin-bottom: 1rem !important;
    }
    
    #contact .contact-card .section-subtitle {
        text-align: center !important;
        font-size: 1.1rem !important;
        margin: 0 auto 2rem auto !important;
    }
}

/* Touch-устройства */
@media (hover: none) and (pointer: coarse) {
    .carousel-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .btn {
        min-height: 44px;
    }
    
    .form-input,
    .form-textarea {
        min-height: 44px;
    }
    
    .chat-send-btn {
        min-height: 44px;
    }
    
    .carousel-indicator {
        min-width: 16px;
        min-height: 16px;
    }
    
    /* Увеличиваем отступы для touch */
    .nav-link {
        padding: 1rem 0.75rem;
    }
    
    .tab-btn {
        padding: 1rem 1.5rem;
        margin: 0.25rem 0;
    }
    
    /* Кнопки состава на одной строке в мобильной версии */
    .composition-buttons {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    
    .composition-btn {
        padding: 0.75rem 1rem !important;
        margin: 0 !important;
        font-size: 14px !important;
        flex: 1 !important;
        max-width: 50% !important;
    }
    
    /* Мобильные отзывы */
    .review-item {
        padding: 1rem;
    }
    
    .review-image {
        max-width: 90%;
        height: auto;
        max-height: 300px;
    }
    
    /* Улучшаем отображение карусели на touch-устройствах */
    .reviews-track {
        min-height: 250px;
    }
}


/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Delivery Page Styles */
.delivery-methods,
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.delivery-method,
.payment-method {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #d1e7ff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.delivery-method::before,
.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.delivery-method:hover,
.payment-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #e8f2ff 0%, #d6ebff 100%);
    border-color: #4CAF50;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.delivery-method h3,
.payment-method h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.delivery-method ul,
.payment-method ul {
    list-style: none;
    margin-top: 1rem;
}

.delivery-method li,
.payment-method li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.delivery-method li:last-child,
.payment-method li:last-child {
    border-bottom: none;
}

.delivery-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.term-item {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #b3d9ff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.term-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.term-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #e6f3ff 0%, #d9ecff 100%);
    border-color: #4CAF50;
}

.term-item h3 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Warranty Page Styles */
.warranty-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.warranty-item {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #d1e7ff;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.warranty-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.warranty-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #e8f2ff 0%, #d6ebff 100%);
    border-color: #4CAF50;
}

.warranty-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.warranty-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.warranty-coverage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coverage-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.coverage-item h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.coverage-item ul {
    list-style: none;
}

.coverage-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.coverage-item li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.return-policy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.return-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.return-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.return-item h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.return-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.step-number {
    background: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Partners Page Styles */
.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Partners page with stickers style */
.partners-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.partners-content .container {
    max-width: none;
    padding: 0;
}

.partners-sticker-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.partners-sticker {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
}

.partners-sticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.sticker-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.sticker-icon {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.partners-sticker .sticker-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.sticker-content {
    position: relative;
    z-index: 1;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-sticker {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.program-sticker:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.program-sticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.05) 0%, transparent 50%, rgba(118, 75, 162, 0.05) 100%);
    pointer-events: none;
}

.program-sticker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.program-sticker-icon {
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.program-sticker-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.program-sticker-badge.premium {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.program-sticker-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.program-sticker-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.program-sticker-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.feature-sticker {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.feature-sticker:hover {
    background: linear-gradient(135deg, #e8f2ff 0%, #d6ebff 100%);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.feature-text {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive styles for partners page */
@media (max-width: 768px) {
    .partners-sticker {
        padding: 2rem;
        margin: 1rem;
    }
    
    .sticker-title {
        font-size: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-sticker {
        padding: 1.5rem;
    }
    
    .program-sticker-title {
        font-size: 1.3rem;
    }
    
    .feature-sticker {
        padding: 0.8rem;
    }
    
    .feature-icon {
        font-size: 1.2rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
}

.benefit-item {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #d1e7ff;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #e8f2ff 0%, #d6ebff 100%);
    border-color: #4CAF50;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.partnership-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.program-item {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #d1e7ff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.program-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #e8f2ff 0%, #d6ebff 100%);
    border-color: #4CAF50;
}

.program-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.program-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
}

.program-item ul {
    list-style: none;
}

.program-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.program-item li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.partner-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.requirement-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.requirement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.requirement-item h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.partner-support {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partnership-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Blog Page Styles */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.featured-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-category {
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
}

.article-title {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    line-height: 1.3;
}

.article-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card .article-content {
    padding: 1.5rem;
}

.article-card .article-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.popular-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.topic-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.topic-item h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.topic-item ul {
    list-style: none;
}

.topic-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.topic-item li:last-child {
    border-bottom: none;
}

.topic-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.topic-item a:hover {
    color: #0056b3;
}

.newsletter-section {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.form-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .featured-article {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .solutions-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solutions-image {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .delivery-methods,
    .payment-methods,
    .warranty-info,
    .warranty-coverage,
    .return-policy,
    .return-process,
    .partnership-benefits,
    .partnership-programs,
    .partner-requirements,
    .partner-support,
    .article-categories,
    .articles-grid,
    .popular-topics {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .form-row {
        flex-direction: column;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .chat-window,
    .modal {
        display: none !important;
    }
    
    body {
        margin: 0;
        padding: 0;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* Form Styles */
.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}



/* Card Styles - Закругленные блоки */
.benefits-content,
.solutions-business-card,
.advantages-card,
.reviews-content,
.discounts-content,
.marketplaces-content,
.composition-content,
.blog-content {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}



/* Mobile adjustments for header */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .brand-description {
        text-align: center;
        max-width: 100%;
    }
    
    .nav-menu {
        top: 120px; /* Adjust for taller header on mobile */
    }
    
    .nav-list {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    main {
        margin-top: 180px; /* Adjust for mobile header + menu */
    }
}

/* Marketplace layout fixes - удален дублирующий CSS */


/* Blog Footer */
.blog-footer {
    text-align: right;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

/* Article Styles */
.article-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-page .container {
    max-width: none;
    padding: 0;
}

.article-header {
    text-align: left;
    margin-bottom: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #f0f0f0;
}

.article-back {
    margin-bottom: 2rem;
    text-align: left;
}

.article-back .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    font-weight: 500;
}

.article-back .btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Legal, Privacy, Partners pages styles */
.partners-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.partners-content .container {
    max-width: none;
    padding: 0;
}

.legal-section,
.privacy-section,
.partners-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: none;
    border: none;
}

.legal-section h2,
.privacy-section h2,
.partners-section h2 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.legal-section p,
.privacy-section p,
.partners-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul,
.privacy-section ul,
.partners-section ul {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li,
.privacy-section li,
.partners-section li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.legal-section strong,
.privacy-section strong,
.partners-section strong {
    color: #333;
    font-weight: 600;
}

/* Warranty items - 4 blocks on same level */
.warranty-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.warranty-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 200px;
}

.warranty-item:hover {
    transform: translateY(-5px);
}

.warranty-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.warranty-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.warranty-item p {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Responsive for warranty items */
@media (max-width: 1200px) {
    .warranty-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile styles for legal, privacy, partners pages */
@media (max-width: 768px) {
    .legal-content,
    .privacy-content,
    .partners-content {
        padding: 0 1rem;
    }
    
    .warranty-info {
        grid-template-columns: 1fr;
    }
    
    .warranty-item {
        min-height: auto;
    }
}

.article-content {
    background: #fff;
    border-radius: 0 0 20px 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-top: none;
}

.article-text {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Blog Content Styles */
.blog-content {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Left Sidebar Menu Styles */
.left-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Right Sidebar Menu Styles */
.right-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.right-sidebar.open {
    right: 0;
}

.left-sidebar.open {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.sidebar-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.sidebar-toggle:hover span {
    background: #f0f0f0;
    transform: scale(1.1);
}

.sidebar-nav {
    padding: 1rem 0;
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-list li {
    margin: 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.sidebar-link:hover::before {
    left: 100%;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-left-color: #fff;
    transform: translateX(5px);
}

.sidebar-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-left-color: #fff;
    font-weight: 600;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.sidebar-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-text {
    font-size: 1rem;
    font-weight: 500;
}

/* Sidebar overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Open Button */
.sidebar-open-btn {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.sidebar-open-btn span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.sidebar-open-btn:hover span {
    background: #007bff;
    transform: scale(1.1);
}

.sidebar-open-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Soap Bubble Progress Indicator */
.soap-bubble-indicator {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
}

.bubble-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.main-bubble {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(33, 150, 243, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.5),
        inset 0 -2px 10px rgba(33, 150, 243, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: bubbleFloat 3s ease-in-out infinite;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
}

.main-bubble:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(33, 150, 243, 0.4),
        inset 0 2px 15px rgba(255, 255, 255, 0.6),
        inset 0 -2px 15px rgba(33, 150, 243, 0.3);
}

.bubble-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.bubble-icon {
    font-size: 24px;
    margin-bottom: 2px;
    animation: soapShimmer 2s ease-in-out infinite;
}

@keyframes soapShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.bubble-percentage {
    font-size: 12px;
    font-weight: bold;
    color: #1976d2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.bubble-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, #4CAF50, #2196F3, #FF9800, #E91E63) border-box;
    background-clip: padding-box;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-bubble:hover .bubble-ring {
    opacity: 1;
    animation: ringRotate 2s linear infinite;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.chat-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.chat-icon-blink {
    font-size: 24px;
    animation: chatBlink 2s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chat-icon-blink:hover {
    transform: scale(1.2);
}

@keyframes chatBlink {
    0%, 50%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    25% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
    75% { 
        opacity: 0.8;
        transform: scale(0.95);
    }
}

.chat-text {
    font-size: 10px;
    color: #4CAF50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: textPulse 3s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { 
        opacity: 0.8;
        color: #4CAF50;
    }
    50% { 
        opacity: 1;
        color: #2E7D32;
    }
}

/* Right Sidebar Open Button */
.right-sidebar-open-btn {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.right-sidebar-open-btn span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.right-sidebar-open-btn:hover span {
    background: #ff6b6b;
    transform: scale(1.1);
}

.right-sidebar-open-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Soap Bubble Indicator Responsive */
@media (max-width: 768px) {
    .soap-bubble-indicator {
        left: 10px;
    }
    
    .main-bubble {
        width: 60px;
        height: 60px;
    }
    
    .bubble-icon {
        font-size: 20px;
    }
    
    .bubble-percentage {
        font-size: 10px;
    }
    
    .chat-icon-blink {
        font-size: 20px;
    }
    
    .chat-text {
        font-size: 9px;
    }
}

/* Responsive sidebar */
@media (max-width: 768px) {
    .left-sidebar {
        width: 280px;
        left: -280px;
    }
    
    .right-sidebar {
        width: 280px;
        right: -280px;
    }
    
    .sidebar-header {
        padding: 1.5rem;
    }
    
    .sidebar-link {
        padding: 0.8rem 1.5rem;
    }
    
    .sidebar-open-btn {
        left: 0.5rem;
    }
    
    .right-sidebar-open-btn {
        right: 0.5rem;
    }
    
    .brand-description {
        display: none;
    }
    
    .article-page {
        padding: 0 1rem;
    }
    
    .article-header,
    .article-content {
        padding: 2rem;
    }
}

.article-content h2 {
    color: #000;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.article-content h3 {
    color: #333;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

.article-text h2 {
    color: #000;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.article-text h3 {
    color: #333;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

.article-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.article-content ul, .article-content ol {
    margin: 1rem 0 1rem 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #555;
}

.article-content strong {
    color: #000;
    font-weight: 600;
}

.article-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.article-text ul, .article-text ol {
    margin: 1rem 0 1rem 2rem;
}

.article-text li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #555;
}

.article-text strong {
    color: #000;
    font-weight: 600;
}

.article-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-text th, .article-text td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.article-text th {
    background: #f8f9fa;
    font-weight: 600;
    color: #000;
}

.comparison-table, .savings-calculation {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #007bff;
}

.article-tags {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.tag {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 0.25rem 0.5rem 0.25rem 0;
}

.read-all-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-all-link:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* Feature Icons */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    line-height: 1.5;
}




