/* ==========================================================================
   Caishui 财税企业主题主样式 — 现代版
   ========================================================================== */

:root {
	--primary: #4f46e5;
	--primary-2: #7c3aed;
	--primary-3: #2563eb;
	--primary-deep: #1e1b4b;
	--accent: #06b6d4;
	--accent-2: #f59e0b;
	--grad: linear-gradient(135deg, #4f46e5 0%, #7c3aed 60%, #9333ea 100%);
	--grad-soft: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 50%, #ecfeff 100%);
	--grad-text: linear-gradient(120deg, #4f46e5, #06b6d4);
	--ink: #0f172a;
	--muted: #64748b;
	--bg: #ffffff;
	--bg-soft: #f5f7ff;
	--line: #e6e9f5;
	--radius: 16px;
	--radius-lg: 24px;
	--radius-xl: 32px;
	--shadow: 0 2px 12px rgba(30, 41, 96, 0.06);
	--shadow-hover: 0 20px 48px rgba(79, 70, 229, 0.16);
	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.75;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--primary);
	text-decoration: none;
	transition: color var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.6em;
	line-height: 1.25;
	color: var(--ink);
	font-weight: 700;
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 1em;
}

ul, ol {
	margin: 0 0 1em;
	padding-left: 1.4em;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 96px 0;
}

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

/* 滚动进入动画 */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.reveal.in {
	opacity: 1;
	transform: none;
}

/* ==========================================================================
   Section 标题
   ========================================================================== */

.section-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 56px;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 999px;
	background: var(--grad-soft);
	color: var(--primary);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
}

.section-tag::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--grad);
}

.section-title {
	font-size: clamp(28px, 3.4vw, 42px);
	margin-bottom: 14px;
}

.section-title em {
	font-style: normal;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-desc {
	color: var(--muted);
	font-size: 16.5px;
}

.section-more {
	text-align: center;
	margin-top: 48px;
}

.section-empty {
	text-align: center;
	color: var(--muted);
	padding: 48px 0;
}

/* ==========================================================================
   按钮
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 30px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all var(--transition);
	line-height: 1.4;
	position: relative;
}

.btn svg {
	width: 18px;
	height: 18px;
	transition: transform var(--transition);
}

.btn-primary {
	background: var(--grad);
	color: #fff;
	box-shadow: 0 10px 26px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(79, 70, 229, 0.45);
}

.btn-primary:hover svg {
	transform: translateX(4px);
}

.btn-outline {
	background: #fff;
	color: var(--primary);
	box-shadow: inset 0 0 0 2px rgba(79, 70, 229, 0.35);
}

.btn-outline:hover {
	color: #fff;
	background: var(--grad);
	box-shadow: 0 10px 26px rgba(79, 70, 229, 0.35);
	transform: translateY(-3px);
}

.btn-light {
	background: #fff;
	color: var(--primary);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.btn-light:hover {
	color: var(--primary-2);
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.btn-lg {
	padding: 16px 40px;
	font-size: 16px;
}

.btn-sm {
	padding: 9px 22px;
	font-size: 14px;
}

.btn-block {
	width: 100%;
}

/* ==========================================================================
   顶部信息条
   ========================================================================== */

.topbar {
	background: var(--primary-deep);
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
}

.topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 40px;
}

.topbar-left, .topbar-right {
	display: flex;
	align-items: center;
	gap: 24px;
}

.topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.topbar-item svg {
	width: 15px;
	height: 15px;
	color: #22d3ee;
}

.topbar a {
	color: rgba(255, 255, 255, 0.85);
}

.topbar a:hover {
	color: #22d3ee;
}

/* ==========================================================================
   主头部
   ========================================================================== */

.site-header {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 24px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.site-branding .custom-logo {
	max-height: 54px;
	width: auto;
}

.site-title {
	margin: 0;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.site-title a {
	color: var(--ink);
}

.site-title a:hover {
	color: var(--primary);
}

.site-description {
	margin: 0;
	font-size: 12px;
	color: var(--muted);
}

.main-navigation {
	flex: 1;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	padding: 10px 16px;
	color: var(--ink);
	font-weight: 500;
	border-radius: 999px;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a {
	color: var(--primary);
	background: #eef2ff;
}

.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-hover);
	display: none;
	flex-direction: column;
	align-items: stretch;
	padding: 8px;
}

.main-navigation li:hover > .sub-menu {
	display: flex;
}

.main-navigation .sub-menu a {
	padding: 10px 14px;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header-phone {
	display: flex;
	flex-direction: column;
	text-align: right;
	line-height: 1.3;
}

.header-phone .phone-label {
	font-size: 11px;
	color: var(--muted);
}

.header-phone .phone-number {
	font-size: 18px;
	font-weight: 800;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: var(--ink);
}

.menu-toggle svg {
	display: block;
}

.menu-toggle .menu-toggle-close {
	display: none;
}

/* ==========================================================================
   Hero 区
   ========================================================================== */

.hero {
	position: relative;
	background: var(--primary-deep);
	background-image:
		radial-gradient(900px 400px at 85% -10%, rgba(124, 58, 237, 0.45), transparent 60%),
		radial-gradient(700px 380px at 0% 110%, rgba(6, 182, 212, 0.28), transparent 55%),
		linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
	color: #fff;
	padding: 100px 0 0;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 46px 46px;
	mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 20%, transparent 70%);
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(34, 211, 238, 0.25), transparent 70%);
	filter: blur(10px);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 1;
}

.hero-content {
	max-width: 640px;
	padding-bottom: 80px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(8px);
	color: #a5f3fc;
	padding: 7px 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 24px;
}

.hero-badge::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22d3ee;
	box-shadow: 0 0 12px #22d3ee;
}

