/* ===================================
   手回保險經紀（香港）有限公司
   Fivesure Insurance Brokers (HK) Limited
   清爽風格 · 淺藍白主題 · 動效豐富
   =================================== */

:root {
    /* 手回科技品牌蓝体系 */
    --primary: #3271ff;
    --primary-dark: #2257d6;
    --primary-light: #e6ecff;
    --primary-lighter: #f5f8ff;
    --accent: #3271ff;
    --accent-light: #e6ecff;
    --success: #10b981;
    --text: #202228;
    --text-light: #646a73;
    --text-muted: #999;
    --bg: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f9fbff;
    --bg-light: #f5f8ff;
    --bg-alt: #ffffff;
    --border: #e6e9ef;
    --border-light: #f2f4f8;
    --border-accent: rgba(50, 113, 255, 0.2);
    --white: #ffffff;
    --footer-bg: #152235;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-blue: 0 8px 32px rgba(50, 113, 255, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
    font-family: "Alibaba PuHuiTi", "AlibabaPuHuiTiR", "PingFang SC", "Microsoft YaHei", "Noto Sans TC", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text); background: var(--bg); line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse at 0% 0%, rgba(50,113,255,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(50,113,255,0.03) 0%, transparent 50%);
    background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; cursor: pointer; }
ul { list-style: none; }

/* Container & Section */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.section { padding: 72px 0; position: relative; }
.section.bg-light { background: var(--bg-light); }

