@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/montserrat-latin-regular.woff2") format("woff2");
	unicode-range: U+0020-007E, U+00A0-00FF, U+0100-017F, U+2010-205E, U+20AC, U+2190-2193;
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/montserrat-latin-bold.woff2") format("woff2");
	unicode-range: U+0020-007E, U+00A0-00FF, U+0100-017F, U+2010-205E, U+20AC, U+2190-2193;
}

:root {
	--sm-blue: #3a66a3;
	--sm-blue-dark: #244c84;
	--sm-blue-soft: #eaf0f8;
	--sm-gold: #e6d3a8;
	--sm-gold-dark: #cbb17c;
	--sm-cream: #f7f5ef;
	--sm-paper: #fffdf8;
	--sm-white: #ffffff;
	--sm-ink: #172235;
	--sm-text: #334155;
	--sm-muted: #667085;
	--sm-line: #dde4ed;
	--sm-success: #2f6c4f;
	--sm-shadow-sm: 0 12px 32px rgba(23, 34, 53, 0.07);
	--sm-shadow-lg: 0 26px 70px rgba(24, 48, 83, 0.14);
	--sm-radius-sm: 12px;
	--sm-radius: 20px;
	--sm-radius-lg: 32px;
	--sm-container: 1180px;
	--sm-section: clamp(66px, 7.5vw, 100px);
}

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

html {
	scroll-behavior: smooth;
}

body.soy-meshal-storefront {
	margin: 0;
	overflow-x: clip;
	color: var(--sm-text);
	background: var(--sm-cream);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--sm-blue);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.55em;
	color: var(--sm-ink);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

h1 {
	font-size: clamp(1.85rem, 3.2vw, 2.4rem);
	font-weight: 700;
}

h2 {
	font-size: clamp(1.45rem, 2.4vw, 1.8rem);
}

h3 {
	font-size: clamp(1rem, 1.45vw, 1.16rem);
}

p {
	margin: 0 0 1.25em;
}

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

.sm-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 9999;
	padding: 10px 15px;
	color: var(--sm-white);
	background: var(--sm-ink);
	border-radius: 8px;
	transform: translateY(-160%);
}

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

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

.sm-section {
	padding-block: var(--sm-section);
}

.sm-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 18px;
	color: var(--sm-blue);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sm-eyebrow::before {
	width: 26px;
	height: 2px;
	content: "";
	background: var(--sm-gold-dark);
}

.sm-button,
.woocommerce a.button,
.woocommerce a.button.alt,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 11px 20px;
	border: 1px solid var(--sm-blue);
	border-radius: var(--sm-radius-sm);
	color: var(--sm-white);
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	background: var(--sm-blue);
	box-shadow: none;
	cursor: pointer;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sm-button:hover,
.sm-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce a.button.alt:focus-visible,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	color: var(--sm-white);
	background: var(--sm-blue-dark);
	border-color: var(--sm-blue-dark);
	box-shadow: none;
	transform: translateY(-1px);
}

.sm-button-small {
	min-height: 42px;
	padding: 10px 16px;
	font-size: 0.8rem;
}

.sm-button-outline {
	width: 100%;
	color: var(--sm-blue);
	background: transparent;
	box-shadow: none;
}

.sm-button-outline:hover,
.sm-button-outline:focus-visible {
	color: var(--sm-white);
}

/* Header */
.sm-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(36, 76, 132, 0.97);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.sm-header-inner {
	display: flex;
	min-height: 78px;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.sm-brand,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--sm-white);
	font-weight: 700;
	text-decoration: none;
}

.sm-brand img,
.custom-logo {
	width: 48px;
	height: 48px;
	object-fit: contain;
	padding: 2px;
	border-radius: 50%;
	background: var(--sm-white);
}

.sm-primary-nav {
	display: flex;
	align-items: center;
	gap: 22px;
}

.sm-menu,
.sm-primary-nav .menu {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sm-menu a,
.sm-primary-nav .menu a,
.sm-account-link {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.86rem;
	font-weight: 700;
	text-decoration: none;
}

.sm-menu a:hover,
.sm-primary-nav .menu a:hover,
.sm-account-link:hover {
	color: var(--sm-gold);
}

.sm-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 11px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 10px;
	background: transparent;
}

.sm-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--sm-white);
}

.sm-account-site-header .sm-header-inner {
	min-height: 70px;
}

.sm-account-header-actions {
	display: flex;
	align-items: center;
	gap: 22px;
}

.sm-account-header-actions a {
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.76rem;
	font-weight: 700;
	text-decoration: none;
}

.sm-account-header-actions a:hover {
	color: var(--sm-gold);
}

.sm-account-header-actions .sm-account-header-signout {
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
}

.sm-checkout-site-header .sm-header-inner {
	min-height: 70px;
}

.sm-checkout-header-actions {
	display: flex;
	align-items: center;
	gap: 22px;
}

.sm-checkout-header-actions a {
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.76rem;
	font-weight: 700;
	text-decoration: none;
}

.sm-checkout-header-actions a:hover {
	color: var(--sm-gold);
}

/* Hero */
.sm-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #faf9f6 0%, #f2f5f8 100%);
}

.sm-hero::after {
	display: none;
}

.sm-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: min(625px, calc(100svh - 78px));
	grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.82fr);
	align-items: center;
	gap: clamp(42px, 6vw, 78px);
	padding-block: clamp(60px, 7vw, 88px) 24px;
}

.sm-hero-copy {
	padding-bottom: 24px;
}

.sm-hero-copy h1 {
	max-width: 720px;
	margin-bottom: 24px;
	font-size: clamp(1.85rem, 3.2vw, 2.4rem);
}

.sm-hero-lead {
	max-width: 650px;
	margin-bottom: 32px;
	color: var(--sm-text);
	font-size: clamp(1rem, 1.55vw, 1.16rem);
	line-height: 1.8;
}

.sm-hero-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 30px;
}

.sm-text-link {
	color: var(--sm-ink);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.sm-text-link:hover {
	color: var(--sm-blue);
}

.sm-hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin: 0;
	padding: 0;
	color: var(--sm-muted);
	font-size: 0.8rem;
	font-weight: 700;
	list-style: none;
}

.sm-hero-points li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sm-hero-points li::before {
	display: grid;
	width: 18px;
	height: 18px;
	place-items: center;
	content: "✓";
	border-radius: 50%;
	color: var(--sm-blue);
	font-size: 0.65rem;
	background: rgba(58, 102, 163, 0.11);
}

