/* 基础重置和设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 颜色变量 - 科技感 + 传统文化融合 */
    --primary-color: #2c3e50;        /* 深蓝色 - 科技感 */
    --secondary-color: #8e44ad;      /* 紫色 - 科技感 */
    --accent-color: #f39c12;         /* 金色 - 传统文化 */
    --accent-light: #e67e22;         /* 橙色 - 传统文化 */
    --text-primary: #2c3e50;         /* 主要文字色 */
    --text-secondary: #7f8c8d;       /* 次要文字色 */
    --text-light: #ecf0f1;           /* 浅色文字 */
    --bg-primary: #ffffff;           /* 主要背景 */
    --bg-secondary: #f8f9fa;         /* 次要背景 */
    --bg-dark: #34495e;              /* 深色背景 */
    --border-color: #e9ecef;         /* 边框颜色 */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-cultural: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    
    /* 字体大小 */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;
    --font-5xl: 3rem;
    
    /* 间距 */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* 圆角 */
    --radius-sm: 0.25rem;
    --radius-base: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* 过渡 */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-base);
    object-fit: cover;
}

.company-name {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(142, 68, 173, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 var(--space-6);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: var(--font-5xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-main {
    display: block;
    background: linear-gradient(45deg, #fff, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    display: block;
    font-size: var(--font-4xl);
    margin-top: var(--space-2);
    background: linear-gradient(45deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--font-xl);
    margin-bottom: var(--space-8);
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-xl);
    font-size: var(--font-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 140px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* 核心价值展示 */
.core-values {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: var(--font-4xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
    position: relative;
}

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

.section-subtitle {
    font-size: var(--font-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.value-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    border-radius: 50%;
    overflow: hidden;
}

.value-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-title {
    font-size: var(--font-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 数据展示 */
.stats-section {
    padding: var(--space-16) 0;
    background: var(--gradient-primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    text-align: center;
}

.stat-item {
    padding: var(--space-6);
}

.stat-number {
    font-size: var(--font-4xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    background: linear-gradient(45deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--font-lg);
    opacity: 0.9;
}

/* 关于我们 */
.about-section {
    padding: var(--space-20) 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: var(--space-8);
}

.about-description p {
    font-size: var(--font-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.about-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

/* 核心优势 */
.advantages-section {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.advantage-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.advantage-title {
    font-size: var(--font-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-6);
}

.advantage-list {
    list-style: none;
}

.advantage-list li {
    padding: var(--space-3) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--space-6);
}

.advantage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* 产品与服务 */
.products-section {
    padding: var(--space-20) 0;
    background: white;
}

.product-category {
    margin-bottom: var(--space-16);
}

.category-title {
    font-size: var(--font-3xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-8);
    text-align: center;
}

.product-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.product-card,
.service-card {
    background: var(--bg-secondary);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.product-card:hover,
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-name,
.service-name {
    font-size: var(--font-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.feature-tag {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-base);
    font-size: var(--font-sm);
    font-weight: 500;
}

/* 开发中产品特殊样式 */
.product-card:has(.product-name:contains("神蒜AI")) {
    position: relative;
    border: 2px dashed var(--accent-color);
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.05) 0%, rgba(230, 126, 34, 0.05) 100%);
}

.product-card:has(.product-name:contains("神蒜AI"))::before {
    content: '开发中';
    position: absolute;
    top: -12px;
    right: var(--space-4);
    background: var(--accent-color);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-base);
    font-size: var(--font-sm);
    font-weight: 600;
    z-index: 10;
    animation: pulse 2s infinite;
}

.product-card:has(.product-name:contains("神蒜AI")) .product-description {
    color: var(--text-secondary);
    font-style: italic;
}

/* 为兼容旧浏览器，添加备用样式 */
.product-card:nth-of-type(2) {
    position: relative;
    border: 2px dashed var(--accent-color);
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.05) 0%, rgba(230, 126, 34, 0.05) 100%);
}

.product-card:nth-of-type(2)::before {
    content: '开发中';
    position: absolute;
    top: -12px;
    right: var(--space-4);
    background: var(--accent-color);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-base);
    font-size: var(--font-sm);
    font-weight: 600;
    z-index: 10;
    animation: pulse 2s infinite;
}

.product-card:nth-of-type(2) .product-description {
    color: var(--text-secondary);
    font-style: italic;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: var(--space-2) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--space-6);
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* 技术实力 */
.technology-section {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.tech-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.tech-stack-title,
.advantages-title {
    font-size: var(--font-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-6);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.tech-item h4 {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.tech-item p {
    color: var(--text-secondary);
    font-size: var(--font-sm);
    line-height: 1.6;
}

.advantages-list {
    list-style: none;
}

.advantages-list li {
    padding: var(--space-3) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--space-6);
}

.advantages-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* 联系我们 */
.contact-section {
    padding: var(--space-20) 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.contact-item {
    margin-bottom: var(--space-8);
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.contact-item h3,
.social-media h3,
.contact-form h3 {
    font-size: var(--font-2xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-6);
}

.contact-details {
    background: var(--bg-secondary);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.contact-details:has(.wechat-qrcode) {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-8);
    background: white;
}

.contact-details p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    line-height: 1.8;
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-details p:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-details p:hover {
    padding-left: var(--space-2);
    color: var(--text-primary);
}

.contact-details strong {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    min-width: 100px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.social-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

.wechat-qrcode {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-xl);
    border: 3px solid var(--border-color);
    padding: var(--space-2);
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.wechat-qrcode:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.social-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* 联系表单 */
.form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea {
    padding: var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-base);
    font-size: var(--font-base);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
}

/* 法律声明 */
.legal-section {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
}

.legal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
}

.legal-item {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow);
}

.legal-item h3 {
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

.legal-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 页脚 */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    margin-bottom: var(--space-12);
    display: flex;
    justify-content: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-base);
    object-fit: cover;
}

.footer-company-name {
    font-size: var(--font-lg);
    font-weight: 600;
}

.footer-description {
    font-size: var(--font-lg);
    margin-bottom: var(--space-4);
    background: linear-gradient(45deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-copyright {
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
    width: 100%;
    max-width: 1000px;
}

.footer-section h4 {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: var(--space-5);
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: var(--space-3);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: var(--font-base);
    transition: var(--transition);
    display: inline-block;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-info {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-info .footer-logo {
    justify-content: center;
    margin-bottom: var(--space-4);
}

.footer-info .footer-description {
    margin-bottom: var(--space-3);
}

.footer-info .footer-copyright {
    margin-bottom: var(--space-4);
    font-size: var(--font-sm);
    opacity: 0.8;
}

.footer-beian {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: var(--space-4);
}

.beian-icon {
    display: inline-flex;
    align-items: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.beian-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-beian a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: var(--font-sm);
    transition: var(--transition);
    opacity: 0.85;
}

.footer-beian a:hover {
    opacity: 1;
    color: #ffffff;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-title {
        font-size: var(--font-4xl);
    }
    
    .title-sub {
        font-size: var(--font-3xl);
    }
    
    .about-content,
    .tech-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --font-5xl: 2.25rem;
        --font-4xl: 1.875rem;
        --font-3xl: 1.5rem;
        --space-20: 4rem;
        --space-16: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: var(--space-8) 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: var(--font-3xl);
    }
    
    .title-sub {
        font-size: var(--font-2xl);
    }
    
    .hero-description {
        font-size: var(--font-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .values-grid,
    .advantages-grid,
    .product-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .social-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }
}