@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: #0f172a;
	--bg-color-light: #e2e8f0;
	--color-text: #cbd5e1;
	--color-text-active: #38bdf8;
	--color-title: #facc15;
	--color-accent: #4ade80;

	--accent-color-faq: #6366f1;

	--main-bg: #0d1117;
	--card-bg: #f8fafc;
	--accent: #f472b6;
	--accent-light: #fbcfe8;
	--text-dark: #0f172a;
	--text-light: #94a3b8;
	--border-color: #475569;
	--shadow: 0 8px 24px rgba(15, 23, 42, 0.3);

	--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-color: #f9fafc;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #1a1a1a;
}

.faq-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #0d47a1;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq__item {
  background-color: #ffffff;
  border-left: 4px solid #2196f3;
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.faq__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq__question {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0d47a1;
}

.faq__answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.faq-footer {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

.privacy-link {
  color: #2196f3;
  text-decoration: none;
  margin-right: 12px;
}

.privacy-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq__question {
    font-size: 1.05rem;
  }

  .faq__answer {
    font-size: 0.95rem;
  }

  .faq__item {
    padding: 16px 20px;
  }

  .faq-title {
    font-size: 1.6rem;
  }
}

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

  .faq__item {
    padding: 14px 16px;
  }

  .faq__question {
    font-size: 1rem;
  }

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


/* 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;
}
.tradingview-pro {
  background-color: #f4f7fb;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #1c1c1c;
}

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

.tradingview-pro__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #0d47a1;
}

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

.tradingview-pro__image img {
  height: auto;
  border-radius: 8px;
}

.tradingview-pro__heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #263238;
}

.tradingview-pro__subheading {
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #1e88e5;
}

.tradingview-pro__subsubheading {
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #1565c0;
}

.tradingview-pro__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .tradingview-pro__title {
    font-size: 22px;
  }

  .tradingview-pro__heading {
    font-size: 20px;
  }

  .tradingview-pro__subheading,
  .tradingview-pro__subsubheading {
    font-size: 18px;
  }

  .tradingview-pro__text {
    font-size: 15px;
  }
}
.tradingview-tools {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #212121;
}

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

.tradingview-tools__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #0d47a1;
}

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

.tradingview-tools__image img {
  height: auto;
  border-radius: 8px;
}

.tradingview-tools__block {
  margin-bottom: 40px;
}

.tradingview-tools__subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #1e88e5;
  margin-bottom: 15px;
}

.tradingview-tools__subsubtitle {
  font-size: 18px;
  font-weight: 600;
  color: #1565c0;
  margin-top: 25px;
  margin-bottom: 10px;
}

.tradingview-tools__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .tradingview-tools__title {
    font-size: 22px;
  }

  .tradingview-tools__subtitle {
    font-size: 18px;
  }

  .tradingview-tools__subsubtitle {
    font-size: 16px;
  }

  .tradingview-tools__text {
    font-size: 15px;
  }
}

.tradingview-hedgefunds {
  background-color: #fafafa;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #212121;
}

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

.tradingview-hedgefunds__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #0d47a1;
}

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

.tradingview-hedgefunds__image img {
  height: auto;
  border-radius: 8px;
}

.tradingview-hedgefunds__block {
  margin-bottom: 40px;
}

.tradingview-hedgefunds__subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #1e88e5;
  margin-bottom: 15px;
}

.tradingview-hedgefunds__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .tradingview-hedgefunds__title {
    font-size: 22px;
  }

  .tradingview-hedgefunds__subtitle {
    font-size: 18px;
  }

  .tradingview-hedgefunds__text {
    font-size: 15px;
  }
}



.tradingview-training {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #212121;
}

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

.tradingview-training__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #1a237e;
}

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

.tradingview-training__image img {
  height: auto;
  border-radius: 8px;
}

.tradingview-training__block {
  margin-bottom: 40px;
}

.tradingview-training__subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #3949ab;
  margin-bottom: 15px;
}

.tradingview-training__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .tradingview-training__title {
    font-size: 22px;
  }

  .tradingview-training__subtitle {
    font-size: 18px;
  }

  .tradingview-training__text {
    font-size: 15px;
  }
}
.tradingview-pricing {
  background-color: #f5f5f5;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #212121;
}

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

.tradingview-pricing__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #2e3c8c;
}

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

.tradingview-pricing__image img {
  height: auto;
  border-radius: 10px;
}

.tradingview-pricing__block {
  margin-bottom: 40px;
}

.tradingview-pricing__subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #3949ab;
  margin-bottom: 15px;
}

.tradingview-pricing__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .tradingview-pricing__title {
    font-size: 22px;
  }

  .tradingview-pricing__subtitle {
    font-size: 18px;
  }

  .tradingview-pricing__text {
    font-size: 15px;
  }
}