.sm-hero-visual {
	position: relative;
	display: flex;
	min-height: 500px;
	align-items: flex-end;
	justify-content: center;
	align-self: end;
}

.sm-hero-visual > img {
	position: relative;
	z-index: 2;
	display: block;
	width: min(100%, 462px);
	filter: drop-shadow(0 18px 24px rgba(25, 45, 71, 0.14));
}

.sm-portrait-orbit {
	position: absolute;
	left: 50%;
	bottom: 24px;
	width: min(88%, 430px);
	aspect-ratio: 1;
	border-radius: 50%;
	background: #dfe7f0;
	box-shadow: none;
	transform: translateX(-50%);
}

.sm-hero-note {
	position: absolute;
	right: -12px;
	bottom: 70px;
	z-index: 3;
	display: flex;
	width: 178px;
	align-items: center;
	gap: 11px;
	padding: 14px 16px;
	border: 1px solid rgba(58, 102, 163, 0.12);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--sm-shadow-sm);
}

.sm-hero-note strong {
	color: var(--sm-blue);
	font-size: 1.35rem;
}

.sm-hero-note span {
	color: var(--sm-muted);
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1.35;
}

/* Statistics */
.sm-stats {
	position: relative;
	z-index: 5;
	border-block: 1px solid var(--sm-line);
	background: var(--sm-cream);
}

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

.sm-stats-grid > div {
	position: relative;
	display: flex;
	min-height: 118px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
}

.sm-stats-grid > div:not(:last-child)::after {
	position: absolute;
	top: 30%;
	right: 0;
	width: 1px;
	height: 40%;
	content: "";
	background: rgba(23, 34, 53, 0.11);
}

.sm-stats strong {
	color: var(--sm-blue-dark);
	font-size: clamp(1.5rem, 3vw, 2.05rem);
	line-height: 1;
}

.sm-stats span {
	margin-top: 10px;
	color: var(--sm-muted);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Shared headings */
.sm-section-heading {
	max-width: 750px;
	margin: 0 auto 46px;
	text-align: center;
}

.sm-section-heading > p:last-child {
	max-width: 680px;
	margin: 0 auto;
	color: var(--sm-muted);
}

.sm-section-heading-left {
	margin: 0;
	text-align: left;
}

.sm-section-heading-left > p:last-child {
	margin-left: 0;
}

/* Programs */
.sm-programs {
	background: var(--sm-paper);
}

.sm-course-family {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.35fr);
	gap: clamp(38px, 6vw, 82px);
	padding: clamp(36px, 5vw, 68px);
	border: 1px solid rgba(58, 102, 163, 0.14);
	border-radius: 38px;
	background:
		radial-gradient(circle at 7% 12%, rgba(230, 211, 168, 0.24), transparent 28%),
		var(--sm-white);
	box-shadow: 0 24px 70px rgba(24, 48, 83, 0.08);
}

.sm-course-intro {
	align-self: center;
}

.sm-course-intro h2 {
	max-width: 430px;
	font-size: clamp(1.5rem, 2.4vw, 1.8rem);
}

.sm-course-intro > p:not(.sm-eyebrow):not(.sm-course-guidance) {
	max-width: 460px;
	color: var(--sm-muted);
	font-size: 0.94rem;
}

.sm-course-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 30px 0;
	border-block: 1px solid var(--sm-line);
}

.sm-course-facts > div {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 18px 10px 18px 0;
}

.sm-course-facts > div:not(:last-child) {
	border-right: 1px solid var(--sm-line);
}

.sm-course-facts > div:not(:first-child) {
	padding-left: 14px;
}

.sm-course-facts strong {
	color: var(--sm-blue-dark);
	font-size: 1.2rem;
	line-height: 1.1;
}

.sm-course-facts span {
	margin-top: 7px;
	color: var(--sm-muted);
	font-size: 0.62rem;
	font-weight: 700;
	line-height: 1.4;
}

.sm-course-guidance {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 26px;
	color: var(--sm-text);
	font-size: 0.77rem;
	line-height: 1.6;
}

.sm-course-guidance > span {
	display: grid;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	place-items: center;
	border-radius: 50%;
	color: var(--sm-blue);
	background: var(--sm-blue-soft);
}

.sm-program-grid {
	display: grid;
	max-width: 1040px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	margin: 0 auto;
}

.sm-program-card {
	position: relative;
	display: grid;
	min-width: 0;
	grid-template-columns: 176px minmax(0, 1fr);
	overflow: hidden;
	border: 1px solid var(--sm-line);
	border-radius: 18px;
	color: inherit;
	text-decoration: none;
	background: var(--sm-white);
	box-shadow: 0 8px 28px rgba(23, 34, 53, 0.045);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sm-program-card:hover {
	color: inherit;
	border-color: rgba(58, 102, 163, 0.32);
	box-shadow: 0 12px 32px rgba(23, 34, 53, 0.07);
	transform: translateY(-2px);
}

.sm-program-image {
	position: relative;
	display: grid;
	min-height: 100%;
	place-items: center;
	overflow: hidden;
	border-right: 1px solid rgba(23, 34, 53, 0.06);
	background: linear-gradient(145deg, #f7f6f3 0%, #eef2f6 100%);
}

.sm-program-image img {
	position: relative;
	z-index: 1;
	width: auto;
	height: 232px;
	object-fit: contain;
	filter: drop-shadow(0 12px 18px rgba(23, 34, 53, 0.1));
	transition: transform 220ms ease;
}

.sm-program-card:hover .sm-program-image img {
	transform: translateY(-2px) scale(1.01);
}

.sm-program-level {
	display: inline-flex;
	align-self: flex-start;
	margin-bottom: 12px;
	padding: 5px 9px;
	border: 1px solid rgba(58, 102, 163, 0.18);
	border-radius: 999px;
	color: var(--sm-blue-dark);
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: transparent;
}

.sm-program-body {
	display: flex;
	min-height: 320px;
	flex: 1;
	flex-direction: column;
	padding: 26px;
}

.sm-program-body h3 {
	max-width: 430px;
	font-size: clamp(1.05rem, 1.45vw, 1.16rem);
	line-height: 1.3;
}

.sm-program-price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: auto 0 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--sm-line);
	color: var(--sm-blue);
	font-weight: 600;
}

.sm-program-price .amount,
.sm-price-main {
	font-size: 1.45rem;
}

.sm-price-alt {
	color: var(--sm-muted);
	font-size: 0.76rem;
}

