*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

html{
	scroll-behavior:smooth;
}

img,
svg{
	display:block;
}

body{
	font-synthesis:none;
	font-family:
	Inter,
	system-ui,
	-apple-system,
	BlinkMacSystemFont,
	'Segoe UI',
	sans-serif;
	background:#f5f7fb;
	color:#1f2937;
	line-height:1.55;
	overflow-x:hidden;
}

.container{
	width:100%;
	max-width:1200px;
	margin:0 auto;
	padding:0 20px;
}

/* HEADER */

.header{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	z-index:300;
	padding:24px 0;
}

.header-wrap{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:30px;
}

.logo{
	color:#fff;
	font-size:28px;
	font-weight:800;
	text-decoration:none;
	letter-spacing:.5px;
}

/* NAV */

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

.nav a{
	color:#fff;
	text-decoration:none;
	font-weight:500;
	transition:.3s;
}

.nav a:hover{
	opacity:.7;
}

/* LANGUAGE */

.lang-switcher{
	position:relative;
}

.lang-current{
	height:44px;
	padding:0 16px;
	border:none;
	border-radius:12px;
	background:#fff;
	color:#0d1d49;
	font-weight:700;
	display:flex;
	align-items:center;
	gap:10px;
	cursor:pointer;
}

.lang-dropdown{
	position:absolute;
	top:54px;
	right:0;
	background:#fff;
	border-radius:12px;
	overflow:hidden;
	min-width:80px;
	opacity:0;
	visibility:hidden;
	transition:.3s;
	box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.lang-switcher:hover .lang-dropdown{
	opacity:1;
	visibility:visible;
}

.lang-dropdown a{
	display:block;
	padding:12px 16px;
	color:#0d1d49;
}

.lang-arrow{
	width:14px;
	height:14px;
	flex-shrink:0;
	transition:.3s;
}

.lang-switcher.active .lang-arrow{
	transform:rotate(180deg);
}


/* HERO */

.hero{
	position:relative;
	overflow:hidden;
	isolation:isolate;
	background:url('/img/intro.webp') center center/cover no-repeat;
	min-height:100svh;
	display:flex;
	align-items:center;
	padding:120px 0 40px;
	color:#fff;
}

.hero-overlay{
	position:absolute;
	inset:0;
	background:rgba(7,28,79,.84);
	z-index:1;
}

.hero .container{
	position:relative;
	z-index:2;
	width:100%;
}

.hero-grid{
	display:grid;
	grid-template-columns:minmax(0,1fr) 430px;
	gap:50px;
	align-items:center;
}

.hero-content{
	min-height:520px;
}

@media(max-width:768px){
	
	.hero-content{
		min-height:auto;
	}
	
}

/* DESKTOP HEIGHT FIX */

@media(min-width:1200px){
	
	.hero{
		padding-top:110px;
		padding-bottom:30px;
	}
	
	.hero h1{
		font-size:56px;
		margin-bottom:20px;
	}
	
	.hero p{
		font-size:18px;
		margin-bottom:24px;
		line-height:1.6;
	}
	
	.hero-list{
		margin-bottom:28px;
	}
	
	.hero-list li{
		margin-bottom:16px;
		font-size:16px;
	}
	
	.form-box{
		padding:28px;
	}
	
	.form-box h2{
		font-size:30px;
		margin-bottom:8px;
	}
	
	.form-group{
		margin-bottom:12px;
	}
	
	.form-group input,
	.form-group textarea{
		padding:14px;
	}
	
	.form-group textarea{
		min-height:60px;
	}
	
	.radio-group{
		margin:16px 0;
		gap:18px;
	}
	
	.btn{
		height:54px;
	}
	
}

.hero h1{
	font-size:54px;
	line-height:1.1;
	margin-bottom:25px;
	font-weight:800;
	max-width:760px;
}

.hero p{
	font-size:20px;
	color:rgba(255,255,255,.88);
	max-width:700px;
	margin-bottom:34px;
	line-height:1.7;
}

/* HERO LIST */

.hero-list{
	list-style:none;
	margin-bottom:40px;
}

.hero-list li{
	margin-bottom:22px;
	font-size:18px;
	display:flex;
	align-items:center;
	gap:16px;
	line-height:1.5;
}

.hero-icon{
	width:34px;
	height:34px;
	border:2px solid rgba(255,255,255,.75);
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-shrink:0;
}

.hero-icon svg{
	width:16px;
	height:16px;
}

/* BUTTONS */

.hero-buttons{
	display:flex;
	gap:16px;
	flex-wrap:wrap;
}

.btn{
	height:58px;
	padding:0 28px;
	border-radius:16px;
	text-decoration:none;
	font-weight:700;
	transition:.3s;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:12px;
	font-size:15px;
}

.btn-primary{
	background:#1b64f2;
	color:#fff;
}

.btn-white{
	background:#fff;
	color:#0d1d49;
}

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

.btn .fa-telegram{
	font-size:24px;
	line-height:1;
	flex-shrink:0;
}

.telegram-icon{
	display:block;
	width:24px;
	height:24px;
	min-width:24px;
	min-height:24px;
}

/* FORM */

.form-box{
	background:#fff;
	border-radius:28px;
	padding:36px;
	box-shadow:0 20px 60px rgba(0,0,0,.16);
}

.form-box h2{
	color:#0d1d49;
	font-size:34px;
	margin-bottom:10px;
	font-weight:500;
}

.form-box p{
	color:#6b7280;
	margin-bottom:25px;
	font-size:15px;
	line-height:1.6;
}

.form-group{
	margin-bottom:16px;
}

.form-group input,
.form-group textarea{
	width:100%;
	border:1px solid #dbe1ea;
	border-radius:14px;
	padding:16px;
	font-size:15px;
	outline:none;
	transition:.3s;
	font-family:
	Inter,
	system-ui,
	-apple-system,
	BlinkMacSystemFont,
	'Segoe UI',
	sans-serif;
}

.form-group input:focus,
.form-group textarea:focus{
	border-color:#1b64f2;
}

.form-group textarea{
	min-height:60px;
	resize:none;
}

/* RADIO */

.radio-group{
	display:flex;
	gap:25px;
	flex-wrap:wrap;
	margin:20px 0;
}

.radio-item{
	display:flex;
	align-items:center;
	gap:10px;
	cursor:pointer;
	font-size:15px;
	color:#0d1d49;
	font-weight:500;
}

.radio-item input{
	display:none;
}

.radio-item span{
	width:20px;
	height:20px;
	border:2px solid #1b64f2;
	border-radius:50%;
	position:relative;
	display:block;
}

.radio-item input:checked + span::before{
	content:'';
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width:10px;
	height:10px;
	border-radius:50%;
	background:#1b64f2;
}

.form-submit{
	width:100%;
	border:none;
	cursor:pointer;
	margin-top:10px;
}


/* IMPORTANT */

.important-section{
	padding:0 0 40px;
}

.important-box{
	margin-top:30px;
	background:#cedcf2;
	border-radius:24px;
	padding:32px 36px;
	display:flex;
	align-items:center;
	gap:26px;
}

.important-icon{
	width:78px;
	height:78px;
	min-width:78px;
	border-radius:50%;
	background:#1657d9;
	display:flex;
	align-items:center;
	justify-content:center;
	box-shadow:
	0 10px 25px rgba(22,87,217,.18);
}

.important-title{
	font-size:32px;
	font-weight:800;
	color:#0d1d49;
	margin-bottom:10px;
	line-height:1.2;
}

.important-text{
	font-size:17px;
	line-height:1.8;
	color:#4b5563;
	max-width:920px;
}

/* MOBILE */

@media(max-width:768px){
	
	.important-box{
		padding:24px;
		gap:20px;
		flex-direction:column;
	}
	
	.important-icon{
		width:68px;
		height:68px;
		min-width:68px;
	}
	
	.important-title{
		font-size:26px;
	}
	
	.important-text{
		font-size:16px;
		line-height:1.7;
	}
	
}


/* ABOUT */

.about{
	display:grid;
	grid-template-columns:1fr 460px;
	gap:70px;
	align-items:center;
}

.about-content h2{
	font-size:44px;
	line-height:1.15;
	font-weight:800;
	color:#0d1d49;
	margin-bottom:28px;
}

.about-content p{
	font-size:18px;
	line-height:1.85;
	color:#4b5563;
	margin-bottom:22px;
}

.about-image{
	position:relative;
}

.about-image img{
	width:100%;
	display:block;
	border-radius:28px;
	box-shadow:
	0 20px 60px rgba(13,29,73,.12);
	background:#fff;
}

.about-caption{
	margin-top:16px;
	text-align:center;
	font-size:15px;
	font-weight:600;
	color:#6b7280;
}

/* MOBILE */

@media(max-width:992px){
	
	.about{
		grid-template-columns:1fr;
		gap:40px;
	}
	
	.about-content h2{
		font-size:36px;
	}
	
}

@media(max-width:768px){
	
	.about-content h2{
		font-size:30px;
		margin-bottom:22px;
	}
	
	.about-content p{
		font-size:16px;
		line-height:1.75;
		margin-bottom:18px;
	}
	
	.about-caption{
		font-size:14px;
	}
	
}

/* SECTION */

.section{
	padding:20px 0;
}

.section-title{
	text-align:center;
	font-size:42px;
	margin-bottom:20px;
	color:#0d1d49;
	font-weight:800;
	line-height:1.2;
}

.section-subtitle{
	text-align:center;
	color:#6b7280;
	max-width:800px;
	margin:0 auto 50px;
	line-height:1.7;
}

/* CARDS */

.cards{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:25px;
}

.card{
	background:#fff;
	border-radius:24px;
	padding:35px;
	box-shadow:0 5px 20px rgba(0,0,0,.04);
}

.card-icon{
	width:70px;
	height:70px;
	border-radius:18px;
	background:#1b64f2;
	margin-bottom:25px;
}

.card h3{
	margin-bottom:15px;
	font-size:24px;
	color:#0d1d49;
}

.card p{
	color:#6b7280;
	line-height:1.7;
}

/* ABOUT */

.about{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:60px;
	align-items:center;
}

.about img{
	width:100%;
	border-radius:24px;
	display:block;
}

.about h2{
	font-size:44px;
	margin-bottom:25px;
	color:#0d1d49;
	line-height:1.2;
}

.about p{
	color:#6b7280;
	margin-bottom:20px;
	line-height:1.7;
}


/* INFO GRID */

.info-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:32px;
}