.hero-title {
	color: #fff;
	font-size: clamp(34px, 5vw, 54px);
	line-height: 1.18;
	margin-bottom: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.hero-title span {
	display: block;
	background: linear-gradient(120deg, #a5b4fc, #22d3ee 70%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: clamp(24px, 3.2vw, 34px);
	font-weight: 700;
	margin-top: 8px;
}

.hero-sub {
	font-size: 17.5px;
	color: rgba(255, 255, 255, 0.82);
	max-width: 520px;
	margin-bottom: 34px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.hero-points li {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.9);
}

.hero-points svg {
	color: #22d3ee;
	width: 18px;
	height: 18px;
}

/* 玻璃统计卡 */
.hero-stats {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: -64px;
	padding: 30px 34px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: var(--radius-xl);
	box-shadow: 0 32px 64px rgba(15, 23, 42, 0.28);
	z-index: 2;
}

.stat-card {
	text-align: center;
	padding: 12px;
	position: relative;
}

.stat-card:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -8px;
	top: 16%;
	height: 68%;
	width: 1px;
	background: var(--line);
}

.stat-number {
	display: block;
	font-size: clamp(30px, 3.4vw, 42px);
	font-weight: 800;
	line-height: 1.1;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stat-label {
	display: block;
	font-size: 14px;
	color: var(--muted);
	margin-top: 6px;
}

/* ==========================================================================
   服务区块
   ========================================================================== */

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.service-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	transition: all var(--transition);
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: var(--grad);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
	border-color: transparent;
}

.service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 18px;
	background: var(--grad-soft);
	color: var(--primary);
	margin-bottom: 20px;
	transition: all var(--transition);
}

.service-card:hover .service-icon {
	background: var(--grad);
	color: #fff;
	box-shadow: 0 10px 24px rgba(79, 70, 229, 0.35);
	transform: rotate(-6deg) scale(1.04);
}

.service-icon svg {
	width: 30px;
	height: 30px;
}

.service-name {
	font-size: 21px;
	margin-bottom: 10px;
}

.service-desc {
	color: var(--muted);
	font-size: 14.5px;
	flex: 1;
}

.service-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 18px;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary);
}

.service-more svg {
	width: 16px;
	height: 16px;
	transition: transform var(--transition);
}

.service-more:hover svg {
	transform: translateX(5px);
}

.service-card-full {
	align-items: flex-start;
}

.service-items {
	list-style: none;
	padding: 0;
	margin: 16px 0 22px;
	flex: 1;
}

.service-items li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 14.5px;
	color: var(--ink);
	margin-bottom: 9px;
}

.service-items svg {
	width: 18px;
	height: 18px;
	color: var(--primary-2);
	flex-shrink: 0;
	margin-top: 4px;
}

/* ==========================================================================
   为什么选择我们
   ========================================================================== */

.why-inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 60px;
	align-items: center;
}

.why-media-main {
	background: var(--grad);
	border-radius: var(--radius-xl);
	color: #fff;
	padding: 48px 40px;
	position: relative;
	overflow: hidden;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-shadow: 0 24px 60px rgba(79, 70, 229, 0.3);
}

.why-media-main::after {
	content: "";
	position: absolute;
	right: -80px;
	top: -80px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(34, 211, 238, 0.4), transparent 70%);
}

.why-media-icon {
	display: inline-flex;
	width: 66px;
	height: 66px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(6px);
	color: #fff;
	margin-bottom: 22px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.why-media-icon svg {
	width: 30px;
	height: 30px;
}

.why-media-main h3 {
	color: #fff;
	font-size: 26px;
}

.why-media-main p {
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.why-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.why-item {
	display: flex;
	gap: 16px;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: all var(--transition);
}

.why-item:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-4px);
	border-color: transparent;
}

.why-item-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--grad-soft);
	color: var(--primary);
}

.why-item-icon svg {
	width: 22px;
	height: 22px;
}

.why-item h4 {
	font-size: 16.5px;
	margin-bottom: 4px;
}

.why-item p {
	font-size: 13.5px;
	color: var(--muted);
	margin: 0;
}

/* ==========================================================================
   服务流程
   ========================================================================== */

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.process-step {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 34px 26px;
	text-align: center;
	transition: all var(--transition);
}

.process-step:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-6px);
	border-color: transparent;
}

.process-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: var(--grad);
	color: #fff;
	font-size: 19px;
	font-weight: 800;
	margin-bottom: 18px;
	box-shadow: 0 10px 24px rgba(79, 70, 229, 0.3);
}

.process-step h4 {
	font-size: 17.5px;
	margin-bottom: 8px;
}

.process-step p {
	font-size: 13.5px;
	color: var(--muted);
	margin: 0;
}

.process-step:not(:last-child)::after {
	content: "→";
	position: absolute;
	top: 52px;
	left: calc(100% - 14px);
	color: var(--primary);
	font-size: 20px;
	font-weight: 700;
	transform: translateX(-50%);
	opacity: 0.5;
}

/* ==========================================================================
   博客列表
   ========================================================================== */

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.post-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all var(--transition);
	display: flex;
	flex-direction: column;
}

.post-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
	border-color: transparent;
}

.post-card-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--grad-soft);
	overflow: hidden;
}

.post-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.post-card:hover .post-card-media img {
	transform: scale(1.07);
}

.post-card-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	opacity: 0.6;
}

.post-card-placeholder svg {
	width: 48px;
	height: 48px;
}

.post-card-cat {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--grad);
	color: #fff;
	font-size: 12px;
	padding: 5px 14px;
	border-radius: 999px;
	font-weight: 600;
	box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}

