@charset "UTF-8";
/*Обнуление*/
* {
	padding: 0;
	margin: 0;
	border: 0;
}

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

:focus, :active {
	outline: none;
}

a:focus, a:active {
	outline: none;
}

nav, footer, header, aside {
	display: block;
}

html, body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 16px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

input, button, textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a, a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: 400;
}

/*--------------------*/
/* --- ПЕРЕМЕННЫЕ --- */
body {
	font-family: "Inter", sans-serif;
	margin: 0;
	padding: 0;
	overflow-x: hidden; /* Важно: убирает горизонтальную прокрутку */
}

/* --- ОБЩИЕ СТИЛИ --- */
.container {
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
	padding: 0 20px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.container--small {
	max-width: 800px;
	margin: 0 auto;
	width: 100%;
	padding: 0 20px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.starting--title {
	margin-bottom: 1rem;
	text-align: center;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
}

.starting--subtitle {
	text-align: center;
	font-size: 1.12rem;
	color: #5a6c7d;
	font-weight: 500;
}

.reveal {
	opacity: 0;
	-webkit-transform: translateY(30px);
	        transform: translateY(30px);
	-webkit-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	visibility: hidden;
}
.reveal.active {
	opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
	visibility: visible;
}
.reveal.active:nth-child(2) {
	-webkit-transition-delay: 0.1s;
	        transition-delay: 0.1s;
}
.reveal.active:nth-child(3) {
	-webkit-transition-delay: 0.3s;
	        transition-delay: 0.3s;
}
.reveal.active:nth-child(4) {
	-webkit-transition-delay: 0.5s;
	        transition-delay: 0.5s;
}

/* Контейнер для кнопок */
.language-selector {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	background: #f0f2f5;
	padding: 4px;
	border-radius: 8px;
	margin-left: 15px; /* Отступ от меню */
	border: 1px solid #e1e4e8;
}

/* Сами кнопки */
.lang-switcher-btn {
	background: transparent;
	border: none;
	padding: 6px 12px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	color: #64748b;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Активная кнопка (выбранный язык) */
.lang-switcher-btn.active {
	background: #ffffff;
	color: #2c3e50; /* Твой фирменный синий */
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ховер эффект */
.lang-switcher-btn:hover:not(.active) {
	color: #2c3e50;
}

/* Адаптив для мобилок */
@media (max-width: 768px) {
	.language-selector {
		margin-left: 0;
		margin-top: 10px; /* Чтобы не прилипал к логотипу */
	}
}
/* Контейнер-капсула */
.sidebar-lang-compact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #e2e8f0; /* Светло-серый фон капсулы */
	padding: 4px;
	border-radius: 20px; /* Сильное закругление */
	margin: 20px 20px; /* Отступы от краев сайдбара */
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content; /* Ширина по содержимому, не во весь экран */
	min-width: 140px; /* Но не меньше этого размера */
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center; /* Если сайдбар flex, это выровняет по центру */
}

/* Сами кнопки */
.lang-btn-compact {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1; /* Кнопки делят место поровну */
	border: none;
	background: transparent;
	padding: 6px 12px;
	border-radius: 16px; /* Тоже круглые */
	font-size: 12px;
	font-weight: 700;
	color: #64748b;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Активная кнопка (белая плашка) */
.lang-btn-compact.active {
	background: #ffffff;
	color: #2c3e50;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Легкая тень */
}

/* При наведении */
.lang-btn-compact:hover:not(.active) {
	color: #334155;
}

/* ========================================= */
/* --- ЛЕНДИНГ (HEADER, INTRO) --- */
/* ========================================= */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: #fff;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 1.2rem 0;
}
.header__logo {
	font-family: "Manrope", sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	color: #0f4c81;
	text-decoration: none;
}

.nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 2rem;
}
.nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 2rem;
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav__link {
	color: #2f3840;
	-webkit-transition: 0.3s ease all;
	transition: 0.3s ease all;
	font-weight: 500;
	text-decoration: none;
}
.nav__link:hover {
	color: #0f4c81;
}

.header__auth {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 15px;
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid #eee;
}
.header__auth a {
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 700;
	padding: 10px 20px;
	border-radius: 8px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.header__auth .btn-login-link {
	color: #0f4c81;
	background: transparent;
}
.header__auth .btn-login-link:hover {
	color: #3b9fdf;
}
.header__auth .btn-register-link {
	background-color: #3b9fdf;
	color: #fff;
	-webkit-box-shadow: 0 4px 10px rgba(59, 159, 223, 0.3);
	        box-shadow: 0 4px 10px rgba(59, 159, 223, 0.3);
}
.header__auth .btn-register-link:hover {
	background-color: rgb(32.4210526316, 133.7368421053, 198.5789473684);
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
}

/* --- INTRO --- */
.intro {
	padding-top: 120px;
	min-height: 100vh;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(44, 62, 80, 0.7)), to(rgba(44, 62, 80, 0.6))), url("../images/hero-bg.jpg");
	background: linear-gradient(to bottom, rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.6)), url("../images/hero-bg.jpg");
	/* Чтобы картинка покрывала весь блок и не дублировалась */
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	/* Чтобы на айфонах не дергалось при скролле */
	background-attachment: scroll;
	/* Твои старые отступы и цвет текста */
	padding: 180px 0 100px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.intro__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: start;
	gap: 2.5rem;
	padding: 20px 0;
}
.intro__title {
	font-size: clamp(1.8rem, 8vw, 3.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}
.intro__subtitle {
	max-width: 600px;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.3;
	color: #fff;
}
.intro__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 1.5rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.intro__link {
	display: inline-block;
	margin: 0;
	padding: 1.3rem 2rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	-webkit-transition: 0.3s ease all;
	transition: 0.3s ease all;
	font-weight: 700;
	text-decoration: none;
}
.intro__link:first-child {
	background-color: #fff;
	color: #0f4c81;
}
.intro__link:first-child:hover {
	-webkit-transform: translateY(-3px);
	        transform: translateY(-3px);
}
.intro__link:last-child {
	color: #fff;
}
.intro__link:not(:first-child):hover {
	background: rgba(255, 255, 255, 0.3);
}
.intro__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 800px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 2.5rem;
}
.intro__stats {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.5rem;
}
.intro__stats .intro__text:first-child {
	font-family: "Manrope", sans-serif;
	font-size: 3rem;
	font-weight: 700;
	color: #3b9fdf;
}
.intro__text {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
}

