:root {
	--ink: #211b22;
	--ink-soft: #3d333d;
	--muted: #766d73;
	--paper: #fffdfc;
	--white: #ffffff;
	--blush: #fff4f2;
	--blush-strong: #f9ddda;
	--accent: #ef4f57;
	--accent-dark: #c93343;
	--accent-deep: #a91f34;
	--green: #147a55;
	--line: #eadfdf;
	--line-dark: #d9caca;
	--shadow-sm: 0 10px 28px rgba(65, 37, 45, 0.08);
	--shadow-md: 0 22px 60px rgba(65, 37, 45, 0.13);
	--radius-sm: 14px;
	--radius: 24px;
	--radius-lg: 38px;
	--container: 1180px;
	--sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--serif: Georgia, "Times New Roman", serif;
	--font-display: var(--serif);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.nav-open {
	overflow: hidden;
}

img,
picture,
svg,
video,
iframe {
	max-width: 100%;
}

img {
	height: auto;
}

picture {
	display: block;
}

a {
	color: var(--accent-dark);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--accent-deep);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

button {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--ink);
	font-family: var(--serif);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

h1 {
	font-size: clamp(2.6rem, 5.4vw, 5.3rem);
	margin-bottom: 1.4rem;
}

h2 {
	font-size: clamp(2.05rem, 3.8vw, 3.8rem);
	margin-bottom: 1.2rem;
}

h3 {
	font-size: clamp(1.32rem, 2vw, 1.75rem);
	margin-bottom: 0.7rem;
}

p:last-child {
	margin-bottom: 0;
}

::selection {
	background: var(--blush-strong);
	color: var(--ink);
}

:focus-visible {
	outline: 3px solid var(--accent-dark);
	outline-offset: 4px;
}

.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.skip-link {
	position: fixed;
	left: 16px;
	top: 16px;
	z-index: 99999;
	transform: translateY(-160%);
	padding: 12px 18px;
	border-radius: 10px;
	background: var(--ink);
	color: var(--white);
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.18s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.icon {
	width: 1.25em;
	height: 1.25em;
	flex: 0 0 auto;
	vertical-align: -0.2em;
}

.container {
	width: min(var(--container), calc(100% - 40px));
	margin-inline: auto;
}

.content-container {
	max-width: 880px;
}

.site-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1 0 auto;
}

.section {
	padding: clamp(72px, 8vw, 118px) 0;
}

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

.section-heading {
	max-width: 750px;
	margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading > p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.08rem;
}

.section-heading--split {
	max-width: none;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
	gap: clamp(28px, 5vw, 78px);
	align-items: end;
}

.section-heading--split h2 {
	margin-bottom: 0;
}

.section-heading--center {
	text-align: center;
	margin-inline: auto;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 17px;
	color: var(--accent-dark);
	font-size: 0.77rem;
	font-weight: 850;
	letter-spacing: 0.18em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
}

.pill {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 11px;
	border: 1px solid var(--blush-strong);
	border-radius: 999px;
	background: var(--blush);
	color: var(--accent-dark);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--sans);
	font-size: 0.94rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button .icon {
	width: 18px;
	height: 18px;
}

.button:hover {
	transform: translateY(-2px);
}

.button--primary {
	background: var(--accent-dark);
	box-shadow: 0 12px 27px rgba(239, 79, 87, 0.24);
	color: var(--white);
}

.button--primary:hover {
	background: var(--accent-deep);
	box-shadow: 0 15px 32px rgba(201, 51, 67, 0.28);
	color: var(--white);
}

.button--secondary {
	border-color: var(--line-dark);
	background: rgba(255, 255, 255, 0.76);
	color: var(--ink);
}

.button--secondary:hover {
	border-color: var(--accent);
	background: var(--white);
	color: var(--accent-dark);
}

.button--small {
	min-height: 44px;
	padding: 10px 19px;
	font-size: 0.87rem;
}

.button--whatsapp {
	background: var(--green);
	color: var(--white);
	box-shadow: 0 12px 24px rgba(22, 138, 96, 0.2);
}

.button--whatsapp:hover {
	background: #0f6f4d;
	color: var(--white);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 0.94rem;
	font-weight: 800;
	text-decoration: none;
}

.text-link .icon {
	width: 18px;
	transition: transform 0.18s ease;
}

.text-link:hover .icon {
	transform: translateX(4px);
}

.topbar {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.75rem;
}

.topbar__inner {
	min-height: 35px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.topbar p {
	margin: 0;
}

.topbar__contact {
	display: flex;
	align-items: center;
	gap: 22px;
}

.topbar a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: inherit;
	text-decoration: none;
}

.topbar a:hover {
	color: var(--white);
}

.topbar .icon {
	width: 15px;
	height: 15px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(234, 223, 223, 0.76);
	background: rgba(255, 253, 252, 0.94);
	box-shadow: 0 6px 26px rgba(47, 30, 36, 0.04);
	backdrop-filter: blur(14px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: max-content;
	color: var(--ink);
	text-decoration: none;
}

.site-brand:hover {
	color: var(--ink);
}

.site-brand img {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	object-fit: contain;
}

.site-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.site-brand__text strong {
	font-family: var(--serif);
	font-size: 1.28rem;
	letter-spacing: -0.025em;
}

.site-brand__text small {
	margin-top: 5px;
	color: var(--muted);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.primary-menu,
.footer-links,
.footer-legal-menu,
.social-links,
.trust-list,
.feature-list,
.course-card__facts,
.highlight-grid,
.contact-card {
	list-style: none;
	padding: 0;
	margin: 0;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.2vw, 30px);
}

.primary-menu li {
	position: relative;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--ink);
	font-size: 0.88rem;
	font-weight: 750;
	text-decoration: none;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
	color: var(--accent-dark);
}

.primary-menu .sub-menu {
	position: absolute;
	left: -18px;
	top: calc(100% + 8px);
	z-index: 10;
	min-width: 220px;
	padding: 10px;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--white);
	box-shadow: var(--shadow-md);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(5px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu .sub-menu a {
	width: 100%;
	padding: 8px 10px;
	border-radius: 8px;
}

.site-nav__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.account-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 44px;
	color: var(--ink);
	font-size: 0.84rem;
	font-weight: 750;
	text-decoration: none;
}

.account-link .icon {
	width: 19px;
	height: 19px;
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
	color: var(--ink);
}

.nav-toggle__close {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
	display: inline-flex;
}

.breadcrumbs {
	padding-top: 20px;
	padding-bottom: 4px;
}

.breadcrumbs ol {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
	color: var(--muted);
	font-size: 0.78rem;
}

.breadcrumbs li:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	color: var(--line-dark);
}

.breadcrumbs a {
	color: var(--muted);
	text-decoration: none;
}

.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 25%, rgba(249, 221, 218, 0.75), transparent 30%),
		linear-gradient(135deg, #fffdfc 0%, #fff7f5 100%);
}

.hero::before {
	content: "";
	position: absolute;
	inset: auto auto -220px -150px;
	z-index: -1;
	width: 440px;
	height: 440px;
	border: 1px solid rgba(239, 79, 87, 0.14);
	border-radius: 50%;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
	align-items: center;
	gap: clamp(42px, 5.5vw, 86px);
	min-height: 720px;
	padding-top: clamp(60px, 7vw, 94px);
	padding-bottom: clamp(60px, 7vw, 94px);
}

.hero__content {
	max-width: 660px;
}

.hero__lead,
.page-hero__lead {
	max-width: 650px;
	margin-bottom: 2rem;
	color: var(--ink-soft);
	font-size: clamp(1.05rem, 1.5vw, 1.23rem);
	line-height: 1.75;
}

.hero__actions,
.location-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 13px;
}

.trust-list {
	display: grid;
	gap: 11px;
	margin-top: 30px;
}

.trust-list li,
.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--ink-soft);
	font-size: 0.94rem;
}

.trust-list .icon,
.feature-list .icon,
.highlight-grid .icon {
	width: 19px;
	height: 19px;
	margin-top: 3px;
	color: var(--accent);
}

.hero__visual {
	position: relative;
	max-width: 610px;
	justify-self: end;
}

.hero-artwork {
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 25px 45px rgba(95, 53, 64, 0.14));
}

.hero-artwork img {
	display: block;
	width: 100%;
	border-radius: 42px;
}

.hero--course .hero__grid {
	min-height: 660px;
}

.course-price-line {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px 18px;
	margin: 0 0 25px;
}

.course-price-line strong {
	color: var(--accent-dark);
	font-family: var(--serif);
	font-size: clamp(2.2rem, 4vw, 3.3rem);
	line-height: 1;
}

.course-price-line span,
.microcopy {
	color: var(--muted);
	font-size: 0.86rem;
}

.microcopy {
	max-width: 570px;
	margin-top: 17px;
}

.stat-band {
	position: relative;
	z-index: 2;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--white);
}

.stat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.stat-grid > div {
	min-width: 0;
	padding: 30px 27px;
	border-right: 1px solid var(--line);
}

.stat-grid > div:first-child {
	padding-left: 0;
}

.stat-grid > div:last-child {
	padding-right: 0;
	border-right: 0;
}

.stat-grid strong,
.stat-grid span {
	display: block;
}

.stat-grid strong {
	margin-bottom: 5px;
	color: var(--accent-dark);
	font-family: var(--serif);
	font-size: clamp(1.75rem, 3vw, 2.45rem);
	line-height: 1.05;
}

.stat-grid span {
	color: var(--muted);
	font-size: 0.79rem;
	line-height: 1.45;
}

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

