/**
 * Lexoria — стилі сторінок.
 * Усе scoped під .lx, щоб не конфліктувати з темою.
 */

:root{
	--lx-navy: #0B1F3A;
	--lx-navy-deep: #081729;
	--lx-blue: #16345F;
	--lx-gold: #C4913D;
	--lx-gold-soft: #E5C079;
	--lx-gold-dark: #B07F2F;
	--lx-green: #3F7D62;
	--lx-mint: #8FD3AE;
	--lx-surface: #F6F8FB;
	--lx-border: #E7EBF1;
	--lx-text: #0B1F3A;
	--lx-muted: #56657D;
	--lx-sand-from: #F1EDE6;
	--lx-sand-to: #EDE9E1;
	--lx-font-display: 'Montserrat', sans-serif;
	--lx-font-body: 'Open Sans', system-ui, sans-serif;
	--lx-container: 1240px;
	--lx-radius-card: 20px;
	--lx-logo-h: 80px;
	--lx-logo-footer-h: 84px;
	--lx-card-img-h: 210px;
	--lx-h1: 54px;
	--lx-h2: 44px;
	--lx-gap: clamp(18px, 4vw, 32px);
}

/* ---------- База ---------- */

.lx{
	background: #fff;
	color: var(--lx-text);
	font-family: var(--lx-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

/*
 * Тема задає section та div правило display: block, і воно перебиває
 * браузерне [hidden] { display: none }. Через це приховані екрани тесту,
 * модалка й панелі акордеона показувалися всі одразу.
 */
.lx [hidden] { display: none !important; }

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

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

.lx p{
	margin: 0;
}

.lx h1, .lx h2, .lx h3{
	margin: 0;
	font-family: var(--lx-font-display);
	text-wrap: pretty;
}

.lx button{
	font: inherit;
	cursor: pointer;
}

.lx :focus-visible{
	outline: 2px solid var(--lx-gold);
	outline-offset: 2px;
	border-radius: 6px;
}

.lx .lx-container{
	width: 100%;
	max-width: var(--lx-container);
	margin: 0 auto;
	padding-inline: clamp(16px, 4vw, 32px);
}

.lx .lx-sr{
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.lx .lx-dot{
	width: 6px;
	height: 6px;
	border-radius: 50%;
	display: inline-block;
	flex: none;
}

.lx .lx-dot--gold{ background: var(--lx-gold); }
.lx .lx-dot--green{ background: var(--lx-green); }
.lx .lx-dot--mint{ background: var(--lx-mint); }

.lx .lx-gold{ color: var(--lx-gold-soft); }
.lx .lx-mint{ color: var(--lx-mint); }
.lx .lx-strong{ color: #fff; font-weight: 600; }

.lx .lx-eyebrow{
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--lx-gold);
	margin: 0;
}

.lx .lx-eyebrow--sm{ letter-spacing: 0.14em; }
.lx .lx-eyebrow--sand{ color: #B5822F; }

.lx .lx-h2{
	font-size: clamp(26px, 4.2vw, var(--lx-h2));
	font-weight: 600;
	line-height: 1.14;
	letter-spacing: -0.02em;
	margin-top: 14px;
}

.lx .lx-h2--sm{
	font-size: clamp(24px, 3.4vw, 34px);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.01em;
	margin-top: 10px;
}

.lx .lx-h2--light{ color: #fff; margin-top: 0; }

.lx .lx-text{
	font-size: 15px;
	line-height: 1.6;
	color: var(--lx-muted);
	margin-top: 10px;
}

.lx .lx-lead{
	font-size: clamp(15px, 1.6vw, 17px);
	line-height: 1.68;
	color: #4A5A72;
	margin-top: 18px;
	max-width: 62ch;
}

/* ---------- Кнопки ---------- */

.lx .lx-btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 13px 26px;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.lx .lx-btn--gold{
	background: var(--lx-gold);
	color: #fff;
	box-shadow: 0 8px 18px rgba(196, 145, 61, .24);
}

.lx .lx-btn--gold:hover, .lx .lx-btn--gold:focus-visible{ background: var(--lx-gold-dark); color: #fff; }

.lx .lx-btn--grad{
	background: linear-gradient(100deg, var(--lx-gold) 0%, #DFAE5B 100%);
	color: #fff;
	border-radius: 12px;
	padding: 16px 20px;
	width: 100%;
	box-shadow: 0 12px 28px rgba(196, 145, 61, .34);
}

.lx .lx-btn--grad:hover{ background: #D6A24A; }

.lx .lx-btn--navy{
	background: var(--lx-navy);
	color: #fff;
	font-size: 14px;
	padding: 12px 22px;
	margin-top: 20px;
}

.lx .lx-btn--navy:hover{ background: var(--lx-blue); color: #fff; }

.lx .lx-btn--outline-gold{
	border-color: rgba(229, 192, 121, .55);
	background: rgba(229, 192, 121, .07);
	color: #fff;
	font-size: 16px;
	padding: 17px 32px;
	width: 100%;
	max-width: 560px;
}

.lx .lx-btn--outline-gold:hover{
	background: rgba(229, 192, 121, .16);
	border-color: var(--lx-gold-soft);
	color: var(--lx-gold-soft);
}

.lx .lx-btn--outline-light{
	border-color: rgba(255, 255, 255, .32);
	color: #fff;
	padding: 14px 26px;
}

.lx .lx-btn--outline-light:hover{ border-color: var(--lx-gold-soft); color: var(--lx-gold-soft); }

.lx .lx-btn--outline-gold-light{
	border-color: var(--lx-gold);
	background: rgba(196, 145, 61, .06);
	color: #B5822F;
	font-weight: 600;
	min-width: 250px;
}

.lx .lx-btn--outline-gold-light:hover{ background: var(--lx-gold); color: #fff; }

.lx .lx-ghost{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .2);
	background: rgba(255, 255, 255, .04);
	border-radius: 12px;
	padding: 12px 10px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	flex: 1;
	transition: border-color .18s ease, color .18s ease;
}

.lx .lx-ghost:hover{ border-color: var(--lx-mint); color: var(--lx-mint); }

.lx .lx-textlink{
	font-weight: 700;
	font-size: 15px;
	color: var(--lx-gold);
	border-bottom: 2px solid #EFD9B4;
	padding-bottom: 4px;
}

.lx .lx-textlink:hover{ color: var(--lx-gold-dark); }

.lx .lx-pill{
	flex: none;
	font-size: 13px;
	font-weight: 700;
	color: var(--lx-navy);
	border: 1px solid #DDE3EC;
	border-radius: 999px;
	padding: 8px 12px;
	white-space: nowrap;
}

.lx .lx-pill--dark{
	background: var(--lx-navy);
	border-color: var(--lx-navy);
	color: #fff;
	font-size: 14px;
	padding: 12px 20px;
}

.lx .lx-chip{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 999px;
	padding: 9px 16px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.lx .lx-chip--grant{
	background: rgba(63, 125, 98, .08);
	border: 1px solid rgba(63, 125, 98, .35);
	color: #A9762A;
	font-weight: 700;
}

.lx .lx-chip--white{
	background: #fff;
	border: 1px solid var(--lx-border);
	color: #3E4E66;
}

.lx .lx-chip--white strong{ color: var(--lx-gold); font-weight: 700; }

.lx .lx-chip--mint{
	background: rgba(143, 211, 174, .12);
	border: 1px solid rgba(143, 211, 174, .45);
	color: var(--lx-mint);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 6px 12px;
}

.lx .lx-chip--plain{
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lx-gold-soft);
	padding: 6px 0;
}

.lx .lx-badge{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 1px solid rgba(196, 145, 61, .5);
	border-radius: 999px;
	padding: 9px 18px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lx-gold-soft);
	margin: 0;
}

/* ---------- Верхня смуга ---------- */

.lx .lx-topbar{
	background: var(--lx-navy-deep);
	color: #C9D3E2;
	font-size: 14px;
}

.lx .lx-topbar__in{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-block: 8px;
}

.lx .lx-topbar__contacts{
	display: flex;
	align-items: center;
	gap: clamp(14px, 3vw, 28px);
	flex-wrap: wrap;
}

.lx .lx-topbar__phone{ color: #F2F5F9; font-weight: 600; }
.lx .lx-topbar__mail{ color: #C9D3E2; }
.lx .lx-topbar__phone:hover, .lx .lx-topbar__mail:hover{ color: var(--lx-gold-soft); }

.lx .lx-topbar__social{ display: flex; align-items: center; gap: 10px; }

.lx .lx-social{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .04);
	color: #C9D3E2;
	transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.lx .lx-social:hover{
	border-color: var(--lx-gold);
	color: var(--lx-gold-soft);
	background: rgba(196, 145, 61, .14);
}

/* ---------- Шапка ---------- */

.lx .lx-header{
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .97);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--lx-border);
}

.lx .lx-header__in{
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	padding-block: 13px;
}

.lx .lx-header__logo{ display: flex; align-items: center; }
.lx .lx-header__logo-img{ height: 62px; width: auto; }

.lx .lx-nav__mobile { display: none; }

.lx .lx-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(14px, 2vw, 24px);
	font-size: 15px;
	font-weight: 600;
	min-width: 0;
}

.lx .lx-nav__link {
	color: #3E4E66;
	white-space: nowrap;
	background: none;
	border: 0;
	padding: 0;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	transition: color .18s ease;
}

.lx .lx-nav__link:hover{ color: var(--lx-gold); }

.lx .lx-nav__link.is-active{
	color: var(--lx-navy);
	padding-bottom: 6px;
	margin-bottom: -6px;
	border-bottom: 2px solid var(--lx-gold);
}

.lx .lx-nav__drop{ position: relative; display: flex; align-items: center; }
.lx .lx-nav__toggle{ display: inline-flex; align-items: center; gap: 7px; }
.lx .lx-nav__caret{ font-size: 9px; color: #94A2B8; transition: transform .18s ease; }
.lx .lx-nav__drop.is-open .lx-nav__caret{ transform: rotate(180deg); }

.lx .lx-drop{
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 14px;
	z-index: 60;
}

.lx .lx-drop__box {
	background: #fff;
	border: 1px solid #E2E7EF;
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(11, 31, 58, .16);
	padding: 8px;
	min-width: 300px;
	display: flex;
	flex-direction: column;
}

.lx .lx-drop__item{
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 9px 12px;
	border-radius: 9px;
	color: var(--lx-navy);
}

.lx .lx-drop__item:hover{ background: #F4F6FA; }
.lx .lx-drop__title{ font-size: 14px; font-weight: 700; }
.lx .lx-drop__sub{ font-size: 12px; color: #8C99AC; font-weight: 500; }

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

.lx .lx-lang{ display: inline-flex; align-items: center; gap: 2px; }

.lx .lx-lang__current, .lx .lx-lang__other{
	padding: 4px 6px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .06em;
}

.lx .lx-lang__current{ color: var(--lx-navy); }
.lx .lx-lang__other{ color: #A3AEBE; }
.lx .lx-lang__other:hover{ color: var(--lx-gold); }
.lx .lx-lang__sep{ color: #CBD3DE; font-size: 12px; }

.lx .lx-header__cta{ font-size: 14px; }

.lx .lx-burger{
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 0 9px;
	border: 1px solid var(--lx-border);
	border-radius: 12px;
	background: #fff;
}

.lx .lx-burger span{
	display: block;
	height: 2px;
	background: var(--lx-navy);
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}

.lx .lx-burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.lx .lx-burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.lx .lx-burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.lx .lx-nav-overlay{
	position: fixed;
	inset: 0;
	background: rgba(8, 23, 41, .5);
	z-index: 45;
}

/* ---------- Смуга гранту ---------- */

.lx .lx-promo{
	position: relative;
	overflow: hidden;
	background: linear-gradient(90deg, var(--lx-navy) 0%, var(--lx-blue) 52%, var(--lx-navy) 100%);
	border-bottom: 1px solid rgba(229, 192, 121, .35);
}

.lx .lx-promo__shine{
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(143, 211, 174, 0) 42%, rgba(143, 211, 174, .2) 50%, rgba(143, 211, 174, 0) 58%);
	animation: lxShine 3.6s linear infinite;
	pointer-events: none;
}

.lx .lx-promo__in{
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	padding-block: 9px;
	text-align: center;
}

.lx .lx-promo__dot{
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--lx-mint);
	animation: lxPulse 1.8s ease-in-out infinite;
	flex: none;
}

.lx .lx-promo__title{
	font-family: var(--lx-font-display);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.lx .lx-promo__note{ font-size: 13px; color: #9FB0C6; }

.lx .lx-promo__btn{
	border: 1px solid var(--lx-mint);
	color: var(--lx-mint);
	font-weight: 700;
	font-size: 13px;
	padding: 7px 18px;
	border-radius: 999px;
	background: rgba(143, 211, 174, .08);
	white-space: nowrap;
	transition: background-color .18s ease, color .18s ease;
}

.lx .lx-promo__btn:hover{ background: var(--lx-mint); color: var(--lx-navy); }

@keyframes lxShine {
	0% { transform: translateX(-65%); }
	100% { transform: translateX(65%); }
}

@keyframes lxPulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.5); opacity: .45; }
}

/* ---------- Герой ---------- */

.lx .lx-hero{
	background: radial-gradient(120% 100% at 78% 0%, var(--lx-blue) 0%, var(--lx-navy) 46%, var(--lx-navy-deep) 100%);
	color: #fff;
	padding-block: clamp(36px, 5vw, 56px);
}

.lx .lx-hero__in{
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: start;
}

.lx .lx-hero__title{
	font-size: clamp(29px, 5.2vw, var(--lx-h1));
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin-top: 20px;
}

.lx .lx-hero__text{
	font-size: clamp(15px, 1.7vw, 17px);
	line-height: 1.6;
	color: #C4D0E1;
	margin-top: 18px;
	max-width: 560px;
}

.lx .lx-hero__actions{ display: flex; margin-top: 26px; max-width: 560px; }

.lx .lx-stats{
	display: flex;
	flex-wrap: wrap;
	gap: clamp(20px, 3vw, 30px);
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .14);
	max-width: 560px;
}

.lx .lx-stats__value{
	font-family: var(--lx-font-display);
	font-size: 26px;
	font-weight: 700;
	color: var(--lx-gold-soft);
	white-space: nowrap;
}

.lx .lx-stats__label{ font-size: 13px; color: #A9B8CD; margin-top: 4px; }

/* Картка форми */

.lx .lx-formcard{
	position: relative;
	border-radius: 22px;
	padding: 1px;
	background: linear-gradient(150deg, rgba(229, 192, 121, .75) 0%, rgba(143, 211, 174, .45) 48%, rgba(229, 192, 121, .25) 100%);
	box-shadow: 0 26px 60px rgba(4, 12, 26, .42);
}

.lx .lx-formcard > *{ position: relative; z-index: 1; }

.lx .lx-formcard::before{
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: 21px;
	background: linear-gradient(160deg, rgba(22, 52, 95, .72) 0%, rgba(11, 31, 58, .82) 100%);
	backdrop-filter: blur(14px);
}

.lx .lx-formcard__badges{
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding: 30px 30px 0;
}

.lx .lx-formcard__title{
	font-family: var(--lx-font-display);
	font-size: clamp(20px, 2.4vw, 25px);
	font-weight: 700;
	line-height: 1.24;
	margin: 14px 0 0;
	color: #fff;
	padding-inline: 30px;
}

.lx .lx-formcard__text{
	font-size: 14px;
	line-height: 1.62;
	color: #AEBFD4;
	margin: 10px 0 0;
	padding-inline: 30px;
}

/* ---------- Форми ---------- */

.lx .lx-form { padding: 20px 30px 30px; margin: 0; }

.lx .lx-hp{
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.lx .lx-form__fields{ display: flex; flex-direction: column; gap: 11px; }

.lx .lx-input{
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 12px;
	font-size: 15px;
	font-family: inherit;
	background: rgba(255, 255, 255, .07);
	color: #fff;
	outline: none;
	transition: border-color .18s ease, background-color .18s ease;
}

.lx .lx-input::placeholder{ color: #9AA6B8; }

.lx .lx-input:focus{
	border-color: var(--lx-gold-soft);
	background: rgba(255, 255, 255, .12);
}

.lx .lx-select{ appearance: none; background-image: none; }
.lx .lx-select option{ color: var(--lx-navy); background: #fff; }

.lx .lx-form__submit{ margin-top: 5px; }
.lx .lx-form__messengers{ display: flex; gap: 10px; margin-top: 2px; }

.lx .lx-form__note{
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-size: 12px;
	color: #9FB0C6;
}

.lx .lx-form__note .lx-mint{ font-weight: 700; }

.lx .lx-form__consent{
	font-size: 11px;
	line-height: 1.5;
	color: #8393AB;
	margin: 4px 0 0;
}

.lx .lx-form__consent a{ color: #AEBFD4; text-decoration: underline; }

.lx .lx-form__error{
	margin: 12px 0 0;
	font-size: 13px;
	color: #F2B8B8;
}

.lx .lx-form__done{ padding: 26px 0; text-align: center; }

.lx .lx-form__done-title{
	font-family: var(--lx-font-display);
	font-size: 22px;
	font-weight: 700;
	color: var(--lx-mint);
}

.lx .lx-form__done-text{
	font-size: 15px;
	line-height: 1.6;
	color: #C4D0E1;
	margin: 12px 0 0;
}

.lx .lx-form__reset{ margin-top: 20px; flex: none; padding: 12px 22px; }

.lx .lx-form.is-loading .lx-form__submit{ opacity: .65; pointer-events: none; }

/* Світла форма в модалці */

.lx .lx-form--modal .lx-input{
	border-color: #E2E7EF;
	background: #FAFBFD;
	color: var(--lx-navy);
}

.lx .lx-form--modal .lx-input:focus{
	border-color: var(--lx-gold);
	background: #fff;
}

.lx .lx-form--modal .lx-form__note{
	border-top-color: var(--lx-border);
	color: #8C99AC;
}

.lx .lx-form--modal .lx-form__consent{ color: #8C99AC; }
.lx .lx-form--modal .lx-form__consent a{ color: var(--lx-muted); }
.lx .lx-form--modal .lx-form__done-title{ color: var(--lx-green); }
.lx .lx-form--modal .lx-form__done-text{ color: var(--lx-muted); }
.lx .lx-form--modal .lx-form__error{ color: #B5484D; }

.lx .lx-form--modal .lx-form__reset{
	border-color: #DDE3EC;
	background: #fff;
	color: var(--lx-navy);
}

.lx .lx-form--modal .lx-form__reset:hover{ border-color: var(--lx-gold); color: var(--lx-gold); }

/* ---------- Смуга переваг ---------- */

.lx .lx-usp { background: #fff; padding-block: clamp(34px, 4.5vw, 52px); }

.lx .lx-usp__in{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.lx .lx-usp__item{ border-left: 2px solid #EFD9B4; padding-left: 20px; }

.lx .lx-usp__title{
	font-family: var(--lx-font-display);
	font-size: 17px;
	font-weight: 600;
}

.lx .lx-usp__text{
	font-size: 15px;
	line-height: 1.6;
	color: var(--lx-muted);
	margin-top: 10px;
}

/* ---------- Секційна шапка ---------- */

.lx .lx-sechead{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: clamp(20px, 4vw, 40px);
	flex-wrap: wrap;
}

.lx .lx-sechead__main{ max-width: 640px; }

.lx .lx-sechead__aside{
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}

.lx .lx-sechead__aside--row{
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
}

/* ---------- Курси ---------- */

.lx .lx-courses { background: var(--lx-surface); padding-block: clamp(40px, 5.5vw, 66px); }

.lx .lx-cards{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin-top: 32px;
}

.lx .lx-card{
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-card);
	overflow: hidden;
	transition: border-color .18s ease, transform .18s ease;
}

.lx .lx-card:hover{ border-color: var(--lx-gold); }

.lx .lx-card__media {
	display: block;
	width: 100%;
	height: var(--lx-card-img-h, 210px);
	overflow: hidden;
	background: var(--lx-surface);
	flex: none;
}

.lx .lx-card__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.lx .lx-card__img {
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	max-height: none !important;
	object-fit: cover;
	object-position: 50% 30%;
	display: block;
}

.lx .lx-card__body{
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 26px 28px 28px;
}

.lx .lx-card__eyebrow{
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--lx-gold);
}

.lx .lx-card__title{
	font-size: 21px;
	font-weight: 700;
	line-height: 1.26;
	margin-top: 12px;
	color: var(--lx-navy);
	overflow-wrap: anywhere;
}

.lx .lx-card__text{
	display: block;
	font-size: 15px;
	line-height: 1.6;
	color: var(--lx-muted);
	margin-top: 12px;
}

.lx .lx-card__foot{
	margin-top: auto;
	padding-top: 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.lx .lx-price{ display: flex; flex-direction: column; gap: 1px; min-width: 0; }

.lx .lx-price__old{
	font-size: 13px;
	font-weight: 600;
	color: #C88A8A;
	text-decoration: line-through;
	white-space: nowrap;
}

.lx .lx-price__new{
	font-family: var(--lx-font-display);
	font-size: 15px;
	font-weight: 700;
	color: var(--lx-green);
	white-space: nowrap;
}

.lx .lx-price__new--lg{ font-size: 19px; }

/* Широка картка */

.lx .lx-wide{
	display: grid;
	grid-template-columns: 0.42fr 1fr;
	gap: 32px;
	align-items: center;
	margin-top: 22px;
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-card);
	overflow: hidden;
	transition: border-color .18s ease;
}

.lx .lx-wide:hover{ border-color: var(--lx-gold); }
.lx .lx-wide__media {
	display: block;
	height: 100%;
	min-height: var(--lx-card-img-h, 210px);
	overflow: hidden;
	background: var(--lx-surface);
}

.lx .lx-wide__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.lx .lx-wide__img {
	width: 100% !important;
	height: 100% !important;
	min-height: var(--lx-card-img-h, 210px);
	max-height: none !important;
	object-fit: cover;
	object-position: 50% 40%;
	display: block;
}

.lx .lx-wide__body{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	padding: 28px 34px 28px 0;
}

.lx .lx-wide__text-col{ display: block; max-width: 560px; }

.lx .lx-wide__title{
	font-size: 24px;
	font-weight: 600;
	margin-top: 10px;
	color: var(--lx-navy);
}

.lx .lx-wide__price-col{ display: flex; align-items: center; gap: 20px; }

/* ---------- Методика ---------- */

.lx .lx-method { background: #fff; padding-block: clamp(40px, 5.5vw, 66px); }

.lx .lx-method__in{
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 4.5vw, 56px);
	align-items: start;
}

.lx .lx-skills{
	margin-top: 30px;
	background: var(--lx-surface);
	border-radius: 18px;
	padding: 26px;
}

.lx .lx-skills__list{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.lx .lx-skill{
	background: #fff;
	border: 1px solid #E2E7EF;
	border-radius: 999px;
	padding: 9px 16px;
	font-size: 14px;
	font-weight: 600;
}

.lx .lx-acc{ display: flex; flex-direction: column; gap: 12px; }

.lx .lx-acc__item{
	border: 1px solid var(--lx-border);
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	transition: background-color .18s ease;
}

.lx .lx-acc__item.is-open{ background: var(--lx-surface); }
.lx .lx-acc__h{ margin: 0; font-size: inherit; font-weight: inherit; }

.lx .lx-acc__btn{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: transparent;
	border: 0;
	padding: 24px 26px;
	text-align: left;
}

.lx .lx-acc__label{ display: flex; align-items: center; gap: 18px; }

.lx .lx-acc__num{
	font-family: var(--lx-font-display);
	font-size: 14px;
	font-weight: 600;
	color: var(--lx-gold);
}

.lx .lx-acc__title{
	font-family: var(--lx-font-display);
	font-size: clamp(16px, 1.9vw, 19px);
	font-weight: 600;
	color: var(--lx-navy);
}

.lx .lx-acc__sign{
	color: var(--lx-gold);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	flex: none;
}

.lx .lx-acc__sign::before{ content: "+"; }
.lx .lx-acc__item.is-open .lx-acc__sign::before{ content: "−"; }

.lx .lx-acc__text{
	font-size: 16px;
	line-height: 1.68;
	color: #4A5A72;
	margin: 0;
	padding: 0 26px 26px 58px;
}

/* ---------- Ціни ---------- */

.lx .lx-pricing { background: #fff; padding-block: clamp(36px, 5vw, 56px); }

.lx .lx-pricing__box{
	background: var(--lx-surface);
	border: 1px solid var(--lx-border);
	border-radius: 26px;
	padding: clamp(22px, 3vw, 38px);
}

.lx .lx-grant{
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	background: #fff;
	border: 1px solid rgba(63, 125, 98, .4);
	border-radius: 16px;
	padding: 14px 18px;
}

.lx .lx-grant__title{
	font-family: var(--lx-font-display);
	font-size: 20px;
	font-weight: 700;
	color: var(--lx-green);
}

.lx .lx-grant__note{ font-size: 13px; color: #7B8899; margin-top: 2px; }

.lx .lx-grant__btn{
	border: 1px solid var(--lx-green);
	color: var(--lx-green);
	font-weight: 700;
	font-size: 14px;
	padding: 11px 20px;
	border-radius: 999px;
	background: rgba(63, 125, 98, .07);
	white-space: nowrap;
	transition: background-color .18s ease, color .18s ease;
}

.lx .lx-grant__btn:hover{ background: var(--lx-green); color: #fff; }

.lx .lx-tariffs{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 28px;
}

.lx .lx-tariff{
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: 18px;
	padding: 24px;
	display: flex;
	flex-direction: column;
}

.lx .lx-tariff--dark{
	background: linear-gradient(160deg, var(--lx-blue) 0%, var(--lx-navy) 100%);
	border-color: rgba(229, 192, 121, .5);
}

.lx .lx-tariff__head{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.lx .lx-tariff__title{ font-size: 15px; font-weight: 700; color: var(--lx-navy); }
.lx .lx-tariff--dark .lx-tariff__title{ color: #fff; }

.lx .lx-tariff__tag{
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--lx-mint);
	border: 1px solid rgba(143, 211, 174, .45);
	border-radius: 999px;
	padding: 4px 10px;
	white-space: nowrap;
}

.lx .lx-tariff__prices{
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.lx .lx-tariff__new{
	font-family: var(--lx-font-display);
	font-size: 26px;
	font-weight: 700;
	color: var(--lx-green);
	white-space: nowrap;
}

.lx .lx-tariff--dark .lx-tariff__new{ font-size: 23px; color: var(--lx-mint); }

.lx .lx-tariff__old{
	font-size: 13px;
	font-weight: 600;
	color: #C88A8A;
	text-decoration: line-through;
	white-space: nowrap;
}

.lx .lx-tariff--dark .lx-tariff__old{ color: #B98A8A; }

.lx .lx-tariff__meta{
	font-size: 13px;
	line-height: 1.5;
	color: #7B8899;
	margin: 8px 0 20px;
}

.lx .lx-tariff--dark .lx-tariff__meta{ color: #A9B8CD; }

.lx .lx-tariff__btn{
	display: block;
	width: 100%;
	text-align: center;
	margin-top: auto;
	border: 1px solid #DDE3EC;
	background: #fff;
	color: var(--lx-navy);
	font-weight: 700;
	font-size: 14px;
	padding: 12px 14px;
	border-radius: 999px;
	transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.lx .lx-tariff__btn:hover{ border-color: var(--lx-gold); color: var(--lx-gold); }

.lx .lx-tariff__btn--gold{
	background: var(--lx-gold);
	border-color: var(--lx-gold);
	color: #fff;
}

.lx .lx-tariff__btn--gold:hover{ background: #D6A24A; border-color: #D6A24A; color: #fff; }

.lx .lx-pricing__notes{
	display: flex;
	align-items: center;
	gap: clamp(14px, 3vw, 28px);
	flex-wrap: wrap;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid #E2E7EF;
}

.lx .lx-note{
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	font-weight: 600;
	color: #3E4E66;
}

/* ---------- Вступ ---------- */

.lx .lx-adm{
	background: linear-gradient(180deg, var(--lx-sand-from) 0%, var(--lx-sand-to) 100%);
	border-block: 1px solid #E2DCD1;
	padding-block: clamp(36px, 5vw, 56px);
}

.lx .lx-adm__in{
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 44px);
	align-items: center;
}

.lx .lx-adm__img {
	width: 100% !important;
	height: 300px !important;
	max-height: none !important;
	object-fit: cover;
	object-position: center 35%;
	border-radius: var(--lx-radius-card);
	display: block;
}

.lx .lx-adm__tags{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

.lx .lx-tag{
	border-radius: 999px;
	padding: 9px 16px;
	font-size: 14px;
	font-weight: 600;
}

.lx .lx-tag--plain{ background: #fff; border: 1px solid #E4DED2; color: #3E4E66; }

.lx .lx-tag--gold{
	background: rgba(196, 145, 61, .1);
	border: 1px solid rgba(196, 145, 61, .4);
	color: #B5822F;
	font-weight: 700;
}

.lx .lx-tag--green{
	background: rgba(63, 125, 98, .1);
	border: 1px solid rgba(63, 125, 98, .35);
	color: var(--lx-green);
	font-weight: 700;
}

.lx .lx-adm__actions{
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 24px;
	flex-wrap: wrap;
}

.lx .lx-adm__note{ font-size: 14px; font-weight: 600; color: var(--lx-green); }

/* ---------- Відгуки ---------- */

.lx .lx-rev { background: var(--lx-surface); padding-block: clamp(40px, 5.5vw, 66px); }

.lx .lx-rev__grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 32px;
}

.lx .lx-review{
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-card);
	padding: 28px;
	display: flex;
	flex-direction: column;
}

.lx .lx-review__stars{ color: var(--lx-gold); letter-spacing: .2em; font-size: 15px; }

.lx .lx-review__text{
	font-size: 15px;
	line-height: 1.7;
	color: #2E3D54;
	margin-top: 16px;
}

.lx .lx-review__foot{
	margin-top: auto;
	padding-top: 22px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.lx .lx-review__avatar{
	width: 42px;
	height: 42px;
	flex: none;
	border-radius: 50%;
	background: var(--lx-navy);
	color: var(--lx-gold-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
}

.lx .lx-review__name{ display: block; font-weight: 700; font-size: 15px; }
.lx .lx-review__country{ font-weight: 400; color: #7B8899; }
.lx .lx-review__course{ display: block; font-size: 13px; color: #7B8899; }

/* ---------- Фінальний блок ---------- */

.lx .lx-cta { background: #fff; padding-block: clamp(40px, 5vw, 62px); }

.lx .lx-cta__box{
	background: linear-gradient(115deg, var(--lx-navy) 0%, var(--lx-blue) 100%);
	border-radius: 26px;
	padding: clamp(26px, 4vw, 46px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 4.5vw, 56px);
	align-items: center;
	color: #fff;
}

.lx .lx-cta__box .lx-h2--light{ font-size: clamp(24px, 3.6vw, 38px); }

.lx .lx-cta__text{
	font-size: clamp(15px, 1.7vw, 17px);
	line-height: 1.68;
	color: #C4D0E1;
	margin-top: 18px;
	max-width: 520px;
}

.lx .lx-cta__actions{ display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.lx .lx-steps{
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.lx .lx-steps__item{
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: rgba(255, 255, 255, .06);
	border-radius: 16px;
	padding: 20px 22px;
}

.lx .lx-steps__num{
	font-family: var(--lx-font-display);
	color: var(--lx-gold-soft);
	font-size: 15px;
	font-weight: 600;
	flex: none;
}

.lx .lx-steps__text{ font-size: 16px; line-height: 1.55; color: #E7ECF4; }

/* ---------- Підвал ---------- */

.lx .lx-footer{
	background: var(--lx-navy-deep);
	color: #C9D3E2;
	padding-block: clamp(36px, 5vw, 56px) 26px;
}

.lx .lx-footer__in{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(28px, 4vw, 48px);
}

.lx .lx-footer__logo{ height: 108px; width: auto; }

.lx .lx-footer__about{
	font-size: 15px;
	line-height: 1.7;
	color: #93A2B8;
	margin-top: 20px;
	max-width: 320px;
}

.lx .lx-footer__title{
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--lx-gold-soft);
	margin: 0;
}

.lx .lx-footer__links{
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 18px;
	font-size: 15px;
}

.lx .lx-footer__links a{ color: #C9D3E2; }
.lx .lx-footer__links a:hover{ color: var(--lx-gold-soft); }
.lx .lx-footer__phone{ color: #fff !important; font-weight: 600; }
.lx .lx-footer__social{ display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.lx .lx-footer__legal{
	margin-top: 34px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	font-size: 14px;
	color: #7F8EA5;
}

.lx .lx-footer__legal a{ color: #7F8EA5; }
.lx .lx-footer__legal a:hover{ color: var(--lx-gold-soft); }

/* ---------- Модалка ---------- */

.lx .lx-modal{
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.lx .lx-modal__backdrop{
	position: absolute;
	inset: 0;
	background: rgba(8, 23, 41, .62);
	backdrop-filter: blur(7px);
}

.lx .lx-modal__dialog{
	position: relative;
	width: 100%;
	max-width: 460px;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	background: #fff;
	border-radius: 22px;
	padding: 32px;
	box-shadow: 0 30px 80px rgba(4, 12, 26, .5);
}

.lx .lx-modal__close{
	position: absolute;
	top: 14px;
	right: 14px;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: #F3F5F9;
	color: var(--lx-muted);
	font-size: 17px;
	line-height: 1;
}

.lx .lx-modal__close:hover{ background: var(--lx-border); color: var(--lx-navy); }

.lx .lx-modal__title{
	font-family: var(--lx-font-display);
	font-size: 23px;
	font-weight: 700;
	line-height: 1.26;
	margin-top: 10px;
	color: var(--lx-navy);
	padding-right: 26px;
}

.lx .lx-modal__text{
	font-size: 14px;
	line-height: 1.62;
	color: var(--lx-muted);
	margin-top: 10px;
}

.lx .lx-modal .lx-form{ padding: 20px 0 0; }

/* ---------- Адаптив ---------- */

@media (max-width: 1180px){
	.lx .lx-cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lx .lx-tariffs{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lx .lx-rev__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lx .lx-usp__in{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
	/* backdrop-filter у шапки створює containing block для fixed —
	   через це панель меню відкривалася лише в межах шапки. Вимикаємо. */
	.lx .lx-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: #fff;
	}

	.lx .lx-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		z-index: 60;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 2px;
		padding: 84px 24px 40px;
		box-shadow: none;
		transform: translateX(100%);
		transition: transform .25s ease;
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	.lx .lx-nav__link {
		padding: 16px 0;
		font-size: 18px;
		white-space: normal;
		border-bottom: 1px solid var(--lx-border);
	}

	.lx .lx-nav__drop .lx-nav__toggle {
		border-bottom: 1px solid var(--lx-border);
	}

	.lx .lx-nav__drop.is-open .lx-nav__toggle { border-bottom-color: transparent; }
	.lx .lx-nav__caret { font-size: 12px; }

	.lx .lx-nav__mobile {
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin-top: 28px;
	}

	.lx .lx-nav__mobile .lx-btn {
		width: 100%;
		padding: 16px 24px;
		font-size: 16px;
	}

	.lx .lx-nav__mobile-phone {
		font-size: 18px;
		font-weight: 700;
		color: var(--lx-navy);
		text-align: center;
	}

	.lx .lx-nav__mobile-mail {
		font-size: 15px;
		color: var(--lx-muted);
		text-align: center;
	}

	.lx .lx-burger { position: relative; z-index: 70; }

	.lx .lx-burger[aria-expanded="true"] {
		background: transparent;
		border-color: transparent;
	}

	.lx .lx-nav-overlay { display: none; }

	.lx .lx-drop__box {
		box-shadow: none;
		border: 0;
		border-left: 2px solid var(--lx-gold);
		border-radius: 0;
		min-width: 0;
		padding: 8px 0 12px 16px;
		margin-bottom: 8px;
	}

	.lx .lx-drop__title { font-size: 16px; }
	.lx .lx-drop__item { padding: 10px 8px; }

	.lx .lx-header__in{ grid-template-columns: auto 1fr; }
	.lx .lx-burger{ display: flex; }
	.lx .lx-header__cta{ display: none; }

	.lx .lx-nav{
		position: fixed;
		inset: 0 0 0 auto;
		width: min(320px, 86vw);
		z-index: 60;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 4px;
		padding: 88px 24px 32px;
		box-shadow: -20px 0 50px rgba(11, 31, 58, .18);
		transform: translateX(100%);
		transition: transform .25s ease;
		overflow-y: auto;
	}

	.lx .lx-nav.is-open{ transform: translateX(0); }
	.lx .lx-nav__link{ padding: 12px 0; font-size: 16px; white-space: normal; }

	.lx .lx-nav__link.is-active{
		border-bottom: 0;
		margin-bottom: 0;
		padding-bottom: 12px;
		color: var(--lx-gold);
	}

	.lx .lx-nav__drop{ display: block; }
	.lx .lx-nav__toggle{ width: 100%; justify-content: space-between; padding: 12px 0; }

	.lx .lx-drop{
		position: static;
		transform: none;
		padding-top: 0;
	}

	.lx .lx-drop__box{
		box-shadow: none;
		border: 0;
		border-left: 2px solid var(--lx-border);
		border-radius: 0;
		min-width: 0;
		padding: 4px 0 8px 14px;
	}

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

@media (max-width: 980px) {
	.lx .lx-hero__in{ grid-template-columns: minmax(0, 1fr); }
	.lx .lx-method__in{ grid-template-columns: minmax(0, 1fr); }
	.lx .lx-cta__box{ grid-template-columns: minmax(0, 1fr); }
	.lx .lx-hero__text, .lx .lx-hero__actions, .lx .lx-stats{ max-width: none; }
}

@media (max-width: 900px) {
	.lx .lx-adm__in{ grid-template-columns: minmax(0, 1fr); }
	.lx .lx-adm__img{ height: 240px; }

	.lx .lx-wide{ grid-template-columns: minmax(0, 1fr); gap: 0; }
	.lx .lx-wide__img{ min-height: 200px; height: 200px; }
	.lx .lx-wide__body{ padding: 24px; }
	.lx .lx-wide__price-col{ width: 100%; justify-content: space-between; }
}

@media (max-width: 720px) {
	.lx .lx-topbar__in{ justify-content: center; }
	.lx .lx-promo__note{ display: none; }
	.lx .lx-acc__text{ padding-left: 26px; }
	.lx .lx-formcard__badges, .lx .lx-formcard__title, .lx .lx-formcard__text{ padding-inline: 20px; }
	.lx .lx-form{ padding: 20px; }
	.lx .lx-modal__dialog{ padding: 24px 20px; }
	.lx .lx-modal .lx-form{ padding: 20px 0 0; }
}

@media (max-width: 600px) {
	.lx .lx-cards{ grid-template-columns: minmax(0, 1fr); }
	.lx .lx-tariffs{ grid-template-columns: minmax(0, 1fr); }
	.lx .lx-rev__grid{ grid-template-columns: minmax(0, 1fr); }
	.lx .lx-usp__in{ grid-template-columns: minmax(0, 1fr); gap: 20px; }
	.lx .lx-footer__in{ grid-template-columns: minmax(0, 1fr); }
	.lx .lx-stats{ gap: 18px; }
	.lx .lx-stats__item{ min-width: 30%; }
	.lx .lx-header__logo-img{ height: 46px; }
	.lx .lx-sechead__aside--row{ gap: 10px; }
	.lx .lx-btn--outline-gold{ padding: 15px 24px; }
	.lx .lx-form__messengers{ flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	.lx *, .lx *::before, .lx *::after{
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
}

/* Друк */
@media print{
	.lx .lx-header, .lx .lx-topbar, .lx .lx-promo, .lx .lx-modal, .lx .lx-nav-overlay{ display: none !important; }
}

/* ==========================================================================
   Захист від стилів теми.
   Тема може перевизначати кольори тексту та посилань — тут ми повертаємо
   контрастні кольори для всіх темних секцій із підвищеною специфічністю.
   ========================================================================== */

/* Верхня смуга */
.lx .lx-topbar,
.lx .lx-topbar a,
.lx .lx-topbar span {
	color: #C9D3E2;
}

.lx .lx-topbar a.lx-topbar__phone { color: #F2F5F9; }
.lx .lx-topbar a:hover { color: var(--lx-gold-soft); }
.lx .lx-topbar .lx-social { color: #C9D3E2; }
.lx .lx-topbar .lx-social:hover { color: var(--lx-gold-soft); }

/* Смуга гранту */
.lx .lx-promo,
.lx .lx-promo span,
.lx .lx-promo .lx-promo__title { color: #fff; }

.lx .lx-promo .lx-promo__note { color: #9FB0C6; }
.lx .lx-promo .lx-mint { color: var(--lx-mint); }

.lx .lx-promo a.lx-promo__btn {
	color: var(--lx-mint);
	background: rgba(143, 211, 174, .12);
	border-color: var(--lx-mint);
}

.lx .lx-promo a.lx-promo__btn:hover {
	color: var(--lx-navy);
	background: var(--lx-mint);
}

/* Герой */
.lx .lx-hero,
.lx .lx-hero h1,
.lx .lx-hero h2,
.lx .lx-hero h3,
.lx .lx-hero .lx-hero__title { color: #fff; }

.lx .lx-hero .lx-hero__text { color: #C4D0E1; }
.lx .lx-hero .lx-badge { color: var(--lx-gold-soft); }
.lx .lx-hero .lx-hero__title .lx-gold { color: var(--lx-gold-soft); }
.lx .lx-hero .lx-stats__value { color: var(--lx-gold-soft); }
.lx .lx-hero .lx-stats__label { color: #A9B8CD; }

.lx .lx-hero a.lx-btn--outline-gold {
	color: #fff;
	border-color: rgba(229, 192, 121, .55);
}

.lx .lx-hero a.lx-btn--outline-gold:hover { color: var(--lx-gold-soft); }

/* Картка форми в герої */
.lx .lx-formcard .lx-formcard__title,
.lx .lx-formcard .lx-formcard__title .lx-gold { color: #fff; }
.lx .lx-formcard .lx-formcard__title .lx-gold { color: var(--lx-gold-soft); }
.lx .lx-formcard .lx-formcard__text { color: #AEBFD4; }
.lx .lx-formcard .lx-form__note { color: #9FB0C6; }
.lx .lx-formcard .lx-input { color: #fff; }
.lx .lx-formcard a.lx-ghost { color: #fff; }
.lx .lx-formcard a.lx-ghost:hover { color: var(--lx-mint); }
.lx .lx-formcard .lx-form__consent a { color: #AEBFD4; }

/* Світлі секції: заголовки та текст */
.lx .lx-usp h3,
.lx .lx-courses h2,
.lx .lx-courses h3,
.lx .lx-method h2,
.lx .lx-method h3,
.lx .lx-pricing h2,
.lx .lx-adm h2,
.lx .lx-rev h2 { color: var(--lx-navy); }

.lx .lx-courses a,
.lx .lx-courses a h3 { color: var(--lx-navy); }
.lx .lx-courses a.lx-textlink { color: var(--lx-gold); }
.lx .lx-courses .lx-card__eyebrow { color: var(--lx-gold); }
.lx .lx-courses .lx-price__new { color: var(--lx-green); }
.lx .lx-courses .lx-price__old { color: #C88A8A; }
.lx .lx-courses .lx-pill { color: var(--lx-navy); }
.lx .lx-courses .lx-pill--dark { color: #fff; }
.lx .lx-eyebrow { color: var(--lx-gold); }
.lx .lx-eyebrow--sand { color: #B5822F; }

/* Кнопка «Пройти діагностику» — темна на світлому фоні */
.lx .lx-method a.lx-btn--navy,
.lx a.lx-btn--navy {
	background: var(--lx-navy);
	color: #fff;
}

.lx .lx-method a.lx-btn--navy:hover,
.lx a.lx-btn--navy:hover {
	background: var(--lx-blue);
	color: #fff;
}

/* Кнопка в шапці */
.lx .lx-header button.lx-btn--gold,
.lx button.lx-btn--gold,
.lx a.lx-btn--gold {
	background: var(--lx-gold);
	color: #fff;
}

.lx .lx-header button.lx-btn--gold:hover,
.lx button.lx-btn--gold:hover,
.lx a.lx-btn--gold:hover {
	background: var(--lx-gold-dark);
	color: #fff;
}

/* Тарифи */
.lx .lx-tariff .lx-tariff__btn { color: var(--lx-navy); background: #fff; }
.lx .lx-tariff .lx-tariff__btn:hover { color: var(--lx-gold); }
.lx .lx-tariff--dark .lx-tariff__btn--gold,
.lx .lx-tariff--dark a.lx-tariff__btn--gold,
.lx .lx-tariff--dark button.lx-tariff__btn--gold {
	color: #fff;
	background: var(--lx-gold);
	border-color: var(--lx-gold);
}

/* На ховері раніше золотів текст на золотому тлі — кнопка зникала */
.lx .lx-tariff .lx-tariff__btn--gold:hover,
.lx .lx-tariff--dark .lx-tariff__btn--gold:hover,
.lx .lx-tariff--dark a.lx-tariff__btn--gold:hover,
.lx .lx-tariff--dark button.lx-tariff__btn--gold:hover {
	background: #fff;
	border-color: #fff;
	color: var(--lx-navy);
}
.lx .lx-tariff--dark .lx-tariff__title { color: #fff; }
.lx .lx-tariff--dark .lx-tariff__new { color: var(--lx-mint); }
.lx .lx-grant a.lx-grant__btn { color: var(--lx-green); }
.lx .lx-grant a.lx-grant__btn:hover { color: #fff; background: var(--lx-green); }

/* Фінальний блок */
.lx .lx-cta__box,
.lx .lx-cta__box h2,
.lx .lx-cta__box .lx-steps__text { color: #fff; }
.lx .lx-cta__box .lx-cta__text { color: #C4D0E1; }
.lx .lx-cta__box .lx-steps__num { color: var(--lx-gold-soft); }
.lx .lx-cta__box a.lx-btn--outline-light { color: #fff; }
.lx .lx-cta__box a.lx-btn--outline-light:hover { color: var(--lx-gold-soft); }

/* Підвал */
.lx .lx-footer,
.lx .lx-footer .lx-footer__links a,
.lx .lx-footer .lx-footer__social a { color: #C9D3E2; }

.lx .lx-footer .lx-footer__links a:hover,
.lx .lx-footer .lx-footer__social a:hover { color: var(--lx-gold-soft); }
.lx .lx-footer .lx-footer__title { color: var(--lx-gold-soft); }
.lx .lx-footer .lx-footer__about { color: #93A2B8; }
.lx .lx-footer .lx-footer__legal,
.lx .lx-footer .lx-footer__legal a { color: #7F8EA5; }
.lx .lx-footer a.lx-footer__phone { color: #fff; }

/* Модалка */
.lx .lx-modal__dialog,
.lx .lx-modal__dialog .lx-modal__title { color: var(--lx-navy); }
.lx .lx-modal__dialog .lx-modal__text { color: var(--lx-muted); }
.lx .lx-modal__dialog .lx-input { color: var(--lx-navy); background: #FAFBFD; }

/* Тема може ламати картинки правилом img { height: auto } */
.lx .lx-card__media img,
.lx .lx-wide__media img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

/* ==========================================================================
   Підвал на телефоні
   ========================================================================== */

@media (max-width: 700px) {
	.lx .lx-footer {
		padding-block: 36px 20px;
		text-align: left;
	}

	.lx .lx-footer__in {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.lx .lx-footer__col {
		padding-block: 22px;
		border-top: 1px solid rgba(255, 255, 255, .09);
	}

	.lx .lx-footer__col:first-child {
		padding-top: 0;
		border-top: 0;
		text-align: center;
	}

	.lx .lx-footer__logo {
		height: 64px;
		margin-inline: auto;
	}

	.lx .lx-footer__about {
		margin: 14px auto 0;
		font-size: 14px;
		line-height: 1.6;
		max-width: 34ch;
	}

	.lx .lx-footer__title { font-size: 11px; }

	/* Посилання у дві колонки, щоб не було довгої стрічки */
	.lx .lx-footer__links {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px 16px;
		margin-top: 14px;
		font-size: 14px;
	}

	/* Контакти — в одну колонку, e-mail довгий */
	.lx .lx-footer__col:last-child .lx-footer__links {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}

	.lx .lx-footer__col:last-child a { overflow-wrap: anywhere; }

	.lx .lx-footer__phone { font-size: 17px; }

	.lx .lx-footer__social {
		display: flex;
		gap: 10px;
		margin-top: 4px;
	}

	.lx .lx-footer__social a {
		flex: 1;
		text-align: center;
		border: 1px solid rgba(255, 255, 255, .16);
		border-radius: 999px;
		padding: 9px 6px;
		font-size: 13px;
		font-weight: 600;
	}

	.lx .lx-footer__legal {
		margin-top: 20px;
		padding-top: 18px;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 10px;
		font-size: 13px;
	}
}

/* ==========================================================================
   Сторінка «Супровід вступу»
   ========================================================================== */

/* Хлібні крихти */
.lx .lx-crumbs {
	font-size: 14px;
	color: #93A5BF;
	margin-bottom: 22px;
}

.lx .lx-crumbs__link { color: #93A5BF; }
.lx .lx-crumbs__link:hover { color: var(--lx-gold-soft); }
.lx .lx-crumbs__sep { padding: 0 8px; }
.lx .lx-crumbs__current { color: var(--lx-gold-soft); }

/* Перший екран сторінки */
.lx .lx-hero--page {
	background: radial-gradient(120% 100% at 80% 0%, var(--lx-blue) 0%, var(--lx-navy) 48%, var(--lx-navy-deep) 100%);
	padding-block: clamp(32px, 4.5vw, 52px) clamp(40px, 5.5vw, 64px);
}

.lx .lx-hero__in--page { gap: clamp(32px, 4.5vw, 52px); }

.lx .lx-hero__title--page {
	font-size: clamp(28px, 4.8vw, 50px);
	line-height: 1.1;
}

.lx .lx-badge--sm {
	padding: 8px 16px;
	font-size: 12px;
}

/* Показники в картках */
.lx .lx-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 32px;
	max-width: 620px;
}

.lx .lx-facts__item {
	background: rgba(255, 255, 255, .06);
	border-radius: 14px;
	padding: 16px;
}

.lx .lx-facts__value {
	font-family: var(--lx-font-display);
	font-size: 19px;
	font-weight: 600;
	color: var(--lx-gold-soft);
}

.lx .lx-facts__label {
	font-size: 13px;
	color: #A9B8CD;
	margin-top: 5px;
}

/* Координатор */
.lx .lx-coord {
	background: #fff;
	padding-block: clamp(40px, 5.2vw, 62px);
}

.lx .lx-coord__in {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 4.4vw, 52px);
	align-items: center;
}

.lx .lx-coord__media { display: block; }
.lx .lx-coord__media picture { display: block; }

.lx .lx-coord__img {
	width: 100% !important;
	height: 330px !important;
	max-height: none !important;
	object-fit: cover;
	object-position: center 35%;
	border-radius: var(--lx-radius-card);
	display: block;
}

.lx .lx-coord__text {
	font-size: clamp(15px, 1.7vw, 17px);
	line-height: 1.7;
	color: #4A5A72;
	margin-top: 16px;
	max-width: 62ch;
}

.lx .lx-coord .lx-btn--navy { margin-top: 24px; }

/* Картки «Мова» та «Формат» */
.lx .lx-infocards {
	background: #fff;
	padding-block: 0 clamp(36px, 4.6vw, 56px);
}

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

.lx .lx-infocard {
	border: 1px solid #E4DED2;
	border-radius: var(--lx-radius-card);
	padding: 28px 30px;
}

.lx .lx-infocard--gold {
	background: linear-gradient(150deg, rgba(196, 145, 61, .07) 0%, rgba(255, 255, 255, 0) 70%);
}

.lx .lx-infocard--green {
	background: linear-gradient(150deg, rgba(63, 125, 98, .07) 0%, rgba(255, 255, 255, 0) 70%);
}

.lx .lx-infocard__eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	margin: 0;
}

.lx .lx-infocard--gold .lx-infocard__eyebrow { color: #B5822F; }
.lx .lx-infocard--green .lx-infocard__eyebrow { color: var(--lx-green); }

.lx .lx-infocard__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.26;
	margin-top: 12px;
	color: var(--lx-navy);
}

.lx .lx-infocard__text {
	font-size: 16px;
	line-height: 1.62;
	color: var(--lx-muted);
	margin-top: 10px;
}

.lx .lx-infocard__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.lx .lx-infocard__tag {
	border: 1px solid #E4DED2;
	border-radius: 999px;
	padding: 8px 15px;
	font-size: 14px;
	font-weight: 600;
	color: #3E4E66;
	background: #fff;
}

/* Спеціальності */
.lx .lx-majors {
	background: linear-gradient(180deg, var(--lx-sand-from) 0%, var(--lx-sand-to) 100%);
	border-block: 1px solid #E2DCD1;
	padding-block: clamp(40px, 5.2vw, 62px);
}

.lx .lx-majors__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 30px;
}

.lx .lx-major {
	background: #fff;
	border: 1px solid #E4DED2;
	border-radius: 18px;
	padding: 24px;
}

.lx .lx-major__title {
	font-family: var(--lx-font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #B5822F;
	margin: 0;
}

.lx .lx-major__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.lx .lx-major__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.45;
	color: #3E4E66;
}

.lx .lx-major__item .lx-dot {
	width: 5px;
	height: 5px;
	margin-top: 8px;
}

/* Кроки */
.lx .lx-stepsblock {
	background: #fff;
	padding-block: clamp(40px, 5.2vw, 62px);
}

.lx .lx-stepsblock__head { max-width: 640px; }

.lx .lx-stepsblock__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.lx .lx-step {
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: 18px;
	padding: 26px;
}

.lx .lx-step__num {
	display: block;
	font-family: var(--lx-font-display);
	font-size: 15px;
	font-weight: 700;
	color: var(--lx-gold);
}

.lx .lx-step__title {
	font-size: 18px;
	font-weight: 600;
	margin-top: 12px;
	color: var(--lx-navy);
}

.lx .lx-step__text {
	font-size: 15px;
	line-height: 1.62;
	color: var(--lx-muted);
	margin-top: 10px;
}

/* Фінальний блок сторінки */
.lx .lx-cta--page { padding-block: 20px clamp(40px, 5.2vw, 62px); }

.lx .lx-ctalist {
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lx .lx-ctalist__item {
	background: rgba(255, 255, 255, .06);
	border-radius: 14px;
	padding: 17px 20px;
	font-size: 16px;
	color: #E7ECF4;
}

/* Захист від стилів теми */
.lx .lx-coord h2,
.lx .lx-majors h2,
.lx .lx-majors h3,
.lx .lx-stepsblock h2,
.lx .lx-stepsblock h3,
.lx .lx-infocard h3 { color: var(--lx-navy); }

.lx .lx-majors .lx-major__title { color: #B5822F; }
.lx .lx-hero--page h1 { color: #fff; }
.lx .lx-cta--page .lx-ctalist__item { color: #E7ECF4; }

/* Адаптив сторінки вступу */
@media (max-width: 1100px) {
	.lx .lx-majors__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lx .lx-stepsblock__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
	.lx .lx-hero__in--page { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-coord__in { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-facts { max-width: none; }
}

@media (max-width: 760px) {
	.lx .lx-infocards__in { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-coord__img { height: 240px; }
	.lx .lx-infocard { padding: 24px 22px; }
}

@media (max-width: 600px) {
	.lx .lx-majors__grid { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-stepsblock__grid { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-facts { grid-template-columns: minmax(0, 1fr); gap: 10px; }
	.lx .lx-facts__item { display: flex; align-items: baseline; gap: 10px; }
	.lx .lx-facts__label { margin-top: 0; }
	.lx .lx-crumbs { font-size: 13px; margin-bottom: 16px; }
}

/* ==========================================================================
   Сторінки курсів
   ========================================================================== */

.lx .lx-hero--course { padding-block: clamp(32px, 4.5vw, 52px) clamp(40px, 5.5vw, 64px); }

.lx .lx-hero__title--course {
	font-size: clamp(29px, 5.2vw, 54px);
	margin-top: 22px;
}

.lx .lx-facts--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.lx .lx-hero__actions--row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 30px;
	max-width: none;
}

.lx .lx-hero__actions--row .lx-btn {
	width: auto;
	padding: 14px 26px;
	font-size: 15px;
}

.lx .lx-h2--course {
	font-size: clamp(25px, 3.8vw, 38px);
	font-weight: 600;
	line-height: 1.16;
	letter-spacing: -0.02em;
}

.lx .lx-eyebrow--light { color: var(--lx-gold-soft); }

/* Про курс */
.lx .lx-cabout {
	background: #fff;
	padding-block: clamp(40px, 5.2vw, 62px);
}

.lx .lx-cabout__in {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 4.4vw, 52px);
	align-items: center;
}

.lx .lx-cabout__media { display: block; }
.lx .lx-cabout__media picture { display: block; }

.lx .lx-cabout__img {
	width: 100% !important;
	height: 520px !important;
	max-height: none !important;
	object-fit: cover;
	object-position: 50% 30%;
	border-radius: var(--lx-radius-card);
	display: block;
}

.lx .lx-cabout__text {
	font-size: clamp(15px, 1.7vw, 17px);
	line-height: 1.7;
	color: #4A5A72;
	margin-top: 18px;
}

.lx .lx-cabout__sub {
	margin-top: 26px;
	padding-top: 24px;
	border-top: 1px solid var(--lx-border);
}

.lx .lx-cabout__subtitle {
	font-size: 19px;
	font-weight: 600;
	color: var(--lx-navy);
}

.lx .lx-cabout .lx-btn--navy { margin-top: 26px; }

/* Програма курсу */
.lx .lx-cprog {
	background: var(--lx-navy);
	color: #fff;
	padding-block: clamp(40px, 5.2vw, 62px);
}

.lx .lx-cprog__in {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 60px);
	align-items: start;
}

.lx .lx-cprog__text {
	font-size: clamp(15px, 1.7vw, 17px);
	line-height: 1.68;
	color: #B9C7DA;
	margin-top: 18px;
}

.lx .lx-cprog .lx-btn--gold { margin-top: 26px; }

/* Акордеон на темному фоні */
.lx .lx-acc--dark .lx-acc__item {
	border-color: rgba(255, 255, 255, .14);
	background: transparent;
}

.lx .lx-acc--dark .lx-acc__item.is-open { background: rgba(255, 255, 255, .05); }
.lx .lx-acc--dark .lx-acc__btn { padding: 21px 24px; color: #fff; }
.lx .lx-acc--dark .lx-acc__title { color: #fff; font-size: 18px; }
.lx .lx-acc--dark .lx-acc__text { color: #C4D0E1; padding: 0 24px 22px; }

/* Для кого */
.lx .lx-caud {
	background: var(--lx-surface);
	padding-block: clamp(40px, 5.2vw, 62px);
}

.lx .lx-caud__head { max-width: 660px; }

.lx .lx-caud__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 36px 0 0;
	padding: 0;
	list-style: none;
}

.lx .lx-caud__item {
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: 18px;
	padding: 26px;
	font-size: clamp(15px, 1.7vw, 17px);
	line-height: 1.6;
	font-weight: 600;
	color: var(--lx-navy);
}

/* Вартість */
.lx .lx-cprice {
	background: #fff;
	padding-block: clamp(40px, 5.2vw, 62px);
}

.lx .lx-cprice__box {
	background: linear-gradient(115deg, var(--lx-navy) 0%, var(--lx-blue) 100%);
	border-radius: 26px;
	padding: clamp(26px, 4vw, 44px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 4.4vw, 52px);
	align-items: center;
	color: #fff;
}

.lx .lx-cprice__row {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-top: 14px;
	flex-wrap: wrap;
}

.lx .lx-cprice__old {
	font-size: 22px;
	font-weight: 600;
	color: #B98A8A;
	text-decoration: line-through;
	white-space: nowrap;
}

.lx .lx-cprice__new {
	font-family: var(--lx-font-display);
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--lx-mint);
	white-space: nowrap;
}

.lx .lx-cprice__meta { font-size: 17px; color: #B9C7DA; }

.lx .lx-cprice__grant {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 18px;
	background: rgba(196, 145, 61, .16);
	border: 1px solid rgba(229, 192, 121, .45);
	border-radius: 999px;
	padding: 10px 18px;
}

.lx .lx-cprice__grant-title {
	font-family: var(--lx-font-display);
	font-size: 15px;
	font-weight: 700;
	color: var(--lx-gold-soft);
}

.lx .lx-cprice__grant-note { font-size: 14px; color: #C4D0E1; }

.lx .lx-cprice__text {
	font-size: clamp(15px, 1.7vw, 17px);
	line-height: 1.68;
	color: #C4D0E1;
	margin-top: 16px;
	max-width: 480px;
}

/* Захист від стилів теми */
.lx .lx-cabout h2,
.lx .lx-cabout h3,
.lx .lx-caud h2,
.lx .lx-caud__item { color: var(--lx-navy); }

.lx .lx-cprog h2,
.lx .lx-cprog h3,
.lx .lx-cprog .lx-acc__title,
.lx .lx-cprice,
.lx .lx-cprice__box { color: #fff; }

.lx .lx-hero--course h1 { color: #fff; }

/* Адаптив */
@media (max-width: 1100px) {
	.lx .lx-facts--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lx .lx-caud__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
	.lx .lx-cabout__in { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-cprog__in { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-cprice__box { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-cabout__img { height: 360px; }
}

@media (max-width: 600px) {
	.lx .lx-facts--four { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-caud__grid { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-cabout__img { height: 260px; }
	.lx .lx-cprice__row { gap: 8px; }
	.lx .lx-cprice__meta { width: 100%; }
	.lx .lx-hero__actions--row .lx-btn { width: 100%; }
	.lx .lx-acc--dark .lx-acc__btn { padding: 18px 18px; }
	.lx .lx-acc--dark .lx-acc__text { padding: 0 18px 18px; }
}

/* ==========================================================================
   Відеофон першого екрана
   ========================================================================== */

.lx .lx-hero--video {
	position: relative;
	isolation: isolate;
}

/* Відео тепер світліше, тож заголовок і текст підстраховуємо тінню */
.lx .lx-hero--video .lx-hero__title,
.lx .lx-hero--video .lx-hero__text,
.lx .lx-hero--video .lx-crumbs,
.lx .lx-hero--video .lx-facts__value,
.lx .lx-hero--video .lx-facts__label {
	text-shadow: 0 2px 14px rgba(4, 12, 26, .55);
}

.lx .lx-hero--video > .lx-container,
.lx .lx-hero--video > .lx-hero__in {
	position: relative;
	z-index: 2;
}

.lx .lx-herovideo {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.lx .lx-herovideo__el {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	opacity: 0;
	transition: opacity .6s ease;
}

.lx .lx-herovideo__el.is-ready { opacity: 1; }

/*
 * Затемнення. Подвійний шар: рівномірна заливка плюс градієнт ліворуч,
 * щоб текст і форма читалися на будь-якому кадрі.
 */
.lx .lx-herovideo__veil {
	position: absolute;
	inset: 0;
	display: block;
	background:
		linear-gradient(90deg, rgba(8, 23, 41, .58) 0%, rgba(8, 23, 41, .36) 45%, rgba(8, 23, 41, .22) 100%),
		rgba(8, 23, 41, var(--lx-veil, .5));
}

/* Відео вантажиться лише на десктопі — на телефонах лишається градієнт */
@media (max-width: 900px) {
	.lx .lx-herovideo { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.lx .lx-herovideo__el { display: none; }
}

/* ==========================================================================
   Сторінка контактів
   ========================================================================== */

.lx .lx-quick {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.lx .lx-quick__item {
	border: 1px solid rgba(229, 192, 121, .45);
	background: rgba(229, 192, 121, .08);
	border-radius: 999px;
	padding: 13px 24px;
	transition: background-color .18s ease, border-color .18s ease;
}

.lx .lx-quick__item:hover {
	background: rgba(229, 192, 121, .18);
	border-color: var(--lx-gold-soft);
}

.lx .lx-quick__value {
	font-family: var(--lx-font-display);
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}

.lx .lx-quick__item:hover .lx-quick__value { color: var(--lx-gold-soft); }

.lx .lx-ccards {
	background: #fff;
	padding-block: clamp(40px, 5.2vw, 62px);
}

.lx .lx-ccards__head { max-width: 640px; }

.lx .lx-ccards__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 32px;
}

.lx .lx-ccard {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: 18px;
	padding: 26px;
	transition: border-color .18s ease, background-color .18s ease;
}

.lx .lx-ccard:hover {
	border-color: var(--lx-gold);
	background: var(--lx-surface);
}

.lx .lx-ccard__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--lx-gold);
}

.lx .lx-ccard__value {
	font-family: var(--lx-font-display);
	font-size: 19px;
	font-weight: 600;
	color: var(--lx-navy);
	overflow-wrap: anywhere;
}

.lx .lx-ccard__note {
	font-size: 14px;
	line-height: 1.5;
	color: var(--lx-muted);
	margin-top: 4px;
}

.lx .lx-infocards--standalone {
	background: var(--lx-surface);
	padding-block: clamp(36px, 4.6vw, 56px);
}

.lx .lx-cmap {
	background: #fff;
	padding-block: 0 clamp(36px, 4.6vw, 56px);
}

.lx .lx-cmap__frame {
	margin-top: 22px;
	border-radius: var(--lx-radius-card);
	overflow: hidden;
	border: 1px solid var(--lx-border);
	aspect-ratio: 16 / 7;
}

.lx .lx-cmap__frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* Захист від стилів теми */
.lx .lx-ccards h2,
.lx .lx-ccard__value { color: var(--lx-navy); }
.lx .lx-quick__value { color: #fff; }

@media (max-width: 1000px) {
	.lx .lx-ccards__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
	.lx .lx-ccards__grid { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-quick { flex-direction: column; }
	.lx .lx-quick__item { text-align: center; }
	.lx .lx-cmap__frame { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   М'ятна кнопка та вікно гранту
   ========================================================================== */

.lx .lx-btn--mint,
.lx a.lx-btn--mint,
.lx button.lx-btn--mint {
	background: var(--lx-mint) !important;
	color: #08301F !important;
	border: 2px solid var(--lx-mint);
	font-size: 17px;
	font-weight: 700;
	padding: 17px 34px;
	box-shadow: 0 14px 30px rgba(143, 211, 174, .38);
	flex: 1 1 300px;
	min-width: 300px;
}

.lx .lx-btn--mint:hover,
.lx a.lx-btn--mint:hover,
.lx button.lx-btn--mint:hover {
	background: #A9E4C4 !important;
	border-color: #A9E4C4;
	color: #08301F !important;
}

.lx .lx-hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.lx .lx-hero__actions .lx-btn--outline-gold {
	flex: 0 1 auto;
	min-width: 190px;
	width: auto;
	font-size: 16px;
	padding: 16px 28px;
}

.lx .lx-grantpop {
	position: fixed;
	inset: 0;
	z-index: 210;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.lx .lx-grantpop__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 23, 41, .6);
	backdrop-filter: blur(6px);
}

.lx .lx-grantpop__dialog {
	position: relative;
	width: 100%;
	max-width: 470px;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	background: #fff;
	border-radius: 22px;
	padding: 32px;
	box-shadow: 0 30px 80px rgba(4, 12, 26, .5);
}

.lx .lx-grantpop__bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 22px 22px 0 0;
	background: linear-gradient(90deg, var(--lx-green) 0%, var(--lx-mint) 100%);
}

.lx .lx-grantpop__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--lx-green);
	margin: 0;
}

.lx .lx-grantpop__title {
	font-family: var(--lx-font-display);
	font-size: 23px;
	font-weight: 700;
	line-height: 1.26;
	margin: 10px 0 0;
	color: var(--lx-navy);
	padding-right: 26px;
}

.lx .lx-grantpop__text {
	font-size: 14px;
	line-height: 1.62;
	color: var(--lx-muted);
	margin: 10px 0 18px;
}

.lx .lx-grantpop__timer {
	background: var(--lx-surface);
	border: 1px solid #E4E8EF;
	border-radius: 16px;
	padding: 16px 18px;
}

.lx .lx-grantpop__timer-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #8C99AC;
}

.lx .lx-grantpop__timer-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: 8px;
}

.lx .lx-grantpop__clock {
	font-family: var(--lx-font-display);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: .02em;
	color: #C1483C;
	font-variant-numeric: tabular-nums;
}

.lx .lx-grantpop__units {
	font-size: 12px;
	font-weight: 600;
	color: #A3AEBE;
}

.lx .lx-grantpop__btn {
	display: block;
	text-align: center;
	margin-top: 16px;
	background: var(--lx-mint);
	color: #0B3B29;
	font-weight: 700;
	font-size: 15px;
	padding: 15px 20px;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(143, 211, 174, .3);
	transition: background-color .18s ease;
}

.lx .lx-grantpop__btn:hover { background: #A6DFC0; color: #0B3B29; }

.lx .lx-grantpop__later {
	width: 100%;
	margin-top: 10px;
	background: transparent;
	border: 0;
	padding: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #8C99AC;
}

.lx .lx-grantpop__later:hover { color: var(--lx-navy); }

@media (max-width: 600px) {
	.lx .lx-btn--mint,
	.lx a.lx-btn--mint,
	.lx .lx-hero__actions .lx-btn--outline-gold { min-width: 0; width: 100%; }
	.lx .lx-grantpop__dialog { padding: 26px 20px; }
	.lx .lx-grantpop__title { font-size: 20px; }
}

/* ==========================================================================
   Сторінка тесту рівня
   ========================================================================== */

.lx .lx-formcard--test { padding: 30px; }
.lx .lx-formcard--test .lx-formcard__title { padding-inline: 0; margin-top: 12px; }
.lx .lx-formcard--test .lx-formcard__text { padding-inline: 0; }

.lx .lx-teststeps {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.lx .lx-teststeps__item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: rgba(255, 255, 255, .06);
	border-radius: 12px;
	padding: 13px 16px;
	font-size: 15px;
	line-height: 1.5;
	color: #E7ECF4;
}

.lx .lx-teststeps__num {
	font-family: var(--lx-font-display);
	font-size: 13px;
	font-weight: 700;
	color: var(--lx-gold-soft);
	flex: none;
}

.lx .lx-test__start { width: 100%; margin-top: 20px; min-width: 0; }

.lx .lx-test__note {
	font-size: 12px;
	line-height: 1.55;
	color: #9FB0C6;
	margin-top: 12px;
}

.lx .lx-grantinfo {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
}

.lx .lx-grantinfo__item {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	padding: 20px;
}

.lx .lx-grantinfo__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lx-gold-soft);
	margin: 0;
}

.lx .lx-grantinfo__value {
	font-family: var(--lx-font-display);
	font-size: 19px;
	font-weight: 700;
	color: var(--lx-mint);
	margin: 10px 0 0;
}

.lx .lx-grantinfo__note {
	font-size: 14px;
	line-height: 1.55;
	color: #A9B8CD;
	margin: 8px 0 0;
}

/* Екран питань */
.lx .lx-quiz {
	background: var(--lx-surface);
	padding-block: clamp(36px, 5vw, 60px);
}

.lx .lx-quiz__card {
	max-width: 780px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: 24px;
	padding: clamp(22px, 3.4vw, 38px);
}

.lx .lx-quiz__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
}

.lx .lx-quiz__meta {
	display: flex;
	align-items: baseline;
	gap: 14px;
	flex-wrap: wrap;
}

.lx .lx-quiz__counter {
	font-family: var(--lx-font-display);
	font-size: 16px;
	font-weight: 700;
	color: var(--lx-navy);
}

.lx .lx-quiz__level {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lx-gold);
}

.lx .lx-quiz__timer {
	font-family: var(--lx-font-display);
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	background: #C1483C;
	border-radius: 999px;
	padding: 7px 16px;
	font-variant-numeric: tabular-nums;
}

.lx .lx-quiz__timer.is-low { background: #8E2F26; }

.lx .lx-quiz__bar {
	height: 6px;
	background: #EDF0F4;
	border-radius: 999px;
	margin-top: 18px;
	overflow: hidden;
}

.lx .lx-quiz__bar-fill {
	display: block;
	height: 100%;
	width: 0;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--lx-gold) 0%, var(--lx-gold-soft) 100%);
	transition: width .3s ease;
}

.lx .lx-quiz__dots {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 14px;
}

.lx .lx-quiz__dot {
	width: 100%;
	max-width: 22px;
	height: 4px;
	border-radius: 999px;
	background: #EDF0F4;
	flex: 1;
}

.lx .lx-quiz__dot.is-done { background: var(--lx-gold); }
.lx .lx-quiz__dot.is-current { background: var(--lx-gold-soft); }

.lx .lx-quiz__question {
	font-family: var(--lx-font-display);
	font-size: clamp(19px, 2.6vw, 25px);
	font-weight: 600;
	line-height: 1.34;
	color: var(--lx-navy);
	margin-top: 26px;
}

.lx .lx-quiz__options {
	display: grid;
	gap: 10px;
	margin-top: 22px;
}

.lx .lx-quiz__option {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	text-align: left;
	background: #fff;
	border: 1px solid #E2E7EF;
	border-radius: 14px;
	padding: 15px 18px;
	font-size: 16px;
	color: var(--lx-navy);
	transition: border-color .15s ease, background-color .15s ease;
}

.lx .lx-quiz__option:hover { border-color: var(--lx-gold); }

.lx .lx-quiz__option.is-active {
	border-color: var(--lx-gold);
	background: #FBF6EC;
}

.lx .lx-quiz__letter {
	flex: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--lx-surface);
	color: var(--lx-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
}

.lx .lx-quiz__option.is-active .lx-quiz__letter {
	background: var(--lx-gold);
	color: #fff;
}

.lx .lx-quiz__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 26px;
	flex-wrap: wrap;
}

.lx .lx-quiz__back {
	background: transparent;
	border: 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--lx-muted);
	padding: 8px 0;
}

.lx .lx-quiz__back:hover:not(:disabled) { color: var(--lx-navy); }
.lx .lx-quiz__back:disabled { opacity: .4; cursor: default; }
.lx .lx-quiz__nav .lx-btn:disabled { opacity: .5; cursor: default; }

/* Екран результату */
.lx .lx-result {
	background: var(--lx-surface);
	padding-block: clamp(36px, 5vw, 60px);
}

.lx .lx-result__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 20px;
	align-items: start;
}

.lx .lx-result__card {
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: 24px;
	padding: clamp(24px, 3.2vw, 36px);
}

.lx .lx-result__head {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-top: 14px;
	flex-wrap: wrap;
}

.lx .lx-result__level {
	font-family: var(--lx-font-display);
	font-size: clamp(44px, 7vw, 64px);
	font-weight: 800;
	line-height: 1;
	color: var(--lx-gold);
	letter-spacing: -0.02em;
}

.lx .lx-result__score {
	font-size: 15px;
	font-weight: 600;
	color: var(--lx-muted);
}

.lx .lx-result__text {
	font-size: 16px;
	line-height: 1.68;
	color: #4A5A72;
	margin-top: 14px;
}

.lx .lx-result__rec {
	margin-top: 20px;
	padding: 16px 18px;
	background: var(--lx-surface);
	border-radius: 14px;
}

.lx .lx-result__rec-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #8C99AC;
}

.lx .lx-result__rec-value {
	font-family: var(--lx-font-display);
	font-size: 18px;
	font-weight: 700;
	color: var(--lx-navy);
}

.lx .lx-result__stats {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--lx-border);
	font-size: 14px;
	color: var(--lx-muted);
}

.lx .lx-result__stats b { color: var(--lx-navy); }

.lx .lx-result__retry {
	margin-top: 18px;
	background: transparent;
	border: 1px solid #DDE3EC;
	border-radius: 999px;
	padding: 11px 22px;
	font-size: 14px;
	font-weight: 700;
	color: var(--lx-navy);
}

.lx .lx-result__retry:hover { border-color: var(--lx-gold); color: var(--lx-gold); }

.lx .lx-result__grant {
	background: linear-gradient(160deg, var(--lx-blue) 0%, var(--lx-navy) 100%);
	border-radius: 24px;
	padding: clamp(24px, 3.2vw, 36px);
	color: #fff;
}

.lx .lx-result__sum {
	font-family: var(--lx-font-display);
	font-size: clamp(34px, 5.4vw, 48px);
	font-weight: 800;
	color: var(--lx-mint);
	margin: 10px 0 0;
	font-variant-numeric: tabular-nums;
}

.lx .lx-result__note {
	font-size: 13px;
	line-height: 1.6;
	color: #A9B8CD;
	margin-top: 12px;
}

.lx .lx-result__code {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 18px;
	background: rgba(255, 255, 255, .07);
	border: 1px dashed rgba(229, 192, 121, .5);
	border-radius: 14px;
	padding: 14px 18px;
}

.lx .lx-result__code-label { font-size: 13px; color: #C4D0E1; }

.lx .lx-result__code-value {
	font-family: var(--lx-font-display);
	font-size: 19px;
	font-weight: 700;
	letter-spacing: .04em;
	color: var(--lx-gold-soft);
}

.lx .lx-result__form {
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.lx .lx-result__form-title {
	font-family: var(--lx-font-display);
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.lx .lx-result__form-text {
	font-size: 14px;
	line-height: 1.6;
	color: #AEBFD4;
	margin-top: 8px;
}

.lx .lx-result__form .lx-form { padding: 16px 0 0; }

/* Захист від стилів теми */
.lx .lx-quiz__question,
.lx .lx-quiz__option,
.lx .lx-result__card h2 { color: var(--lx-navy); }
.lx .lx-result__grant,
.lx .lx-result__form-title { color: #fff; }

@media (max-width: 900px) {
	.lx .lx-grantinfo { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-result__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 600px) {
	.lx .lx-quiz__head { flex-direction: column; align-items: flex-start; }
	.lx .lx-quiz__dots { display: none; }
	.lx .lx-quiz__nav { flex-direction: column-reverse; align-items: stretch; }
	.lx .lx-quiz__nav .lx-btn { width: 100%; }
	.lx .lx-quiz__option { font-size: 15px; padding: 13px 14px; }
}

/* ==========================================================================
   Сторінка оплати
   ========================================================================== */

.lx .lx-paysafe {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.lx .lx-paysafe__item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: rgba(255, 255, 255, .06);
	border-radius: 12px;
	padding: 13px 16px;
	font-size: 15px;
	line-height: 1.5;
	color: #E7ECF4;
}

.lx .lx-paysafe__item::before {
	content: "";
	flex: none;
	width: 7px;
	height: 7px;
	margin-top: 8px;
	border-radius: 50%;
	background: var(--lx-mint);
}

.lx .lx-payopts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 18px;
}

.lx .lx-payopt {
	display: flex;
	align-items: center;
	gap: 14px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 14px;
	padding: 14px 16px;
	cursor: pointer;
	transition: border-color .18s ease, background-color .18s ease;
}

.lx .lx-payopt:hover { border-color: var(--lx-gold-soft); }

.lx .lx-payopt:has(input:checked) {
	border-color: var(--lx-gold-soft);
	background: rgba(229, 192, 121, .12);
}

.lx .lx-payopt input[type="radio"] { flex: none; accent-color: #C4913D; }
.lx .lx-payopt__body { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }

.lx .lx-payopt__name {
	font-family: var(--lx-font-display);
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}

.lx .lx-payopt__note { font-size: 13px; color: #9FB0C6; }

.lx .lx-payopt__price {
	font-family: var(--lx-font-display);
	font-size: 16px;
	font-weight: 700;
	color: var(--lx-mint);
	white-space: nowrap;
}

.lx .lx-payamount { width: 120px; padding: 9px 12px; font-size: 15px; }

.lx .lx-payform__title {
	font-family: var(--lx-font-display);
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	margin: 22px 0 12px;
}

.lx .lx-payresult {
	background: radial-gradient(120% 100% at 78% 0%, var(--lx-blue) 0%, var(--lx-navy) 46%, var(--lx-navy-deep) 100%);
	padding-block: clamp(50px, 8vw, 90px);
}

.lx .lx-payresult__card {
	max-width: 620px;
	margin: 0 auto;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 24px;
	padding: clamp(26px, 4vw, 44px);
	text-align: center;
}

.lx .lx-payresult__title {
	font-family: var(--lx-font-display);
	font-size: clamp(24px, 3.6vw, 34px);
	font-weight: 700;
	color: #fff;
}

.lx .lx-payresult--ok .lx-payresult__title { color: var(--lx-mint); }
.lx .lx-payresult--fail .lx-payresult__title { color: #F2B8B8; }

.lx .lx-payresult__text {
	font-size: 16px;
	line-height: 1.65;
	color: #C4D0E1;
	margin-top: 14px;
}

.lx .lx-payresult__meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 22px 0;
	padding: 16px;
	background: rgba(255, 255, 255, .06);
	border-radius: 14px;
	font-size: 14px;
	color: #A9B8CD;
}

.lx .lx-payresult__meta b { color: var(--lx-gold-soft); }

@media (max-width: 600px) {
	.lx .lx-payopt { flex-wrap: wrap; }
	.lx .lx-payamount { width: 100%; }
}

/* Форма оплати: поля, промокод, підсумок */

.lx .lx-payfield { margin-top: 14px; }

.lx .lx-paylabel {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #C4D0E1;
	margin-bottom: 6px;
}

.lx .lx-payhint {
	display: block;
	font-size: 12px;
	color: #8FA2BC;
	margin-top: 6px;
}

.lx .lx-payerror {
	display: block;
	font-size: 12px;
	color: #F2B8B8;
	margin-top: 6px;
	min-height: 1px;
}

.lx .lx-promo { display: flex; gap: 8px; }
.lx .lx-promo .lx-input { flex: 1; min-width: 0; text-transform: uppercase; }

.lx .lx-promo__btn {
	flex: none;
	border: 1px solid rgba(229, 192, 121, .55);
	background: rgba(229, 192, 121, .12);
	color: var(--lx-gold-soft);
	border-radius: 12px;
	padding: 0 18px;
	font-size: 14px;
	font-weight: 700;
	transition: background-color .18s ease;
}

.lx .lx-promo__btn:hover { background: rgba(229, 192, 121, .24); }
.lx .lx-promo__btn:disabled { opacity: .5; cursor: default; }

.lx .lx-promo__msg {
	display: block;
	font-size: 13px;
	margin-top: 8px;
	color: #9FB0C6;
}

.lx .lx-promo__msg.is-ok { color: var(--lx-mint); }
.lx .lx-promo__msg.is-bad { color: #F2B8B8; }

.lx .lx-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-top: 18px;
	font-size: 13px;
	line-height: 1.5;
	color: #AEBFD4;
	cursor: pointer;
}

.lx .lx-consent input { margin-top: 3px; flex: none; accent-color: #C4913D; }
.lx .lx-consent a { color: var(--lx-gold-soft); text-decoration: underline; }

.lx .lx-paytotal {
	margin-top: 20px;
	padding: 16px 18px;
	background: rgba(255, 255, 255, .06);
	border-radius: 14px;
}

.lx .lx-paytotal__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
	color: #AEBFD4;
	padding: 4px 0;
}

.lx .lx-paytotal__row b { color: #fff; font-weight: 600; }
.lx .lx-paytotal__row--discount b { color: var(--lx-mint); }

.lx .lx-paytotal__row--total {
	margin-top: 8px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}

.lx .lx-paytotal__row--total b {
	font-family: var(--lx-font-display);
	font-size: 22px;
	color: var(--lx-gold-soft);
}

.lx .lx-payform .lx-btn--grad { margin-top: 16px; }
.lx .lx-payform .lx-btn--grad:disabled { opacity: .45; cursor: default; box-shadow: none; }

.lx .lx-payresult__small {
	font-size: 13px;
	line-height: 1.6;
	color: #93A5BF;
	margin-top: 18px;
}

.lx .lx-payresult__tg {
	display: block;
	margin-top: 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--lx-gold-soft);
}

@media (max-width: 600px) {
	.lx .lx-promo { flex-direction: column; }
	.lx .lx-promo__btn { padding: 12px 18px; }
	.lx .lx-payfield { margin-top: 12px; }
}

/* Сторінка оплати без відео: спокійний фон, щоб цифри й поля читались */
.lx .lx-hero--plain {
	background: linear-gradient(160deg, var(--lx-navy) 0%, var(--lx-blue) 55%, var(--lx-navy-deep) 100%);
}

.lx .lx-hero--plain .lx-hero__title,
.lx .lx-hero--plain .lx-hero__text,
.lx .lx-hero--plain .lx-crumbs { text-shadow: none; }

/* ==========================================================================
   Сторінка «Про нас»
   ========================================================================== */

.lx .lx-hero--about { padding-block: clamp(32px, 4.5vw, 52px) clamp(44px, 6vw, 72px); }

.lx .lx-about__intro { max-width: 760px; }

.lx .lx-facts__item--lg { padding: 26px; }
.lx .lx-facts__item--lg .lx-facts__value { font-size: clamp(24px, 3.4vw, 32px); }
.lx .lx-facts__item--lg .lx-facts__label { font-size: 15px; margin-top: 8px; }

.lx .lx-hero--about .lx-facts { margin-top: 44px; max-width: none; }

/* Наш підхід */
.lx .lx-approach {
	background: #fff;
	padding-block: clamp(40px, 5.2vw, 64px);
}

.lx .lx-approach__in {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(30px, 4.6vw, 56px);
	align-items: start;
}

.lx .lx-approach__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lx .lx-approach__item {
	background: var(--lx-surface);
	border: 1px solid var(--lx-border);
	border-radius: 18px;
	padding: 24px;
}

.lx .lx-approach__num {
	display: block;
	font-family: var(--lx-font-display);
	font-size: 14px;
	font-weight: 700;
	color: var(--lx-gold);
}

.lx .lx-approach__title {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	margin-top: 10px;
	color: var(--lx-navy);
}

.lx .lx-approach__text {
	font-size: 15px;
	line-height: 1.6;
	color: var(--lx-muted);
	margin-top: 8px;
}

/* Напрями */
.lx .lx-programs {
	background: var(--lx-surface);
	padding-block: clamp(40px, 5.2vw, 64px);
}

.lx .lx-programs__head { max-width: 680px; }

.lx .lx-programs__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 36px;
}

.lx .lx-program {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: #fff;
	border: 1px solid var(--lx-border);
	border-radius: 16px;
	padding: 24px;
	transition: border-color .18s ease;
}

.lx .lx-program:hover { border-color: var(--lx-gold); }

.lx .lx-program__title {
	font-size: 17px;
	font-weight: 700;
	color: var(--lx-navy);
}

.lx .lx-program__sub { font-size: 14px; color: #7B8899; }

/* Контакти у фінальному блоці */
.lx .lx-aboutcontacts {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lx .lx-aboutcontacts__item {
	background: rgba(255, 255, 255, .06);
	border-radius: 16px;
	padding: 20px 22px;
	font-size: 16px;
	color: #E7ECF4;
	overflow-wrap: anywhere;
}

.lx .lx-aboutcontacts__item--row {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.lx .lx-aboutcontacts__item a { color: #E7ECF4; }
.lx .lx-aboutcontacts__item a:hover { color: var(--lx-gold-soft); }

/* Захист від стилів теми */
.lx .lx-approach h2,
.lx .lx-approach h3,
.lx .lx-programs h2,
.lx .lx-program__title { color: var(--lx-navy); }
.lx .lx-hero--about h1 { color: #fff; }

@media (max-width: 1000px) {
	.lx .lx-programs__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
	.lx .lx-approach__in { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 620px) {
	.lx .lx-approach__grid { grid-template-columns: minmax(0, 1fr); }
	.lx .lx-programs__grid { grid-template-columns: minmax(0, 1fr); }
}

/* Телефон із вибором країни */

.lx .lx-phone {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 8px;
}

.lx .lx-phone__code {
	width: 100%;
	min-width: 0;
	padding: 14px 10px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 12px;
	background: rgba(255, 255, 255, .07);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	appearance: none;
}

.lx .lx-phone__code:focus {
	outline: none;
	border-color: var(--lx-gold-soft);
	background: rgba(255, 255, 255, .12);
}

.lx .lx-phone__code option {
	color: var(--lx-navy);
	background: #fff;
}

.lx .lx-phone__number { width: 100%; }

.lx .lx-form--modal .lx-phone__code,
.lx .lx-hero--plain .lx-phone__code {
	border-color: #E2E7EF;
	background: #FAFBFD;
	color: var(--lx-navy);
}

/* Курс, зафіксований на сторінці оплати */

.lx .lx-paycourse {
	display: flex;
	flex-direction: column;
	gap: 4px;
	border: 1px solid rgba(229, 192, 121, .45);
	background: rgba(229, 192, 121, .1);
	border-radius: 12px;
	padding: 14px 16px;
}

.lx .lx-paycourse__name {
	font-family: var(--lx-font-display);
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}

.lx .lx-paycourse__note { font-size: 13px; color: #C4D0E1; }

.lx .lx-result__codenote {
	font-size: 12px;
	line-height: 1.5;
	color: var(--lx-gold-soft);
	margin-top: 8px;
}

@media (max-width: 520px) {
	.lx .lx-phone { grid-template-columns: 96px minmax(0, 1fr); }
	.lx .lx-phone__code { padding: 14px 6px; font-size: 14px; }
}

.lx .lx-payresult__debug {
	margin-top: 18px;
	padding: 14px 16px;
	background: rgba(255, 255, 255, .08);
	border: 1px dashed rgba(229, 192, 121, .45);
	border-radius: 12px;
	font-size: 13px;
	line-height: 1.6;
	color: #C4D0E1;
	text-align: left;
}

.lx .lx-payresult__debug code { color: var(--lx-gold-soft); overflow-wrap: anywhere; }

/* ==========================================================================
   Юридичні сторінки
   ========================================================================== */

.lx .lx-legal__head { padding-block: clamp(28px, 4vw, 44px); }

.lx .lx-legal__title {
	font-size: clamp(24px, 3.4vw, 38px);
	margin-top: 16px;
	max-width: 900px;
}

.lx .lx-legal__date {
	font-size: 14px;
	color: #9FB0C6;
	margin-top: 12px;
}

.lx .lx-legal {
	background: #fff;
	padding-block: clamp(32px, 4.5vw, 56px);
}

.lx .lx-legal__body {
	max-width: 820px;
	font-size: 16px;
	line-height: 1.75;
	color: #2E3D54;
}

.lx .lx-legal__body h2 {
	font-size: clamp(19px, 2.4vw, 23px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--lx-navy);
	margin: 34px 0 12px;
	padding-top: 18px;
	border-top: 1px solid var(--lx-border);
}

.lx .lx-legal__body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }

.lx .lx-legal__body p { margin: 0 0 12px; }

.lx .lx-legal__body ul {
	margin: 0 0 16px;
	padding-left: 22px;
	list-style: disc;
}

.lx .lx-legal__body li { margin-bottom: 8px; }
.lx .lx-legal__body a { color: var(--lx-gold); text-decoration: underline; overflow-wrap: anywhere; }
.lx .lx-legal__body strong { color: var(--lx-navy); }

.lx .lx-legal__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 820px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--lx-border);
}

.lx .lx-legal__link {
	border: 1px solid var(--lx-border);
	border-radius: 999px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--lx-navy);
	transition: border-color .18s ease, color .18s ease;
}

.lx .lx-legal__link:hover { border-color: var(--lx-gold); color: var(--lx-gold); }

@media (max-width: 600px) {
	.lx .lx-legal__body { font-size: 15px; }
	.lx .lx-legal__body h2 { margin-top: 26px; }
}
