﻿/*
Theme Name: ALM Madeira
Theme URI: http://localhost/alm
Description: Child theme moderno para a Academia de Linguas da Madeira.
Author: ALM
Template: hello-elementor
Version: 1.0.1
Text Domain: alm-madeira
*/

:root {
	--alm-ink: #102033;
	--alm-text: #4b5d6b;
	--alm-muted: #8795a3;
	--alm-line: #dbe7e5;
	--alm-paper: #f4f8f7;
	--alm-orange: #114a8a;
	--alm-blue: #176b87;
	--alm-teal: #18b79f;
	--alm-gold: #f4b63f;
	--alm-footer: #0b1f2a;
	--alm-surface: #ffffff;
	--alm-surface-soft: #f9fcfb;
	--alm-coral-soft: #fff1eb;
	--alm-teal-soft: #e8fbf7;
	--alm-shadow-soft: 0 18px 52px rgba(16, 32, 51, 0.07);
	--alm-shadow-lift: 0 28px 78px rgba(16, 32, 51, 0.13);
	--alm-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--alm-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top right, rgba(17, 74, 138, 0.08), transparent 30rem),
		radial-gradient(circle at top left, rgba(24, 183, 159, 0.08), transparent 34rem),
		linear-gradient(180deg, #f8fbfa 0%, var(--alm-paper) 42rem);
	color: var(--alm-text);
	font-family: var(--alm-sans);
}

a {
	color: inherit;
	text-decoration: none;
}

.alm-page {
	overflow-x: hidden;
	background: var(--alm-paper);
}

.alm-shell {
	width: min(1220px, calc(100% - 48px));
	margin: 0 auto;
}

.alm-header .alm-shell {
	width: min(1380px, calc(100% - 32px));
}

.alm-header {
	position: fixed;
	z-index: 80;
	top: 0;
	right: 0;
	left: 0;
	border-bottom: 1px solid rgba(23, 107, 135, 0.11);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86));
	backdrop-filter: blur(22px);
	box-shadow: 0 18px 54px rgba(16, 32, 51, 0.08);
}

.alm-header__inner {
	display: grid;
	grid-template-columns: minmax(150px, 0.75fr) minmax(0, auto) minmax(260px, 0.9fr);
	min-height: 76px;
	align-items: center;
	gap: 18px;
}

.alm-brand,
.alm-footer h2,
.alm-footer-brand {
	font-family: var(--alm-serif);
	color: var(--alm-ink);
	font-size: 25px;
	font-weight: 650;
	letter-spacing: -0.03em;
	white-space: nowrap;
}

.alm-brand span,
.alm-footer h2 span,
.alm-footer-brand span {
	color: var(--alm-orange);
	font-style: italic;
	font-weight: 700;
}

.alm-brand--logo {
	display: inline-flex;
	align-items: center;
}

.alm-brand--logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.alm-brand--logo .custom-logo {
	display: block;
	width: auto;
	max-width: 210px;
	max-height: 58px;
	object-fit: contain;
}

.alm-footer-brand {
	display: inline-flex;
	margin: 0 0 24px;
	color: #fff;
	text-decoration: none;
}

.alm-footer-brand--logo {
	display: inline-flex;
	align-items: center;
	margin: 0 0 24px;
}

.alm-footer-brand--logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.alm-footer-brand--logo .custom-logo {
	display: block;
	width: auto;
	max-width: 230px;
	max-height: 76px;
	object-fit: contain;
}

.alm-nav,
.alm-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #505a70;
	font-size: 14px;
	font-weight: 800;
}

.alm-nav {
	padding: 6px;
	border: 1px solid rgba(23, 107, 135, 0.14);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 247, 0.82));
}

