:root {
	--mbt-bg: #050d1f;
	--mbt-bg-2: #080f24;
	--mbt-panel: #071528;
	--mbt-panel-2: #0a1730;
	--mbt-card: rgba(255, 255, 255, 0.04);
	--mbt-text: #f3f7ff;
	--mbt-muted: #8a9bb8;
	--mbt-soft: #cbd8e8;
	--mbt-line: rgba(0, 212, 255, 0.18);
	--mbt-accent: #00d4ff;
	--mbt-accent-2: #00ffc8;
	--mbt-warning: #ffc544;
	--mbt-max: 760px;
	--mbt-wide: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--mbt-bg);
	color: var(--mbt-text);
	font-family: Roboto, Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.55;
	text-rendering: geometricPrecision;
	-webkit-font-smoothing: antialiased;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	content: "";
	background:
		radial-gradient(circle at 16% 72%, rgba(0, 240, 216, 0.12), transparent 22rem),
		radial-gradient(circle at 82% 18%, rgba(2, 217, 255, 0.1), transparent 24rem);
	animation: mbtAmbientGlow 12s ease-in-out infinite alternate;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
.site-brand,
.site-header__cta,
.cs-button,
.cs-kicker,
.cs-proof,
.cs-eyebrow,
.cs-pill {
	font-family: Poppins, Arial, Helvetica, sans-serif;
}

a {
	color: inherit;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(5, 13, 31, 0.88);
	border-bottom: 1px solid rgba(0, 212, 255, 0.18);
	backdrop-filter: blur(12px);
	transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
	background: rgba(5, 13, 31, 0.96);
	border-color: rgba(0, 212, 255, 0.28);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.site-header__inner,
.site-footer__inner {
	width: min(100% - 28px, var(--mbt-wide));
	margin: 0 auto;
}

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

.site-brand {
	display: inline-flex;
	align-items: baseline;
	color: #ffffff;
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	letter-spacing: 0;
	transition: transform 220ms ease, filter 220ms ease;
}

.site-brand:hover,
.site-brand:focus-visible {
	filter: drop-shadow(0 0 16px rgba(2, 217, 255, 0.28));
	transform: translateY(-1px);
}

.site-brand__cloud {
	color: #22b7ff;
}

.site-brand__gyata {
	color: #ffcf4d;
}

.site-brand small {
	margin-left: 5px;
	color: #9fd2c5;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0;
}

.site-brand__logo {
	width: auto;
	max-width: 210px;
	max-height: 42px;
	object-fit: contain;
}

.site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}

