/**
 * Schools landing (/schools) — page-scoped styles.
 *
 * Hand-written and self-contained (not Tailwind utilities): the theme's
 * precompiled tailwind.min.css only carries classes present at build time, so
 * new utilities would silently no-op. Everything is scoped under
 * .schools-landing to avoid leaking into the rest of the theme.
 *
 * Palette matches the main robonine.com site: monochrome black / white / gray
 * (black buttons, gray-50 cards with gray-100 borders, black dark sections),
 * Space Grotesk for display and Manrope for body — both already loaded.
 *
 * @package Robo9
 */

.schools-landing {
	--sl-black: #000000;
	--sl-ink: #111111;
	--sl-dark: #0a0a0a;
	--sl-muted: #6b7280; /* gray-500 */
	--sl-line: #f3f4f6; /* gray-100 — card borders */
	--sl-line-strong: #e5e7eb; /* gray-200 — dividers */
	--sl-bg-soft: #f9fafb; /* gray-50 */
	--sl-white: #ffffff;
	--sl-on-dark: rgba(255, 255, 255, 0.72);
	--sl-on-dark-soft: rgba(255, 255, 255, 0.55);

	--sl-maxw: 1280px;
	--sl-radius: 4px;
	--sl-shadow: 0 18px 50px -28px rgba(0, 0, 0, 0.35);

	font-family: "Manrope", system-ui, sans-serif;
	color: var(--sl-ink);
	background: var(--sl-white);
	line-height: 1.55;
}

.schools-landing * {
	box-sizing: border-box;
}

/* ---- Layout primitives ---------------------------------------------------- */

.sl-container {
	width: 100%;
	max-width: var(--sl-maxw);
	margin: 0 auto;
	padding-inline: 24px;
}

.sl-section {
	padding-block: clamp(48px, 7vw, 80px);
}

.sl-section--soft {
	background: var(--sl-bg-soft);
}

/* Dark sections — matches the homepage's black CTA band. */
.sl-section--navy {
	background: var(--sl-black);
	color: var(--sl-white);
}

.sl-eyebrow {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sl-muted);
	margin: 0 0 14px;
}

.sl-section--navy .sl-eyebrow {
	color: #9ca3af; /* gray-400 */
}

.sl-h2 {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: clamp(1.75rem, 3.4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.01em;
	margin: 0 0 16px;
	color: var(--sl-black);
}

.sl-section--navy .sl-h2 {
	color: var(--sl-white);
}

.sl-lead {
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	color: var(--sl-muted);
	max-width: 60ch;
	margin: 0;
}

.sl-section--navy .sl-lead {
	color: var(--sl-on-dark);
}

.sl-section-head {
	max-width: 720px;
	margin-bottom: clamp(32px, 4vw, 48px);
}

/* ---- Buttons -------------------------------------------------------------- */

.sl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 48px;
	padding: 0 28px;
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: var(--sl-radius);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* Default (light backgrounds): solid black button. */
.sl-btn--primary {
	background: var(--sl-black);
	color: var(--sl-white);
	border-color: var(--sl-black);
}

.sl-btn--primary:hover {
	background: #1f1f1f;
	border-color: #1f1f1f;
}

.sl-btn--secondary {
	background: transparent;
	color: var(--sl-black);
	border-color: var(--sl-line-strong);
}

.sl-btn--secondary:hover {
	border-color: var(--sl-black);
}

/* On dark sections the solid button inverts to white-on-black. */
.sl-section--navy .sl-btn--primary {
	background: var(--sl-white);
	color: var(--sl-black);
	border-color: var(--sl-white);
}

.sl-section--navy .sl-btn--primary:hover {
	background: #e5e7eb;
	border-color: #e5e7eb;
}

.sl-section--navy .sl-btn--secondary {
	color: var(--sl-white);
	border-color: rgba(255, 255, 255, 0.4);
}

.sl-section--navy .sl-btn--secondary:hover {
	border-color: var(--sl-white);
}

/* ---- Cards & placeholders ------------------------------------------------- */

.sl-card {
	background: var(--sl-bg-soft);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius);
	padding: 28px;
}

.sl-grid {
	display: grid;
	gap: 24px;
}