.section-header { text-align: center; margin-bottom: 48px; opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.section-header.visible { opacity: 1; transform: translateY(0); }
.section-tag { display: inline-flex; align-items: center; gap: 12px; font-size: 0.78rem; font-weight: 600; color: var(--text-light); letter-spacing: 2.4px; text-transform: uppercase; margin-bottom: 14px; padding: 0; background: none; border: 0; border-radius: 0; }
.section-tag::before { content: ''; width: 28px; height: 1.5px; background: var(--primary); display: inline-block; }
.section-header h2 { font-size: 1.875rem; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.5px; line-height: 1.3; }
.section-header p { font-size: 0.95rem; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ===== Banner（手回集團介紹） ===== */
.intro-banner {
    position: relative;
    width: 100%;
    height: 320px;
    background-image: url('/static/index/assets/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.intro-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}
.intro-banner .banner-info {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
}
.intro-banner .banner-info .banner-name {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 2px;
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.intro-banner .banner-info .banner-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.8;
    max-width: 580px;
    letter-spacing: 1px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

/* ===== Header ===== */
.header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 4px 16px 0 rgba(0,0,0,0.04); }
.header-top { background: var(--bg-light); color: var(--text-light); font-size: 0.82rem; padding: 6px 0; border-bottom: 1px solid var(--border-light); }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; }
.header-email { display: flex; align-items: center; gap: 8px; color: var(--text-light); }
.header-email svg { flex-shrink: 0; }
.lang-switch { display: flex; gap: 2px; }
.lang-switch a { padding: 3px 12px; font-size: 0.78rem; font-weight: 500; border-radius: 4px; color: var(--text-light); transition: var(--transition); cursor: pointer; }
.lang-switch a.active, .lang-switch a:hover { color: #fff; background: var(--primary); }

.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; transition: var(--transition); }
.logo:hover { transform: scale(1.02); }
.logo-img { height: 40px; width: auto; display: block; }

.nav-menu { display: flex; gap: 4px; margin-left: 40px; }
.nav-link { padding: 10px 18px; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 500; color: var(--text-light); transition: var(--transition); display: block; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 4px; left: 0; width: 100%; height: 3px; background: var(--primary); opacity: 0; transition: opacity 0.2s ease-out, transform 0.2s ease-out; transform-origin: 50% 0; transform: scaleX(0.01); border-radius: 2px; }
.nav-link:hover { color: var(--primary); font-weight: 600; }
.nav-link:hover::after { opacity: 1; transform: scaleX(1); }
.nav-link.active { color: var(--primary); font-weight: 700; }
.nav-link.active::after { opacity: 1; transform: scaleX(1); }

.header-cta { flex-shrink: 0; margin-left: 16px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 30px; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600; transition: var(--transition); cursor: pointer; border: 1px solid transparent; white-space: nowrap; position: relative; overflow: hidden; }
.btn-sm { padding: 9px 22px; font-size: 0.85rem; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 10px 28px rgba(37,99,235,0.35); transform: translateY(-2px); }
.btn-primary::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.2); border-radius: 50%; transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s; transform: translate(-50%, -50%); }
.btn-primary:hover::after { width: 300px; height: 300px; top: 50%; left: 50%; }
.btn-outline { border-color: var(--border); color: var(--text); background: var(--white); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-lighter); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== Hero ===== */
.hero { padding: 72px 0 64px; position: relative; overflow: hidden; background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%); }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(50,113,255,0.08) 0%, transparent 70%); animation: floatBlob 8s ease-in-out infinite; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -200px; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(50,113,255,0.05) 0%, transparent 70%); animation: floatBlob 12s ease-in-out infinite reverse; pointer-events: none; }
@keyframes floatBlob { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -30px); } }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-content { display: flex; flex-direction: column; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--primary); border: 1px solid var(--primary-light); padding: 7px 16px; border-radius: 20px; margin-bottom: 28px; letter-spacing: 0.5px; background: #fff; align-self: flex-start; animation: fadeInUp 0.8s ease 0.1s both; }
.hero-title { font-size: 3.25rem; font-weight: 800; line-height: 1.2; letter-spacing: -1px; margin-bottom: 24px; color: var(--text); animation: fadeInUp 0.8s ease 0.2s both; }
.gradient-text { background: linear-gradient(135deg, var(--primary) 0%, #2a5fe0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; background-size: 200% 200%; animation: gradientShift 6s ease infinite; }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-desc { font-size: 1.05rem; color: var(--text-light); margin-bottom: 32px; line-height: 1.85; max-width: 540px; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-mini-stats { display: flex; gap: 12px; margin-bottom: 36px; animation: fadeInUp 0.8s ease 0.4s both; }
.section .hero-mini-stats { gap: 24px; margin-bottom: 0; max-width: 960px; margin-left: auto; margin-right: auto; }
.mini-stat { flex: 1; padding: 16px 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.mini-stat:hover { background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.mini-num { display: block; font-size: 1.35rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; line-height: 1.2; }
.mini-label { display: block; font-size: 0.78rem; color: var(--text-light); line-height: 1.4; }
.hero-cta { display: flex; gap: 16px; animation: fadeInUp 0.8s ease 0.5s both; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.hero-orbit { position: absolute; border-radius: 50%; border: 1px solid var(--border-light); pointer-events: none; animation: none; }
.hero-orbit:nth-child(1) { width: 360px; height: 360px; opacity: 0.6; }
.hero-orbit:nth-child(2) { width: 280px; height: 280px; opacity: 0.5; border-style: dashed; }
.hero-orbit:nth-child(3) { width: 200px; height: 200px; opacity: 0.4; }
.hero-icon-big { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; width: 168px; height: 168px; background: var(--bg-light); color: var(--primary); border-radius: 50%; border: 1px solid var(--border); box-shadow: 0 8px 28px rgba(50, 113, 255, 0.06); animation: none; font-size: unset; filter: none; }
.hero-icon-big svg { width: 86px; height: 86px; }

/* 浮动信息卡 */
.hero-float-card { position: absolute; background: var(--white); padding: 12px 16px; border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid var(--border); display: flex; gap: 10px; align-items: center; min-width: 160px; z-index: 2; animation: floatCard 6s ease-in-out infinite; }
.hero-float-card strong { display: block; font-size: 0.88rem; color: var(--text); margin-bottom: 2px; font-weight: 700; }
.hero-float-card small { display: block; font-size: 0.72rem; color: var(--text-light); }
.float-icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 36px; height: 36px; background: var(--bg-light); color: var(--primary); border-radius: 8px; }
.float-icon svg { width: 18px; height: 18px; }
.hero-float-1 { top: 12%; left: -10%; animation-delay: 0s; }
.hero-float-2 { top: 50%; right: -12%; animation-delay: 2s; }
.hero-float-3 { bottom: 8%; left: -5%; animation-delay: 4s; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Stats Bar ===== */
.stats-bar { background: linear-gradient(135deg, var(--white), var(--primary-lighter)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px 0; position: relative; overflow: hidden; }
.stats-bar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; text-align: center; }
.stat-card { padding: 16px; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-value { display: block; font-size: 2.2rem; font-weight: 800; background: var(--primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.stat-label { font-size: 0.82rem; color: var(--text-light); font-weight: 500; }

/* ===== Value Grid ===== */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 44px 28px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; opacity: 0; transform: translateY(30px); }
.value-card.visible { opacity: 1; transform: translateY(0); }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.value-num { display: block; font-size: 0.72rem; font-weight: 700; color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.value-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ===== Why Us ===== */
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 40px 28px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.4s ease; opacity: 0; transform: translateY(30px); }
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.why-card:hover .why-icon { background: var(--primary); color: var(--white); transform: none; }
.why-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; background: var(--bg-light); color: var(--primary); margin-bottom: 16px; transition: background 0.3s ease, color 0.3s ease; }
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); font-weight: 700; }
.why-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text h2 { font-size: 1.8rem; color: var(--text); margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; font-size: 0.97rem; }
.about-stats { background: linear-gradient(135deg, var(--white), var(--primary-lighter)); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.stat-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-light); transition: var(--transition); }
.stat-item:last-child { border-bottom: none; }
.stat-item:hover { transform: translateX(4px); }
.stat-icon { font-size: 1.5rem; flex-shrink: 0; width: 44px; height: 44px; background: var(--primary-lighter); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.stat-item:hover .stat-icon { background: var(--primary-light); transform: scale(1.1); }
.stat-item h4 { font-size: 0.9rem; color: var(--text); margin-bottom: 2px; }
.stat-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ===== Group Info ===== */
.group-info { background: linear-gradient(135deg, var(--white), var(--primary-lighter)); border: 1px solid var(--primary-light); border-radius: var(--radius-lg); padding: 40px; margin-top: 40px; box-shadow: var(--shadow); }
.group-info h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.group-info p { color: var(--text-light); line-height: 1.8; font-size: 0.92rem; }
.group-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 28px; text-align: center; }
.group-stat { padding: 16px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.group-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.group-stat h4 { font-size: 1.4rem; font-weight: 800; background: var(--primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.group-stat p { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }

/* ===== Solutions ===== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: default; position: relative; overflow: hidden; opacity: 0; transform: translateY(30px); }
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-num { display: block; font-size: 0.72rem; font-weight: 700; color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text); }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 18px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 0.72rem; background: var(--primary-lighter); color: var(--primary-dark); padding: 4px 10px; border-radius: 12px; font-weight: 500; transition: var(--transition); }
.service-card:hover .tag { background: var(--primary); color: var(--white); }

/* ===== Process ===== */
.process-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px; background: var(--primary); z-index: 0; opacity: 0.5; }
.process-card { text-align: center; position: relative; z-index: 1; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.process-card.visible { opacity: 1; transform: translateY(0); }
.process-num { width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--primary); color: var(--primary); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: all 0.3s ease; }
.process-card:hover .process-num { background: var(--primary); color: var(--white); border-color: transparent; box-shadow: var(--shadow-blue); transform: scale(1.1) rotate(5deg); }
.process-card h4 { font-size: 0.9rem; margin-bottom: 6px; color: var(--text); }
.process-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }

/* ===== Insights ===== */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: all 0.4s ease; cursor: default; opacity: 0; transform: translateY(30px); }
.insight-card.visible { opacity: 1; transform: translateY(0); }
.insight-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.insight-cat { display: inline-block; font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 12px; background: var(--primary-lighter); color: var(--primary-dark); margin-bottom: 14px; }
.insight-date { display: block; font-size: 0.76rem; color: var(--text-muted); margin-bottom: 10px; }
.insight-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); line-height: 1.5; transition: var(--transition); }
.insight-card:hover h3 { color: var(--primary); }
.insight-card p { font-size: 0.88rem; color: var(--text-light); }
.card-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--text-light); background: var(--bg-light); padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.card-date { display: block; margin-top: 14px; font-size: 0.78rem; color: var(--text-muted); }

