@charset "UTF-8";

/* ============================================
   首页专属样式
   ============================================ */

/* ---- Hero Banner ---- */
.hero {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    color: var(--white);
    background: #0C4A6E;
}
.hero-bg {
    position: absolute;
    inset: -28px;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    transform: scale(1.01);
    opacity: 0.98;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6,45,63,0.70) 0%, rgba(6,45,63,0.48) 48%, rgba(6,45,63,0.18) 100%),
        linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(6,45,63,0.46) 100%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 110px);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 88px 16px 46px;
}
.hero-main {
    max-width: 760px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.11);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 9px 18px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #BAE6FD;
    backdrop-filter: blur(8px);
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38BDF8;
    box-shadow: 0 0 0 6px rgba(56,189,248,0.16);
}
.hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.16;
    margin: 0 0 24px;
    letter-spacing: 0;
}
.title-line1, .title-line2 { display: block; }
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    max-width: 680px;
    margin: 0 0 34px;
    line-height: 1.85;
}
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary:hover { background: #92400E; transform: translateY(-2px); }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.42);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.14); }
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 9px 14px;
    color: rgba(255,255,255,0.84);
    font-size: 14px;
    backdrop-filter: blur(8px);
}
.hero-point::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7DD3FC;
}
.data-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 54px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(10px);
}
.data-item {
    min-height: 112px;
    padding: 22px 26px;
    border-right: 1px solid rgba(255,255,255,0.13);
}
.data-item:last-child { border-right: none; }
.data-number { font-size: 38px; font-weight: 700; color: #7DD3FC; line-height: 1; }
.data-label { font-size: 15px; color: rgba(255,255,255,0.9); margin-top: 10px; }
.data-note { font-size: 12px; color: rgba(255,255,255,0.58); margin-top: 5px; }
.data-divider { display: none; }

/* ---- 服务卡片 ---- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid rgba(12,74,110,0.05);
    text-align: center;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--highlight) 0%, var(--primary) 100%);
    border-radius: 16px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}
.service-icon.icon-star { background: linear-gradient(135deg, #F59E0B, #D97706); }
.service-icon.icon-diamond { background: linear-gradient(135deg, var(--highlight), var(--primary)); }
.service-icon.icon-grid { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.service-icon.icon-cycle { background: linear-gradient(135deg, #10B981, #059669); }
.service-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ---- AI布草检测 ---- */
.ai-section { background: var(--white); }
.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ai-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.ai-image img { width: 100%; height: 100%; object-fit: cover; }
.ai-text h2 { font-size: 32px; color: var(--primary); margin-bottom: 20px; }
.ai-text p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.ai-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.ai-feature-item { display: flex; align-items: start; gap: 12px; padding: 12px; background: var(--bg); border-radius: 8px; }
.ai-feature-item svg { flex-shrink: 0; color: var(--accent); }
.ai-feature-item p { font-size: 14px; color: var(--text); margin-bottom: 0; }
.ai-feature-desc { font-size: 14px; color: var(--text-light); margin-top: 2px; }
.ai-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin-top: 24px;
}

/* ---- 品质细节 ---- */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.quality-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(12,74,110,0.05);
}
.quality-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quality-icon {
    width: 56px; height: 56px;
    background: rgba(56,189,248,0.1);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}
.quality-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.quality-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ---- 行业知识 ---- */
.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.knowledge-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    padding: 28px 24px;
}
.knowledge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.knowledge-card-img {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--primary) 0%, #164E63 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}
.knowledge-card-body { padding: 20px; }
.knowledge-card-body h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
.knowledge-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ---- 标杆案例 ---- */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.case-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.case-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.case-card:hover .case-card-img img { transform: scale(1.05); }
.case-card-body { padding: 24px; }
.case-card-body h3 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.case-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ---- 客户证言 ---- */