/* Image placeholder that names the shot we still need (per brief). */
.sl-shot {
	position: relative;
	display: flex;
	align-items: flex-end;
	border-radius: var(--sl-radius);
	overflow: hidden;
	background: linear-gradient(135deg, #1a1a1a, #000000);
	color: rgba(255, 255, 255, 0.82);
	min-height: 240px;
}

.sl-shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sl-shot__note {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 16px 18px;
	font-size: 0.8rem;
	letter-spacing: 0.02em;
}

.sl-shot__note::before {
	content: "\1F4F7  ";
}

@media (prefers-reduced-motion: reduce) {
	.schools-landing * {
		transition: none !important;
	}
}

/* ==========================================================================
   §1 Hero + trust strip
   ========================================================================== */

.sl-hero {
	background: linear-gradient(180deg, #000000 0%, #0c0c0c 100%);
	padding-block: clamp(56px, 8vw, 96px) clamp(28px, 4vw, 40px);
}

.sl-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.sl-hero__title {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: clamp(2.1rem, 5vw, 3.4rem);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.02em;
	margin: 0 0 20px;
	color: var(--sl-white);
}

.sl-hero__sub {
	font-size: clamp(1.02rem, 1.5vw, 1.18rem);
	color: var(--sl-on-dark);
	max-width: 46ch;
	margin: 0 0 32px;
}

.sl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.sl-hero__shot {
	min-height: 340px;
	background: var(--sl-white);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--sl-shadow);
}

.sl-hero__shot img {
	object-fit: contain;
	background: var(--sl-white);
	padding: 12px;
}

.sl-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 36px;
	list-style: none;
	margin: clamp(36px, 5vw, 56px) 0 0;
	padding: 22px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.sl-trust__item {
	position: relative;
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 0.92rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.86);
	padding-left: 22px;
}

.sl-trust__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sl-white);
	transform: translateY(-50%);
}

@media (max-width: 860px) {
	.sl-hero__grid {
		grid-template-columns: 1fr;
	}
	.sl-hero__media {
		order: -1;
	}
}

/* ==========================================================================
   §2 Two motives
   ========================================================================== */

.sl-motives {
	grid-template-columns: repeat(2, 1fr);
}

.sl-motive {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius);
	overflow: hidden;
	background: var(--sl-white);
}

.sl-motive__shot {
	min-height: 260px;
	border-radius: 0;
	background: var(--sl-bg-soft);
}

.sl-motive__shot img {
	background: var(--sl-bg-soft);
	object-fit: contain;
	padding: 18px;
}

.sl-motive__body {
	padding: 26px 28px 30px;
}

.sl-motive__title {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--sl-black);
}

.sl-motive__line {
	margin: 0;
	color: var(--sl-muted);
	font-size: 1rem;
}

/* ==========================================================================
   §3 Student experience strip
   ========================================================================== */

.sl-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.sl-step {
	position: relative;
	padding: 26px 20px;
	background: var(--sl-white);
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius);
}

.sl-step:not(:last-child)::after {
	content: "\2192";
	position: absolute;
	right: -14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--sl-black);
	font-size: 1.1rem;
	font-weight: 700;
	z-index: 1;
}

.sl-step__n {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--sl-black);
	letter-spacing: 0.04em;
}

.sl-step__title {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 1.08rem;
	font-weight: 700;
	margin: 8px 0 6px;
	color: var(--sl-black);
}

.sl-step__desc {
	margin: 0;
	font-size: 0.9rem;
	color: var(--sl-muted);
}

/* Real course-module grid below the abstract step strip. */
.sl-curriculum {
	margin: 36px 0 0;
}

.sl-curriculum__shot {
	display: block;
	border-radius: var(--sl-radius);
	overflow: hidden;
	border: 1px solid var(--sl-line-strong);
	background: var(--sl-white);
}

.sl-curriculum__shot img {
	width: 100%;
	height: auto;
	display: block;
}

.sl-curriculum__cap {
	margin: 12px 0 0;
	font-size: 0.88rem;
	color: var(--sl-muted);
	text-align: center;
}

/* ==========================================================================
   §4 Differentiation
   ========================================================================== */

.sl-diff {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.sl-diff__list {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	display: grid;
	gap: 22px;
}

.sl-diff__item {
	position: relative;
	padding-left: 26px;
}

.sl-diff__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 11px;
	height: 11px;
	background: var(--sl-black);
}