.sm-program-description {
	margin-bottom: 18px;
	color: var(--sm-muted);
	font-size: 0.82rem;
}

.sm-program-course-note {
	margin: 0 0 18px;
	color: var(--sm-muted);
	font-size: 0.75rem;
}

.sm-program-body ul,
.sm-consultation-copy ul {
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.sm-program-body ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 24px;
}

.sm-program-body li,
.sm-consultation-copy li {
	position: relative;
	margin: 0 0 11px;
	padding-left: 27px;
	color: var(--sm-text);
	font-size: 0.82rem;
}

.sm-program-body li::before,
.sm-consultation-copy li::before {
	position: absolute;
	left: 0;
	top: 2px;
	color: var(--sm-success);
	font-weight: 700;
	content: "✓";
}

.sm-program-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	border-top: 1px solid var(--sm-line);
	color: var(--sm-ink);
	font-size: 0.72rem;
	font-weight: 600;
	text-decoration: none;
	margin-top: auto;
}

.sm-program-link:hover {
	color: var(--sm-blue);
}

.sm-course-roadmap {
	position: relative;
	display: grid;
	max-width: 1120px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 auto;
	isolation: isolate;
}

.sm-course-roadmap::before {
	position: absolute;
	z-index: -1;
	top: 15px;
	left: 12.5%;
	right: 12.5%;
	height: 1px;
	background: rgba(58, 102, 163, 0.22);
	content: "";
}

.sm-course-stage {
	display: flex;
	min-width: 0;
	align-items: center;
	flex-direction: column;
	padding: 0 clamp(10px, 1.5vw, 22px);
	text-align: center;
}

.sm-course-stage-number {
	z-index: 1;
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border: 1px solid rgba(58, 102, 163, 0.26);
	border-radius: 50%;
	background: var(--sm-paper);
	color: var(--sm-blue);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.sm-course-stage-cover {
	display: grid;
	width: min(100%, 228px);
	height: 294px;
	place-items: center;
	margin: 22px 0 20px;
	overflow: hidden;
	border: 1px solid rgba(58, 102, 163, 0.1);
	border-radius: 16px;
	background:
		radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.96), transparent 57%),
		rgba(255, 255, 255, 0.48);
}

.sm-course-stage-cover img {
	display: block;
	width: auto;
	height: 260px;
	max-width: 90%;
	object-fit: contain;
	filter: drop-shadow(0 12px 18px rgba(23, 34, 53, 0.12));
}

.sm-course-stage-copy p {
	margin: 0 0 7px;
	color: var(--sm-blue);
	font-size: 0.61rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sm-course-stage-copy h3 {
	margin: 0;
	font-size: clamp(0.91rem, 1.25vw, 1.04rem);
	line-height: 1.4;
}

.sm-course-stage-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 9px;
	margin-top: 15px;
	color: var(--sm-blue);
	font-weight: 600;
}

.sm-course-stage-price .sm-price-main {
	font-size: 1.16rem;
}

.sm-program-cta {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.sm-package-includes {
	display: grid;
	max-width: 1040px;
	grid-template-columns: minmax(230px, 0.64fr) minmax(0, 1.36fr);
	gap: clamp(34px, 6vw, 72px);
	margin: 34px auto 0;
	padding: 32px 34px;
	border: 1px solid var(--sm-line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.62);
}

.sm-package-heading h3 {
	margin: 0;
	font-size: 1.08rem;
}

.sm-package-includes ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 13px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sm-package-includes li {
	position: relative;
	padding-left: 22px;
	color: var(--sm-text);
	font-size: 0.76rem;
	line-height: 1.55;
}

.sm-package-includes li::before {
	position: absolute;
	left: 0;
	top: 0;
	color: var(--sm-blue);
	content: "✓";
	font-weight: 700;
}

/* Learning platform */
.sm-platform {
	position: relative;
	overflow: hidden;
	color: var(--sm-white);
	background: #172235;
}

.sm-platform::before {
	position: absolute;
	right: -180px;
	top: -220px;
	width: 620px;
	height: 620px;
	content: "";
	border-radius: 50%;
	background: rgba(58, 102, 163, 0.18);
	filter: blur(2px);
}

.sm-platform-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
	align-items: center;
	gap: clamp(48px, 6vw, 84px);
}

.sm-platform-copy h2 {
	max-width: 480px;
	color: var(--sm-white);
}

.sm-platform-copy > p:not(.sm-eyebrow) {
	max-width: 500px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.92rem;
}