.alm-nav a,
.alm-menu a {
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	padding: 0 14px;
	border-radius: 999px;
	color: #435369;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background 180ms ease,
		color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.alm-nav a:hover,
.alm-nav a:focus {
	background: #fff;
	color: var(--alm-blue);
	box-shadow: 0 8px 22px rgba(16, 32, 51, 0.08);
}

.alm-menu .menu-item-has-children {
	position: relative;
}

.alm-menu .menu-item-has-children::after {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	height: 12px;
	content: "";
}

.alm-menu .sub-menu {
	position: absolute;
	z-index: 90;
	top: calc(100% + 10px);
	left: 50%;
	display: grid;
	min-width: 190px;
	margin: 0;
	padding: 8px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(17, 22, 32, 0.14);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) translateY(6px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.alm-menu .menu-item-has-children:hover > .sub-menu,
.alm-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.alm-menu .sub-menu a {
	width: 100%;
	justify-content: flex-start;
	border-radius: 6px;
}

.alm-nav .is-active,
.alm-nav .current-menu-item > a,
.alm-nav .current_page_item > a {
	background: linear-gradient(135deg, var(--alm-ink), var(--alm-blue));
	color: #fff;
	box-shadow: 0 10px 26px rgba(23, 107, 135, 0.2);
}

.alm-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	min-width: 0;
}

.alm-lang {
	display: inline-flex;
	align-items: center;
	padding: 0;
	color: #657085;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.alm-student-icon {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(8, 13, 26, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--alm-blue);
	box-shadow: 0 10px 26px rgba(16, 32, 51, 0.07);
	transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.alm-student-icon svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.alm-student-icon:hover,
.alm-student-icon:focus {
	background: #fff;
	color: var(--alm-orange);
	box-shadow: 0 14px 34px rgba(16, 32, 51, 0.12);
	transform: translateY(-1px);
}

.alm-language-switcher {
	position: relative;
}

.alm-language-switcher__button {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	gap: 7px;
	padding: 0 10px;
	border: 1px solid rgba(8, 13, 26, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.68);
	color: #3f4a5f;
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	cursor: pointer;
}

.alm-language-switcher__button span {
	display: grid;
	text-align: left;
	line-height: 1.05;
}

.alm-language-switcher__button strong {
	font-size: 12px;
	font-weight: 900;
}

.alm-language-switcher__button::after {
	width: 0;
	height: 0;
	border-top: 4px solid currentColor;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	content: "";
	opacity: 0.72;
}

.alm-language-switcher img {
	display: block;
	width: 18px;
	height: 12px;
	border-radius: 2px;
	object-fit: cover;
	box-shadow: 0 0 0 1px rgba(8, 13, 26, 0.1);
}

.alm-language-switcher__list {
	position: absolute;
	z-index: 120;
	top: calc(100% + 10px);
	right: 0;
	display: grid;
	min-width: 96px;
	margin: 0;
	padding: 7px;
	border: 1px solid rgba(8, 13, 26, 0.1);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(17, 22, 32, 0.14);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.alm-language-switcher.is-open .alm-language-switcher__list {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.alm-language-switcher__list a {
	display: grid;
	grid-template-columns: 18px 1fr;
	align-items: center;
	gap: 8px;
	padding: 9px 10px;
	border-radius: 6px;
	color: #3f4a5f;
	font-size: 13px;
	font-weight: 800;
	text-transform: none;
}

.alm-language-switcher__list a:hover,
.alm-language-switcher__list a:focus,
.alm-language-switcher__list a.is-active {
	background: rgba(17, 74, 138, 0.08);
	color: var(--alm-orange);
}

.alm-lang ul {
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.alm-lang a,
.alm-lang span {
	color: inherit;
}

.alm-button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: 999px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
		linear-gradient(135deg, #0b315f, #114a8a 58%, #1c6fc2);
	box-shadow: 0 14px 34px rgba(17, 74, 138, 0.28);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transition: background 180ms ease, transform 180ms ease;
}

.alm-button:hover,
.alm-button:focus {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
		linear-gradient(135deg, #08294f, #114a8a 56%, #2a7fd4);
	color: #fff;
	box-shadow: 0 18px 44px rgba(17, 74, 138, 0.38);
	transform: translateY(-2px);
}

.alm-button--ghost {
	background: rgba(255, 255, 255, 0.78);
	border-color: rgba(23, 107, 135, 0.16);
	color: var(--alm-ink);
	box-shadow: 0 12px 34px rgba(16, 32, 51, 0.08);
}

.alm-button--ghost:hover,
.alm-button--ghost:focus {
	background: #fff;
	color: var(--alm-blue);
}

.alm-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	border: 1px solid rgba(8, 13, 26, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.58);
	color: var(--alm-ink);
}

.alm-menu-toggle span,
.alm-menu-toggle::before,
.alm-menu-toggle::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	content: "";
}

.alm-hero {
	position: relative;
	min-height: 92vh;
	border: 0;
	border-radius: 0 0 28px 28px;
	overflow: hidden;
	background:
		radial-gradient(circle at 72% 28%, rgba(24, 183, 159, 0.22), transparent 28rem),
		#e9f4f2;
}

.alm-hero__slides,
.alm-hero__slide {
	position: absolute;
	inset: 0;
}

.alm-hero__slides {
	z-index: 1;
}

.alm-hero__slide {
	display: flex;
	align-items: center;
	padding: 118px 0 64px;
	background:
		linear-gradient(90deg, rgba(248, 251, 250, 0.99) 0%, rgba(248, 251, 250, 0.91) 34%, rgba(248, 251, 250, 0.42) 64%, rgba(248, 251, 250, 0.08) 100%),
		linear-gradient(120deg, rgba(24, 183, 159, 0.12) 0%, rgba(17, 74, 138, 0.08) 46%, rgba(244, 182, 63, 0.08) 100%),
		linear-gradient(0deg, rgba(244, 248, 247, 0.96) 0%, rgba(244, 248, 247, 0) 28%),
		var(--alm-hero-image, url("https://images.unsplash.com/photo-1513258496099-48168024aec0?auto=format&fit=crop&w=1900&q=82")) center right / cover;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	z-index: 0;
	transition: opacity 700ms ease;
}

.alm-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	z-index: 1;
}

.alm-hero__dots {
	position: absolute;
	z-index: 2;
	right: 50%;
	bottom: 66px;
	display: flex;
	gap: 9px;
	transform: translateX(50%);
}

.alm-hero__dots button {
	width: 34px;
	height: 4px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(8, 13, 26, 0.24);
	cursor: pointer;
	transition: background 180ms ease, width 180ms ease;
}

.alm-hero__dots button.is-active {
	width: 48px;
	background: var(--alm-orange);
}

.alm-hero__content {
	position: relative;
	z-index: 1;
	max-width: 570px;
	margin-left: 10%;
}

.alm-kicker {
	margin: 0 0 22px;
	color: var(--alm-blue);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.alm-hero .alm-kicker,
.alm-courses-hero .alm-kicker {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 12px;
	border: 1px solid rgba(23, 107, 135, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.68);
	box-shadow: 0 10px 28px rgba(16, 32, 51, 0.06);
	letter-spacing: 0.14em;
}

.alm-hero h1 {
	max-width: 620px;
	margin: 0;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(64px, 6.6vw, 104px);
	font-weight: 500;
	line-height: 0.9;
	letter-spacing: -0.04em;
}

.alm-hero__lead {
	max-width: 560px;
	margin: 38px 0 34px;
	color: #405268;
	font-size: 20px;
	line-height: 1.45;
}

.alm-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.alm-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.alm-hero__trust span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 13px;
	border: 1px solid rgba(23, 107, 135, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--alm-blue);
	font-size: 12px;
	font-weight: 800;
}

.alm-scroll {
	position: absolute;
	z-index: 3;
	right: 50%;
	bottom: 24px;
	width: 34px;
	height: 34px;
	border: 0;
	background: transparent;
	color: #5c6578;
	font-size: 23px;
	transform: translateX(50%);
}

.alm-stats {
	padding: 64px 0 58px;
	border-bottom: 0;
	background:
		linear-gradient(180deg, #fff 0%, var(--alm-surface-soft) 100%);
}

.alm-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px;
}

.alm-stat strong {
	display: block;
	color: var(--alm-blue);
	font-family: var(--alm-serif);
	font-size: clamp(44px, 4vw, 56px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.04em;
}

.alm-stat span {
	display: block;
	margin-top: 15px;
	color: #596276;
	font-size: 15px;
}

.alm-trust-band {
	padding: 0 0 82px;
	background: #fff;
}

.alm-trust-band__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.alm-trust-item {
	padding: 24px 26px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 251, 0.96)),
		linear-gradient(135deg, rgba(24, 183, 159, 0.08), rgba(17, 74, 138, 0.05));
	box-shadow: var(--alm-shadow-soft);
}

.alm-trust-item strong {
	display: block;
	color: var(--alm-ink);
	font-size: 17px;
	font-weight: 900;
}

.alm-trust-item span {
	display: block;
	margin-top: 8px;
	color: #627085;
	font-size: 14px;
	line-height: 1.5;
}

.alm-pathways {
	padding: 0 0 92px;
	background: #fff;
}

.alm-section__head--compact {
	margin-bottom: 34px;
}

.alm-pathway-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.alm-pathway-card {
	position: relative;
	display: grid;
	min-height: 280px;
	align-content: start;
	padding: 30px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 251, 0.96)),
		linear-gradient(160deg, rgba(23, 107, 135, 0.08), rgba(24, 183, 159, 0.06));
	box-shadow: var(--alm-shadow-soft);
	overflow: hidden;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.alm-pathway-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--alm-blue), var(--alm-teal), var(--alm-gold));
	content: "";
}

