/* CS2 Landing — по макету «Играй как профи». Поверх Bootstrap 5.3.3: тема + свои компоненты, сетку/navbar/accordion берёт Bootstrap */
:root {
    --lp-bg:        #08070d;
    --lp-bg2:       #0c0b14;
    --lp-box-bg:    #131314;
    --lp-box-border: #353030;
    --lp-card:      #131314;
    --lp-border:    rgba(255,255,255,.08);
    --lp-text:      #e7e7ee;
    --lp-muted:     #8b8b9a;
    --lp-muted2:    #b4b4c2;
    --lp-accent:    #a855f7;
    --lp-accent2:   #d8b4fe;
    --lp-accent-d:  rgba(168,85,247,.14);
    --lp-accent-b:  rgba(168,85,247,.35);
    --lp-green:     #22c55e;
    --lp-green-d:   rgba(34,197,94,.14);
    --lp-green-b:   rgba(34,197,94,.35);
	--lp-green-text: #68FF6D;
	--lp-btn-bg: #5A23CE;
}

body.lp {
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    scrollbar-width: thin;
    scrollbar-color: var(--lp-accent-b) var(--lp-bg2);
}
body.lp::-webkit-scrollbar { width: 10px; }

/* Dela Gothic One не содержит казахские буквы (ә ғ қ ң ө ұ ү һ і) — браузер
   тихо подменяет их запасным шрифтом прямо посреди слова. На kk-версии
   страницы крупные заголовки идут на Montserrat той же плотности. */
html[lang="kk"] .lp-hero-title,
html[lang="kk"] .lp-section-title,
html[lang="kk"] .card-for-parent > h3,
html[lang="kk"] .card-mini-for-parent > h3,
html[lang="kk"] .lp-promo-title,
html[lang="kk"] .lp-why-title,
html[lang="kk"] .lp-note,
html[lang="kk"] .lp-cta-block h3,
html[lang="kk"] .lp-final h2,
html[lang="kk"] .lp-final h2 span {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 800;
}
body.lp::-webkit-scrollbar-track { background: var(--lp-bg2); }
body.lp::-webkit-scrollbar-thumb { background: var(--lp-accent-b); border-radius: 5px; }
body.lp::-webkit-scrollbar-thumb:hover { background: var(--lp-accent); }
.lp a { color: inherit; text-decoration: none; }
.lp section { position: relative; }
.lp .py-section { padding-top: 88px; padding-bottom: 88px; }
@media (max-width: 767.98px) {
    .lp .py-section { padding-top: 56px; padding-bottom: 56px; }
}
.lp-bg-alt { background: var(--lp-bg2); }

/* ── HEADER: topbar + navbar ── */
.lp-header { z-index: 1030; }

.lp-topbar {
	position: relative;
	z-index: 900;
    background: rgba(12,11,20,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--lp-border);
    font-size: 12.5px;
}
.lp-topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.lp-topbar-contact { display: flex; align-items: center; gap: 22px; color: var(--lp-muted); }
.lp-topbar-contact span { white-space: nowrap; }

.lp-topbar-follow { display: flex; align-items: center; gap: 12px; }
.lp-topbar-follow a { color: var(--lp-muted); font-size: 18px; display: inline-flex; transition: color .2s; }
.lp-topbar-follow a:hover { color: var(--lp-accent2); }

