/* CSS Variables - Light Theme */
:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-secondary: #4f46e5;
    --color-accent: #10b981;
    --color-accent-hover: #059669;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    --bg-gray: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --border-dark: #cbd5e1;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.15);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Container */
.container-a9aad6 {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Common Styles */
section {
    padding: 80px 0;
    position: relative;
}

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

.section-header-054c9c h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header-054c9c p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider-9dd5f5 {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    margin: 16px auto 0;
}

/* Header/Navigation */
.header-cfd1f9 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-cfd1f9.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-inner-878d1c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo-feef59 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon-00ce66 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.nav-menu-45fd2e {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link-0d7b43 {
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link-0d7b43:hover {
    color: var(--color-primary);
    background: rgba(37, 99, 235, 0.08);
}

.header-actions-a916c4 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-bc032c {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary-34f2de {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary-34f2de:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary-b4ed7b {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-dark);
}

.btn-secondary-b4ed7b:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle-89e25a {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle-89e25a span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.menu-toggle-89e25a.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle-89e25a.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-89e25a.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero-22adee {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #eff6ff 0%, var(--bg-body) 100%);
}

.hero-22adee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 15% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 70%, rgba(79, 70, 229, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-4ef2c0 {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: center;
}

.hero-badge-70dab8 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.hero-badge-70dab8 i {
    color: var(--color-accent);
}

.hero-22adee h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-22adee h1 span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-ee3ebf {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons-c2c88f {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats-f5bc30 {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    justify-content: center;
}

.hero-stat-c8ff1a {
    text-align: left;
}

.hero-stat-number-c6f2b9 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.hero-stat-label-4f4fda {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-visual-1eb5da {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 550px;
    height: 450px;
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.hero-visual-placeholder-54f08a {
    text-align: center;
    color: var(--text-muted);
}

.hero-visual-placeholder-54f08a i {
    font-size: 6rem;
    opacity: 0.2;
}

/* Services Section */
.services-50ee91 {
    background: var(--bg-white);
}

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

.service-card-c2c45b {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-c2c45b::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card-c2c45b:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.service-card-c2c45b:hover::before {
    transform: scaleX(1);
}

.service-icon-869ccb {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(79, 70, 229, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.service-card-c2c45b h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card-c2c45b p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Advantages Section */
.advantages-9c60d8 {
    background: var(--bg-body);
}

.advantages-wrapper-203537 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantages-content-b71fd8 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text-primary);
}

.advantages-content-b71fd8 p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.advantages-list-fbd8c5 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantage-item-9a72eb {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.advantage-check-fcf70a {
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.advantage-item-9a72eb h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.advantage-item-9a72eb p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.advantages-visual-f504c3 {
    position: relative;
}

.advantages-image-0c6a29 {
    width: 100%;
    height: 450px;
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.advantages-image-placeholder-4fc4be {
    text-align: center;
    color: var(--text-muted);
}

.advantages-image-placeholder-4fc4be i {
    font-size: 5rem;
    opacity: 0.2;
}

/* Products Section */
.products-dd0dd0 {
    background: var(--bg-white);
}

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

.product-card-90cd0f {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.product-card-90cd0f:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.product-image-2509e4 {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image-placeholder-dab787 {
    text-align: center;
    color: var(--text-muted);
}

.product-image-placeholder-dab787 i {
    font-size: 3.5rem;
    opacity: 0.2;
}

.product-badge-042a3a {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.product-content-bffdf4 {
    padding: 24px;
}

.product-content-bffdf4 h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-content-bffdf4 p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-meta-c0550e {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price-e43e4f {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-price-e43e4f span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* About Section */
.about-b22b82 {
    background: var(--bg-body);
}

.about-wrapper-6c5572 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-54ab27 {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.about-image-placeholder-83b070 {
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder-83b070 i {
    font-size: 5rem;
    color: var(--text-muted);
    opacity: 0.2;
}

.about-content-d1dfa8 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text-primary);
}

.about-content-d1dfa8 p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats-d062ff {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.about-stat-2911c2 {
    text-align: center;
}

.about-stat-number-c9f74f {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.about-stat-label-78a5d3 {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* News Section */
.news-254f46 {
    background: var(--bg-white);
}

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

.news-card-ad42f7 {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.news-card-ad42f7:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.news-image-952ed3 {
    width: 100%;
    height: 180px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image-placeholder-8e0717 {
    text-align: center;
    color: var(--text-muted);
}

.news-image-placeholder-8e0717 i {
    font-size: 2.5rem;
    opacity: 0.2;
}

.news-content-93f418 {
    padding: 24px;
}

.news-meta-b1ea16 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.news-meta-b1ea16 i {
    color: var(--color-primary);
}

.news-content-93f418 h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-primary);
}

.news-content-93f418 p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* FAQ Section */
.faq-3b7b75 {
    background: var(--bg-body);
}

.faq-wrapper-493b38 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-547876 {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item-547876:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.faq-question-a32c0c {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question-a32c0c i {
    transition: var(--transition);
    color: var(--color-primary);
}

.faq-item-547876.active .faq-question-a32c0c i {
    transform: rotate(180deg);
}

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

.faq-answer-content-2fd299 {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item-547876.active .faq-answer-c7eae7 {
    max-height: 300px;
}

/* Reviews Section */
.reviews-f49acc {
    background: var(--bg-white);
}

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

.review-card-90b5f6 {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.review-card-90b5f6:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.review-header-cedb55 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reviewer-avatar-bc13e0 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    object-fit: cover;
}

.reviewer-info-0760d5 h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.reviewer-info-0760d5 span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars-180ca1 {
    color: var(--color-warning);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.review-content-fed3c2 {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-fb2e67 {
    background: var(--bg-body);
}

.contact-wrapper-d49bc0 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-a55461 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-info-a55461 > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-methods-2d7b1d {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method-0625de {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-method-0625de:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.contact-method-icon-d26723 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(79, 70, 229, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-primary);
}

.contact-method-info-91b67f h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-method-info-91b67f p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form-adec3a {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.form-group-774c18 {
    margin-bottom: 20px;
}

.form-group-774c18 label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group-774c18 input,
.form-group-774c18 textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group-774c18 input:focus,
.form-group-774c18 textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--bg-white);
}

.form-group-774c18 textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group-774c18 input::placeholder,
.form-group-774c18 textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer-17f267 {
    background: var(--text-primary);
    padding: 60px 0 30px;
}

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

.footer-brand-a35385 {
    max-width: 300px;
}

.footer-brand-a35385 .logo-feef59 {
    margin-bottom: 16px;
    color: white;
}

.footer-brand-a35385 p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social-331f9a {
    display: flex;
    gap: 12px;
}

.footer-social-331f9a a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social-331f9a a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-column-8dcec6 h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links-112dcc {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-112dcc a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links-112dcc a:hover {
    color: var(--color-primary-light);
    padding-left: 5px;
}

.footer-bottom-19b40b {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-19b40b p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links-inline-75563e {
    display: flex;
    gap: 24px;
}

.footer-links-inline-75563e a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links-inline-75563e a:hover {
    color: var(--color-primary-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-visual-1eb5da {
        display: none;
    }

    .hero-content-4ef2c0 {
        max-width: 100%;
        text-align: center;
    }

    .hero-stats-f5bc30 {
        justify-content: center;
    }

    .advantages-wrapper-203537,
    .about-wrapper-6c5572,
    .contact-wrapper-d49bc0 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advantages-image-0c6a29,
    .about-image-54ab27 {
        height: 350px;
    }

    .services-grid-a791ce,
    .products-grid-fe959a,
    .news-grid-b9a37b,
    .reviews-grid-d9d1c2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-wrapper-5c5265 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-header-054c9c h2 {
        font-size: 2rem;
    }

    .nav-menu-45fd2e {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu-45fd2e.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle-89e25a {
        display: flex;
    }

    .header-actions-a916c4 {
        display: none;
    }

    .hero-22adee {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-22adee h1 {
        font-size: 2.2rem;
    }

    .hero-description-ee3ebf {
        font-size: 1rem;
    }

    .hero-stats-f5bc30 {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-stat-c8ff1a {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .hero-stat-number-c6f2b9 {
        font-size: 1.5rem;
    }

    .services-grid-a791ce,
    .products-grid-fe959a,
    .news-grid-b9a37b,
    .reviews-grid-d9d1c2 {
        grid-template-columns: 1fr;
    }

    .advantages-content-b71fd8 h2,
    .about-content-d1dfa8 h2,
    .contact-info-a55461 h2 {
        font-size: 2rem;
    }

    .about-stats-d062ff {
        flex-wrap: wrap;
        gap: 24px;
    }

    .about-stat-2911c2 {
        flex: 1;
        min-width: 100px;
    }

    .footer-wrapper-5c5265 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-a35385 {
        max-width: 100%;
    }

    .footer-social-331f9a {
        justify-content: center;
    }

    .footer-bottom-19b40b {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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

.animate-fadeInUp-141441 {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1-44e562 { animation-delay: 0.1s; }
.delay-2-e4133c { animation-delay: 0.2s; }
.delay-3-bfdc27 { animation-delay: 0.3s; }
.delay-4-1c938b { animation-delay: 0.4s; }