:root {
	/* Background Colors */
	--bg: #111418;
	--bg-dark: #050607;
	--bg-muted: #1a1f24;
	--bg-light: #2d333b;

	--text: #f2f4f8;
	--text-muted: #7c8795;
	--text-light: #ffffff;
	--text-accent: #ff9800;

	--accent: #ff9800;
	--accent-light: #ffb74d;
	--accent-dark: #e65100;
	--accent-soft: rgba(255, 152, 0, 0.14);
	--accent-muted: rgba(255, 152, 0, 0.32);

	--accent-rgb: 255, 152, 0;
	--accent-dark-rgb: 230, 81, 0;
	--accent-soft-rgb: 255, 152, 0, 0.14;

	--success: #00e676;
	--warning: #ff9800;
	--error: #e53935;
	--info: #42a5f5;

	--bg-alt: #181d23;
	--text-dark: #d1d6dc;
	--text-medium: #a7adb7;

	/* Шрифты и сетка */
	--font-main: 'Merriweather', sans-serif;
	--container-width: 1200px;
	--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;
}
/* === NEW HEADER STYLE === */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #ffffff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	padding: 20px 0;
	z-index: 1000;
	border-bottom: 1px solid #eee;
}

.header .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo span {
	font-size: 1.8rem;
	font-weight: 800;
	color: #1f2937;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nav {
	display: flex;
	align-items: center;
}

.nav-list {
	display: flex;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-link {
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	color: #374151;
	position: relative;
	transition: all 0.3s ease;
}

.nav-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0%;
	height: 2px;
	background-color: #3b82f6;
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-link:hover {
	color: #111827;
}

/* === MOBILE MENU === */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 30px;
	height: 24px;
	cursor: pointer;
	background: none;
	border: none;
}

.menu-toggle span {
	height: 3px;
	width: 100%;
	background-color: #111827;
	transition: 0.3s;
	border-radius: 2px;
}

/* === Responsive === */
@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav-list {
		position: absolute;
		top: 100%;
		right: 0;
		background: #fff;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		flex-direction: column;
		gap: 0;
		transition: max-height 0.3s ease;
		border-top: 1px solid #eee;
	}

	.nav.active .nav-list {
		max-height: 300px;
	}

	.nav-item {
		border-bottom: 1px solid #eee;
		text-align: right;
		padding: 15px 20px;
	}
	.nav-link {
		color: #fff;
	}
}

/* === 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-dark);
		position: absolute;
		top: 100%;
		right: 0;
		width: 400px;
		padding: 1rem;
	}
	.menu-toggle {
		display: flex;
	}
	.nav.active .nav-list {
		display: flex;
	}
}
/* === PAGE HEADER === */
.page-header {
	background: #f9fafb;
	color: #1f2937;
	padding: 40px 0;
	text-align: center;
	border-bottom: 2px solid #e5e7eb;
}

.page-title {
	font-size: 26px;
	font-weight: 700;
	margin: 0;
	color: #111827;
}

/* === PRIVACY SECTION === */
.privacy-content {
	padding: 80px 20px;
	background-color: #ffffff;
}

.privacy-wrapper {
	display: flex;
	flex-direction: row;
	gap: 60px;
	align-items: flex-start;
}

/* === SIDEBAR NAV === */
.privacy-nav {
	position: sticky;
	top: 100px;
	flex: 1;
	background: #f3f4f6;
	padding: 25px 20px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	max-height: 85vh;
	overflow-y: auto;
}

.privacy-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.privacy-nav-list li {
	margin-bottom: 12px;
}

