/* ========================================
   固德中国电子科技有限公司 - 企业官网样式
   主色调：活力橙
   ======================================== */

/* CSS 变量定义 */
:root {
    /* 主色调 - 活力橙 */
    --primary-orange: #ff6b35;
    --primary-orange-hover: #e55a2b;
    --primary-orange-light: #fff3ed;
    
    /* 背景色 */
    --canvas-bg: #fcfcfc;
    --section-bg: #fff8f5;
    --card-bg: #ffffff;
    
    /* 文字色 */
    --text-primary: #020520;
    --text-secondary: #14141e;
    --text-nav: #374151;
    --text-body: #4b5563;
    --text-muted: #696a72;
    --text-light: #95959b;
    
    /* 边框和阴影 */
    --border-light: #e5e7eb;
    --shadow-sm: rgba(0, 0, 0, 0.05) 0px 0px 4px -2px;
    --shadow-md: rgba(0, 0, 0, 0.08) 0px 2px 8px -2px;
    --shadow-lg: rgba(0, 0, 0, 0.1) 0px 4px 16px -4px;
    
    /* 圆角 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-pill: 100px;
    
    /* 间距 */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    --spacing-3xl: 48px;
    --spacing-4xl: 80px;
    
    /* 最大宽度 */
    --max-width: 1200px;
    
    /* 字体 */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 重置样式 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-body);
    background-color: var(--canvas-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--text-nav);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-orange);
}

ul, ol {
    list-style: none;
}

/* 容器 */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* 通用区块 */
.section {
    padding: var(--spacing-4xl) 0;
}

.section-alt {
    background-color: var(--section-bg);
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.76px;
    line-height: 1.08;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   导航栏
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: rgba(252, 252, 252, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.navbar-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.navbar-logo .logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.navbar-menu a {
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-nav);
    transition: all 0.2s ease;
}

.navbar-menu a:hover {
    background: var(--section-bg);
    color: var(--primary-orange);
}

.navbar-menu a.active {
    color: var(--primary-orange);
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-orange-hover) 0%, var(--primary-orange) 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-outline:hover {
    background: var(--section-bg);
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    border-radius: var(--radius-pill);
    padding: 14px 32px;
}

.btn-ghost:hover {
    background: var(--primary-orange-light);
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ========================================
   首页 Hero 区域
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    background: radial-gradient(ellipse at 50% 30%, var(--primary-orange-light) 0%, var(--canvas-bg) 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(97.8% 181.6% at 53.7% 50%, rgba(255, 107, 53, 0.08) 0%, rgba(255, 140, 90, 0.4) 100%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary-orange-light);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: var(--spacing-xl);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.05;
    letter-spacing: -1.51px;
    margin-bottom: var(--spacing-xl);
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 160px;
}

/* ========================================
   核心优势
   ======================================== */
.advantages {
    padding: var(--spacing-4xl) 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.advantage-card {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-lg);
    background: var(--primary-orange-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-orange);
}

.advantage-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.advantage-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   关于我们预览
   ======================================== */
.about-preview {
    padding: var(--spacing-4xl) 0;
    background: var(--section-bg);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-preview-text h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.76px;
    line-height: 1.08;
}

.about-preview-text p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-preview-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-preview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ========================================
   产品展示
   ======================================== */
.products {
    padding: var(--spacing-4xl) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--section-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-orange);
}

.product-content {
    padding: var(--spacing-xl);
}

.product-tag {
    display: inline-block;
    padding: 2px 8px;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.product-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-orange);
}

.product-link:hover {
    gap: var(--spacing-md);
}

.product-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.product-card:hover .product-link::after {
    transform: translateX(4px);
}

/* ========================================
   客户案例
   ======================================== */
.cases {
    padding: var(--spacing-4xl) 0;
    background: var(--section-bg);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.case-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.case-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--section-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-orange);
}

.case-content {
    padding: var(--spacing-xl);
}

.case-client {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.case-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.case-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-orange);
}

/* ========================================
   新闻动态
   ======================================== */
.news {
    padding: var(--spacing-4xl) 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.news-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.news-image {
    height: 160px;
    background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--section-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-orange);
}

.news-content {
    padding: var(--spacing-xl);
}

.news-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.news-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-orange);
}

/* ========================================
   联系我们
   ======================================== */
.contact {
    padding: var(--spacing-4xl) 0;
    background: var(--section-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.contact-info p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.contact-list {
    margin-bottom: var(--spacing-2xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-orange-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.contact-item-text {
    flex: 1;
}

.contact-item-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-item-value {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--primary-orange);
    color: white;
}

.contact-form {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--canvas-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c5a 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--primary-orange-hover) 0%, var(--primary-orange) 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   页脚
   ======================================== */
.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-brand .logo-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.footer-links ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-links ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
}

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

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

/* ========================================
   内页通用样式
   ======================================== */
.page-header {
    padding: 140px 0 60px;
    background: var(--section-bg);
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.76px;
}

.page-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary-orange);
}

.breadcrumb span {
    color: var(--text-light);
}

/* 详情页内容 */
.detail-content {
    padding: var(--spacing-3xl) 0;
}

.detail-content .container {
    max-width: 900px;
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--border-light);
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 13px;
    color: var(--text-muted);
}

.detail-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
}

.detail-body h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--spacing-2xl) 0 var(--spacing-lg);
}

.detail-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin: var(--spacing-xl) 0 var(--spacing-md);
}

.detail-body p {
    margin-bottom: var(--spacing-lg);
}

.detail-body ul,
.detail-body ol {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.detail-body li {
    margin-bottom: var(--spacing-sm);
}

.detail-body img {
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
}

/* 返回按钮 */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    font-size: 14px;
    color: var(--text-nav);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-xl);
}

.back-btn:hover {
    background: var(--section-bg);
    color: var(--primary-orange);
}

/* ========================================
   响应式设计
   ======================================== */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid,
    .cases-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--canvas-bg);
        flex-direction: column;
        padding: var(--spacing-lg);
        border-bottom: 1px solid var(--border-light);
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .navbar-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .about-preview-content {
        grid-template-columns: 1fr;
    }
    
    .about-preview-image {
        order: -1;
    }
    
    .products-grid,
    .cases-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .section {
        padding: var(--spacing-3xl) 0;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}