.sl-diff__title {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 6px;
	color: var(--sl-black);
}

.sl-diff__desc {
	margin: 0;
	color: var(--sl-muted);
	font-size: 0.98rem;
}

.sl-diff__shot {
	min-height: 320px;
	background: var(--sl-bg-soft);
	border: 1px solid var(--sl-line-strong);
	align-items: center;
}

/* dashboard is a screenshot — frame it, don't crop it */
.sl-diff__shot img {
	object-fit: contain;
	padding: 18px;
}

/* ==========================================================================
   §5 Careers
   ========================================================================== */

.sl-careers {
	grid-template-columns: repeat(3, 1fr);
}

.sl-career {
	display: flex;
	flex-direction: column;
	border-top: 3px solid var(--sl-black);
}

.sl-career__role {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--sl-black);
}

.sl-career__skill {
	margin: 0 0 18px;
	color: var(--sl-muted);
	font-size: 0.96rem;
	flex-grow: 1;
}

.sl-career__employers {
	list-style: none;
	margin: 0;
	padding: 16px 0 0;
	border-top: 1px solid var(--sl-line-strong);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sl-career__employers li {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--sl-black);
	background: var(--sl-white);
	border: 1px solid var(--sl-line-strong);
	border-radius: 999px;
	padding: 5px 12px;
}

/* ==========================================================================
   §6 Offer
   ========================================================================== */

.sl-offer {
	grid-template-columns: repeat(3, 1fr);
}

.sl-offer__card {
	display: flex;
	flex-direction: column;
	position: relative;
	padding-top: 30px;
	background: var(--sl-white);
	border: 1px solid var(--sl-line-strong);
}

.sl-offer__n {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--sl-black);
	letter-spacing: 0.06em;
}

.sl-offer__title {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 1.12rem;
	font-weight: 700;
	margin: 10px 0 8px;
	color: var(--sl-black);
}

.sl-offer__desc {
	margin: 0;
	font-size: 0.94rem;
	color: var(--sl-muted);
}

.sl-derisk {
	margin: clamp(28px, 4vw, 40px) 0 0;
	padding: 20px 24px;
	background: var(--sl-white);
	border: 1px solid var(--sl-line-strong);
	border-left: 4px solid var(--sl-black);
	border-radius: var(--sl-radius);
	font-size: 1rem;
	color: var(--sl-ink);
}

.sl-derisk strong {
	color: var(--sl-black);
}

/* ==========================================================================
   §7 Pilot timeline
   ========================================================================== */

.sl-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	position: relative;
}

.sl-tl {
	position: relative;
	padding-top: 56px;
}

.sl-tl::before {
	content: "";
	position: absolute;
	top: 19px;
	left: 40px;
	right: -20px;
	height: 2px;
	background: var(--sl-line-strong);
}

.sl-tl:last-child::before {
	display: none;
}

.sl-tl__dot {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--sl-black);
	color: var(--sl-white);
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-weight: 700;
	z-index: 1;
}

.sl-tl__title {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 6px;
	color: var(--sl-black);
}

.sl-tl__desc {
	margin: 0;
	font-size: 0.9rem;
	color: var(--sl-muted);
}

/* ==========================================================================
   §8 Pricing
   ========================================================================== */

.sl-pricing {
	display: grid;
	grid-template-columns: 1.4fr 0.9fr;
	gap: 28px;
	align-items: start;
}

.sl-pricing__list {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid var(--sl-line-strong);
	border-radius: var(--sl-radius);
	overflow: hidden;
}

.sl-pricing__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 24px;
	border-bottom: 1px solid var(--sl-line-strong);
}

.sl-pricing__row:last-child {
	border-bottom: 0;
}

.sl-pricing__label {
	display: block;
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-weight: 700;
	font-size: 1.02rem;
	color: var(--sl-black);
}

.sl-pricing__note {
	display: block;
	font-size: 0.86rem;
	color: var(--sl-muted);
	margin-top: 2px;
}

.sl-pricing__price {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--sl-black);
	white-space: nowrap;
}

.sl-pricing__total {
	background: var(--sl-black);
	color: var(--sl-white);
	border-radius: var(--sl-radius);
	padding: 30px 28px;
}

