@import url(https://fonts.googleapis.com/css?family=Manrope:200,300,regular,500,600,700,800);
@import url(https://fonts.googleapis.com/css?family=Space+Grotesk:300,regular,500,600,700);

:root {
	--header-height: 70px;
	--color-bg: #fdf6f0;
	--bg-color-light: #fffdf9;
	--color-text: #3a3a3a;
	--color-text-active: #ff6b35;
	--color-title: #1e1e1e;
	--color-accent: #ff4d00;

	--accent-color-faq: #fff1e6;

	--main-bg: #fffaf5;
	--card-bg: #fef0e6;
	--accent: #e65c00;
	--accent-light: #ffe8d9;
	--text-dark: #2c2c2c;
	--text-light: #9e9e9e;
	--border-color: #ffd9c2;
	--shadow: 0 8px 24px rgba(255, 107, 53, 0.1);

	--radius: 10px;

	--container-width: 1240px;
	--padding: 15px;

	--font-main: 'Manrope', sans-serif;
	--font-second: 'Space Grotesk', sans-serif;
}

/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

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

/* Links */

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

/* Common */

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-second);
}

ul,
ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

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

address {
	font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
}

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

button,
input[type='submit'] {
	display: inline-block;
	box-shadow: none;
	background-color: transparent;
	background: none;
	cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
	outline: none;
}

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

label {
	cursor: pointer;
}

legend {
	display: block;
}

input[type='file'] {
	max-width: 100%;
}

html,
body {
	height: 100%;
	font-family: Arial, sans-serif;
	background-color: var(--bg-color-light);
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-main);
}

.wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding-top: 70px;
}

.main {
	flex: 1 0 auto;
}

.container {
	max-width: 1280px;
	padding: 0 10px;
	margin: 0 auto;
	height: 100%;
}

/* HEADER */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	background-color: var(--color-bg);
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.header__inner {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 70px;
	width: 100%;
}

.nav {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: start;
}

.nav-list {
	display: flex;
	justify-content: space-evenly;
	gap: 30px;
	list-style: none;
}

.nav-link {
	text-decoration: none;
	color: var(--color-text);
	font-weight: 500;
	position: relative;
	transition: var(--transition);
	display: block;
	padding: 5px;
	border-radius: 5px;
}
.nav-link.active {
	color: var(--color-text-active);
}

/* Бургер меню */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--color-text);
	border-radius: 3px;
	transition: var(--transition);
}

/* Адаптивность */
@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav-list {
		position: absolute;
		top: var(--header-height);
		right: 0;
		background-color: var(--color-bg);
		flex-direction: column;
		width: 100%;
		padding: 20px;
		gap: 20px;
		transform: translateX(100%);
		opacity: 0;
		pointer-events: none;
		transition: var(--transition);
	}

	.nav-list.active {
		transform: translateX(0%);
		opacity: 1;
		pointer-events: all;
	}
}

/* Footer */

.footer {
	background-color: #0a0f1a;
	color: #fff;
	flex-shrink: 0; /* не сжимается */
}

.footer .container {
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

.footer-links ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #2454f1;
}

.footer-bottom {
	margin-top: 10px;
	font-size: 14px;
	color: #eec5c5;
	text-align: center;
}

@media (max-width: 768px) {
	.footer .container {
		display: flex;
		flex-direction: column;
	}
}

/* ==================================================== FAQ */
.faq {
	color: #222;
	background-color: #f1f4ff;
	min-height: calc(100vh - var(--header-height) - 62px);
	padding: 70px 24px;
}