.alm-pathway-card:hover,
.alm-pathway-card:focus {
	border-color: rgba(17, 74, 138, 0.28);
	box-shadow: var(--alm-shadow-lift);
	transform: translateY(-4px);
}

.alm-pathway-card > span {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(23, 107, 135, 0.12), rgba(24, 183, 159, 0.14));
	color: var(--alm-blue);
	font-size: 14px;
	font-weight: 900;
}

.alm-pathway-card h3 {
	margin: 0;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(34px, 3.4vw, 48px);
	font-weight: 500;
	line-height: 0.98;
}

.alm-pathway-card p {
	margin: 20px 0 0;
	color: #566074;
	font-size: 15px;
	line-height: 1.6;
}

.alm-pathway-card strong {
	display: inline-flex;
	margin-top: 28px;
	color: var(--alm-orange);
	font-size: 14px;
	font-weight: 900;
}

.alm-courses {
	padding: 92px 0 82px;
	background: linear-gradient(180deg, #f4f8f7 0%, #fff 100%);
}

.alm-section__head {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 30px;
	max-width: 1220px;
	margin: 0 auto 76px;
}

.alm-section__head h2 {
	margin: 0;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(52px, 5vw, 68px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.04em;
}

.alm-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--alm-blue);
	font-size: 15px;
	font-weight: 700;
}

.alm-course-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.alm-course {
	position: relative;
	min-height: 292px;
	padding: 30px 28px 26px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #fff 0%, var(--alm-surface-soft) 100%);
	box-shadow: var(--alm-shadow-soft);
	overflow: hidden;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.alm-course::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--alm-blue), var(--alm-teal), var(--alm-gold), var(--alm-orange));
	content: "";
}

.alm-course:hover {
	border-color: rgba(17, 74, 138, 0.28);
	box-shadow: var(--alm-shadow-lift);
	transform: translateY(-4px);
}

.alm-course__code {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	margin-bottom: 26px;
	padding: 0 12px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(23, 107, 135, 0.11), rgba(24, 183, 159, 0.12));
	color: var(--alm-blue);
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.alm-course h3 {
	margin: 0 0 8px;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: 30px;
	font-weight: 500;
	line-height: 1;
}

.alm-course:first-child h3 {
	color: var(--alm-orange);
}

.alm-course em {
	display: block;
	color: #9a9fad;
	font-family: var(--alm-serif);
	font-size: 18px;
	font-style: italic;
}