/* ===== Clients ===== */
.client-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.client-card { text-align: center; padding: 36px 16px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.4s ease; opacity: 0; transform: translateY(20px); }
.client-card.visible { opacity: 1; transform: translateY(0); }
.client-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-4px); }
.client-card:hover .client-icon { transform: scale(1.15); }
.client-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; transition: transform 0.3s ease; }
.client-card h3 { font-size: 0.95rem; margin-bottom: 6px; color: var(--text); }
.client-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; padding-top: 40px; max-width: 720px; }
.contact-info-single { margin: 0 auto; text-align: center; align-items: center; }
.contact-info-single .contact-meta { width: 100%; max-width: 560px; align-items: stretch; }
.contact-info-single .contact-meta-item { justify-content: center; }
.contact-meta-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px; border-radius: var(--radius); transition: var(--transition); }
.contact-meta-item:hover { background: var(--primary-lighter); transform: translateX(4px); }
.contact-meta-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; width: 44px; height: 44px; background: var(--primary-lighter); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.contact-meta-item:hover .contact-meta-icon { background: var(--primary-light); transform: scale(1.1); }
.contact-meta-item h4 { font-size: 0.92rem; color: var(--text); margin-bottom: 4px; }
.contact-meta-item p { font-size: 0.9rem; color: var(--text-light); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--text); }
.form-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group label .required { color: #ef4444; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.92rem; font-family: inherit; color: var(--text); background: var(--white); transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,0.1); }
.form-group textarea { min-height: 100px; resize: vertical; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-group label { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500; cursor: pointer; background: var(--white); transition: var(--transition); color: var(--text-light); }
.checkbox-group label:hover { border-color: var(--primary-light); transform: translateY(-1px); }
.checkbox-group input { display: none; }
.checkbox-group label:has(input:checked) { border-color: var(--primary); background: var(--primary-lighter); color: var(--primary-dark); }
.privacy-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--text-light); }
.privacy-consent input { width: auto; margin-top: 4px; flex-shrink: 0; accent-color: var(--primary); }
.privacy-consent a { color: var(--primary); text-decoration: underline; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; cursor: pointer; }
.form-notice { font-size: 0.82rem; color: var(--text-light); background: var(--bg-light); border-left: 3px solid var(--primary); padding: 12px 16px; border-radius: 6px; margin-bottom: 20px; line-height: 1.6; }
.form-note { font-size: 0.76rem; color: var(--text-muted); margin-top: 20px; line-height: 1.7; }