.post-card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.post-card-title {
	font-size: 18.5px;
	margin-bottom: 8px;
	line-height: 1.45;
}

.post-card-title a {
	color: var(--ink);
}

.post-card-title a:hover {
	color: var(--primary);
}

.post-card-meta {
	display: flex;
	gap: 16px;
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 12px;
}

.post-card-excerpt {
	font-size: 14px;
	color: var(--muted);
	flex: 1;
}

.post-card-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary);
	margin-top: 16px;
}

.post-card-more svg {
	width: 16px;
	height: 16px;
	transition: transform var(--transition);
}

.post-card-more:hover svg {
	transform: translateX(5px);
}

/* ==========================================================================
   资讯板块增强
   ========================================================================== */

.post-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.55));
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 18px;
	opacity: 0;
	transition: opacity var(--transition);
}

.post-card-overlay svg {
	width: 40px;
	height: 40px;
	padding: 10px;
	background: #fff;
	color: var(--primary);
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	transform: rotate(-45deg);
	transition: transform var(--transition);
}

.post-card:hover .post-card-overlay {
	opacity: 1;
}

.post-card:hover .post-card-overlay svg {
	transform: rotate(-45deg) scale(1.08);
}

.meta-author {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.meta-avatar {
	border-radius: 50%;
}

.post-list {
	display: flex;
	flex-direction: column;
}

/* 首页资讯区块（无侧边栏，约束列表宽度保持整齐） */
.section-blog .post-list {
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
}

.post-list-item {
	padding: 26px 4px;
	border-bottom: 1px solid var(--line);
	transition: all var(--transition);
}

.post-list-item:last-child {
	border-bottom: none;
}

.post-list-item:hover {
	padding-left: 10px;
	padding-right: 10px;
}

.post-list-title {
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 10px;
	font-weight: 700;
}

.post-list-title a {
	color: var(--text);
	transition: color var(--transition);
}

.post-list-title a:hover {
	color: var(--primary);
}

.post-list-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 10px;
}

.post-list-meta .meta-cat a {
	color: var(--primary);
	font-weight: 700;
}

.post-list-meta .meta-cat a:hover {
	text-decoration: underline;
}

.post-list-excerpt {
	font-size: 14px;
	line-height: 1.85;
	color: var(--muted);
}

/* 首页资讯板块：左图右文精致横条 */
.home-post-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 4px;
	border-bottom: 1px solid var(--line);
	transition: all var(--transition);
}

.home-post-item:last-child {
	border-bottom: none;
}

.home-post-item:hover {
	padding-left: 10px;
	padding-right: 10px;
}

.home-post-media {
	flex: 0 0 130px;
	aspect-ratio: 16 / 10;
	border-radius: 12px;
	overflow: hidden;
	background: var(--grad-soft);
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.home-post-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-post-item:hover .home-post-media img {
	transform: scale(1.06);
}

.home-post-body {
	flex: 1;
	min-width: 0;
}

.home-post-title {
	font-size: 17px;
	line-height: 1.5;
	margin-bottom: 8px;
	font-weight: 700;
}

.home-post-title a {
	color: var(--text);
	transition: color var(--transition);
}

.home-post-title a:hover {
	color: var(--primary);
}

/* 列表页标题略大于首页资讯 */
.post-list .home-post-title {
	font-size: 20px;
}

.post-list .home-post-meta {
	margin-bottom: 4px;
}

.home-post-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 12.5px;
	color: var(--muted);
}

.home-post-meta .meta-cat a {
	color: var(--primary);
	font-weight: 700;
}

.home-post-meta .meta-cat a:hover {
	text-decoration: underline;
}

.home-post-excerpt {
	font-size: 14px;
	line-height: 1.8;
	color: var(--muted);
	margin-top: 8px;
}

/* 分类筛选 */
.cat-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.cat-filter-item {
	padding: 8px 18px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--muted);
	font-size: 13.5px;
	font-weight: 600;
	transition: all var(--transition);
}

.cat-filter-item:hover {
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-2px);
}

.cat-filter-item.active {
	background: var(--grad);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

/* 作者信息卡 */
.post-author-box {
	display: flex;
	gap: 22px;
	align-items: flex-start;
	background: var(--grad-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
	margin-top: 28px;
}

.post-author-avatar img {
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: var(--shadow);
}

.post-author-name {
	font-size: 18px;
	margin-bottom: 6px;
}

.post-author-bio {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 10px;
}

.post-author-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary);
}

.post-author-link svg {
	width: 15px;
	height: 15px;
	transition: transform var(--transition);
}

.post-author-link:hover svg {
	transform: translateX(4px);
}

/* 相关文章 */
.related-posts {
	background: var(--grad-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px;
	margin-top: 30px;
}

.related-title {
	font-size: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.related-title::before {
	content: "";
	width: 4px;
	height: 20px;
	border-radius: 4px;
	background: var(--grad);
}

.related-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.related-item a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 10px;
	transition: all var(--transition);
}

.related-item a:hover {
	background: #fff;
	box-shadow: var(--shadow);
	transform: translateX(4px);
}

.related-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: #fff;
	color: var(--primary);
	flex-shrink: 0;
}

.related-item-icon svg {
	width: 18px;
	height: 18px;
}

.related-item-title {
	flex: 1;
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.5;
	min-width: 0;
}

.related-item a:hover .related-item-title {
	color: var(--primary);
}

.related-item-date {
	font-size: 13px;
	color: var(--muted);
	flex-shrink: 0;
}

.related-item-arrow {
	display: flex;
	color: var(--muted);
	flex-shrink: 0;
}

/* 服务详情页 */
.service-single-thumb {
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 28px;
	box-shadow: var(--shadow);
}

