@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: #1b1b2f;
	--bg-color-light: #f0f0f3;
	--color-text: #e0e0e0;
	--color-text-active: #ff6f61;
	--color-title: #ffe082;
	--color-accent: #536dfe;

	--accent-color-faq: #3f51b5;

	--main-bg: #121212;
	--card-bg: #ffffff;
	--accent: #ff4081;
	--accent-light: #ffc1e3;
	--text-dark: #1e1e1e;
	--text-light: #9e9e9e;
	--border-color: #607d8b;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

	--radius: 10px;

	--container-width: 1260px;
	--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 {
	background-color: var(--bg-color-light);
}
html {
	scroll-behavior: smooth;
	height: 100%;
}
body {
	font-family: var(--font-main);
	min-height: 100%;
}

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

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

.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: linear-gradient(135deg, #f3e5f5, #e1f5fe);
	padding: 48px 24px;
	color: #263238;
	min-height: calc(100vh - var(--header-height) - 62px);
	font-family: 'Inter', sans-serif;
}

.faq-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 48px;
	color: #6a1b9a;
	font-weight: 700;
	text-transform: none;
	text-shadow: 0 1px 2px rgba(106, 27, 154, 0.2);
}

.faq-item {
	background-color: #f1f8e9;
	border: 1px solid #c8e6c9;
	border-radius: 16px;
	padding: 28px 32px;
	margin-bottom: 24px;
	box-shadow: 0 6px 18px rgba(76, 175, 80, 0.1);
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 10px 28px rgba(76, 175, 80, 0.2);
	transform: translateY(-2px);
}

.faq-question {
	font-size: 1.25rem;
	font-weight: 600;
	color: #00796b;
	margin-bottom: 12px;
	position: relative;
	padding-left: 18px;
}
.faq-answer {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #455a64;
	padding-left: 18px;
	position: relative;
}

.faq-footer {
	margin-top: 56px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1rem;
	color: #5c6bc0;
}

.privacy-link {
	color: #c2185b;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.privacy-link:hover {
	color: #880e4f;
}

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

	.faq-item {
		padding: 20px;
	}

	.faq-question {
		font-size: 1.05rem;
	}

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

