@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: #1a237e;
	--bg-color-light: #ede7f6;
	--color-text: #ffffff;
	--color-text-active: #ff4081;
	--color-title: #f8f9fa;
	--color-accent: #00bcd4;

	--accent-color-faq: #c2185b;

	--main-bg: #004d40;
	--card-bg: #e0f2f1;
	--accent: #ff5722;
	--accent-light: #ffccbc;
	--text-dark: #212121;
	--text-light: #757575;
	--border-color: #ce93d8;
	--shadow: 0 8px 24px rgba(33, 150, 243, 0.15);

	--radius: 8px;

	--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 {
	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-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-color: #f9fafc;
	padding: 48px 24px;
	color: #1a1a1a;
	min-height: calc(100vh - var(--header-height) - 62px);
	font-family: 'Inter', sans-serif;
}

.faq-title {
	font-size: 2.25rem;
	text-align: center;
	margin-bottom: 48px;
	color: #1e40af;
	font-weight: 700;
	text-transform: none;
}

.faq-item {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 24px 28px;
	margin-bottom: 20px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.faq-question {
	font-size: 1.125rem;
	font-weight: 600;
	color: #1e3a8a;
	margin-bottom: 12px;
	position: relative;
	padding-left: 16px;
}

.faq-answer {
	font-size: 1rem;
	line-height: 1.7;
	color: #4b5563;
	padding-left: 16px;
	position: relative;
}

.faq-footer {
	margin-top: 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.95rem;
	color: #6b7280;
}

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

.privacy-link:hover {
	color: #1d4ed8;
}

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

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

	.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 */
.hero {
	background: linear-gradient(135deg, #1a237e, #0d47a1);
	color: #fff;
	padding: 4rem 1rem 2rem;
}
.hero__container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.hero__text-content {
	flex: 1 1 500px;
	padding: 1rem;
}
.hero__title {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}
.hero__subtitle {
	font-size: 1.5rem;
	color: #ffe082;
	margin-bottom: 1rem;
}
.hero__description {
	font-size: 1.125rem;
	line-height: 1.6;
}
.hero__link {
	color: #ffca28;
	text-decoration: underline;
}
.hero__image-wrapper {
	flex: 1 1 400px;
	padding: 1rem;
	text-align: center;
}
.hero__image {
	max-width: 100%;
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.solution,
.problem {
	max-width: 1000px;
	margin: 2rem auto;
	padding: 1rem;
	background-color: #f5f5f5;
	border-radius: 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	color: #212121;
}
.solution__title,
.problem__title {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #1a237e;
}
.problem__subtitle,
.solution__subtitle {
	font-size: 1.25rem;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
	color: #0d47a1;
}
.solution__text,
.problem__text {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	.hero__container {
		flex-direction: column;
		text-align: center;
	}
	.hero__text-content,
	.hero__image-wrapper {
		flex: 1 1 100%;
		padding: 0.5rem;
	}
	.hero__title {
		font-size: 2rem;
	}
	.hero__subtitle {
		font-size: 1.25rem;
	}
}
.trading-mobile-section {
	background: #fff8e1;
	padding: 3rem 1.5rem;
}

.trading-mobile-section__inner {
	max-width: 1140px;
	margin: 0 auto;
}

.trading-mobile-section__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
}

.trading-mobile-section__title {
	font-size: 2.2rem;
	color: #d84315;
}

.trading-mobile-section__image {
	max-width: 400px;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.trading-mobile-section__content {
	margin-top: 2.5rem;
}

.trading-mobile-section__subtitle {
	font-size: 1.4rem;
	color: #4e342e;
	margin-bottom: 1rem;
}

.trading-mobile-section__text {
	font-size: 1rem;
	line-height: 1.7;
	color: #5d4037;
	margin-bottom: 1.25rem;
}

.trading-mobile-section__divider {
	height: 4rem;
}

.trading-cost-section {
	background-color: #fbe9e7;
	padding: 2rem 1.5rem;
	border-radius: 8px;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.trading-cost-section__title {
	font-size: 2rem;
	color: #bf360c;
	margin-bottom: 1.25rem;
}

.trading-cost-section__subtitle {
	font-size: 1.25rem;
	color: #6d4c41;
	margin-bottom: 1rem;
}

.trading-cost-section__text {
	font-size: 1rem;
	color: #4e342e;
	line-height: 1.6;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.trading-mobile-section__header {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}

	.trading-mobile-section__title {
		max-width: 50%;
	}

}
.trading-alert-section {
	padding: 60px 0;
	background-color: #f9f9f9;
}

.trading-alert-section__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.trading-alert-section__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 40px;
}

.trading-alert-section__title {
	font-size: 28px;
	font-weight: 700;
	color: #222;
	margin-bottom: 20px;
}

.trading-alert-section__image {
	max-width: 400px;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trading-alert-section__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.trading-alert-section__subtitle {
	font-size: 22px;
	font-weight: 600;
	color: #333;
}

.trading-alert-section__text {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}
@media (max-width: 1024px) {
	.trading-alert-section__title {
		font-size: 24px;
	}

	.trading-alert-section__subtitle {
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	.trading-alert-section {
		padding: 40px 0;
	}

	.trading-alert-section__title {
		font-size: 22px;
	}

	.trading-alert-section__subtitle {
		font-size: 18px;
	}

	.trading-alert-section__text {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.trading-alert-section {
		padding: 30px 0;
	}

	.trading-alert-section__title {
		font-size: 20px;
	}

	.trading-alert-section__subtitle {
		font-size: 17px;
	}

	.trading-alert-section__text {
		font-size: 14px;
	}

	.trading-alert-section__header {
		margin-bottom: 30px;
	}
}
.trading-cost-section__image {
	max-width: 450px;
}