.service-single-thumb img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.service-single-article {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 36px 38px;
	margin-bottom: 30px;
}

.service-features {
	background: var(--grad-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px;
	margin-bottom: 30px;
}

.service-features-title {
	font-size: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.service-features-title::before {
	content: "";
	width: 4px;
	height: 20px;
	border-radius: 4px;
	background: var(--grad);
}

.service-features-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-features-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: var(--text);
	line-height: 1.6;
}

.service-features-list svg {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	color: var(--primary);
}

.service-cta {
	border-radius: var(--radius-lg);
	margin-bottom: 30px;
}

.service-side-card .widget-title {
	margin-bottom: 12px;
}

.service-side-desc {
	font-size: 13.5px;
	color: var(--muted);
	line-height: 1.8;
	margin-bottom: 18px;
}

.btn-block {
	width: 100%;
	justify-content: center;
}

.service-others-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-others-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px dashed var(--line);
}

.service-others-list li:last-child {
	border-bottom: none;
}

.service-others-icon {
	display: inline-flex;
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--grad-soft);
	color: var(--primary);
}

.service-others-icon svg {
	width: 18px;
	height: 18px;
}

.service-others-link {
	flex: 1;
	font-size: 14px;
	font-weight: 700;
}

.service-others-link:hover {
	color: var(--primary);
}

.service-others-list li > svg {
	width: 15px;
	height: 15px;
	color: var(--muted);
	transition: transform var(--transition);
}

.service-others-list li:hover > svg {
	transform: translateX(3px);
	color: var(--primary);
}

/* ==========================================================================
   CTA 区块
   ========================================================================== */

.cta-section {
	position: relative;
	background: var(--grad);
	color: #fff;
	padding: 84px 0;
	margin-top: 88px;
	overflow: hidden;
}

.cta-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 120%, rgba(34, 211, 238, 0.35), transparent 45%),
		radial-gradient(circle at 90% -20%, rgba(255, 255, 255, 0.22), transparent 45%);
}

.cta-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.cta-title {
	color: #fff;
	font-size: clamp(26px, 3.4vw, 38px);
	margin-bottom: 10px;
}

.cta-desc {
	color: rgba(255, 255, 255, 0.88);
	margin: 0;
}

.cta-actions {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}

.cta-phone {
	display: flex;
	align-items: center;
	gap: 13px;
}

.cta-phone > span {
	display: inline-flex;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(6px);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-phone > span svg {
	width: 22px;
	height: 22px;
}

.cta-phone small {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.72);
}

.cta-phone a {
	color: #fff;
	font-size: 21px;
	font-weight: 800;
}

.cta-phone a:hover {
	color: #a5f3fc;
}

/* ==========================================================================
   页面头部 / 面包屑
   ========================================================================== */

.page-hero {
	position: relative;
	background: var(--primary-deep);
	background-image:
		radial-gradient(800px 320px at 88% -10%, rgba(124, 58, 237, 0.4), transparent 60%),
		radial-gradient(600px 300px at 5% 120%, rgba(6, 182, 212, 0.25), transparent 55%),
		linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
	color: #fff;
	padding: 72px 0;
	overflow: hidden;
}

.page-hero-small {
	padding: 48px 0;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: radial-gradient(ellipse 80% 90% at 50% 40%, #000 10%, transparent 75%);
	pointer-events: none;
}

.page-hero .container {
	position: relative;
	z-index: 1;
}

.page-hero-title {
	color: #fff;
	font-size: clamp(28px, 3.4vw, 42px);
	margin-bottom: 8px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.page-hero-sub {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 8px;
	font-size: 16.5px;
}

.page-hero-icon {
	display: inline-flex;
	width: 64px;
	height: 64px;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 18px;
	color: #fff;
	backdrop-filter: blur(8px);
	margin-bottom: 18px;
}

.page-hero-icon svg {
	width: 30px;
	height: 30px;
}

.breadcrumbs {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 10px;
}

.breadcrumb-item a {
	color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-item a:hover {
	color: #22d3ee;
}

.breadcrumb-sep {
	margin: 0 8px;
	opacity: 0.6;
}

/* ==========================================================================
   内容布局（侧边栏）
   ========================================================================== */

.content-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	padding-top: 64px;
	padding-bottom: 88px;
	align-items: start;
}

.content-area {
	min-width: 0;
}

.entry-content {
	line-height: 1.85;
}

.entry-content h2, .entry-content h3, .entry-content h4 {
	margin-top: 1.4em;
}

.entry-content img {
	border-radius: var(--radius);
}

.entry-content ul, .entry-content ol {
	padding-left: 1.5em;
}

.content-narrow {
	max-width: 820px;
}

.content-narrow .entry-content > *:first-child {
	margin-top: 0;
}

.page-thumbnail {
	margin-bottom: 28px;
}

.page-thumbnail img {
	border-radius: var(--radius-lg);
}

/* ==========================================================================
   侧边栏 / 小工具
   ========================================================================== */

.widget-area {
	position: sticky;
	top: 100px;
}

.widget {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	margin-bottom: 24px;
}

.widget-title {
	font-size: 18px;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--primary);
	display: inline-block;
}

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

.widget li {
	margin-bottom: 10px;
	font-size: 14px;
}

.widget li a {
	color: var(--ink);
}

.widget li a:hover {
	color: var(--primary);
}

.widget .search-form {
	display: flex;
}

/* ==========================================================================
   搜索表单
   ========================================================================== */

.search-form {
	display: flex;
	align-items: center;
	gap: 0;
}

.search-field {
	flex: 1;
	min-width: 0;
	padding: 12px 16px;
	border: 1px solid var(--line);
	border-right: none;
	border-radius: 999px 0 0 999px;
	font-size: 14px;
	font-family: inherit;
	outline: none;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.search-field:focus {
	border-color: var(--primary);
}

.search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	background: var(--grad);
	color: #fff;
	border: none;
	border-radius: 0 999px 999px 0;
	cursor: pointer;
	transition: filter var(--transition);
}

.search-submit:hover {
	filter: brightness(1.1);
}

.search-submit svg {
	width: 18px;
	height: 18px;
}

.tagcloud a {
	display: inline-block;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 4px 13px;
	margin: 0 6px 8px 0;
	font-size: 13px !important;
	color: var(--muted);
	transition: all var(--transition);
}

.tagcloud a:hover {
	background: var(--grad);
	border-color: transparent;
	color: #fff;
}

/* ==========================================================================
   文章详情
   ========================================================================== */

.single-article {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 44px;
}

.single-header {
	margin-bottom: 24px;
}

.single-title {
	font-size: clamp(26px, 3vw, 34px);
	margin-bottom: 14px;
}

.single-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
	font-size: 13.5px;
	color: var(--muted);
	margin-bottom: 28px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--line);
}

