/* Aerokids Edu landing: match kidscare (Ubuntu body, Fredoka headings, ~18px copy) */
.edu-landing {
	--edu-teal: #1bb4b9;
	--edu-teal-deep: #1396a0;
	--edu-coral: #ea624c;
	--edu-text: #292929;
	--edu-muted: #546e7a;
	--edu-bg-soft: #f5fafb;
	font-family: 'Ubuntu', sans-serif;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: var(--edu-text);
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 0 2.5rem;
}
.edu-landing * { box-sizing: border-box; }
.edu-landing h1,
.edu-landing h2,
.edu-landing h3 {
	font-family: 'Fredoka One', cursive;
	font-weight: 400;
	color: var(--edu-text);
}
.edu-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
	padding: 2rem 0 2.5rem;
}
@media (max-width: 900px) {
	.edu-hero { grid-template-columns: 1fr; gap: 1.5rem; }
}
.edu-hero-copy h1 {
	font-size: clamp(28px, 3.5vw, 36px);
	line-height: 1.15;
	margin: 0 0 0.75rem;
}
.edu-badge {
	display: inline-block;
	font-family: 'Ubuntu', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--edu-teal-deep);
	background: rgba(27, 180, 185, 0.12);
	padding: 0.35rem 0.65rem;
	border-radius: 6px;
	margin-bottom: 0.85rem;
}
.edu-lead {
	font-size: 18px;
	line-height: 28px;
	color: var(--edu-muted);
	margin: 0 0 1.25rem;
	max-width: 36em;
}
.edu-hero-more {
	margin: 0 0 1.35rem;
	max-width: 38em;
}
.edu-hero-more p {
	font-size: 17px;
	line-height: 26px;
	color: var(--edu-muted);
	margin: 0 0 1rem;
}
.edu-hero-more p:last-child {
	margin-bottom: 0;
}
.edu-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
	margin-bottom: 0.5rem;
}
.edu-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.15rem;
	border-radius: 10px;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.25;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.edu-btn:hover { transform: translateY(-1px); text-decoration: none; }
