:root {
	--header-height: 70px;
	--bg-color: #0b0b0b;
	--bg-color-light: #1c1c1c;
	--bg-dark: #000000;
	--accent-color: #f3ba2f;

	--text-color: #f0f0f0;

	--faq-bg: #1c1c1c;
	--faq-text: #e0b24a;
	--faq-accent: #f3ba2f;
	--faq-border: #f3ba2f;
	--faq-radius: 1.5rem;
	--faq-shadow: rgba(243, 186, 47, 0.3);

	--bg-gradient-dark: linear-gradient(135deg, #0b0b0b 0%, #1c1c1c 50%, #000000 100%);

	--color-primary: #f3ba2f;
	--color-accent: #ffb700;
	--color-light: #f7c948;
	--color-text: #f0f0f0;
	--border-radius: 1rem;
	--shadow: 0 15px 30px rgba(79, 143, 255, 0.3);

	/* Анимации */
	--transition: all 0.3s ease-in-out;

	--font-main: 'Montserrat', sans-serif;
	--font-second: 'Merriweather', 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;
	font-family: var(--font-second);
}

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; /* чтобы контент не ушел под фиксированный header */
}

/* main занимает всё свободное пространство */
.main {
	flex: 1 0 auto; /* растягиваем main, чтобы footer ушел вниз */
}

.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(--bg-color);
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.header__inner {
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
	align-items: center;
	height: 70px;
	width: 100%;
}