.info-card{
	border:1px solid #cedcf2;
	border-radius:32px;
	padding:42px;
	background:#fff;
}

.info-head{
	display:flex;
	align-items:center;
	gap:22px;
	margin-bottom:28px;
}

.info-icon{
	flex-shrink:0;
}

.info-icon svg{
	width:82px;
	height:82px;
	display:block;
}

.info-card h2{
	font-size:32px;
	line-height:1.2;
	font-weight:800;
	color:#0d1d49;
	margin:0;
	max-width:580px;
}

.info-card p{
	font-size:17px;
	line-height:1.85;
	color:#4b5563;
	margin-bottom:18px;
}

/* LIST */

.info-list{
	list-style:none;
	display:grid;
	grid-template-columns:1fr 1fr;
	column-gap:36px;
	row-gap:16px;
	margin-top:26px;
}

.info-list li{
	position:relative;
	padding-left:20px;
	font-size:17px;
	line-height:1.7;
	color:#4b5563;
}

.info-list li::before{
	content:'';
	position:absolute;
	left:0;
	top:11px;
	width:8px;
	height:8px;
	border-radius:50%;
	background:#1b64f2;
}

/* MOBILE */

@media(max-width:992px){
	
	.info-grid{
		grid-template-columns:1fr;
	}
	
	.info-card h2{
		font-size:32px;
	}
	
}