.sm-platform-features {
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.sm-platform-features li {
	display: flex;
	gap: 16px;
	padding: 17px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sm-platform-features > li > span {
	padding-top: 2px;
	color: var(--sm-gold);
	font-size: 0.7rem;
	font-weight: 700;
}

.sm-platform-features strong {
	display: block;
	margin-bottom: 3px;
	color: var(--sm-white);
	font-size: 0.82rem;
}

.sm-platform-features p {
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.71rem;
}

.sm-platform-preview {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 22px;
	background: #f5f7fa;
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
	transform: perspective(1200px) rotateY(-2deg);
}

.sm-platform-windowbar {
	display: flex;
	height: 36px;
	align-items: center;
	gap: 6px;
	padding: 0 14px;
	border-bottom: 1px solid #e0e5ec;
	background: #fff;
}

.sm-platform-windowbar > span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #d7dde5;
}

.sm-platform-windowbar small {
	margin-left: auto;
	color: #7a8798;
	font-size: 0.52rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sm-platform-app {
	display: grid;
	min-height: 460px;
	grid-template-columns: 58px 1fr;
}

.sm-platform-app aside {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 19px;
	padding: 17px 10px;
	background: #fff;
}

.sm-platform-app aside img {
	width: 34px;
	height: 34px;
	margin-bottom: 13px;
	object-fit: contain;
}

.sm-platform-app aside span {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 8px;
	color: #8792a2;
	font-size: 0.7rem;
}

.sm-platform-app aside span.is-active {
	color: #fff;
	background: var(--sm-blue);
}

.sm-platform-dashboard {
	padding: 24px;
	color: var(--sm-text);
	background: #f7f8fa;
}

.sm-platform-dashboard > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.sm-platform-dashboard > header div {
	display: flex;
	flex-direction: column;
}

.sm-platform-dashboard > header small,
.sm-platform-continue small,
.sm-platform-bottom small {
	color: #8b96a6;
	font-size: 0.46rem;
	font-weight: 700;
	letter-spacing: 0.11em;
}

.sm-platform-dashboard > header strong {
	color: var(--sm-ink);
	font-size: 1rem;
}

.sm-platform-dashboard > header > span {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border-radius: 50%;
	color: #fff;
	font-size: 0.64rem;
	font-weight: 700;
	background: var(--sm-blue);
}

.sm-platform-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 9px;
	margin-bottom: 12px;
}

.sm-platform-metrics > div {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 12px;
	border: 1px solid #e4e8ed;
	border-radius: 11px;
	background: #fff;
}

.sm-platform-metrics span {
	overflow: hidden;
	color: #7c8796;
	font-size: 0.47rem;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sm-platform-metrics strong {
	margin: 8px 0 9px;
	color: var(--sm-blue-dark);
	font-size: 0.9rem;
}

.sm-platform-metrics strong small {
	color: #9aa3b0;
	font-size: 0.46rem;
}

.sm-platform-metrics i {
	position: relative;
	display: block;
	height: 3px;
	overflow: hidden;
	border-radius: 99px;
	background: #e8ecf1;
}

.sm-platform-metrics i::after {
	display: block;
	width: var(--metric);
	height: 100%;
	content: "";
	border-radius: inherit;
	background: var(--sm-blue);
}

.sm-platform-continue {
	display: grid;
	grid-template-columns: 82px 1fr;
	align-items: center;
	gap: 20px;
	min-height: 154px;
	padding: 20px;
	border-radius: 14px;
	color: #fff;
	background: linear-gradient(135deg, var(--sm-blue) 0%, var(--sm-blue-dark) 100%);
}

.sm-progress-ring {
	display: grid;
	width: 70px;
	height: 70px;
	place-items: center;
	border-radius: 50%;
	background: conic-gradient(var(--sm-gold) 64%, rgba(255, 255, 255, 0.18) 0);
}

.sm-progress-ring::before {
	grid-area: 1 / 1;
	width: 54px;
	height: 54px;
	content: "";
	border-radius: 50%;
	background: var(--sm-blue-dark);
}

.sm-progress-ring span {
	z-index: 1;
	grid-area: 1 / 1;
	font-size: 0.72rem;
	font-weight: 700;
}

.sm-platform-continue > div:last-child {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.sm-platform-continue strong {
	margin: 2px 0 4px;
	color: #fff;
	font-size: 0.9rem;
}

.sm-platform-continue p {
	margin: 0 0 11px;
	color: rgba(255, 255, 255, 0.67);
	font-size: 0.56rem;
}

.sm-preview-button {
	padding: 6px 9px;
	border-radius: 6px;
	color: var(--sm-blue-dark);
	font-size: 0.52rem;
	font-weight: 700;
	background: #fff;
}

.sm-preview-button b {
	margin-left: 8px;
}

.sm-platform-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 12px;
}

.sm-platform-bottom > div {
	padding: 13px;
	border: 1px solid #e4e8ed;
	border-radius: 10px;
	background: #fff;
}

.sm-platform-bottom strong {
	display: block;
	margin: 4px 0 2px;
	color: var(--sm-ink);
	font-size: 0.65rem;
}

.sm-platform-bottom p {
	margin: 0;
	color: #8a94a3;
	font-size: 0.48rem;
}

/* Public platform feature overview. This is intentionally separate from course package contents. */
.sm-platform {
	color: var(--sm-text);
	background: var(--sm-cream);
}

.sm-platform::before {
	display: none;
}

.sm-platform .sm-section-heading {
	position: relative;
	z-index: 1;
	max-width: 780px;
}

.sm-platform-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	overflow: hidden;
	border: 1px solid rgba(23, 34, 53, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.72);
}

.sm-platform-feature {
	min-width: 0;
	min-height: 170px;
	padding: 28px 32px;
	border: 0;
	border-bottom: 1px solid rgba(23, 34, 53, 0.08);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.sm-platform-feature:nth-child(odd):not(.sm-platform-feature-wide) {
	border-right: 1px solid rgba(23, 34, 53, 0.08);
}

.sm-platform-feature-wide {
	display: flex;
	min-height: 130px;
	grid-column: 1 / -1;
	align-items: center;
	gap: 20px;
	border-bottom: 0;
}

.sm-platform-icon {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	margin-bottom: 22px;
	border: 1px solid rgba(58, 102, 163, 0.18);
	border-radius: 50%;
	color: var(--sm-blue-dark);
	background: transparent;
}

.sm-platform-icon svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.sm-platform-feature-wide .sm-platform-icon {
	flex: 0 0 38px;
	margin: 0;
}

.sm-platform-feature h3 {
	margin-bottom: 8px;
	font-size: 1rem;
}

.sm-platform-feature p {
	margin: 0;
	color: var(--sm-muted);
	font-size: 0.8rem;
}

/* Calm, editorial platform overview with no simulated interface. */
.sm-platform {
	background: #f5f4f0;
}

.sm-platform-layout {
	display: block;
}

.sm-platform-copy {
	max-width: 720px;
	margin: 0 auto 48px;
	text-align: center;
}

.sm-platform-copy h2 {
	max-width: 620px;
	margin-inline: auto;
	color: var(--sm-ink);
}

.sm-platform-copy > p:not(.sm-eyebrow) {
	max-width: 620px;
	margin-inline: auto;
	color: var(--sm-muted);
	font-size: 0.88rem;
}

.sm-platform-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(23, 34, 53, 0.14);
	border-bottom: 1px solid rgba(23, 34, 53, 0.14);
	list-style: none;
}

.sm-platform-list li {
	display: flex;
	min-width: 0;
	min-height: 176px;
	flex-direction: column;
	padding: 28px 24px 26px;
	border-right: 1px solid rgba(23, 34, 53, 0.11);
}

.sm-platform-list li:nth-child(-n+4) {
	border-bottom: 1px solid rgba(23, 34, 53, 0.11);
}

.sm-platform-list li:nth-child(4n) {
	border-right: 0;
}

.sm-platform-tool-icon {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	margin-bottom: 21px;
	color: var(--sm-blue);
}

.sm-platform-tool-icon svg {
	display: block;
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.35;
}

.sm-platform-list h3 {
	margin: 0 0 7px;
	font-size: 0.92rem;
}

.sm-platform-list p {
	margin: 0;
	color: var(--sm-muted);
	font-size: 0.72rem;
	line-height: 1.6;
}

/* Video */
.sm-video-section {
	color: var(--sm-white);
	background: var(--sm-ink);
}

.sm-video-section h2 {
	color: var(--sm-white);
}

.sm-video-section .sm-eyebrow {
	color: var(--sm-gold);
}

.sm-video-section .sm-section-heading p:last-child {
	color: rgba(255, 255, 255, 0.68);
}

.sm-video-grid {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	align-items: center;
	gap: clamp(48px, 7vw, 92px);
}

.sm-video {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 16px;
	background: #0b111c;
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.sm-video button {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.sm-video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.72;
	transition: opacity 180ms ease, transform 360ms ease;
}

.sm-video button:hover img {
	opacity: 0.88;
	transform: scale(1.015);
}

.sm-video button span {
	position: absolute;
	left: 50%;
	top: 50%;
	display: grid;
	width: 66px;
	height: 66px;
	place-items: center;
	padding-left: 5px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.72);
	color: var(--sm-white);
	font-size: 1.18rem;
	background: transparent;
	backdrop-filter: none;
	box-shadow: none;
	transform: translate(-50%, -50%);
}

.sm-video button .sm-play-icon::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-left: 5px;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 15px solid currentColor;
}