.single-meta .meta-author {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.single-meta .meta-avatar {
	border-radius: 50%;
}

.single-cat {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: var(--primary);
	background: var(--grad-soft);
	padding: 5px 13px;
	border-radius: 999px;
	transition: all var(--transition);
}

.single-cat:hover {
	background: var(--grad);
	color: #fff;
}

.single-thumbnail {
	margin-bottom: 28px;
}

.single-thumbnail img {
	border-radius: var(--radius);
}

.single-body {
	font-size: 16px;
}

.single-body > *:first-child {
	margin-top: 0;
}

.single-body .wp-block-image,
.single-body img.aligncenter {
	margin-bottom: 1.2em;
}

.single-tags {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px dashed var(--line);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.tags-label {
	font-weight: 700;
	margin-right: 4px;
	color: var(--text);
}

.single-tags a[rel="tag"] {
	display: inline-block;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--primary);
	background: var(--grad-soft);
	padding: 5px 14px;
	border-radius: 999px;
	transition: all var(--transition);
}

.single-tags a[rel="tag"]:hover {
	background: var(--grad);
	color: #fff;
}

.single-footer {
	margin-top: 28px;
}

.post-navigation {
	margin-top: 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.post-navigation a {
	display: block;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px 22px;
	transition: all var(--transition);
}

.post-navigation a:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow);
}

.nav-label {
	display: block;
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 4px;
}

.nav-title {
	color: var(--ink);
	font-weight: 700;
	font-size: 15px;
}

.post-navigation .nav-previous a:hover .nav-title,
.post-navigation .nav-next a:hover .nav-title {
	color: var(--primary);
}

/* 服务详情页：上一个/下一个服务导航 居中对齐 */
.single-service .post-navigation {
	grid-template-columns: 1fr 1fr;
}

.single-service .post-navigation a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.single-service .post-navigation .nav-label,
.single-service .post-navigation .nav-title {
	text-align: center;
}

/* 服务详情页：相关推荐（参考服务特点样式） */
.service-related {
	background: var(--grad-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px;
	margin-top: 30px;
}

.service-related-title {
	font-size: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.service-related-title::before {
	content: "";
	width: 4px;
	height: 20px;
	border-radius: 4px;
	background: var(--grad);
}

.service-related-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 26px;
}

.service-related-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 10px;
	transition: all var(--transition);
}

.service-related-item:hover {
	background: #fff;
	box-shadow: var(--shadow);
	transform: translateX(4px);
}

.service-related-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: #fff;
	color: var(--primary);
	flex-shrink: 0;
}

.service-related-icon svg {
	width: 18px;
	height: 18px;
}

.service-related-name {
	flex: 1;
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	min-width: 0;
}

.service-related-item:hover .service-related-name {
	color: var(--primary);
}

.service-related-arrow {
	display: flex;
	color: var(--muted);
	flex-shrink: 0;
}

/* ==========================================================================
   分页
   ========================================================================== */

.pagination {
	margin: 44px 0 0;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	color: var(--ink);
	font-weight: 600;
	transition: all var(--transition);
}

.pagination .page-numbers.current {
	background: var(--grad);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.pagination .page-numbers:hover:not(.current) {
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-2px);
}

/* ==========================================================================
   表单 / 联系页
   ========================================================================== */

.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	align-items: start;
}

.contact-info-title {
	font-size: clamp(24px, 3vw, 32px);
	margin-bottom: 8px;
}

.contact-info-desc {
	color: var(--muted);
	margin-bottom: 28px;
}

.contact-info-list {
	display: grid;
	gap: 18px;
	margin-bottom: 28px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: all var(--transition);
}

.contact-info-item:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-3px);
	border-color: transparent;
}

.contact-info-icon {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--grad-soft);
	color: var(--primary);
}

.contact-info-icon svg {
	width: 20px;
	height: 20px;
}

.contact-info-item small {
	display: block;
	font-size: 12px;
	color: var(--muted);
}

.contact-info-item a,
.contact-info-item span {
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
}

.contact-info-item a:hover {
	color: var(--primary);
}

.contact-info-sub {
	display: block;
	font-weight: 400 !important;
	font-size: 13px !important;
	color: var(--muted) !important;
	margin-top: 2px;
}

.contact-form-wrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
	padding: 44px;
}

.contact-form-title {
	font-size: clamp(22px, 3vw, 30px);
	margin-bottom: 6px;
}

.contact-form-desc {
	color: var(--muted);
	margin-bottom: 26px;
}

.form-alert {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	border-radius: 12px;
	margin-bottom: 20px;
	font-size: 14px;
}