@media(max-width:768px){
	
	.info-card{
		padding:28px;
		border-radius:26px;
	}
	
	.info-head{
		gap:16px;
		margin-bottom:22px;
		align-items:center;
	}	
	
	.info-icon svg{
		width:68px;
		height:68px;
	}
	
	.info-card h2{
		font-size:22px;
	}	
	
	.info-card p,
	.info-list li{
		font-size:16px;
		line-height:1.75;
	}
	
	.info-list{
		grid-template-columns:1fr;
		row-gap:14px;
		margin-top:22px;
	}
	
}


/* ADVANTAGES */

.advantages-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:32px;
}

.advantages-card{
	background:#fff;
	border:1px solid #cedcf2;
	border-radius:32px;
	padding:40px;
}

/* HEAD */

.advantages-head{
	display:flex;
	/* align-items:center; */
	gap:22px;
	margin-bottom:28px;
}

.advantages-head h3{
	margin:0;
	display:flex;
	align-items:center;
	min-height:82px;
}

.advantages-icon{
	flex-shrink:0;
}

.advantages-icon svg{
	width:82px;
	height:82px;
	display:block;
}

.advantages-card h3,
.advantages-title{
	font-size:26px;
	line-height:1.2;
	font-weight:800;
	color:#0d1d49;
	margin:0 0 28px;
}

