:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --primary-light: #e3f2fd;
    --accent-color: #ff9800;
    --accent-hover: #f57c00;
    --text-dark: #333333;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.section-title-fb154d {
    text-align: center;
    margin-bottom: 20px;
}

.section-title-fb154d h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-fb154d h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-title-fb154d p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.section-padding-2a3054 {
    padding: 80px 0;
}

/* Header Styles */
.header-23fef4 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header-23fef4.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

.logo-316a6f i {
    font-size: 1.8rem;
}

.nav-menu-f5f0b6 {
    display: flex;
    gap: 30px;
}

.nav-menu-f5f0b6 a {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu-f5f0b6 a:hover {
    color: var(--primary-color);
}

.nav-menu-f5f0b6 a:hover::after {
    width: 100%;
}

.mobile-menu-btn-c7030c {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero-587f0c {
    padding-top: 120px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-white) 50%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.hero-587f0c::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner-606560 {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.hero-content-96d455 {
    flex: 1;
}

.hero-content-96d455 h1 {
    font-size: 3rem;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-content-96d455 h1 span {
    color: var(--primary-color);
}

.hero-content-96d455 p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons-30e652 {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-ca7047 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary-7b39bc {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary-7b39bc:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent-a00c0b {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-accent-a00c0b:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-086b0a {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.hero-image-47c29c {
    flex: 1;
    position: relative;
}

.hero-image-main-f50a6b {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 8rem;
    box-shadow: var(--shadow-lg);
}

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

.products-intro-d7d47c {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.products-intro-d7d47c p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.product-card-3120fd {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.product-card-3120fd:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image-c7ec2a {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.product-content-d2f172 {
    padding: 25px;
}

.product-content-d2f172 h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.product-content-d2f172 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Advantages Section */
.advantages-7a0467 {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--primary-light) 100%);
}

.advantages-intro-673dd4 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.advantages-intro-673dd4 p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.advantage-card-ced7c4 {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.advantage-card-ced7c4:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.advantage-card-ced7c4:hover::before {
    transform: scaleX(1);
}

.advantage-icon-b50337 {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.advantage-card-ced7c4:hover .advantage-icon-b50337 {
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.1);
}

.advantage-card-ced7c4 h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Process Section */
.process-5a3dc7 {
    background: var(--bg-white);
}

.process-intro-3cea65 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.process-steps-9c4d4c {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.process-steps-9c4d4c::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 0;
}

.process-step-2d6c80 {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.step-number-16b93e {
    width: 100px;
    height: 100px;
    background: var(--bg-white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.process-step-2d6c80:hover .step-number-16b93e {
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.1);
}

.process-step-2d6c80 h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.process-step-2d6c80 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* About Section */
.about-4eec70 {
    background: var(--bg-light);
}

.about-inner-96e2ea {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-7c8ff7 {
    flex: 1;
    position: relative;
}

.about-image-main-95dffa {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 5rem;
    box-shadow: var(--shadow-lg);
}

.about-image-7c8ff7::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-content-e437c6 {
    flex: 1;
}

.about-content-e437c6 h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-content-e437c6 h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

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

.about-features-a317b7 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.about-feature-002381 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Cases Section */
.cases-075246 {
    background: var(--bg-white);
}

.cases-intro-007164 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.cases-grid-beb0e3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.case-card-5f9a11 {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.case-image-453fbf {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
    transition: var(--transition);
}

.case-card-5f9a11:hover .case-image-453fbf {
    transform: scale(1.1);
}

.case-overlay-354f60 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 86, 179, 0.9));
    padding: 30px 20px 20px;
    color: var(--text-light);
    transform: translateY(100%);
    transition: var(--transition);
}

.case-card-5f9a11:hover .case-overlay-354f60 {
    transform: translateY(0);
}

.case-overlay-354f60 h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.case-overlay-354f60 p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* News Section */
.news-ad217a {
    background: var(--bg-light);
}

.news-intro-6de749 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.news-card-8d4b63 {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card-8d4b63:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.news-image-b385d7 {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2.5rem;
}

.news-content-1e3cda {
    padding: 25px;
}

.news-meta-48d97a {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.news-content-1e3cda h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.5;
}

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

.news-link-06c729 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.news-link-06c729:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* FAQ Section */
.faq-90dcb9 {
    background: var(--bg-white);
}

.faq-intro-bc9027 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.faq-item-c09de6 {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: var(--transition);
}

.faq-item-c09de6:hover {
    border-color: var(--primary-color);
}

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

.faq-question-583192:hover {
    color: var(--primary-color);
}

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

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

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

.faq-answer-content-d7f052 {
    padding: 0 25px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item-c09de6.active .faq-answer-49f456 {
    max-height: 500px;
}

/* Testimonials Section */
.testimonials-8c8a4e {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.testimonials-8c8a4e::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSA2MCAwIEwgMCAwIDAgNjAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiIC8+PC9zdmc+');
    opacity: 0.3;
}

.testimonials-8c8a4e .section-title-fb154d h2 {
    color: var(--text-light);
}

.testimonials-8c8a4e .section-title-fb154d h2::after {
    background: linear-gradient(90deg, var(--text-light), var(--accent-color));
}

.testimonials-8c8a4e .section-title-fb154d p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-intro-a0252c {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.testimonial-card-0baa52 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.testimonial-card-0baa52:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

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

.testimonial-avatar-9c4454 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.testimonial-info-d9607f h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-info-d9607f p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-content-a00207 {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    font-style: italic;
}

.testimonial-rating-30cca0 {
    margin-top: 15px;
    color: var(--accent-color);
    font-size: 1rem;
}

/* Contact Section */
.contact-43007a {
    background: var(--bg-light);
}

.contact-inner-8cbe44 {
    display: flex;
    gap: 60px;
}

.contact-info-3e58cb {
    flex: 1;
}

.contact-info-3e58cb h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.contact-info-3e58cb h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

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

.contact-details-9bf280 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-54c1e1 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon-346d6f {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-text-90b6f6 h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-text-90b6f6 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-form-d84e6c {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-form-d84e6c h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.form-group-5dda06 {
    margin-bottom: 20px;
}

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

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

.form-group-5dda06 input:focus,
.form-group-5dda06 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group-5dda06 textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer-afc77b {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 25px;
}

.footer-inner-5789b8 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-d71921 h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-brand-d71921 p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-social-5cdd93 {
    display: flex;
    gap: 12px;
}

.footer-social-5cdd93 a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

.footer-column-030afe h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-030afe h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-links-c5b3ae a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links-c5b3ae a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom-4606ba {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-4606ba p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-friends-14ef62 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-friends-14ef62 a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-friends-14ef62 a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-inner-606560 {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .hero-content-96d455 h1 {
        font-size: 2.5rem;
    }

    .hero-buttons-30e652 {
        justify-content: center;
    }

    .products-grid-1106bf,
    .advantages-grid-88d3f1,
    .news-grid-4788da,
    .testimonials-grid-54ad20 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-grid-beb0e3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps-9c4d4c {
        flex-wrap: wrap;
        gap: 30px;
    }

    .process-steps-9c4d4c::before {
        display: none;
    }

    .process-step-2d6c80 {
        flex: 0 0 calc(50% - 15px);
    }

    .about-inner-96e2ea {
        flex-direction: column;
    }

    .contact-inner-8cbe44 {
        flex-direction: column;
    }

    .footer-inner-5789b8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu-f5f0b6 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu-f5f0b6.active {
        display: flex;
    }

    .mobile-menu-btn-c7030c {
        display: block;
    }

    .hero-content-96d455 h1 {
        font-size: 2rem;
    }

    .section-title-fb154d h2 {
        font-size: 2rem;
    }

    .section-padding-2a3054 {
        padding: 50px 0;
    }

    .products-grid-1106bf,
    .advantages-grid-88d3f1,
    .news-grid-4788da,
    .testimonials-grid-54ad20,
    .cases-grid-beb0e3 {
        grid-template-columns: 1fr;
    }

    .process-step-2d6c80 {
        flex: 0 0 100%;
    }

    .about-image-main-95dffa {
        height: 300px;
    }

    .footer-inner-5789b8 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social-5cdd93 {
        justify-content: center;
    }

    .footer-bottom-4606ba {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-d84e6c {
        padding: 25px;
    }
    .back-to-top-b27a72{
        right: 20px !important;
    }
}

/* Animation Classes */
.fade-in-c44e6f {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-c44e6f.visible-ca35e5 {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top */
.back-to-top-b27a72 {
    position: fixed;
    bottom: 200px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top-b27a72.visible-ca35e5 {
    opacity: 1;
    visibility: visible;
}

.back-to-top-b27a72:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}