.course-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: clamp(25px, 3vw, 34px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.course-card:hover {
	transform: translateY(-6px);
	border-color: var(--blush-strong);
	box-shadow: var(--shadow-md);
}

.course-card__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
}

.course-card__price {
	color: var(--accent-dark);
	font-family: var(--serif);
	font-size: 1.55rem;
	font-weight: 700;
	line-height: 1;
}

.course-card h3 {
	font-size: clamp(1.55rem, 2.4vw, 2.05rem);
}

.course-card h3 a {
	color: var(--ink);
	text-decoration: none;
}

.course-card p {
	color: var(--muted);
}

.course-card__facts {
	display: grid;
	gap: 9px;
	padding: 18px 0 21px;
	margin-top: auto;
}

.course-card__facts li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 0.84rem;
	color: var(--ink-soft);
}

.course-card__facts .icon {
	width: 17px;
	color: var(--accent);
}

.section-note {
	max-width: 840px;
	margin: 25px auto 0;
	color: var(--muted);
	font-size: 0.78rem;
	text-align: center;
}

.split-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
	gap: clamp(46px, 7vw, 100px);
	align-items: start;
}

.split-layout__content > p:not(.eyebrow),
.split-layout > div > p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.05rem;
}

.step-list {
	display: grid;
	gap: 20px;
	margin-top: 38px;
}

.step-list article {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 18px;
	align-items: start;
}

.step-list article > span,
.values-grid article > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--white);
	color: var(--accent-dark);
	font-family: var(--serif);
	font-size: 0.93rem;
	font-weight: 700;
	box-shadow: var(--shadow-sm);
}

.step-list h3 {
	margin: 0 0 4px;
	font-family: var(--sans);
	font-size: 1.04rem;
	letter-spacing: -0.01em;
}

.step-list p {
	margin: 0;
	color: var(--muted);
	font-size: 0.91rem;
}

.feature-panel {
	position: sticky;
	top: 116px;
	padding: clamp(30px, 4vw, 48px);
	border: 1px solid rgba(239, 79, 87, 0.14);
	border-radius: var(--radius-lg);
	background: linear-gradient(150deg, var(--white), #fff9f8);
	box-shadow: var(--shadow-md);
}

.feature-panel h3 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.feature-list {
	display: grid;
	gap: 15px;
	padding: 25px 0 28px;
}

.reviews-section {
	overflow: hidden;
}

.trustindex-shell {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 5px 1px 18px;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
}

.trustindex-shell *,
.trustindex-shell .ti-widget,
.trustindex-shell .ti-widget-container,
.trustindex-shell .ti-reviews-container,
.trustindex-shell .ti-reviews-container-wrapper {
	box-sizing: border-box;
	max-width: 100% !important;
}

.trustindex-shell iframe {
	width: 100% !important;
	max-width: 100% !important;
	border: 0;
}

.reviews-fallback {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 20px;
	align-items: center;
	padding: clamp(25px, 4vw, 38px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.reviews-fallback__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--blush);
	color: var(--accent);
}

.reviews-fallback h3 {
	margin-bottom: 4px;
	font-family: var(--sans);
	font-size: 1.08rem;
	letter-spacing: -0.01em;
}

.reviews-fallback p {
	color: var(--muted);
	font-size: 0.9rem;
}

.faq-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
	gap: clamp(40px, 7vw, 96px);
	align-items: start;
}

.faq-layout .section-heading {
	position: sticky;
	top: 116px;
	margin-bottom: 0;
}

.faq-layout .section-heading .button {
	margin-top: 15px;
}

.faq-list {
	border-top: 1px solid var(--line-dark);
}

.faq-item {
	border-bottom: 1px solid var(--line-dark);
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 76px;
	padding: 20px 4px;
	cursor: pointer;
	font-weight: 800;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item__icon {
	position: relative;
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 14px;
	height: 2px;
	border-radius: 2px;
	background: var(--accent);
	transform: translate(-50%, -50%);
	transition: transform 0.18s ease;
}

.faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
	max-width: 760px;
	padding: 0 46px 24px 4px;
	color: var(--muted);
}

.lead-section,
.enrollment-section {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.82);
}

.lead-section h2,
.lead-section .eyebrow,
.enrollment-section h2,
.enrollment-section .eyebrow {
	color: var(--white);
}

.lead-section .eyebrow::before,
.enrollment-section .eyebrow::before {
	background: var(--accent);
}

.lead-grid,
.enrollment-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
	gap: clamp(42px, 7vw, 92px);
	align-items: start;
}

.lead-grid > div:first-child > p:not(.eyebrow),
.enrollment-summary > p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.04rem;
}

.contact-mini {
	display: grid;
	gap: 11px;
	margin-top: 30px;
}

.contact-mini a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--white);
	text-decoration: none;
}

.lead-form-wrap,
.payment-form {
	min-width: 0;
	padding: clamp(25px, 4vw, 39px);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-md);
	color: var(--ink);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 17px;
}

.form-field {
	margin-bottom: 17px;
}

.form-field label,
.wpcf7-form label {
	display: block;
	margin-bottom: 7px;
	color: var(--ink);
	font-size: 0.82rem;
	font-weight: 780;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
select,
textarea,
.wpcf7-form-control:not(.wpcf7-submit):not([type="checkbox"]):not([type="radio"]) {
	width: 100%;
	min-height: 49px;
	padding: 12px 14px;
	border: 1px solid var(--line-dark);
	border-radius: 11px;
	background: var(--white);
	color: var(--ink);
	font-size: 16px;
	line-height: 1.4;
	transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

textarea,
.wpcf7-form textarea.wpcf7-form-control {
	min-height: 118px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.wpcf7-form-control:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(239, 79, 87, 0.12);
	outline: 0;
}

.form-consent {
	margin: 2px 0 20px;
	font-size: 0.78rem;
	color: var(--muted);
}

.form-consent label {
	display: flex;
	align-items: flex-start;
	gap: 9px;
}

.form-consent input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--accent);
}

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

.form-notice {
	padding: 13px 15px;
	margin-bottom: 20px;
	border-radius: 10px;
	font-size: 0.88rem;
}

.form-notice--success {
	background: #e9f8f1;
	color: #0f6948;
}

.form-notice--error {
	background: #fff0f0;
	color: #9b2634;
}

.search-form {
	display: flex;
	gap: 9px;
	width: min(100%, 650px);
	margin-top: 25px;
}

.search-form .search-field {
	flex: 1 1 auto;
	min-width: 0;
}

.search-form .button {
	flex: 0 0 auto;
}

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

.post-grid--index {
	row-gap: 40px;
}

.post-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.post-card__media {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--blush);
}

.post-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.post-card:hover .post-card__media img {
	transform: scale(1.035);
}

.post-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--accent);
}

.post-card__placeholder .icon {
	width: 48px;
	height: 48px;
}

.post-card__body {
	padding: 25px;
}

.post-card__meta {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
	color: var(--muted);
	font-size: 0.72rem;
}

.post-card h3 {
	font-size: 1.55rem;
}

.post-card h3 a {
	color: var(--ink);
	text-decoration: none;
}

.post-card__body > p:not(.post-card__meta) {
	color: var(--muted);
	font-size: 0.9rem;
}

.course-facts {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--white);
}

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

.course-facts__grid > div {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 12px;
	align-items: center;
	padding: 27px 24px;
	border-right: 1px solid var(--line);
}

.course-facts__grid > div:last-child {
	border-right: 0;
}

.course-facts__grid .icon {
	grid-row: 1 / 3;
	width: 25px;
	height: 25px;
	color: var(--accent);
}

.course-facts__grid span {
	color: var(--muted);
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.course-facts__grid strong {
	font-size: 0.9rem;
	line-height: 1.35;
}

.split-layout--course {
	align-items: center;
}

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

.highlight-grid li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: 19px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--white);
	box-shadow: var(--shadow-sm);
	font-size: 0.9rem;
}

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

.curriculum-item {
	padding: 27px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.curriculum-item > span {
	display: block;
	margin-bottom: 25px;
	color: var(--accent);
	font-family: var(--serif);
	font-size: 1.25rem;
	font-weight: 700;
}

.curriculum-item h3 {
	font-family: var(--sans);
	font-size: 1.04rem;
	letter-spacing: -0.015em;
}

.curriculum-item p {
	color: var(--muted);
	font-size: 0.87rem;
}

.course-method__grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
	gap: clamp(45px, 7vw, 92px);
	align-items: center;
}

.method-artwork img {
	display: block;
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.numbered-list {
	display: grid;
	gap: 14px;
	padding-left: 22px;
	color: var(--ink-soft);
}

.enrollment-price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 12px;
	padding: 20px 0;
}

.enrollment-price strong {
	color: var(--white);
	font-family: var(--serif);
	font-size: 3rem;
}

.enrollment-price span {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.85rem;
}

.enrollment-summary .feature-list span {
	color: rgba(255, 255, 255, 0.82);
}

.legal-note {
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.76rem !important;
}

.payment-form .wpcf7-form {
	margin: 0;
}

.payment-form .wpcf7-form > p,
.payment-form .wpcf7-form > div {
	margin-bottom: 16px;
}

.payment-form .wpcf7-list-item {
	margin-left: 0;
}

.payment-form input[type="submit"],
.payment-form .wpcf7-submit {
	min-height: 50px;
	padding: 12px 23px;
	border: 0;
	border-radius: 999px;
	background: var(--accent-dark);
	box-shadow: 0 12px 27px rgba(201, 51, 67, 0.22);
	color: var(--white);
	font-weight: 800;
	cursor: pointer;
}