.sl-pricing__total .sl-eyebrow {
	color: #9ca3af;
}

.sl-pricing__msg {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: clamp(1.25rem, 2.2vw, 1.6rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 6px 0 14px;
	color: var(--sl-white);
}

.sl-pricing__fine {
	margin: 0 0 24px;
	font-size: 0.9rem;
	color: var(--sl-on-dark-soft);
}

.sl-pricing__cta {
	width: 100%;
}

/* white button on the black price card */
.sl-pricing__total .sl-btn--primary {
	background: var(--sl-white);
	color: var(--sl-black);
	border-color: var(--sl-white);
}

.sl-pricing__total .sl-btn--primary:hover {
	background: #e5e7eb;
	border-color: #e5e7eb;
}

/* ==========================================================================
   §9 FAQ accordion
   ========================================================================== */

.sl-faq {
	max-width: 820px;
	border: 1px solid var(--sl-line-strong);
	border-radius: var(--sl-radius);
	overflow: hidden;
	background: var(--sl-white);
}

.sl-faq__item {
	border-bottom: 1px solid var(--sl-line-strong);
}

.sl-faq__item:last-child {
	border-bottom: 0;
}

.sl-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	list-style: none;
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-weight: 700;
	font-size: 1.04rem;
	color: var(--sl-black);
}

.sl-faq__q::-webkit-details-marker {
	display: none;
}

.sl-faq__icon {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}

.sl-faq__icon::before,
.sl-faq__icon::after {
	content: "";
	position: absolute;
	background: var(--sl-black);
	transition: transform 0.2s ease;
}

.sl-faq__icon::before {
	top: 8px;
	left: 0;
	width: 18px;
	height: 2px;
}

.sl-faq__icon::after {
	top: 0;
	left: 8px;
	width: 2px;
	height: 18px;
}

.sl-faq__item[open] .sl-faq__icon::after {
	transform: scaleY(0);
}

.sl-faq__a {
	margin: 0;
	padding: 0 24px 22px;
	color: var(--sl-muted);
	font-size: 0.98rem;
	max-width: 70ch;
}

/* ==========================================================================
   §10 Trust / ecosystem
   ========================================================================== */

.sl-trustcards {
	grid-template-columns: repeat(3, 1fr);
}

.sl-trustcard {
	padding: 26px;
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius);
	background: var(--sl-bg-soft);
}

.sl-trustcard__title {
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-size: 1.12rem;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--sl-black);
}

.sl-trustcard__desc {
	margin: 0;
	color: var(--sl-muted);
	font-size: 0.96rem;
}

.sl-trust__foot {
	margin: clamp(24px, 3vw, 36px) 0 0;
	font-size: 0.9rem;
	color: var(--sl-muted);
}

/* ==========================================================================
   §11 Segments
   ========================================================================== */