.site-header__phone {
	color: #5fa8d8;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.site-header__phone:hover,
.site-header__phone:focus-visible {
	color: var(--mbt-accent);
	text-shadow: 0 0 18px rgba(2, 217, 255, 0.34);
}

.site-header__cta {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 24px;
	border-radius: 8px;
	background: linear-gradient(135deg, #0055ff, #00d4ff);
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 12px 28px rgba(4, 160, 255, 0.25);
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.site-header__cta::after,
.cs-button::after,
.cs-lead-card button::after {
	position: absolute;
	inset: 0 auto 0 -60%;
	width: 48%;
	content: "";
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
	transform: skewX(-18deg);
	transition: left 520ms ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible,
.cs-button:hover,
.cs-button:focus-visible {
	box-shadow: 0 18px 42px rgba(4, 160, 255, 0.34);
	filter: saturate(1.1);
	transform: translateY(-2px);
}

.site-header__cta:hover::after,
.site-header__cta:focus-visible::after,
.cs-button:hover::after,
.cs-button:focus-visible::after,
.cs-lead-card button:hover::after,
.cs-lead-card button:focus-visible::after {
	left: 118%;
}

.site-main {
	min-height: calc(100vh - 250px);

}

.site-main::before {
	position: fixed;
	inset: 34px 0 auto;
	z-index: 0;
	height: 220px;
	pointer-events: none;
	content: "";
	background: linear-gradient(180deg, rgba(2, 217, 255, 0.05), transparent);
}

.one-page-content {
	position: relative;
	z-index: 1;
}

.one-page-content,
.page-content {
	padding: 0 0 46px;
}

.one-page-content > *,
.page-content > * {
	width: min(100% - 28px, var(--mbt-max));
	margin-right: auto;
	margin-left: auto;
}

.one-page-content > .alignwide,
.page-content > .alignwide {
	width: min(100% - 28px, var(--mbt-wide));
}

.one-page-content > .alignfull,
.page-content > .alignfull {
	width: 100%;
	max-width: none;
}

.cs-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 438px;
	align-items: center;
	gap: 82px;
	min-height: 768px;
	padding: 38px 0 52px;
}

.cs-hero__copy {
	width: min(100%, 560px);
	margin-left: 0;
}

.cs-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	padding: 8px 18px;
	border: 1px solid rgba(2, 217, 255, 0.46);
	border-radius: 999px;
	background: rgba(2, 217, 255, 0.08);
	color: var(--mbt-accent);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	animation: mbtSoftPulse 2.8s ease-in-out infinite;
}

.cs-kicker span {
	color: #35f3a8;
	font-size: 14px;
}

.cs-hero h1 {
	margin: 0 0 20px;
	max-width: 570px;
	color: var(--mbt-text);
	font-size: clamp(54px, 7vw, 76px);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: 0;
}

.cs-hero h1 span {
	background: linear-gradient(90deg, #01dfff, #31f3a6);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	background-size: 160% 100%;
	animation: mbtGradientShift 5s ease-in-out infinite alternate;
}

.cs-hero__copy > p:not(.cs-kicker) {
	max-width: 560px;
	margin: 0 0 20px;
	color: var(--mbt-muted);
	font-size: 18px;
	line-height: 1.65;
}

.cs-proof-row,
.cs-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.cs-proof-row {
	max-width: 470px;
	margin-bottom: 38px;
}

.cs-proof {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 13px;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 800;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.cs-proof--green {
	border: 1px solid rgba(49, 243, 166, 0.62);
	background: rgba(49, 243, 166, 0.08);
	color: #28f5aa;
}

.cs-proof--gold {
	border: 1px solid rgba(248, 198, 77, 0.6);
	background: rgba(248, 198, 77, 0.08);
	color: #ffd15d;
}

.cs-proof--blue {
	border: 1px solid rgba(2, 116, 255, 0.65);
	background: rgba(2, 116, 255, 0.12);
	color: #80b9ff;
}

.cs-button {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0 13px;
	border: 1px solid rgba(2, 217, 255, 0.45);
	border-radius: 4px;
	background: linear-gradient(135deg, #02d9ff, #0e86ff);
	color: #031126;
	font-size: 9px;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cs-button--dark {
	background: rgba(255, 255, 255, 0.035);
	color: var(--mbt-soft);
}

.cs-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 36px;
	max-width: 580px;
	margin-top: 0;
}

.cs-hero__stats div {
	display: grid;
	gap: 2px;
}

.cs-hero__stats strong {
	color: var(--mbt-accent);
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
}

.cs-hero__stats span {
	color: var(--mbt-muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.8px;
	line-height: 1.55;
	text-transform: uppercase;
}

.cs-lead-card {
	position: relative;
	overflow: hidden;
	padding: 40px 34px 36px;
	border: 1px solid rgba(2, 217, 255, 0.22);
	border-top-width: 3px;
	border-top-color: #00e9be;
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(10, 17, 38, 0.98), rgba(7, 14, 32, 0.98));
	box-shadow: 0 28px 90px rgba(2, 217, 255, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.025) inset;
	animation: mbtFloatCard 7s ease-in-out infinite;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.cs-lead-card::before,
.cs-card::before,
.cs-stat-card::before,
.cs-final-cta::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(2, 217, 255, 0.16), transparent 34%);
	opacity: 0;
	transition: opacity 220ms ease;
}

.cs-lead-card:hover {
	border-color: rgba(2, 217, 255, 0.58);
	box-shadow: 0 34px 100px rgba(2, 217, 255, 0.17), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
	transform: translateY(-4px);
}

.cs-lead-card:hover::before,
.cs-card:hover::before,
.cs-stat-card:hover::before,
.cs-final-cta:hover::before {
	opacity: 1;
}

.cs-lead-card h2 {
	margin: 0 0 10px;
	color: var(--mbt-text);
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0;
}

.cs-lead-card p {
	margin: 0 0 26px;
	color: var(--mbt-muted);
	font-size: 13px;
}

.cs-lead-card p strong {
	color: #16ffc6;
}

.cs-lead-card label {
	display: block;
	margin-bottom: 7px;
	color: #9fb3ca;
	font-size: 13px;
	font-weight: 700;
}

.cs-lead-card input,
.cs-lead-card select {
	width: 100%;
	height: 52px;
	margin-bottom: 16px;
	padding: 0 16px;
	border: 1px solid rgba(143, 165, 191, 0.32);
	border-radius: 8px;
	background: #121a2d;
	color: #dce8f8;
	font: inherit;
	font-size: 15px;
	transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.cs-lead-card input:focus,
.cs-lead-card select:focus {
	outline: none;
	border-color: rgba(2, 217, 255, 0.72);
	background: #101f35;
	box-shadow: 0 0 0 4px rgba(2, 217, 255, 0.08);
}

.cs-phone-row {
	display: grid;
	grid-template-columns: 76px 1fr;
	gap: 10px;
}

.cs-lead-card .cs-country-code {
	text-align: center;
}

.cs-lead-card button {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 56px;
	margin-top: 4px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, #0577ff, #12d5ee);
	color: #ffffff;
	cursor: pointer;
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cs-lead-card button:hover,
.cs-lead-card button:focus-visible {
	box-shadow: 0 16px 36px rgba(4, 160, 255, 0.32);
	filter: saturate(1.12);
	transform: translateY(-2px);
}

.cs-rating-row {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 18px;
}

.cs-rating-row span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 13px;
	border: 1px solid rgba(248, 198, 77, 0.42);
	border-radius: 5px;
	background: rgba(248, 198, 77, 0.1);
	color: #ffc642;
	font-size: 11px;
	font-weight: 900;
}

.cs-lead-card small {
	display: block;
	margin-top: 12px;
	color: #91a5bd;
	font-size: 12px;
	text-align: center;
}

.cs-work-strip {
	padding: 36px 0 38px;
	border-top: 1px solid rgba(65, 173, 220, 0.32);
	text-align: center;
}

.cs-work-strip p {
	margin: 0 0 24px;
	color: #91a5bd;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.cs-work-strip div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(22px, 4vw, 42px);
}

.cs-work-strip span {
	color: rgba(203, 216, 232, 0.42);
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.cs-work-strip span:hover {
	color: rgba(238, 245, 255, 0.78);
	text-shadow: 0 0 24px rgba(2, 217, 255, 0.22);
	transform: translateY(-2px);
}

.cs-section {
	margin-top: 72px;
	margin-bottom: 72px;
}

.cs-section:not(.cs-hero) {
	width: min(100% - 44px, var(--mbt-wide));
}

.cs-work-strip,
#results {
	width: min(100% - 44px, var(--mbt-wide));
}

.cs-panel {
	padding: 94px 118px 96px;
	border: 1px solid var(--mbt-line);
	border-right: 0;
	border-left: 0;
	border-radius: 0;
	background:
		radial-gradient(circle at 0% 86%, rgba(0, 255, 200, 0.16), transparent 300px),
		linear-gradient(180deg, rgba(8, 18, 39, 0.96), rgba(6, 16, 35, 0.92));
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.cs-eyebrow {
	margin: 0 0 18px;
	color: var(--mbt-accent);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 2px;
	text-align: center;
	text-transform: uppercase;
}

.cs-title {
	margin: 0 auto 24px;
	max-width: 980px;
	color: var(--mbt-text);
	font-size: clamp(34px, 5vw, 44px);
	font-weight: 900;
	line-height: 1.12;
	text-align: center;
	letter-spacing: 0;
}

.cs-subtitle {
	margin: 0 auto 60px;
	max-width: 610px;
	color: var(--mbt-muted);
	font-size: 16px;
	line-height: 1.65;
	text-align: center;
}

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

.cs-course-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	width: 100%;
	margin: 0 auto;
}

.cs-card,
.cs-stat-card {
	position: relative;
	overflow: hidden;
	min-height: 88px;
	padding: 13px;
	border: 1px solid var(--mbt-line);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(14, 25, 45, 0.82), rgba(8, 17, 35, 0.9));
	color: var(--mbt-muted);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.025) inset;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
	will-change: transform;
}

.cs-card:hover,
.cs-stat-card:hover {
	border-color: rgba(2, 217, 255, 0.48);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), 0 0 42px rgba(2, 217, 255, 0.08);
	transform: translateY(-4px);
}

.cs-stat-card {
	display: grid;
	align-content: center;
	justify-items: center;
	min-height: 152px;
	padding: 30px;
	border-color: rgba(2, 217, 255, 0.22);
	border-radius: 8px;
	background: rgba(8, 23, 44, 0.72);
	text-align: center;
}

.cs-stat-card strong {
	color: var(--mbt-accent);
	font-size: 48px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 3px;
	transition: text-shadow 220ms ease, transform 220ms ease;
}

.cs-stat-card:hover strong {
	text-shadow: 0 0 28px rgba(2, 217, 255, 0.42);
	transform: scale(1.03);
}

.cs-stat-card span {
	margin-top: 22px;
	color: #91a5bd;
	font-size: 14px;
}

.cs-icon,
.cs-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin-bottom: 9px;
	border-radius: 4px;
	background: rgba(2, 217, 255, 0.12);
	color: var(--mbt-accent);
	font-size: 9px;
	font-weight: 900;
}

.cs-card:nth-child(3n + 2) .cs-icon {
	color: var(--mbt-accent-2);
	background: rgba(49, 243, 166, 0.09);
}

.cs-card:nth-child(3n) .cs-icon {
	color: var(--mbt-warning);
	background: rgba(248, 198, 77, 0.1);
}

.cs-card h3,
.cs-card h4 {
	margin: 0 0 5px;
	color: var(--mbt-text);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.18;
}

#courses {
	width: min(100% - 44px, var(--mbt-wide));
}