.advantages-title{
	display:flex;
	align-items:center;
	min-height:82px;
}

/* DATA LIST */

.data-list{
	list-style:none;
	display:grid;
	grid-template-columns:1fr 1fr;
	column-gap:34px;
	row-gap:18px;
}

.data-list li{
	position:relative;
	padding-left:28px;
	font-size:17px;
	line-height:1.7;
	color:#4b5563;
}

.data-list li::before{
	content:'✓';
	position:absolute;
	left:0;
	top:0;
	color:#1b64f2;
	font-size:18px;
	font-weight:700;
}

/* ADVANTAGE ITEMS */

.advantages-items{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:26px;
}

.advantage-item{
	padding:22px;
	border-radius:24px;
	background:#f7faff;
}

.advantage-svg{
	margin-bottom:18px;
}

.advantage-svg svg{
	width:76px;
	height:76px;
	display:block;
}

.advantage-name{
	font-size:20px;
	font-weight:700;
	line-height:1.3;
	color:#0d1d49;
	margin-bottom:12px;
}

.advantage-text{
	font-size:15px;
	line-height:1.7;
	color:#6b7280;
}

/* MOBILE */

@media(max-width:992px){
	
	.advantages-grid{
		grid-template-columns:1fr;
	}
	
}

@media(max-width:768px){
	
	.advantages-card{
		padding:28px;
		border-radius:26px;
	}
	
	.advantages-head{
		align-items:flex-start;
		gap:16px;
		margin-bottom:24px;
	}
	
	.advantages-icon svg{
		width:68px;
		height:68px;
	}
	
	.advantages-card h3,
	.advantages-title{
		font-size:22px;
		margin-bottom:22px;
	}
	
	.data-list{
		grid-template-columns:1fr;
		row-gap:14px;
	}
	
	.data-list li{
		font-size:16px;
		line-height:1.75;
	}
	
	.advantages-items{
		grid-template-columns:1fr;
		gap:18px;
	}
	
	.advantage-item{
		padding:20px;
	}
	
	.advantage-svg svg{
		width:68px;
		height:68px;
	}
	
	.advantage-name{
		font-size:18px;
	}
	
}


/* PROCESS */

.process-box{
	background:#fff;
	border:1px solid #cedcf2;
	border-radius:32px;
	padding:42px;
}

.process-title{
	font-size:38px;
	line-height:1.2;
	font-weight:800;
	color:#0d1d49;
	margin-bottom:40px;
}

.process-grid{
	display:grid;
	grid-template-columns:
	1fr
	80px
	1fr
	80px
	1fr
	80px
	1fr;
	align-items:stretch;
	gap:0;
}

.process-item{
	position:relative;
	text-align:center;
	padding:0 26px;
	display:flex;
	flex-direction:column;
	align-items:center;
	height:100%;
}

.process-icon{
	margin-bottom:22px;
	display:flex;
	justify-content:center;
}

