/* =========================================================
   Home page (Direction A — "Warm Playful")
   Extracted from index.html prototype.
   ========================================================= */

.home-hero {
	position: relative;
	padding: 80px 0 80px;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 15% 10%, rgba(244,123,63,0.14), transparent 50%),
		radial-gradient(ellipse at 85% 20%, rgba(46,126,182,0.10), transparent 55%),
		radial-gradient(ellipse at 50% 90%, rgba(74,179,170,0.08), transparent 60%),
		var(--cream);
}
.home-hero-grid {
	display: grid;
	grid-template-columns: 1fr 0.85fr;
	gap: 56px;
	align-items: center;
}
@media (max-width: 1100px) {
	.home-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.home-hero h1 { margin: 14px 0 20px; font-size: clamp(2.2rem, 4.4vw, 3.8rem); }
.home-hero h1 em { font-style: italic; color: var(--orange-deep); font-weight: 500; }
.home-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.home-hero-trust {
	margin-top: 36px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	background: white;
	border-radius: 18px;
	border: 1px solid var(--line);
	max-width: 520px;
	box-shadow: var(--shadow-sm);
	position: relative;
	z-index: 2;
}
.home-hero-copy { position: relative; z-index: 2; }
.home-hero-copy .lead { max-width: 560px; }
.home-hero-trust-logo {
	width: 48px; height: 48px;
	border-radius: 12px;
	background: var(--blue-soft);
	color: var(--blue);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--f-display); font-weight: 700; font-size: 1.5rem;
	flex-shrink: 0;
}
.home-hero-trust-text { font-size: 0.92rem; line-height: 1.35; }
.home-hero-trust-text strong { color: var(--ink); }
.home-hero-trust-text span { color: var(--ink-soft); }

.home-hero-logo-wrap {
	position: relative;
	display: flex; align-items: center; justify-content: center;
}
.home-hero-logo-wrap img {
	width: 100%;
	max-width: 440px;
	filter: drop-shadow(0 20px 40px rgba(244,123,63,0.25));
	animation: dg-float 6s ease-in-out infinite;
}
@keyframes dg-float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-10px) rotate(-1deg); }
}
.home-cloud {
	position: absolute;
	background: white;
	border-radius: 50%;
	opacity: 0.8;
	pointer-events: none;
}
.home-cloud-1 { width: 80px; height: 40px; top: 10%; left: -5%; }
.home-cloud-2 { width: 60px; height: 30px; bottom: 20%; right: -2%; }

.home-stats {
	background: white;
	padding: 36px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.home-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}
@media (max-width: 700px) {
	.home-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.home-stat-num {
	font-family: var(--f-display);
	font-size: 2.4rem;
	color: var(--orange-deep);
	font-weight: 700;
	line-height: 1;
}
.home-stat-label {
	font-size: 0.85rem;
	color: var(--ink-soft);
	margin-top: 6px;
	letter-spacing: 0.04em;
}

.home-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
@media (max-width: 820px) { .home-why-grid { grid-template-columns: 1fr; } }
.home-why-card {
	background: white;
	border-radius: var(--radius-lg);
	padding: 32px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s;
}
.home-why-card:hover { transform: translateY(-4px); }
.home-why-icon {
	width: 64px; height: 64px;
	border-radius: 20px;
	background: var(--orange-soft);
	display: flex; align-items: center; justify-content: center;
	font-size: 1.8rem;
	margin-bottom: 20px;
}
.home-why-card:nth-child(2) .home-why-icon { background: var(--blue-soft); }
.home-why-card:nth-child(3) .home-why-icon { background: #D9F0ED; }
.home-why-card h3 { margin-bottom: 10px; }
.home-why-card p { color: var(--ink-soft); margin: 0; }

.home-reviews-wrap { background: var(--cream-deep); }
.home-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
@media (max-width: 880px) { .home-reviews-grid { grid-template-columns: 1fr; } }
.home-reviews-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.home-cta-band {
	background:
		radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 50%),
		linear-gradient(135deg, var(--orange), var(--coral));
	color: white;
	border-radius: var(--radius-xl);
	padding: 64px 48px;
	text-align: center;
	margin: 0 auto;
	max-width: 1100px;
	box-shadow: var(--shadow-lg);
}
.home-cta-band h2 { color: white; font-size: 2.4rem; }
.home-cta-band p { color: rgba(255,255,255,0.9); font-size: 1.15rem; max-width: 560px; margin: 14px auto 28px; }
.home-cta-band .btn-primary {
	background: white;
	color: var(--orange-deep);
	box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