#courses .cs-title {
	margin-bottom: 12px;
	font-size: clamp(30px, 4vw, 38px);
	letter-spacing: 0;
}

#courses .cs-subtitle {
	margin-bottom: 42px;
	font-size: 13px;
}

#courses .cs-card {
	min-height: 132px;
	padding: 24px;
	border-color: rgba(2, 217, 255, 0.24);
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(11, 29, 55, 0.86), rgba(7, 21, 41, 0.86));
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.035) inset;
}

#courses .cs-card:hover .cs-icon,
#why .cs-card:hover .cs-feature-icon {
	box-shadow: 0 0 24px rgba(2, 217, 255, 0.2);
	transform: translateY(-2px) rotate(-3deg);
}

#courses .cs-card h3 {
	margin-top: 18px;
	margin-bottom: 9px;
	font-size: 15px;
}

#courses .cs-card p {
	display: flex;
	gap: 12px;
	align-items: center;
	margin: 0;
	font-size: 11px;
	font-weight: 800;
}

#courses .cs-card p strong {
	color: var(--mbt-accent);
	font-weight: 900;
}

#courses .cs-card p span {
	color: var(--mbt-accent-2);
}

#courses .cs-icon {
	width: 30px;
	height: 30px;
	margin: 0;
	border-radius: 7px;
	font-size: 9px;
	letter-spacing: 0;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.cs-card p {
	margin: 0;
	color: var(--mbt-muted);
	font-size: 9px;
	line-height: 1.45;
}