.process-icon svg{
	width:92px;
	height:92px;
	display:block;
}

.process-name{
	font-size:22px;
	font-weight:700;
	line-height:1.35;
	color:#0d1d49;
	margin-bottom:14px;
	min-height:60px;
	display:flex;
	align-items:center;
	justify-content:center;
}

.process-text{
	font-size:16px;
	line-height:1.75;
	color:#6b7280;
}

/* ARROW */

.process-arrow{
	position:relative;
	display:flex;
	align-items:flex-start;
	justify-content:center;
	height:100%;
	padding-top:128px;
}

.process-arrow::before{
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	left:50%;
	transform:translateX(-50%);
	width:1px;
	background:#cedcf2;
}

.process-arrow svg{
	position:relative;
	z-index:2;
	width:62px;
	height:62px;
	background:#fff;
	padding:8px 0;
	display:block;
}

/* MOBILE */

@media(max-width:992px){
	
	.process-grid{
		grid-template-columns:1fr;
		gap:0;
	}
	
	.process-item{
		text-align:left;
		align-items:flex-start;
		padding:24px 0;
	}
	
	.process-arrow{
		padding:0;
		height:70px;
		align-items:center;
	}
	
	.process-arrow::before{
		top:50%;
		bottom:auto;
		left:0;
		right:0;
		width:auto;
		height:1px;
		transform:translateY(-50%);
	}
	
	.process-arrow svg{
		transform:rotate(90deg);
		width:52px;
		height:52px;
		padding:0 6px;
	}
	
	.process-icon{
		justify-content:flex-start;
		margin-bottom:18px;
	}
	
	.process-name{
		min-height:auto;
		justify-content:flex-start;
		font-size:20px;
		margin-bottom:12px;
	}
	
	.process-text{
		max-width:100%;
	}
	
}

@media(max-width:768px){
	
	.process-box{
		padding:28px;
		border-radius:26px;
	}
	
	.process-title{
		font-size:28px;
		margin-bottom:28px;
	}
	
	.process-icon svg{
		width:74px;
		height:74px;
	}
	
	.process-name{
		font-size:18px;
	}
	
	.process-text{
		font-size:15px;
		line-height:1.7;
	}
	
	
}

/* DESKTOP DIVIDERS */

.process-arrow{
	position:relative;
}

.process-arrow::after{
	content:'';
	position:absolute;
	top:-26px;
	bottom:-26px;
	left:50%;
	transform:translateX(-50%);
	width:1px;
	background:#cedcf2;
	z-index:0;
}

.process-arrow svg{
	position:relative;
	z-index:2;
	background:#fff;
	padding:6px 0;
}

/* MOBILE */

@media(max-width:992px){
	
	.process-arrow::after{
		top:50%;
		bottom:auto;
		left:-10px;
		right:-10px;
		width:auto;
		height:1px;
		transform:translateY(-50%);
	}
	
	.process-arrow svg{
		padding:0 6px;
		background:#fff;
	}
	
}

/* FAQ */

.faq{
	max-width:900px;
	margin:0 auto;
}

.faq-item{
	background:#fff;
	border-radius:18px;
	margin-bottom:18px;
	overflow:hidden;
}

.faq-question{
	padding:24px 30px;
	cursor:pointer;
	display:flex;
	align-items:center;
	justify-content:space-between;
	font-weight:700;
	color:#0d1d49;
	gap:20px;
}

.faq-answer{
	max-height:0;
	overflow:hidden;
	transition:.35s;
}

.faq-answer p{
	padding:0 30px 25px;
	color:#6b7280;
	line-height:1.7;
}

/* CTA */

.cta{
	background:#0d1d49;
	color:#fff;
	border-radius:30px;
	padding:50px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:30px;
}

.cta h2{
	font-size:42px;
	line-height:1.2;
}

/* FOOTER */

.footer{
	background:#071c4f;
	color:#fff;
	padding:70px 0 30px;
}

.footer-grid{
	display:grid;
	grid-template-columns:2fr 1fr 1fr;
	gap:40px;
	margin-bottom:50px;
}