.payment-form input[type="submit"]:hover,
.payment-form .wpcf7-submit:hover {
	background: var(--accent-deep);
}

.payment-form .wpcf7-not-valid-tip {
	margin-top: 5px;
	font-size: 0.77rem;
}

.payment-form .wpcf7-response-output {
	padding: 12px 14px !important;
	margin: 18px 0 0 !important;
	border-width: 1px !important;
	border-radius: 10px;
	font-size: 0.83rem;
}

.plugin-fallback h3 {
	font-family: var(--sans);
	letter-spacing: -0.015em;
}

.plugin-fallback p {
	color: var(--muted);
}

.course-grid--related {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 820px;
}

.page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(65px, 8vw, 110px) 0;
	background: var(--blush);
}

.page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
	gap: clamp(45px, 7vw, 90px);
	align-items: center;
}

.page-hero__image img {
	display: block;
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.page-hero--compact {
	text-align: center;
}

.page-hero__narrow {
	max-width: 920px;
}

.page-hero--compact .eyebrow,
.page-hero--compact .page-hero__lead,
.page-hero--compact .search-form {
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 17px;
}

.values-grid article {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.values-grid article > span {
	margin-bottom: 18px;
	background: var(--blush);
	box-shadow: none;
}

.values-grid h3 {
	font-family: var(--sans);
	font-size: 1.02rem;
	letter-spacing: -0.01em;
}

.values-grid p {
	color: var(--muted);
	font-size: 0.87rem;
}

.location-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 0.65fr);
	gap: clamp(38px, 7vw, 88px);
	align-items: center;
}

.contact-card {
	display: grid;
	gap: 15px;
	padding: clamp(25px, 4vw, 38px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.contact-card li {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	min-width: 0;
}

.contact-card .icon {
	width: 21px;
	margin-top: 4px;
	color: var(--accent);
}

.contact-card span {
	display: grid;
	min-width: 0;
}

.contact-card small {
	color: var(--muted);
	font-size: 0.68rem;
	font-weight: 780;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-card a {
	color: var(--ink);
	overflow-wrap: anywhere;
	text-decoration: none;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
	gap: clamp(38px, 7vw, 86px);
	align-items: start;
}

.contact-info-panel .contact-card {
	margin: 24px 0 18px;
}

.hours-card {
	padding: 24px;
	margin-top: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--blush);
}

.hours-card h3 {
	font-family: var(--sans);
	font-size: 1rem;
	letter-spacing: -0.01em;
}

.hours-card p {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	margin: 0;
	border-bottom: 1px solid var(--line);
	font-size: 0.84rem;
}

.hours-card small {
	display: block;
	margin-top: 13px;
	color: var(--muted);
}

.contact-form-panel > p {
	color: var(--muted);
}

.contact-form-panel .lead-form-wrap {
	padding: 0;
	box-shadow: none;
}

.standard-page .entry-header {
	max-width: 780px;
	margin-bottom: 38px;
}

.prose {
	color: var(--ink-soft);
	font-size: clamp(1rem, 1.2vw, 1.08rem);
	line-height: 1.8;
}

.prose > * {
	max-width: 100%;
}

.prose h2,
.prose h3,
.prose h4 {
	margin-top: 2.2em;
}

.prose h2 {
	font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.prose h3 {
	font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.prose a {
	overflow-wrap: anywhere;
}

.prose img,
.prose figure,
.prose iframe {
	border-radius: var(--radius-sm);
}

.prose blockquote {
	padding: 4px 0 4px 24px;
	border-left: 4px solid var(--accent);
	color: var(--muted);
	font-family: var(--serif);
	font-size: 1.24rem;
}

.prose table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

.prose th,
.prose td {
	padding: 11px;
	border: 1px solid var(--line);
	text-align: left;
}

.article-header {
	padding-bottom: 45px;
	background: var(--blush);
	text-align: center;
}

.article-header__inner {
	max-width: 900px;
}

.article-header .eyebrow {
	justify-content: center;
}

.article-deck {
	color: var(--muted);
	font-size: 1.12rem;
}

.article-meta {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 9px 20px;
	color: var(--muted);
	font-size: 0.76rem;
}

.article-featured {
	max-width: 1120px;
	margin-top: -22px;
}

.article-featured img {
	display: block;
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 820px) minmax(240px, 1fr);
	gap: clamp(42px, 6vw, 78px);
	align-items: start;
}

.article-aside {
	position: relative;
}

.sticky-card {
	position: sticky;
	top: 116px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--blush);
}

.sticky-card h2 {
	font-size: 1.8rem;
}

.sticky-card p:not(.eyebrow) {
	color: var(--muted);
	font-size: 0.88rem;
}

.pagination,
.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 45px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 43px;
	min-height: 43px;
	padding: 8px 13px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	color: var(--ink);
	font-size: 0.85rem;
	font-weight: 750;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--accent-dark);
	background: var(--accent-dark);
	color: var(--white);
}

.empty-state {
	max-width: 680px;
	padding: 50px;
	margin: 0 auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--blush);
	text-align: center;
}

.error-section {
	min-height: 690px;
	display: flex;
	align-items: center;
	background: var(--blush);
}

.error-layout {
	display: grid;
	grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);
	gap: clamp(50px, 8vw, 115px);
	align-items: center;
	max-width: 1050px;
}

.error-code {
	color: var(--blush-strong);
	font-family: var(--serif);
	font-size: clamp(8rem, 20vw, 15rem);
	font-weight: 700;
	line-height: 0.8;
	text-align: center;
}

.error-layout h1 {
	font-size: clamp(3rem, 6vw, 5.5rem);
}

.error-layout p:not(.eyebrow) {
	color: var(--muted);
}