.cs-feature-grid .cs-card {
	min-height: 236px;
	padding: 34px 26px;
	border-color: rgba(2, 217, 255, 0.22);
	border-radius: 8px;
	background: rgba(9, 24, 45, 0.74);
}

.cs-feature-icon {
	width: 38px;
	min-width: 38px;
	height: 38px;
	margin-bottom: 28px;
	padding: 0;
	border-radius: 8px;
	background: rgba(248, 198, 77, 0.11);
	color: #ffc94d;
	font-size: 12px;
	font-weight: 900;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

#why .cs-card:nth-child(2) .cs-feature-icon,
#why .cs-card:nth-child(5) .cs-feature-icon {
	background: rgba(255, 142, 48, 0.13);
	color: #ff9638;
}

#why .cs-card:nth-child(3) .cs-feature-icon,
#why .cs-card:nth-child(6) .cs-feature-icon,
#why .cs-card:nth-child(8) .cs-feature-icon {
	background: rgba(2, 217, 255, 0.1);
	color: #8fdfff;
}

#why .cs-card:nth-child(4) .cs-feature-icon,
#why .cs-card:nth-child(7) .cs-feature-icon {
	background: rgba(49, 243, 166, 0.1);
	color: #31f3a6;
}

#why {
	width: min(100% - 44px, var(--mbt-wide));
}

#why .cs-title {
	margin-bottom: 58px;
	font-size: clamp(36px, 5vw, 46px);
}

#why .cs-feature-grid {
	gap: 20px;
}

#why .cs-card h3 {
	margin-bottom: 14px;
	font-size: 17px;
}

#why .cs-card p {
	color: #91a5bd;
	font-size: 14px;
	line-height: 1.65;
}