.form-alert svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.form-alert-success {
	background: #ecfdf5;
	color: #059669;
	border: 1px solid #a7f3d0;
}

.form-alert-error {
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fecaca;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.form-group {
	margin-bottom: 18px;
}

.form-group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid var(--line);
	border-radius: 12px;
	font-size: 14px;
	font-family: inherit;
	color: var(--ink);
	background: #fff;
	outline: none;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.form-group textarea {
	resize: vertical;
}

/* ==========================================================================
   关于我们
   ========================================================================== */

.stats-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.stat-card-plain {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 20px;
	transition: all var(--transition);
}

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

.why-alt-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.why-alt-item {
	text-align: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 34px 26px;
	transition: all var(--transition);
}

.why-alt-item:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-6px);
	border-color: transparent;
}

.why-alt-icon {
	display: inline-flex;
	width: 60px;
	height: 60px;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: var(--grad-soft);
	color: var(--primary);
	margin-bottom: 16px;
	transition: all var(--transition);
}

.why-alt-item:hover .why-alt-icon {
	background: var(--grad);
	color: #fff;
	box-shadow: 0 10px 24px rgba(79, 70, 229, 0.3);
}

.why-alt-icon svg {
	width: 28px;
	height: 28px;
}

.why-alt-item h4 {
	font-size: 17.5px;
	margin-bottom: 8px;
}

.why-alt-item p {
	font-size: 13.5px;
	color: var(--muted);
	margin: 0;
}

.timeline {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
	padding-left: 36px;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 9px;
	top: 6px;
	bottom: 6px;
	width: 3px;
	background: var(--grad-soft);
	border-radius: 3px;
}

.timeline-item {
	position: relative;
	margin-bottom: 30px;
}

.timeline-marker {
	position: absolute;
	left: -33px;
	top: 10px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--grad);
	box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--primary);
}

.timeline-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px 26px;
	transition: all var(--transition);
}

.timeline-card:hover {
	box-shadow: var(--shadow-hover);
	border-color: transparent;
	transform: translateX(6px);
}

.timeline-card h4 {
	font-size: 16.5px;
	margin-bottom: 4px;
	color: var(--primary);
}

.timeline-card p {
	font-size: 14px;
	color: var(--muted);
	margin: 0;
}

/* ==========================================================================
   服务介绍页（现代版）
   ========================================================================== */

/* 服务锚点导航 */
.service-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: -32px 0 56px;
	padding: 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
	position: relative;
	z-index: 5;
}

.service-nav a {
	padding: 9px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	transition: all var(--transition);
}

.service-nav a:hover,
.service-nav a.active {
	background: var(--grad);
	color: #fff;
	box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

/* 详细服务卡片 */
.service-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.service-detail-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	padding: 40px 36px;
	overflow: hidden;
	transition: all var(--transition);
}

.service-detail-card::after {
	content: "";
	position: absolute;
	right: -60px;
	top: -60px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: var(--grad-soft);
	opacity: 0.7;
	transition: all var(--transition);
}

.service-detail-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
	border-color: transparent;
}

.service-detail-card:hover::after {
	transform: scale(1.5);
	opacity: 0.25;
}

.service-detail-head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 20px;
}

.service-detail-icon {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: var(--grad);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 28px rgba(79, 70, 229, 0.3);
	flex-shrink: 0;
}

.service-detail-icon svg {
	width: 30px;
	height: 30px;
}

.service-detail-head h3 {
	font-size: 22px;
	margin: 0;
}

.service-detail-head h3 a {
	color: var(--text);
	transition: color var(--transition);
}

.service-detail-head h3 a:hover {
	color: var(--primary);
}

.service-detail-head .svc-tag {
	font-size: 12px;
	color: var(--muted);
}

.service-detail-desc {
	position: relative;
	z-index: 1;
	color: var(--muted);
	font-size: 14.5px;
	margin-bottom: 22px;
}

.service-detail-body {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 28px;
	align-items: flex-start;
}

.service-detail-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
}

.service-detail-body li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14.5px;
	color: var(--ink);
	margin-bottom: 10px;
}

.service-detail-body li svg {
	width: 18px;
	height: 18px;
	color: var(--primary-2);
	flex-shrink: 0;
	margin-top: 5px;
}

.service-detail-cta {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	flex-shrink: 0;
}

.service-detail-cta .price {
	font-size: 13px;
	color: var(--muted);
}

.service-detail-cta .price strong {
	font-size: 20px;
	color: var(--primary);
}

.svc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.svc-actions .btn {
	margin-top: 0;
}

/* 服务标签页（大区块式） */
.service-section-block {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: center;
	padding: 96px 0;
	border-top: 1px solid var(--line);
}

.service-section-block:nth-of-type(even) {
	grid-template-columns: 0.9fr 1.1fr;
}

.service-section-block:nth-of-type(even) .service-section-media {
	order: 2;
}

.service-section-media {
	position: relative;
	background: var(--grad);
	border-radius: var(--radius-xl);
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(79, 70, 229, 0.28);
}

.service-section-media::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 45%),
		radial-gradient(circle at 85% 80%, rgba(34, 211, 238, 0.35), transparent 45%);
}

