:root {
	/* Background Colors */
	--bg: #e6f7ff;
	--bg-dark: #cce4f6;
	--bg-light: #f0f9ff;
	--bg-accent: #d0ecff;

	--text: #333366;
	--text-dark: #4f4f8f;
	--text-light: #ffffff;
	--text-accent: #ff8f00;
	--accent-yellow: #ffe082;

	--color-bg: #ffffff;
	--color-text: #4a4a4a;
	--color-accent: #00aaff;

	--success: #81c784;
	--warning: #ffb74d;
	--error: #e57373;
	--info: #64b5f6;

	--bg-hope: #e0f7fa;
	--text-main: #003344;
	--text-highlight: #007acc;
	--border-accent: #b2ebf2;
	--shadow-soft: rgba(0, 51, 68, 0.15);

	--tools-red: #cc0000;
	--tools-black: #0d0d0d;
	--tools-white: #ffffff;
	--text-gray: #d1d1d1;

	--privacy-radius: 14px;
	/* Шрифты и сетка */
	--font-main: 'Roboto', sans-serif;
	--container-width: 1280px;
	--container-padding: 16px;
}

/* === RESET === */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	height: 100%;
}
body {
	font-family: var(--font-main);
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	min-height: 100%;
}
img {
	max-width: 100%;
	width: 100%;
	display: block;
}
ul {
	list-style: none;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	background: none;
	border: none;
	cursor: pointer;
}
main {
	flex: 1 1 auto;
	padding-top: 80px;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

h2 {
	text-wrap: balance;
}

/* === CONTAINER === */
.container {
	width: 100%;
	max-width: var(--container-width);
	padding: 0 var(--container-padding);
	margin: 0 auto;
}

/* === HEADER === */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: var(--bg-dark);
	color: var(--text);
	padding: 1rem 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
.logo span {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--accent);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
}
.menu-toggle span {
	width: 20px;
	height: 2px;
	background: var(--text);
}
.nav-list {
	display: flex;
	gap: 2rem;
}
.nav-link {
	transition: color 0.3s;
	width: 100%;
	display: block;
}
.nav-link:hover,
.nav-link.active {
	color: var(--accent-dark);
}

/* === FOOTER === */
.footer {
	background: var(--bg-dark);
	color: var(--text);
	padding: 2rem 0 1rem;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
}
.footer-title {
	font-size: 1.1rem;
	margin-bottom: 1rem;
}
.footer-list {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.footer-bottom {
	margin-top: 2rem;
	text-align: center;
	font-size: 0.875rem;
	opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
	.nav-list {
		display: none;
		flex-direction: column;
		background: var(--bg-light);
		position: absolute;
		top: 100%;
		right: 0;
		padding: 1rem;
		width: 100%;
	}
	.menu-toggle {
		display: flex;
	}
	.nav.active .nav-list {
		display: flex;
	}
}

/* --------------------------------------------------------- FAQ ------------------------------------- */
.faq-section {
	background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
	padding: 30px 0;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.faq-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%2300ffd0" /><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="300" cy="300" r="300" fill="url(%23grad)" /></svg>')
		center/cover no-repeat;
	opacity: 0.06;
	z-index: 0;
	animation: slowPulse 20s infinite linear;
}

@keyframes slowPulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
}

.faq-section__container {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.05);
	padding: 50px 40px;
	border-radius: 20px;
	border: 1px solid rgba(0, 255, 255, 0.3);
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.15), inset 0 0 8px rgba(0, 255, 255, 0.1);
}

.faq-section__title {
	font-size: 2.2rem;
	color: #00fcd3;
	margin-bottom: 40px;
	text-align: center;
	text-shadow: 0 0 12px #00fff7cc;
}

.faq-item {
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 20px;
}

.faq-item__question {
	font-size: 1.3rem;
	font-weight: 700;
	color: #ffd6ff;
	margin-bottom: 10px;
	text-shadow: 0 0 8px #ff90e8;
	position: relative;
}

.faq-item__question::before {
	content: '❓';
	position: absolute;
	left: -30px;
	color: #ff66c4;
	font-size: 1.3rem;
}

.faq-item__answer {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #d3faff;
}

.faq-section__footer {
	font-size: 0.95rem;
	color: #aab9d6;
	text-align: center;
	margin-top: 50px;
}

.faq-section__footer .link {
	color: #00fff7;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.faq-section__footer .link:hover {
	color: #fff56d;
	text-decoration: underline;
}

