:root {
	--header-height: 70px;
	--color-bg: #0d0f1e;
	--color-text: #f2f2f2;
	--color-text-active: #ff4081;
	--color-title: #ffeb3b;
	--color-accent: #00bcd4;

	--accent-color-faq: #4caf50;

	--main-bg: #fff4e6;
	--card-bg: #ffe0b2;
	--accent: #e91e63;
	--accent-light: #f8bbd0;
	--text-dark: #3e2723;
	--text-light: #8d6e63;
	--border-color: #d7ccc8;
	--shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

	--radius: 8px;

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

	--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;
}

.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: center;
	flex-direction: row-reverse;
	align-items: center;
	height: 70px;
	width: 100%;
}

.nav {
	width: 100%;
	max-width: 1200px;
	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(--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-section {
	background-color: #1b1f2b;
	padding: 80px 24px;
	font-family: 'Arial', sans-serif;
	color: #ffffff;
}

.faq-title {
	font-size: 40px;
	text-align: center;
	margin-bottom: 60px;
	color: #00ffd0;
	font-weight: 900;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.faq-item {
	background-color: #2a2f40;
	border-radius: 12px;
	padding: 24px 28px;
	margin-bottom: 24px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease;
}

.faq-item:hover {
	transform: translateY(-4px);
}

.faq-question {
	font-size: 20px;
	font-weight: 700;
	color: #00ffd0;
	margin-bottom: 12px;
	position: relative;
	padding-left: 20px;
}

.faq-answer {
	font-size: 17px;
	line-height: 1.8;
	color: #d0d0d0;
	padding-left: 20px;
	position: relative;
}

@media (max-width: 768px) {
	.faq-title {
		font-size: 30px;
	}

	.faq-question {
		font-size: 18px;
	}

	.faq-answer {
		font-size: 16px;
	}
}

.faq-footer {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	color: #999;
}

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

.privacy-link:hover {
	color: var(--primary-color);
}

/* PRIVaCY ==================================================================== */
.privacy {
	background: var(--main-bg);
	color: var(--text-dark);
	padding: 4rem 2rem;
}

.privacy__header {
	background: var(--card-bg);
	padding: 1.5rem;
	text-align: center;
	border: 2px solid var(--border-color);
	border-radius: 16px;
	margin-bottom: 3rem;
	box-shadow: var(--shadow);
	position: relative;
}

.privacy__header::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: repeating-linear-gradient(
		45deg,
		rgba(99, 102, 241, 0.05),
		rgba(99, 102, 241, 0.05) 10px,
		transparent 10px,
		transparent 20px
	);
	pointer-events: none;
}

.privacy__title {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--accent);
	text-transform: none;
}

.privacy__intro {
	font-size: 1.2rem;
	margin-top: 0.75rem;
	font-weight: 400;
	color: var(--text-light);
}

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

.privacy__sidebar {
	flex: 1 1 260px;
	background-color: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 1.25rem;
	position: sticky;
	top: 80px;
	max-height: calc(100vh - 140px);
	overflow-y: auto;
	box-shadow: var(--shadow);
}

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

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

.privacy__nav a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	transition: 0.2s;
	padding-left: 10px;
	border-left: 3px solid transparent;
}

.privacy__nav a:hover,
.privacy__nav a:focus {
	color: var(--accent);
	border-color: var(--accent-light);
	background-color: rgba(99, 102, 241, 0.05);
	border-radius: 6px;
}

.privacy__content {
	flex: 3 1 640px;
	background-color: var(--card-bg);
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: var(--shadow);
}

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

.privacy__content h2 {
	font-size: 1.75rem;
	margin-bottom: 1.2rem;
	font-weight: 600;
	color: var(--accent);
	position: relative;
	padding-left: 1rem;
}

.privacy__content h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.4rem;
	width: 6px;
	height: 80%;
	background-color: var(--accent-light);
	border-radius: 4px;
}

.privacy__content h3 {
	font-size: 1.25rem;
	margin-top: 1.5rem;
	font-weight: 600;
	color: var(--text-dark);
}