/* --- TEAM (Остальные секции) --- */
.team {
	padding: 6rem 0;
}
.team__grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 25px 1fr 25px 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	max-width: 1200px;
	margin: 40px auto 0;
}
@media (max-width: 1024px) {
	.team__grid {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 768px) {
	.team__grid {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}
.team-card {
	background: #fff;
	border-radius: 12px;
	-webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	border: 1px solid #eee;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.team-card:hover {
	-webkit-transform: translateY(-5px);
	        transform: translateY(-5px);
	border-color: #2c3e50;
}
.team-card__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 20px;
	gap: 15px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
@media (max-width: 1200px) {
	.team-card__header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		text-align: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}
.team-card__photo {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	-o-object-fit: cover;
	   object-fit: cover;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	-o-object-position: top center;
	   object-position: top center;
}
.team-card__info {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.team-card__name {
	margin: 0 0 8px 0;
	font-size: 1.1rem;
	color: #2c3e50;
	font-weight: 700;
}
.team-card__role {
	display: block;
	font-size: 0.85rem;
	color: #3b9fdf;
	font-weight: 600;
	margin-bottom: 10px;
}
.team-card__skills {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 5px;
}
.team-card__skills span {
	font-size: 0.75rem;
	background: #f4f4f4;
	padding: 4px 8px;
	border-radius: 4px;
	border: 1px solid #ddd;
}
@media (max-width: 1200px) {
	.team-card__skills {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
.team-card__body {
	padding: 0 20px 20px 20px;
	color: #444;
	font-size: 0.95rem;
	margin-top: 10px;
}
.team-card--boss {
	grid-column: 1/-1;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#fdfdfd));
	background: linear-gradient(to right, #ffffff, #fdfdfd);
	border: 2px solid #2c3e50;
}
@media (max-width: 768px) {
	.team-card--boss {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		text-align: center;
	}
	.team-card--boss .team-card__image-wrapper {
		width: auto;
		border: none;
		padding: 25px 0 10px 0;
	}
	.team-card--boss .team-card__image-wrapper .team-card__photo {
		width: 100px;
		height: 100px;
		border-radius: 50%;
	}
	.team-card--boss .team-card__content {
		padding: 10px 20px 25px 20px;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}
.team-card--boss .team-card__image-wrapper {
	width: 300px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	border-right: 1px solid #eee;
}
.team-card--boss .team-card__image-wrapper .team-card__photo {
	width: 100%;
	height: 100%;
	border-radius: 0;
}
.team-card--boss .team-card__content {
	padding: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.team-card--boss .team-card__name {
	font-size: 1.8rem;
}

.benefit {
	background-color: #f8fafc;
	padding: 6rem 0;
}
.benefit__content {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}
.benefit__card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: start;
	gap: 1.25rem;
	background: #fff;
	padding: 2.5rem;
	border: 1px solid #e5ebf1;
	border-radius: 20px;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.benefit__card:hover {
	-webkit-transform: translateY(-5px);
	        transform: translateY(-5px);
}
.benefit__card i {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	font-size: 1.5rem;
	border-radius: 12px;
	background: linear-gradient(135deg, #1e6ba8 0%, #3b9fdf 100%);
	color: #fff !important;
}
.benefit__heading {
	font-weight: 500;
	font-size: 1.5rem;
}
.benefit__text {
	color: #5a6c7d;
}

.pricing {
	padding: 6rem 0;
	background-color: #ffffff;
}
.pricing__content {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 5rem;
}
.pricing__card {
	background: #fff;
	padding: 3rem 2rem;
	border-radius: 24px;
	border: 1px solid #e5ebf1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	position: relative;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.pricing__card:hover {
	-webkit-transform: translateY(-5px);
	        transform: translateY(-5px);
}
.pricing__card--featured {
	border: 2px solid #3b9fdf;
	-webkit-transform: scale(1.05);
	        transform: scale(1.05);
	z-index: 2;
}
.pricing__card--featured:hover {
	-webkit-transform: scale(1.05) translateY(-5px);
	        transform: scale(1.05) translateY(-5px);
}
.pricing__card--featured .pricing__btn {
	background: #0f4c81;
	color: #ffffff;
}
.pricing__card--featured .pricing__btn:hover {
	background: #1e6ba8;
}
.pricing__header {
	text-align: center;
	margin-bottom: 2rem;
}
.pricing__name {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0a1e2f;
	margin-bottom: 1rem;
}
.pricing__amount {
	font-size: 3rem;
	font-weight: 800;
	color: #0f4c81;
}
.pricing__currency {
	font-size: 1.1rem;
	color: #5a6c7d;
}
.pricing__features {
	list-style: none;
	margin-bottom: 2.5rem;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.pricing__feature {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 1rem;
	color: #0a1e2f;
}
.pricing__feature i {
	font-size: 1rem;
	color: #0ea471;
}
.pricing__feature--disabled {
	color: #5a6c7d;
	opacity: 0.5;
}
.pricing__feature--disabled i {
	color: #ccc;
}
.pricing__btn {
	width: 100%;
	padding: 1.125rem;
	border-radius: 12px;
	border: 2px solid #0f4c81;
	background: transparent;
	color: #0f4c81;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.pricing__btn:hover {
	background: #0f4c81;
	color: #ffffff;
}
.pricing__badge {
	position: absolute;
	top: -16px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	background: #3b9fdf;
	color: #ffffff;
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	font-weight: 700;
	font-size: 0.875rem;
}

.work {
	padding: 6rem 0;
	background-color: #f8fafc;
}
.work__title {
	text-align: center;
	margin-bottom: 1rem;
}
.work__subtitle {
	text-align: center;
	margin-bottom: 5rem;
	color: #5a6c7d;
}
.work__content {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
}
.work__step {
	position: relative;
	padding: 2rem;
	background: #f7f7f7;
	border-radius: 20px;
}
.work__number {
	font-size: 4rem;
	font-weight: 900;
	color: #0f4c81;
	opacity: 0.1;
	position: absolute;
	top: 10px;
	right: 20px;
}
.work__step-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0a1e2f;
	margin-bottom: 1rem;
}
.work__step-text {
	color: #5a6c7d;
	line-height: 1.6;
}

.footer {
	background-color: #0a1e2f;
	color: #ffffff;
	padding: 5rem 0 2rem;
}
.footer__inner {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 4rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__logo {
	font-family: "Manrope", sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	color: #ffffff;
	text-decoration: none;
	margin-bottom: 1.5rem;
	display: block;
}
.footer__description {
	color: #5a6c7d;
	line-height: 1.6;
}
.footer__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 2rem;
	position: relative;
}
.footer__title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: #3b9fdf;
}
.footer__list {
	list-style: none;
	padding: 0;
}
.footer__link {
	color: #5a6c7d;
	text-decoration: none;
	display: block;
	margin-bottom: 1rem;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer__link:hover {
	color: #ffffff;
}
.footer__contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	color: #5a6c7d;
	-webkit-transition: 0.3s ease all;
	transition: 0.3s ease all;
}
.footer__contact i {
	color: #3b9fdf;
}
.footer__contact:hover {
	-webkit-transform: translateY(-5px);
	        transform: translateY(-5px);
	color: #fff;
}
.footer__contact-link {
	text-decoration: none;
}
.footer__bottom {
	padding-top: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 2rem;
	color: #5a6c7d;
}
.footer__socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 1.5rem;
}
.footer__socials a {
	color: #ffffff;
	font-size: 1.25rem;
	opacity: 0.7;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer__socials a:hover {
	opacity: 1;
	color: #3b9fdf;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 30, 47, 0.8);
	backdrop-filter: blur(5px);
	display: none;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	z-index: 2000;
}
.modal.is-open {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.modal__content {
	background: #ffffff;
	padding: 3rem;
	border-radius: 24px;
	max-width: 450px;
	width: 90%;
	position: relative;
	-webkit-animation: modalFadeIn 0.3s ease-out;
	        animation: modalFadeIn 0.3s ease-out;
}
.modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: #5a6c7d;
}
.modal__title {
	color: #0a1e2f;
	margin-bottom: 1rem;
}
.modal__subtitle {
	margin-bottom: 1rem;
}
.modal__input {
	padding: 1rem;
	border: 1px solid #e5ebf1;
	border-radius: 12px;
	width: 100%;
	margin-bottom: 1rem;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.modal__submit-btn {
	background: #0f4c81;
	color: #ffffff;
	padding: 1rem;
	border: none;
	border-radius: 12px;
	font-weight: 700;
	cursor: pointer;
	width: 100%;
}

@-webkit-keyframes modalFadeIn {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
/* ========================================= */
/* --- ЛИЧНЫЙ КАБИНЕТ (FIXED DESKTOP) --- */
/* ========================================= */
.cabinet-body {
	background-color: #f4f7f6;
	margin: 0;
	font-family: "Inter", sans-serif;
	color: #333;
}

.cabinet-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}

/* --- САЙДБАР (БАЗОВЫЕ СТИЛИ ДЛЯ ПК) --- */
.sidebar {
	width: 280px;
	background: #0a1e2f;
	color: white;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 30px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	/* ФИКСИРОВАННАЯ ПОЗИЦИЯ НА ПК */
	position: fixed;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	/* Скролл, если меню слишком длинное */
	overflow-y: auto;
	/* Сброс анимаций для ПК */
	-webkit-transform: none !important;
	        transform: none !important;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.sidebar__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 50px;
}
.sidebar__logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: white;
}
.sidebar__logo span {
	color: #3b9fdf;
}
.sidebar__close {
	display: none; /* Скрыт на ПК */
}
.sidebar__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 10px;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.sidebar__link {
	color: #a0b3c6;
	text-decoration: none;
	font-size: 1.1rem;
	padding: 12px 15px;
	border-radius: 10px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 12px;
	cursor: pointer;
}
.sidebar__link:hover, .sidebar__link.active {
	background: rgba(255, 255, 255, 0.1);
	color: white;
}
.sidebar__logout {
	background: transparent;
	border: 1px solid rgba(231, 76, 60, 0.5);
	color: #e74c3c;
	padding: 12px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 10px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	margin-top: 20px;
}
.sidebar__logout:hover {
	background: #e74c3c;
	color: white;
}

/* --- ОСНОВНОЙ КОНТЕНТ (БАЗОВЫЕ СТИЛИ ДЛЯ ПК) --- */
.main-content {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	/* ОТСТУП СЛЕВА РАВНЫЙ ШИРИНЕ САЙДБАРА */
	margin-left: 280px;
	padding: 40px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: calc(100% - 280px); /* Чтобы точно не вылезало */
}

.top-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 40px;
}
.top-bar__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 15px;
}
.top-bar h1 {
	font-size: 2rem;
	margin: 0 0 5px 0;
	color: #2c3e50;
}
.top-bar p {
	color: #7f8c8d;
	margin: 0;
}
.top-bar .user-avatar {
	font-size: 3rem;
	color: #ddd;
}

/* --- СЕТКА ДАШБОРДА --- */
.dashboard-grid {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	width: 100%;
}

.dash-card {
	background: white;
	border-radius: 20px;
	padding: 30px;
	-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	border: 1px solid #eee;
}
.dash-card__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 25px;
}
.dash-card__header h3 {
	margin: 0;
	font-size: 1.2rem;
	color: #2c3e50;
}

/* --- ЛОГИКА ВКЛАДОК --- */
.section-content {
	display: none;
	-webkit-animation: fadeIn 0.4s ease;
	        animation: fadeIn 0.4s ease;
}

.section-content.active {
	display: block;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
		-webkit-transform: translateY(10px);
		        transform: translateY(10px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		-webkit-transform: translateY(10px);
		        transform: translateY(10px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
/* --- ЭЛЕМЕНТЫ КАБИНЕТА (Подписка, Юрист и т.д.) --- */
.status-badge {
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	background: #eee;
	color: #777;
}
.status-badge.active {
	background: rgba(46, 204, 113, 0.15);
	color: #27ae60;
}

.plan-name {
	font-size: 1.8rem;
	font-weight: 800;
	color: #2c3e50;
	margin-bottom: 15px;
}

.plan-dates {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	color: #7f8c8d;
	font-size: 0.95rem;
	margin-bottom: 15px;
}

.days-left {
	color: #3b9fdf;
	font-weight: 700;
}

.progress-container {
	height: 8px;
	background: #f0f0f0;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 20px;
}

.progress-bar {
	height: 100%;
	background: -webkit-gradient(linear, left top, right top, from(#3b9fdf), to(#2c3e50));
	background: linear-gradient(90deg, #3b9fdf, #2c3e50);
	border-radius: 4px;
	-webkit-transition: width 1s ease;
	transition: width 1s ease;
}

.btn-kaspi {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background: #f14635;
	color: white !important;
	text-decoration: none;
	padding: 15px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.1rem;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	-webkit-box-shadow: 0 5px 15px rgba(241, 70, 53, 0.3);
	        box-shadow: 0 5px 15px rgba(241, 70, 53, 0.3);
}
.btn-kaspi:hover {
	background: #d93826;
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
}

.lawyer-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
}

.lawyer-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
	background: #eee;
}

.lawyer-info h4 {
	margin: 0 0 5px 0;
	font-size: 1.1rem;
}
.lawyer-info p {
	margin: 0 0 15px 0;
	color: #7f8c8d;
	font-size: 0.9rem;
}

.btn-contact {
	background: #25D366;
	color: white;
	border: none;
	padding: 8px 16px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.9rem;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.btn-contact:hover {
	background: #2c3e50;
}

.stats-grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}

.stat-item {
	text-align: center;
}

.stat-num {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: #2c3e50;
}

.stat-label {
	color: #95a5a6;
	font-size: 0.9rem;
}

/* Кнопка открытия меню (Скрыта на ПК) */
.sidebar-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #2c3e50;
	cursor: pointer;
}

/* Затемнение фона (Скрыто на ПК) */
.sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	display: none;
	backdrop-filter: blur(2px);
}
.sidebar-overlay.active {
	display: block;
}

/* ========================================= */
/* --- ДИЗАЙН ВКЛАДКИ ДОКУМЕНТЫ (DOCS) --- */
/* ========================================= */
#tab-docs {
	padding: 10px;
}
#tab-docs .docs-header {
	margin-bottom: 30px;
}
#tab-docs .docs-header h2 {
	font-size: 1.8rem;
	margin-bottom: 8px;
}
#tab-docs .upload-card {
	background: #fff;
	padding: 25px;
	border-radius: 20px;
	border: 2px solid #edf2f7;
	margin-bottom: 40px;
}
#tab-docs .upload-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 25px;
}
#tab-docs .upload-form .full-width {
	width: 100%;
}
#tab-docs .upload-form .form-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
}
@media (max-width: 768px) {
	#tab-docs .upload-form .form-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: stretch;
		    -ms-flex-align: stretch;
		        align-items: stretch;
	}
}
#tab-docs .form-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 10px;
}
#tab-docs .form-group label {
	font-weight: 800;
	color: #2c3e50;
	font-size: 0.85rem;
	text-transform: uppercase;
}
#tab-docs .form-group input[type=text] {
	padding: 14px 18px;
	border: 2px solid #cbd5e1;
	border-radius: 12px;
	font-size: 1rem;
}
#tab-docs .form-group input[type=text]:focus {
	border-color: #3b9fdf;
	outline: none;
}
#tab-docs .file-input-wrapper {
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
@media (max-width: 768px) {
	#tab-docs .file-input-wrapper {
		width: 100%;
	}
}
#tab-docs .file-input-wrapper .file-custom-btn {
	padding: 12px 20px;
	border: 2px dashed #3b9fdf;
	border-radius: 10px;
	color: #3b9fdf;
	font-weight: 700;
	font-size: 0.9rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 8px;
}
#tab-docs .file-input-wrapper input[type=file] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
#tab-docs .btn-submit-docs {
	background: #2c3e50;
	color: #fff;
	border: none;
	padding: 14px 25px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 0.9rem;
	cursor: pointer;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	height: 48px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 8px;
}
#tab-docs .btn-submit-docs:hover {
	background: #3b9fdf;
}
#tab-docs {
	/* --- ИСТОРИЯ И ССЫЛКИ --- */
}
#tab-docs .docs-history table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 12px;
	table-layout: fixed;
}
#tab-docs .docs-history table th, #tab-docs .docs-history table td {
	padding: 15px 25px;
	text-align: left;
	word-wrap: break-word;
}
#tab-docs .docs-history table th {
	font-weight: 800;
	color: #94a3b8;
	font-size: 0.85rem;
	text-transform: uppercase;
}
#tab-docs .docs-history table {
	/* Колонки */
}
#tab-docs .docs-history table th:nth-child(1), #tab-docs .docs-history table td:nth-child(1) {
	width: 15%;
}
#tab-docs .docs-history table th:nth-child(2), #tab-docs .docs-history table td:nth-child(2) {
	width: 25%;
}
#tab-docs .docs-history table th:nth-child(3), #tab-docs .docs-history table td:nth-child(3) {
	width: 35%;
}
#tab-docs .docs-history table th:nth-child(4), #tab-docs .docs-history table td:nth-child(4) {
	width: 25%;
}
#tab-docs .docs-history table td {
	background: #fff;
	border-top: 1px solid #edf2f7;
	border-bottom: 1px solid #edf2f7;
	vertical-align: middle;
}
#tab-docs .docs-history table td:first-child {
	border-left: 1px solid #edf2f7;
	border-radius: 12px 0 0 12px;
}
#tab-docs .docs-history table td:last-child {
	border-right: 1px solid #edf2f7;
	border-radius: 0 12px 12px 0;
}
#tab-docs .docs-history table td {
	/* --- УБИРАЕМ СИНИЙ ЦВЕТ У ВСЕХ ССЫЛОК В ТАБЛИЦЕ --- */
}
#tab-docs .docs-history table td a {
	text-decoration: none !important;
	color: inherit;
}
#tab-docs .docs-history {
	/* КЛАСС ДЛЯ ДОКУМЕНТА КЛИЕНТА */
}
#tab-docs .docs-history .doc-name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
	color: #2c3e50 !important;
	font-weight: 700;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