.cs-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	max-width: 920px;
	margin: 0 auto;
}

.cs-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 22px;
	border: 1px solid rgba(143, 165, 191, 0.22);
	border-radius: 999px;
	background: rgba(19, 29, 49, 0.72);
	color: #eef5ff;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.cs-pill:hover {
	border-color: rgba(2, 217, 255, 0.62);
	background: rgba(2, 217, 255, 0.1);
	box-shadow: 0 14px 34px rgba(2, 217, 255, 0.08);
	color: #ffffff;
	transform: translateY(-2px) scale(1.04);
}

#tools {
	padding-top: 94px;
	padding-bottom: 94px;
	background:
		linear-gradient(180deg, rgba(7, 15, 34, 0.98), rgba(7, 15, 34, 0.98));
}

#tools .cs-title {
	margin-bottom: 22px;
}

#tools .cs-subtitle {
	margin-bottom: 58px;
}

.cs-stars {
	margin-bottom: 18px;
	color: var(--mbt-warning);
	font-size: 15px;
	letter-spacing: 0;
}

.cs-review-grid .cs-card {
	min-height: 320px;
	padding: 30px 26px;
	border-color: rgba(2, 217, 255, 0.22);
	border-radius: 8px;
	background: rgba(9, 24, 45, 0.78);
}

.cs-review-grid strong {
	display: block;
	color: var(--mbt-text);
	font-size: 15px;
}

.cs-review-grid span {
	color: var(--mbt-accent);
	font-size: 12px;
	font-weight: 800;
}

#reviews {
	width: min(100% - 44px, var(--mbt-wide));
}

#reviews .cs-title {
	margin-bottom: 58px;
}

#reviews .cs-review-grid {
	gap: 20px;
}

.cs-quote-mark {
	margin-bottom: 26px;
	color: var(--mbt-accent);
	font-size: 34px;
	font-weight: 900;
	line-height: 0.7;
}

.cs-story-card {
	display: flex;
	flex-direction: column;
}

.cs-story-card p,
.cs-story-text {
	color: #d6dfec;
	font-size: 15px;
	line-height: 1.65;
}

.cs-story-text > *:first-child {
	margin-top: 0;
}

.cs-story-text > *:last-child {
	margin-bottom: 0;
}

.cs-story-author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
	padding-top: 26px;
}

.cs-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0577ff, #12d5ee);
	color: #ffffff !important;
	font-size: 14px !important;
	font-weight: 900 !important;
}

.cs-join-card {
	display: grid;
	align-content: center;
	justify-items: center;
	border-color: rgba(2, 217, 255, 0.48) !important;
	background: rgba(3, 23, 49, 0.94) !important;
	text-align: center;
}

.cs-join-card h3 {
	color: var(--mbt-accent);
	font-size: 28px;
}

.cs-join-card p {
	margin-bottom: 24px;
	color: #91a5bd;
	font-size: 14px;
}

.cs-table {
	width: min(100%, 820px);
	margin: 0 auto;
	border-collapse: collapse;
	overflow: hidden;
	border: 1px solid rgba(143, 165, 191, 0.34);
	border-radius: 0;
	color: #e7effc;
	font-size: 12px;
}

.cs-table th,
.cs-table td {
	padding: 17px 20px;
	border-right: 1px solid rgba(143, 165, 191, 0.22);
	border-bottom: 1px solid rgba(143, 165, 191, 0.12);
	text-align: left;
}

.cs-table th:first-child,
.cs-table td:first-child {
	width: 125px;
	text-align: left;
	color: #8fa5bf;
}

.cs-table th {
	background: rgba(0, 213, 255, 0.08);
	color: var(--mbt-accent);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.cs-table td:nth-child(2) {
	font-weight: 700;
}

.cs-table td:nth-child(3) {
	color: var(--mbt-accent-2);
	font-weight: 900;
}

.cs-table tr:nth-child(even) td {
	background: rgba(255, 255, 255, 0.025);
}

#catalogue {
	width: min(100% - 44px, var(--mbt-wide));
}

#catalogue .cs-title {
	margin-bottom: 16px;
}

#catalogue .cs-subtitle {
	margin-bottom: 54px;
}