/* ---- 新闻+FAQ ---- */
.news-faq-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.news-list-v2 { list-style: none; }
.news-list-v2 li { padding: 16px 0; border-bottom: 1px solid rgba(12,74,110,0.06); }
.news-list-v2 a { text-decoration: none; color: var(--text); font-size: 15px; transition: color 0.3s; }
.news-list-v2 a:hover { color: var(--primary); }
.news-date { font-size: 13px; color: var(--text-light); display: block; margin-bottom: 4px; }
.faq-item-v2 {
    margin-bottom: 12px;
    border: 1px solid rgba(12,74,110,0.06);
    border-radius: 8px;
    overflow: hidden;
}
.faq-q {
    padding: 16px 20px;
    background: var(--bg);
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s; font-size: 14px; color: var(--text-light); line-height: 1.7; }
.faq-item-v2.active .faq-a { padding: 16px 20px; max-height: 200px; }

/* ---- Index section fixes ---- */
.ai-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 420px;
    background: var(--bg);
}
.ai-visual img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}
.ai-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(12,74,110,0.88);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}
.ai-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(180,83,9,0.12);
    color: var(--accent);
    font-weight: 700;
}

.quality-img,
.case-img,
.news-top-img {
    position: relative;
    overflow: hidden;
}
.quality-img {
    height: 210px;
}
.quality-img img,
.case-img img,
.news-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.quality-img-contain {
    background: #F8FAFC;
}
.quality-img-contain img {
    object-fit: contain;
    padding: 12px;
}
.quality-card:hover .quality-img img,
.case-card:hover .case-img img,
.news-top-item:hover .news-top-img img {
    transform: scale(1.04);
}
.quality-content,
.case-content {
    padding: 24px;
}
.quality-tag,
.case-badge,
.news-tag-compact,
.news-list-tag {
    display: inline-block;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.quality-tag {
    color: var(--accent);
    background: rgba(180,83,9,0.1);
    padding: 5px 12px;
    margin-bottom: 14px;
}
.case-img {
    height: 220px;
}
.case-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 12px;
    background: rgba(12,74,110,0.88);
    color: var(--white);
}
.case-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
}
.case-subtitle { color: var(--text-light); font-size: 14px; margin-bottom: 8px; }
.case-quote {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 12px;
    padding-left: 14px;
    border-left: 3px solid rgba(180,83,9,0.35);
}

.knowledge-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
}
.knowledge-icon img {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
}
.knowledge-title {
    font-size: 18px;
    color: var(--primary);
    line-height: 1.45;
    margin-bottom: 10px;
}
.knowledge-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 18px;
}
.knowledge-link,
.news-more-link,
.news-top-meta a,
.news-bottom-btn,
.faq-bottom-btn {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.news-section-v2,
.faq-section-v2 {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(12,74,110,0.06);
    overflow: hidden;
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.news-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}
.news-header-bar h3 {
    font-size: 22px;
    color: var(--primary);
}
.news-top-item {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 18px;
    padding-bottom: 22px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(12,74,110,0.08);
}
.news-top-img {
    height: 132px;
    border-radius: 8px;
}
.news-top-title {
    font-size: 18px;
    color: var(--primary);
    line-height: 1.45;
    margin: 10px 0 8px;
}
.news-top-content {
    min-width: 0;
}
.news-top-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}
.news-top-meta,
.news-list-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 13px;
}
.news-list-date {
    color: var(--text-light);
}
.news-tag-compact,
.news-list-tag {
    color: var(--accent);
    background: rgba(180,83,9,0.1);
    padding: 4px 10px;
}
.news-list-v2 {
    margin-top: 4px;
}
.news-list-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(12,74,110,0.06);
}
.news-list-title {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 8px;
}
.news-list-title a {
    color: var(--text);
    text-decoration: none;
}
.news-list-title a:hover {
    color: var(--primary);
}
.news-bottom-btn,
.faq-bottom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 13px 18px;
    border-radius: 6px;
    background: rgba(180,83,9,0.1);
}