.footer h4{
	margin-bottom:20px;
	font-size:22px;
}

.footer ul{
	list-style:none;
}

.footer li{
	margin-bottom:12px;
}

.footer a{
	color:rgba(255,255,255,.8);
	text-decoration:none;
	transition:.3s;
}

.footer a:hover{
	color:#fff;
}

.footer-bottom{
	border-top:1px solid rgba(255,255,255,.15);
	padding-top:25px;
	text-align:center;
	color:rgba(255,255,255,.7);
}

/* BURGER */

.burger{
	display:none;
	width:46px;
	height:46px;
	background:none;
	border:none;
	flex-direction:column;
	justify-content:center;
	gap:5px;
	cursor:pointer;
	z-index:500;
}

.burger span{
	width:28px;
	height:3px;
	background:#fff;
	border-radius:10px;
}

/* MOBILE */

@media(max-width:992px){
	
	.hero-grid,
	.about,
	.cards,
	.footer-grid{
		grid-template-columns:1fr;
	}
	
	.hero{
		padding-top:130px;
	}
	
	.hero h1{
		font-size:46px;
	}
	
	.section-title{
		font-size:34px;
	}
	
	.cta{
		flex-direction:column;
		text-align:center;
	}
	
}

@media(max-width:768px){
	
	.burger{
		display:flex;
	}
	
	.nav{
		position:fixed;
		top:0;
		right:-100%;
		width:290px;
		height:100vh;
		background:#071c4f;
		flex-direction:column;
		align-items:flex-start;
		padding:110px 30px;
		transition:.35s;
		z-index:400;
	}
	
	.nav.active{
		right:0;
	}
	
	.hero{
		padding:120px 0 70px;
	}
	
	.hero-grid{
		gap:35px;
	}
	
	.hero h1{
		font-size:36px;
	}
	
	.hero p{
		font-size:17px;
		margin-bottom:28px;
	}
	
	.hero-list li{
		font-size:16px;
		/* align-items:flex-start; */
	}
	
	.hero-buttons{
		flex-direction:column;
	}
	
	.btn{
		width:100%;
	}
	
	.form-box{
		padding:25px;
	}
	
	.form-box h2{
		font-size:28px;
	}
	
	.radio-group{
		flex-direction:column;
		gap:14px;
	}
	
	.section{
		padding:20px 0;
	}
	
	.cta{
		padding:35px 25px;
	}
	
	.cta h2{
		font-size:30px;
	}
	
	.about h2{
		font-size:34px;
	}
	
}

@media(max-width:480px){
	
	.container{
		padding:0 16px;
	}
	
	.hero h1{
		font-size:31px;
	}
	
	.hero-icon{
		width:42px;
		height:42px;
	}
	
	.hero-icon svg{
		width:18px;
		height:18px;
	}
	
	.section-title{
		font-size:28px;
	}
	
	.card{
		padding:28px;
	}
	
}

/* MOBILE LANGUAGE */

@media(max-width:768px){
	
	.lang-switcher{
		width:100%;
	}
	
	.lang-current{
		width:35%;
		justify-content:space-between;
	}
	
	.lang-dropdown{
		position:static;
		margin-top:10px;
		width:30%;
		max-height:0;
		opacity:1;
		visibility:visible;
		overflow:hidden;
		transition:max-height .3s ease;
		box-shadow:none;
		padding:0;
	}
	
	.lang-switcher.active .lang-dropdown{
		max-height:100px;
	}
	
	.lang-dropdown a{
		padding:8px 16px;
		border-top:1px solid #e5e7eb;
	}
	
}


#heroForm{
	position:relative;
	padding-bottom:34px;
}

.form-message{
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	font-size:22px;
	font-weight:600;
	text-align:center;
	opacity:0;
	visibility:hidden;
	transform:translateY(8px);
	transition:.3s;
}

@media(max-width:768px){
	
	.form-message{
		font-size:18px;
	}
	
}

.form-message.show{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}

.form-message.success{
	color:#1f8f35;
}

.form-message.error{
	color:#d93025;
}