.alm-course p {
	margin: 28px 0 0;
	padding-top: 18px;
	border-top: 1px solid #eeeae5;
	color: #586276;
	font-size: 14px;
	line-height: 1.55;
}

.alm-course__cta {
	display: inline-flex;
	align-items: center;
	margin-top: 24px;
	color: var(--alm-orange);
	font-size: 14px;
	font-weight: 900;
}

.alm-enroll-wrap {
	padding: 88px 0 104px;
	background: #fff;
}

.alm-enroll {
	width: min(1220px, calc(100% - 48px));
	min-height: 420px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(16, 32, 51, 0.9) 0%, rgba(23, 107, 135, 0.62) 46%, rgba(24, 183, 159, 0.18) 100%),
		var(--alm-enroll-image, url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1500&q=82")) center / cover;
	box-shadow: 0 28px 80px rgba(7, 24, 39, 0.18);
	overflow: hidden;
}

.alm-enroll__content {
	max-width: 560px;
	padding: 72px 80px;
	color: #fff;
}

.alm-enroll h2 {
	margin: 0 0 24px;
	color: #fff;
	font-family: var(--alm-serif);
	font-size: clamp(52px, 5vw, 70px);
	font-weight: 500;
	line-height: 0.95;
	letter-spacing: -0.04em;
}

.alm-enroll p:not(.alm-kicker) {
	margin: 0 0 34px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
	line-height: 1.55;
}

.alm-guidance-cta {
	padding: 0 0 92px;
	background: #fff;
}

.alm-guidance-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	padding: 34px;
	border: 1px solid rgba(23, 107, 135, 0.14);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(23, 107, 135, 0.08), rgba(24, 183, 159, 0.08), rgba(244, 182, 63, 0.08)),
		#fff;
	box-shadow: var(--alm-shadow-soft);
}

.alm-guidance-cta h2,
.alm-home-contact__copy h2 {
	margin: 0;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 500;
	line-height: 1;
}

.alm-guidance-cta p:not(.alm-kicker),
.alm-home-contact__copy p:not(.alm-kicker) {
	max-width: 680px;
	margin: 18px 0 0;
	color: #566074;
	font-size: 16px;
	line-height: 1.65;
}

.alm-home-contact {
	padding: 0 0 96px;
	background: linear-gradient(180deg, #fff 0%, #f4f8f7 100%);
}

.alm-home-contact__grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
	gap: 30px;
	align-items: start;
}

.alm-home-contact__copy {
	position: sticky;
	top: 104px;
	padding: 30px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 251, 0.96)),
		linear-gradient(160deg, rgba(23, 107, 135, 0.1), rgba(24, 183, 159, 0.08));
	box-shadow: var(--alm-shadow-soft);
}

.alm-whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 80;
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	border-radius: 999px;
	background: #18b79f;
	box-shadow: 0 18px 44px rgba(7, 24, 39, 0.18);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.alm-whatsapp-float:hover,
.alm-whatsapp-float:focus {
	background: var(--alm-blue);
	box-shadow: 0 24px 58px rgba(7, 24, 39, 0.22);
	color: #fff;
	transform: translateY(-2px);
}