.faq__title {
	font-size: 2.25rem;
	text-align: center;
	margin-bottom: 48px;
	color: #3b3f99;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.faq__item {
	margin-bottom: 28px;
	border-bottom: 1px solid #c5cae9;
	padding: 20px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.faq__item:hover {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.faq__question {
	font-size: 1.25rem;
	margin-bottom: 12px;
	color: #283593;
	font-weight: 600;
}

.faq__answer {
	font-size: 1.05rem;
	color: #37474f;
	line-height: 1.7;
}

.faq-footer {
	margin-top: 56px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1rem;
	color: #37474f;
}

.privacy-link {
	color: #5e35b1;
	text-decoration: none;
	border-bottom: 1px dashed #5e35b1;
	transition: color 0.3s ease;
}

.privacy-link:hover {
	color: #1a237e;
}

/* PRIVaCY ==================================================================== */
.privacy {
	background: linear-gradient(to right, #1a1a2e, #16213e);
	color: #f1f1f1;
	padding: 4rem 2rem;
	line-height: 1.8;
}

.privacy__header {
	background: rgba(20, 20, 40, 0.7);
	backdrop-filter: blur(12px);
	border: 1px solid #2c2c54;
	padding: 1rem 1.5rem;
	text-align: center;
	border-radius: 16px;
	margin-bottom: 3rem;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.privacy__title {
	font-size: 2.2rem;
	font-weight: 800;
	color: #00f5d4;
}

.privacy__intro {
	font-size: 1.15rem;
	color: #cdd6f4;
}

.privacy__container {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
}

.privacy__sidebar {
	flex: 1 1 260px;
	background-color: #0f0f1c;
	border: 1px solid #2b2b3c;
	border-radius: 14px;
	padding: 1.75rem;
	position: sticky;
	top: 80px;
	max-height: calc(100vh - 140px);
	overflow-y: auto;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 6px 16px rgba(0, 0, 0, 0.6);
}

.privacy__nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.privacy__nav li + li {
	margin-top: 1.2rem;
}

.privacy__nav a {
	color: #c5c5c5;
	text-decoration: none;
	font-weight: 600;
	display: block;
	padding: 0.6rem 1rem;
	border-radius: 8px;
	transition: background 0.3s ease, color 0.3s ease;
}

.privacy__nav a:hover,
.privacy__nav a:focus {
	background-color: #00f5d420;
	color: #00f5d4;
}

.privacy__content {
	flex: 3 1 640px;
	background-color: #1c1c2e;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
	border: 1px solid #2d2d3c;
}

.privacy__content section + section {
	margin-top: 3rem;
}

.privacy__content h2 {
	font-size: 1.9rem;
	color: #00f5d4;
	border-left: 6px solid #00f5d4;
	padding-left: 1.2rem;
	margin-bottom: 1.2rem;
}

.privacy__content h3 {
	font-size: 1.4rem;
	color: #ffffff;
	margin-top: 2.2rem;
	margin-bottom: 1rem;
}

.privacy__content ul {
	list-style: disc;
	margin-left: 2rem;
	color: #e0e0e0;
}

.privacy__content address {
	font-style: normal;
	color: #b0b0b0;
	margin-top: 2rem;
	font-size: 1rem;
}

#contact-us a {
	color: #00f5d4;
	text-decoration: underline;
}

section[id] {
	scroll-margin-top: 100px;
}

@media (max-width: 768px) {
	.privacy {
		padding: 2.5rem 1rem;
	}

	.privacy__header {
		padding: 2rem 1rem;
		margin-bottom: 2rem;
	}

	.privacy__title {
		font-size: 1.9rem;
	}

	.privacy__intro {
		font-size: 1.05rem;
	}

	.privacy__container {
		flex-direction: column;
	}

	.privacy__sidebar {
		position: static;
		max-height: none;
		box-shadow: none;
	}

	.privacy__content {
		padding: 2.5rem 1.2rem;
	}

	.privacy__content h2 {
		font-size: 1.5rem;
	}

	.privacy__content h3 {
		font-size: 1.2rem;
	}
}

/* Enhanced Contacts Section =====================================================*/
.contact-section {
	padding: 4rem 2rem;
	background: linear-gradient(135deg, #f3f0ff, #fefefe);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	color: #2d1e70;
}

.contact-section__container {
	max-width: 1140px;
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 2rem;
}

.contact-section__card {
	flex: 1 1 48%;
	background: #fafafa;
	border: 2px solid #c8baff;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 14px 36px rgba(50, 50, 93, 0.08);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-section__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(50, 50, 93, 0.12);
}

.contact-section__image-wrapper {
	flex: 1 1 100%;
	border-radius: 20px;
	overflow: hidden;
	border: 4px solid #b39ddb;
	aspect-ratio: 2/1;
}

.contact-section__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: grayscale(0.1) brightness(0.95);
	transition: transform 0.3s ease;
}

.contact-section__image:hover {
	transform: scale(1.04);
}

.contact-section__heading {
	font-size: 2.2rem;
	color: #4527a0;
	font-weight: 800;
	margin-bottom: 1.2rem;
}

.contact-section__description {
	font-size: 1.2rem;
	line-height: 1.75;
	color: #424242;
	margin-bottom: 1.75rem;
}

.contact-section__subtitle {
	font-size: 1.15rem;
	color: #6a1b9a;
	margin-bottom: 1rem;
	text-transform: capitalize;
	font-weight: 600;
}

.contact-section__block {
	font-size: 1rem;
	color: #5d5d5d;
	line-height: 1.7;
	margin-bottom: 1.2rem;
}

.contact-section__block a {
	color: #7e57c2;
	text-decoration: none;
	border-bottom: 1px dashed #7e57c2;
	transition: color 0.3s ease;
}

.contact-section__socials {
	margin-top: 2.2rem;
	display: flex;
	gap: 0.85rem;
	flex-wrap: wrap;
}

.contact-section__socials a {
	background-color: #9575cd;
	color: #fff;
	padding: 0.65rem 1.4rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.contact-section__socials a:hover {
	background-color: #512da8;
}

.link-wrap {
	margin-top: 2.75rem;
	text-align: left;
}

.link-page {
	background-color: #d1c4e9;
	color: #311b92;
	padding: 10px 26px;
	font-size: 1rem;
	font-weight: bold;
	border-radius: 8px;
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 0.3s ease;
}

.link-page:hover {
	background-color: #b39ddb;
}

@media (max-width: 992px) {
	.contact-section__container {
		flex-direction: column;
	}
	.contact-section__heading {
		font-size: 1.75rem;
	}
	.contact-section__card {
		flex: 1 1 100%;
	}
}

/* ================================================================================= SECTIONS */
img {
	width: 100%;
	max-width: 450px;
	display: block;
	margin: 0 auto;
}
.binance-advanced {
	padding: 60px 20px;
	background-color: #ffffff;
	color: #1e1e1e;
}

.binance-advanced__container {
	max-width: 1200px;
	margin: 0 auto;
}

.binance-advanced__title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 30px;
	text-align: center;
}

.binance-advanced__image-block {
	text-align: center;
	margin-bottom: 30px;
}

.binance-advanced__image {
	height: auto;
	border-radius: 12px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.binance-advanced__subtitle {
	font-size: 1.125rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 40px;
	color: #3a3a3a;
}

.binance-advanced__heading {
	font-size: 1.5rem;
	font-weight: 600;
	margin-top: 40px;
	margin-bottom: 20px;
	color: #0b64fe;
}

.binance-advanced__subheading {
	font-size: 1.25rem;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 15px;
	color: #0b64fe;
}

.binance-advanced__text {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 20px;
	color: #444;
}

/* Адаптивность */
@media (max-width: 768px) {
	.binance-advanced__title {
		font-size: 1.5rem;
	}

	.binance-advanced__subtitle {
		font-size: 1rem;
	}

	.binance-advanced__heading,
	.binance-advanced__subheading {
		font-size: 1.2rem;
	}
}
.binance-options {
	padding: 60px 20px;
	background-color: #f5f5f5;
}

.binance-options__container {
	max-width: 1000px;
	margin: 0 auto;
}

.binance-options__title {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
	color: #1e1e1e;
}

.binance-options__image-wrapper {
	text-align: center;
	margin-bottom: 40px;
}

.binance-options__image {
	height: auto;
	display: inline-block;
}

.binance-options__block {
	margin-bottom: 40px;
	background-color: #ffffff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.binance-options__subtitle {
	font-size: 24px;
	margin-bottom: 20px;
	color: #2b2b2b;
}

.binance-options__text {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
	color: #333333;
}
.institutional {
	padding: 40px 20px;
	background-color: #f9f9f9;
	color: #222;
}

.institutional__container {
	max-width: 1200px;
	margin: 0 auto;
}

.institutional__block {
	text-align: center;
	margin-bottom: 40px;
}

.institutional__title {
	font-size: 32px;
	margin-bottom: 20px;
}

.institutional__section {
	margin-bottom: 40px;
}

.institutional__subtitle {
	font-size: 24px;
	margin-bottom: 15px;
	color: #111;
}

.institutional__text {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
}
.binance-lending {
	position: relative;
	padding: 80px 20px;
	color: #fff;
	background: linear-gradient(120deg, #0b0f1a, #1c2431);
	overflow: hidden;
}

.binance-lending__bg::before {
	content: '';
	position: absolute;
	top: -10%;
	left: -10%;
	width: 120%;
	height: 120%;
	background: url('./../img/1.jpg') center/cover no-repeat;
	opacity: 0.05;
	z-index: 0;
}

.binance-lending__container {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	z-index: 1;
}

.binance-lending__title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 40px;
	text-align: center;
}

.binance-lending__block {
	margin-bottom: 60px;
}

.binance-lending__image {
	width: 100%;
	max-width: 600px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	margin-bottom: 24px;
}

.binance-lending__subtitle {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

.binance-lending__text {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 16px;
}

@media (min-width: 768px) {
	.binance-lending__block {
		display: flex;
		gap: 40px;
		align-items: flex-start;
	}

	.binance-lending__image {
		flex: 1;
		margin-bottom: 0;
	}

	.binance-lending__content {
		flex: 2;
	}
}

.binance-research {
	padding: 80px 20px;
	background: linear-gradient(180deg, #f9fbfc 0%, #eef3f7 100%);
}

.binance-research__container {
	max-width: 1200px;
	margin: 0 auto;
}

.binance-research__title {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
	color: #0b0c0d;
}

.binance-research__image {
	display: block;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 40px;
	border-radius: 12px;
}

.binance-research__block {
	margin-bottom: 60px;
}

.binance-research__subtitle {
	font-size: 1.5rem;
	font-weight: 600;
	color: #1e2a37;
	margin-bottom: 20px;
}

.binance-research__text {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
	margin-bottom: 16px;
}

@media (max-width: 768px) {
	.binance-research {
		padding: 40px 15px;
	}

	.binance-research__title {
		font-size: 1.5rem;
	}

	.binance-research__subtitle {
		font-size: 1.25rem;
	}
}