.privacy-nav-list a {
	display: block;
	padding: 10px 14px;
	color: #374151;
	font-size: 0.95rem;
	border-left: 3px solid transparent;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.privacy-nav-list a:hover,
.privacy-nav-list a:focus {
	background-color: #e0f2fe;
	border-left-color: #2563eb;
	color: #1e40af;
}

/* === MAIN DOCUMENT AREA === */
.privacy-document {
	flex: 3;
	background: #f9fafb;
	padding: 50px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.privacy-document h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: #111827;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.privacy-document p {
	font-size: 1rem;
	line-height: 1.6;
	color: #4b5563;
	margin-bottom: 1.5rem;
}

.privacy-document ul {
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.privacy-document ul li {
	list-style-type: disc;
	color: #2563eb;
	font-weight: 500;
	margin-bottom: 0.6rem;
}
/* === CONTACT SECTION === */
.contact-section {
	background-color: #111827;
	color: #f3f4f6;
	padding: 100px 20px;
	font-family: 'Inter', sans-serif;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 40px;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
}
.privacy-document .section-title {
	color: #000;
	font-size: 22px;
}
.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #3b82f6;
	margin-top: 12px;
}

@media (max-width: 1100px) {
	.privacy-nav {
		display: none;
	}
		.privacy-wrapper {
		flex-direction: column;
	}

	.privacy-document {
		padding: 40px 20px;
	}

	.privacy-document h3 {
		font-size: 1.3rem;
	}

	.privacy-document p,
	.privacy-document ul li {
		font-size: 0.95rem;
	}
}

@media (max-width: 768px) {
	.privacy-content {
		padding: 60px 16px;
	}

	.privacy-document {
		padding: 30px 16px;
	}

	.privacy-document h3 {
		font-size: 1.2rem;
	}

	.privacy-document p,
	.privacy-document ul li {
		font-size: 0.9rem;
		line-height: 1.55;
	}
}

@media (max-width: 480px) {
	.privacy-content {
		padding: 50px 12px;
	}

	.privacy-document {
		padding: 24px 12px;
	}

	.privacy-document h3 {
		font-size: 1.1rem;
		margin-top: 1.5rem;
	}

	.privacy-document p,
	.privacy-document ul li {
		font-size: 0.88rem;
	}

	.privacy-document .section-title {
		font-size: 20px;
		text-align: center;
	}

	.privacy-document .section-title::after {
		margin: 10px auto 0;
	}
}
/* === GRID === */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 60px;
	align-items: start;
}

/* === IMAGE === */
.contact-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* === CONTACT INFO BLOCK === */
.contact-info-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-info {
	background-color: #1f2937;
	padding: 30px;
	border-left: 6px solid #3b82f6;
	border-radius: 10px;
	box-shadow: inset 0 0 0 1px #374151;
}

.contact-info p {
	font-size: 1rem;
	line-height: 1.8;
	color: #d1d5db;
	margin: 0;
}

/* === INFO ITEM === */
.info-item {
	margin-bottom: 20px;
}

.info-item h3 {
	font-size: 1.1rem;
	color: #93c5fd;
	margin-bottom: 6px;
	font-weight: 600;
}

.info-item a {
	color: #60a5fa;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.info-item a:hover {
	color: #93c5fd;
	border-bottom-color: #93c5fd;
}