#tab-docs .docs-history .doc-name i {
	color: #3b9fdf;
}
#tab-docs .docs-history .doc-name:hover {
	color: #3b9fdf !important;
}
#tab-docs .docs-history {
	/* КНОПКА ОТВЕТА ЮРИСТА (Которую мы создали в JS) */
}
#tab-docs .docs-history .btn-download-reply {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 8px;
	background: #16a34a !important;
	color: #fff !important;
	padding: 10px 15px;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-top: 5px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
#tab-docs .docs-history .btn-download-reply:hover {
	background: #15803d !important;
	-webkit-transform: translateY(-1px);
	        transform: translateY(-1px);
}
@media (max-width: 768px) {
	#tab-docs .docs-history table {
		table-layout: auto;
	}
	#tab-docs .docs-history table, #tab-docs .docs-history thead, #tab-docs .docs-history tbody, #tab-docs .docs-history th, #tab-docs .docs-history td, #tab-docs .docs-history tr {
		display: block;
	}
	#tab-docs .docs-history thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	#tab-docs .docs-history tr {
		background: #fff;
		border: 2px solid #edf2f7;
		border-radius: 15px;
		margin-bottom: 20px;
		padding: 15px;
	}
	#tab-docs .docs-history td {
		border: none !important;
		padding: 10px 0 !important;
		position: relative;
		padding-left: 50% !important;
		text-align: right;
		font-size: 0.9rem;
		width: 100% !important;
	}
	#tab-docs .docs-history td:before {
		content: attr(data-label);
		position: absolute;
		left: 0;
		font-weight: 800;
		color: #94a3b8;
		text-transform: uppercase;
		font-size: 0.75rem;
	}
}

