/* ---------------------------------------------------------------------
 * Students of Timor — marketing site
 * Brand: Ocean #0A4D6E + Forest #1F5A36 (SOT corporate identity)
 * ------------------------------------------------------------------ */

:root {
	--sotedu-ocean:        #0A4D6E;
	--sotedu-ocean-dark:   #073C57;
	--sotedu-ocean-soft:   #E8F0F5;
	--sotedu-forest:       #1F5A36;
	--sotedu-forest-dark:  #14422A;
	--sotedu-forest-soft:  #E6EFE9;
	--sotedu-sand:         #F4EBD9;
	--sotedu-sand-dark:    #C9A65F;
	--sotedu-ink:          #15212B;
	--sotedu-ink-soft:     #4A5762;
	--sotedu-paper:        #FFFFFF;
	--sotedu-paper-soft:   #F7F9FB;
	--sotedu-line:         #E1E8EE;

	--sotedu-radius:       12px;
	--sotedu-radius-lg:    18px;
	--sotedu-shadow-sm:    0 1px 2px rgba(15, 33, 47, 0.05), 0 1px 3px rgba(15, 33, 47, 0.06);
	--sotedu-shadow-md:    0 4px 12px rgba(15, 33, 47, 0.08), 0 2px 4px rgba(15, 33, 47, 0.04);
	--sotedu-shadow-lg:    0 18px 40px rgba(15, 33, 47, 0.10), 0 8px 16px rgba(15, 33, 47, 0.06);

	--sotedu-container:    1180px;
}

