/* ClawStudio 页面样式 */

/* ===== profession-hero 区域 ===== */
.profession-hero {
	text-align: center;
	padding: 40px 20px;
	border-radius: 12px;
	margin-bottom: 30px;
}

.profession-hero .icon {
	font-size: 4rem;
	margin-bottom: 15px;
}

.profession-hero h1 {
	margin-bottom: 10px;
}

.profession-hero p {
	color: #555;
	max-width: 600px;
	margin: 0 auto;
}

/* 营养师 - 绿色 */
.profession-hero.nutritionist,
.profession-hero.financial {
	background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}
.profession-hero.nutritionist h1,
.profession-hero.financial h1 {
	color: #2e7d32;
}

/* 心理咨询师 - 紫色 */
.profession-hero.counselor {
	background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}
.profession-hero.counselor h1 {
	color: #7b1fa2;
}

/* 律师 - 蓝色 */
.profession-hero.lawyer {
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
.profession-hero.lawyer h1 {
	color: #1565c0;
}

/* 职业规划师 - 橙色 */
.profession-hero.career {
	background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}
.profession-hero.career h1 {
	color: #e65100;
}

/* 旅游咨询师 - 青色 */
.profession-hero.travel {
	background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}
.profession-hero.travel h1 {
	color: #00838f;
}

/* ===== feature-grid 功能网格 ===== */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin: 25px 0;
}

.feature-card {
	background: #f8f9fa;
	border-radius: 10px;
	padding: 20px;
}

.feature-card h3 {
	color: #d97757;
	margin-bottom: 10px;
	font-size: 16px;
}

.feature-card ul {
	margin: 0;
	padding-left: 20px;
}

.feature-card li {
	margin: 5px 0;
	color: #555;
}

/* ===== index.html 首页特有样式 ===== */
.intro-section {
	text-align: center;
	padding: 40px 20px;
	background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
	border-radius: 12px;
	margin-bottom: 30px;
}

.intro-section img {
	height: 60px;
	margin-bottom: 15px;
}

.intro-section h1 {
	color: #2e7d32;
	margin-bottom: 10px;
}

.intro-section p {
	color: #555;
	max-width: 600px;
	margin: 0 auto;
}

.solution-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 30px 0;
}

a.solution-item {
	display: block;
	text-decoration: none;
	color: inherit;
}

.solution-item {
	background: #fff;
	border-radius: 10px;
	padding: 25px;
	text-align: center;
	border: 1px solid rgba(17, 30, 44, 0.08);
	transition: transform 0.3s ease;
}

.solution-item:hover {
	transform: translateY(-3px);
	box-shadow: 0px 8px 24px 0px rgba(17, 30, 44, 0.08);
}

.solution-item .icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.solution-item h3 {
	font-size: 16px;
	color: #141413;
	margin-bottom: 10px;
}

.solution-item p {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
}

.feature-list {
	background: #f8f9fa;
	border-radius: 10px;
	padding: 25px;
	margin: 20px 0;
}

.feature-list h3 {
	color: #2e7d32;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #c8e6c9;
}

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

.feature-list li {
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
}

.feature-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #45a557;
	font-weight: bold;
}

.cta-box {
	background: linear-gradient(135deg, #d97757 0%, #c46a4d 100%);
	color: #fff;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	margin-top: 30px;
}

.cta-box h3 {
	margin-bottom: 10px;
}

.cta-box p {
	opacity: 0.9;
	margin-bottom: 15px;
}

.cta-button {
	display: inline-block;
	padding: 10px 25px;
	background: #fff;
	color: #d97757;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
}

/* ===== 响应式布局 ===== */
@media (max-width: 768px) {
	.feature-grid { grid-template-columns: 1fr; }
	.solution-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
	.solution-grid { grid-template-columns: repeat(2, 1fr); }
}
