/* ============================================
   74-圆融设计工作室 ｜ 拱形家装风
   配色：#f07a66 珊瑚红 + #6fb6d8 天蓝 + #fff9f5 奶油白
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --coral: #f07a66;
    --coral-d: #e05f4a;
    --blue: #6fb6d8;
    --blue-d: #4f9dc4;
    --cream: #fff9f5;
    --cream-deep: #ffe9e0;
    --blue-tint: #eaf4fa;
    --text: #5a3f3a;
    --text-light: #9a827b;
    --font: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* 导航 */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255,249,245,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(240,122,102,0.18); transition: all 0.3s; }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { font-size: 22px; font-weight: 800; color: var(--coral-d); text-decoration: none; letter-spacing: 2px; display: flex; align-items: flex-end; gap: 8px; }
.logo::before { content: ''; width: 34px; height: 20px; border: 3px solid var(--coral); border-bottom: none; border-radius: 34px 34px 0 0; }
.logo img { display: inline-block; vertical-align: middle; }
.nav-menu { display: flex; list-style: none; gap: 26px; }
.nav-menu a { text-decoration: none; color: var(--text); font-size: 15px; font-weight: 500; padding: 8px 20px; border-radius: 30px; transition: 0.3s; }
.nav-menu a:hover, .nav-menu a.active { background: rgba(240,122,102,0.12); color: var(--coral-d); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 26px; height: 3px; border-radius: 3px; background: var(--coral-d); transition: 0.3s; }