.sl-segments {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.sl-segment__link {
	display: inline-flex;
	align-items: center;
	padding: 12px 20px;
	border: 1px solid var(--sl-line-strong);
	border-radius: 999px;
	font-family: "Space Grotesk", "Manrope", sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--sl-black);
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.sl-segment__link:hover {
	background: var(--sl-black);
	border-color: var(--sl-black);
	color: var(--sl-white);
}

/* ==========================================================================
   §12 Final CTA + lead form
   ========================================================================== */

.sl-cta {
	background: linear-gradient(180deg, #0c0c0c 0%, #000000 100%);
}

.sl-cta__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.sl-cta__contact {
	margin: 22px 0 0;
	color: var(--sl-on-dark);
}

.sl-cta__contact a {
	color: var(--sl-white);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.sl-cta__formwrap {
	background: var(--sl-white);
	border-radius: var(--sl-radius);
	padding: clamp(22px, 3vw, 32px);
	box-shadow: var(--sl-shadow);
}

.sl-form {
	display: grid;
	gap: 16px;
}

.sl-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.sl-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sl-field__label {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--sl-ink);
}

.sl-field input,
.sl-field textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 0.98rem;
	color: var(--sl-ink);
	background: var(--sl-bg-soft);
	border: 1px solid var(--sl-line-strong);
	border-radius: var(--sl-radius);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.sl-field input:focus,
.sl-field textarea:focus {
	outline: none;
	border-color: var(--sl-black);
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
	background: var(--sl-white);
}

.sl-field textarea {
	resize: vertical;
	min-height: 96px;
}

/* the form sits on a white card inside the dark CTA → keep the black button */
.sl-cta__formwrap .sl-btn--primary {
	background: var(--sl-black);
	color: var(--sl-white);
	border-color: var(--sl-black);
}

.sl-cta__formwrap .sl-btn--primary:hover {
	background: #1f1f1f;
	border-color: #1f1f1f;
}

.sl-form__submit {
	justify-self: start;
	margin-top: 4px;
}

.sl-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.sl-formnote {
	margin: 0 0 16px;
	padding: 12px 16px;
	border-radius: var(--sl-radius);
	font-size: 0.92rem;
	font-weight: 600;
}

.sl-formnote--ok {
	background: #f3f4f6;
	color: #111111;
	border: 1px solid #d1d5db;
	border-left: 4px solid #000000;
}

.sl-formnote--err {
	background: #fcecec;
	color: #a32626;
	border: 1px solid #f1c4c4;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1000px) {
	.sl-offer {
		grid-template-columns: repeat(2, 1fr);
	}
	.sl-timeline {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.sl-tl {
		padding: 0 0 28px 60px;
		min-height: 56px;
	}
	.sl-tl::before {
		top: 40px;
		bottom: -4px;
		left: 19px;
		right: auto;
		width: 2px;
		height: auto;
	}
}

@media (max-width: 900px) {
	.sl-motives {
		grid-template-columns: 1fr;
	}
	.sl-steps {
		grid-template-columns: repeat(2, 1fr);
	}
	.sl-step:not(:last-child)::after {
		display: none;
	}
	.sl-diff {
		grid-template-columns: 1fr;
	}
	.sl-careers {
		grid-template-columns: 1fr;
	}
	.sl-trustcards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 880px) {
	.sl-pricing {
		grid-template-columns: 1fr;
	}
	.sl-cta__grid {
		grid-template-columns: 1fr;
	}
	.sl-form__row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.sl-offer {
		grid-template-columns: 1fr;
	}
	.sl-steps {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Polish & accessibility
   ========================================================================== */

/* The theme auto-attaches intl-tel-input to tel inputs; keep its wrapper
   full-width so the phone field matches the others and the flag has room. */
.sl-field .iti {
	display: block;
	width: 100%;
}

.sl-field .iti > input[type="tel"] {
	padding-left: 52px;
}

/* The form card sits inside the dark CTA section, so the inline
   intl-tel-input dropdown inherits white text and becomes unreadable on its
   white panel. Force dark, readable colours on every dropdown element. */
.schools-landing .iti__dropdown-content {
	color: var(--sl-ink);
	background: var(--sl-white);
	border: 1px solid var(--sl-line-strong);
	border-radius: var(--sl-radius);
	box-shadow: var(--sl-shadow);
}

.schools-landing .iti__search-input {
	color: var(--sl-ink);
	background: var(--sl-white);
	border-bottom: 1px solid var(--sl-line-strong);
}

.schools-landing .iti__search-input::placeholder {
	color: var(--sl-muted);
}

.schools-landing .iti__country,
.schools-landing .iti__country-name {
	color: var(--sl-ink);
}

.schools-landing .iti__dial-code {
	color: var(--sl-muted);
}

.schools-landing .iti__country.iti__highlight,
.schools-landing .iti__country:hover {
	background: var(--sl-bg-soft);
}

/* The selected-country button (flag + dial code) shown in the field itself. */
.schools-landing .iti__selected-country,
.schools-landing .iti__selected-country-primary,
.schools-landing .iti__selected-dial-code,
.schools-landing .iso-code-label {
	color: var(--sl-ink);
}

/* Visible keyboard focus on all interactive elements. */
.schools-landing a:focus-visible,
.schools-landing button:focus-visible,
.schools-landing summary:focus-visible,
.schools-landing input:focus-visible,
.schools-landing textarea:focus-visible {
	outline: 2px solid var(--sl-black);
	outline-offset: 2px;
}

.sl-section--navy a:focus-visible,
.sl-section--navy button:focus-visible,
.sl-section--navy summary:focus-visible {
	outline-color: var(--sl-white);
}