/* PRIVaCY ==================================================================== */
.privacy {
	background: linear-gradient(to right, #f0f2f5, #e6ecf0);
	color: #2b2b2b;
	padding: 4rem 2rem;
	line-height: 1.6;
}

.privacy__header {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid #d0d7de;
	padding: 0.5rem 1rem;
	text-align: center;
	border-radius: 20px;
	margin-bottom: 3rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.privacy__title {
	font-size: 2rem;
	font-weight: 700;
	color: #0055aa;
}

.privacy__intro {
	font-size: 1.1rem;
	color: #555;
}

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

.privacy__sidebar {
	flex: 1 1 260px;
	background-color: #ffffff;
	border: 1px solid #d0d7de;
	border-radius: 12px;
	padding: 1.5rem;
	position: sticky;
	top: 80px;
	max-height: calc(100vh - 140px);
	overflow-y: auto;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.privacy__nav li + li {
	margin-top: 1rem;
}

.privacy__nav a {
	color: #333;
	text-decoration: none;
	font-weight: 600;
	display: block;
	padding: 0.5rem 0.75rem;
	border-radius: 6px;
	transition: background 0.2s ease, color 0.2s ease;
}

.privacy__nav a:hover,
.privacy__nav a:focus {
	background-color: #e0f0ff;
	color: #0070d2;
}

.privacy__content {
	flex: 3 1 640px;
	background-color: #fff;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
	border: 1px solid #e0e0e0;
}

.privacy__content section + section {
	margin-top: 2.5rem;
}

.privacy__content h2 {
	font-size: 1.8rem;
	color: #003366;
	border-left: 5px solid #0077cc;
	padding-left: 1rem;
	margin-bottom: 1rem;
}

.privacy__content h3 {
	font-size: 1.3rem;
	color: #222;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.privacy__content ul {
	list-style: disc;
	margin-left: 2rem;
	color: #444;
}

.privacy__content address {
	font-style: normal;
	color: #666;
	margin-top: 2rem;
	font-size: 0.95rem;
}

#contact-us a {
	color: #0077cc;
	text-decoration: underline;
}

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

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

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

	.privacy__title {
		font-size: 1.75rem;
	}

	.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: 4rem 2rem;
	background: linear-gradient(135deg, #e0f7fa, #ffffff);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	color: #1a237e;
}

.contact-section__container {
	max-width: 1100px;
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 2rem;
}

.contact-section__card {
	flex: 1 1 48%;
	background: #ffffff;
	border: 2px solid #81d4fa;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-section__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.contact-section__image-wrapper {
	flex: 1 1 100%;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 2/1;
}

.contact-section__image {
	max-width: 650px;
	height: 100%;
	object-fit: contain;
	filter: none;
	transition: transform 0.3s ease;
}

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

.contact-section__heading {
	font-size: 2.25rem;
	color: #01579b;
	font-weight: 700;
	margin-bottom: 1rem;
}

.contact-section__description {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #37474f;
	margin-bottom: 1.5rem;
}

.contact-section__subtitle {
	font-size: 1.125rem;
	color: #0288d1;
	margin-bottom: 0.75rem;
	text-transform: capitalize;
	font-weight: 600;
}

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

.contact-section__block a {
	color: #ff6f00;
	text-decoration: none;
	border-bottom: 1px dotted #ff6f00;
	transition: color 0.3s ease;
}

.contact-section__block a:hover {
	color: #e65100;
}

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

.contact-section__socials a {
	background-color: #4fc3f7;
	color: #ffffff;
	padding: 0.6rem 1.2rem;
	border-radius: 8px;
	font-weight: 500;
	font-size: 0.95rem;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

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

.link-wrap {
	margin-top: 2.5rem;
	text-align: left;
}

.link-page {
	background-color: #ffeb3b;
	color: #1a237e;
	padding: 10px 24px;
	font-size: 0.95rem;
	font-weight: bold;
	border-radius: 6px;
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 0.3s ease;
}

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

@media (max-width: 992px) {
	.contact-section__container {
		flex-direction: column;
	}

	.contact-section__card {
		flex: 1 1 100%;
	}
}

/* ================================================================================= SECTIONS */
img {
	max-width: 400px;
}
.market {
	padding: 60px 20px;
	background-color: var(--bg-color-light);
}

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

.market__title {
	font-size: 2.5rem;
	text-align: center;
	color: var(--color-title);
	margin-bottom: 10px;
}

.market__subtitle {
	font-size: 1.5rem;
	text-align: center;
	color: var(--accent-color-faq);
	margin-bottom: 40px;
}

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

.market__img {
	width: 100%;
	max-width: 900px;
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.market__content {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.market__heading {
	font-size: 2rem;
	color: var(--text-dark);
	margin-top: 20px;
}

.market__subheading {
	font-size: 1.75rem;
	color: var(--accent);
	margin-top: 30px;
}

.market__miniheading {
	font-size: 1.4rem;
	color: var(--color-accent);
	margin-top: 20px;
}

.market__text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-dark);
	text-align: justify;
}

@media (max-width: 768px) {
	.market__title {
		font-size: 2rem;
	}
	.market__heading,
	.market__subheading {
		font-size: 1.5rem;
	}
	.market__miniheading {
		font-size: 1.2rem;
	}
	.market__text {
		font-size: 1rem;
	}
}
.market-section {
	padding: 60px 20px;
	background-color: var(--bg-color-light);
	color: var(--text-dark);
}

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

.market-section__title {
	font-size: 32px;
	margin-bottom: 40px;
	text-align: center;
	color: var(--main-bg);
}

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

.market-section__image img {
	height: auto;
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.market-block {
	margin-bottom: 50px;
	background-color: var(--card-bg);
	padding: 30px;
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.market-block__title {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--accent);
}

.market-block__text {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	margin-bottom: 16px;
}
.trading-view {
	padding: 60px 20px;
	background-color: #f9f9f9;
	font-family: Arial, sans-serif;
}

.trading-view__container {
	max-width: 1200px;
	margin: 0 auto;
}

.trading-view__title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 40px;
	color: #222;
	text-align: center;
}

.trading-view__image-wrapper {
	text-align: center;
	margin-bottom: 40px;
}

.trading-view__image {
	height: auto;
	border-radius: 8px;
}

.trading-view__block {
	margin-bottom: 50px;
}

.trading-view__subtitle {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #333;
}

.trading-view__subblock {
	margin-top: 30px;
}

.trading-view__subsubtitle {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #444;
}

.trading-view__text {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 15px;
}

/* Базовая стилизация секции */
.section--tradingview {
	background-color: #f9f9f9;
	padding: 60px 20px;
	color: #1e1e1e;
}

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

.section__row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

/* Левая колонка с изображением */
.section__col--left {
	flex: 1 1 40%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation-delay: 0.2s;
}

.section__image {
	height: auto;
	border-radius: 12px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Правая колонка с контентом */
.section__col--right {
	flex: 1 1 55%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* Заголовки */
.section__title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #222;
	animation-delay: 0.5s;
}

.section__subtitle {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
	animation-delay: 0.6s;
}

/* Контентные блоки */
.section__block {
	background: #fff;
	padding: 25px 30px;
	border-radius: 10px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	animation-delay: 0.7s;
}

/* Текст */
.section__text {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 16px;
	color: #444;
}

/* Адаптивность */
@media (max-width: 992px) {
	.section__row {
		flex-direction: column;
	}

	.section__col--left,
	.section__col--right {
		flex: 1 1 100%;
	}
}
.tv-specific-section {
	background: linear-gradient(to bottom, #fff, #f2f2f2);
	padding: 80px 20px;
	font-family: 'Segoe UI', Tahoma, sans-serif;
	color: #222;
}

.tv-specific-container {
	max-width: 1200px;
	margin: 0 auto;
}

.tv-specific-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 50px;
	text-align: center;
}

.tv-specific-title {
	font-size: 36px;
	color: #c62828;
	border-bottom: 4px solid #c62828;
	padding-bottom: 12px;
	margin-bottom: 24px;
	letter-spacing: 0.5px;
}

.tv-specific-image {
	max-width: 640px;
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tv-specific-content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.tv-specific-block {
	background-color: #ffffff;
	border-left: 6px solid #c62828;
	padding: 24px 28px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.tv-specific-block:hover {
	transform: translateY(-4px);
}

.tv-specific-subtitle {
	font-size: 24px;
	color: #1a1a1a;
	margin-bottom: 16px;
}

.tv-specific-text {
	font-size: 16px;
	line-height: 1.6;
	color: #444;
	margin-bottom: 12px;
}
