/* ==================== CSS 变量定义 ==================== */
:root {
    /* 主色调方案 - 高端商务风格 */
    --primary-color: #0B1C33;        /* 深海蓝 - 主色 */
    --secondary-color: #F5F5F7;      /* 云雾白 - 辅色背景 */
    --accent-color: #C9A268;         /* 香槟金 - 强调色 */
    --accent-hover: #B8925A;         /* 金色悬停状态 */
    --text-dark: #1A202C;            /* 正文深色 */
    --text-light: #FFFFFF;           /* 浅色文字 */
    --text-gray: #718096;            /* 灰色文字 */
    --border-color: #E2E8F0;         /* 边框颜色 */
    --shadow-sm: 0 2px 8px rgba(11, 28, 51, 0.08);
    --shadow-md: 0 4px 20px rgba(11, 28, 51, 0.12);
    --shadow-lg: 0 10px 40px rgba(11, 28, 51, 0.16);
    --transition: all 0.3s ease;
}

/* ==================== 基础样式重置 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* 标题字体 */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif SC', 'Songti SC', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

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

ul, ol {
    list-style: none;
}

/* ==================== 通用组件类 ==================== */
.container-b9ffee {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding-f58947 {
    padding: 100px 0;
}

.section-title-30b108 {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-30b108 h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title-30b108 h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-title-30b108 p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 20px;
}

.section-intro-3e1762 {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.btn-4e76c8 {
    display: inline-block;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary-4a04df {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-primary-4a04df:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 104, 0.4);
}

.btn-outline-2dd774 {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline-2dd774:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-dark-184c55 {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-dark-184c55:hover {
    background: #162545;
    transform: translateY(-2px);
}

/* ==================== 导航栏 ==================== */
.header-d5f9fe {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(11, 28, 51, 0.98);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.header-d5f9fe.scrolled {
    background: rgba(11, 28, 51, 0.98);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.header-inner-90cde6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-9ad243 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo-9ad243 span {
    color: var(--accent-color);
}

.nav-menu-e18b5f {
    display: flex;
    gap: 40px;
}

.nav-menu-e18b5f a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-menu-e18b5f a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu-e18b5f a:hover::after,
.nav-menu-e18b5f a.active::after {
    width: 100%;
}

.header-contact-331e25 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone-5daef4 {
    color: var(--accent-color);
    font-weight: 600;
}

.mobile-toggle-1ace6c {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle-1ace6c span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* ==================== Hero 首屏区域 ==================== */
.hero-ea511e {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2d4a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-ea511e::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center / cover;
    animation: float 20s linear infinite;
    opacity: 0.15;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}

.hero-content-65c974 {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle-15f82e {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-ea511e h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-desc-db35e5 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons-b1e07a {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-5f5974 {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
}

.hero-image-5f5974 img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ==================== 服务内容区域 ==================== */
.services-e8915e {
    background: var(--secondary-color);
}

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

.service-card-44c102 {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid transparent;
}

.service-card-44c102:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.service-icon-c65929 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2d4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon-c65929 i {
    font-size: 2rem;
    color: var(--accent-color);
}

.service-card-44c102 h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-card-44c102 p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ==================== 服务优势区域 ==================== */
.advantages-e01a82 {
    background: var(--primary-color);
    color: var(--text-light);
}

.advantages-e01a82 .section-title-30b108 h2 {
    color: var(--text-light);
}

.advantages-e01a82 .section-title-30b108 p {
    color: rgba(255, 255, 255, 0.7);
}

.advantages-grid-46d9ef {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.advantage-item-0ffe51 {
    text-align: center;
    padding: 30px;
}

.advantage-icon-c2558d {
    width: 90px;
    height: 90px;
    background: rgba(201, 162, 104, 0.15);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.advantage-item-0ffe51:hover .advantage-icon-c2558d {
    background: var(--accent-color);
}

.advantage-icon-c2558d i {
    font-size: 2.2rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.advantage-item-0ffe51:hover .advantage-icon-c2558d i {
    color: var(--primary-color);
}

.advantage-item-0ffe51 h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.advantage-item-0ffe51 p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== 关于我们区域 ==================== */
.about-98f861 {
    background: #FFFFFF;
}

.about-wrapper-5b2475 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-3269b5 {
    position: relative;
}

.about-image-3269b5 img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.about-image-3269b5::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: 16px;
    z-index: -1;
}

.about-content-882192 h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-content-882192 p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-features-cbff43 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature-f58aa1 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-f58aa1 i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.about-feature-f58aa1 span {
    font-weight: 500;
    color: var(--primary-color);
}

/* ==================== 产品案例区域 ==================== */
.products-3f8e30 {
    background: var(--secondary-color);
}

.products-intro-8f2193 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-gray);
}

.product-tabs-ab6c3f {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.product-tab-e8a403 {
    padding: 12px 28px;
    background: #FFFFFF;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-dark);
}

.product-tab-e8a403:hover,
.product-tab-e8a403.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

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

.product-card-2118e3 {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card-2118e3:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-image-09bd74 {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image-09bd74 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card-2118e3:hover .product-image-09bd74 img {
    transform: scale(1.1);
}

.product-overlay-44f438 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 28, 51, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-2118e3:hover .product-overlay-44f438 {
    opacity: 1;
}

.product-overlay-44f438 .btn-4e76c8 {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.product-info-6f1929 {
    padding: 20px;
    text-align: center;
}

.product-info-6f1929 h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.product-info-6f1929 p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ==================== 新闻资讯区域 ==================== */
.news-2c3596 {
    background: #FFFFFF;
}

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

.news-card-7e0ea0 {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card-7e0ea0:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.news-image-9e77b6 {
    height: 200px;
    overflow: hidden;
}

.news-image-9e77b6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card-7e0ea0:hover .news-image-9e77b6 img {
    transform: scale(1.05);
}

.news-content-22cd74 {
    padding: 24px;
}

.news-meta-fb3743 {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.news-meta-fb3743 i {
    margin-right: 5px;
}

.news-content-22cd74 h4 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.news-card-7e0ea0:hover .news-content-22cd74 h4 {
    color: var(--accent-color);
}

.news-content-22cd74 p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.news-more-b0835b {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent-color);
    font-weight: 500;
}

.news-more-b0835b:hover {
    color: var(--accent-hover);
}

/* ==================== 常见问题区域 ==================== */
.faq-1b55a4 {
    background: var(--secondary-color);
}

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

.faq-item-651757 {
    background: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.faq-question-af1d5a:hover {
    color: var(--accent-color);
}

.faq-question-af1d5a i {
    transition: var(--transition);
    color: var(--accent-color);
}

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

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

.faq-answer-content-612826 {
    padding: 0 30px 24px;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item-651757.active .faq-answer-f88891 {
    max-height: 300px;
}

/* ==================== 客户评价区域 ==================== */
.testimonials-4af463 {
    background: var(--primary-color);
    color: var(--text-light);
}

.testimonials-4af463 .section-title-30b108 h2 {
    color: var(--text-light);
}

.testimonials-4af463 .section-title-30b108 p {
    color: rgba(255, 255, 255, 0.7);
}

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

.testimonial-card-6b817e {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 104, 0.2);
    transition: var(--transition);
}

.testimonial-card-6b817e:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
}

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

.testimonial-avatar-13e149 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.testimonial-avatar-13e149 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info-1c550c h5 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.testimonial-info-1c550c span {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.testimonial-content-d58d5d {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
}

.testimonial-content-d58d5d::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent-color);
    font-family: 'Noto Serif SC', serif;
    line-height: 1;
}

.testimonial-rating-4a7c06 {
    margin-top: 16px;
    color: var(--accent-color);
}

/* ==================== 联系我们区域 ==================== */
.contact-d3449a {
    background: #FFFFFF;
}

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

.contact-info-8587cd h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-8587cd > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-details-1fe424 {
    margin-bottom: 30px;
}

.contact-item-77c846 {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon-be4292 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2d4a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-be4292 i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.contact-item-content-72fa48 h5 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.contact-item-content-72fa48 p {
    color: var(--text-gray);
}

.contact-social-5e808e {
    display: flex;
    gap: 12px;
}

.social-link-0fd9cc {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link-0fd9cc:hover {
    background: var(--accent-color);
}

.social-link-0fd9cc:hover i {
    color: var(--text-light);
}

.social-link-0fd9cc i {
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-form-6d20cd {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 16px;
}

.contact-form-6d20cd h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.form-group-1d9f56 {
    margin-bottom: 20px;
}

.form-group-1d9f56 label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group-1d9f56 input,
.form-group-1d9f56 textarea,
.form-group-1d9f56 select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #FFFFFF;
}

.form-group-1d9f56 input:focus,
.form-group-1d9f56 textarea:focus,
.form-group-1d9f56 select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group-1d9f56 textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-6d20cd .btn-4e76c8 {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.flink-section-f61902 {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-0aa41c{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-f61902 li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-f61902 a{
    color: #718096;
    text-decoration: none;
}

/* ==================== 页脚区域 ==================== */
.footer-9c3b18 {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

.footer-brand-515213 .logo-9ad243 {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand-515213 p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-title-b4c5f2 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 12px;
}

.footer-title-b4c5f2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-b44791 li {
    margin-bottom: 12px;
}

.footer-links-b44791 a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links-b44791 a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

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

/* ==================== 回到顶部按钮 ==================== */
.back-to-top-7ff33f {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top-7ff33f.visible-dc56fd {
    opacity: 1;
    visibility: visible;
}

.back-to-top-7ff33f:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

.back-to-top-7ff33f i {
    color: var(--text-light);
    font-size: 1.2rem;
}

/* ==================== 滚动动画类 ==================== */
.fade-in-7a57f4 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-7a57f4.visible-dc56fd {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1024px) {
    .hero-ea511e h1 {
        font-size: 2.8rem;
    }
    
    .hero-image-5f5974 {
        width: 40%;
        right: -2%;
    }
    
    .services-grid-0b8623,
    .advantages-grid-46d9ef,
    .testimonials-grid-0451bb {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid-cd9b58 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid-6cfe92 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content-c1e99f {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding-f58947 {
        padding: 70px 0;
    }
    
    .section-title-30b108 h2 {
        font-size: 2rem;
    }
    
    .nav-menu-e18b5f {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 30px;
        transition: var(--transition);
        z-index: 1001;
    }
    
    .nav-menu-e18b5f.active {
        right: 0;
    }
    
    .mobile-toggle-1ace6c {
        display: flex;
        z-index: 1002;
    }
    
    .mobile-toggle-1ace6c.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle-1ace6c.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle-1ace6c.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .header-contact-331e25 {
        display: none;
    }
    
    .hero-ea511e {
        height: auto;
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .hero-content-65c974 {
        text-align: center;
    }
    
    .hero-ea511e h1 {
        font-size: 2.2rem;
    }
    
    .hero-desc-db35e5 {
        font-size: 1rem;
    }
    
    .hero-buttons-b1e07a {
        justify-content: center;
    }
    
    .hero-image-5f5974 {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 40px auto 0;
    }
    
    .services-grid-0b8623,
    .advantages-grid-46d9ef,
    .products-grid-cd9b58,
    .news-grid-6cfe92,
    .testimonials-grid-0451bb {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper-5b2475,
    .contact-wrapper-1411da {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-3269b5::before {
        display: none;
    }
    
    .about-features-cbff43 {
        grid-template-columns: 1fr;
    }
    
    .footer-content-c1e99f {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-title-b4c5f2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-form-6d20cd {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-ea511e h1 {
        font-size: 1.8rem;
    }
    
    .btn-4e76c8 {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .service-card-44c102,
    .advantage-item-0ffe51,
    .testimonial-card-6b817e {
        padding: 24px 20px;
    }
}