.alm-footer {
	padding: 54px 0 66px;
	background:
		radial-gradient(circle at 12% 0%, rgba(24, 183, 159, 0.16), transparent 28rem),
		radial-gradient(circle at 88% 18%, rgba(17, 74, 138, 0.12), transparent 24rem),
		linear-gradient(135deg, var(--alm-footer) 0%, #102033 58%, #13364a 100%);
	color: #fff;
}

.alm-languages {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 26px;
	max-width: 1220px;
	margin: 0 auto 54px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.alm-languages span {
	color: rgba(255, 255, 255, 0.56);
	font-size: 13px;
	letter-spacing: 0.04em;
}

.alm-footer__grid {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr 1.1fr 0.9fr;
	gap: 54px;
}

.alm-footer h2 {
	margin: 0 0 24px;
	color: #fff;
}

.alm-footer h3 {
	margin: 0 0 26px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.alm-footer p,
.alm-footer a,
.alm-footer li {
	color: rgba(255, 255, 255, 0.76);
	font-size: 15px;
	line-height: 1.7;
}

.alm-footer a:hover,
.alm-footer a:focus {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: rgba(24, 183, 159, 0.7);
	text-underline-offset: 4px;
}

.alm-footer ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.alm-socials {
	grid-template-columns: repeat(2, auto);
	justify-content: start;
	column-gap: 22px;
}

.alm-footer__bottom {
	margin-top: 58px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.48);
	font-size: 13px;
}

.alm-page-courses {
	background: var(--alm-paper);
}

.alm-page-courses .alm-header {
	border-bottom: 1px solid rgba(7, 24, 39, 0.08);
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(18px);
}

.alm-page-courses .alm-lang {
	border-color: rgba(8, 13, 26, 0.1);
}

.alm-courses-page {
	min-height: 100vh;
	background: linear-gradient(180deg, #f4f8f7 0%, #fff 360px);
}

.alm-generic-page__main {
	min-height: 100vh;
	background: #fff;
}

.alm-generic-page__content {
	padding: 0 0 72px;
	color: #566074;
	font-size: 17px;
	line-height: 1.7;
}

.alm-generic-page__content :where(p, ul, ol, blockquote) {
	max-width: 760px;
}

.alm-courses-hero {
	padding: 136px 0 78px;
}

.alm-courses-hero h1 {
	margin: 0;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(68px, 7vw, 92px);
	font-weight: 500;
	line-height: 0.95;
	letter-spacing: -0.05em;
}

.alm-course-list-section {
	padding: 0 0 86px;
}

.alm-course-list {
	display: grid;
	gap: 24px;
}

.alm-course-row {
	display: grid;
	grid-template-columns: 58px 190px minmax(260px, 1fr) auto auto;
	align-items: center;
	gap: 24px;
	min-height: 118px;
	padding: 26px 32px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #fff 0%, var(--alm-surface-soft) 100%);
	color: var(--alm-text);
	box-shadow: var(--alm-shadow-soft);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.alm-course-row.is-featured,
.alm-course-row:hover {
	border-color: rgba(17, 74, 138, 0.32);
	box-shadow: var(--alm-shadow-lift);
	transform: translateY(-2px);
}

.alm-course-row__code {
	display: inline-flex;
	width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(23, 107, 135, 0.08);
	color: var(--alm-blue);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.alm-course-row__name h2 {
	margin: 0 0 5px;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: 28px;
	font-weight: 500;
	line-height: 1;
}

.alm-course-row.is-featured .alm-course-row__name h2 {
	color: var(--alm-orange);
}

.alm-course-row__name em {
	color: #9a9fad;
	font-family: var(--alm-serif);
	font-size: 16px;
	font-style: italic;
}

.alm-course-row__desc {
	max-width: 430px;
	margin: 0;
	color: #5a6477;
	font-size: 15px;
	line-height: 1.55;
}

.alm-course-row__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	color: #5a6477;
	font-size: 13px;
}

.alm-course-row__meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.alm-course-row__meta b {
	color: #5d6678;
	font-size: 14px;
	font-weight: 700;
}

.alm-course-row__cta {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 10px;
	justify-content: center;
	padding: 0 18px;
	border-radius: 999px;
	background: rgba(17, 74, 138, 0.1);
	white-space: nowrap;
	color: var(--alm-orange);
	font-size: 15px;
	font-weight: 800;
}

.alm-page-lead {
	max-width: 720px;
	margin: 24px 0 0;
	color: #566074;
	font-size: 18px;
	line-height: 1.65;
}

.alm-services-page,
.alm-about-page {
	min-height: 100vh;
	background: linear-gradient(180deg, #f4f8f7 0%, #fff 380px);
}

.alm-services-section,
.alm-about-section,
.alm-locations-section {
	padding: 0 0 86px;
	background: #fff;
}

.alm-services-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.alm-service-list,
.alm-info-grid,
.alm-location-grid {
	display: grid;
	gap: 22px;
}

.alm-info-grid,
.alm-location-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alm-info-card,
.alm-location-card {
	padding: 30px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #fff 0%, var(--alm-surface-soft) 100%);
	box-shadow: var(--alm-shadow-soft);
}

.alm-info-card h2,
.alm-location-card h3 {
	margin: 0 0 14px;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 500;
	line-height: 1;
}

.alm-info-card p,
.alm-location-card p,
.alm-location-card li {
	color: #566074;
	font-size: 15px;
	line-height: 1.65;
}

.alm-location-card ul {
	display: grid;
	gap: 8px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.alm-location-contact-list {
	display: grid;
	gap: 8px;
}

.alm-location-contact-line {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
}

.alm-location-contact-line svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--alm-teal);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.alm-location-contact-line a {
	color: var(--alm-blue);
	font-weight: 800;
	text-decoration: none;
	word-break: break-word;
}

.alm-location-contact-line a:hover {
	color: var(--alm-teal);
}

.alm-location-contact-note {
	display: block;
	color: #667489;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.alm-regulation-section {
	padding: 0 0 92px;
	background: #fff;
}

.alm-regulation-layout {
	display: grid;
	grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.alm-regulation-index {
	position: sticky;
	top: 104px;
	padding: 24px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background: #f8faf9;
}

.alm-regulation-index ol {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 18px;
}

.alm-regulation-index a {
	color: #435369;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	text-decoration: none;
}

.alm-regulation-index a:hover,
.alm-regulation-index a:focus {
	color: var(--alm-blue);
}

.alm-regulation-content {
	display: grid;
	gap: 18px;
}

.alm-regulation-chapter {
	padding: 30px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #fff 0%, var(--alm-surface-soft) 100%);
	box-shadow: var(--alm-shadow-soft);
	scroll-margin-top: 110px;
}

.alm-regulation-chapter h2 {
	margin: 0 0 16px;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(28px, 2.5vw, 38px);
	font-weight: 500;
	line-height: 1.05;
}

.alm-regulation-chapter p {
	margin: 0;
	color: #566074;
	font-size: 15px;
	line-height: 1.75;
}

.alm-exam-section {
	padding: 0 0 92px;
	background: #fff;
}

.alm-exam-layout {
	display: grid;
	gap: 48px;
}

.alm-exam-card {
	max-width: 880px;
	padding: 34px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 251, 0.96)),
		linear-gradient(160deg, rgba(23, 107, 135, 0.08), rgba(24, 183, 159, 0.06));
	box-shadow: var(--alm-shadow-soft);
}

.alm-exam-card p {
	margin: 0;
	color: #435369;
	font-size: 18px;
	line-height: 1.75;
}

.alm-exam-partner-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.alm-exam-partner {
	display: grid;
	min-height: 118px;
	align-content: start;
	gap: 10px;
	padding: 24px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #fff 0%, var(--alm-surface-soft) 100%);
	box-shadow: var(--alm-shadow-soft);
	text-decoration: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.alm-exam-partner:hover,
.alm-exam-partner:focus {
	border-color: rgba(17, 74, 138, 0.28);
	box-shadow: var(--alm-shadow-lift);
	transform: translateY(-3px);
}

.alm-exam-partner img {
	width: 100%;
	max-width: 160px;
	height: 54px;
	object-fit: contain;
	object-position: left center;
	margin-bottom: 6px;
}

.alm-exam-partner strong {
	color: var(--alm-ink);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.35;
}

.alm-exam-partner span {
	display: block;
	color: #667489;
	font-size: 13px;
	line-height: 1.45;
}

.alm-service-form .alm-form-card {
	position: static;
	top: auto;
}

.alm-service-panel li strong,
.alm-service-panel li span {
	display: block;
}

.alm-service-panel li span {
	margin-top: 4px;
	color: #667489;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
}

.alm-contact-panel a {
	color: var(--alm-blue);
	text-decoration: none;
}

.alm-contact-panel a:hover {
	color: var(--alm-teal);
}

.alm-contact-note span {
	font-size: 12px;
	font-weight: 600;
}

.alm-service-form .alm-form-card h2 {
	grid-column: 1 / -1;
	margin: 0 0 8px;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 500;
	line-height: 1;
}

.alm-service-form .alm-form-card > p {
	grid-column: 1 / -1;
	margin: 0 0 22px;
	color: #566074;
	font-size: 15px;
	line-height: 1.6;
}

.alm-form-notice {
	grid-column: 1 / -1;
	margin-bottom: 4px;
	padding: 13px 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 800;
}

.alm-form-notice--success {
	background: rgba(24, 183, 159, 0.12);
	color: #116852;
}

.alm-form-notice--error {
	background: rgba(202, 80, 78, 0.12);
	color: #9f2f2d;
}

.alm-partners {
	padding: 92px 0;
	background:
		linear-gradient(180deg, #fff 0%, #f4f8f7 100%);
}

.alm-partner-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.alm-partner-card {
	display: grid;
	align-content: start;
	gap: 10px;
	min-height: 132px;
	padding: 22px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 251, 0.95));
	box-shadow: var(--alm-shadow-soft);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.alm-partner-card img {
	width: 100%;
	max-width: 160px;
	height: 54px;
	object-fit: contain;
	object-position: left center;
	margin-bottom: 6px;
}

.alm-partner-card:hover,
.alm-partner-card:focus {
	border-color: rgba(17, 74, 138, 0.28);
	box-shadow: var(--alm-shadow-lift);
	transform: translateY(-3px);
}

.alm-partner-card strong {
	color: var(--alm-ink);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.2;
}

.alm-partner-card span {
	display: block;
	margin-top: 8px;
	color: #667489;
	font-size: 13px;
	line-height: 1.45;
}

.alm-news-page,
.alm-news-single {
	min-height: 100vh;
	background: linear-gradient(180deg, #f4f8f7 0%, #fff 380px);
}

.alm-news-section {
	padding: 0 0 92px;
	background: #fff;
}

.alm-news-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 30px;
}

.alm-news-toolbar a,
.alm-news-share,
.alm-back-link,
.alm-news-single__share a {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	border: 1px solid rgba(23, 107, 135, 0.14);
	border-radius: 999px;
	background: #fff;
	color: #435369;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.alm-news-toolbar a:hover,
.alm-news-toolbar a:focus,
.alm-news-toolbar .is-active,
.alm-news-share:hover,
.alm-news-share:focus,
.alm-back-link:hover,
.alm-back-link:focus,
.alm-news-single__share a:hover,
.alm-news-single__share a:focus {
	border-color: rgba(17, 74, 138, 0.35);
	color: var(--alm-orange);
	box-shadow: 0 14px 34px rgba(7, 24, 39, 0.08);
	transform: translateY(-1px);
}

.alm-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.alm-news-card {
	overflow: hidden;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #fff 0%, var(--alm-surface-soft) 100%);
	box-shadow: var(--alm-shadow-soft);
}

.alm-news-card__media {
	display: grid;
	min-height: 218px;
	place-items: center;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(23, 107, 135, 0.14), rgba(24, 183, 159, 0.12), rgba(17, 74, 138, 0.1));
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: 28px;
	font-weight: 700;
	text-decoration: none;
}

.alm-news-card__media img {
	width: 100%;
	height: 100%;
	min-height: 218px;
	object-fit: cover;
	transition: transform 260ms ease;
}

.alm-news-card:hover .alm-news-card__media img {
	transform: scale(1.04);
}

.alm-news-card__body {
	display: grid;
	gap: 14px;
	padding: 24px;
}

.alm-news-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: #667489;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.alm-news-card__meta span {
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(17, 74, 138, 0.1);
	color: var(--alm-orange);
}

.alm-news-card h2 {
	margin: 0;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(26px, 2.4vw, 34px);
	font-weight: 600;
	line-height: 1;
}

.alm-news-card h2 a {
	color: inherit;
	text-decoration: none;
}

.alm-news-card p {
	margin: 0;
	color: #566074;
	font-size: 15px;
	line-height: 1.6;
}

.alm-news-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin-top: 6px;
}

.alm-home-news {
	padding: 88px 0 96px;
	background: #fff;
}

.alm-home-news__grid {
	margin-top: 10px;
}

.alm-home-news-card .alm-news-card__media {
	min-height: 188px;
}

.alm-home-news-card .alm-news-card__media img {
	min-height: 188px;
}

.alm-home-news-card .alm-news-card__body {
	gap: 12px;
	padding: 22px;
}

.alm-home-news-card h2 {
	font-size: clamp(24px, 2vw, 30px);
}

.alm-home-news__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 34px;
	padding: 28px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(23, 107, 135, 0.08), rgba(17, 74, 138, 0.08)),
		#fff;
	box-shadow: 0 18px 46px rgba(7, 24, 39, 0.07);
}

.alm-home-news__cta h3 {
	margin: 0;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(30px, 3vw, 44px);
	font-weight: 600;
	line-height: 1;
}

.alm-empty-state {
	max-width: 720px;
	padding: 38px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 46px rgba(7, 24, 39, 0.07);
}

.alm-empty-state h2 {
	margin: 0 0 12px;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(34px, 4vw, 56px);
	font-weight: 500;
}

.alm-empty-state p:not(.alm-kicker) {
	margin: 0;
	color: #566074;
	font-size: 16px;
	line-height: 1.6;
}

.alm-news-single__hero {
	padding: 136px 0 52px;
}

.alm-news-single__head {
	display: grid;
	gap: 18px;
}

.alm-news-single__head h1 {
	max-width: 920px;
	margin: 0;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(54px, 6vw, 88px);
	font-weight: 500;
	line-height: 0.95;
}

.alm-news-single__image {
	overflow: hidden;
	margin-top: 34px;
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(7, 24, 39, 0.12);
}

.alm-news-single__image img {
	display: block;
	width: 100%;
	max-height: 560px;
	object-fit: cover;
}

.alm-news-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 260px;
	gap: 44px;
	padding-bottom: 92px;
}