.cs-final-cta {
	width: min(100% - 44px, 940px) !important;
	margin-top: 86px;
	margin-bottom: 86px;
	padding: 68px 42px;
	border-color: rgba(2, 217, 255, 0.26);
	border-radius: 8px;
	background:
		radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.12), transparent 250px),
		linear-gradient(135deg, rgba(7, 26, 77, 0.9), rgba(6, 19, 44, 0.94));
}

.cs-final-cta .cs-title {
	margin-bottom: 14px;
	font-size: clamp(30px, 4vw, 40px);
}

.cs-final-cta .cs-subtitle {
	margin-bottom: 28px;
	font-size: 13px;
}

.cs-final-cta .cs-cta {
	justify-content: center;
}

.site-footer {
	width: 100%;
	margin: 0 auto 0;
	overflow: hidden;
	border-top: 1px solid rgba(0, 212, 255, 0.24);
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
	border-radius: 0;
	background:
		radial-gradient(circle at 8% 0%, rgba(0, 255, 200, 0.12), transparent 280px),
		radial-gradient(circle at 94% 100%, rgba(0, 85, 255, 0.12), transparent 300px),
		linear-gradient(180deg, rgba(8, 16, 37, 0.98), rgba(4, 10, 24, 0.98));
	color: var(--mbt-muted);
}

.site-footer__inner {
	width: min(100% - 44px, var(--mbt-wide));
	margin: 0 auto;
	padding: 0;
}

.site-footer__content {
	display: grid;
	grid-template-columns: minmax(310px, 1.35fr) minmax(210px, 0.8fr) minmax(260px, 1fr);
	gap: 46px;
	padding: 54px 54px 46px;
}

.site-footer__col {
	display: grid;
	align-content: start;
	gap: 10px;
}

.site-footer__col--center {
	justify-items: center;
	text-align: center;
}

.site-footer__col--right {
	justify-items: start;
	text-align: left;
}

.site-footer__eyebrow {
	margin: 0 0 8px;
	color: var(--mbt-text);
	font-family: Poppins, Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0;
}

.site-footer__label {
	margin: 0 0 8px;
	color: var(--mbt-accent);
	font-family: Poppins, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.footer-brand {
	display: inline-flex;
	align-items: baseline;
	width: fit-content;
	color: #ffffff;
	font-family: Poppins, Arial, Helvetica, sans-serif;
	font-size: 25px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
}

.footer-brand img {
	width: auto;
	max-width: 220px;
	max-height: 46px;
	object-fit: contain;
}

.footer-brand small {
	margin-left: 5px;
	color: #9fd2c5;
	font-size: 9px;
	font-weight: 800;
}

.site-footer__tagline {
	max-width: 430px;
	margin: 10px 0 18px;
	color: #9fb0c8;
	font-size: 14px;
	line-height: 1.7;
}

.site-footer__address-block {
	padding-left: 18px;
	border-left: 2px solid rgba(0, 212, 255, 0.3);
}

.site-footer address {
	max-width: 430px;
	margin: 0;
	color: #d4deec;
	font-size: 13px;
	font-style: normal;
	line-height: 1.65;
}

.site-footer a {
	color: #c9d7e8;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--mbt-accent);
}

.footer-nav {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	min-width: 220px;
}

.footer-socials {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 9px;
	margin-top: 22px;
}

.footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(0, 212, 255, 0.22);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.035);
	color: var(--mbt-accent);
}

.footer-socials svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.footer-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	min-height: 42px;
	padding: 0 30px 0 0;
	border-bottom: 1px solid rgba(143, 165, 191, 0.12);
	color: #b9c7dc;
	font-size: 14px;
	font-weight: 800;
}

.footer-nav a::before {
	display: none;
}

.footer-nav a::after {
	position: absolute;
	right: 0;
	color: var(--mbt-accent);
	font-family: Poppins, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 900;
	content: "->";
	opacity: 0.72;
	transition: opacity 180ms ease, transform 180ms ease;
}

.footer-nav a:last-child {
	border-bottom: 0;
}

.site-footer__bottom {
	padding: 22px 54px;
	border-top: 1px solid rgba(143, 165, 191, 0.12);
	background: rgba(2, 7, 17, 0.72);
	text-align: center;
}

.site-footer__bottom p {
	margin: 0;
	color: #647991;
	font-size: 11px;
}

.site-footer__bottom strong,
.site-footer__bottom a {
	color: var(--mbt-accent);
	font-size: inherit;
}