.service-section-media .big-icon {
	position: relative;
	z-index: 1;
	width: 96px;
	height: 96px;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(6px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-section-media .big-icon svg {
	width: 44px;
	height: 44px;
}

.service-section-body .svc-title {
	font-size: clamp(22px, 2.6vw, 30px);
	margin-bottom: 12px;
}

.service-section-body .svc-desc {
	color: var(--muted);
	margin-bottom: 20px;
}

.service-section-body ul {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.service-section-body ul li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 15px;
}

.service-section-body ul li svg {
	width: 19px;
	height: 19px;
	color: var(--primary-2);
	flex-shrink: 0;
	margin-top: 5px;
}

/* 数据强调条 */
.service-data-bar {
	background: var(--grad);
	border-radius: var(--radius-xl);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 48px 40px;
	color: #fff;
	box-shadow: 0 24px 60px rgba(79, 70, 229, 0.3);
}

.service-data-item {
	text-align: center;
}

.service-data-item .d-num {
	display: block;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 800;
	color: #fff;
}

.service-data-item .d-label {
	display: block;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.82);
	margin-top: 4px;
}

/* FAQ */
.faq-list {
	max-width: 860px;
	margin: 0 auto;
}

.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	margin-bottom: 14px;
	overflow: hidden;
	transition: all var(--transition);
}

.faq-item[open] {
	border-color: var(--primary);
	box-shadow: var(--shadow);
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	font-size: 24px;
	font-weight: 400;
	color: var(--primary);
	flex-shrink: 0;
	transition: transform var(--transition);
}

.faq-item[open] summary::after {
	transform: rotate(45deg);
}

.faq-item .faq-answer {
	padding: 0 24px 22px;
	color: var(--muted);
	font-size: 14.5px;
}

/* 服务结构化数据清单 */
.svc-spec {
	margin: 18px 0 22px;
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.svc-spec-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 10px 18px;
}

.svc-spec-row:nth-child(odd) {
	background: var(--bg-soft);
}

.svc-spec-row .k {
	font-size: 13px;
	color: var(--muted);
	flex-shrink: 0;
}

.svc-spec-row .v {
	font-size: 14px;
	font-weight: 600;
	text-align: right;
}

.svc-spec-row .v small {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: var(--muted);
}

/* 套餐对比表 */
.plan-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow);
}

.plan-grid .pg-cell {
	padding: 14px 18px;
	border-bottom: 1px solid var(--line);
	border-right: 1px solid var(--line);
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	min-height: 48px;
}

.plan-grid .pg-cell:last-child {
	border-right: none;
}

.plan-grid .pg-head {
	background: var(--bg-soft);
	font-weight: 700;
}

.plan-grid .pg-feature {
	color: var(--ink);
}

.plan-grid .pg-feature-label {
	color: var(--muted);
	font-weight: 600;
}

.plan-grid .pg-col-hot {
	background: linear-gradient(180deg, #eef2ff, #fff 60%);
}

.plan-grid .pg-col-hot .pg-cell {
	border-color: #e0e7ff;
}

.plan-grid .pg-price {
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.plan-grid .pg-price strong {
	font-size: 22px;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.plan-grid .pg-price span {
	font-size: 12px;
	color: var(--muted);
	font-weight: 400;
}

.plan-grid .pg-icon-yes {
	color: #10b981;
	flex-shrink: 0;
}

.plan-grid .pg-icon-no {
	color: #cbd5e1;
	flex-shrink: 0;
}

.plan-grid .pg-icon-yes svg,
.plan-grid .pg-icon-no svg {
	width: 18px;
	height: 18px;
}

.plan-grid .pg-badge {
	display: inline-block;
	background: var(--grad);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 999px;
	margin-left: 8px;
}

.plan-grid .pg-cta {
	justify-content: center;
	padding: 16px 18px;
}

.plan-grid .pg-cta .btn {
	padding: 9px 22px;
	font-size: 13px;
}

/* ==========================================================================
   404
   ========================================================================== */

.notfound-wrap {
	padding: 110px 20px;
	text-align: center;
}

.notfound-card {
	max-width: 580px;
	margin: 0 auto;
}

.notfound-code {
	font-size: 120px;
	line-height: 1;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 800;
	margin-bottom: 8px;
}

.notfound-title {
	font-size: 28px;
	margin-bottom: 12px;
}

.notfound-desc {
	color: var(--muted);
	margin-bottom: 28px;
}

.notfound-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 28px;
}

.notfound-card .search-form {
	max-width: 380px;
	margin: 0 auto;
}

/* ==========================================================================
   无结果
   ========================================================================== */

.no-results {
	text-align: center;
	background: var(--bg-soft);
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	padding: 52px 24px;
}

.no-results-title {
	font-size: 22px;
	margin-bottom: 8px;
}

.no-results-desc {
	color: var(--muted);
	margin-bottom: 20px;
}

.no-results .search-form {
	max-width: 380px;
	margin: 0 auto;
}

/* ==========================================================================
   评论
   ========================================================================== */

.comments-area {
	margin-top: 40px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 40px;
}

.comments-title {
	font-size: 20px;
	margin-bottom: 20px;
}

.comment-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.comment-list .children {
	list-style: none;
	margin-left: 40px;
}

.comment-body {
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}

.comment-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.comment-meta .avatar {
	border-radius: 50%;
}

.comment-author {
	font-weight: 600;
	font-size: 15px;
}

.comment-metadata {
	font-size: 12px;
	color: var(--muted);
}

.comment-content {
	font-size: 14.5px;
}

.comment-content p {
	margin-bottom: 8px;
}

.comment-respond h3 {
	font-size: 18px;
	margin-bottom: 16px;
}

.comment-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
}

.comment-form input,
.comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 12px;
	font-size: 14px;
	font-family: inherit;
	outline: none;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.comment-form .submit {
	background: var(--grad);
	color: #fff;
	border: none;
	cursor: pointer;
	font-weight: 700;
	transition: all var(--transition);
	width: auto;
	padding: 13px 30px;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(79, 70, 229, 0.3);
}

.comment-form .submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(79, 70, 229, 0.4);
}

/* ==========================================================================
   页脚
   ========================================================================== */