.alm-news-single__content {
	max-width: 820px;
	color: #435369;
	font-size: 18px;
	line-height: 1.8;
}

.alm-news-single__content :where(h2, h3) {
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	line-height: 1.05;
}

.alm-news-single__share {
	position: sticky;
	top: 104px;
	display: grid;
	gap: 10px;
	align-self: start;
	padding: 24px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 46px rgba(7, 24, 39, 0.07);
}

.alm-page-enrollment {
	background: #fff;
}

.alm-enrollment-page {
	min-height: 100vh;
	background: linear-gradient(180deg, #f4f8f7 0%, #fff 380px);
}

.alm-enrollment-hero {
	padding: 136px 0 72px;
}

.alm-enrollment-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.alm-enrollment-layout > .alm-form,
.alm-enrollment-layout > .alm-form-card--message {
	grid-column: 2;
}

.alm-enrollment-copy {
	position: static;
}

.alm-enrollment-copy h1 {
	margin: 0;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(68px, 7vw, 92px);
	font-weight: 500;
	line-height: 0.95;
	letter-spacing: -0.05em;
}

.alm-enrollment-copy p:not(.alm-kicker) {
	max-width: 620px;
	margin: 24px 0 0;
	color: #566074;
	font-size: 18px;
	line-height: 1.6;
}

.alm-enrollment-form-section {
	padding: 0 0 86px;
	background: #fff;
}

.alm-enrollment-panel {
	position: sticky;
	top: 104px;
	padding: 30px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 251, 0.96)),
		linear-gradient(160deg, rgba(23, 107, 135, 0.1), rgba(24, 183, 159, 0.08));
	box-shadow: var(--alm-shadow-soft);
}