/* ---------- Reset-ish bits, scoped to marketing pages ---------- */
.sotedu-marketing img,
.sotedu-img { max-width: 100%; height: auto; display: block; }
.sotedu-marketing .sotedu-container { max-width: var(--sotedu-container); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.sotedu-btn {
	display: inline-block;
	font: 600 15px/1 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	letter-spacing: 0.01em;
	padding: 14px 22px;
	border-radius: 999px;
	text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.sotedu-btn--primary    { background: var(--sotedu-ocean); color: #fff; box-shadow: var(--sotedu-shadow-sm); }
.sotedu-btn--primary:hover { background: var(--sotedu-ocean-dark); transform: translateY(-1px); box-shadow: var(--sotedu-shadow-md); }
.sotedu-btn--secondary  { background: var(--sotedu-forest); color: #fff; box-shadow: var(--sotedu-shadow-sm); }
.sotedu-btn--secondary:hover { background: var(--sotedu-forest-dark); transform: translateY(-1px); }
.sotedu-btn--ghost      { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.55); }
.sotedu-btn--ghost:hover{ background: rgba(255,255,255,0.10); }

/* On light section backgrounds, ghost button needs ink. */
.sotedu-bg--white .sotedu-btn--ghost,
.sotedu-bg--light .sotedu-btn--ghost,
.sotedu-bg--sand  .sotedu-btn--ghost {
	color: var(--sotedu-ocean);
	border-color: rgba(10, 77, 110, 0.30);
}
.sotedu-bg--white .sotedu-btn--ghost:hover,
.sotedu-bg--light .sotedu-btn--ghost:hover,
.sotedu-bg--sand  .sotedu-btn--ghost:hover { background: rgba(10, 77, 110, 0.05); }

/* Backgrounds */
.sotedu-bg--ocean   { background: var(--sotedu-ocean);  color: #fff; }
.sotedu-bg--ocean a { color: #fff; }
.sotedu-bg--forest  { background: var(--sotedu-forest); color: #fff; }
.sotedu-bg--forest a{ color: #fff; }
.sotedu-bg--light   { background: var(--sotedu-paper-soft); }
.sotedu-bg--white   { background: var(--sotedu-paper); }
.sotedu-bg--sand    { background: var(--sotedu-sand); }

.sotedu-bg--ocean,
.sotedu-bg--forest { --sotedu-ink: #fff; --sotedu-ink-soft: rgba(255,255,255,0.85); }

/* Eyebrow */
.sotedu-eyebrow {
	display: inline-block;
	font: 600 12px/1 system-ui, sans-serif;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,0.14);
	color: inherit;
	margin-bottom: 14px;
}
.sotedu-bg--white .sotedu-eyebrow,
.sotedu-bg--light .sotedu-eyebrow,
.sotedu-bg--sand  .sotedu-eyebrow {
	background: var(--sotedu-ocean-soft);
	color: var(--sotedu-ocean);
}

/* ---------- Hero ---------- */
.sotedu-hero { padding: 96px 0 88px; }
.sotedu-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 56px;
	align-items: center;
}
.sotedu-hero--center .sotedu-hero__grid { grid-template-columns: 1fr; text-align: center; max-width: 820px; margin: 0 auto; }
.sotedu-hero__title {
	font: 800 56px/1.06 system-ui, sans-serif;
	letter-spacing: -0.025em;
	margin: 0 0 18px;
	color: inherit;
}
.sotedu-hero__subtitle {
	font: 400 19px/1.55 system-ui, sans-serif;
	color: var(--sotedu-ink-soft);
	margin: 0 0 28px;
	max-width: 60ch;
}
.sotedu-hero--center .sotedu-hero__subtitle { margin-left: auto; margin-right: auto; }
.sotedu-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.sotedu-hero--center .sotedu-hero__cta { justify-content: center; }
.sotedu-hero__media img {
	width: 100%;
	border-radius: var(--sotedu-radius-lg);
	box-shadow: var(--sotedu-shadow-lg);
}

/* ---------- Section ---------- */
.sotedu-section { padding: 80px 0; }
.sotedu-section--narrow .sotedu-container { max-width: 880px; }
.sotedu-section__head { margin-bottom: 48px; max-width: 700px; }
.sotedu-section--center .sotedu-section__head,
.sotedu-section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.sotedu-section__title {
	font: 700 38px/1.15 system-ui, sans-serif;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
	color: inherit;
}
.sotedu-section__subtitle {
	font: 400 18px/1.55 system-ui, sans-serif;
	color: var(--sotedu-ink-soft);
	margin: 0;
}

/* ---------- Section: split-illustration layout ----------
 * 2030-modern split layout. Illustration column is intentionally narrower
 * (≈42%) than the copy column (≈58%) so the section body has breathing
 * room — important because [sotedu_grid cols="2"] inside the body would
 * otherwise produce cramped 252px cards. We also force any cols-2 / cols-3
 * grid INSIDE a split section to stack to a single column, since the
 * narrower copy column reads better as a vertical card list anyway.
 *
 * The illustration itself is capped at 420px max-width and floats with a
 * soft drop shadow (no card border — these are flat illustrations, not
 * photos). A faint radial-gradient ornament behind the section gives the
 * 2030 "depth without skeuomorphism" feel.
 *
 * `illustration_side="left"` flips visual order via grid `direction: rtl`
 * (children reset to ltr so their own contents stay readable).
 */
.sotedu-section--split { position: relative; overflow: hidden; }

.sotedu-section--split::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--sotedu-ornament-x, 78%) 45%, rgba(10,77,110,0.06) 0%, transparent 45%);
	pointer-events: none;
	z-index: 0;
}
.sotedu-section--illustration-left::before { --sotedu-ornament-x: 22%; }

.sotedu-section--split .sotedu-container { position: relative; z-index: 1; }

.sotedu-section--split .sotedu-section__split {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 72px;
	align-items: center;
}
.sotedu-section--split .sotedu-section__head { margin-bottom: 28px; }
.sotedu-section--split .sotedu-section__body > *:last-child { margin-bottom: 0; }

.sotedu-section--split .sotedu-section__illustration {
	display: flex;
	align-items: center;
	justify-content: center;
}
.sotedu-section--split .sotedu-section__illustration img {
	max-width: 420px;
	width: 100%;
	height: auto;
	border-radius: 0;
	filter: drop-shadow(0 18px 36px rgba(10,77,110,0.12));
	transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.sotedu-section--split .sotedu-section__illustration:hover img { transform: scale(1.03); }

.sotedu-section--illustration-left .sotedu-section__split {
	direction: rtl;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
.sotedu-section--illustration-left .sotedu-section__split > * { direction: ltr; }

/* Inside a split section, the body column is narrower — collapse any
   cols-2/3 grid into a single stacked column so cards keep their breathing
   room. The cards still get the modern hover/depth treatment below. */
.sotedu-section--split .sotedu-section__body .sotedu-grid--cols-2,
.sotedu-section--split .sotedu-section__body .sotedu-grid--cols-3 {
	grid-template-columns: 1fr;
	gap: 16px;
}

/* Tighter, more dramatic section title inside split layouts. */
.sotedu-section--split .sotedu-section__title {
	font-size: 38px;
	letter-spacing: -0.02em;
	line-height: 1.1;
}
.sotedu-section--split .sotedu-section__subtitle {
	font-size: 17px;
	line-height: 1.55;
	color: var(--sotedu-ink-soft);
}

/* ---------- Generic grid ---------- */
.sotedu-grid { display: grid; gap: 24px; }
.sotedu-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.sotedu-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.sotedu-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.sotedu-grid--cols-6 { grid-template-columns: repeat(6, 1fr); }

/* wpautop hostility fix.
 *
 * WordPress runs wpautop on shortcode content BEFORE do_shortcode resolves
 * the inner shortcodes. The newlines between `[sotedu_card]` blocks inside
 * a `[sotedu_grid]` get turned into literal `<br>` tags, and trailing
 * blank lines become empty `<p></p>`. Each of those elements then takes
 * a grid cell, so 4 cards in a 2-col grid end up rendering as:
 *
 *   [BR ][C1]    instead of    [C1][C2]
 *   [BR ][C2]                  [C3][C4]
 *   [BR ][C3]
 *   [BR ][C4]
 *
 * — every card ends up in column 2 with the left half empty. Same bug
 * affects `.sotedu-features` and any other shortcode that wraps a list
 * of nested shortcodes in a grid. Hide them so they don't consume cells.
 */
.sotedu-grid > br,
.sotedu-grid > p:empty,
.sotedu-features > br,
.sotedu-features > p:empty,
.sotedu-section__body > br:first-child,
.sotedu-section__body > br:last-child,
.sotedu-section__body > p:empty,
.sotedu-modules > br,
.sotedu-modules > p:empty {
	display: none;
}
.sotedu-grid--gap-sm { gap: 16px; }
.sotedu-grid--gap-lg { gap: 40px; }

/* ---------- Features ---------- */
.sotedu-features { display: grid; gap: 28px; }
.sotedu-features--cols-2 { grid-template-columns: repeat(2, 1fr); }
.sotedu-features--cols-3 { grid-template-columns: repeat(3, 1fr); }
.sotedu-features--cols-4 { grid-template-columns: repeat(4, 1fr); }
.sotedu-feature {
	background: var(--sotedu-paper);
	border: 1px solid var(--sotedu-line);
	border-radius: var(--sotedu-radius-lg);
	padding: 28px 26px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	text-decoration: none;
	color: inherit;
	display: block;
}
.sotedu-bg--ocean .sotedu-feature,
.sotedu-bg--forest .sotedu-feature {
	background: rgba(255,255,255,0.07);
	border-color: rgba(255,255,255,0.18);
	color: #fff;
}
.sotedu-feature--linked:hover { transform: translateY(-3px); box-shadow: var(--sotedu-shadow-md); border-color: var(--sotedu-ocean); }
.sotedu-feature__icon { font-size: 36px; line-height: 1; margin-bottom: 14px; }
.sotedu-feature__media--icon { width: 64px; height: 64px; margin-bottom: 14px; }
.sotedu-feature__media--icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.sotedu-feature__title { font: 700 19px/1.25 system-ui, sans-serif; margin: 0 0 10px; }
.sotedu-feature__body  { font: 400 15px/1.55 system-ui, sans-serif; color: var(--sotedu-ink-soft); margin: 0; }
.sotedu-feature__body p:last-child { margin-bottom: 0; }
.sotedu-feature__cta {
	display: inline-block; margin-top: 14px; font-weight: 600;
	color: var(--sotedu-ocean); text-decoration: none;
}
.sotedu-bg--ocean .sotedu-feature__cta, .sotedu-bg--forest .sotedu-feature__cta { color: #fff; }

/* ---------- Card — 2030-modern ----------
 * Depth via layered shadows, gradient hover stripe, smooth lift transition.
 * Soft diagonal gradient background gives the card a subtle paper feel
 * without the cheap "neumorphism" look. Toned variants (ocean/forest/sand)
 * keep their permanent gradient stripe and pick up matching glow on hover.
 */
.sotedu-card {
	position: relative;
	background: linear-gradient(135deg, #ffffff 0%, var(--sotedu-paper) 100%);
	border: 1px solid rgba(15, 33, 43, 0.06);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow:
		0 1px 0 rgba(15, 33, 43, 0.03),
		0 8px 24px -10px rgba(10, 77, 110, 0.08);
	transition: transform .25s cubic-bezier(.2,.8,.2,1),
	            box-shadow .25s cubic-bezier(.2,.8,.2,1),
	            border-color .25s ease;
}
.sotedu-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sotedu-ocean) 0%, var(--sotedu-forest) 100%);
	opacity: 0;
	transition: opacity .25s ease;
	z-index: 1;
}
.sotedu-card:hover {
	transform: translateY(-4px);
	border-color: rgba(10, 77, 110, 0.18);
	box-shadow:
		0 1px 0 rgba(15, 33, 43, 0.03),
		0 20px 40px -14px rgba(10, 77, 110, 0.20),
		0 6px 16px -10px rgba(31, 90, 54, 0.10);
}
.sotedu-card:hover::before { opacity: 1; }

.sotedu-card__media img { width: 100%; display: block; }
.sotedu-card__body {
	padding: 28px 26px 26px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.sotedu-card__title {
	font: 700 19px/1.3 system-ui, sans-serif;
	margin: 0 0 10px;
	letter-spacing: -0.005em;
	color: var(--sotedu-ink);
}
.sotedu-card__text {
	font: 400 15px/1.6 system-ui, sans-serif;
	color: var(--sotedu-ink-soft);
}
.sotedu-card__text p:last-child { margin-bottom: 0; }
.sotedu-card__cta {
	margin-top: auto;
	padding-top: 16px;
	font-weight: 600;
	font-size: 15px;
	color: var(--sotedu-ocean);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap .2s ease, color .2s ease;
}
.sotedu-card__cta::after {
	content: "→";
	transition: transform .2s ease;
}
.sotedu-card:hover .sotedu-card__cta { gap: 10px; color: var(--sotedu-forest); }
.sotedu-card:hover .sotedu-card__cta::after { transform: translateX(2px); }

/* Toned variants — permanent top stripe in the variant colour, no hover-fade */
.sotedu-card--ocean::before  { opacity: 1; background: var(--sotedu-ocean); }
.sotedu-card--forest::before { opacity: 1; background: var(--sotedu-forest); }
.sotedu-card--sand::before   { opacity: 1; background: var(--sotedu-sand-dark, #d9c79e); }
.sotedu-card--ocean,
.sotedu-card--forest,
.sotedu-card--sand { border-top-width: 0; }

/* ---------- Audience picker ---------- */
.sotedu-audience__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.sotedu-audience__tile {
	display: flex; flex-direction: column;
	background: var(--sotedu-paper);
	border: 1px solid var(--sotedu-line);
	border-radius: var(--sotedu-radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: var(--sotedu-ink);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sotedu-audience__tile--icon { padding: 28px 24px 22px; }
.sotedu-audience__tile--photo { padding: 0; }
.sotedu-audience__tile--photo .sotedu-audience__body-wrap { padding: 22px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.sotedu-audience__media { aspect-ratio: 4 / 3; overflow: hidden; }
.sotedu-audience__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.sotedu-audience__tile--photo:hover .sotedu-audience__media img { transform: scale(1.04); }
.sotedu-audience__tile:hover { transform: translateY(-3px); box-shadow: var(--sotedu-shadow-md); border-color: var(--sotedu-ocean); }
.sotedu-tone--ocean  { border-top: 4px solid var(--sotedu-ocean); }
.sotedu-tone--forest { border-top: 4px solid var(--sotedu-forest); }
.sotedu-tone--sand   { border-top: 4px solid var(--sotedu-sand-dark); }
.sotedu-audience__icon { font-size: 40px; line-height: 1; margin-bottom: 14px; }
.sotedu-audience__title { font: 700 19px/1.25 system-ui, sans-serif; margin: 8px 0 10px; }
.sotedu-audience__body  { font: 400 15px/1.55 system-ui, sans-serif; color: var(--sotedu-ink-soft); margin: 0 0 16px; }
.sotedu-audience__cta   { margin-top: auto; font-weight: 600; color: var(--sotedu-ocean); }

/* ---------- Module grid ----------
 * Each card is a 2-column grid: big icon on the left, title + description
 * stacked on the right. The icon column auto-sizes to its content (the
 * 96-100px box below). No HTML restructuring required — the 3 direct
 * children (icon span, h3 title, p body) are placed via explicit grid
 * coordinates so the title goes top-right and the body bottom-right.
 */
.sotedu-modules {
	display: grid;
	grid-template-columns: repeat(3, 1fr);   /* 3 across instead of 4 — gives cards more breathing room */
	gap: 18px;
}
.sotedu-module {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 18px;
	row-gap: 4px;
	align-items: center;
	background: var(--sotedu-paper);
	border: 1px solid var(--sotedu-line);
	border-radius: var(--sotedu-radius);
	padding: 18px 20px;
	text-decoration: none;
	color: var(--sotedu-ink);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sotedu-module:hover { transform: translateY(-2px); box-shadow: var(--sotedu-shadow-md); border-color: var(--sotedu-ocean); }

/* Icon spans both rows on the left side of the card. */
.sotedu-module__icon {
	grid-column: 1;
	grid-row: 1 / span 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	font-size: 56px;            /* emoji-fallback size — big enough to balance the card */
	line-height: 1;
	margin: 0;
	flex-shrink: 0;
}
.sotedu-module__icon--image { width: 96px; height: 96px; }
.sotedu-module__icon--image img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Title sits top-right, body bottom-right. */
.sotedu-module__title {
	grid-column: 2;
	grid-row: 1;
	align-self: end;              /* push toward the visual centreline */
	font: 700 17px/1.25 system-ui, sans-serif;
	margin: 0;
}
.sotedu-module__body {
	grid-column: 2;
	grid-row: 2;
	align-self: start;            /* sits just below the title */
	font: 400 14px/1.45 system-ui, sans-serif;
	color: var(--sotedu-ink-soft);
	margin: 0;
}

/* ---------- CTA ---------- */
.sotedu-cta { padding: 64px 0; }
.sotedu-cta__inner {
	background: linear-gradient(135deg, var(--sotedu-ocean), var(--sotedu-ocean-dark));
	border-radius: var(--sotedu-radius-lg);
	padding: 44px 48px;
	display: grid;
	grid-template-columns: 1.4fr auto;
	gap: 32px;
	align-items: center;
	box-shadow: var(--sotedu-shadow-lg);
	color: #fff;
}
.sotedu-bg--forest .sotedu-cta__inner { background: linear-gradient(135deg, var(--sotedu-forest), var(--sotedu-forest-dark)); }
.sotedu-bg--white  .sotedu-cta__inner,
.sotedu-bg--light  .sotedu-cta__inner { background: linear-gradient(135deg, var(--sotedu-ocean), var(--sotedu-forest)); }
.sotedu-cta__title    { font: 800 32px/1.15 system-ui, sans-serif; letter-spacing: -0.02em; margin: 0 0 10px; }
.sotedu-cta__subtitle { font: 400 17px/1.5 system-ui, sans-serif; margin: 0; opacity: 0.92; }
.sotedu-cta__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Steps ---------- */
.sotedu-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; counter-reset: step; }
.sotedu-steps__item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: flex-start;
	background: var(--sotedu-paper); border: 1px solid var(--sotedu-line); border-radius: var(--sotedu-radius); padding: 20px 22px; }
.sotedu-steps__num { width: 40px; height: 40px; border-radius: 50%; background: var(--sotedu-ocean); color: #fff;
	display: flex; align-items: center; justify-content: center; font-weight: 700; }
.sotedu-steps__title { font: 700 17px/1.2 system-ui, sans-serif; margin: 0 0 4px; }
.sotedu-steps__body  { font: 400 15px/1.55 system-ui, sans-serif; color: var(--sotedu-ink-soft); margin: 0; }

/* ---------- FAQ ---------- */
.sotedu-faq__container { max-width: 880px; }
.sotedu-faq { display: grid; gap: 10px; }
.sotedu-faq__item {
	background: var(--sotedu-paper);
	border: 1px solid var(--sotedu-line);
	border-radius: var(--sotedu-radius);
	padding: 4px 22px;
}
.sotedu-faq__item[open] { border-color: var(--sotedu-ocean); }
.sotedu-faq__q {
	cursor: pointer;
	font: 600 16px/1.4 system-ui, sans-serif;
	padding: 16px 0;
	list-style: none;
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.sotedu-faq__q::-webkit-details-marker { display: none; }
.sotedu-faq__chevron { transition: transform .2s ease; font-size: 22px; line-height: 1; }
.sotedu-faq__item[open] .sotedu-faq__chevron { transform: rotate(180deg); }
.sotedu-faq__a { padding: 0 0 18px; color: var(--sotedu-ink-soft); font: 400 15px/1.6 system-ui, sans-serif; }
.sotedu-faq__a p:last-child { margin-bottom: 0; }

/* ---------- Logos ---------- */
.sotedu-logos { padding: 40px 0; }
.sotedu-logos__title { text-align: center; font: 600 13px/1 system-ui, sans-serif; letter-spacing: 0.10em;
	text-transform: uppercase; color: var(--sotedu-ink-soft); margin: 0 0 20px; }
.sotedu-logos__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 36px; }
.sotedu-logos__cell img { max-height: 44px; width: auto; opacity: 0.75; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.sotedu-logos__cell img:hover { opacity: 1; filter: none; }

/* ---------- Plans ---------- */
.sotedu-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sotedu-plan { position: relative; background: var(--sotedu-paper); border: 1px solid var(--sotedu-line);
	border-radius: var(--sotedu-radius-lg); padding: 32px 28px; display: flex; flex-direction: column; }
.sotedu-plan h3 { font: 700 22px/1.2 system-ui, sans-serif; margin: 0; }
.sotedu-plan__price { margin: 12px 0 18px; font: 800 36px/1 system-ui, sans-serif; color: var(--sotedu-ocean); }
.sotedu-plan__price small { display: block; font: 400 14px/1.4 system-ui, sans-serif; color: var(--sotedu-ink-soft); margin-top: 6px; }
.sotedu-plan__list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; flex: 1; }
.sotedu-plan__list li { padding-left: 22px; position: relative; font-size: 15px; line-height: 1.5; }
.sotedu-plan__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--sotedu-forest); font-weight: 700; }
.sotedu-plan--featured { border-color: var(--sotedu-ocean); box-shadow: var(--sotedu-shadow-md); }
.sotedu-plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
	background: var(--sotedu-ocean); color: #fff; padding: 5px 12px; border-radius: 999px;
	font: 600 11px/1 system-ui, sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
.sotedu-plans__footnote { text-align: center; color: var(--sotedu-ink-soft); margin-top: 28px; font-size: 14px; }

/* ---------- Stats ---------- */
.sotedu-stats { padding: 60px 0; color: #fff; }
.sotedu-stats__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sotedu-stats__cell { text-align: center; padding: 16px; }
.sotedu-stats__value { font: 800 48px/1 system-ui, sans-serif; letter-spacing: -0.03em; }
.sotedu-stats__value small { font-size: 22px; font-weight: 600; opacity: 0.8; margin-left: 4px; }
.sotedu-stats__label { margin-top: 8px; font-size: 14px; opacity: 0.85; }

/* ---------- Testimonial ---------- */
.sotedu-testimonial__container { max-width: 820px; }
.sotedu-testimonial { margin: 0; }
.sotedu-testimonial__quote {
	font: 400 24px/1.45 system-ui, sans-serif;
	color: var(--sotedu-ink);
	margin: 0 0 20px;
	padding: 0;
	border: none;
}
.sotedu-testimonial__quote p { margin: 0 0 12px; }
.sotedu-testimonial__quote p:last-child { margin: 0; }
.sotedu-testimonial__cite { display: flex; align-items: center; gap: 14px; font-style: normal; }
.sotedu-testimonial__avatar img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.sotedu-testimonial__person { display: flex; flex-direction: column; }
.sotedu-testimonial__person strong { font-weight: 700; }
.sotedu-testimonial__person small { color: var(--sotedu-ink-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.sotedu-hero { padding: 64px 0 56px; }
	.sotedu-hero__grid { grid-template-columns: 1fr; gap: 36px; }
	.sotedu-hero__title { font-size: 40px; }
	.sotedu-section { padding: 56px 0; }
	.sotedu-section__title { font-size: 30px; }
	.sotedu-grid--cols-3,
	.sotedu-grid--cols-4,
	.sotedu-grid--cols-6,
	.sotedu-features--cols-3,
	.sotedu-features--cols-4 { grid-template-columns: repeat(2, 1fr); }
	.sotedu-audience__grid { grid-template-columns: repeat(2, 1fr); }
	.sotedu-modules { grid-template-columns: repeat(2, 1fr); }
	.sotedu-plans  { grid-template-columns: 1fr; }
	.sotedu-stats__row { grid-template-columns: repeat(2, 1fr); }
	.sotedu-cta__inner { grid-template-columns: 1fr; padding: 32px 28px; }
	.sotedu-section--split .sotedu-section__split { grid-template-columns: 1fr; gap: 32px; }
	.sotedu-section--illustration-left .sotedu-section__split { direction: ltr; }
}

@media (max-width: 600px) {
	.sotedu-marketing .sotedu-container { padding: 0 18px; }
	.sotedu-hero__title { font-size: 32px; }
	.sotedu-hero__subtitle { font-size: 17px; }
	.sotedu-section__title { font-size: 26px; }
	.sotedu-grid--cols-2,
	.sotedu-grid--cols-3,
	.sotedu-grid--cols-4,
	.sotedu-grid--cols-6,
	.sotedu-features--cols-2,
	.sotedu-features--cols-3,
	.sotedu-features--cols-4 { grid-template-columns: 1fr; }
	.sotedu-audience__grid { grid-template-columns: repeat(2, 1fr); }
	/* Cards have horizontal icon+text layout, so 1-col on phone keeps icons readable. */
	.sotedu-modules { grid-template-columns: 1fr; }
	/* Shrink the icon a touch on phone to give the text more room. */
	.sotedu-module__icon,
	.sotedu-module__icon--image { width: 80px; height: 80px; font-size: 48px; }
	.sotedu-stats__row { grid-template-columns: 1fr 1fr; }
	.sotedu-stats__value { font-size: 36px; }
}

/* ============================================================
 * [sotedu_features] — 2030-modern, eSkooly-inspired centered cards
 * ============================================================
 * Every card centres its icon, title and body. Cards stretch to the
 * tallest sibling in the row so they always end on the same baseline.
 * Hover lift + soft shadow. The gradient top stripe shows only on hover
 * to keep the resting state clean (eSkooly look) rather than busy.
 * Tone rotation gives a row of three visual rhythm without any markup
 * change. Audit + design: image-assets/feature-block-illustrations.md
 */
.sotedu-features { align-items: stretch; }

.sotedu-feature {
	position: relative;
	overflow: hidden;
	padding: 40px 28px 32px;
	background: var(--sotedu-paper);
	border: 1px solid rgba(15, 33, 43, 0.07);
	border-radius: 20px;
	box-shadow:
		0 1px 0 rgba(15, 33, 43, 0.03),
		0 8px 20px -12px rgba(10, 77, 110, 0.06);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
	transition: transform .25s cubic-bezier(.2,.8,.2,1),
	            box-shadow .25s cubic-bezier(.2,.8,.2,1),
	            border-color .25s ease;
}
.sotedu-feature::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sotedu-ocean) 0%, var(--sotedu-forest) 100%);
	opacity: 0;
	transition: opacity .25s ease;
}
.sotedu-feature:hover {
	transform: translateY(-4px);
	border-color: rgba(10, 77, 110, 0.18);
	box-shadow:
		0 1px 0 rgba(15, 33, 43, 0.03),
		0 18px 36px -16px rgba(10, 77, 110, 0.20),
		0 6px 14px -10px rgba(31, 90, 54, 0.10);
}
.sotedu-feature:hover::before { opacity: 1; }

/* Circular icon pod — centred, works for emoji AND image variants */
.sotedu-feature__icon,
.sotedu-feature__media--icon {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--sotedu-sand);
	color: var(--sotedu-ocean);
	font-size: 36px;
	line-height: 1;
	margin: 0 auto 20px;
	box-shadow: inset 0 0 0 1px rgba(15, 33, 43, 0.05);
}
.sotedu-feature__media--icon img {
	width: 46px;
	height: 46px;
	object-fit: contain;
	display: block;
}

/* Title + body — centred, tighter tracking, generous line-height */
.sotedu-feature__title {
	text-align: center;
	font: 700 19px/1.3 system-ui, sans-serif;
	letter-spacing: -0.01em;
	margin: 0 0 10px;
	color: var(--sotedu-ink);
}
.sotedu-feature__body {
	text-align: center;
	font: 400 15px/1.55 system-ui, sans-serif;
	color: var(--sotedu-ink-soft);
	margin: 0;
	max-width: 30ch;
}
.sotedu-feature__body p:last-child { margin-bottom: 0; }
.sotedu-feature__cta { margin-top: 18px; text-align: center; }

/* Tone rotation — three pod tints rotating per row */
.sotedu-features .sotedu-feature:nth-child(3n+1) .sotedu-feature__icon,
.sotedu-features .sotedu-feature:nth-child(3n+1) .sotedu-feature__media--icon { background: var(--sotedu-sand); }
.sotedu-features .sotedu-feature:nth-child(3n+2) .sotedu-feature__icon,
.sotedu-features .sotedu-feature:nth-child(3n+2) .sotedu-feature__media--icon { background: rgba(10, 77, 110, 0.10); }
.sotedu-features .sotedu-feature:nth-child(3n+3) .sotedu-feature__icon,
.sotedu-features .sotedu-feature:nth-child(3n+3) .sotedu-feature__media--icon { background: rgba(31, 90, 54, 0.10); }

/* Ocean / forest hero washes — invert the pod */
.sotedu-bg--ocean .sotedu-feature__icon,
.sotedu-bg--forest .sotedu-feature__icon,
.sotedu-bg--ocean .sotedu-feature__media--icon,
.sotedu-bg--forest .sotedu-feature__media--icon {
	background: rgba(255,255,255,0.14);
	color: #fff;
}

/* Tablet fallback for 3-card cols-3: last card spans 2 cols to avoid blank cell */
@media (max-width: 980px) {
	.sotedu-features--cols-3 .sotedu-feature:nth-child(3):nth-last-child(1) {
		grid-column: span 2;
	}
}

/* ============================================================
 * Eyebrow pill — eSkooly-style filled badge on light sections
 * ============================================================ */
.sotedu-bg--white .sotedu-eyebrow,
.sotedu-bg--light .sotedu-eyebrow,
.sotedu-bg--sand  .sotedu-eyebrow {
	background: var(--sotedu-ocean);
	color: #fff;
	padding: 8px 16px;
	font-size: 11px;
	letter-spacing: 0.14em;
	box-shadow: 0 4px 10px -4px rgba(10, 77, 110, 0.4);
}

/* Section title gets a tighter 2030 feel — same on all sections */
.sotedu-section__title {
	letter-spacing: -0.025em;
}