.site-footer {
	background: #0f1229;
	color: rgba(255, 255, 255, 0.72);
}

.footer-columns {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding: 72px 0 52px;
}

.footer-col .site-description {
	color: rgba(255, 255, 255, 0.6);
	margin: 14px 0;
	font-size: 14px;
	line-height: 1.8;
}

.footer-col .custom-logo {
	max-height: 48px;
	width: auto;
	margin-bottom: 10px;
}

.footer-about-text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

.footer-contact {
	margin-top: 16px;
	font-size: 13.5px;
}

.footer-contact p {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.footer-contact svg {
	width: 16px;
	height: 16px;
	color: #22d3ee;
	flex-shrink: 0;
}

.footer-col .widget-title {
	color: #fff;
	font-size: 17px;
	display: block;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

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

.footer-col ul li {
	margin-bottom: 10px;
	font-size: 14px;
}

.footer-col a {
	color: rgba(255, 255, 255, 0.72);
}

.footer-col a:hover {
	color: #22d3ee;
}

.footer-contact-list li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-contact-list svg {
	width: 16px;
	height: 16px;
	color: #22d3ee;
	flex-shrink: 0;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 22px 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-bottom .footer-copyright {
	margin: 0;
}

.footer-bottom-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 18px;
}

.footer-bottom-menu a {
	color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-menu a:hover {
	color: #22d3ee;
}

/* ==========================================================================
   返回顶部
   ========================================================================== */

.back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--grad);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 28px rgba(79, 70, 229, 0.4);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all var(--transition);
	z-index: 90;
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	color: #fff;
	transform: translateY(-3px);
}

.back-to-top svg {
	width: 20px;
	height: 20px;
	transform: rotate(-90deg);
}

/* ==========================================================================
   屏幕阅读器辅助
   ========================================================================== */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
}

.skip-link:focus {
	left: 6px;
	top: 6px;
	background: #fff;
	padding: 8px 16px;
	border-radius: 6px;
	box-shadow: var(--shadow);
}

/* ==========================================================================
   响应式
   ========================================================================== */

@media (max-width: 992px) {
	.section {
		padding: 72px 0;
	}

	.hero {
		padding-top: 72px;
	}

	.hero-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.stat-card:nth-child(2)::after {
		display: none;
	}

	.service-grid,
	.post-grid,
	.why-alt-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.post-list-item,
	.home-post-item {
		padding: 20px 2px;
	}

	.process-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-step:not(:last-child)::after {
		display: none;
	}

	.why-inner {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.content-layout {
		grid-template-columns: 1fr;
	}

	.widget-area {
		position: static;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.footer-columns {
		grid-template-columns: repeat(2, 1fr);
	}

	.cta-section {
		padding: 64px 0;
	}

	.cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.stats-bar {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-detail-grid {
		grid-template-columns: 1fr;
	}

	.service-section-block,
	.service-section-block:nth-of-type(even) {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.service-section-block:nth-of-type(even) .service-section-media {
		order: 0;
	}

	.service-data-bar {
		grid-template-columns: repeat(2, 1fr);
		padding: 40px 28px;
	}
}

@media (max-width: 768px) {
	.topbar-left {
		display: none;
	}

	.topbar-inner {
		justify-content: flex-end;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.main-navigation {
		position: fixed;
		top: 0;
		right: -300px;
		width: 300px;
		height: 100vh;
		background: #fff;
		box-shadow: -12px 0 36px rgba(15, 23, 42, 0.14);
		padding: 84px 22px 24px;
		z-index: 200;
		transition: right 0.3s ease;
		overflow-y: auto;
	}

	.main-navigation.open {
		right: 0;
	}

	.main-navigation ul {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.main-navigation a {
		padding: 14px 16px;
		border-radius: 12px;
	}

	.main-navigation .sub-menu {
		position: static;
		display: flex;
		box-shadow: none;
		border: none;
		border-left: 2px solid #e0e7ff;
		border-radius: 0;
		padding: 0 0 0 14px;
	}

	.header-phone-wrap {
		display: none;
	}

	.section-head {
		margin-bottom: 40px;
	}

	.section-title {
		font-size: 28px;
	}

	.hero {
		padding-top: 56px;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-stats {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
		padding: 22px;
		margin-bottom: -56px;
	}

	.service-grid,
	.post-grid,
	.why-alt-grid,
	.stats-bar,
	.process-steps {
		grid-template-columns: 1fr;
	}

	.why-list {
		grid-template-columns: 1fr;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-form-wrap {
		padding: 30px 24px;
	}

	.footer-columns {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.page-hero {
		padding: 52px 0;
	}

	.post-author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.service-features-list {
		grid-template-columns: 1fr;
	}

	.service-related-list {
		grid-template-columns: 1fr;
	}

	.related-list {
		grid-template-columns: 1fr;
	}

	.single-article {
		padding: 26px 22px;
	}

	.home-post-item {
		gap: 14px;
	}

	.home-post-media {
		flex-basis: 100px;
	}

	.home-post-title {
		font-size: 16px;
	}

	.post-list .home-post-title {
		font-size: 18px;
	}

	.single-title {
		font-size: 26px;
	}

	.cta-section {
		margin-top: 64px;
	}

	.notfound-code {
		font-size: 88px;
	}

	.service-detail-card {
		padding: 30px 24px;
	}

	.service-detail-body {
		flex-direction: column;
		gap: 18px;
	}

	.service-nav {
		margin-top: -24px;
		padding: 14px;
		gap: 8px;
	}

	.plan-scroll {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.plan-grid {
		min-width: 700px;
	}

	.back-to-top {
		right: 16px;
		bottom: 16px;
	}
}