/* ===== CTA Section ===== */
.cta-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 80px 0; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); animation: floatBlob 10s ease-in-out infinite; }
.cta-section h2 { font-size: 2.1rem; margin-bottom: 14px; color: var(--white); line-height: 1.5; position: relative; z-index: 1; }
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.88); margin-bottom: 36px; position: relative; z-index: 1; }
.btn-white { background: var(--white); color: var(--primary); border: none; box-shadow: 0 8px 24px rgba(0,0,0,0.15); position: relative; z-index: 1; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

/* ===== Business Page（照搬官网 business 页样式） ===== */
.biz-wrap { padding-top: 72px; background: var(--bg); }
.biz-wrap .container { max-width: 1280px; padding: 0 40px; }

/* 模仿官网 .banner 头部（去掉图片，复用之前的 intro-banner 风格） */
.biz-banner {
    position: relative;
    width: 100%;
    height: 380px;
    background-image: url('/static/index/assets/banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.biz-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}
.biz-banner .biz-banner-info {
    position: relative; z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
}
.biz-banner .biz-banner-info .biz-banner-name {
    font-size: 2.6rem; font-weight: 800; color: #fff;
    margin-bottom: 18px; letter-spacing: 2px; line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.biz-banner .biz-banner-info .biz-banner-desc {
    font-size: 1rem; color: rgba(255,255,255,0.92);
    line-height: 1.9; max-width: 580px; letter-spacing: 1px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

/* 标题样式（对齐官网 .tit） */
.biz-sec-tit {
    margin-bottom: 36px;
}
.biz-sec-tit .tit {
    font-family: "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 1px;
    color: var(--text);
}
.biz-sec-tit .tit-en {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
.biz-sec-tit .under-line {
    display: block;
    margin-top: 25px;
    width: 38px;
    height: 6px;
    background: var(--primary);
}

/* 业务架构区（左右布局） */
.biz-structure {
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 110px;
}
.biz-structure .struct-info {
    width: 500px;
    padding-top: 0;
    flex-shrink: 0;
}
.biz-structure .struct-main {
    margin-top: 32px;
    padding-right: 90px;
    font-family: "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 20px;
    color: var(--text);
    line-height: 28px;
    font-weight: 700;
}
.biz-structure .struct-desc {
    margin-top: 20px;
    font-family: "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: var(--text-light);
    line-height: 32px;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.biz-structure .struct-desc + .struct-desc { margin-top: 18px; }
.biz-structure .i-check {
    margin-right: 9px;
    margin-top: 10px;
    width: 17px;
    height: 13px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 13'><path d='M1 6.5L5 10.5L16 1' stroke='%233271ff' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat 50%;
    background-size: 100% 100%;
    flex-shrink: 0;
}
.biz-structure .struct-img {
    display: block;
    width: 616px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(130,150,190,0.1);
}

/* 板块地图（左右布局） */
.biz-places {
    margin-top: 76px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 100px;
}
.biz-places .place-pic {
    display: block;
    width: 912px;
    height: auto;
    margin-left: -50px;
    border-radius: 12px;
}
.biz-places .place-info {
    padding-top: 80px;
    flex-shrink: 0;
}
.biz-places .place-info .biz-sec-tit { margin-bottom: 0; }
.biz-places .info {
    margin-top: 50px;
}
.biz-places .info-1 { margin-top: 54px; }
.biz-places .info .num {
    font-family: "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    line-height: 20px;
    letter-spacing: 1px;
    text-align: left;
}
.biz-places .info .num-txt {
    display: inline-block;
    margin-right: 8px;
    font-weight: 800;
    font-size: 60px;
    line-height: 48px;
    text-align: left;
}
.biz-places .info-1 .num-txt { color: #8c7fee; }
.biz-places .info-2 .num-txt { color: #fa4e27; }
.biz-places .info-3 .num-txt { color: #3271ff; }
.biz-places .info .desc {
    margin-top: 12px;
    font-family: "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: var(--text-light);
    line-height: 28px;
    letter-spacing: 1px;
    text-align: left;
}

/* 集团成员介绍（白底卡片+左右布局） */
.biz-intro {
    margin-top: 140px;
    margin-bottom: 100px;
}
.biz-intro .intro-item {
    padding: 40px 60px 80px 60px;
    background: #fff;
    box-shadow: 0 6px 12px 0 rgba(130,150,190,0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.biz-intro .intro-item + .intro-item { margin-top: 60px; }
.biz-intro .intro-info { flex: 1; }
.biz-intro .intro-info .biz-sec-tit { margin-bottom: 30px; }
.biz-intro .intro-info .biz-sec-tit .tit { font-size: 28px; line-height: 40px; }
.biz-intro .intro-info .biz-sec-tit .under-line { margin-top: 18px; }
.biz-intro .intro-desc {
    font-family: "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    color: var(--text);
    line-height: 32px;
    text-align: justify;
}
.biz-intro .intro-desc .desc-bold {
    font-weight: 700;
}
.biz-intro .intro-pic {
    display: block;
    width: 560px;
    height: auto;
    margin-left: 78px;
    border-radius: 12px;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .biz-structure { flex-direction: column; gap: 40px; }
    .biz-structure .struct-info { width: 100%; }
    .biz-structure .struct-img { width: 100%; max-width: 616px; }
    .biz-places { flex-direction: column; gap: 40px; }
    .biz-places .place-pic { width: 100%; margin-left: 0; }
    .biz-intro .intro-item { flex-direction: column; padding: 40px 32px; }
    .biz-intro .intro-pic { width: 100%; margin-left: 0; margin-top: 30px; }
}
@media (max-width: 768px) {
    .biz-wrap .container { padding: 0 20px; }
    .biz-banner { height: 260px; }
    .biz-banner .biz-banner-info { padding: 0 24px; }
    .biz-banner .biz-banner-info .biz-banner-name { font-size: 1.8rem; }
    .biz-sec-tit .tit { font-size: 28px; line-height: 40px; }
    .biz-intro { margin-top: 60px; margin-bottom: 60px; }
    .biz-intro .intro-item + .intro-item { margin-top: 30px; }
    .biz-intro .intro-info .biz-sec-tit .tit { font-size: 22px; line-height: 32px; }
}

/* ===== 活動預告（滑動展示） ===== */
.event-section { padding: 64px 0; background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%); }
.event-header { text-align: center; margin-bottom: 36px; }
.event-tag { display: inline-flex; align-items: center; gap: 12px; font-size: 0.78rem; font-weight: 600; color: var(--text-light); letter-spacing: 2.4px; text-transform: uppercase; margin-bottom: 14px; padding: 0; background: none; border: 0; border-radius: 0; }
.event-tag::before { content: ''; width: 28px; height: 1.5px; background: var(--primary); display: inline-block; }
.event-title { font-size: 1.875rem; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.5px; line-height: 1.3; }
.event-sub { font-size: 0.95rem; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.7; }

.event-carousel { position: relative; overflow: hidden; padding: 0 56px; }
.event-track { display: flex; gap: 28px; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.event-card { flex: 0 0 100%; max-width: 440px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: all 0.4s ease; display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.event-poster { display: block; width: 100%; max-height: 440px; object-fit: contain; background: var(--bg-light); }
.event-info { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.event-date { font-size: 0.78rem; color: var(--primary); font-weight: 700; letter-spacing: 0.5px; padding: 4px 10px; background: var(--primary-lighter); border-radius: 12px; align-self: flex-start; }
.event-name { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0; line-height: 1.4; }
.event-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; margin: 0; flex: 1; }
.event-loc { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.event-loc .loc-icon { width: 13px; height: 13px; flex-shrink: 0; color: var(--text-light); }

.event-arrow { position: absolute; top: 50%; width: 50px; height: 50px; transform: translateY(-50%); background: var(--white); border: 1px solid var(--border); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text); box-shadow: var(--shadow-md); transition: all 0.3s ease; z-index: 2; }
.event-arrow:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.event-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.event-arrow-prev { left: 0; }
.event-arrow-next { right: 0; }

.event-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.event-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.3s ease; border: none; padding: 0; }
.event-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

@media (max-width: 900px) {
    .event-card { flex: 0 0 100%; }
    .event-carousel { padding: 0 48px; }
}
@media (max-width: 600px) {
    .event-card { flex: 0 0 100%; }
    .event-carousel { padding: 0 44px; }
    .event-arrow { width: 40px; height: 40px; }
}

/* ===== Page Hero ===== */
.page-hero { padding: 64px 0 48px; text-align: center; position: relative; }
.page-hero h1 { font-size: 2.25rem; font-weight: 800; margin-bottom: 12px; color: var(--text); letter-spacing: -0.5px; line-height: 1.3; animation: fadeInUp 0.7s ease; }
.page-hero p { font-size: 1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.7; animation: fadeInUp 0.7s ease 0.1s both; }

/* ===== Solution Items ===== */
/* ===== Solution Blocks (保險方案大块) ===== */
.solution-block {
    margin-bottom: 48px;
    padding: 36px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.solution-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.solution-block h2 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}
.solution-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 52px;
    padding: 0 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(50, 113, 255, 0.25);
    flex-shrink: 0;
    letter-spacing: 1px;
}
.solution-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.solution-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 28px 26px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}
.solution-item:hover {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.solution-item h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border);
}
.solution-item p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 14px;
}
.solution-item .tags { margin-top: 0; }

/* ===== Process Detail (服務流程明細) ===== */
.process-detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.process-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}
.process-detail-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateX(6px);
}
.process-detail-item:hover .process-detail-num {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(50, 113, 255, 0.3);
}
.process-detail-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 2px solid var(--primary-light);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}
.process-detail-item > div:last-child { flex: 1; }
.process-detail-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.process-detail-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}
.detail-outcome {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-dark);
    background: var(--primary-lighter);
    border: 1px solid var(--primary-light);
    padding: 6px 14px;
    border-radius: 16px;
    font-weight: 500;
}

/* ===== Process Flow (服務流程卡片) ===== */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.process-flow-card {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 28px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}
.process-flow-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateX(6px);
}
.process-flow-card:hover .process-flow-num {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(50, 113, 255, 0.3);
}
.process-flow-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 2px solid var(--primary-light);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    line-height: 1;
}
.process-flow-body {
    flex: 1;
    min-width: 0;
}
.process-flow-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.process-flow-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}
.process-flow-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
}
.process-flow-tag {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--primary-dark);
    background: var(--white);
    border: 1px solid var(--primary-light);
    padding: 5px 14px;
    border-radius: 999px;
    font-weight: 600;
    line-height: 1.4;
}
.process-flow-tag-sep {
    color: var(--text-lighter);
    font-weight: 400;
    user-select: none;
}