.cs-table tbody tr {
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.cs-table tbody tr:hover td {
	background: rgba(2, 217, 255, 0.055);
	color: #ffffff;
}

.cs-table tbody tr:hover td:nth-child(3) {
	text-shadow: 0 0 16px rgba(49, 243, 166, 0.3);
}

.footer-nav a,
.site-footer a,
.footer-socials a {
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
	background: transparent;
	color: #ffffff;
	transform: translateX(0);
}

.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
	opacity: 1;
	transform: translateX(4px);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
	border-color: rgba(2, 217, 255, 0.58);
	background: rgba(2, 217, 255, 0.08);
	color: #ffffff;
	transform: translateY(-2px);
}

.floating-whatsapp {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 70;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 1px solid rgba(0, 255, 200, 0.5);
	border-radius: 50%;
	background: linear-gradient(135deg, #00ffc8, #00c853);
	box-shadow: 0 18px 42px rgba(0, 255, 200, 0.24), 0 0 0 8px rgba(0, 255, 200, 0.08);
	color: #05121f;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
	animation: mbtWhatsAppPulse 2.6s ease-in-out infinite;
}

.floating-whatsapp svg {
	width: 30px;
	height: 30px;
	fill: currentColor;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
	box-shadow: 0 22px 54px rgba(0, 255, 200, 0.34), 0 0 0 10px rgba(0, 255, 200, 0.12);
	filter: saturate(1.08);
	outline: none;
	transform: translateY(-3px) scale(1.04);
}

.reveal-on-scroll {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	transition:
		opacity 720ms ease var(--reveal-delay, 0ms),
		transform 720ms cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@keyframes mbtAmbientGlow {
	0% {
		opacity: 0.65;
		transform: translate3d(-1.5%, -1%, 0) scale(1);
	}

	100% {
		opacity: 1;
		transform: translate3d(1.5%, 1%, 0) scale(1.03);
	}
}

@keyframes mbtSoftPulse {
	0%,
	100% {
		box-shadow: 0 0 0 rgba(2, 217, 255, 0);
	}

	50% {
		box-shadow: 0 0 28px rgba(2, 217, 255, 0.14);
	}
}

@keyframes mbtGradientShift {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: 100% 50%;
	}
}

@keyframes mbtFloatCard {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

@keyframes mbtWhatsAppPulse {
	0%,
	100% {
		box-shadow: 0 18px 42px rgba(0, 255, 200, 0.24), 0 0 0 8px rgba(0, 255, 200, 0.08);
	}

	50% {
		box-shadow: 0 22px 54px rgba(0, 255, 200, 0.34), 0 0 0 13px rgba(0, 255, 200, 0.04);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.reveal-on-scroll {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 980px) {
	.site-footer__content {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__brand-col {
		grid-column: 1 / -1;
	}
}

@media (max-width: 760px) {
	.site-header__inner {
		min-height: auto;
		padding: 14px 0;
	}

	.site-header__actions {
		gap: 10px;
	}

	.site-brand__logo {
		max-width: 170px;
		max-height: 38px;
	}

	.site-header__phone {
		display: none;
	}

	.cs-lockup {
		padding-top: 28px;
	}

	.cs-hero {
		grid-template-columns: 1fr;
		gap: 28px;
		min-height: 0;
		padding: 34px 0 42px;
	}

	.cs-hero__copy {
		width: 100%;
		margin-left: 0;
	}

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

	.cs-hero h1 {
		font-size: clamp(42px, 14vw, 58px);
		letter-spacing: 0;
	}

	.cs-hero__copy > p:not(.cs-kicker) {
		font-size: 15px;
	}

	.cs-lead-card {
		padding: 28px 18px;
	}

	.cs-panel {
		padding: 26px 18px;
	}

	.cs-grid,
	.cs-feature-grid,
	.cs-review-grid,
	.cs-course-grid,
	.site-footer__content {
		grid-template-columns: 1fr;
		padding: 36px 24px;
	}

	.site-footer__brand-col {
		grid-column: auto;
	}

	.site-footer__col,
	.site-footer__col--center,
	.site-footer__col--right,
	.site-footer__col--address {
		justify-items: start;
		text-align: left;
	}

	.site-footer__address-block {
		padding-left: 14px;
	}

	.footer-nav {
		justify-content: flex-start;
	}

	.footer-socials {
		justify-content: flex-start;
	}

	.floating-whatsapp {
		right: 16px;
		bottom: 16px;
		width: 52px;
		height: 52px;
	}
}