.sm-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Reviews */
.sm-reviews {
	overflow: hidden;
	background: var(--sm-paper);
}

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

.sm-review-grid blockquote {
	display: flex;
	min-height: 330px;
	flex-direction: column;
	margin: 0;
	padding: 30px;
	border: 1px solid var(--sm-line);
	border-radius: var(--sm-radius);
	background: var(--sm-white);
	box-shadow: var(--sm-shadow-sm);
}

.sm-review-grid blockquote:nth-child(2) {
	color: var(--sm-white);
	background: var(--sm-blue);
	border-color: var(--sm-blue);
	transform: translateY(-16px);
}

.sm-review-grid blockquote:nth-child(2) p,
.sm-review-grid blockquote:nth-child(2) span {
	color: rgba(255, 255, 255, 0.78);
}

.sm-stars {
	margin-bottom: 24px;
	color: #e6b84c;
	font-size: 1rem;
	letter-spacing: 0.12em;
}

.sm-review-grid blockquote > p {
	color: var(--sm-text);
	font-size: 0.9rem;
}

.sm-review-grid blockquote footer {
	display: flex;
	flex-direction: column;
	margin-top: auto;
}

.sm-review-grid blockquote footer strong {
	font-size: 0.88rem;
}

.sm-review-grid blockquote footer span {
	color: var(--sm-muted);
	font-size: 0.72rem;
}

.sm-reviews-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 34px;
	margin-bottom: 40px;
}

.sm-reviews-header .sm-section-heading {
	max-width: 680px;
	margin: 0;
}

.sm-review-controls {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 10px;
}

.sm-review-controls > span {
	min-width: 84px;
	margin-right: 6px;
	color: var(--sm-muted);
	font-size: 0.72rem;
	font-weight: 700;
	text-align: right;
}