/* Статусы (вне таба, если нужно) */
.status-pill {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 8px;
	padding: 8px 15px;
	border-radius: 10px;
	font-size: 0.85rem;
	font-weight: 700;
	white-space: nowrap;
}
.status-pill.waiting {
	background: #fff7ed;
	color: #c2410c;
}
.status-pill.ready {
	background: #f0fdf4;
	color: #16a34a;
}

/* ========================================================= */
/* --- АДАПТИВ (ЕДИНАЯ ТОЧКА ПЕРЕЛОМА: 992px) --- */
/* ========================================================= */
@media (max-width: 992px) {
	/* --- ДЛЯ КАБИНЕТА --- */
	/* Убираем отступ, так как меню спрятано */
	.main-content {
		margin-left: 0;
		padding: 20px;
		width: 100%;
	}
	/* Сайдбар: ПРЯЧЕМ */
	.sidebar {
		-webkit-transform: translateX(-100%) !important;
		        transform: translateX(-100%) !important; /* Принудительно прячем */
		width: 280px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
		        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
	}
	/* При классе active - ВЫЕЗЖАЕТ */
	.sidebar.active {
		-webkit-transform: translateX(0) !important;
		        transform: translateX(0) !important;
	}
	/* Показываем кнопки управления */
	.sidebar-toggle {
		display: block;
	}
	.sidebar__close {
		display: block;
		background: transparent;
		border: none;
		color: white;
		font-size: 1.5rem;
	}
	/* Скрываем аватарку */
	.user-avatar {
		display: none;
	}
	.top-bar h1 {
		font-size: 1.2rem;
	}
	/* --- ДЛЯ ЛЕНДИНГА --- */
	/* Бургер */
	.header__burger {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		width: 30px;
		height: 18px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
		position: relative;
		z-index: 1005;
	}
	.header__burger span {
		width: 100%;
		height: 2px;
		background: #0f4c81;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.header__burger.active span:nth-child(1) {
		-webkit-transform: translateY(8px) rotate(45deg);
		        transform: translateY(8px) rotate(45deg);
	}
	.header__burger.active span:nth-child(2) {
		opacity: 0;
	}
	.header__burger.active span:nth-child(3) {
		-webkit-transform: translateY(-8px) rotate(-45deg);
		        transform: translateY(-8px) rotate(-45deg);
	}
	/* Навигация */
	.nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f0f4f8));
		background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
		padding: 100px 30px;
		-webkit-transition: 0.4s;
		transition: 0.4s;
		z-index: 1000;
		-webkit-box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
		        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		overflow-y: auto;
	}
	.nav.active {
		right: 0;
	}
	.nav__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 2rem;
		width: 100%;
	}
	.nav__link {
		font-size: 1.3rem;
		font-weight: 700;
		color: #0f4c81;
		text-transform: uppercase;
		letter-spacing: 1px;
	}
	/* Кнопки входа */
	.header__auth {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		width: 100%;
		margin-left: 0;
		padding-left: 0;
		border-left: none;
		margin-top: 40px;
		padding-top: 30px;
		border-top: 1px solid rgba(0, 0, 0, 0.1);
		gap: 15px;
	}
	.header__auth a {
		width: 100%;
		text-align: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		font-size: 1.1rem;
	}
	.intro__info {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 2rem 1fr;
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}
@media (max-width: 768px) {
	.benefit__content, .pricing__content, .work__content, .footer__inner {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
	.intro__info {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		text-align: center;
	}
	.intro__btn {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		width: 100%;
	}
	.intro__link {
		text-align: center;
	}
	.pricing__card--featured {
		-webkit-transform: none !important;
		        transform: none !important;
		margin: 0;
	}
	.intro {
		/* Убираем картинку, оставляем только солидный градиент */
		background: linear-gradient(135deg, #0a365c 0%, #041324 100%) !important;
		/* Можно чуть уменьшить отступы, чтобы герой не занимал 2 экрана */
		padding: 120px 0 60px;
		min-height: auto;
	}
}
@media (max-width: 480px) {
	.starting--title {
		font-size: 1.8rem;
	}
	.intro__title {
		font-size: 2.2rem;
	}
	.footer__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
	.benefit__card, .pricing__card {
		padding: 20px;
	}
	.intro__btn {
		gap: 10px;
	}
	.intro__btn .intro__link {
		padding: 15px;
		font-size: 0.9rem;
	}
}