.lp-lang-pill { position: relative; }
.lp-lang-toggle {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.05); border: 1px solid var(--lp-border);
    color: #fff; font-weight: 700; font-size: 12px; line-height: 1;
    padding: 6px 10px; border-radius: 999px; cursor: pointer; transition: background .2s;
}
.lp-lang-toggle:hover { background: rgba(255,255,255,.1); }
.lp-lang-toggle .fi { width: 16px; height: 12px; border-radius: 2px; flex-shrink: 0; }
.lp-lang-toggle .bi-chevron-down { font-size: 10px; color: var(--lp-muted); transition: transform .2s; }
.lp-lang-pill.open .lp-lang-toggle .bi-chevron-down { transform: rotate(180deg); }
.lp-lang-menu {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 150px;
    background: var(--lp-card); border: 1px solid var(--lp-border); border-radius: 12px;
    padding: 6px; display: none; flex-direction: column; gap: 2px;
    box-shadow: 0 12px 32px rgba(0,0,0,.5); z-index: 20;
}
.lp-lang-pill.open .lp-lang-menu { display: flex; }
.lp-lang-option { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 8px; font-size: 13px; color: var(--lp-muted2); }
.lp-lang-option:hover { background: rgba(255,255,255,.06); color: #fff; }
.lp-lang-option.active { color: var(--lp-accent2); }
.lp-lang-option .fi { width: 18px; height: 13px; border-radius: 2px; flex-shrink: 0; }
.lp-mobile-lang-opt {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    min-width: 40px; padding: 5px 10px; border-radius: 999px;
    background: rgba(255,255,255,.05); border: 1px solid var(--lp-border);
    color: var(--lp-muted2); font-size: 12px; font-weight: 700;
}
.lp-mobile-lang-opt .fi { width: 16px; height: 12px; border-radius: 2px; flex-shrink: 0; }
.lp-mobile-lang-opt.active { color: var(--lp-accent2); border-color: var(--lp-accent-b); }

.lp-navbar {
	position: relative;
	z-index: 100;
    background: rgba(8,7,13,.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--lp-border);
    padding-top: .85rem; padding-bottom: .85rem;
}
.lp-brand { display: flex; align-items: center; gap: 10px; }
.lp-brand img { width: 180px; }
.lp-brand-text { display: flex; flex-direction: column; line-height: 1; }
.lp-brand-name { font-weight: 800; font-size: 15px; color: #fff; letter-spacing: .01em; }
.lp-brand-sub { font-size: 9px; font-weight: 700; color: var(--lp-accent2); letter-spacing: .22em; margin-top: 3px; }
.lp-nav-link { color: var(--lp-muted2) !important; font-weight: 500; padding: .5rem .9rem !important; border-radius: 8px; transition: all .2s; }
.lp-nav-link:hover { color: #fff !important; background: rgba(255,255,255,.06); }
.lp-navbar .navbar-toggler { border-color: var(--lp-border); }
.lp-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991.98px) {
    .lp-navbar .navbar-collapse { background: rgba(8,7,13,.98); border-top: 1px solid var(--lp-border); margin-top: .8rem; padding: .75rem 0 .25rem; }
}

.lp-btn-cta { display: inline-flex; align-items: center; justify-content: center; border-radius: 54px; }
.lp-btn-cta i { font-size: 13px; }
@media (max-width: 991.98px) {
    .lp-btn-cta { width: 100%; }
}

/* ── BUTTONS ── */
.ico-hover, .ico-basic{
	width: 36px;
}
.lp-btn-primary, .lp-btn-ghost { padding-left: 15px !important; }
.lp-btn-primary {
    background: var(--lp-btn-bg);
	border-radius: 54px;
	color: #fff; border: none; box-shadow: 0 0 26px rgba(168,85,247,.35);
    font-weight: 700; transition: all .25s;
	border: 2px solid #5A23CE;
}
.lp-btn-primary .ico-hover, .lp-btn-primary .ico-basic{
	margin-left: 10px;
}
.lp-btn-primary .ico-hover{
	display: none;
}
.lp-btn-primary:hover .ico-hover {
	display: inline-block;
}
.lp-btn-primary:hover .ico-basic {
	display: none;
}
.lp-btn-primary:hover, .lp-btn-primary:focus { color: #fff; transform: translateY(-2px); border: 2px solid #FFFFFF; }

.lp-btn-ghost {
    background: transparent;
	border-radius: 54px;
	color: #fff; 
    border: 2px solid #fff;
    box-shadow: 0 0 26px rgba(168,85,247,.15);
    font-weight: 700; 
    transition: all .25s;
}
.lp-btn-ghost .ico-hover, .lp-btn-ghost .ico-basic{
	margin-left: 10px;
}
.lp-btn-ghost .ico-hover{
	display: none;
}
.lp-btn-ghost:hover .ico-hover {
	display: inline-block;
}
.lp-btn-ghost:hover .ico-basic {
	display: none;
}
.lp-btn-ghost:hover, .lp-btn-ghost:focus { 
    background: #5A23CE;
    color: #fff; 
    transform: translateY(-2px); 
    box-shadow: 0 0 26px rgba(168,85,247,.35);
	border: 2px solid #5A23CE;
}

.lp-btn-white { background: #fff; color: #4c1d95; font-weight: 700; border: none; }
.lp-btn-white:hover { background: #f3e8ff; color: #4c1d95; transform: translateY(-2px); }
.lp-btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,.45); color: #fff; font-weight: 700; }
.lp-btn-outline-white:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ── HERO ── */
.lp-hero { padding: 152px 0 64px; text-align: center; overflow: hidden; }
.lp-hero{
	min-height: 100vh;
    display: grid;
    align-items: center;
	background: url(../images/website/background_header.png) no-repeat;
	background-size: contain;
	background-position: center center;
}

.lp-glow {
    position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
    width: 560px; height: 440px; border-radius: 50%;
    background: var(--lp-accent); filter: blur(120px); opacity: .22; pointer-events: none; z-index: 0;
}
.lp-hero-title {
    position: relative; 
    font-family: 'Dela Gothic One', system-ui, -apple-system, sans-serif;
	font-size: clamp(40px, 8vw, 84px);
    font-weight: 400; line-height: 1.0; letter-spacing: -.03em;
    text-transform: uppercase;
	text-align: left;
	line-height: 116px;
	letter-spacing: 11%;
	z-index: 1;
}
.lp-hero-grad {
    background: linear-gradient(258.85deg, #D03EF3 29.47%, #5A23CE 71.35%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lp-hero-sub { position: relative; z-index: 1; max-width: 620px; margin: 22px auto 32px; color: var(--lp-text); font-size: clamp(15px, 2vw, 17px); text-align: left; 
line-height: 32px;
letter-spacing: 5%;
}

/* ── STATS ── */
.lp-stats { position: relative; z-index: 1; }
.lp-stat-badge, .lp-stat-box {
    border-radius: 32px; padding: 14px 18px; height: 100%;
}
.lp-stat-badge { background: var(--lp-green-d); border: 1px solid var(--lp-green-b); text-align: left; }
.lp-stat-badge-pill { font-size: 11px; font-weight: 700; color: var(--lp-green); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.lp-stat-badge-sub { font-size: 12px; color: var(--lp-muted2); }

.lp-stat-box {
	background: var(--lp-box-bg);
	border: 1px solid var(--lp-box-border);
	text-align: left;
	max-width: 310px;
    min-height: 180px;
    margin: 0 auto;
	padding: 24px 22px;
}

.lp-stat-title { font-size: 20px; color: var(--lp-green-text); margin-top: 55px; font-weight: 600; }
.lp-stat-title:after{
	content: '';
	position: absolute;
	background: url(../images/website/promo_anim_lines.png) no-repeat;
	background-size: contain;
	width: 128px;
	height: 128px;
	top: -45px;
	left: -15px;
	animation: spin 6s linear infinite;
}
.lp-stat-title:before{
	content: '';
	position: absolute;
	background: url(../images/website/promo_start.png) no-repeat;
	background-size: contain;
	width: 98px;
	height: 98px;
	top: -30px;
	left: 0;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.lp-stat-num { font-size: 36px; font-weight: 600; color: #fff; }
.lp-stat-label { font-size: 20px; color: var(--lp-text); margin-top: 2px; }
.lp-stat-label-info { font-size: 16px; color: var(--lp-muted2); margin-top: 2px; }

/* ── SECTION HEAD ── */
.lp-section-num {
	position: absolute;
	top: -75px;
	left: 0px;
	font-family: 'Dela Gothic One', system-ui, -apple-system, sans-serif;
	font-size: 128px;
	font-weight: 400;
	color: rgb(255 255 255 / 20%);
	line-height: 1;
	z-index: 0;
	user-select: none;
}
.lp-section-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--lp-accent); margin-bottom: 8px; }
.lp-section-title { font-family: 'Dela Gothic One', system-ui, -apple-system, sans-serif; padding-left: 85px; position: relative; font-size: clamp(24px, 3.5vw, 48px); font-weight: 400; color: #fff;  margin-bottom: 40px; }
.lp-section-desc { color: var(--lp-text); font-size: 22px; margin-top: 10px; line-height: 32px }

/* ── РОДИТЕЛЯМ: раскрывающиеся карточки ── */
.lp-pcard-grid {
    display: grid; grid-template-columns: 1fr; gap: 12px; align-items: start;
}
@media (min-width: 768px) {
    .lp-pcard-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
.lp-pcard {
    display: block; width: 100%; text-align: left; cursor: pointer;
    background: var(--lp-card); border: 1px solid var(--lp-border); border-radius: 18px;
    padding: 18px 20px; transition: background .3s, border-color .25s, padding .3s, transform .25s;
}
.lp-pcard:hover { border-color: var(--lp-accent-b); transform: translateY(-2px); }
.lp-pcard-icon { display: none; width: 30px; height: 30px; margin-bottom: 14px; color: #fff; font-size: 20px; }
.lp-pcard-title { display: block; font-size: 15px; font-weight: 700; color: #fff; }
.lp-pcard-desc { display: none; font-size: 13px; color: var(--lp-muted2); line-height: 1.55; margin-top: 8px; }
.lp-pcard.is-open {
    padding: 24px 22px 26px;
    background: radial-gradient(120% 140% at 100% 100%, rgba(168,85,247,.5), transparent 60%), linear-gradient(160deg, #1b1428, #100c19);
    border-color: var(--lp-accent-b);
}
.lp-pcard.is-open .lp-pcard-icon, .lp-pcard.is-open .lp-pcard-desc { display: block; }

#parents{
	min-height: 100vh;
	display: grid;
	align-items: center;
	background: url(../images/website/background_header.png) no-repeat;
	background-size: contain;
	background-position: center center;
}

#parents .icon-friends, #parents .icon-progress {
	width: 60px;
}
#parents .cards-container{
	min-height: 240px;
	display: grid;
	grid-auto-flow: row;
	align-items: center;
}
.card-for-parent > h3, .card-mini-for-parent > h3{
	font-family: 'Dela Gothic One', system-ui, -apple-system, sans-serif;
	font-size: 24px;
	font-weight: 400;
} 
.card-for-parent:after{
}
.card-for-parent{
	position: relative;
	min-height: 240px;
	border-radius: 37px;
	background: var(--lp-box-bg);
	display: grid;
	align-content: center;
	gap: 10px;
	padding: 10px 35px;
}
.card-mini-for-parent{
	display: grid;
    align-content: center;
	height: 100px;
	border-radius: 37px;
	background: var(--lp-box-bg);
	padding: 10px 30px;
	border: 1px solid #353030;
	box-shadow: 0px 3px 6.9px 0px #000000;
	margin: 0;
}

/* ── BANNER (ноутбук) ── */

.lp-promo {
	min-height: 60vh;
    display: grid;
    align-items: center;
	z-index: 99;
}

.lp-promo-title {
	position: relative;
	font-family: 'Dela Gothic One', system-ui, -apple-system, sans-serif;
	font-size: clamp(22px, 3vw, 40px);
	font-weight: 400;
	color: var(--lp-text);
	margin-bottom: 14px;
}
.lp-promo-title:after{
	content: "";
	position: absolute;
	background: url(../images/website/laptop-cs2.png) no-repeat;
	background-size: contain;
	background-position: center;
	width: 780px;
	height: 566px;
	right: -400px;
	top: -170px;
	z-index: -1;
}
.lp-promo-desc { color: var(--lp-text); font-size: 24px; margin-bottom: 24px; }
.lp-promo-media {
    aspect-ratio: 4/3; border-radius: 16px; border: 1px solid var(--lp-border);
    background: radial-gradient(circle at 30% 20%, rgba(168,85,247,.25), transparent 60%), #060509;
    display: flex; align-items: center; justify-content: center;
    font-size: 56px; color: var(--lp-accent2);
}



/* ── PRICING ── */
#program{
	padding: 160px 0px;
	min-height: 100vh;
	display: grid;
	align-items: center;
	background: url(../images/website/background_header.png) no-repeat;
	background-size: contain;
	background-position: center center;
}

.btn-price{
	width: 90%;
	margin: 0 auto;
}
.lp-pricing-card {
    background: var(--lp-card); border: 1px solid var(--lp-border); border-radius: 18px;
    padding: 28px; height: 100%; display: flex; flex-direction: column; max-width: 380px; margin: 0 auto; gap: 20px;
}
.lp-pricing-card--featured { border-color: var(--lp-accent-b); box-shadow: 0 0 40px rgba(168,85,247,.14); }
.lp-pricing-level { 
text-align: center;
    color: var(--lp-text);
    font-weight: 600;
    font-size: 28px;
    border: 2px solid #fff;
    border-radius: 36px;
    width: 80%;
    margin: 0 auto;
    padding: 4px 10px;
}
.lp-pricing-name { font-size: 24px; text-align: center; font-weight: 600; color: #fff;  }
.lp-pricing-price, .price-month { 
	display: inline-block; font-size: 30px; font-weight: 400; color: var(--lp-green-text);
	font-family: 'Dela Gothic One', system-ui, -apple-system, sans-serif;
}

.lp-pricing-period { font-size: 13px; color: var(--lp-muted); margin-bottom: 18px; }
.lp-pricing-features {
	width: 90%;
    margin: 0 auto;
	list-style: none;
	padding: 0;
	flex: 1;
}
.lp-pricing-features li { display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 20px;
    color: var(--lp-text);
    padding: 6px 0;
    font-weight: 500; }
.lp-pricing-features li i { color: var(--lp-green); flex-shrink: 0; margin-top: 2px; }

/* ── TEAM ── */
#team{
	min-height: 80vh;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	background: url(../images/website/background_header.png) no-repeat;
	background-size: contain;
	background-position: center center;
	align-content: space-evenly;
}

.lp-team-card { width: 700px; background: var(--lp-card); border: 1px solid var(--lp-border); border-radius: 16px; padding: 24px; height: 100%; display: flex; gap: 16px; }
.lp-team-photo {
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 600; color: var(--lp-accent2);
}
.lp-team-name { font-size: 24px; font-weight: 700; color: #fff; }
.lp-team-role { font-size: 20px; color: var(--lp-text); margin: 2px 0 8px; }
.lp-team-p { font-size: 36px; font-style: italic; color: var(--lp-text); line-height: 1.55; }
.lp-team-desc { font-size: 18px; font-style: italic; color: var(--lp-text); line-height: 1.55; }

/* ── PRACTICE ── */
.lp-practice-card { background: var(--lp-card); border: 1px solid var(--lp-border); border-radius: 16px; padding: 60px 20px; height: 100%; }
.lp-practice-icon {
    display: flex; align-items: center; font-weight: 800; font-size: 14px;
}
.lp-practice-title { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.lp-practice-desc { font-size: 20px; color: var(--lp-text); }

.lp-why-title { font-family: 'Dela Gothic One', system-ui, -apple-system, sans-serif; font-size: 32px; font-weight: 400; color: #fff; margin-bottom: 14px; }
.lp-tag-bg { background: var(--lp-box-bg) !important; }
.lp-tag {
	display: inline-flex;
	align-items: center;
	padding: 7px 22px;
	border-radius: 36px;
	font-size: 24px;
	font-weight: 500;
	background: #5A23CE;
	border: 1px solid var(--lp-accent-b);
	color: var(--lp-text);
	margin-bottom: 15px;
    margin-right: 15px;
}
.lp-note { margin-top: 20px; font-size: 32px; color: var(--lp-text); font-weight: 400; font-family: 'Dela Gothic One', system-ui, -apple-system, sans-serif; }
.lp-note span { color: var(--lp-green-text); }

#rides{
	min-height: 100vh;
	display: grid;
	align-items: center;
	background: url(../images/website/background_header.png) no-repeat;
	background-size: contain;
	background-position: center center;
	align-content: space-evenly;
}

/* ── FAQ (Bootstrap accordion, только один пункт открыт одновременно) ── */
#faq{
	background-color: #050506;
	min-height: 100vh;
	display: grid;
	align-items: center;
	align-content: center;
}
.faq-title{
	font-size: 24px;
}
.faq-body{
	display: inline-block;
    padding-top: 20px;
    font-size: 18px;
	color: var(--lp-text);
}
.lp-accordion .accordion-item {
    background: var(--lp-card); border: 1px solid var(--lp-border) !important; border-radius: 14px !important;
    overflow: hidden; margin-bottom: 12px;
}
.lp-accordion .accordion-button {
    background: transparent; color: #fff; font-weight: 600; font-size: 15px; box-shadow: none; padding: 18px 22px;
}
.lp-accordion .accordion-button:not(.collapsed) { background: rgba(168,85,247,.08); color: #fff; }
.lp-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.lp-accordion .accordion-button::after { filter: invert(1) brightness(1.7); }
.lp-accordion .accordion-body { color: var(--lp-muted); font-size: 14px; line-height: 1.6; background: transparent; padding: 0 22px 20px; }

/* ── TEAM CAROUSEL ── */
.lp-team-carousel .carousel-item { padding: 2px 10px; }
.lp-team-carousel .carousel-control-prev, .lp-team-carousel .carousel-control-next {
    width: 40px; height: 40px; top: 50%; transform: translateY(-50%); bottom: auto;
    background: rgba(255,255,255,.06); border: 1px solid var(--lp-border); border-radius: 50%; opacity: 1;
}
.lp-team-carousel .carousel-control-prev:hover, .lp-team-carousel .carousel-control-next:hover { background: var(--lp-accent-d); border-color: var(--lp-accent-b); }
.lp-team-carousel .carousel-control-prev { left: 0; }
.lp-team-carousel .carousel-control-next { right: 0; }
.lp-team-carousel .carousel-control-prev-icon, .lp-team-carousel .carousel-control-next-icon { width: 16px; height: 16px; }
.lp-team-carousel .carousel-indicators { position: static; margin-top: 18px; }
.lp-team-carousel .carousel-indicators [data-bs-target] {
    background: var(--lp-accent-b); width: 8px; height: 8px; border-radius: 50%; opacity: 1; border: none; margin: 0 4px;
}
.lp-team-carousel .carousel-indicators .active { background: var(--lp-accent); }

/* ── LEAD MODAL ── */
.lp-modal .modal-content { background: var(--lp-card); border: 1px solid var(--lp-border); border-radius: 18px; color: var(--lp-text); }
.lp-modal .modal-header, .lp-modal .modal-footer { border-color: var(--lp-border); }
.lp-modal .form-control {
    background: rgba(255,255,255,.05); border: 1px solid var(--lp-border); color: #fff; border-radius: 10px;
}
.lp-modal .form-control::placeholder { color: var(--lp-muted); }
.lp-modal .form-control:focus { background: rgba(168,85,247,.08); border-color: var(--lp-accent-b); color: #fff; box-shadow: none; }
.lp-modal .form-label { color: var(--lp-muted2); font-size: 13px; font-weight: 600; }
.lp-modal .text-muted { color: var(--lp-muted2) !important; }
.lp-modal .btn-close { filter: invert(1); opacity: .8; }
.lp-hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lp-modal-success { display: none; text-align: center; padding: 12px 0; }
.lp-modal-success .bi { font-size: 44px; color: var(--lp-green); }
.lp-field-error { color: #f87171; font-size: 12px; margin-top: 4px; display: none; }

/* ── CTA BANNER (развоз) ── */
.lp-cta-block { /*background: linear-gradient(135deg, #4c1d95, #7c3aed 60%, #a855f7); border-radius: 24px;*/ padding: 48px; text-align: center; }
.lp-cta-block h3 { font-size: clamp(20px, 3vw, 40px);
    font-family: 'Dela Gothic One';
    font-weight: 400;
    color: #fff;
    margin-bottom: 5px; }
.lp-cta-block p {
    display: inline-block;
    align-items: center;
    padding: 7px 22px;
    border-radius: 36px;
    font-size: 24px;
    font-weight: 500;
	background: #5A23CE;
    border: 2px solid #5A23CE;
    color: var(--lp-text);
    margin-bottom: 15px;
    margin-right: 15px; }

.lp-cta-block p.transparent {
	background: transparent;
	border: 2px solid #FFF;
}
/* ── FINAL CTA ── */
#enroll{
	background-color: #050506;
	min-height: 50vh;
	display: grid;
	align-items: center;
	background: url(../images/website/background_header.png) no-repeat;
	background-size: contain;
	background-position: center center;
	align-content: center;
}

.lp-final-label { font-size: 32px; font-weight: 500; color: var(--lp-text); }

.lp-final h2{ font-family: 'Dela Gothic One', system-ui, -apple-system, sans-serif; font-size: clamp(26px, 4vw, 48px); font-weight: 400; color: #fff; margin-bottom: 30px; }
.lp-final h2 span { font-family: 'Dela Gothic One', system-ui, -apple-system, sans-serif; color: var(--lp-green-text); }

.lp-final p.lead { font-weight: 500; font-size: 22px; color: var(--lp-text); }
.lp-final-contact {
	display: grid;
    font-size: 24px;
    color: var(--lp-text);
    margin-bottom: 24px;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    height: 96px;
    padding: 10px 15px;
    grid-auto-flow: column;
    align-content: stretch;
    align-items: center;
}

/* ── FOOTER ── */
.lp-footer { border-top: 1px solid var(--lp-border); padding: 28px 0; }
.lp-footer-nav a { font-size: 13px; color: var(--lp-muted2); margin-right: 18px; }
.lp-footer-nav a:hover { color: #fff; }
.lp-follow-btn { width: 34px; height: 34px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.05); border: 1px solid var(--lp-border); color: var(--lp-muted); }
.lp-follow-btn:hover { color: #fff; border-color: var(--lp-accent-b); }
.lp-footer-copy { font-size: 12px; color: var(--lp-muted); }
.lp-footer-disclaimer { font-size: 11px; line-height: 1.6; color: var(--lp-muted); max-width: 900px; margin: 0 auto 14px; text-align: center; }

.is-disabled {
  background-color: #cccccc;
  color: #666666;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}


/* 1. Главный контейнер (центрируем и ограничиваем ширину) */
.lp-team-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Задайте максимальную ширину вашего блока */
    margin: 0 auto;
    padding: 0 60px; /* Отступы по бокам, чтобы стрелки не налезали на контент */
    box-sizing: border-box;
}

/* 2. Сбрасываем конфликтующие стили для трека Glider */
.lp-team-carousel .carousel-inner.glider {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: hidden !important; /* Прячем дефолтный скроллбар */
    width: 100% !important;
}

/* 3. Важно: сбрасываем Bootstrap-анимации и фиксированную ширину */
.lp-team-carousel .carousel-item {
    display: block !important;
    flex-shrink: 0;
    margin: 0 !important;
    padding: 0 10px; /* Свободное пространство (отступы) между карточками */
    box-sizing: border-box;
}

/* 4. Карточка внутри должна занимать 100% выделенной ей ширины */
.lp-team-card {
    width: 100% !important;
    max-width: 100% !important;
}

/* 5. Позиционируем стрелки относительно контейнера .lp-team-carousel */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}
.carousel-control-prev { left: 10px; }
.carousel-control-next { right: 10px; }





@media (max-width: 768px) {
	.lp-promo-title:after{
		display: none;
	}
	.lp-hero-title {
	   line-height: normal;
	   font-size: 60px;
	   text-align: center;
   }
   .lp-hero-sub{
	   margin-bottom: 70px;
	   text-align: center;
   }
   .lp-section-title { margin-bottom: 10px; padding-left: 0; }
   
   .lp-pricing-features {
		width: 100%;
	}
	.btn-price{
		width: 100%;
	}
	#program {
		padding: 56px 0px;
	}
	.lp-cta-block p{
		font-size: 18px;
	}
	.lp-team-carousel {
		padding: 0 34px;
	}
	.lp-team-card {
		flex-direction: column;
		text-align: center;
	}
	.lp-team-card > * {
		min-width: 0;
	}
	.lp-team-photo img {
		width: 140px;
		height: 140px;
		object-fit: cover;
		border-radius: 12px;
	}
}