.sm-review-controls button {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	padding: 0;
	border: 1px solid var(--sm-line);
	border-radius: 10px;
	color: var(--sm-ink);
	font-size: 1.1rem;
	background: var(--sm-white);
	cursor: pointer;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.sm-review-controls button:hover,
.sm-review-controls button:focus-visible {
	color: var(--sm-white);
	background: var(--sm-blue);
	border-color: var(--sm-blue);
	transform: translateY(-1px);
}

.sm-review-track {
	display: grid;
	align-items: start;
	grid-auto-columns: calc((100% - 40px) / 3);
	grid-auto-flow: column;
	gap: 20px;
	overflow-x: auto;
	padding: 4px 4px 22px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	overscroll-behavior-inline: contain;
}

.sm-review-track::-webkit-scrollbar {
	display: none;
}

.sm-review-slide {
	display: flex;
	min-height: 330px;
	flex-direction: column;
	margin: 0;
	padding: 26px;
	border: 1px solid var(--sm-line);
	border-radius: 16px;
	background: var(--sm-white);
	box-shadow: 0 7px 24px rgba(23, 34, 53, 0.04);
	scroll-snap-align: start;
}

.sm-review-slide:nth-child(3n+2) {
	color: inherit;
	background: var(--sm-white);
	border-color: var(--sm-line);
}

.sm-review-slide:nth-child(3n+2) p,
.sm-review-slide:nth-child(3n+2) .sm-review-card-top span,
.sm-review-slide:nth-child(3n+2) footer {
	color: var(--sm-muted);
}

.sm-review-card-top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.sm-review-avatar {
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	place-items: center;
	border-radius: 50%;
	color: var(--sm-blue-dark);
	font-size: 0.82rem;
	font-weight: 700;
	background: var(--sm-blue-soft);
}

.sm-review-card-top > div {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.sm-review-card-top strong {
	color: inherit;
	font-size: 0.82rem;
}

.sm-review-card-top span:not(.sm-review-avatar) {
	color: var(--sm-muted);
	font-size: 0.68rem;
}

.sm-review-slide .sm-stars {
	margin-bottom: 20px;
	font-size: 0.9rem;
}

.sm-review-slide > .sm-review-text {
	display: -webkit-box;
	overflow: hidden;
	color: var(--sm-text);
	font-size: 0.84rem;
	line-height: 1.75;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
}

.sm-review-slide.is-expanded > .sm-review-text {
	display: block;
	overflow: visible;
}

.sm-review-toggle {
	align-self: flex-start;
	margin-top: 12px;
	padding: 0 0 2px;
	border: 0;
	border-bottom: 1px solid currentColor;
	border-radius: 0;
	color: var(--sm-blue-dark);
	font: inherit;
	font-size: 0.72rem;
	font-weight: 700;
	background: transparent;
	cursor: pointer;
}

.sm-review-toggle:hover,
.sm-review-toggle:focus-visible {
	color: var(--sm-blue);
}

.sm-review-slide footer {
	margin-top: auto;
	color: var(--sm-muted);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Consultation */
.sm-consultation {
	position: relative;
	overflow: hidden;
	background: #f1f4f7;
}

.sm-consultation-grid {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	align-items: start;
	gap: clamp(44px, 7vw, 96px);
}

.sm-consultation-copy {
	position: sticky;
	top: 126px;
}

.sm-consultation-copy > p:not(.sm-eyebrow) {
	color: var(--sm-muted);
}

.sm-booking-shell {
	position: relative;
	min-height: 420px;
	padding: clamp(20px, 3vw, 34px);
	border: 1px solid rgba(58, 102, 163, 0.13);
	border-radius: 18px;
	background: var(--sm-white);
	box-shadow: 0 12px 40px rgba(23, 34, 53, 0.07);
}

.sm-booking-lazy-state {
	display: grid;
	min-height: 350px;
	place-items: center;
	align-content: center;
	gap: 18px;
	padding: 30px;
	border: 1px solid rgba(58, 102, 163, 0.12);
	border-radius: 14px;
	color: var(--sm-muted);
	text-align: center;
	background: var(--sm-cream);
}

.sm-booking-lazy-state strong {
	color: var(--sm-ink);
	font-size: 0.9rem;
	font-weight: 600;
}

.sm-booking-shell:not(.is-ready) .amelia-v2-booking {
	height: 0;
	overflow: hidden;
}

.sm-booking-shell.is-ready .sm-booking-lazy-state {
	display: none;
}

.sm-booking-shell.has-error .sm-booking-lazy-state {
	border-style: dashed;
}

.sm-booking-shell .amelia-v2-booking {
	--am-font-family: "Montserrat", Arial, sans-serif !important;
	--am-c-primary: #3a66a3 !important;
	--am-c-btn-prim: #3a66a3 !important;
	--am-c-sb-bgr: #244c84 !important;
	--am-rad-inp: 9px !important;
	--am-h-inp: 44px !important;
	--el-color-primary: #3a66a3 !important;
	font-family: "Montserrat", Arial, sans-serif !important;
}

.sm-booking-shell .am-fs__wrapper {
	overflow: hidden;
	width: 100% !important;
	margin: 24px 0 !important;
	border: 1px solid rgba(23, 34, 53, 0.08);
	border-radius: 14px !important;
	box-shadow: none !important;
}

@media (min-width: 861px) {
	.sm-booking-shell .am-fs-sb {
		width: 210px !important;
	}

	.sm-booking-shell .am-fs__main {
		width: auto !important;
		flex: 1 1 auto !important;
	}
}

.sm-booking-shell .am-button {
	min-height: 44px !important;
	border-radius: 9px !important;
	font-family: "Montserrat", Arial, sans-serif !important;
	font-weight: 600 !important;
	box-shadow: none !important;
}

.sm-booking-shell .el-select__wrapper,
.sm-booking-shell input {
	border-radius: 9px !important;
}

.sm-booking-placeholder {
	display: grid;
	min-height: 350px;
	place-items: center;
	align-content: center;
	padding: 30px;
	border: 1px dashed rgba(58, 102, 163, 0.28);
	border-radius: var(--sm-radius);
	text-align: center;
	background: var(--sm-cream);
}

.sm-booking-placeholder strong {
	color: var(--sm-ink);
	font-size: 1.2rem;
}

.sm-booking-placeholder p {
	margin: 7px 0 0;
	color: var(--sm-muted);
	font-size: 0.85rem;
}

/* Footer */
.sm-site-footer {
	padding-top: 56px;
	color: rgba(255, 255, 255, 0.75);
	background: var(--sm-blue-dark);
}

.sm-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.7fr 1fr 1fr;
	gap: clamp(32px, 4vw, 56px);
	padding-bottom: 38px;
}

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

.sm-site-footer .sm-brand img {
	padding: 2px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.96);
}

.sm-footer-brand > p {
	max-width: 470px;
	margin-top: 22px;
}

.sm-site-footer h2 {
	margin-bottom: 20px;
	color: var(--sm-gold);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sm-site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sm-site-footer li {
	margin-bottom: 10px;
}

.sm-site-footer a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.84rem;
	text-decoration: none;
}

.sm-site-footer a:hover {
	color: var(--sm-gold);
}

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

.sm-social-links a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
}

.sm-social-links svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.sm-social-links circle:last-child {
	fill: currentColor;
	stroke: none;
}

.sm-footer-email {
	display: inline-block;
	margin-top: 20px;
}

.sm-payment-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding-block: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sm-payment-row > p {
	margin: 0;
	flex: 0 0 auto;
	font-size: 0.7rem;
}

.sm-payment-logos {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 8px;
}

.sm-payment-logos > span {
	display: grid;
	width: 62px;
	height: 38px;
	place-items: center;
	padding: 6px 8px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: var(--sm-white);
}

.sm-account-footer {
	border-top: 1px solid var(--sm-line);
	background: var(--sm-paper);
}