.faq-header-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: -28px -28px 0 -28px;
    padding: 28px;
    background: var(--primary);
    color: var(--white);
}
.faq-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    font-size: 24px;
}
.faq-header-text h3 {
    font-size: 22px;
    margin-bottom: 4px;
}
.faq-header-text p {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
}
.faq-list-v2 {
    padding: 8px 0 0;
}
.faq-question-v2 {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(12,74,110,0.08);
}
.faq-q-text {
    color: var(--primary);
    font-weight: 600;
    line-height: 1.5;
}
.faq-q-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12,74,110,0.08);
    color: var(--primary);
}
.faq-answer-v2 {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-answer-v2 p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
    padding: 0 0 0;
}
.faq-item-v2.active .faq-answer-v2 {
    max-height: 240px;
    padding: 0 0 16px;
}
.faq-item-v2.active .faq-q-icon {
    background: var(--accent);
    color: var(--white);
}

/* ---- Home Responsive ---- */
@media (max-width: 1024px) {
    .hero-content { padding: 72px 16px 42px; }
    .hero-main { max-width: 760px; }
    .hero h1 { font-size: 48px; }
    .data-board { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 36px; }
    .data-item:nth-child(2) { border-right: none; }
    .data-item { border-bottom: 1px solid rgba(255,255,255,0.13); }
    .data-item:nth-child(3), .data-item:nth-child(4) { border-bottom: none; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .quality-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .knowledge-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-content { grid-template-columns: 1fr; gap: 40px; }
    .news-faq-grid-v2 { grid-template-columns: 1fr; }
    .faq-section-v2 { order: -1; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; }
    .hero-bg { inset: -18px; }
    .hero-bg img { filter: blur(1px); transform: scale(1.015); }
    .hero-content { padding: 54px 16px 36px; }
    .hero-badge { font-size: 12px; padding: 8px 14px; margin-bottom: 20px; }
    .hero h1 { font-size: 34px; line-height: 1.22; }
    .hero-subtitle { font-size: 15px; line-height: 1.75; margin-bottom: 26px; }
    .hero-cta { flex-direction: column; gap: 12px; margin-bottom: 22px; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 15px; }
    .hero-points { gap: 8px; }
    .hero-point { width: 100%; justify-content: flex-start; }
    .data-board { grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 28px; }
    .data-item { min-height: 88px; padding: 14px 12px; }
    .data-number { font-size: 28px; }
    .data-label { font-size: 13px; }
    .news-header-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
    .faq-header-v2 { flex-direction: column; text-align: center; padding: 24px; }
    .faq-bottom-btn { margin: 0 20px 20px 20px; }
    .news-top-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .news-top-img {
        height: 180px;
        width: 100%;
    }
    .news-top-title {
        font-size: 16px;
    }
    .knowledge-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .knowledge-card {
        padding: 20px;
    }
}

/* ==========================================
   企业理念页 (about/culture/)
   ========================================== */
.values-box {
    background: linear-gradient(135deg, var(--primary) 0%, #164E63 100%);
    color: #fff;
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}
.values-box h2 { font-size: 36px; margin-bottom: 20px; }
.values-box p { font-size: 20px; opacity: 0.9; max-width: 800px; margin: 0 auto; line-height: 1.8; }

.culture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.culture-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid transparent;
}
.culture-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-top-color: var(--accent); }
.culture-icon { font-size: 48px; margin-bottom: 20px; }
.culture-card h3 { font-size: 22px; color: var(--primary); margin-bottom: 15px; }
.culture-card p { color: var(--text-light); font-size: 15px; line-height: 1.7; }

