@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: #f4f0e8;
	--bg-color-light: #e6e0d2;
	--color-text: #3a2e20;
	--color-text-active: #a66b00;
	--color-title: #2b1f14;
	--color-accent: #c47b00;

	--accent-color-faq: #fff3d9;

	--main-bg: #fdf9f2;
	--card-bg: #f0e1c8;
	--accent: #b86400;
	--accent-light: #fdf4e5;
	--text-dark: #2e1e0e;
	--text-light: #9c8566;
	--border-color: #dfc9a5;
	--shadow: 0 8px 24px rgba(166, 107, 0, 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-end;
	align-items: center;
	height: 70px;
	width: 100%;
}

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

.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: var(--text-dark);
	background-color: var(--main-bg);
	min-height: calc(100vh - var(--header-height) - 62px);
	padding: 80px 24px;
}

.faq__title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 48px;
	color: var(--accent);
	font-weight: 900;
	letter-spacing: 0.7px;
}

.faq__item {
	margin-bottom: 32px;
	border: 1px solid var(--border-color);
	padding: 24px 28px;
	background: var(--card-bg);
	border-radius: 16px;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq__item:hover {
	box-shadow: 0 12px 30px rgba(0, 119, 255, 0.15);
	transform: translateY(-4px);
}

.faq__question {
	font-size: 1.375rem;
	margin-bottom: 14px;
	color: var(--accent);
	font-weight: 700;
}

.faq__answer {
	font-size: 1.05rem;
	color: var(--text-dark);
	line-height: 1.75;
}

.faq-footer {
	margin-top: 64px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1rem;
	color: var(--text-light);
	text-align: center;
}

.privacy-link {
	color: var(--accent);
	text-decoration: none;
	border-bottom: 1px dashed var(--accent);
	transition: color 0.3s ease;
}

.privacy-link:hover {
	color: var(--color-accent);
}
.copyright {
	color: var(--accent-yellow);
}
/* 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;
	aspect-ratio: 2/1;
}

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

.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-support {
	background: #0a0f1e;
	color: #e4eaf2;
	padding: 40px 20px;
}

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

.binance-support__title {
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	color: #73ffe8;
	margin-bottom: 20px;
	border-left: 4px solid #73ffe8;
	padding-left: 12px;
}

.binance-support__image {
	width: 100%;
	height: auto;
	margin-bottom: 24px;
	border-radius: 10px;
	box-shadow: 0 0 24px rgba(115, 255, 232, 0.2);
}

.binance-support__lead {
	font-size: 18px;
	margin-bottom: 32px;
	color: #c9d6e5;
}

.binance-support__block {
	margin-bottom: 40px;
}

.binance-support__subtitle {
	font-size: 24px;
	font-weight: 600;
	color: #50d8ff;
	margin-bottom: 16px;
}

.binance-support__subheading {
	font-size: 20px;
	font-weight: 500;
	margin: 24px 0 12px;
	color: #a3f7ff;
}

.binance-support__block p {
	line-height: 1.6;
	margin-bottom: 14px;
	color: #d1dce9;
}

@media (max-width: 768px) {
	.binance-support__title {
		font-size: 24px;
	}

	.binance-support__subtitle,
	.binance-support__subheading {
		font-size: 18px;
	}
}
.support-metrics {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.support-metrics__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #1a1a1a;
}

.support-metrics__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-metrics__block {
  margin-bottom: 40px;
}

.support-metrics__subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e40af;
}

.support-metrics__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}