/* 按钮 */
.btn { display: inline-block; padding: 14px 34px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 15px; transition: 0.3s; cursor: pointer; border: none; }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-d); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(240,122,102,0.35); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-d); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(111,182,216,0.35); }
.btn-outline { background: transparent; color: var(--coral-d); border: 2px solid var(--coral); }
.btn-outline:hover { background: var(--coral); color: #fff; }

/* 拱形转场 */
.scallop-top { position: relative; padding-top: 40px; }
.scallop-top::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 40px; background-image: radial-gradient(circle at 20px 40px, transparent 0 20px, var(--arc, #fff9f5) 20px 21px); background-size: 40px 40px; background-repeat: repeat-x; }

/* Hero */
.hero { min-height: 100vh; padding-top: 72px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; background: linear-gradient(180deg, #fff9f5, #ffe9e0); position: relative; overflow: hidden; }
.hero-left { padding: 40px 20px 60px 60px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--coral-d); padding: 8px 22px; border-radius: 30px; font-size: 14px; font-weight: 600; box-shadow: 0 6px 18px rgba(240,122,102,0.12); margin-bottom: 26px; }
.hero-badge::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--coral); }
.hero-left h1 { font-size: clamp(40px, 5vw, 60px); line-height: 1.15; color: var(--text); margin-bottom: 22px; font-weight: 800; }
.hero-left h1 .coral { color: var(--coral-d); }
.hero-left h1 .blue { color: var(--blue-d); }
.hero-left p { font-size: 17px; color: var(--text-light); margin-bottom: 34px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-chips span { background: #fff; border-radius: 20px; padding: 6px 16px; font-size: 13px; color: var(--text-light); box-shadow: 0 4px 12px rgba(240,122,102,0.08); }

.hero-right { display: flex; justify-content: center; align-items: center; padding: 40px; position: relative; }
.arch-hero { position: relative; }
.arch-hero-outline { position: absolute; inset: -24px -18px -14px -18px; border: 2px dashed rgba(240,122,102,0.35); border-radius: 320px 320px 30px 30px; }
.arch-hero-img { width: 340px; height: 470px; border-radius: 340px 340px 30px 30px; overflow: hidden; border: 6px solid #fff; box-shadow: 0 24px 60px rgba(240,122,102,0.22); position: relative; }
.arch-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.arch-circle { position: absolute; right: -30px; bottom: 60px; width: 90px; height: 90px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 11px; text-align: center; box-shadow: 0 12px 30px rgba(111,182,216,0.4); }
.arch-circle span { font-size: 22px; font-weight: 800; }
.arch-dot { position: absolute; left: -20px; top: 90px; width: 56px; height: 56px; border-radius: 50%; background: var(--coral); opacity: 0.85; }
.arch-dot2 { position: absolute; right: 10px; top: 20px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 8px rgba(255,255,255,0.5); }

/* 区块标题 */
.sec-head { padding: 50px 0 36px; }
.sec-head.center { text-align: center; }
.sec-head h2 { display: flex; align-items: center; gap: 14px; font-size: clamp(28px, 3.4vw, 40px); color: var(--text); font-weight: 800; }
.sec-head h2::before { content: ''; width: 40px; height: 26px; border: 3px solid var(--coral); border-bottom: none; border-radius: 40px 40px 0 0; flex-shrink: 0; }
.sec-head.center h2 { justify-content: center; }
.sec-head.center h2::before, .sec-head.center h2::after { flex: 0 0 40px; }
.sec-head.center h2::after { content: ''; width: 40px; height: 26px; border: 3px solid var(--blue); border-bottom: none; border-radius: 40px 40px 0 0; transform: rotate(180deg); }
.sec-head .sub { color: var(--text-light); margin-top: 12px; font-size: 15px; padding-left: 54px; }
.sec-head.center .sub { padding-left: 0; }

/* 理念 */
.philosophy { background: var(--cream-deep); --arc: #fff9f5; padding-bottom: 30px; }
.phil-bubbles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding-bottom: 50px; }
.phil-bubble { text-align: center; }
.phil-bubble .b-icon { width: 120px; height: 120px; margin: 0 auto 20px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 40px; box-shadow: 0 14px 34px rgba(240,122,102,0.16); transition: 0.4s; }
.phil-bubble:nth-child(2) .b-icon { background: var(--blue); color: #fff; box-shadow: 0 14px 34px rgba(111,182,216,0.3); }
.phil-bubble:nth-child(3) .b-icon { background: var(--coral); color: #fff; box-shadow: 0 14px 34px rgba(240,122,102,0.3); }
.phil-bubble:hover .b-icon { transform: translateY(-8px) scale(1.05); }
.phil-bubble h3 { font-size: 18px; margin-bottom: 8px; }
.phil-bubble p { font-size: 14px; color: var(--text-light); max-width: 260px; margin: 0 auto; }
.phil-quote { text-align: center; max-width: 720px; margin: 0 auto; padding-bottom: 56px; }
.phil-quote blockquote { font-size: clamp(20px, 2.6vw, 28px); font-weight: 700; color: var(--text); line-height: 1.7; }
.phil-quote blockquote::before, .phil-quote blockquote::after { content: '❝'; color: var(--coral); }
.phil-quote blockquote::after { content: '❞'; }
.phil-quote p { color: var(--text-light); font-size: 14px; margin-top: 14px; }

/* 服务 */
.services { --arc: #ffe9e0; padding-bottom: 40px; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 50px; }
.svc-card { background: #fff; border-radius: 46px 46px 22px 22px; padding: 36px 24px 30px; text-align: center; box-shadow: 0 10px 30px rgba(240,122,102,0.1); transition: 0.4s; border: 1px solid rgba(240,122,102,0.1); }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 20px 44px rgba(240,122,102,0.2); }
.svc-card .s-ic { width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%; background: var(--cream-deep); color: var(--coral-d); display: flex; align-items: center; justify-content: center; font-size: 28px; overflow: hidden; }
.svc-card .s-ic img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.svc-card:nth-child(even) .s-ic { background: var(--blue-tint); color: var(--blue-d); }
.svc-card h3 { font-size: 16px; margin-bottom: 8px; }
.svc-card h3 a { color: inherit; text-decoration: none; }
.svc-card p { font-size: 13px; color: var(--text-light); }

/* 作品 */
.works { background: var(--blue-tint); --arc: #fff9f5; padding-bottom: 40px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; padding-bottom: 50px; }
.work-card { text-align: center; }
.arch-media { width: 240px; height: 300px; margin: 0 auto 18px; border-radius: 240px 240px 20px 20px; overflow: hidden; border: 6px solid #fff; box-shadow: 0 16px 40px rgba(111,182,216,0.25); transition: 0.4s; }
.work-card:hover .arch-media { transform: translateY(-8px); }
.arch-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-card h3 { font-size: 17px; margin-bottom: 4px; }
.work-card h3 a { color: inherit; text-decoration: none; }
.work-card h3 a:hover { color: var(--coral-d); }
.work-card p { font-size: 13px; color: var(--text-light); }
.work-card .price-line { color: var(--coral-d); font-weight: 600; }

/* 评价 */
.reviews { --arc: #eaf4fa; padding-bottom: 40px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: 50px; }
.review-card { background: #fff; border-radius: 28px 28px 60px 28px; padding: 32px; box-shadow: 0 10px 30px rgba(240,122,102,0.08); position: relative; transition: 0.4s; }
.review-card:hover { transform: translateY(-6px); }
.review-card::before { content: '"'; position: absolute; top: -6px; right: 26px; font-size: 90px; color: var(--coral); opacity: 0.25; font-family: Georgia, serif; line-height: 1; }
.stars { color: var(--coral); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.review-card p { font-size: 15px; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author .ava { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-tint); display: flex; align-items: center; justify-content: center; color: var(--blue-d); font-weight: 700; }
.review-author strong { display: block; font-size: 14px; }
.review-author span { font-size: 12px; color: var(--text-light); }

/* CTA */
.cta-arch { padding: 0 0 70px; }
.cta-banner { position: relative; background: linear-gradient(135deg, var(--coral), #f9a37e); border-radius: 400px 400px 40px 40px; text-align: center; padding: 90px 40px 80px; color: #fff; overflow: hidden; }
.cta-banner h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; margin-bottom: 12px; }
.cta-banner h2 a { color: inherit; }
.cta-banner p { opacity: 0.9; margin-bottom: 30px; }
.cta-banner .btn { background: #fff; color: var(--coral-d); }
.cta-banner .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }
.cta-banner::before, .cta-banner::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.12); }
.cta-banner::before { width: 180px; height: 180px; left: -50px; top: -40px; }
.cta-banner::after { width: 120px; height: 120px; right: -30px; bottom: -30px; }

/* 页头 */
.page-hero { padding: 72px 0 0; }
.page-hero-inner { text-align: center; padding: 70px 0; }
.arch-icon-mini { width: 66px; height: 44px; border: 3px solid var(--coral); border-bottom: none; border-radius: 66px 66px 0 0; margin: 0 auto 22px; position: relative; }
.arch-icon-mini::after { content: ''; position: absolute; left: 50%; bottom: -12px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); transform: translateX(-50%); }
.page-hero-inner h1 { font-size: clamp(32px, 4vw, 48px); color: var(--text); font-weight: 800; }
.page-hero-inner h1 strong { color: var(--coral-d); }
.page-hero-inner p { color: var(--text-light); margin-top: 8px; letter-spacing: 2px; }
.crumbs { font-size: .85rem; margin-top: 14px; color: var(--text-light); }
.crumbs a { color: var(--coral-d); text-decoration: underline; }

/* 关于 */
.story { padding-bottom: 40px; }
.story-img .arch-media { width: 100%; height: 420px; margin: 0; }
.story-text .dot-tag { display: inline-block; color: var(--coral-d); font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; }
.story-text h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.story-text p { color: var(--text-light); margin-bottom: 14px; }
.arch-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 60px; }
.val-arc { background: #fff; border-radius: 40px 40px 16px 16px; padding: 30px 22px; text-align: center; box-shadow: 0 10px 26px rgba(240,122,102,0.08); }
.val-arc .v-ic { width: 60px; height: 60px; margin: 0 auto 14px; border-radius: 50%; background: var(--blue-tint); color: var(--blue-d); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.val-arc h3 { font-size: 16px; margin-bottom: 6px; }
.val-arc p { font-size: 13px; color: var(--text-light); }
.team-arc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-bottom: 60px; }
.team-card { text-align: center; }
.team-card .arch-ava { width: 140px; height: 170px; margin: 0 auto 16px; border-radius: 140px 140px 16px 16px; overflow: hidden; border: 5px solid #fff; box-shadow: 0 12px 30px rgba(240,122,102,0.16); }
.team-card .arch-ava img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h3 { font-size: 16px; }
.team-card span { font-size: 12px; color: var(--coral-d); }
.team-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--blue-tint); color: var(--blue-d); font-size: 2rem; font-weight: 800; }

/* 作品页筛选 */
.filter-wrap { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 10px 28px; border-radius: 30px; border: 2px solid rgba(240,122,102,0.3); background: transparent; color: var(--coral-d); font-size: 14px; cursor: pointer; font-weight: 600; font-family: inherit; transition: 0.3s; }
.filter-btn:hover, .filter-btn.active { background: var(--coral); border-color: var(--coral); color: #fff; }
.cat-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-tab { padding: 10px 28px; border-radius: 30px; border: 2px solid rgba(240,122,102,0.3); background: transparent; color: var(--coral-d); font-size: 14px; cursor: pointer; font-weight: 600; font-family: inherit; transition: 0.3s; }
.cat-tab:hover, .cat-tab.active { background: var(--coral); border-color: var(--coral); color: #fff; }

/* 新闻 */
.news-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-bottom: 60px; }
.news-feature { background: #fff; border-radius: 34px 34px 80px 34px; overflow: hidden; box-shadow: 0 12px 32px rgba(240,122,102,0.1); }
.news-feature img { width: 100%; height: 300px; object-fit: cover; display: block; }
.news-feature .n-body { padding: 28px; }
.news-feature .n-date { color: var(--coral-d); font-size: 13px; font-weight: 600; display: block; margin-bottom: 8px; }
.news-feature h3 { font-size: 21px; margin-bottom: 8px; }
.news-feature h3 a { color: inherit; text-decoration: none; }
.news-feature p { font-size: 14px; color: var(--text-light); }
.news-side { display: flex; flex-direction: column; gap: 18px; }
.news-sm { display: flex; gap: 16px; background: #fff; border-radius: 20px; padding: 14px; box-shadow: 0 8px 22px rgba(240,122,102,0.08); align-items: center; }
.news-sm .arch-sm { width: 90px; height: 100px; border-radius: 90px 90px 14px 14px; overflow: hidden; flex-shrink: 0; }
.news-sm .arch-sm img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-sm h4 { font-size: 14px; line-height: 1.5; margin-bottom: 4px; }
.news-sm h4 a { color: inherit; text-decoration: none; }
.news-sm span { font-size: 12px; color: var(--text-light); }
.news-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 60px; }
.news-card { background: #fff; border-radius: 30px 30px 50px 30px; overflow: hidden; box-shadow: 0 10px 26px rgba(240,122,102,0.08); transition: 0.4s; }
.news-card:hover { transform: translateY(-6px); }
.news-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.news-card .n-body { padding: 22px; }
.news-card .n-date { color: var(--coral-d); font-size: 12px; font-weight: 600; display: block; margin-bottom: 8px; }
.news-card h3 { font-size: 16px; margin-bottom: 6px; }
.news-card h3 a { color: inherit; text-decoration: none; }
.news-card h3 a:hover { color: var(--coral-d); }
.news-card p { font-size: 13px; color: var(--text-light); }

/* 联系 */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-bottom: 60px; }
.info-circles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-content: start; }
.info-circle { background: #fff; border-radius: 40px 40px 20px 40px; padding: 26px; box-shadow: 0 10px 26px rgba(240,122,102,0.08); }
.info-circle .i-ic { width: 52px; height: 52px; border-radius: 50%; background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.info-circle:nth-child(even) .i-ic { background: var(--blue); }
.info-circle h3 { font-size: 15px; margin-bottom: 6px; }
.info-circle p { font-size: 13px; color: var(--text-light); }
.contact-form { background: #fff; border-radius: 50px 50px 24px 50px; padding: 36px; box-shadow: 0 14px 40px rgba(240,122,102,0.12); }
.contact-form h2 { font-size: 24px; margin-bottom: 6px; }
.contact-form > p { color: var(--text-light); font-size: 14px; margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: var(--coral-d); font-weight: 600; margin-bottom: 6px; }
.form-group label em { color: var(--coral-d); font-style: normal; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 18px; border: 2px solid #f3e4dc; border-radius: 40px; font-size: 15px; background: var(--cream); outline: none; font-family: inherit; transition: 0.3s; }
.form-group textarea { border-radius: 24px; min-height: 110px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(240,122,102,0.1); }
.form-group input.error, .form-group textarea.error { border-color: var(--coral-d); }

/* 页脚 */
.footer { background: linear-gradient(180deg, var(--cream), #ffe9e0); border-radius: 80px 80px 0 0; padding: 60px 0 0; margin-top: 10px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 36px; }
.footer-brand h3 { font-size: 21px; color: var(--text); margin-bottom: 12px; display: flex; align-items: flex-end; gap: 8px; }
.footer-brand h3::before { content: ''; width: 30px; height: 18px; border: 2px solid var(--coral); border-bottom: none; border-radius: 30px 30px 0 0; }
.footer-brand p { font-size: 13px; color: var(--text-light); line-height: 1.8; }
.footer-links h4, .footer-contact h4 { font-size: 15px; color: var(--text); margin-bottom: 14px; }
.footer-links a { display: block; color: var(--text-light); text-decoration: none; font-size: 13px; padding: 4px 0; transition: 0.3s; }
.footer-links a:hover { color: var(--coral-d); padding-left: 6px; }
.footer-contact p { font-size: 13px; color: var(--text-light); padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(240,122,102,0.2); padding: 18px 0; text-align: center; font-size: 12px; color: var(--text-light); }

/* 返回顶部 */
.back-top { position: fixed; right: 26px; bottom: 26px; width: 48px; height: 48px; border-radius: 50%; background: var(--coral); color: #fff; border: none; font-size: 1.3rem; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(16px); transition: .35s; z-index: 999; box-shadow: 0 8px 20px rgba(240,122,102,0.4); }
.back-top.show { opacity: 1; visibility: visible; transform: none; }

/* 动画 */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transform: translateY(24px); transition: all 0.7s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- 新增板块 ---------- */

/* 数字圆融 */
.stats-arch { background: var(--cream); --arc: var(--cream-deep); padding-bottom: 50px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { background: #fff; border-radius: 34px 34px 16px 34px; text-align: center; padding: 34px 20px; box-shadow: 0 10px 30px rgba(240,122,102,0.1); transition: 0.4s; }
.stat-item:hover { transform: translateY(-6px); }
.stat-item > span { font-size: 42px; font-weight: 800; color: var(--coral-d); display: block; line-height: 1.1; }
.stat-item h4 { font-size: 15px; margin-top: 10px; }
.stat-item p { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* 首页新闻 */
.news-home { background: var(--cream-deep); --arc: var(--cream); padding-bottom: 30px; }

/* 首页团队 */
.team-home { background: var(--blue-tint); --arc: var(--cream); padding-bottom: 30px; }

/* 圆融流程 */
.process { background: var(--cream); --arc: var(--blue-tint); padding-bottom: 30px; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 50px; }
.step-card { background: #fff; border-radius: 40px 40px 16px 40px; padding: 30px 22px; text-align: center; box-shadow: 0 10px 26px rgba(240,122,102,0.08); transition: 0.4s; }
.step-card:hover { transform: translateY(-6px); }
.step-num { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%; background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; }
.step-card:nth-child(even) .step-num { background: var(--blue); }
.step-card h3 { font-size: 16px; margin-bottom: 6px; }
.step-card p { font-size: 13px; color: var(--text-light); }

/* 首页联系 */
.contact-home { background: var(--cream-deep); --arc: var(--cream); padding-bottom: 30px; }

/* 关于-发展历程 */
.milestones { background: var(--cream); --arc: var(--cream-deep); padding-bottom: 30px; }
.mile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 50px; }
.mile-item { background: #fff; border-radius: 40px 40px 16px 40px; padding: 28px 22px; text-align: center; box-shadow: 0 10px 26px rgba(240,122,102,0.08); position: relative; }
.mile-item::after { content: '→'; position: absolute; right: -18px; top: 50%; transform: translateY(-50%); color: var(--coral); font-size: 1.3rem; font-weight: 900; }
.mile-item:last-child::after { display: none; }
.mile-item b { display: inline-block; background: var(--coral); color: #fff; font-size: .8rem; padding: 4px 14px; border-radius: 20px; margin-bottom: 10px; }
.mile-item h3 { font-size: 16px; margin-bottom: 6px; }
.mile-item p { font-size: 13px; color: var(--text-light); }

/* 关于-荣誉资质 */
.honors { background: var(--cream-deep); --arc: var(--blue-tint); padding-bottom: 30px; }
.honor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding-bottom: 50px; }
.honor-card { background: #fff; border-radius: 30px 30px 50px 30px; overflow: hidden; box-shadow: 0 10px 26px rgba(240,122,102,0.08); transition: 0.4s; }
.honor-card:hover { transform: translateY(-6px); }
.honor-card img { width: 100%; height: 150px; object-fit: cover; display: block; }
.honor-card .h-body { padding: 22px; }
.honor-card h3 { font-size: 16px; margin-bottom: 6px; }
.honor-card p { font-size: 13px; color: var(--text-light); margin-bottom: 10px; }
.honor-card .h-year { display: inline-block; background: var(--cream-deep); color: var(--coral-d); font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; }

/* 联系-地图 */
.map-section { padding: 0 0 70px; }
.map-embed-box { border-radius: 50px 50px 24px 50px; overflow: hidden; box-shadow: 0 14px 40px rgba(240,122,102,0.12); }
.map-placeholder { display: flex; align-items: center; justify-content: center; min-height: 240px; border-radius: 50px 50px 24px 50px; background: var(--blue-tint); color: var(--text-light); font-size: 14px; }

/* 产品详情价格 */
.product-price { display: inline-block; background: var(--cream-deep); color: var(--coral-d); font-size: 1.1rem; font-weight: 800; padding: 8px 22px; border-radius: 30px; margin-bottom: 16px; }

/* ---------- CMS 适配 ---------- */
.cms-section { padding: 80px 24px; }
.cms-detail { max-width: 900px; margin: 0 auto; }
.cms-detail > img { border-radius: 34px 34px 60px 34px; margin: 0 auto 12px; max-width: 100%; }
.cms-detail h1 { font-size: 2rem; margin: 18px 0; color: var(--text); }
.cms-detail .lead { color: var(--text-light); margin-bottom: 20px; font-size: 1.05rem; }
.cms-detail .news-date-label { display: inline-block; background: var(--coral); color: #fff; font-size: .82rem; font-weight: 800; padding: 4px 14px; border-radius: 20px; }
.cms-content h2 { font-size: 1.5rem; margin: 24px 0 12px; color: var(--text); }
.cms-content h3 { font-size: 1.25rem; margin: 20px 0 10px; color: var(--text); }
.cms-content p, .cms-content ul, .cms-content li { color: var(--text-light); margin-bottom: 15px; line-height: 1.9; }
.cms-content ul { padding-left: 18px; list-style: disc; }
.cms-content img { border-radius: 24px; }
.cms-back { display: inline-block; color: var(--coral-d); font-size: .9rem; font-weight: 700; margin-bottom: 20px; }
.cms-back:hover { text-decoration: underline; }
.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li { color: var(--text-light); padding: 10px 0; border-bottom: 2px dashed #f3d8cd; font-size: .9rem; }
.spec-list li b { color: var(--coral-d); }
.cms-pager { padding: 30px 0; text-align: center; }
.cms-pager .pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.cms-pager .page-link { padding: 10px 16px; border: 1px solid rgba(240,122,102,0.4); border-radius: 20px; background: #fff; color: var(--coral-d); font-size: 14px; transition: .3s; display: inline-block; }
.cms-pager .page-link:hover { border-color: var(--coral); color: var(--coral); }
.cms-pager .page-item.active .page-link { background: var(--coral); border-color: var(--coral); color: #fff; }
.cms-pager .page-item.disabled .page-link { opacity: .5; pointer-events: none; }
.cms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cms-card { display: block; background: #fff; border-radius: 30px 30px 50px 30px; padding: 24px; box-shadow: 0 10px 26px rgba(240,122,102,0.08); transition: .3s; }
.cms-card:hover { transform: translateY(-6px); }
.cms-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--text); }
.cms-card p { font-size: .86rem; color: var(--text-light); }
.form-alert-err { background: #fdecea; border: 1px solid #f3c6c0; color: #b23b35; padding: 14px 18px; border-radius: 16px; margin-bottom: 16px; }
.form-alert-err li { color: #b23b35; }
.form-alert-ok { background: #e8f7ee; border: 1px solid #a5e0bd; color: #1e7a44; padding: 14px 18px; border-radius: 16px; margin-bottom: 16px; }
.form-submit { width: 100%; color: #fff; }
.error-text { display: none; color: var(--coral-d); font-size: .8rem; margin-top: 6px; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-left { padding: 50px 24px; }
    .hero-left p { margin: 0 auto 34px; }
    .hero-actions { justify-content: center; }
    .hero-chips { justify-content: center; }
    .hero-right { order: -1; }
    .phil-bubbles { grid-template-columns: 1fr 1fr; }
    .svc-grid { grid-template-columns: 1fr 1fr; }
    .work-grid, .review-grid, .news-grid3 { grid-template-columns: 1fr 1fr; }
    .story { grid-template-columns: 1fr; }
    .news-layout { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .steps-row { grid-template-columns: 1fr 1fr; }
    .mile-grid { grid-template-columns: 1fr 1fr; }
    .honor-grid { grid-template-columns: 1fr 1fr; }
    .team-arc { grid-template-columns: repeat(2, 1fr); }
    .arch-values { grid-template-columns: repeat(2, 1fr); }
    .cms-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 72px; left: -100%; width: 78%; height: calc(100vh - 72px); background: var(--cream); flex-direction: column; padding: 32px; gap: 16px; transition: 0.3s; box-shadow: 4px 0 24px rgba(0,0,0,0.06); z-index: 999; }
    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
    .phil-bubbles, .svc-grid, .work-grid, .review-grid, .news-grid3, .arch-values, .team-arc, .info-circles { grid-template-columns: 1fr; }
    .stats-row, .steps-row, .mile-grid, .honor-grid { grid-template-columns: 1fr; }
    .sec-head h2::after { display: none; }
    .arch-hero-img { width: 280px; height: 390px; }
    .footer-grid { grid-template-columns: 1fr; }
    .mile-item::after { display: none; }
    .page-hero-inner { padding: 50px 0; }
}

/* ===== CMS global link-color reset (fixes default blue/underline) ===== */
a:has(h1), a:has(h2), a:has(h3), a:has(h4), a:has(img),
a.logo, a.logo *, .logo, .logo *,
a.news-thumb, a.news-thumb *, a.prod-thumb, a.prod-thumb *,
a.img-wrap, a.img-wrap *, a.thumb, a.thumb *, a.cover, a.cover *,
a[style*='background-image'], a[style*='background'],
a.card, a.card *, a.work-card, a.work-card *, a.product-card, a.product-card *,
a.news-card, a.news-card *, a.news-item, a.news-item *, a.case-card, a.case-card *,
a.service-card, a.service-card *, a.svc-card, a.svc-card *, a.item-card, a.item-card * {
  color: inherit !important;
  text-decoration: none !important;
}
a:has(h1):hover, a:has(h2):hover, a:has(h3):hover, a:has(h4):hover,
a.logo:hover, .logo:hover, a.card:hover, a.card *:hover,
a.news-thumb:hover, a.prod-thumb:hover, a.work-card:hover, a.product-card:hover,
a.news-card:hover, a.news-item:hover, a.case-card:hover, a.service-card:hover { color: inherit !important; }
a.prod-img-link, a.prod-img-link *,
a.img-link, a.img-link *, a.thumb-link, a.thumb-link *,
a.cover-link, a.cover-link *, a.media-link, a.media-link *,
a[class*='-thumb'], a[class*='-img'], a[class*='-cover'],
a[class*='thumb-'], a[class*='img-'],
a.img-side, a.img-side *, a.pic, a.pic *, a.pic-link, a.pic-link * {
  color: inherit !important;
  text-decoration: none !important;
}
/* ===== CMS heading-link reset (anchor inside heading) ===== */
h1 a, h2 a, h3 a, h4 a, h5 a {
  color: inherit !important;
  text-decoration: none !important;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover { color: inherit !important; }
