:root {
	--header-height: 70px;
	--bg-color: #121212;
	--bg-color-light: #2a2a2a;
	--bg-dark: #1e1e1e;
	--accent-color: #ff6f61;

	--text-color: #ffffff;

	--faq-bg: #1f2937;
	--faq-text: #ffddb0;
	--faq-accent: #c084fc;
	--faq-border: #374151;
	--faq-radius: 1rem;
	--faq-shadow: rgba(255, 111, 97, 0.2);

	--bg-gradient-dark: linear-gradient(135deg, #121212 0%, #2a2a2a 50%, #1e1e1e 100%);

	--color-primary: #60a5fa;
	--color-accent: #ec4899;
	--color-light: #fcd34d;
	--color-text: #f9fafb;

	--border-radius: 1rem;
	--shadow: 0 15px 30px rgba(255, 184, 0, 0.25);

	/* Анимации */
	--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 ушел вниз */
	padding: 20px 0;
}

.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);
	color: var(--color-accent);
}
/* Бургер меню */
.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 {
	color: #222;
	line-height: 1.5;
}

.faq-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-align: center;
	color: #fff;
}

.faq__item {
	border-bottom: 1px solid #fff;
	padding: 0.8rem 0;
}

.faq__question {
	cursor: pointer;
	font-weight: 600;
	font-size: 1.1rem;
	outline: none;
	color: #fff;
}

.faq__answer {
	margin-top: 0.6rem;
	padding-left: 1rem;
	color: #fff;
	font-size: 1rem;
}

.faq__conclusion {
	margin-top: 2rem;
	font-style: italic;
	color: #e48c7f;
	font-size: 1rem;
	text-align: center;
}

.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: 4rem 1.25rem;
	background: linear-gradient(135deg, #416d85, #50849c);
	min-height: 80vh;
	height: 100%;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(33, 54, 68, 0.3);
	color: #f0f6fb;
}

.contact-section__container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 2.5rem;
	max-width: 1280px;
	margin: 0 auto;
	align-items: flex-start;
}

.contact-section__image-wrapper {
	flex: 1 1 40%;
	min-width: 280px;
}

.contact-section__image {
	width: 100%;
	max-width: 600px;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(80, 132, 156, 0.25);
	transition: transform 0.3s ease;
}

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

.contact-section__content {
	flex: 1 1 55%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-section__heading {
	font-size: 2.2rem; /* максимум */
	font-weight: 700;
	color: #f0f6fb;
	letter-spacing: 0.03em;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.contact-section__description {
	font-size: 1.125rem;
	color: #e0e7f1;
	line-height: 1.6;
}

.contact-section__block {
	font-size: 1rem;
	color: #d8dfe8;
	line-height: 1.6;
}

.contact-section__subtitle {
	margin-bottom: 0.4rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: #cde1f8;
}

.contact-section__socials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 1.25rem;
}

.contact-section__socials a {
	color: #cde1f8;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease, transform 0.2s ease;
}

.contact-section__socials a:hover,
.contact-section__socials a:focus {
	color: #7fa1bb;
	transform: scale(1.1);
	outline: none;
}

@media (max-width: 768px) {
	.contact-section__container {
		flex-direction: column;
		gap: 2rem;
	}

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

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

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

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

/* ================================================================================= SECTIONS */
.trezor-suite {
  background-color: #f0f4f1; /* нежный мятный оттенок — свежесть природы */
  padding: 60px 20px;
  color: #2e3a2f; /* глубокий лесной зелёный */
  font-family: 'Georgia', serif;
}

.trezor-suite__title {
  font-size: 2.5rem;
  text-align: center;
  color: #3a5a40; /* насыщенный зелёный хвойного леса */
  margin-bottom: 40px;
  border-bottom: 4px solid #7a9a6e; /* моховой зелёный — натуральный акцент */
  display: inline-block;
  padding-bottom: 12px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(102, 110, 91, 0.3);
}

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

.trezor-suite__img {
  display: block;
  margin: 0 auto;
  max-width: 550px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(34, 50, 36, 0.3); /* тень, похожая на тень от деревьев */
  border: 3px solid #a2bba0; /* тонкая рамка цвета камня */
  transition: transform 0.3s ease;
}

.trezor-suite__img:hover {
  transform: scale(1.05);
}

.trezor-suite__text {
  background-color: #ffffffdd; /* чуть прозрачный белый, как свет сквозь листья */
  border: 2px solid #a1b1a0; /* каменно-зелёный */
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(99, 123, 103, 0.15);
  font-style: italic;
}

.trezor-suite__paragraph {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #3d4b3d; /* мягкий древесный коричнево-зеленый */
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.trezor-suite__subtitle {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #386641; /* зелёный, как листья саксаула */
  border-left: 6px solid #74a06a; /* оттенок травы и мха */
  padding-left: 14px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(107, 136, 89, 0.4);
}

.trezor-suite__subheading {
  font-size: 1.25rem;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #7b5e34; /* древесный коричневый */
  border-left: 4px solid #b1935e; /* цвет осенней листвы */
  padding-left: 12px;
  font-weight: 500;
  font-style: normal;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .trezor-suite__title {
    font-size: 2rem;
  }

  .trezor-suite__subtitle {
    font-size: 1.4rem;
  }

  .trezor-suite__subheading {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .trezor-suite {
    padding: 40px 16px;
  }

  .trezor-suite__text {
    padding: 24px;
  }

  .trezor-suite__title {
    font-size: 1.8rem;
  }

  .trezor-suite__subtitle {
    font-size: 1.3rem;
  }

  .trezor-suite__subheading {
    font-size: 1.1rem;
  }

  .trezor-suite__paragraph {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .trezor-suite__title {
    font-size: 1.6rem;
  }

  .trezor-suite__subtitle {
    font-size: 1.2rem;
  }

  .trezor-suite__subheading {
    font-size: 1rem;
  }

  .trezor-suite__paragraph {
    font-size: 0.95rem;
  }
}