.alm-enrollment-panel h2 {
	margin: 0;
	color: var(--alm-ink);
	font-family: var(--alm-serif);
	font-size: clamp(36px, 3.5vw, 52px);
	font-weight: 500;
	line-height: 1;
}

.alm-enrollment-panel__course {
	display: grid;
	grid-template-columns: 58px 1fr;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.alm-enrollment-panel__course > span {
	display: inline-flex;
	width: 58px;
	height: 58px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(23, 107, 135, 0.1);
	color: var(--alm-blue);
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.alm-enrollment-panel__course em {
	display: block;
	margin-top: 5px;
	color: #7a8495;
	font-family: var(--alm-serif);
	font-size: 18px;
	font-style: italic;
}

.alm-enrollment-panel p:not(.alm-kicker) {
	margin: 20px 0 22px;
	color: #556579;
	font-size: 15px;
	line-height: 1.6;
}

.alm-enrollment-panel ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.alm-enrollment-panel li {
	position: relative;
	padding-left: 24px;
	color: #435369;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.alm-enrollment-panel li::before {
	position: absolute;
	top: 0.15em;
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 999px;
	background: var(--alm-teal);
	content: "";
	box-shadow: inset 0 0 0 4px #fff;
}

.alm-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.alm-form-card {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 20px;
	padding: 28px;
	border: 1px solid rgba(23, 107, 135, 0.12);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #fff 0%, var(--alm-surface-soft) 100%);
	box-shadow: var(--alm-shadow-soft);
}

.alm-form label {
	display: grid;
	gap: 8px;
	margin: 0;
	color: var(--alm-ink);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.alm-form input,
.alm-form select,
.alm-form textarea {
	width: 100%;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid var(--alm-line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.86);
	color: var(--alm-ink);
	font: inherit;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.alm-form input::placeholder,
.alm-form textarea::placeholder {
	color: #677085;
}

.alm-form textarea {
	min-height: 104px;
	padding-top: 14px;
	resize: vertical;
}

.alm-form input:focus,
.alm-form select:focus,
.alm-form textarea:focus {
	border-color: rgba(24, 183, 159, 0.62);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(24, 183, 159, 0.12);
}

.alm-form__wide,
.alm-form__submit {
	grid-column: 1 / -1;
}

.alm-form__submit {
	width: fit-content;
	margin-top: -4px;
	border: 0;
	cursor: pointer;
}

@media (max-width: 1100px) {
	.alm-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.alm-nav,
	.alm-menu,
	.alm-actions .alm-lang {
		display: none;
	}

	.alm-menu-toggle {
		display: inline-flex;
	}

	.alm-header.is-open .alm-nav {
		position: absolute;
		top: 76px;
		right: 24px;
		left: 24px;
		display: grid;
		gap: 12px;
		padding: 24px;
		border: 1px solid var(--alm-line);
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.96);
		box-shadow: 0 24px 70px rgba(17, 22, 32, 0.12);
	}

	.alm-header.is-open .alm-menu {
		display: grid;
		gap: 12px;
	}

	.alm-header.is-open .alm-menu .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		margin: 8px 0 0;
		padding: 6px;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.alm-header.is-open .alm-menu a {
		width: 100%;
		justify-content: center;
	}

	.alm-hero__content {
		margin-left: 6%;
	}

	.alm-course-grid,
	.alm-pathway-grid,
	.alm-trust-band__grid,
	.alm-partner-grid,
	.alm-exam-partner-grid,
	.alm-news-grid,
	.alm-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.alm-course-row {
		grid-template-columns: 50px 160px 1fr;
	}

	.alm-course-row__meta,
	.alm-course-row__cta {
		grid-column: 3;
	}

	.alm-enrollment-layout {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.alm-services-layout,
	.alm-regulation-layout,
	.alm-news-single__layout,
	.alm-home-contact__grid,
	.alm-info-grid,
	.alm-location-grid {
		grid-template-columns: 1fr;
	}

	.alm-enrollment-layout > .alm-form,
	.alm-enrollment-layout > .alm-form-card--message {
		grid-column: 1;
	}

	.alm-enrollment-panel,
	.alm-regulation-index,
	.alm-service-form .alm-form-card,
	.alm-home-contact__copy,
	.alm-news-single__share {
		position: static;
	}

	.alm-enrollment-copy {
		position: static;
	}

	.alm-home-news__cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.alm-guidance-cta__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.alm-shell,
	.alm-enroll {
		width: min(100% - 28px, 1220px);
	}

	.alm-header__inner {
		min-height: 68px;
	}

	.alm-actions .alm-button {
		display: none;
	}

	.alm-header.is-open .alm-nav {
		top: 68px;
	}

	.alm-hero {
		min-height: 88vh;
	}

	.alm-hero__slide {
		padding: 108px 0 64px;
		background-position: center;
	}

	.alm-hero__content {
		margin-left: 0;
	}

	.alm-hero h1 {
		font-size: clamp(54px, 16vw, 74px);
	}

	.alm-stats__grid,
	.alm-course-grid,
	.alm-pathway-grid,
	.alm-trust-band__grid,
	.alm-partner-grid,
	.alm-exam-partner-grid,
	.alm-news-grid,
	.alm-footer__grid {
		grid-template-columns: 1fr;
	}

	.alm-stats {
		padding: 52px 0;
	}

	.alm-trust-band {
		padding-bottom: 58px;
	}

	.alm-pathways {
		padding-bottom: 68px;
	}

	.alm-section__head {
		grid-template-columns: 1fr;
		margin-bottom: 40px;
	}

	.alm-courses {
		padding: 68px 0;
	}

	.alm-enroll {
		min-height: 430px;
	}

	.alm-enroll__content {
		padding: 42px 28px;
	}

	.alm-guidance-cta {
		padding-bottom: 68px;
	}

	.alm-guidance-cta__inner,
	.alm-home-contact__copy {
		padding: 26px;
	}

	.alm-home-contact {
		padding-bottom: 72px;
	}

	.alm-whatsapp-float {
		right: 14px;
		bottom: 14px;
		min-height: 46px;
		padding: 0 16px;
	}

	.alm-languages {
		margin-bottom: 42px;
		padding-bottom: 38px;
	}

	.alm-courses-hero {
		padding: 104px 0 56px;
	}

	.alm-course-row {
		grid-template-columns: 48px 1fr;
		gap: 16px;
		padding: 24px;
	}

	.alm-course-row__code {
		width: 48px;
		height: 48px;
		font-size: 22px;
	}

	.alm-course-row__desc,
	.alm-course-row__meta,
	.alm-course-row__cta {
		grid-column: 1 / -1;
	}

	.alm-course-row__meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.alm-enrollment-hero {
		padding: 104px 0 58px;
	}

	.alm-form {
		grid-template-columns: 1fr;
		padding: 0;
	}

	.alm-form-card {
		grid-template-columns: 1fr;
	}
}