.quality-principle { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.principle-item {
    background: #fff; padding: 30px 20px; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow);
    border-top: 3px solid var(--accent); transition: transform 0.3s;
}
.principle-item:hover { transform: translateY(-4px); }
.principle-num { font-size: 36px; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.principle-item h4 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.principle-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.promise-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.promise-item {
    display: flex; gap: 20px; background: #fff; padding: 30px;
    border-radius: var(--radius); box-shadow: var(--shadow);
    align-items: flex-start; transition: transform 0.3s;
}
.promise-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.promise-icon {
    flex-shrink: 0; width: 56px; height: 56px;
    background: rgba(12,74,110,0.08); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.promise-text h4 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
.promise-text p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

.spirit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.spirit-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); height: 400px; }
.spirit-img img { width: 100%; height: 100%; object-fit: cover; }
.spirit-text h2 { font-size: 32px; color: var(--primary); margin-bottom: 24px; }
.spirit-text p { font-size: 16px; color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
    border-radius: var(--radius); overflow: hidden; height: 240px;
    box-shadow: var(--shadow); transition: transform 0.3s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.section-white { background: #fff; max-width: 100%; padding-left: calc((100% - 1200px) / 2 + 16px); padding-right: calc((100% - 1200px) / 2 + 16px); }
.section-inner { max-width: 1200px; margin: 0 auto; }

@media (max-width: 1024px) {
    .culture-grid { grid-template-columns: repeat(2, 1fr); }
    .quality-principle { grid-template-columns: repeat(2, 1fr); }
    .promise-list { grid-template-columns: 1fr; }
    .spirit-grid { grid-template-columns: 1fr; gap: 40px; }
    .spirit-img { height: 300px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .culture-grid { grid-template-columns: 1fr; }
    .quality-principle { grid-template-columns: 1fr; }
    .promise-list { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .values-box { padding: 40px 20px; }
    .values-box h2 { font-size: 24px; }
    .values-box p { font-size: 16px; }
    .spirit-img { height: 240px; }
    .spirit-text h2 { font-size: 24px; }
}

/* ==========================================
   工厂实力页 (about/factory/)
   ========================================== */
.factory-info { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.factory-info h2 { font-size: 32px; color: var(--primary); margin-bottom: 24px; }
.factory-info p { color: var(--text-light); margin-bottom: 20px; font-size: 16px; line-height: 1.8; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.stat-item { background: #fff; padding: 30px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.stat-num { font-size: 36px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.stat-label { font-size: 14px; color: var(--text-light); }
.factory-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.factory-gallery .gallery-item { height: 300px; }
@media (max-width: 768px) {
    .factory-info { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .factory-gallery { grid-template-columns: 1fr; }
}

/* ==========================================
   关于我们首页 (about/index.html)
   ========================================== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-intro-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-text h3 { font-size: 28px; color: var(--primary); margin-bottom: 20px; }
.about-intro-text p { font-size: 16px; color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.about-intro-text strong { color: var(--text); }
.about-stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(12,74,110,0.08); }
.about-stat-item { text-align: center; }
.about-stat-number { font-size: 36px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 8px; font-family: Arial, sans-serif; }
.about-stat-label { font-size: 14px; color: var(--text-light); }

.timeline-section { background: linear-gradient(135deg, #F0F9FF 0%, var(--bg) 100%); border-top: 1px solid rgba(56,189,248,0.1); border-bottom: 1px solid rgba(56,189,248,0.1); }
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: linear-gradient(180deg, var(--highlight) 0%, var(--primary) 100%); transform: translateX(-50%); }
.timeline-item { position: relative; width: 50%; padding: 0 40px 60px 0; text-align: right; }
.timeline-item:nth-child(even) { margin-left: 50%; padding: 0 0 60px 40px; text-align: left; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; top: 4px; right: -10px; width: 20px; height: 20px; background: var(--accent); border-radius: 50%; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--accent); }
.timeline-item:nth-child(even) .timeline-dot { right: auto; left: -10px; }
.timeline-year { display: inline-block; background: var(--primary); color: var(--white); padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.timeline-title { font-size: 20px; color: var(--primary); margin-bottom: 10px; font-weight: 600; }
.timeline-desc { font-size: 15px; color: var(--text-light); line-height: 1.7; }

.about-factory-section { background: var(--white); }
.about-factory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.about-factory-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-factory-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.about-factory-img:hover img { transform: scale(1.03); }
.factory-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.factory-feature { display: flex; align-items: start; gap: 16px; padding: 24px; background: var(--bg); border-radius: 12px; transition: all 0.3s; }
.factory-feature:hover { background: rgba(56,189,248,0.08); }
.factory-feature-icon { width: 48px; height: 48px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--white); flex-shrink: 0; }
.factory-feature h4 { font-size: 17px; color: var(--primary); margin-bottom: 6px; }
.factory-feature p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.about-honor-section { background: linear-gradient(135deg, var(--primary) 0%, #164E63 100%); color: var(--white); }
.about-honor-section .section-title h2, .about-honor-section .section-title p { color: var(--white); }
.about-honor-section .section-title p { opacity: 0.8; }
.about-honor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-honor-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 28px 20px; text-align: center; transition: all 0.3s; }
.about-honor-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); border-color: rgba(255,255,255,0.25); }
.about-honor-icon { width: 56px; height: 56px; background: rgba(255,255,255,0.15); border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; }
.about-honor-card h4 { font-size: 16px; margin-bottom: 8px; font-weight: 600; }
.about-honor-card p { font-size: 13px; opacity: 0.75; line-height: 1.5; }

.about-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--white); padding: 14px 36px; border-radius: 6px; text-decoration: none; font-size: 16px; font-weight: 600; transition: all 0.3s; }
.about-cta-btn:hover { background: #92400E; transform: translateY(-2px); }

@media (max-width: 1024px) {
    .about-intro { grid-template-columns: 1fr; gap: 40px; }
    .about-intro-img { order: -1; }
    .about-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 40px 50px; text-align: left; }
    .timeline-dot { left: 10px !important; right: auto !important; }
    .about-honor-grid { grid-template-columns: repeat(2, 1fr); }
 .about-factory-grid { grid-template-columns: 1fr; }
 .factory-features { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .about-stats-bar { grid-template-columns: 1fr 1fr; }
    .about-honor-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   技术设备页智能分拣 (technology/index.html)
   ========================================== */
.ai-hero { background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 40%, #F8FAFC 100%); color: var(--text); padding: 80px 0; }
.ai-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.ai-hero-text h2 { font-size: 42px; font-weight: 700; margin-bottom: 24px; color: var(--primary); }
.ai-hero-text h2 span { color: var(--accent); }
.ai-hero-text p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.ai-hero-text strong { color: var(--primary); }
.ai-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.ai-hero-stat { background: var(--white); border: 1px solid rgba(12,74,110,0.1); border-radius: var(--radius); padding: 24px 20px; text-align: center; box-shadow: var(--shadow); }
.ai-hero-stat .num { font-size: 32px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.ai-hero-stat .label { font-size: 14px; color: var(--text-light); }
.ai-hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.ai-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.ai-process { background: var(--bg); }
.ai-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ai-process-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s; }
.ai-process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ai-process-icon { width: 56px; height: 56px; background: rgba(12,74,110,0.08); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.ai-process-card h4 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.ai-process-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

@media (max-width: 1024px) {
    .ai-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .ai-hero-img { order: -1; }
    .ai-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ai-hero { padding: 60px 0; }
    .ai-hero-text h2 { font-size: 32px; }
    .ai-hero-stats { grid-template-columns: 1fr; }
    .ai-process-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   洗涤工艺流程 (technology/index.html)
   ========================================== */
.process-section .process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.process-section .process-step {
    width: auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px 28px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 1px solid rgba(12,74,110,0.06);
}
.process-section .process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.process-section .process-step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--highlight), var(--primary));
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(12,74,110,0.15);
}
.process-section .process-step h4 {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}
.process-section .process-step p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}
@media (max-width: 1024px) {
    .process-section .process-flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .process-section .process-flow { grid-template-columns: 1fr; gap: 16px; }
    .process-section .process-step { padding: 24px 20px; }
}

/* ==========================================
   技术设备页水质/数据看板 (technology/index.html)
   ========================================== */
.water-section { padding: 80px 0; max-width: 1200px; margin: 0 auto; padding-left: 16px; padding-right: 16px; }
.water-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.water-content h3 { font-size: 28px; color: var(--primary); margin-bottom: 20px; }
.water-content p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.water-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.water-feature { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--bg); border-radius: var(--radius); }
.water-feature-icon { width: 40px; height: 40px; background: rgba(56,189,248,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.water-feature span { font-size: 14px; color: var(--text); font-weight: 500; }
.water-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.water-img img { width: 100%; height: 100%; object-fit: cover; }

.data-dashboard { background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%); color: var(--text); padding: 60px 0; }
.data-dashboard-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.data-dashboard-item { text-align: center; padding: 30px 20px; border-right: 1px solid rgba(12,74,110,0.08); }
.data-dashboard-item:last-child { border-right: none; }
.data-dashboard-item .num { font-size: 38px; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.data-dashboard-item .label { font-size: 14px; color: var(--text-light); }

/* 洗涤设备 */
.equipment-section { padding: 80px 0; max-width: 1200px; margin: 0 auto; padding-left: 16px; padding-right: 16px; }
.equipment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.equipment-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; }
.equipment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.equipment-img { height: 200px; overflow: hidden; }
.equipment-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.equipment-card:hover .equipment-img img { transform: scale(1.05); }
.equipment-body { padding: 24px; }
.equipment-body h4 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.equipment-body p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.equipment-info { padding: 24px; }
.equipment-tag { display: inline-block; background: rgba(56,189,248,0.1); color: var(--primary); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 10px; }
.equipment-info h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.equipment-info p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.equipment-specs { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 12px; border-top: 1px solid rgba(12,74,110,0.08); }
.equipment-specs span { background: var(--bg); color: var(--text-light); padding: 4px 12px; border-radius: 6px; font-size: 12px; }

@media (max-width: 1024px) {
    .water-grid { grid-template-columns: 1fr; gap: 40px; }
    .data-dashboard-content { grid-template-columns: repeat(2, 1fr); }
    .data-dashboard-item:nth-child(2) { border-right: none; }
    .data-dashboard-item { border-bottom: 1px solid rgba(12,74,110,0.08); }
    .data-dashboard-item:nth-child(3), .data-dashboard-item:nth-child(4) { border-bottom: none; }
    .equipment-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .water-section { padding: 60px 16px; }
    .water-features { grid-template-columns: 1fr; }
    .data-dashboard-content { grid-template-columns: 1fr; }
    .data-dashboard-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .data-dashboard-item:last-child { border-bottom: none; }
    .equipment-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   智能分拣系统详情页 (technology/sorting/)
   ========================================== */
.banner-stats { display: flex; gap: 40px; margin-top: 24px; }
.banner-stat { text-align: center; }
.banner-stat .num { font-size: 28px; font-weight: 700; color: var(--highlight); }
.banner-stat .label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

.tech-core { padding: 80px 0; max-width: 1200px; margin: 0 auto; padding-left: 16px; padding-right: 16px; }
.tech-core-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tech-core-text h2 { font-size: 32px; color: var(--primary); margin-bottom: 16px; }
.tech-core-text h3 { font-size: 32px; color: var(--primary); margin-bottom: 16px; }
.tech-core-text p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.tech-core-list { list-style: none; }
.tech-core-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(12,74,110,0.06); align-items: flex-start; }
.tech-core-list li:last-child { border-bottom: none; }
.tech-core-icon { width: 44px; height: 44px; background: rgba(56,189,248,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); font-size: 18px; }
.tech-core-list-text h4 { font-size: 16px; color: var(--primary); margin-bottom: 4px; }
.tech-core-list-text p { font-size: 14px; color: var(--text-light); line-height: 1.5; margin: 0; }
.tech-core-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.tech-core-img img { width: 100%; height: 100%; object-fit: cover; }

.process-detailed { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step-card {
    background: var(--white); border-radius: var(--radius); padding: 32px 24px;
    text-align: center; box-shadow: var(--shadow); transition: all 0.3s;
    border: 1px solid rgba(12,74,110,0.05); position: relative;
}
.process-step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.process-step-card::after {
    content: '→'; position: absolute; right: -18px; top: 40px;
    color: var(--highlight); font-size: 24px; font-weight: 700; z-index: 2;
}
.process-step-card:nth-child(4n)::after { display: none; }
.process-step-card .process-step-num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--highlight) 0%, var(--primary) 100%);
    border-radius: 50%; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 700; color: var(--white);
}
.process-step-card h4 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.process-step-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.compare-section { background: var(--white); padding: 80px 0; max-width: 1200px; margin: 0 auto; padding-left: 16px; padding-right: 16px; }
.compare-table-wrapper { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--white); border: 1px solid rgba(12,74,110,0.08); }
.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 18px 20px; text-align: center; border-bottom: 1px solid rgba(12,74,110,0.08); font-size: 15px; }
.compare-table th { background: var(--primary); color: var(--white); font-weight: 600; }
.compare-table td:first-child { font-weight: 600; color: var(--primary); background: rgba(12,74,110,0.03); }
.compare-table tr:last-child td { border-bottom: none; }
.check-green { color: #047857; font-weight: 600; background: rgba(16,185,129,0.08); }

.cta-section { background: linear-gradient(135deg, #0C4A6E 0%, #164E63 100%); color: var(--white); padding: 80px 16px; text-align: center; }
.cta-content { max-width: 760px; margin: 0 auto; }
.cta-content h2 { font-size: 32px; margin-bottom: 16px; color: var(--white); }
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.84); margin-bottom: 32px; line-height: 1.8; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 26px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #92400E; }
.btn-outline { border: 1px solid rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.perf-section { background: linear-gradient(135deg, var(--primary) 0%, #164E63 100%); color: var(--white); padding: 60px 16px; text-align: center; }
.perf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.perf-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 30px 20px; text-align: center; }
 .perf-card .num { font-size: 36px; font-weight: 700; color: var(--highlight); margin-bottom: 8px; }
 .perf-card .label { font-size: 14px; color: rgba(255,255,255,0.75); }

.data-section { background: linear-gradient(135deg, var(--primary) 0%, #164E63 100%); padding: 60px 16px; text-align: center; }
.perf-title h2, .perf-title p { color: var(--white); }
.perf-title p { opacity: 0.82; }
.perf-title { margin-bottom: 40px; }
.data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.data-section .data-item {
    min-height: 150px;
    padding: 30px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    color: var(--white);
}
.data-section .data-item .num {
    font-size: 42px;
    font-weight: 700;
    color: var(--highlight);
    line-height: 1;
    margin-bottom: 10px;
}
.data-section .data-item .label {
    font-size: 16px;
    color: rgba(255,255,255,0.92);
}
.data-section .data-item .desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}
.data-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 30px 20px; text-align: center; }
.data-card .num { font-size: 36px; font-weight: 700; color: var(--highlight); margin-bottom: 8px; }
 .data-card .label { font-size: 14px; color: rgba(255,255,255,0.75); }

.scene-section { padding: 80px 0; max-width: 1200px; margin: 0 auto; padding-left: 16px; padding-right: 16px; }
.scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scene-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; }
.scene-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.scene-img { height: 200px; overflow: hidden; }
.scene-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.scene-card:hover .scene-img img { transform: scale(1.05); }
.scene-info { padding: 24px; }
.scene-info h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.scene-info p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

@media (max-width: 1024px) {
    .tech-core-grid { grid-template-columns: 1fr; gap: 40px; }
    .tech-core-img { order: -1; }
    .process-detailed { grid-template-columns: repeat(2, 1fr); }
    .process-step-card::after { display: none; }
    .perf-grid { grid-template-columns: repeat(2, 1fr); }
    .scene-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .process-detailed { grid-template-columns: 1fr; }
    .perf-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