.privacy__content ul {
	margin-left: 1.5rem;
	padding-left: 0.5rem;
	list-style-type: circle;
	color: var(--text-light);
	line-height: 1.7;
}

.privacy__content address {
	font-style: normal;
	color: var(--text-light);
	font-weight: 400;
	margin-top: 2rem;
}

#contact-us a {
	color: var(--accent);
	text-decoration: underline;
}

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

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

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

	.privacy__title {
		font-size: 1.6rem;
	}

	.privacy__intro {
		font-size: 1rem;
	}

	.privacy__container {
		flex-direction: column;
	}

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

	.privacy__content {
		padding: 2rem 1rem;
	}

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

	.privacy__content h3 {
		font-size: 1.1rem;
	}
}
/* Enhanced Contacts Section =====================================================*/
.contact-section {
	padding: 5rem 3rem;
	background: linear-gradient(120deg, #2e2e2e, #6e5c4d);
	min-height: 80vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #f2e8dc;
}

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

.contact-section__card {
	background: #3a3a3a;
	border: 1px solid #605b56;
	padding: 2.5rem 2rem;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
	transition: background 0.4s ease, transform 0.3s ease;
}

.contact-section__card:hover {
	background: #4a423a;
	transform: translateY(-8px);
}

.contact-section__image-wrapper {
	border: 1px solid #776f66;
	overflow: hidden;
	border-radius: 0;
	aspect-ratio: 4/3;
}

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

.contact-section__image:hover {
	filter: grayscale(0) brightness(1);
}

.contact-section__heading {
	font-size: 2rem;
	color: #f8d5b8;
	margin-bottom: 1.5rem;
	text-transform: none;
	font-family: 'Georgia', serif;
}

.contact-section__description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: #dbcbbd;
	margin-bottom: 2rem;
}

.contact-section__subtitle {
	font-size: 1.25rem;
	color: #e0b98f;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.contact-section__block {
	font-size: 1rem;
	color: #cbbeb3;
	line-height: 1.6;
	margin-bottom: 1rem;
	text-align: left;
}

.contact-section__block a {
	color: #f4a261;
	text-decoration: underline;
}

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

.contact-section__socials a {
	background-color: #f4a261;
	color: #1f1f1f;
	padding: 0.75rem 1.5rem;
	border-radius: 0;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: background 0.3s ease;
}

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

.link-wrap {
	margin-top: 3rem;
	text-align: center;
}

.link-page {
	background-color: #fff3e0;
	color: #2e2e2e;
	padding: 12px 28px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 4px;
	display: inline-block;
	transition: background 0.3s ease;
	text-decoration: none;
	text-transform: uppercase;
}

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