/* Навигация */
.nav {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

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

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

.nav-link:hover {
	background: var(--color-light);
}
.nav-link.active {
	background: var(--bg-color-light);
	color: var(--color-primary);
}
/* Бургер меню */
.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(--text-color);
	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(--bg-color);
		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 {
	background-color: #f9f9f9;
	padding: 60px 20px;
}

.faq-title {
	font-size: 32px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 40px;
	color: #111;
}

.faq__item {
	margin-bottom: 16px;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
	background-color: #fff;
	transition: box-shadow 0.3s ease;
}

.faq__item[open] {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq__question {
	padding: 16px 20px;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
	background-color: #f1f1f1;
	color: #222;
	position: relative;
}

.faq__question::after {
	content: '+';
	font-size: 22px;
	position: absolute;
	right: 20px;
	top: 16px;
	transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
	transform: rotate(45deg);
}

.faq__answer {
	padding: 16px 20px;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

/* Адаптивность */
@media (max-width: 768px) {
	.faq__title {
		font-size: 26px;
		margin-bottom: 30px;
	}

	.faq__question {
		font-size: 16px;
		padding: 14px 16px;
	}

	.faq__answer {
		font-size: 15px;
		padding: 14px 16px;
	}
}

@media (max-width: 480px) {
	.faq__title {
		font-size: 22px;
	}

	.faq__question {
		font-size: 15px;
		padding: 12px 14px;
	}

	.faq__answer {
		font-size: 14px;
		padding: 12px 14px;
	}
}
.site-nav {
	text-align: center;
	padding: 20px 30px;
	background-color: #e6ebf8;
	color: #3a3a3a;
	border-radius: 30px;
	max-width: 540px;
	margin: 1.5rem auto;
	box-shadow: 0 8px 24px rgba(58, 58, 58, 0.1);
	font-weight: 600;
	letter-spacing: 0.1em;
	font-size: 18px;
	border: 1px solid #b0c4f9;
}

.nav-list-faq {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.site-nav .nav-list-faq a {
	color: #536dfe;
	text-decoration: none;
	padding: 8px 18px;
	border-radius: 14px;
	transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
	font-size: 16px;
	font-weight: 700;
	box-shadow: inset 0 0 0 2px #536dfe;
}

.site-nav .nav-list-faq a:hover,
.site-nav .nav-list-faq a:focus {
	background-color: #536dfe;
	color: #fff;
	outline: none;
	box-shadow: 0 4px 15px rgba(83, 109, 254, 0.7);
}

.flex-end {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 16px;
	margin: 24px 0;
	color: #536dfecc;
	font-weight: 700;
	font-style: italic;
}

@media (max-width: 768px) {
	.site-nav {
		padding: 16px 22px;
		font-size: 16px;
		max-width: 100%;
		border-radius: 22px;
	}
	.flex-end {
		font-size: 14px;
		justify-content: center;
		margin: 18px 0;
	}
	.nav-list-faq {
		justify-content: center;
		gap: 22px;
	}
	.faq-title {
		font-size: 1.4rem;
	}
}

/* PRIVaCY */
.privacy {
	color: #222;
	padding: 3rem 2rem;
	background: linear-gradient(135deg, #1e3c50, #39687e);
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.privacy__header {
	background: #ffffffdd;
	padding: 1.5rem 1.2rem;
	text-align: center;
	border-radius: 14px;
	margin-bottom: 2.5rem;
	box-shadow: 0 4px 10px rgba(57, 104, 126, 0.25);
	backdrop-filter: blur(8px);
}

.privacy__title {
	font-size: 2rem;
	font-weight: 700;
	color: #2a475e;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.privacy__intro {
	font-size: 1.3rem;
	color: #4a6f8c;
	margin-top: 0.5rem;
	font-weight: 500;
	line-height: 1.5;
}

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

.privacy__sidebar {
	flex: 1 1 280px;
	background: #fefefe;
	border: 1px solid #b0c7db;
	padding: 1.5rem 1.25rem;
	border-radius: 14px;
	position: sticky;
	top: 80px;
	max-height: calc(100vh - 150px);
	overflow-y: auto;
	box-shadow: 0 4px 12px rgba(57, 104, 126, 0.15);
}

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

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

.privacy__nav li {
	margin-bottom: 1rem;
}

.privacy__nav a {
	color: #2a475e;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease, transform 0.2s ease;
	border-bottom: 2px solid transparent;
	padding-bottom: 2px;
	display: inline-block;
}

.privacy__nav a:hover,
.privacy__nav a:focus {
	color: #1b2f43;
	border-color: #39687e;
	transform: translateX(4px);
	outline: none;
}

.privacy__content {
	flex: 3 1 640px;
	background: #fff;
	padding: 2rem 2.5rem;
	border-radius: 18px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.privacy__content section {
	margin-bottom: 2rem;
}

.privacy__content h2 {
	font-size: 1.8rem;
	margin-bottom: 1.25rem;
	color: #2a475e;
	font-weight: 700;
	border-left: 4px solid #39687e;
	padding-left: 1rem;
}

.privacy__content h3 {
	font-size: 1.3rem;
	margin-top: 1.5rem;
	color: #4a6f8c;
	font-weight: 600;
}

.privacy__content ul {
	margin-left: 2rem;
	padding-left: 0;
	list-style-type: disc;
	color: #555;
	line-height: 1.6;
}

.privacy__content address {
	font-style: normal;
	color: #666;
	margin: 1.5rem 0 0 0;
	font-weight: 500;
}

@media (max-width: 768px) {
	.privacy {
		padding: 2rem 1rem;
		border-radius: 12px;
	}

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

	.privacy__title {
		font-size: 1.5rem;
	}

	.privacy__intro {
		font-size: 1.1rem;
	}

	.privacy__container {
		flex-direction: column;
		gap: 1.5rem;
	}

	.privacy__sidebar {
		position: static;
		max-height: none;
		box-shadow: none;
		padding: 1rem;
		border-radius: 12px;
	}

	.privacy__content {
		padding: 1.5rem 1.5rem;
		border-radius: 12px;
	}

	.privacy__content h2 {
		font-size: 1.4rem;
		padding-left: 0.8rem;
	}

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

/* Enhanced Contacts Section =====================================================*/

.contact-section {
	padding: 5rem 2rem;
	background-color: #f8fafc;
	min-height: 70vh;
	display: grid;
	place-items: center;
	color: #1e293b;
}

.contact-section__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	max-width: 1000px;
	width: 100%;
}

.contact-section__card {
	background: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
	display: grid;
	gap: 1.5rem;
	transition: box-shadow 0.3s ease;
}

.contact-section__card:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.contact-section__image-wrapper {
	width: 100%;
	overflow: hidden;
	border-radius: 10px;
	max-width: 500px;
}

.contact-section__image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.4s ease;
}

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

.contact-section__heading {
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #0f172a;
}

.contact-section__description {
	font-size: 1rem;
	line-height: 1.7;
	color: #475569;
}

.contact-section__subtitle {
	font-size: 1.05rem;
	font-weight: 500;
	color: #334155;
}

.contact-section__block {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #64748b;
}

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

.contact-section__socials a {
	display: inline-block;
	padding: 0.6rem 1.2rem;
	background-color: #e2e8f0;
	color: #1e293b;
	border-radius: 8px;
	font-weight: 500;
	font-size: 0.95rem;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-section__socials a:hover {
	background-color: #cbd5e1;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.contact-section__card {
		padding: 1.5rem;
	}

	.contact-section__heading {
		font-size: 1.5rem;
	}

	.contact-section__description {
		font-size: 0.95rem;
	}

	.contact-section__subtitle {
		font-size: 1rem;
	}
}

.link-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.link-page {
	background-color: var(--bg-color-light);
	border-radius: 12px;
	padding: 15px;
	display: inline-block;
	color: var(--color-primary);
	transition: var(--transition);
	text-transform: uppercase;
}
.link-page:hover {
	color: var(--color-text);
	transition: var(--transition);
}

/* ================================================================================= SECTIONS */
.binance {
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
  color: #0d3b66;
  padding: 60px 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 12px 25px rgba(13, 59, 102, 0.2);
  letter-spacing: 0.02em;
  transition: background 0.5s ease;
}

.binance:hover {
  background: linear-gradient(135deg, #b2ebf2, #e0f7fa);
}

.binance__container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.binance__title {
  font-weight: 900;
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: #064663;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #a1cbe6;
  border-bottom: 3px solid #0d3b66;
  padding-bottom: 8px;
}

.binance__image {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(6, 70, 99, 0.3);
  transition: transform 0.3s ease;
}

.binance__image:hover {
  transform: scale(1.01);
}

.binance__subtitle {
  font-weight: 700;
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #007ea7;
  font-style: italic;
}

.binance__subsubtitle {
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #0288d1;
  border-left: 6px solid #0288d1;
  padding-left: 16px;
  background: rgba(2, 136, 209, 0.1);
  border-radius: 12px;
}

.binance__text {
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.75;
  color: #114b5f;
  text-align: left;
  margin-bottom: 1.5rem;
  padding-left: 10px;
  border-left: 4px solid #81d4fa;
  background: #e1f5fe;
  border-radius: 10px;
  box-shadow: inset 2px 2px 6px #b3e5fc;
}

/* Адаптив */
@media (max-width: 768px) {
  .binance {
    padding: 40px 25px;
  }

  .binance__title {
    font-size: 2.4rem;
  }

  .binance__subtitle {
    font-size: 1.8rem;
  }

  .binance__subsubtitle {
    font-size: 1.3rem;
  }

  .binance__text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .binance__container {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .binance {
    padding: 30px 15px;
  }

  .binance__title {
    font-size: 1.8rem;
  }

  .binance__subtitle {
    font-size: 1.3rem;
  }

  .binance__subsubtitle {
    font-size: 1.1rem;
  }

  .binance__text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Binance US переосмысление */

.binance-us {
  background: #f0f4f8;
  color: #153e75;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(21, 62, 117, 0.15);
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.01em;
}

.binance-us__title {
  font-weight: 800;
  font-size: 2.8rem;
  margin-bottom: 1.25rem;
  color: #1e88e5;
  text-align: center;
  text-shadow: 0 0 8px rgba(30, 136, 229, 0.4);
}

.binance-us__image {
  max-width: 400px;
  margin: 0 auto 2rem;
  display: block;
  border-radius: 50%;
  border: 6px solid #90caf9;
  box-shadow: 0 6px 18px rgba(30, 136, 229, 0.25);
  transition: box-shadow 0.4s ease;
}

.binance-us__image:hover {
  box-shadow: 0 10px 30px rgba(30, 136, 229, 0.6);
}

.binance-us__subtitle {
  font-weight: 700;
  font-size: 1.7rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #1976d2;
  border-bottom: 2px dashed #64b5f6;
  padding-bottom: 6px;
}

.binance-us__subsubtitle {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #42a5f5;
  padding-left: 14px;
  border-left: 3px solid #42a5f5;
}

.binance-us__text {
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #0d47a1;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  text-align: center;
  font-style: oblique;
}

/* Адаптив */
@media (max-width: 768px) {
  .binance-us {
    padding: 35px 20px;
  }

  .binance-us__title {
    font-size: 2.2rem;
  }

  .binance-us__subtitle {
    font-size: 1.4rem;
  }

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

  .binance-us__text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .binance-us {
    padding: 25px 12px;
  }

  .binance-us__title {
    font-size: 1.7rem;
  }

  .binance-us__subtitle {
    font-size: 1.2rem;
  }

  .binance-us__subsubtitle {
    font-size: 0.9rem;
  }

  .binance-us__text {
    font-size: 0.85rem;
  }
}

/* Образование - абсолютно новая концепция */

.education {
  background: #f0f8ff;
  border: 3px dashed #a3cef1;
  padding: 60px 40px;
  max-width: 950px;
  margin: 60px auto;
  border-radius: 40px;
  box-shadow: 0 12px 35px rgba(0, 119, 182, 0.2);
  color: #1b262c;
  text-align: center;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}


.education__container {
  max-width: 800px;
  margin: 0 auto;
}

.education__title {
  font-weight: 900;
  font-size: 2.1rem;
  margin-bottom: 2rem;
  color: #0b3d91;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px #a3cef1;
}

.education__subtitle {
  font-weight: 700;
  font-size: 1.9rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #145374;
  border-bottom: 2px solid #b1d0e0;
  padding-bottom: 8px;
}

.education__text {
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  text-align: justify;
  text-indent: 2em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
  background: #d9eaf7;
  padding: 20px 25px;
  border-radius: 18px;
  box-shadow: inset 4px 4px 12px #c1d7f0;
}

/* Адаптив */
@media (max-width: 992px) {
  .education__title {
    font-size: 2.4rem;
  }

  .education {
    padding: 40px 25px;
    border-radius: 30px;
  }
}

@media (max-width: 480px) {
  .education {
    padding: 30px 15px;
  }

  .education__title {
    font-size: 1.6rem;
  }

  .education__subtitle {
    font-size: 1.4rem;
  }

  .education__text {
    font-size: 1rem;
    line-height: 1.6;
    text-indent: 1em;
    padding: 15px 18px;
  }
}