.edu-btn--primary {
	background: linear-gradient(180deg, var(--edu-teal) 0%, var(--edu-teal-deep) 100%);
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(19, 150, 160, 0.35);
}
.edu-btn--coral {
	background: linear-gradient(180deg, #ee7a62 0%, var(--edu-coral) 100%);
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(234, 98, 76, 0.35);
}
.edu-btn--ghost {
	background: transparent;
	color: var(--edu-teal-deep) !important;
	border: 2px solid rgba(27, 180, 185, 0.45);
}
.edu-hero-visual {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	background: linear-gradient(145deg, #e8f7f8 0%, #fff 100%);
	width: 100%;
}
.edu-hero-visual img {
	display: block;
	width: 100%;
	height: auto;
}
.edu-mini-note { font-size: 16px; line-height: 24px; color: var(--edu-muted); margin-top: 0.75rem; }
.edu-section {
	padding: 2.25rem 0;
	border-top: 1px solid #e0e0e0;
}
.edu-section:first-of-type { border-top: none; }
.edu-section h2 {
	font-size: 30px;
	line-height: 34px;
	margin: 0 0 0.5rem;
}
.edu-section-sub {
	font-family: 'Ubuntu', sans-serif;
	color: var(--edu-muted);
	font-size: 18px;
	line-height: 28px;
	margin: 0 0 1.5rem;
	max-width: 40em;
}
.edu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1rem;
}
.edu-card {
	background: var(--edu-bg-soft);
	border-radius: 12px;
	padding: 1.1rem 1.15rem;
	border: 1px solid rgba(27, 180, 185, 0.2);
}
.edu-card h3 {
	font-family: 'Fredoka One', cursive;
	font-size: 20px;
	line-height: 24px;
	margin: 0 0 0.4rem;
	color: var(--edu-teal-deep);
	font-weight: 400;
}
.edu-card p {
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
	font-size: 17px;
	line-height: 26px;
	color: var(--edu-muted);
}
.edu-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.75rem;
	align-items: start;
	margin-top: 1rem;
}
.edu-split--reverse .edu-split-text { order: 2; }
.edu-split--reverse .edu-split-img { order: 1; }
@media (max-width: 768px) {
	.edu-split { grid-template-columns: 1fr; }
	.edu-split--reverse .edu-split-text,
	.edu-split--reverse .edu-split-img { order: unset; }
}
.edu-split-img {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
	background: #f0f4f5;
	width: 100%;
	align-self: start;
}
.edu-split-img img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}
.edu-split-text {
	padding-top: 0.25rem;
	align-self: start;
}
.edu-split-text h3 {
	font-size: 24px;
	line-height: 28px;
	margin: 0 0 0.65rem;
}
.edu-split-text > p:first-of-type,
.edu-split-text > p.edu-split-lead {
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	color: var(--edu-muted);
}
.edu-split--composite {
	margin-top: 1.5rem;
}
.edu-composite-parts {
	margin-top: 1rem;
}
.edu-composite-part {
	margin-bottom: 1.2rem;
}
.edu-composite-part:last-child {
	margin-bottom: 0;
}
.edu-landing .edu-composite-part h4 {
	font-family: 'Fredoka One', cursive;
	font-size: 18px;
	line-height: 22px;
	color: var(--edu-teal-deep);
	margin: 0 0 0.45rem;
	font-weight: 400;
}
.edu-composite-part p {
	font-family: 'Ubuntu', sans-serif;
	font-size: 17px;
	line-height: 26px;
	color: var(--edu-muted);
	margin: 0;
}
.edu-split-more {
	margin-top: 1.35rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.edu-split-more p {
	font-family: 'Ubuntu', sans-serif;
	font-size: 17px;
	line-height: 26px;
	color: var(--edu-muted);
	margin: 0 0 1rem;
}
.edu-split-more p:last-child {
	margin-bottom: 0;
}
.edu-pricing-panels {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	margin-top: 0.35rem;
}
.edu-pricing-highlight {
	font-family: 'Ubuntu', sans-serif;
	font-size: 17px;
	line-height: 26px;
	color: var(--edu-muted);
	background: rgba(27, 180, 185, 0.08);
	border: 1px solid rgba(27, 180, 185, 0.22);
	border-radius: 10px;
	padding: 0.75rem 0.95rem;
	margin: 0 0 1rem;
}
@media (max-width: 768px) {
	.edu-pricing-panels { grid-template-columns: 1fr; }
}
.edu-pricing-panel {
	background: var(--edu-bg-soft);
	border: 1px solid rgba(27, 180, 185, 0.22);
	border-radius: 12px;
	padding: 1.25rem 1.35rem;
}
.edu-pricing-panel h3 {
	font-size: 20px;
	line-height: 24px;
	margin: 0 0 0.65rem;
	color: var(--edu-teal-deep);
}
.edu-pricing-panel p {
	font-family: 'Ubuntu', sans-serif;
	font-size: 17px;
	line-height: 26px;
	color: var(--edu-muted);
	margin: 0 0 0.85rem;
}
.edu-pricing-panel p:last-child {
	margin-bottom: 0;
}
.edu-pricing-foot {
	margin-top: 0.5rem !important;
	padding-top: 0.65rem;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 16px !important;
	line-height: 24px !important;
}
.edu-pricing-foot a {
	font-weight: 600;
}
.edu-download {
	text-align: center;
	padding: 2rem 1.25rem;
	margin: 2rem 0 0;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(27, 180, 185, 0.12) 0%, rgba(234, 98, 76, 0.08) 100%);
	border: 1px solid rgba(27, 180, 185, 0.25);
}
.edu-download h2 {
	font-size: 30px;
	line-height: 34px;
	margin: 0 0 0.5rem;
}
.edu-download p {
	margin: 0 0 1rem;
	font-size: 18px;
	line-height: 28px;
	color: var(--edu-muted);
}
.edu-download .edu-cta-row { justify-content: center; }
.edu-img-ph {
	min-height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Ubuntu', sans-serif;
	color: #78909c;
	font-size: 15px;
	line-height: 22px;
	text-align: center;
	padding: 1rem;
	background: repeating-linear-gradient(-45deg, #f5f5f5, #f5f5f5 8px, #eceff1 8px, #eceff1 16px);
}

/* Stack theme footer (contact + copyright) after .mainWrap; inner pages use body.wide (see header.php) */
.page-aerokids-edu .boxedWrap > .mainWrap + .footerContentWrap {
	clear: both;
	width: 100%;
}