.flex-end {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.flex-end a {
	color: #00fff7;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
}

.flex-end a:hover {
	border-color: #fff56d;
}

/* Адаптив */

@media (max-width: 768px) {
	.faq-section__container {
		padding: 30px 25px;
	}

	.faq-section__title {
		font-size: 2rem;
	}

	.faq-item__question {
		font-size: 1.15rem;
	}

	.faq-item__answer {
		font-size: 1rem;
	}

	.flex-end {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.faq-section__title {
		font-size: 1.7rem;
	}

	.faq-item__question {
		font-size: 1rem;
	}

	.faq-item__answer {
		font-size: 0.95rem;
	}
}

/* --------------------------------------------------------- CONTACT ------------------------------------- */
.contact {
	background: linear-gradient(135deg, #123d29 0%, #0f2d20 100%);
	color: #e8f5e9;
	padding: 30px 0;
	display: flex;
	justify-content: center;
	min-height: 100vh;
	font-family: 'Segoe UI', sans-serif;
}

.contact__title {
	font-size: 2.6rem;
	font-weight: 800;
	color: #cddc39;
	text-align: center;
	margin-bottom: 40px;
	text-shadow: 0 0 10px #cddc39aa;
	letter-spacing: 1px;
}

.contact__content {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
	width: 100%;
}

.contact__info {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 100%;
	align-items: center;
}

.contact__text {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #d0f0da;
	font-weight: 500;
	max-width: 820px;
	margin: 0 auto;
}

.contact__text strong {
	color: #ffeb3b;
	font-weight: 700;
}

.contact__image {
	display: flex;
	justify-content: center;
	max-width: 660px;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
	transition: box-shadow 0.4s ease;
}

.contact__image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
	border-radius: 18px;
}

.contact__image img:hover {
	transform: scale(1.06) rotate(-0.5deg);
}

.contact__block {
	background: linear-gradient(145deg, #1b402e, #0f2d20);
	border-radius: 16px;
	padding: 28px 30px;
	box-shadow: inset 0 0 12px #1b5e20;
	max-width: 620px;
	margin: 0 auto;
	border: 1px solid #33691e;
}

.contact__subtitle {
	font-size: 1.4rem;
	font-weight: 700;
	color: #cddc39;
	margin-bottom: 18px;
	text-shadow: 0 0 6px #cddc39aa;
}

.contact__line {
	font-size: 1.05rem;
	color: #dcedc8;
	margin: 10px 0;
}

.contact__label {
	font-weight: 600;
	color: #aed581;
	margin-right: 6px;
}

.contact__link {
	color: #ffee58;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.contact__link:hover {
	color: #cddc39;
	text-decoration: underline;
}

.contact__socials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: center;
}

.contact__social-link {
	color: #ffeb3b;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 12px #cddc39aa;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.contact__social-link:hover {
	background-color: #cddc39;
	color: #1b402e;
	box-shadow: 0 0 18px #cddc39;
}

.contact__note {
	font-size: 1rem;
	color: #a5d6a7;
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
}

.contact__note strong {
	color: #cddc39;
	font-weight: 700;
}

/* Адаптивность */
@media (max-width: 768px) {
	.contact {
		padding: 40px 15px;
	}

	.contact__title {
		font-size: 2.2rem;
	}

	.contact__text {
		font-size: 1.05rem;
	}

	.contact__subtitle {
		font-size: 1.2rem;
	}

	.contact__socials {
		gap: 20px;
	}

	.contact__social-link {
		font-size: 1rem;
		padding: 6px 12px;
	}
}

@media (max-width: 480px) {
	.contact__title {
		font-size: 1.8rem;
	}

	.contact__text {
		font-size: 1rem;
	}

	.contact__subtitle {
		font-size: 1.05rem;
	}

	.contact__socials {
		flex-direction: column;
		gap: 15px;
	}

	.contact__note {
		font-size: 0.9rem;
	}
}

/* --------------------------------------------------------- PRIVACY ------------------------------------- */
.privacy {
	padding: 40px 0;
	background-color: #e6f2e6;
	color: #2e4d2e;
	font-family: 'Segoe UI', sans-serif;
}

.privacy__container {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
}

.privacy__title {
	font-size: 42px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 50px;
	color: #3b5f3b;
	text-shadow: 1px 1px 0 #d5e8d4;
}

.privacy__block {
	margin-bottom: 48px;
	background-color: #ffffff;
	border: 2px solid #c5e1a5;
	border-radius: 24px;
	padding: 36px;
	box-shadow: 0 6px 16px rgba(34, 49, 34, 0.08);
	transition: transform 0.3s ease;
}

.privacy__block:hover {
	transform: scale(1.02);
}

.privacy__heading {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #4b7b4b;
}

.privacy__subheading {
	font-size: 20px;
	font-weight: 600;
	margin: 20px 0 12px;
	color: #5d8c5d;
}

.privacy__text {
	font-size: 17px;
	line-height: 1.75;
	color: #3f6040;
	margin-bottom: 18px;
}

.privacy__list {
	list-style: circle;
	padding-left: 24px;
	margin-top: 12px;
	margin-bottom: 18px;
}

.privacy__item {
	font-size: 17px;
	color: #3f6040;
	line-height: 1.65;
	margin-bottom: 12px;
}

.privacy__text a {
	color: #7cb342;
	text-decoration: none;
	border-bottom: 1px dotted #7cb342;
	transition: all 0.3s ease;
}

.privacy__text a:hover {
	color: #558b2f;
	border-bottom: 1px solid #558b2f;
}

/* ------------------------------LINKS */
.link-wrap {
	display: flex;
	justify-content: center;
}
.link-page {
	display: block;
	color: var(--error);
	background-color: var(--bg);
	padding: 8px 12px;
	border-radius: 6px;
	transition: all 0.3s ease-in;
}
.link-page:hover {
	color: var(--success);
}

/* -------------------------------------- SECTIONS --------------------------------------------- */

.coinbase-mobile {
	background: var(--bg-hope);
	padding: 60px 20px;
	box-shadow: inset 0 5px 15px var(--shadow-soft);
}

.coinbase-mobile__content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.coinbase-mobile__title {
	font-size: 2rem;
	color: var(--text-main);
	margin-bottom: 20px;
	line-height: 1.3;
}

.coinbase-mobile__title span {
	display: block;
	font-weight: 700;
	color: var(--text-highlight);
}

.coinbase-mobile__desc {
	font-size: 1.125rem;
	color: var(--text-main);
	line-height: 1.6;
	border-left: 4px solid var(--border-accent);
	padding-left: 16px;
}

.coinbase-mobile__image-wrapper {
	text-align: center;
}

.coinbase-mobile__image {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 20px var(--shadow-soft);
}

/* Responsive */
@media (max-width: 768px) {
	.coinbase-mobile__content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.coinbase-mobile__desc {
		border-left: none;
		border-top: 4px solid var(--border-accent);
		padding-left: 0;
		padding-top: 16px;
	}
}
.coinbase-excellence {
	background: #e0f7fa;
	padding: 60px 20px;
	box-shadow: inset 0 5px 15px rgba(0, 51, 68, 0.15);
}

.coinbase-excellence__content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

.coinbase-excellence__title {
	font-size: 2rem;
	color: #003344;
	margin-bottom: 20px;
	line-height: 1.3;
}

.coinbase-excellence__title span {
	display: block;
	font-weight: 700;
	color: #007acc;
}

.coinbase-excellence__desc {
	font-size: 1.125rem;
	color: #003344;
	line-height: 1.6;
	border-left: 4px solid #b2ebf2;
	padding-left: 16px;
	margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
	.coinbase-excellence__content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.coinbase-excellence__desc {
		border-left: none;
		border-top: 4px solid #b2ebf2;
		padding-left: 0;
		padding-top: 16px;
	}
}
.coinbase-stock-monitoring {
	background-color: #f2f8fc;
	padding: 60px 20px;
	box-shadow: inset 0 5px 20px rgba(0, 60, 80, 0.1);
}

.coinbase-stock-monitoring__container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 40px;
	align-items: flex-start;
}

.coinbase-stock-monitoring__title {
	font-size: 2.2rem;
	color: #003344;
	font-weight: 700;
	margin-bottom: 30px;
}

.coinbase-stock-monitoring__subtitle {
	font-size: 1.4rem;
	color: #005a8d;
	margin-top: 30px;
	margin-bottom: 12px;
	border-left: 4px solid #80d8ff;
	padding-left: 12px;
}

.coinbase-stock-monitoring__desc {
	font-size: 1.125rem;
	color: #003344;
	line-height: 1.7;
	margin-bottom: 20px;
}

.coinbase-stock-monitoring__image img {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(0, 60, 80, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
	.coinbase-stock-monitoring__container {
		grid-template-columns: 1fr;
	}

	.coinbase-stock-monitoring__image {
		margin-top: 40px;
		text-align: center;
	}
}

.tools-section {
	padding: 60px 20px;
}

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

.tools-section__title {
	font-size: 2rem;
	margin-bottom: 30px;
	color: var(--tools-red);
	text-transform: uppercase;
	text-align: center;
}

.tools-section__content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
}

.tools-section__image-wrapper {
	flex: 1 1 300px;
	max-width: 500px;
}

.tools-section__image {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(204, 0, 0, 0.6);
}

.tools-section__text {
	flex: 1 1 300px;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--tools-red);
}

.tools-section__text p {
	margin-bottom: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
	.tools-section__content {
		flex-direction: column;
		align-items: center;
	}

	.tools-section__title {
		font-size: 1.5rem;
	}

	.tools-section__text {
		font-size: 0.95rem;
	}
}

.secure-section {
  padding: 60px 20px;
  background-color: #1a1a1a;
}

.secure-section--innovations {
  background-color: #181818;
}

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

.secure-section__title {
  font-size: 2rem;
  color: #f5f5f5;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.secure-section__content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.secure-section__image-wrapper {
  flex: 1 1 300px;
  max-width: 500px;
}

.secure-section__image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.secure-section__text {
  flex: 1 1 300px;
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
}

.secure-section__text p {
  margin-bottom: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .secure-section__content {
    flex-direction: column;
    align-items: center;
  }

  .secure-section__title {
    font-size: 1.5rem;
  }

  .secure-section__text {
    font-size: 0.95rem;
  }
}