/* ================================================================================= SECTIONS */
.defi-adventure {
	background-color: #f6f2e5; /* светло-песочный */
	padding: 60px 20px;
	color: #3e2f1c;
	line-height: 1.8;
	background-image: linear-gradient(to bottom, #f6f2e5, #e7dcc2);
}

.defi-adventure__container {
	max-width: 1100px;
	margin: 0 auto;
	background-color: #fffdf6;
	padding: 40px;
	border: 3px solid #bfa76a;
	box-shadow: 0 0 30px rgba(99, 82, 54, 0.1);
}

.defi-adventure__title {
	font-size: 28px;
	color: #4b370c;
	margin-bottom: 30px;
	text-shadow: 1px 1px 0 #e9debd;
}

.defi-adventure__image {
	max-width: 350px;
	width: 100%;
	object-fit: cover;
	margin-bottom: 30px;
	border: 2px solid #bfa76a;
	border-radius: 8px;
}

.defi-adventure__intro {
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 25px;
	background: #fff7d0;
	padding: 15px;
	border-left: 5px solid #d8b256;
}

.defi-adventure__subtitle {
	font-size: 22px;
	margin-top: 40px;
	color: #5b4219;
	border-bottom: 2px solid #bfa76a;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.defi-adventure h3 {
	margin-top: 40px;
	font-size: 20px;
	color: #6c4f28;
	border-left: 4px solid #c0a05a;
	padding-left: 12px;
}

.defi-strategy {
	background: linear-gradient(to bottom, #2e2e2e, #1a1a1a);
	color: #e0e0e0;
	padding: 60px 20px;
}

.defi-strategy__container {
	max-width: 1260px;
	margin: 0 auto;
}

.defi-strategy__title {
	font-size: 32px;
	text-align: center;
	color: #f0d36f;
	margin-bottom: 40px;
	text-shadow: 0 0 10px rgba(240, 211, 111, 0.15);
}

.defi-strategy__image-wrapper {
	text-align: center;
	margin-bottom: 40px;
}

.defi-strategy__image {
	max-width: 60%;
	height: auto;
	border: 2px solid #444;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
	border-radius: 8px;
}

.defi-strategy__content {
	line-height: 1.7;
	font-size: 17px;
}

.defi-strategy__text {
	margin-bottom: 20px;
}

.defi-strategy__subtitle {
	font-size: 24px;
	margin-top: 40px;
	color: #f0e6b7;
	border-left: 5px solid #f0d36f;
	padding-left: 10px;
}

.defi-strategy__subsubtitle {
	font-size: 20px;
	margin-top: 30px;
	color: #ccc;
	font-style: italic;
}

.lending-analysis {
	background-color: #151410;
	color: #e0e0e0;
	padding: 60px 20px;
	background-image: linear-gradient(to bottom, #1d1c1a, #0f0f0e);
}

.lending-analysis__container {
	max-width: 1160px;
	margin: 0 auto;
}

.lending-analysis__title {
	font-size: 30px;
	text-align: center;
	color: #f0c04f;
	margin-bottom: 40px;
	text-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}

.lending-analysis__image-wrapper {
	text-align: center;
	margin-bottom: 40px;
}

.lending-analysis__image {
	max-width: 60%;
	height: auto;
	border: 1px solid #444;
	box-shadow: 0 0 16px rgba(255, 255, 255, 0.04);
	border-radius: 6px;
}

.lending-analysis__content {
	font-size: 16.5px;
	line-height: 1.75;
}

.lending-analysis__subtitle {
	font-size: 22px;
	margin-top: 35px;
	color: #f5e5b6;
	border-left: 4px solid #f0c04f;
	padding-left: 12px;
}

.lending-analysis__text {
	margin-bottom: 18px;
	color: #ccc;
}

.governance-section {
	background: linear-gradient(135deg, #eaf3ff, #ffffff);
	color: #3b3b3b;
	padding: 60px 20px;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(171, 186, 255, 0.15);
}

.governance-section__container {
	max-width: 1000px;
	margin: 0 auto;
}

.governance-section__title {
	font-size: 32px;
	text-align: center;
	color: #476fa3;
	margin-bottom: 40px;
	font-weight: 700;
}

.governance-section__image-wrapper {
	text-align: center;
	margin-bottom: 40px;
}

.governance-section__image {
	max-width: 60%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.governance-section__content {
	font-size: 17px;
	line-height: 1.75;
	color: #4d4d4d;
}

.governance-section__subtitle {
	font-size: 22px;
	margin-top: 40px;
	color: #5c84c0;
	background: linear-gradient(to right, #e0ecff 0%, #ffffff 100%);
	padding: 10px 15px;
	border-left: 4px solid #97b5ff;
	border-radius: 8px;
}

.governance-section__text {
	margin-bottom: 18px;
}

@media (max-width: 768px) {
	.defi-strategy__title,
	.lending-analysis__title,
	.governance-section__title {
		font-size: 26px;
	}

	.defi-strategy__subtitle,
	.lending-analysis__subtitle,
	.governance-section__subtitle {
		font-size: 19px;
	}
}

@media (max-width: 992px) {
	.defi-adventure {
		padding: 40px 5px;
	}
	.defi-adventure__container {
		padding: 20px 10px;
	}
	.defi-adventure__title {
		font-size: 22px;
		text-wrap: balance;
	}
}