/* ===== FAQ Stack (常見問題常顯卡片) ===== */
.faq-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-stack-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 24px 28px;
    transition: all 0.3s ease;
}
.faq-stack-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateX(6px);
}
.faq-stack-q {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.5;
}
.faq-stack-a {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* FAQ Stack 已移至上方 .faq-stack 块 */

@media (max-width: 768px) {
    .solution-block { padding: 24px 20px; margin-bottom: 40px; }
    .solution-block h2 { font-size: 1.3rem; gap: 12px; padding-bottom: 14px; margin-bottom: 20px; }
    .solution-num { min-width: 44px; height: 44px; font-size: 0.9rem; border-radius: 10px; }
    .solution-items { gap: 16px; }
    .solution-item { padding: 20px 18px; }
    .process-detail-item { flex-direction: column; padding: 24px 20px; gap: 16px; }
    .process-detail-num { width: 52px; height: 52px; font-size: 1.1rem; }
    .process-flow-card { flex-direction: column; padding: 24px 20px; gap: 16px; }
    .process-flow-num { width: 60px; height: 60px; font-size: 1.35rem; }
    .process-flow-card h3 { font-size: 1.1rem; }
    .faq-stack-card { padding: 20px 20px; }
    .faq-stack-q { font-size: 1rem; }
}

/* ===== Footer ===== */
.footer { background: var(--footer-bg); color: rgba(255,255,255,0.85); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-logo { font-size: 1.15rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.footer-links h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 14px; font-weight: 700; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-disclaimer { font-size: 0.73rem; margin-top: 10px; line-height: 1.7; color: rgba(255,255,255,0.4); }

.footer-license { display: flex; align-items: center; gap: 14px; padding: 16px 0 0; margin-top: 18px; border-top: 1px dashed rgba(255,255,255,0.12); }
.footer-license-icon { flex-shrink: 0; width: 36px; height: 36px; background: rgba(50,113,255,0.12); border: 1px solid rgba(50,113,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); }
.footer-license-text { flex: 1; min-width: 0; }
.footer-license-title { font-size: 0.82rem; color: var(--white); font-weight: 600; margin-bottom: 2px; letter-spacing: 0.3px; }
.footer-license-meta { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.footer-license-meta strong { color: var(--white); font-weight: 700; padding: 1px 6px; background: rgba(50,113,255,0.25); border-radius: 3px; margin-left: 4px; font-size: 0.74rem; }

/* ===== Privacy ===== */
.privacy-content { max-width: 800px; margin: 0 auto; padding: 64px 0; }
.privacy-content h2 { font-size: 1.4rem; margin: 36px 0 12px; color: var(--text); }
.privacy-content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; font-size: 0.95rem; }
.privacy-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.privacy-content ul li { color: var(--text-light); margin-bottom: 8px; font-size: 0.95rem; line-height: 1.7; }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .client-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(4, 1fr); }
    .process-grid::before { display: none; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-cta { justify-content: center; }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .insight-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Value Section (首页) ===== */
.value-section { padding: 56px 0; background: #fff; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: all 0.4s ease; box-shadow: var(--shadow-sm); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.value-num { display: block; font-size: 1.25rem; font-weight: 700; color: var(--primary); letter-spacing: 2px; margin-bottom: 16px; }
.value-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.value-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .value-grid { grid-template-columns: 1fr; } }

/* ===== IFA Page ===== */
.ifa-section { padding: 88px 0; }
.ifa-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 24px; }
.ifa-feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; overflow: hidden; }
.ifa-feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--primary); transform: scaleY(0); transform-origin: top; transition: transform 0.4s ease; }
.ifa-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.ifa-feature-card:hover::before { transform: scaleY(1); }
.ifa-feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; background: var(--bg-light); color: var(--primary); margin-bottom: 16px; transition: background 0.3s ease, color 0.3s ease; }
.ifa-feature-icon svg { width: 22px; height: 22px; }
.ifa-feature-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 10px; font-weight: 700; }
.ifa-feature-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; margin: 0; }

