/* 主页特有样式 - 响应式 */

/* 基础 */
* { box-sizing: border-box; }

/* Hero 区域 */
.hero-section {
	text-align: center;
	padding: 60px 20px 40px;
	background: linear-gradient(135deg, #faf9f5 0%, #f0eee6 100%);
	border-radius: 15px;
	margin-bottom: 40px;
}
.hero-section h1 {
	font-size: 2.5rem;
	color: #141413;
	margin-bottom: 15px;
	font-weight: 700;
}
.hero-section .slogan {
	font-size: 1.3rem;
	color: #d97757;
	margin-bottom: 20px;
	font-weight: 500;
}
.hero-section .description {
	font-size: 1rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.8;
}

/* 方案卡片网格 */
.solutions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}
.solution-card {
	background: #fff;
	border-radius: 15px;
	padding: 30px;
	border: 1px solid rgba(17, 30, 44, 0.08);
	box-shadow: 0px 4px 12px 0px rgba(17, 30, 44, 0.02);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none;
	color: inherit;
	display: block;
}
.solution-card:hover {
	transform: translateY(-5px);
	box-shadow: 0px 8px 24px 0px rgba(17, 30, 44, 0.08);
}
.solution-card:hover h3 { color: #d97757; }

.solution-logo {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	overflow: hidden;
}
.solution-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.solution-logo-text {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.2;
}
.logo-openclaw {
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
	color: #1565c0;
}
.logo-claudecode {
	background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
	color: #7b1fa2;
}
.logo-clawstu {
	background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
	color: #2e7d32;
}

.solution-card h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: #141413;
	transition: color 0.3s ease;
}
.solution-card p {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
}
.solution-features {
	list-style: none;
	padding: 0;
	margin: 0;
}
.solution-features li {
	font-size: 0.85rem;
	color: #888;
	padding: 5px 0;
	padding-left: 20px;
	position: relative;
}
.solution-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #45a557;
	font-weight: bold;
}

/* CTA 区域 */
.cta-section {
	text-align: center;
	padding: 60px 20px;
	margin-top: 40px;
	background: #fff;
	border-radius: 15px;
	border: 1px solid rgba(17, 30, 44, 0.08);
}
.cta-section h1 {
	font-size: 1.8rem;
	margin-bottom: 15px;
	color: #141413;
}
.cta-section p {
	color: #666;
	margin-bottom: 25px;
}
.cta-button {
	display: inline-block;
	padding: 12px 30px;
	background: #d97757;
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.3s ease;
}
.cta-button:hover { background: #c46a4d; color: #fff; }

/* 移动端响应式 */
@media (max-width: 768px) {
	.hero-section { padding: 40px 15px 30px; }
	.hero-section h1 { font-size: 1.8rem; }
	.hero-section .slogan { font-size: 1.1rem; }
	.hero-section .description { font-size: 0.9rem; }

	.solutions-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 30px;
	}
	.solution-card { padding: 20px; }
	.solution-logo, .solution-logo-text {
		width: 60px;
		height: 60px;
	}
	.solution-logo-text { font-size: 0.75rem; }
	.solution-card h3 { font-size: 1.1rem; }
	.solution-card p { font-size: 0.9rem; }

	.cta-section { padding: 40px 15px; margin-top: 30px; }
	.cta-section h2 { font-size: 1.4rem; }
	.cta-button { padding: 10px 25px; font-size: 0.9rem; }
}

/* 平板响应式 */
@media (min-width: 769px) and (max-width: 1024px) {
	.solutions-grid { grid-template-columns: repeat(2, 1fr); }
}