.sm-account-footer > .sm-container {
	display: flex;
	min-height: 88px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.sm-account-footer p {
	margin: 0;
	color: var(--sm-muted);
	font-size: 0.68rem;
}

.sm-account-footer nav {
	display: flex;
	gap: 22px;
}

.sm-account-footer a {
	color: var(--sm-muted);
	font-size: 0.68rem;
	font-weight: 600;
	text-decoration: none;
}

.sm-account-footer a:hover {
	color: var(--sm-blue);
}

.sm-payment-logos img {
	display: block;
	width: auto;
	max-width: 48px;
	height: auto;
	max-height: 25px;
}

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

.sm-footer-bottom p {
	margin: 0;
}

.sm-footer-bottom .menu {
	display: flex;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Responsive site shell and public landing page.
 * These rules belong in the always-loaded stylesheet. Keeping them in the
 * WooCommerce-only stylesheet left ordinary pages with the desktop layout on
 * small screens. */
@media (max-width: 1040px) {
	.sm-primary-nav {
		gap: 14px;
	}

	.sm-menu,
	.sm-primary-nav .menu {
		gap: 16px;
	}

	.sm-hero-grid {
		grid-template-columns: 1fr 0.78fr;
	}

	.sm-hero-note {
		right: 0;
	}

	.sm-course-family {
		grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
		gap: 36px;
		padding: 42px 34px;
	}

	.sm-course-stage {
		padding-inline: 10px;
	}

	.sm-course-stage-cover {
		height: 260px;
	}

	.sm-course-stage-cover img {
		height: 228px;
	}
}

@media (max-width: 820px) {
	.sm-course-roadmap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px 18px;
	}

	.sm-course-roadmap::before {
		display: none;
	}

	.sm-course-stage {
		padding-inline: 14px;
	}

	.sm-course-stage-cover {
		width: min(100%, 230px);
		height: 284px;
	}

	.sm-course-stage-cover img {
		height: 250px;
	}

	.sm-account-guest {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.sm-account-welcome {
		padding-bottom: 0;
	}

	.sm-account-welcome ul {
		display: none;
	}
}

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

	.sm-menu-toggle {
		display: block;
		flex: 0 0 auto;
	}

	.sm-primary-nav {
		position: absolute;
		left: 20px;
		right: 20px;
		top: calc(100% + 8px);
		display: none;
		align-items: stretch;
		padding: 18px;
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: 16px;
		background: var(--sm-blue-dark);
		box-shadow: var(--sm-shadow-lg);
	}

	.sm-primary-nav.is-open {
		display: flex;
		flex-direction: column;
	}

	.sm-menu,
	.sm-primary-nav .menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.sm-menu a,
	.sm-primary-nav .menu a,
	.sm-account-link {
		display: block;
		padding: 10px 4px;
	}

	.sm-hero-grid {
		min-height: auto;
		grid-template-columns: minmax(0, 1fr);
		padding-top: 78px;
	}

	.sm-hero-copy {
		text-align: center;
	}

	.sm-hero-lead {
		margin-inline: auto;
	}

	.sm-hero-actions,
	.sm-hero-points {
		justify-content: center;
	}

	.sm-hero-visual {
		width: min(100%, 500px);
		min-height: 500px;
		margin-inline: auto;
	}

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

	.sm-stats-grid > div:nth-child(2)::after {
		display: none;
	}

	.sm-stats-grid > div:nth-child(-n+2) {
		border-bottom: 1px solid rgba(23, 34, 53, 0.1);
	}

	.sm-video-grid,
	.sm-consultation-grid,
	.sm-platform-layout,
	.sm-course-family {
		grid-template-columns: minmax(0, 1fr);
	}

	.sm-package-includes {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	.sm-course-intro,
	.sm-platform-copy,
	.sm-consultation-copy {
		position: static;
		max-width: 680px;
	}

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

	.sm-platform-list li,
	.sm-platform-list li:nth-child(4n) {
		border-right: 1px solid rgba(23, 34, 53, 0.11);
		border-bottom: 1px solid rgba(23, 34, 53, 0.11);
	}

	.sm-platform-list li:nth-child(even) {
		border-right: 0;
	}

	.sm-platform-list li:nth-last-child(-n+2) {
		border-bottom: 0;
	}

	.sm-platform-feature-wide {
		grid-column: 1 / -1;
	}

	.sm-review-track {
		grid-auto-columns: calc((100% - 20px) / 2);
	}

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

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

@media (max-width: 560px) {
	:root {
		--sm-section: 60px;
	}

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

	.sm-header-inner {
		min-height: 68px;
		gap: 16px;
	}

	.sm-brand span {
		font-size: 0.88rem;
	}

	.sm-brand img,
	.custom-logo {
		width: 42px;
		height: 42px;
	}

	.sm-primary-nav {
		left: 14px;
		right: 14px;
	}

	.sm-checkout-site-header .sm-header-inner,
	.sm-account-site-header .sm-header-inner {
		min-height: 64px;
	}

	.sm-checkout-site-header .sm-brand img,
	.sm-checkout-site-header .custom-logo,
	.sm-account-site-header .sm-brand img,
	.sm-account-site-header .custom-logo {
		width: 38px;
		height: 38px;
	}

	.sm-checkout-header-actions,
	.sm-account-header-actions {
		gap: 11px;
	}

	.sm-checkout-header-actions a,
	.sm-account-header-actions a {
		font-size: 0.62rem;
	}

	.sm-account-header-actions .sm-account-header-signout {
		padding: 7px 10px;
	}

	.sm-hero-grid {
		gap: 20px;
		padding-top: 52px;
	}

	.sm-hero-copy {
		padding-bottom: 10px;
	}

	.sm-hero-actions {
		align-items: center;
		flex-direction: column;
		gap: 14px;
	}

	.sm-hero-actions .sm-button {
		width: auto;
		min-width: 220px;
		max-width: 100%;
	}

	.sm-hero-points {
		align-items: center;
		flex-direction: column;
	}

	.sm-hero-visual {
		min-height: 350px;
	}

	.sm-hero-visual > img {
		width: min(82%, 300px);
	}

	.sm-portrait-orbit {
		bottom: 18px;
		width: min(76%, 280px);
	}

	.sm-hero-note {
		right: 4px;
		bottom: 36px;
		width: 150px;
		padding: 11px 12px;
	}

	.sm-stats-grid > div {
		min-width: 0;
		min-height: 100px;
		padding: 16px 8px;
	}

	.sm-stats span {
		font-size: 0.61rem;
	}

	.sm-course-family {
		gap: 34px;
		padding: 30px 18px;
		border-radius: 24px;
	}

	.sm-course-intro h2,
	.sm-platform-copy h2 {
		font-size: 1.5rem;
	}

	.sm-course-roadmap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 10px;
	}

	.sm-course-stage {
		padding: 0 3px;
	}

	.sm-course-stage-number {
		width: 28px;
		height: 28px;
		font-size: 0.6rem;
	}

	.sm-course-stage-cover {
		width: 100%;
		height: 204px;
		margin: 15px 0 14px;
		border-radius: 12px;
	}

	.sm-course-stage-cover img {
		height: 180px;
	}

	.sm-course-stage-copy p {
		margin-bottom: 4px;
		font-size: 0.53rem;
	}

	.sm-course-stage-copy h3 {
		font-size: 0.78rem;
	}

	.sm-course-stage-price {
		gap: 6px;
		margin-top: 9px;
	}

	.sm-course-stage-price .sm-price-main {
		font-size: 0.98rem;
	}

	.sm-course-stage-price .sm-price-alt {
		font-size: 0.62rem;
	}

	.sm-package-includes ul {
		grid-template-columns: minmax(0, 1fr);
		gap: 11px;
	}

	.sm-platform-layout {
		display: block;
	}

	.sm-platform-list li {
		min-height: 154px;
		padding: 22px 14px 20px;
	}

	.sm-platform-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sm-platform-feature,
	.sm-platform-feature-wide {
		min-height: 0;
		grid-column: auto;
		padding: 24px;
		border-right: 0;
	}

	.sm-platform-feature-wide {
		align-items: flex-start;
		flex-direction: column;
	}

	.sm-reviews-header {
		align-items: stretch;
		flex-direction: column;
		gap: 22px;
		margin-bottom: 28px;
	}

	.sm-reviews-header .sm-section-heading {
		text-align: left;
	}

	.sm-review-controls {
		justify-content: flex-end;
	}

	.sm-review-track {
		max-width: 100%;
		grid-auto-columns: 100%;
		gap: 14px;
	}

	.sm-review-slide {
		min-height: 300px;
		padding: 24px;
	}

	.sm-booking-shell {
		padding: 12px;
		border-radius: 14px;
	}

	.sm-footer-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 26px;
		padding-bottom: 30px;
	}

	.sm-footer-brand {
		grid-column: auto;
	}

	.sm-site-footer {
		padding-top: 44px;
	}

	.sm-payment-row {
		align-items: center;
		gap: 12px;
	}

	.sm-payment-logos {
		justify-content: flex-end;
		flex-wrap: nowrap;
		gap: 6px;
	}

	.sm-payment-logos > span {
		width: 48px;
		height: 34px;
		padding: 5px 6px;
	}

	.sm-payment-logos img {
		max-width: 38px;
		max-height: 22px;
	}

	.sm-payment-row > p {
		max-width: none;
		font-size: 0.64rem;
		white-space: nowrap;
	}

	.sm-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 20px;
	}

	.sm-entry,
	.sm-woocommerce-main .woocommerce {
		padding: 22px 18px;
	}

	.sm-account-footer > .sm-container {
		min-height: 80px;
		gap: 14px;
	}

	.sm-account-footer nav {
		gap: 12px;
	}

	.sm-account-footer p,
	.sm-account-footer a {
		font-size: 0.58rem;
	}
}