.ifa-callout { background: var(--white); border-left: 4px solid var(--primary); border-radius: var(--radius-lg); padding: 28px 32px; margin-top: 40px; display: flex; gap: 20px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.ifa-callout .callout-icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 48px; height: 48px; background: var(--bg-light); color: var(--primary); border-radius: 10px; }
.ifa-callout .callout-icon svg { width: 22px; height: 22px; }
.ifa-callout h4 { font-size: 1.1rem; color: var(--text); margin-bottom: 8px; font-weight: 700; }
.ifa-callout p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin: 0; }

.ifa-pillar { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-top: 32px; }
.ifa-pillar + .ifa-pillar { margin-top: 28px; }
.ifa-pillar .pillar-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.ifa-pillar .pillar-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: transparent; color: var(--primary); border: 1.5px solid var(--primary); border-radius: 10px; font-size: 1.05rem; font-weight: 800; }
.ifa-pillar .pillar-header h3 { font-size: 1.3rem; color: var(--text); font-weight: 700; margin: 0; }

.pillar-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pillar-list.pillar-list-3 { grid-template-columns: repeat(3, 1fr); }
.pillar-item { padding: 20px; background: var(--bg-light); border-radius: var(--radius); border: 1px solid var(--border-light); transition: var(--transition); }
.pillar-item:hover { border-color: var(--primary-light); background: var(--white); }
.pillar-item h4 { font-size: 1rem; color: var(--text); margin-bottom: 8px; font-weight: 700; }
.pillar-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin: 0; }