/* === SOCIAL BUTTONS === */
.social-connections {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.social-btn {
	padding: 10px 18px;
	background: #2563eb;
	color: #ffffff;
	border-radius: 8px;
	font-size: 0.95rem;
	text-decoration: none;
	transition: background-color 0.3s ease;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.social-btn:hover {
	background: #1d4ed8;
}

/* === LEARN MORE === */
.learn-more a {
	color: #60a5fa;
	font-weight: 500;
	text-decoration: underline;
}

.learn-more a:hover {
	color: #93c5fd;
}

/* === CONTACT INFO MINI BOX (FROM .contact-info PARENT) === */
.contact-info-box {
	background-color: #374151;
	padding: 16px 20px;
	border-radius: 6px;
	margin-top: 12px;
}

.contact-info-box p {
	color: #e5e7eb;
	font-size: 0.95rem;
	margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
	.section-title {
		font-size: 24px;
		text-align: center;
	}

	.contact-section {
		padding: 60px 16px;
	}

	.contact-info {
		padding: 20px;
	}

	.contact-image img {
		border-radius: 12px;
	}
}
/* === FAQ SECTION NEW STYLE === */
.faq {
	background-color: #f9fafb;
	color: #111827;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	max-width: 860px;
	margin: 80px auto;
	padding: 0 24px;
}

.faq-title {
	font-size: 36px;
	text-align: center;
	font-weight: 800;
	color: #111827;
	margin-bottom: 48px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 2px solid #d1d5db;
	padding-bottom: 16px;
}

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

.faq-item {
	border-bottom: 1px solid #e5e7eb;
	transition: all 0.3s ease;
}

.faq-question {
	background: transparent;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 18px;
	font-weight: 600;
	color: #1f2937;
	padding: 20px 0;
	cursor: pointer;
	position: relative;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	color: #6b7280;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
	content: '-';
	transform: translateY(-50%) rotate(180deg);
	color: #111827;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0;
	transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
	max-height: 400px;
	padding-bottom: 20px;
}

.faq-answer p {
	font-size: 16px;
	line-height: 1.7;
	color: #4b5563;
	margin: 0;
}

/* === Call to Action Below FAQ === */
.faq-preview {
	padding: 80px 0;
	background-color: #ffffff;
	text-align: center;
}

.faq-preview-cta .btn {
	display: inline-block;
	padding: 16px 32px;
	background-color: #111827;
	color: #ffffff;
	border: 2px solid transparent;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.3s, color 0.3s, border 0.3s;
}

.faq-preview-cta .btn:hover {
	background-color: transparent;
	color: #111827;
	border-color: #111827;
}

/* === Responsive === */
@media (max-width: 768px) {
	.faq-title {
		font-size: 24px;
	}

	.faq-question {
		font-size: 16px;
		padding: 16px 0;
	}

	.faq-answer p {
		font-size: 15px;
	}

	.faq-preview-cta .btn {
		width: 100%;
		padding: 14px 0;
	}
}

/* === Link Section: Modern Corporate Style === */
.link-wrapper {
	max-width: 880px;
	margin: 60px auto;
	padding: 0 24px;
	display: flex;
	justify-content: flex-start;
	gap: 32px;
	font-family: 'Segoe UI', Tahoma, sans-serif;
	flex-wrap: wrap;
}

.link-item {
	background-color: #f3f4f6;
	padding: 20px 32px;
	border: 1px solid #d1d5db;
	border-radius: 0;
	transition: background-color 0.3s, border-color 0.3s;
}

.link-item:hover,
.link-item:focus-within {
	background-color: #e5e7eb;
	border-color: #9ca3af;
}

.link-item__link {
	color: #1f2937;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	display: inline-block;
	position: relative;
	padding-bottom: 2px;
	transition: color 0.3s;
}

.link-item__link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #1f2937;
	transition: width 0.3s ease;
}

.link-item__link:hover::after,
.link-item__link:focus::after {
	width: 100%;
}

.link-item__link:hover,
.link-item__link:focus {
	color: #111827;
	outline: none;
}

/* === Flex-End Utility Block === */
.flex-end {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
	margin: 40px 0;
}

.flex-end a {
	color: #1f2937;
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s, color 0.3s;
}

.flex-end a:hover {
	border-color: #1f2937;
	color: #111827;
}

/* === Responsive Adjustments === */
@media (max-width: 600px) {
	.link-wrapper {
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
		padding: 0 20px;
	}
	.link-item {
		width: 100%;
		text-align: left;
		padding: 18px 24px;
	}
	.flex-end {
		justify-content: center;
	}
}
/* === Modern Clean Banner Section === */
.banner {
	background-color: #0f1117;
	color: #e5e7eb;
	padding: 80px 24px;
	max-width: 1280px;
	margin: 0 auto;
	font-family: 'IBM Plex Mono', monospace;
}

.banner__container {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

/* Header Block: Title + Image */
.banner_top {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 40px;
}

/* Content */
.banner__content {
	text-align: left;
	width: 100%;
}

.banner__title {
	font-size: 28px;
	line-height: 1.3;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 24px;
	letter-spacing: -0.5px;
}

.banner__intro {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #cbd5e1;
	margin-top: 24px;
}

/* Mobile Image Below Title */
.banner__image-mobile {
	display: block;
	width: 100%;
	max-width: 420px;
	border-radius: 0;
	margin: 32px 0;
	border: 1px solid #1f2937;
	box-shadow: none;
}

/* Desktop Image */
.banner__image-wrapper {
	display: none;
}

.banner__image {
	width: 100%;
	display: block;
}

/* Subheaders */
.banner__subtitle {
	font-size: 2rem;
	color: #ffffff;
	font-weight: 600;
	margin: 40px 0 20px;
	letter-spacing: -0.25px;
}

.banner__subtitle-mini {
	font-size: 1.25rem;
	color: #facc15;
	font-weight: 500;
	margin: 32px 0 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Paragraphs */
.banner__text {
	font-size: 1.0625rem;
	line-height: 1.9;
	color: #94a3b8;
	margin-bottom: 20px;
}

/* Responsive Grid on Desktop */
@media (min-width: 1024px) {
	.banner__container {
		gap: 80px;
	}

	.banner_top {
		flex-direction: row;
		align-items: flex-start;
		gap: 60px;
	}

	.banner__content {
		flex: 1 1 60%;
		text-align: left;
	}

	.banner__image-wrapper {
		display: block;
		flex: 1 1 40%;
		border: 1px solid #1e293b;
		padding: 0;
		overflow: hidden;
		box-shadow: 0 0 0 1px #1e293b;
	}

	.banner__image-mobile {
		display: none;
	}

	.banner__title {
		font-size: 32px;
	}

	.banner__subtitle {
		font-size: 2.5rem;
	}

	.banner__text {
		font-size: 1.125rem;
	}
}
/* === NEW APP SECTION === */
.app-section {
	background: radial-gradient(circle at top left, #0f0f0f, #1a1a1a);
	backdrop-filter: blur(12px);
	border: none;
	padding: 100px 6vw;
	color: #f5f5f5;
	font-family: 'Segoe UI', sans-serif;
	max-width: 100%;
	margin: 0;
	border-radius: 0;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 60px 100px rgba(0, 0, 0, 0.5);
	transition: background 0.4s ease;
}

.app-section__wrapper {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

.app-section__heading {
	font-size: 3rem;
	font-weight: 800;
	text-align: center;
	color: #ffffff;
	margin-bottom: 2.5rem;
	letter-spacing: 0.02em;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.app-section__lead {
	font-size: 1.35rem;
	line-height: 1.9;
	color: #cccccc;
	margin: 0 auto 3rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	padding: 1.5rem 2rem;
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	max-width: 800px;
	text-align: center;
}

.app-section__subheading {
	font-size: 2rem;
	font-weight: 700;
	margin: 4rem 0 1.5rem;
	color: #9ee3ff;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.app-section__text {
	font-size: 1.2rem;
	line-height: 2;
	color: #dddddd;
	margin-bottom: 2rem;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
}

/* === Responsive === */
@media (max-width: 1024px) {
	.app-section {
		padding: 80px 4vw;
	}
	.app-section__heading {
		font-size: 2.5rem;
	}
	.app-section__subheading {
		font-size: 1.75rem;
	}
}

@media (max-width: 768px) {
	.app-section {
		padding: 64px 20px;
		box-shadow: none;
	}

	.app-section__heading {
		font-size: 2rem;
	}

	.app-section__lead {
		font-size: 1.1rem;
		padding: 1rem;
	}

	.app-section__subheading {
		font-size: 1.5rem;
	}

	.app-section__text {
		font-size: 1.05rem;
	}
}

@media (max-width: 480px) {
	.app-section__heading {
		font-size: 1.75rem;
	}

	.app-section__lead {
		font-size: 1rem;
		padding: 0.75rem;
	}

	.app-section__subheading {
		font-size: 1.25rem;
	}

	.app-section__text {
		font-size: 0.95rem;
	}
}
/* === NEW API SECTION === */
.api-section {
	background: linear-gradient(135deg, #0d0d0d, #1e1e1e);
	padding: 80px 6vw;
	color: #f0f0f0;
	font-family: 'Poppins', sans-serif;
	max-width: 100%;
	margin: 0;
	border-radius: 0;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 40px 80px rgba(0, 0, 0, 0.7);
}

.api-section__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

.api-section__text {
	background-color: rgba(255, 255, 255, 0.02);
	padding: 2rem;
	border-radius: 16px;
	backdrop-filter: blur(12px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.api-section__title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1.5rem;
	letter-spacing: 0.03em;
	text-shadow: 0 0 8px #00e0ff88;
}

.api-section__lead {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 1rem;
	color: #dddddd;
}

.api-section__subtitle {
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 600;
	color: #00e0ff;
	position: relative;
}

.api-section__subtitle::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #00e0ff, #0066ff);
	border-radius: 2px;
}

.api-section__paragraph {
	font-size: 1.1rem;
	line-height: 1.75;
	color: #bbbbbb;
	margin-bottom: 1.25rem;
}

.api-section__image-wrapper {
	perspective: 1000px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.api-section__image {
	width: 320px;
	max-width: 100%;
	border-radius: 14px;
	transform: rotateY(-12deg) rotateX(6deg);
	box-shadow: 0 20px 50px rgba(0, 224, 255, 0.2);
	transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.api-section__image:hover {
	transform: rotateY(0deg) rotateX(0deg) scale(1.03);
	box-shadow: 0 25px 60px rgba(0, 224, 255, 0.4);
}

/* === Responsive === */
@media (max-width: 1024px) {
	.api-section__container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.api-section__image {
		width: 260px;
	}
}

@media (max-width: 600px) {
	.api-section {
		padding: 60px 20px;
	}

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

	.api-section__lead,
	.api-section__paragraph {
		font-size: 1rem;
	}

	.api-section__subtitle {
		font-size: 1.25rem;
	}

	.api-section__image {
		width: 220px;
	}
}
/* === NEW INSIGHTS SECTION === */
.insights-section {
	background: radial-gradient(circle at top left, #1a1a1a, #111);
	padding: 5rem 6vw;
	color: #eeeeee;
	font-family: 'Inter', sans-serif;
	max-width: 100%;
	margin: 0;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 20px 60px rgba(0, 0, 0, 0.6);
}

.insights-section__container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

.insights-section__image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.insights-section__image {
	width: 240px;
	height: 240px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 12px 40px rgba(0, 255, 204, 0.25);
	border: 5px solid rgba(0, 255, 204, 0.2);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.insights-section__image:hover {
	transform: scale(1.05);
	box-shadow: 0 16px 50px rgba(0, 255, 204, 0.4);
}

.insights-section__content {
	max-width: 1100px;
	margin: 0 auto;
}

.insights-section__title {
	font-size: 2.75rem;
	font-weight: 800;
	color: #00ffcc;
	margin-bottom: 1rem;
	text-shadow: 0 0 6px rgba(0, 255, 204, 0.4);
}

.insights-section__subtitle {
	font-size: 1.5rem;
	color: #ffffff;
	margin: 2rem 0 1rem;
	font-weight: 600;
	position: relative;
	padding-left: 1rem;
}

.insights-section__subtitle::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.4rem;
	width: 6px;
	height: 80%;
	background-color: #00ffcc;
	border-radius: 3px;
}

.insights-section__paragraph {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #cccccc;
	margin-bottom: 1.5rem;
	letter-spacing: 0.01em;
}

/* === Responsive === */
@media (max-width: 1024px) {
	.insights-section__container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}

	.insights-section__image {
		width: 180px;
		height: 180px;
	}
}

@media (max-width: 600px) {
	.insights-section {
		padding: 3rem 1.5rem;
	}

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

	.insights-section__subtitle {
		font-size: 1.25rem;
	}

	.insights-section__paragraph {
		font-size: 1rem;
	}
}

/* EDU RESOURCES */

.edu-resources {
	max-width: var(--container-width);
	margin: 0 auto 4rem;
	padding: 3rem var(--container-padding);
	background-color: var(--bg-alt);
	border-radius: 14px;
	box-shadow: 0 6px 30px rgba(var(--accent-rgb), 0.12);
	display: flex;
	gap: 3rem;
	align-items: center;
	font-family: var(--font-main);
	color: var(--text-dark);
}

.edu-resources__content {
	flex: 1 1 480px;
	min-width: 280px;
}

.edu-resources__title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	color: var(--accent-light);
	letter-spacing: 0.02em;
}

.edu-resources__subtitle {
	font-size: 1.3rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 600;
	color: var(--accent);
	border-bottom: 2px solid var(--accent);
	padding-bottom: 0.3rem;
	width: fit-content;
}

.edu-resources__text {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	color: var(--text-medium);
}

.edu-resources__image-wrapper {
	flex: 0 0 260px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.edu-resources__image {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.18);
	object-fit: contain;
}

/* Адаптив */
@media (max-width: 768px) {
	.edu-resources {
		flex-direction: column;
		padding: 2rem 1.5rem;
	}

	.edu-resources__image-wrapper {
		width: 85%;
		margin-bottom: 2rem;
	}

	.edu-resources__content {
		width: 100%;
	}
}
/* SECURITY-INTEGRITY */

.security-integrity {
	max-width: var(--container-width);
	margin: 0 auto 5rem;
	padding: 3rem var(--container-padding);
	background-color: var(--bg-light);
	border-radius: 16px;
	box-shadow: 0 8px 28px rgba(var(--accent-rgb), 0.15);
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: var(--font-main);
	color: var(--text-dark);
	text-align: left;
}

.security-integrity__text-block {
	max-width: 720px;
}

.security-integrity__title {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--accent-dark);
	margin-bottom: 1.2rem;
}

.security-integrity__subtitle {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--accent);
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	border-bottom: 3px solid var(--accent);
	width: fit-content;
	padding-bottom: 0.3rem;
}

.security-integrity__paragraph {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-medium);
	margin-bottom: 1.1rem;
}

.security-integrity__image-container {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	width: 100%;
}

.security-integrity__image {
	max-width: 320px;
	border-radius: 14px;
	box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.2);
	object-fit: contain;
}

/* Адаптив */
@media (max-width: 768px) {
	.security-integrity {
		padding: 2rem 1.5rem;
	}

	.security-integrity__text-block {
		max-width: 100%;
	}

	.security-integrity__image {
		max-width: 90vw;
	}
}
/* chat analysis */
.chart-analysis {
	background-color: var(--bg);
	color: var(--text);
	padding: 60px 0;
}

.chart-analysis .container {
	max-width: var(--container-width);
	padding: 0 var(--container-padding);
	margin: 0 auto;
}

.chart-analysis__title {
	font-size: 32px;
	line-height: 1.3;
	color: var(--text);
	margin-bottom: 24px;
	font-family: var(--font-main);
}

.chart-analysis__subtitle {
	font-size: 24px;
	line-height: 1.4;
	color: var(--text-accent);
	margin-top: 40px;
	margin-bottom: 16px;
}

.chart-analysis__text {
	font-size: 18px;
	line-height: 1.7;
	color: var(--text-light);
	margin-bottom: 20px;
}

/* Адаптив */
@media (max-width: 768px) {
	.chart-analysis {
		padding: 40px 0;
	}

	.chart-analysis__title {
		font-size: 26px;
	}

	.chart-analysis__subtitle {
		font-size: 20px;
	}

	.chart-analysis__text {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.chart-analysis__title {
		font-size: 22px;
	}

	.chart-analysis__subtitle {
		font-size: 18px;
	}

	.chart-analysis__text {
		font-size: 15px;
	}
}
.feature-block {
	margin-bottom: 32px;
}

.feature-title {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--accent-dark);
	margin-bottom: 12px;
	border-left: 4px solid var(--accent);
	padding-left: 12px;
}

.feature-text {
	color: var(--text-muted);
	font-size: 1rem;
	margin-bottom: 16px;
	max-width: 720px;
}

/* Адаптивность */
@media (max-width: 768px) {
	.feature-title {
		font-size: 1.3rem;
	}
	.feature-text {
		font-size: 0.9rem;
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.feature-title {
		font-size: 1.1rem;
	}
	.feature-text {
		font-size: 0.85rem;
	}
}