.lms-content,
.wpcw_fe_course,
.wpcw_fe_unit {
	width: min(100% - 40px, 1000px);
	padding: clamp(25px, 4vw, 44px);
	margin: 45px auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.site-footer {
	padding-top: 70px;
	background: #171218;
	color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.8fr 0.7fr 1fr;
	gap: clamp(28px, 5vw, 65px);
	padding-bottom: 55px;
}

.site-brand--footer {
	color: var(--white);
}

.site-brand--footer:hover {
	color: var(--white);
}

.site-brand--footer .site-brand__text small {
	color: rgba(255, 255, 255, 0.5);
}

.footer-brand > p {
	max-width: 340px;
	margin-top: 20px;
	font-size: 0.87rem;
}

.footer-heading {
	margin: 9px 0 19px;
	color: var(--white);
	font-family: var(--sans);
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.footer-links {
	display: grid;
	gap: 11px;
}

.footer-links a,
.footer-contact a,
.social-links a,
.footer-legal-menu a {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.83rem;
	text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover,
.social-links a:hover,
.footer-legal-menu a:hover {
	color: var(--white);
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 22px;
}

.footer-contact {
	display: grid;
	align-content: start;
	gap: 13px;
}

.footer-contact .footer-heading {
	margin-bottom: 6px;
}

.footer-contact a {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	min-width: 0;
	overflow-wrap: anywhere;
}

.footer-contact .icon {
	width: 17px;
	margin-top: 3px;
	color: var(--accent);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 20px;
	padding-bottom: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.72rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-legal-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px 16px;
}

.footer-legal-menu a {
	font-size: 0.72rem;
}

.whatsapp-float {
	position: fixed;
	right: max(16px, env(safe-area-inset-right));
	bottom: max(16px, env(safe-area-inset-bottom));
	z-index: 900;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 47px;
	padding: 10px 17px;
	border-radius: 999px;
	background: var(--green);
	box-shadow: 0 13px 32px rgba(15, 99, 70, 0.28);
	color: var(--white);
	font-size: 0.78rem;
	text-decoration: none;
}

.whatsapp-float:hover {
	background: #0f6f4d;
	color: var(--white);
	transform: translateY(-2px);
}

.whatsapp-float span {
	font-size: 0;
}

.whatsapp-float span::before {
	content: "W";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	font-size: 0.72rem;
	font-weight: 900;
}

@media (max-width: 1100px) {
	.hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
		gap: 38px;
	}

	.site-nav {
		gap: 18px;
	}

	.primary-menu {
		gap: 15px;
	}

	.site-nav__actions {
		gap: 10px;
	}

	.account-link span {
		display: none;
	}

	.footer-grid {
		grid-template-columns: 1.2fr 0.8fr 0.8fr;
	}

	.footer-contact {
		grid-column: 1 / -1;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.footer-contact .footer-heading {
		grid-column: 1 / -1;
	}
}

@media (max-width: 960px) {
	.admin-bar .site-header {
		top: 32px;
	}

	.topbar__inner > p {
		display: none;
	}

	.topbar__contact {
		width: 100%;
		justify-content: space-between;
	}

	.nav-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.site-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		display: block;
		max-height: calc(100vh - 118px);
		padding: 20px;
		border-top: 1px solid var(--line);
		background: rgba(255, 253, 252, 0.99);
		box-shadow: 0 24px 45px rgba(40, 26, 32, 0.16);
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-menu {
		display: grid;
		gap: 0;
	}

	.primary-menu li {
		border-bottom: 1px solid var(--line);
	}

	.primary-menu a {
		width: 100%;
		min-height: 52px;
		padding: 7px 2px;
		font-size: 1rem;
	}

	.primary-menu .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		padding: 0 0 8px 16px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.site-nav__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 12px;
		padding-top: 20px;
	}

	.account-link {
		justify-content: center;
		padding: 9px 14px;
		border: 1px solid var(--line);
		border-radius: 999px;
	}

	.account-link span {
		display: inline;
	}

	.hero__grid,
	.page-hero__grid {
		grid-template-columns: 1fr 0.82fr;
	}

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

	.stat-grid > div:nth-child(2) {
		border-right: 0;
	}

	.stat-grid > div:nth-child(-n+2) {
		border-bottom: 1px solid var(--line);
	}

	.stat-grid > div:first-child,
	.stat-grid > div:nth-child(3) {
		padding-left: 0;
	}

	.course-grid,
	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.course-grid > :last-child:nth-child(odd),
	.post-grid > :last-child:nth-child(odd) {
		grid-column: 1 / -1;
		max-width: calc(50% - 12px);
	}

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

	.course-facts__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.course-facts__grid > div:nth-child(2) {
		border-right: 0;
	}

	.course-facts__grid > div:nth-child(-n+2) {
		border-bottom: 1px solid var(--line);
	}

	.article-layout {
		grid-template-columns: 1fr;
	}

	.article-aside {
		display: none;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 820px) {
	.container {
		width: min(var(--container), calc(100% - 32px));
	}

	.section-heading--split,
	.split-layout,
	.faq-layout,
	.lead-grid,
	.enrollment-grid,
	.course-method__grid,
	.location-panel,
	.contact-layout,
	.error-layout {
		grid-template-columns: 1fr;
	}

	.section-heading--split {
		align-items: start;
		gap: 18px;
	}

	.feature-panel,
	.faq-layout .section-heading,
	.sticky-card {
		position: static;
	}

	.hero__grid,
	.page-hero__grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero__content {
		max-width: 720px;
	}

	.hero__visual {
		width: min(100%, 620px);
		justify-self: center;
	}

	.page-hero__image {
		width: min(100%, 590px);
		justify-self: center;
	}

	.course-grid--related {
		max-width: none;
	}

	.faq-layout .section-heading {
		margin-bottom: 6px;
	}

	.lead-grid,
	.enrollment-grid {
		gap: 34px;
	}

	.reviews-fallback {
		grid-template-columns: auto 1fr;
	}

	.reviews-fallback .button {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.error-code {
		font-size: 9rem;
		text-align: left;
	}

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

	.footer-brand,
	.footer-contact {
		grid-column: 1 / -1;
	}

	.footer-contact {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-legal-menu {
		justify-content: flex-start;
	}
}

@media (max-width: 620px) {
	body {
		font-size: 15.5px;
	}

	.container {
		width: min(var(--container), calc(100% - 28px));
	}

	.section {
		padding: 68px 0;
	}

	h1 {
		font-size: clamp(2.45rem, 12vw, 3.7rem);
	}

	h2 {
		font-size: clamp(2rem, 9.5vw, 2.8rem);
	}

	.topbar__contact {
		justify-content: center;
		gap: 16px;
	}

	.topbar__contact a:first-child {
		display: none;
	}

	.site-header__inner {
		min-height: 72px;
	}

	.site-brand img {
		width: 47px;
		height: 47px;
	}

	.site-brand__text strong {
		font-size: 1.13rem;
	}

	.site-brand__text small {
		font-size: 0.55rem;
	}

	.hero__grid {
		padding-top: 52px;
		padding-bottom: 60px;
		gap: 34px;
	}

	.hero__actions,
	.location-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero__actions .button,
	.location-actions .button {
		width: 100%;
	}

	.hero-artwork img,
	.page-hero__image img,
	.method-artwork img {
		border-radius: 26px;
	}

	.stat-grid,
	.course-grid,
	.post-grid,
	.curriculum-grid,
	.highlight-grid,
	.values-grid,
	.course-facts__grid,
	.form-grid,
	.course-grid--related {
		grid-template-columns: 1fr;
	}

	.course-grid > :last-child:nth-child(odd),
	.post-grid > :last-child:nth-child(odd) {
		grid-column: auto;
		max-width: none;
	}

	.stat-grid > div,
	.stat-grid > div:first-child,
	.stat-grid > div:nth-child(3) {
		padding: 22px 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.stat-grid > div:last-child {
		border-bottom: 0;
	}

	.course-facts__grid > div,
	.course-facts__grid > div:nth-child(2) {
		padding: 20px 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.course-facts__grid > div:last-child {
		border-bottom: 0;
	}

	.course-card,
	.curriculum-item,
	.values-grid article,
	.lead-form-wrap,
	.payment-form {
		border-radius: 20px;
	}

	.faq-item summary {
		min-height: 68px;
	}

	.faq-item__answer {
		padding-right: 6px;
	}

	.reviews-fallback {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.reviews-fallback__icon,
	.reviews-fallback .button {
		justify-self: center;
	}

	.search-form {
		align-items: stretch;
		flex-direction: column;
	}

	.search-form .button {
		width: 100%;
	}

	.error-code {
		font-size: 7.5rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-brand,
	.footer-contact {
		grid-column: auto;
	}

	.whatsapp-float {
		right: max(10px, env(safe-area-inset-right));
		bottom: max(10px, env(safe-area-inset-bottom));
		padding: 10px 13px;
	}

	.whatsapp-float strong {
		display: none;
	}
}

@media (max-width: 380px) {
	.container {
		width: min(var(--container), calc(100% - 22px));
	}

	.site-brand__text small {
		display: none;
	}

	.site-nav__actions {
		grid-template-columns: 1fr;
	}

	.course-card,
	.curriculum-item,
	.values-grid article,
	.contact-card,
	.lead-form-wrap,
	.payment-form {
		padding-left: 19px;
		padding-right: 19px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.topbar,
	.site-header,
	.site-footer,
	.whatsapp-float,
	.hero__actions,
	.lead-section,
	.enrollment-section,
	.reviews-section,
	.search-form {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}

	.container {
		width: 100%;
	}

	a {
		color: #000;
		text-decoration: underline;
	}
}


/* Hardened Redsys checkout status */
.pestanate-payment-status{display:none;margin:0 0 16px;padding:12px 14px;border:1px solid rgba(203,45,62,.18);border-radius:12px;background:#fff7f7;color:#5f2730;font-size:.95rem;line-height:1.45}.pestanate-payment-status.is-active{display:block}.pestanate-payment-status.is-error{border-color:#b42318;background:#fff4f2;color:#8a1c13}.payment-form [aria-busy="true"]{cursor:wait;opacity:.68}

.payment-result{margin:20px 0 0;padding:14px 16px;border-radius:14px;font-size:.96rem}.payment-result--ok{background:#f0fbf5;border:1px solid #91d3ae;color:#175c36}.payment-result--ko{background:#fff4f2;border:1px solid #efb4ab;color:#8a1c13}

.payment-return {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(35, 25, 31, .12);
  border-radius: 14px;
  background: #fff;
  line-height: 1.55;
}
.payment-return--ok { border-color: rgba(30, 122, 78, .28); }
.payment-return--ko { border-color: rgba(205, 49, 63, .28); }

/* --------------------------------------------------------------------------
   Pestañate 1.7.0 polish layer
   -------------------------------------------------------------------------- */
:root {
	--accent-soft: #ffe8e8;
	--surface-glass: rgba(255, 255, 255, 0.82);
	--shadow-focus: 0 28px 72px rgba(76, 42, 52, 0.14);
}

html {
	scroll-padding-top: 150px;
}

body,
input,
select,
textarea,
button {
	font-kerning: normal;
}

p,
li,
td,
th,
label,
small {
	overflow-wrap: anywhere;
}

.hero--home,
.hero--course {
	isolation: isolate;
	background:
		radial-gradient(circle at 88% 18%, rgba(239, 79, 87, 0.11), transparent 30%),
		linear-gradient(135deg, #fffdfc 0%, #fff9f7 56%, #fff2f0 100%);
}

.hero__content {
	position: relative;
	z-index: 2;
}

.hero-artwork {
	filter: drop-shadow(0 26px 36px rgba(84, 44, 55, 0.12));
}

.hero-artwork img,
.page-hero__image img,
.method-artwork img {
	transition: transform 0.45s ease, filter 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
	.hero__visual:hover .hero-artwork img,
	.course-method__visual:hover .method-artwork img {
		transform: translateY(-4px) scale(1.006);
	}
}

.course-card {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #fff 0%, #fffdfc 100%);
	box-shadow: 0 12px 34px rgba(65, 37, 45, 0.07);
}

.course-card::after {
	content: "";
	position: absolute;
	inset: auto -38px -52px auto;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background: rgba(239, 79, 87, 0.055);
	pointer-events: none;
}

.course-card:hover {
	box-shadow: var(--shadow-focus);
}

.course-comparison {
	margin-top: clamp(42px, 5vw, 68px);
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: linear-gradient(140deg, rgba(255,255,255,.96), rgba(255,244,242,.72));
	box-shadow: var(--shadow-sm);
}

.course-comparison__heading {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(280px, 1.2fr);
	gap: 20px 48px;
	align-items: end;
	margin-bottom: 24px;
}

.course-comparison__heading .eyebrow {
	grid-column: 1 / -1;
	margin-bottom: -4px;
}

.course-comparison__heading h3,
.course-comparison__heading p {
	margin-bottom: 0;
}

.course-comparison__heading p {
	color: var(--muted);
}

.course-comparison__scroll {
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--white);
}

.course-comparison table {
	width: 100%;
	min-width: 820px;
	border-collapse: collapse;
	font-size: .91rem;
}

.course-comparison th,
.course-comparison td {
	padding: 16px 18px;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: middle;
}

.course-comparison thead th {
	background: #fff8f6;
	color: var(--muted);
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.course-comparison tbody th {
	min-width: 220px;
	font-family: var(--serif);
	font-size: 1rem;
	letter-spacing: -.015em;
}

.course-comparison tbody tr:last-child > * {
	border-bottom: 0;
}

.course-comparison tbody tr:hover {
	background: #fffaf9;
}

.course-comparison td strong {
	color: var(--accent-dark);
	font-size: 1.02rem;
}

.course-jump-nav {
	position: sticky;
	top: 82px;
	z-index: 900;
	border-block: 1px solid rgba(234, 223, 223, .86);
	background: rgba(255, 253, 252, .92);
	backdrop-filter: blur(14px);
}

.admin-bar .course-jump-nav {
	top: 114px;
}

.course-jump-nav__inner {
	display: flex;
	align-items: center;
	gap: 6px;
	min-height: 52px;
	overflow-x: auto;
	scrollbar-width: none;
}

.course-jump-nav__inner::-webkit-scrollbar {
	display: none;
}

.course-jump-nav a {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 7px 12px;
	border-radius: 999px;
	color: var(--ink-soft);
	font-size: .79rem;
	font-weight: 800;
	text-decoration: none;
}

.course-jump-nav a:hover,
.course-jump-nav a:focus-visible {
	background: var(--blush);
	color: var(--accent-dark);
}

.course-jump-nav__cta {
	margin-left: auto;
	background: var(--accent-soft);
	color: var(--accent-deep) !important;
}

.course-fit-section {
	padding-top: clamp(64px, 7vw, 94px);
	padding-bottom: 0;
}

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

.course-fit-grid article {
	min-width: 0;
	padding: clamp(22px, 3vw, 30px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(160deg, #fff 0%, #fff8f6 100%);
	box-shadow: 0 12px 32px rgba(65, 37, 45, 0.055);
}

.course-fit-grid__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 22px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent-dark);
}

.course-fit-grid__icon .icon {
	width: 21px;
	height: 21px;
}

.course-fit-grid h3 {
	font-size: 1.35rem;
}

.course-fit-grid p {
	margin: 0;
	color: var(--muted);
}

.payment-form {
	position: relative;
	box-shadow: 0 18px 50px rgba(65, 37, 45, .1);
}

.payment-form::before {
	content: "Pago seguro";
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	margin-bottom: 18px;
	padding: 4px 10px;
	border-radius: 999px;
	background: #eefaf5;
	color: #16694b;
	font-size: .7rem;
	font-weight: 850;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.payment-form :is(input, select, textarea) {
	max-width: 100%;
}

.payment-form input[type="text"],
.payment-form input[type="email"],
.payment-form input[type="tel"],
.payment-form input[type="number"],
.payment-form input[type="url"],
.payment-form select,
.payment-form textarea {
	min-height: 48px;
}

.review-widget,
.review-widget > *,
.ti-widget,
.ti-widget-container,
[class*="trustindex"] {
	max-width: 100% !important;
}

.review-widget,
.ti-widget-container,
[class*="trustindex"] {
	overflow-x: clip;
}

.review-widget iframe,
[class*="trustindex"] iframe {
	width: 100% !important;
	max-width: 100% !important;
}

.article-meta {
	flex-wrap: wrap;
}

.footer-hours {
	margin: 10px 0 0;
	color: rgba(255,255,255,.72);
	font-size: .84rem;
}

.course-mobile-cta {
	display: none;
}

@media (max-width: 960px) {
	.course-comparison__heading {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.course-fit-grid {
		grid-template-columns: 1fr 1fr;
	}

	.course-fit-grid article:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 782px) {
	.admin-bar .course-jump-nav {
		top: 128px;
	}
}

@media (max-width: 620px) {
	html {
		scroll-padding-top: 132px;
	}

	.course-jump-nav {
		top: 72px;
	}

	.admin-bar .course-jump-nav {
		top: 118px;
	}

	.course-jump-nav__inner {
		width: 100%;
		padding-inline: 14px;
	}

	.course-jump-nav__cta {
		margin-left: 0;
	}

	.course-fit-grid {
		grid-template-columns: 1fr;
	}

	.course-fit-grid article:last-child {
		grid-column: auto;
	}

	.course-comparison {
		padding: 18px;
		border-radius: 22px;
	}

	.course-comparison__scroll {
		margin-inline: -4px;
		border-radius: 16px;
	}

	.payment-form,
	.lead-form-wrap {
		box-shadow: 0 12px 32px rgba(65,37,45,.08);
	}

	.pestanate-course-page {
		padding-bottom: calc(78px + env(safe-area-inset-bottom));
	}

	.course-mobile-cta {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1600;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		min-height: 72px;
		padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
		border-top: 1px solid var(--line);
		background: rgba(255,253,252,.96);
		box-shadow: 0 -12px 30px rgba(55,35,42,.1);
		backdrop-filter: blur(16px);
	}

	.course-mobile-cta > div {
		display: grid;
		min-width: 0;
	}

	.course-mobile-cta span {
		overflow: hidden;
		color: var(--muted);
		font-size: .68rem;
		font-weight: 750;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.course-mobile-cta strong {
		color: var(--accent-dark);
		font-family: var(--serif);
		font-size: 1.45rem;
		line-height: 1.05;
	}

	.course-mobile-cta .button {
		flex: 0 0 auto;
		min-height: 46px;
		padding-inline: 18px;
	}

	.pestanate-course-page .whatsapp-float {
		bottom: calc(84px + env(safe-area-inset-bottom));
	}
}

@media (max-width: 380px) {
	.course-mobile-cta span {
		display: none;
	}

	.course-mobile-cta .button {
		padding-inline: 15px;
		font-size: .82rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-artwork img,
	.page-hero__image img,
	.method-artwork img {
		transform: none !important;
	}
}

/* 1.7.1: About team portrait and real student proof gallery. */
.page-hero__grid--about {
	align-items: center;
}

.about-team-card {
	position: relative;
	isolation: isolate;
	width: min(100%, 590px);
	margin: 0;
	justify-self: end;
	padding: 14px;
	border: 1px solid rgba(239, 79, 87, 0.16);
	border-radius: clamp(28px, 4vw, 46px);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 28px 72px rgba(74, 42, 51, 0.14);
}

.about-team-card::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 8% -7% auto auto;
	width: 42%;
	aspect-ratio: 1;
	border-radius: 48% 52% 60% 40%;
	background: rgba(249, 214, 214, 0.55);
	filter: blur(1px);
}

.about-team-card__picture {
	display: block;
	overflow: hidden;
	border-radius: clamp(22px, 3vw, 36px);
	background: #f6ece9;
}

.about-team-card__picture img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 778 / 773;
	object-fit: cover;
}

.about-team-card figcaption {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 8px 4px;
	color: var(--muted);
	font-size: 0.8rem;
}

.about-team-card figcaption strong {
	color: var(--ink);
	font-family: var(--serif);
	font-size: 1rem;
}

.trust-list--about {
	max-width: 590px;
}

.student-proof {
	position: relative;
	overflow: hidden;
}

.student-proof:not(.section--soft) {
	background:
		radial-gradient(circle at 92% 8%, rgba(249, 218, 217, 0.42), transparent 24%),
		linear-gradient(180deg, #fff 0%, #fffaf9 100%);
}

.student-proof__heading {
	margin-bottom: clamp(28px, 4vw, 46px);
}

.student-proof__heading > div:last-child > p:first-child {
	margin-top: 0;
	color: var(--muted);
	font-size: 1.02rem;
}

.student-proof__note {
	margin: 10px 0 0;
	padding-left: 14px;
	border-left: 2px solid rgba(239, 79, 87, 0.34);
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.65;
}

.student-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(12px, 1.8vw, 20px);
}

.student-gallery--featured {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.student-gallery__item {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: clamp(18px, 2.2vw, 28px);
	background: var(--white);
	box-shadow: 0 14px 34px rgba(66, 42, 49, 0.07);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.student-gallery__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #f4ece9;
}

.student-gallery__media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.student-gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.28s ease;
}

.student-gallery__item figcaption {
	min-height: 58px;
	display: flex;
	align-items: center;
	padding: 13px 15px 14px;
	color: var(--ink-soft);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.4;
}

.student-proof__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: clamp(30px, 4vw, 46px);
}

@media (hover: hover) and (pointer: fine) {
	.student-gallery__item:hover {
		transform: translateY(-4px);
		box-shadow: 0 22px 48px rgba(66, 42, 49, 0.11);
	}

	.student-gallery__item:hover .student-gallery__image {
		transform: scale(1.025);
	}
}

@media (max-width: 960px) {
	.student-gallery {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.about-team-card {
		justify-self: center;
	}

	.student-gallery,
	.student-gallery--featured {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.about-team-card {
		padding: 9px;
		border-radius: 28px;
	}

	.about-team-card__picture {
		border-radius: 21px;
	}

	.about-team-card figcaption {
		display: grid;
		gap: 2px;
		padding: 11px 7px 3px;
	}

	.student-gallery {
		gap: 10px;
	}

	.student-gallery__item {
		border-radius: 17px;
	}

	.student-gallery__item figcaption {
		min-height: 54px;
		padding: 10px 11px 11px;
		font-size: 0.74rem;
	}

	.student-proof__actions .button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.student-gallery__item,
	.student-gallery__image {
		transition: none !important;
	}
}

/* --------------------------------------------------------------------------
   Pestañate 1.7.2 course SEO + FAQ presentation
   -------------------------------------------------------------------------- */
.hero--course .hero__grid {
	min-height: 640px;
	padding-top: clamp(64px, 6vw, 88px);
	padding-bottom: clamp(64px, 6vw, 88px);
}

.hero--course .hero__content {
	max-width: 720px;
}

.hero--course .hero__content h1 {
	max-width: 720px;
	margin-bottom: 1.2rem;
	font-size: clamp(2.85rem, 4.9vw, 4.9rem);
	line-height: 1.02;
	text-wrap: balance;
}

.hero--course .hero__lead {
	max-width: 680px;
	margin-bottom: 1.65rem;
	font-size: clamp(1.04rem, 1.35vw, 1.2rem);
}

.faq-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 15%, rgba(239, 79, 87, 0.08), transparent 24%),
		radial-gradient(circle at 92% 82%, rgba(249, 221, 218, 0.62), transparent 28%),
		linear-gradient(180deg, #fffaf8 0%, #fff5f3 100%);
}

.faq-section::before {
	content: "";
	position: absolute;
	right: -120px;
	top: -120px;
	z-index: -1;
	width: 340px;
	height: 340px;
	border: 1px solid rgba(239, 79, 87, 0.12);
	border-radius: 50%;
}

.faq-shell {
	max-width: 1040px;
}

.faq-heading {
	max-width: 820px;
	margin: 0 auto clamp(30px, 4vw, 46px);
}

.faq-heading h2 {
	max-width: 790px;
	margin-right: auto;
	margin-left: auto;
	font-size: clamp(2.25rem, 4vw, 3.7rem);
	text-wrap: balance;
}

.faq-heading > p:last-child {
	max-width: 720px;
	margin-right: auto;
	margin-left: auto;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.75;
}

.faq-panel {
	padding: clamp(10px, 1.8vw, 18px);
	border: 1px solid rgba(217, 202, 202, 0.76);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 24px 64px rgba(65, 37, 45, 0.09);
	backdrop-filter: blur(8px);
}

.faq-panel .faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: 12px;
	border-top: 0;
}

.faq-panel .faq-item {
	overflow: clip;
	border: 1px solid rgba(234, 223, 223, 0.98);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 7px 22px rgba(65, 37, 45, 0.045);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.faq-panel .faq-item[open] {
	border-color: rgba(239, 79, 87, 0.34);
	background: linear-gradient(180deg, #fff 0%, #fff9f8 100%);
	box-shadow: 0 14px 32px rgba(108, 55, 68, 0.08);
}

.faq-panel .faq-item summary {
	min-height: 76px;
	padding: 18px 20px;
	gap: 16px;
	font-size: clamp(0.98rem, 1.15vw, 1.08rem);
	font-weight: 750;
	line-height: 1.45;
}

.faq-panel .faq-item summary:focus-visible {
	outline: 3px solid rgba(239, 79, 87, 0.26);
	outline-offset: -3px;
	border-radius: 18px;
}

.faq-item__question {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 16px;
}

.faq-item__number {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	border-radius: 50%;
	background: var(--blush);
	color: var(--accent-dark);
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.faq-panel .faq-item[open] .faq-item__number {
	background: var(--accent);
	color: #fff;
}

.faq-panel .faq-item__icon {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border: 1px solid rgba(239, 79, 87, 0.2);
	border-radius: 50%;
	background: var(--blush);
}

.faq-panel .faq-item__icon::before,
.faq-panel .faq-item__icon::after {
	width: 12px;
}

.faq-panel .faq-item__answer {
	max-width: none;
	padding: 0 72px 22px 74px;
	color: var(--ink-soft);
	font-size: 0.96rem;
	line-height: 1.75;
}

.faq-panel .faq-item__answer p {
	margin: 0;
}

.faq-support {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 18px;
	padding: 20px 22px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.84);
}

.faq-support > div {
	display: grid;
	gap: 2px;
}

.faq-support strong {
	color: var(--ink);
	font-size: 1rem;
}

.faq-support span,
.faq-legal-note {
	color: var(--muted);
	font-size: 0.86rem;
	line-height: 1.6;
}

.faq-legal-note {
	max-width: 800px;
	margin: 16px auto 0;
	text-align: center;
}

@media (hover: hover) and (pointer: fine) {
	.faq-panel .faq-item:not([open]):hover {
		border-color: rgba(239, 79, 87, 0.25);
		transform: translateY(-1px);
		box-shadow: 0 12px 30px rgba(65, 37, 45, 0.07);
	}
}

@media (max-width: 820px) {
	.hero--course .hero__grid {
		padding-top: 54px;
		padding-bottom: 62px;
	}

	.hero--course .hero__content h1 {
		font-size: clamp(2.7rem, 8.4vw, 4.25rem);
	}

	.faq-shell {
		max-width: 760px;
	}

	.faq-panel .faq-list {
		grid-template-columns: 1fr;
	}

	.faq-support {
		align-items: stretch;
		flex-direction: column;
	}

	.faq-support .button {
		align-self: flex-start;
	}
}

@media (max-width: 620px) {
	.hero--course .hero__grid {
		padding-top: 44px;
		gap: 30px;
	}

	.hero--course .hero__content h1 {
		font-size: clamp(2.38rem, 11.2vw, 3.35rem);
		line-height: 1.03;
	}

	.faq-section {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.faq-heading {
		margin-bottom: 26px;
	}

	.faq-heading h2 {
		font-size: clamp(2rem, 9.3vw, 2.75rem);
	}

	.faq-panel {
		padding: 8px;
		border-radius: 22px;
	}

	.faq-panel .faq-item {
		border-radius: 17px;
	}

	.faq-panel .faq-item summary {
		min-height: 70px;
		padding: 16px 14px;
		gap: 10px;
		font-size: 0.94rem;
	}

	.faq-item__question {
		align-items: flex-start;
		gap: 11px;
	}

	.faq-item__number {
		width: 32px;
		height: 32px;
		flex-basis: 32px;
		font-size: 0.66rem;
	}

	.faq-panel .faq-item__icon {
		width: 30px;
		height: 30px;
		flex-basis: 30px;
	}

	.faq-panel .faq-item__answer {
		padding: 0 14px 18px 57px;
		font-size: 0.92rem;
	}

	.faq-support {
		padding: 18px;
		border-radius: 18px;
	}

	.faq-support .button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.faq-panel .faq-item {
		transition: none !important;
	}
}

/* --------------------------------------------------------------------------
   Pestañate 1.8.0: differentiated course content + SEO-safe presentation
   -------------------------------------------------------------------------- */
.hero--course .hero__content h1 {
	max-width: 760px;
	margin-bottom: 1.2rem;
	font-size: clamp(2.85rem, 4.8vw, 4.8rem);
	line-height: 1.02;
	text-wrap: balance;
}

.course-facts__grid--six {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.course-facts__grid--six > div:nth-child(3n) {
	border-right: 0;
}

.course-facts__grid--six > div:nth-child(-n+3) {
	border-bottom: 1px solid var(--line);
}

.course-specific {
	position: relative;
	background:
		radial-gradient(circle at 96% 8%, rgba(249, 221, 218, 0.55), transparent 23%),
		linear-gradient(180deg, #fff 0%, #fffaf9 100%);
}

.course-specific__heading {
	margin-bottom: clamp(30px, 4vw, 48px);
}

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

.course-specific__card {
	min-width: 0;
	padding: clamp(22px, 2.6vw, 30px);
	border: 1px solid var(--line);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 14px 36px rgba(65, 37, 45, 0.06);
}

.course-specific__check {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 20px;
	border-radius: 14px;
	background: var(--blush);
	color: var(--accent-dark);
}

.course-specific__check .icon {
	width: 20px;
	height: 20px;
}

.course-specific__card h3 {
	font-size: 1.25rem;
	line-height: 1.2;
}

.course-specific__card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.93rem;
	line-height: 1.7;
}

.course-location-callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 22px;
	padding: 20px 22px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.course-location-callout > div {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.course-location-callout .icon {
	width: 26px;
	height: 26px;
	color: var(--accent-dark);
}

.course-location-callout span {
	display: grid;
	gap: 2px;
}

.course-location-callout small {
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.course-location-callout strong {
	font-size: 1rem;
	line-height: 1.35;
}

.student-proof--course {
	padding-top: clamp(64px, 7vw, 94px);
	padding-bottom: clamp(64px, 7vw, 94px);
}

.course-guides {
	padding-top: clamp(58px, 6vw, 82px);
	padding-bottom: clamp(58px, 6vw, 82px);
	background: var(--ink);
	color: rgba(255, 255, 255, 0.78);
}

.course-guides h2,
.course-guides .eyebrow {
	color: var(--white);
}

.course-guides .eyebrow::before {
	background: var(--accent);
}

.course-guides__shell {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(34px, 6vw, 84px);
	align-items: center;
}

.course-guides__shell > div > p:last-child {
	max-width: 540px;
	color: rgba(255, 255, 255, 0.66);
}

.course-guides__list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.course-guides__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 62px;
	padding: 15px 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 17px;
	background: rgba(255, 255, 255, 0.055);
	color: var(--white);
	font-weight: 760;
	line-height: 1.35;
	text-decoration: none;
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.course-guides__list .icon {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	color: #ff9da3;
}

.faq-panel .faq-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
}

.faq-panel .faq-item__answer {
	padding-right: 20px;
}

@media (hover: hover) and (pointer: fine) {
	.course-specific__card:hover {
		border-color: rgba(239, 79, 87, 0.25);
		box-shadow: 0 20px 44px rgba(65, 37, 45, 0.09);
	}

	.course-guides__list a:hover {
		transform: translateX(3px);
		border-color: rgba(255, 157, 163, 0.5);
		background: rgba(255, 255, 255, 0.09);
		color: var(--white);
	}
}

@media (max-width: 960px) {
	.course-facts__grid--six {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.course-facts__grid--six > div,
	.course-facts__grid--six > div:nth-child(3n) {
		border-right: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
	}

	.course-facts__grid--six > div:nth-child(2n) {
		border-right: 0;
	}

	.course-facts__grid--six > div:nth-last-child(-n+2) {
		border-bottom: 0;
	}

	.course-specific__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.course-guides__shell {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

@media (max-width: 720px) {
	.faq-panel .faq-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.hero--course .hero__content h1 {
		font-size: clamp(2.28rem, 10.7vw, 3.25rem);
	}

	.course-facts__grid--six {
		grid-template-columns: 1fr;
	}

	.course-facts__grid--six > div,
	.course-facts__grid--six > div:nth-child(2n),
	.course-facts__grid--six > div:nth-child(3n),
	.course-facts__grid--six > div:nth-last-child(-n+2) {
		padding: 19px 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.course-facts__grid--six > div:last-child {
		border-bottom: 0;
	}

	.course-specific__grid {
		grid-template-columns: 1fr;
	}

	.course-location-callout {
		align-items: stretch;
		flex-direction: column;
	}

	.course-location-callout .button {
		width: 100%;
	}

	.course-guides__list a {
		min-height: 58px;
		padding: 14px 15px;
		font-size: 0.9rem;
	}
}


/* --------------------------------------------------------------------------
   Pestañate 1.9.0: premium FAQ, article links and crawl-safe refinements
   -------------------------------------------------------------------------- */
.faq-section--course {
	position: relative;
	overflow: clip;
	background:
		radial-gradient(circle at 8% 12%, rgba(246, 211, 211, 0.72), transparent 26%),
		radial-gradient(circle at 95% 88%, rgba(239, 79, 87, 0.10), transparent 24%),
		#fffaf9;
}

.faq-section--course::before {
	content: "";
	position: absolute;
	inset: 28px auto auto -84px;
	width: 180px;
	height: 180px;
	border: 1px solid rgba(239, 79, 87, 0.18);
	border-radius: 50%;
	pointer-events: none;
}

.faq-course-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: start;
}

.faq-course-intro {
	position: sticky;
	top: 126px;
	padding: clamp(26px, 3.2vw, 38px);
	border: 1px solid rgba(239, 79, 87, 0.16);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 24px 60px rgba(56, 31, 39, 0.08);
	backdrop-filter: blur(10px);
}

.faq-course-intro h2 {
	max-width: 11ch;
	margin-bottom: 18px;
	font-size: clamp(2.2rem, 3.8vw, 3.75rem);
	line-height: 1.02;
	text-wrap: balance;
}

.faq-course-intro > p:not(.eyebrow) {
	max-width: 48ch;
	color: var(--muted);
	line-height: 1.75;
}

.faq-assurance {
	display: grid;
	gap: 12px;
	margin: 24px 0 28px;
	padding: 0;
	list-style: none;
}

.faq-assurance li {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 720;
	line-height: 1.5;
}

.faq-assurance .icon {
	width: 20px;
	height: 20px;
	margin-top: 1px;
	color: var(--accent-dark);
}

.faq-course-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(80, 50, 58, 0.10);
	border-radius: 30px;
	background: var(--white);
	box-shadow: 0 28px 72px rgba(56, 31, 39, 0.09);
}

.faq-course-card__head {
	display: grid;
	gap: 6px;
	padding: 24px clamp(22px, 4vw, 36px);
	border-bottom: 1px solid var(--line);
	background: linear-gradient(135deg, #fff 0%, #fff4f2 100%);
}

.faq-course-card__head span {
	color: var(--accent-dark);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.faq-course-card__head strong {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.25vw, 2rem);
	line-height: 1.18;
	text-wrap: balance;
}

.faq-panel--course {
	padding: 6px clamp(18px, 3vw, 28px) 12px;
}

.faq-panel--course .faq-list {
	display: block;
	border-top: 0;
}

.faq-panel--course .faq-item {
	margin: 0;
	border-bottom: 1px solid var(--line);
	background: transparent;
	box-shadow: none;
}

.faq-panel--course .faq-item:last-child {
	border-bottom: 0;
}

.faq-panel--course .faq-item summary {
	min-height: 78px;
	padding: 19px 2px;
}

.faq-panel--course .faq-item__question {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 13px;
	align-items: center;
	min-width: 0;
	font-size: clamp(0.98rem, 1.45vw, 1.08rem);
	line-height: 1.42;
}

.faq-panel--course .faq-item__number {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: var(--blush);
	color: var(--accent-dark);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.06em;
}

.faq-panel--course .faq-item__icon {
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border-radius: 50%;
	background: #fff6f5;
}

.faq-panel--course .faq-item__answer {
	max-width: none;
	padding: 0 48px 22px 53px;
	color: var(--muted);
	font-size: 0.96rem;
	line-height: 1.75;
}

.faq-panel--course .faq-item[open] summary {
	color: var(--accent-dark);
}

.faq-course-card .faq-legal-note {
	margin: 0;
	padding: 16px clamp(22px, 3vw, 28px) 22px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.75rem;
	line-height: 1.55;
}

.article-course-links ul {
	display: grid;
	gap: 9px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.article-course-links li {
	margin: 0;
}

.article-course-links li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 52px;
	padding: 11px 13px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: #fff;
	color: var(--ink);
	font-size: 0.84rem;
	font-weight: 760;
	line-height: 1.35;
	text-decoration: none;
	transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.article-course-links li a .icon {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	color: var(--accent-dark);
}

.article-meta a[rel="author"] {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
	.article-course-links li a:hover {
		transform: translateX(2px);
		border-color: rgba(239, 79, 87, 0.32);
		background: #fff8f7;
	}
}

@media (max-width: 960px) {
	.faq-course-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.faq-course-intro {
		position: static;
	}

	.faq-course-intro h2 {
		max-width: 15ch;
	}
}

@media (max-width: 620px) {
	.faq-section--course::before {
		display: none;
	}

	.faq-course-intro,
	.faq-course-card {
		border-radius: 22px;
	}

	.faq-course-intro {
		padding: 24px 20px;
	}

	.faq-course-intro h2 {
		max-width: none;
		font-size: clamp(2rem, 10vw, 2.75rem);
	}

	.faq-course-intro .button {
		width: 100%;
	}

	.faq-course-card__head {
		padding: 20px;
	}

	.faq-panel--course {
		padding: 4px 18px 10px;
	}

	.faq-panel--course .faq-item summary {
		min-height: 70px;
		gap: 12px;
		padding: 16px 0;
	}

	.faq-panel--course .faq-item__question {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 10px;
	}

	.faq-panel--course .faq-item__number {
		width: 34px;
		height: 34px;
	}

	.faq-panel--course .faq-item__icon {
		width: 30px;
		height: 30px;
		flex-basis: 30px;
	}

	.faq-panel--course .faq-item__answer {
		padding: 0 4px 18px 44px;
		font-size: 0.92rem;
	}

	.faq-course-card .faq-legal-note {
		padding: 15px 18px 20px;
	}
}

.trainer-section {
	background: #fff;
}

.trainer-profile {
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(34px, 6vw, 82px);
	align-items: center;
}

.trainer-profile__visual {
	margin: 0;
	overflow: hidden;
	border-radius: 30px;
	background: var(--blush);
	box-shadow: 0 24px 64px rgba(56, 31, 39, 0.10);
}

.trainer-profile__picture,
.trainer-profile__picture img {
	display: block;
	width: 100%;
	height: auto;
}

.trainer-profile__content {
	max-width: 690px;
}

.trainer-profile--text-only {
	grid-template-columns: minmax(0, 1fr);
	justify-items: start;
}

.trainer-profile--text-only .trainer-profile__content {
	max-width: 820px;
}

.trainer-profile__content h2 {
	margin-bottom: 8px;
}

.trainer-profile__role {
	margin: 0 0 18px;
	color: var(--accent-dark);
	font-weight: 820;
}

.trainer-profile__credentials {
	margin: 24px 0;
	padding: 20px 22px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: #fff8f7;
}

.trainer-profile__credentials strong {
	display: block;
	margin-bottom: 7px;
}

.trainer-profile__credentials p {
	margin: 0;
	color: var(--muted);
}

@media (max-width: 820px) {
	.trainer-profile {
		grid-template-columns: 1fr;
	}
}


/* --------------------------------------------------------------------------
   Pestañate 6.0 final responsive contract
   Percentage-based by design. No 100vw and no viewport arithmetic.
   -------------------------------------------------------------------------- */
html,
body,
.site-shell {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}
.site-shell,
main,
section,
header,
footer {
  min-width: 0;
}
img,
picture,
video,
iframe,
svg {
  max-width: 100%;
}

@media (max-width: 900px) {
  .site-shell,
  .topbar,
  .site-header,
  main,
  .hero,
  .stat-band,
  .section,
  .site-footer {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .container {
    width: 100% !important;
    max-width: 1180px !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: clamp(14px, 4vw, 22px) !important;
    padding-right: clamp(14px, 4vw, 22px) !important;
  }

  .topbar__inner,
  .site-header__inner,
  .hero__grid,
  .page-hero__grid,
  .section-heading,
  .section-heading--split,
  .split-layout,
  .lead-grid,
  .enrollment-grid,
  .location-panel,
  .contact-layout {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero__grid,
  .page-hero__grid,
  .split-layout,
  .lead-grid,
  .enrollment-grid,
  .location-panel,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hero__content,
  .hero__visual,
  .page-hero__content,
  .page-hero__image {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    justify-self: stretch !important;
  }

  .course-grid,
  .post-grid,
  .student-gallery,
  .stat-grid,
  .course-comparison,
  .course-comparison__scroll {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .course-comparison__scroll {
    overflow-x: auto !important;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 620px) {
  .topbar {
    display: none !important;
  }

  .site-header {
    top: 0 !important;
    width: 100% !important;
  }

  .admin-bar .site-header {
    top: 46px !important;
  }

  .site-header__inner {
    min-height: 62px !important;
    gap: 10px !important;
  }

  .site-brand {
    min-width: 0 !important;
    max-width: calc(100% - 56px) !important;
    gap: 8px !important;
  }

  .site-brand img {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
  }

  .site-brand__text {
    min-width: 0 !important;
  }

  .site-brand__text strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem !important;
  }

  .site-brand__text small {
    display: none !important;
  }

  .nav-toggle {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
  }

  .site-nav {
    max-height: calc(100dvh - 62px) !important;
    padding: 16px !important;
  }

  .hero__grid,
  .page-hero__grid {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    height: auto !important;
    gap: 24px !important;
    padding-top: 30px !important;
    padding-bottom: 38px !important;
  }

  .hero--home h1,
  .hero--course h1,
  .page-hero h1 {
    max-width: none !important;
    margin-bottom: 14px !important;
    font-size: clamp(2.05rem, 9.8vw, 2.75rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -.04em !important;
  }

  .hero__lead,
  .page-hero__lead {
    max-width: none !important;
    margin-bottom: 20px !important;
    font-size: .96rem !important;
    line-height: 1.62 !important;
  }

  .hero__actions,
  .location-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero__actions .button,
  .location-actions .button {
    width: 100% !important;
    min-height: 46px !important;
    justify-content: center !important;
  }

  .trust-list {
    margin-top: 20px !important;
    gap: 9px !important;
  }

  .trust-list li {
    font-size: .86rem !important;
  }

  .hero__visual,
  .page-hero__image {
    width: 100% !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-artwork,
  .hero-artwork img,
  .page-hero__image picture,
  .page-hero__image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .hero-artwork img,
  .page-hero__image img {
    border-radius: 22px !important;
  }

  .section {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  .section-heading,
  .section-heading--split {
    margin-bottom: 26px !important;
  }

  .section-heading h2 {
    max-width: none !important;
    font-size: clamp(1.9rem, 8.8vw, 2.45rem) !important;
    line-height: 1.05 !important;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .course-grid,
  .post-grid,
  .curriculum-grid,
  .values-grid,
  .student-gallery,
  .student-gallery--featured {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .course-grid > :last-child:nth-child(odd),
  .post-grid > :last-child:nth-child(odd) {
    grid-column: auto !important;
    max-width: none !important;
  }

  .whatsapp-float {
    right: 12px !important;
    bottom: 16px !important;
  }
}

@media (max-width: 390px) {
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .hero--home h1,
  .hero--course h1,
  .page-hero h1 {
    font-size: clamp(1.95rem, 9.6vw, 2.45rem) !important;
  }
}

/* --------------------------------------------------------------------------
   Pestañate 6.0 mobile homepage polish
   The desktop comparison table is replaced with true mobile cards.
   -------------------------------------------------------------------------- */
.course-comparison__mobile {
	display: none;
}

@media (max-width: 620px) {
	body.home,
	body.home .site-shell,
	body.home main,
	body.home .hero--home,
	body.home .stat-band,
	body.home .section,
	body.home .site-footer {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	body.home .hero--home {
		overflow: clip !important;
	}

	body.home .hero--home .hero__grid {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		min-height: 0 !important;
		gap: 20px !important;
		padding-top: 24px !important;
		padding-bottom: 32px !important;
	}

	body.home .hero--home .hero__content,
	body.home .hero--home .hero__visual {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
	}

	body.home .hero--home h1 {
		max-width: 15ch !important;
		margin: 0 0 14px !important;
		font-size: clamp(2rem, 9vw, 2.35rem) !important;
		line-height: 1.02 !important;
		letter-spacing: -.035em !important;
		text-wrap: balance;
	}

	body.home .hero--home .eyebrow {
		margin-bottom: 10px !important;
		font-size: .68rem !important;
		letter-spacing: .11em !important;
	}

	body.home .hero--home .hero__lead {
		margin-bottom: 18px !important;
		font-size: .94rem !important;
		line-height: 1.58 !important;
	}

	body.home .hero--home .hero__actions {
		gap: 9px !important;
	}

	body.home .hero--home .hero__actions .button {
		min-height: 44px !important;
		padding: 10px 15px !important;
		font-size: .84rem !important;
	}

	body.home .hero--home .trust-list {
		margin-top: 18px !important;
		gap: 8px !important;
	}

	body.home .hero--home .trust-list li {
		font-size: .82rem !important;
		line-height: 1.45 !important;
	}

	body.home .hero--home .hero__visual {
		max-width: 360px !important;
		justify-self: center !important;
		margin-inline: auto !important;
	}

	body.home .hero--home .hero-artwork,
	body.home .hero--home .hero-artwork img {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
	}

	body.home .stat-grid {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	body.home .stat-grid > div,
	body.home .stat-grid > div:first-child,
	body.home .stat-grid > div:nth-child(3) {
		min-width: 0 !important;
		padding: 16px 10px !important;
		border-right: 1px solid var(--line) !important;
		border-bottom: 1px solid var(--line) !important;
	}

	body.home .stat-grid > div:nth-child(2n) {
		border-right: 0 !important;
	}

	body.home .stat-grid > div:nth-last-child(-n + 2) {
		border-bottom: 0 !important;
	}

	body.home .stat-grid strong {
		font-size: 1.35rem !important;
	}

	body.home .stat-grid span {
		font-size: .68rem !important;
		line-height: 1.35 !important;
	}

	body.home .section {
		padding-top: 46px !important;
		padding-bottom: 46px !important;
	}

	body.home .section-heading,
	body.home .section-heading--split,
	body.home .split-layout,
	body.home .course-grid,
	body.home .student-gallery,
	body.home .feature-panel,
	body.home .reviews-fallback,
	body.home .trustindex-shell {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	body.home .section-heading--split,
	body.home .split-layout {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
	}

	body.home .section-heading h2,
	body.home .section-heading--split h2 {
		font-size: clamp(1.8rem, 8vw, 2.2rem) !important;
		line-height: 1.06 !important;
		text-wrap: balance;
	}

	body.home .course-comparison {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		overflow: hidden !important;
		margin-top: 28px !important;
		padding: 15px !important;
		border-radius: 20px !important;
	}

	body.home .course-comparison__desktop {
		display: none !important;
	}

	body.home .course-comparison__mobile {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 12px !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	.course-compare-card {
		min-width: 0;
		padding: 16px;
		border: 1px solid var(--line);
		border-radius: 16px;
		background: var(--white);
		box-shadow: 0 8px 22px rgba(65,37,45,.05);
	}

	.course-compare-card__top {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 12px;
		min-width: 0;
		margin-bottom: 12px;
	}

	.course-compare-card__top > div {
		min-width: 0;
	}

	.course-compare-card__top small,
	.course-compare-card dt {
		display: block;
		color: var(--muted);
		font-size: .65rem;
		font-weight: 800;
		letter-spacing: .08em;
		text-transform: uppercase;
	}

	.course-compare-card h4 {
		margin: 2px 0 0;
		font-family: var(--serif);
		font-size: 1.08rem;
		line-height: 1.18;
	}

	.course-compare-card__top > strong {
		flex: 0 0 auto;
		color: var(--accent-dark);
		font-family: var(--serif);
		font-size: 1.2rem;
		line-height: 1.1;
		white-space: nowrap;
	}

	.course-compare-card dl {
		display: grid;
		gap: 7px;
		margin: 0 0 14px;
	}

	.course-compare-card dl > div {
		display: flex;
		align-items: baseline;
		justify-content: space-between;
		gap: 12px;
		min-width: 0;
		padding-bottom: 7px;
		border-bottom: 1px solid #f0e7e7;
	}

	.course-compare-card dd {
		margin: 0;
		min-width: 0;
		color: var(--ink-soft);
		font-size: .8rem;
		font-weight: 650;
		text-align: right;
	}

	.course-compare-card .button {
		width: 100%;
		min-height: 42px;
		justify-content: center;
	}

	body.home .trustindex-shell,
	body.home .trustindex-shell > *,
	body.home .trustindex-shell iframe,
	body.home .reviews-fallback {
		max-width: 100% !important;
	}
}

@media (max-width: 360px) {
	body.home .container {
		padding-left: 11px !important;
		padding-right: 11px !important;
	}

	body.home .hero--home h1 {
		font-size: 1.95rem !important;
	}

	body.home .stat-grid {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	body.home .stat-grid > div,
	body.home .stat-grid > div:first-child,
	body.home .stat-grid > div:nth-child(3),
	body.home .stat-grid > div:nth-child(2n),
	body.home .stat-grid > div:nth-last-child(-n + 2) {
		border-right: 0 !important;
		border-bottom: 1px solid var(--line) !important;
	}

	body.home .stat-grid > div:last-child {
		border-bottom: 0 !important;
	}
}