.ifa-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px; }
.ifa-stat { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--transition); }
.ifa-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.ifa-stat .stat-value { font-size: 2.4rem; font-weight: 800; color: var(--primary); letter-spacing: -1px; line-height: 1; margin-bottom: 12px; }
.ifa-stat .stat-label { font-size: 0.95rem; color: var(--text); font-weight: 700; margin-bottom: 6px; }
.ifa-stat .stat-desc { font-size: 0.82rem; color: var(--text-light); }

@media (max-width: 900px) {
    .ifa-feature-grid { grid-template-columns: 1fr; }
    .pillar-list { grid-template-columns: 1fr; }
    .pillar-list.pillar-list-3 { grid-template-columns: 1fr; }
    .ifa-stat-row { grid-template-columns: repeat(2, 1fr); }
    .ifa-pillar { padding: 28px 20px; }
    .ifa-callout { flex-direction: column; padding: 24px 20px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 48px 0; }
    .intro-banner { height: 240px; }
    .intro-banner .banner-info { padding: 0 24px; }
    .intro-banner .banner-info .banner-name { font-size: 1.8rem; }
    .intro-banner .banner-info .banner-desc { font-size: 0.9rem; }
    .header-top { display: none; }
    .nav-menu { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 12px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
    .nav-menu.open { display: flex; }
    .menu-toggle { display: flex; }
    .header-cta { display: none; }
    .hero-title { font-size: 2rem; }
    .hero { padding: 48px 0 36px; }
    .value-grid { grid-template-columns: 1fr 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .client-grid { grid-template-columns: repeat(2, 1fr); }
    .insight-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .group-stats { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .solution-items { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