/* Legal pages */
.sm-legal-main {
	max-width: 920px;
	padding-block: clamp(54px, 8vw, 96px);
}

.sm-legal-entry {
	overflow: hidden;
	padding: clamp(28px, 5vw, 60px);
	border: 1px solid var(--sm-line);
	border-radius: 24px;
	background: var(--sm-white);
	box-shadow: 0 18px 50px rgba(23, 34, 53, 0.06);
}

.sm-legal-entry > header {
	margin-bottom: 14px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--sm-line);
}

.sm-legal-entry > header h1 {
	margin: 0;
	color: var(--sm-blue-dark);
	font-size: clamp(1.7rem, 4vw, 2.35rem);
	line-height: 1.25;
}

.sm-legal-document {
	color: var(--sm-text);
	font-size: 0.92rem;
	line-height: 1.95;
}

.sm-legal-document > p:first-child {
	margin-top: 0;
}

.sm-legal-updated {
	margin: 0 0 30px;
	color: var(--sm-muted);
	font-size: 0.74rem;
	font-weight: 700;
}

.sm-legal-document section {
	padding-block: 22px;
	border-bottom: 1px solid var(--sm-line);
}

.sm-legal-document section:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.sm-legal-document h2 {
	margin: 0 0 10px;
	color: var(--sm-blue-dark);
	font-size: 1.06rem;
	line-height: 1.5;
}

.sm-legal-document p {
	margin: 0 0 12px;
}

.sm-legal-document p:last-child {
	margin-bottom: 0;
}

.sm-legal-document ul {
	margin: 10px 0 0;
	padding: 0 22px 0 0;
}

.sm-legal-document li {
	margin: 5px 0;
}

.sm-legal-contact {
	padding: 20px 22px !important;
	border: 1px solid rgba(58, 102, 163, 0.16) !important;
	border-radius: 16px;
	background: var(--sm-blue-soft);
}

.sm-legal-contact a {
	color: var(--sm-blue-dark);
	font-weight: 700;
}

/* Not found */
body.sm-custom-404 {
	background: var(--sm-cream);
}

.sm-404-shell {
	min-height: 100vh;
	min-height: 100svh;
	min-height: 100dvh;
	display: grid;
	place-items: center;
	padding: 24px 16px;
	background:
		radial-gradient(circle at top right, rgba(58, 102, 163, 0.1), transparent 34%),
		var(--sm-cream);
}

body.admin-bar .sm-404-shell {
	min-height: calc(100dvh - 32px);
}

.sm-404-card {
	width: min(100%, 520px);
	padding: 34px 32px 32px;
	border: 1px solid #ede7dc;
	border-radius: 22px;
	background: var(--sm-white);
	box-shadow: 0 18px 48px rgba(36, 76, 132, 0.1);
	text-align: center;
}

.sm-404-logo {
	width: 64px;
	height: 64px;
	margin: 0 auto 14px;
	overflow: hidden;
	border-radius: 50%;
	background: var(--sm-white);
	box-shadow: 0 8px 18px rgba(58, 102, 163, 0.16);
}

.sm-404-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sm-404-brand {
	margin: 0 0 22px;
	color: var(--sm-blue);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.15;
}

.sm-404-code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	margin: 0 0 18px;
	padding: 7px 14px;
	border: 1px solid rgba(203, 177, 124, 0.5);
	border-radius: 999px;
	color: var(--sm-blue-dark);
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.2;
	background: rgba(230, 211, 168, 0.24);
}

.sm-404-title {
	margin: 0;
	color: var(--sm-ink);
	font-size: 1.75rem;
	line-height: 1.2;
}

.sm-404-text {
	max-width: 400px;
	margin: 13px auto 0;
	color: var(--sm-muted);
	font-size: 0.9rem;
	line-height: 1.7;
}

.sm-404-actions {
	display: flex;
	justify-content: center;
	margin-top: 26px;
}

.sm-404-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border-radius: 13px;
	color: var(--sm-white);
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	background: var(--sm-blue);
	transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.sm-404-button:hover,
.sm-404-button:focus-visible {
	color: var(--sm-white);
	transform: translateY(-1px);
	background: var(--sm-blue-dark);
	box-shadow: 0 10px 18px rgba(36, 76, 132, 0.13);
}

.sm-404-support {
	margin: 18px 0 0;
	color: var(--sm-muted);
	font-size: 0.76rem;
	line-height: 1.5;
}

.sm-404-support a {
	color: var(--sm-blue);
	font-weight: 700;
}

@media (max-width: 590px) {
	body.admin-bar .sm-404-shell {
		min-height: calc(100dvh - 46px);
	}

	.sm-404-shell {
		padding: 18px 14px;
	}

	.sm-404-card {
		padding: 28px 22px 26px;
		border-radius: 18px;
	}

	.sm-404-title {
		font-size: 1.5rem;
	}

	.sm-404-text {
		font-size: 0.84rem;
	}

	.sm-404-button {
		width: 100%;
	}

	.sm-legal-main {
		padding-block: 26px 42px;
	}

	.sm-legal-entry {
		padding: 24px 18px;
		border-radius: 18px;
	}

	.sm-legal-document {
		font-size: 0.86rem;
	}
}

@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;
	}
}
