.hero {
	position: relative;
	min-height: 100vh;
	background: url('../img/bg.jpg') center / cover no-repeat;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(15, 23, 42, 0.75),
		rgba(15, 23, 42, 0.45)
	);
}

.hero-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	padding: 0 24px;
	margin: 0 auto;
}

.hero-content {
	max-width: 720px;
	color: #f8fafc;
	animation: fadeUp 1.2s ease-out both;
}

.hero-eyebrow {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 0.9rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #a5f3fc;
	opacity: 0;
	animation: fadeIn 1s ease forwards;
}

.hero-title {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	line-height: 1.15;
	margin-bottom: 24px;
}

.hero-title span {
	color: #67e8f9;
}

.hero-description {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #e5e7eb;
	margin-bottom: 36px;
	opacity: 0;
	animation: fadeUp 1.4s ease-out forwards;
	animation-delay: 0.3s;
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeUp 1.6s ease-out forwards;
	animation-delay: 0.5s;
}

.btn-primary,
.btn-secondary {
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-primary {
	background: #67e8f9;
	color: #0f172a;
	font-weight: 600;
}

.btn-primary:hover {
	background: #22d3ee;
	transform: translateY(-2px);
}

.btn-secondary {
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #f8fafc;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.08);
}

/* Animations */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.hero {
		text-align: center;
	}

	.hero-content {
		margin: 0 auto;
	}

	.hero-actions {
		justify-content: center;
	}
}

.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 50;
	background: rgba(15, 23, 42, 0.7);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

/* Logo */
.logo a {
	font-size: 1.25rem;
	font-weight: 600;
	text-decoration: none;
	color: #f8fafc;
}

.logo span {
	color: #67e8f9;
	margin-left: 4px;
}

/* Navigation */
.main-nav ul {
	display: flex;
	gap: 28px;
	list-style: none;
}

.main-nav a {
	text-decoration: none;
	font-size: 0.95rem;
	color: #e5e7eb;
	transition: color 0.3s ease;
}

.main-nav a:hover {
	color: #67e8f9;
}

/* Contacts */
.header-contacts {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-phone {
	color: #a5f3fc;
	text-decoration: none;
	font-size: 0.9rem;
	white-space: nowrap;
}

.header-socials {
	display: flex;
	gap: 10px;
}

.header-socials a {
	font-size: 0.75rem;
	text-decoration: none;
	color: #e5e7eb;
	border: 1px solid rgba(255, 255, 255, 0.25);
	padding: 6px 8px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.header-socials a:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #67e8f9;
}

/* Burger */
.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}

.burger span {
	width: 22px;
	height: 2px;
	background: #f8fafc;
	border-radius: 2px;
}

/* Mobile */
@media (max-width: 900px) {
	.main-nav {
		position: fixed;
		top: 40px;
		right: 0;
		width: 100%;
		background: rgba(15, 23, 42, 0.95);
		transform: translateY(-120%);
		transition: transform 0.4s ease;
	}

	.main-nav.active {
		transform: translateY(0);
	}

	.main-nav ul {
		flex-direction: column;
		padding: 24px;
		gap: 20px;
	}

	.header-contacts {
		display: none;
	}

	.burger {
		display: flex;
	}
}

.about {
	position: relative;
	padding: 90px 0;
	background: #0b1220;
	color: #e5e7eb;
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.section-eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #a5f3fc;
}

.section-title {
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	line-height: 1.2;
	margin-bottom: 14px;
	color: #f8fafc;
}

.section-subtitle {
	max-width: 820px;
	line-height: 1.7;
	color: #cbd5e1;
}

.about-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 24px;
	margin-top: 44px;
}

/* Main card */
.about-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 26px;
	backdrop-filter: blur(10px);
}

.about-card h3 {
	margin: 0 0 12px;
	color: #f8fafc;
	font-size: 1.25rem;
}

.about-card p {
	line-height: 1.75;
	color: #d1d5db;
	margin-bottom: 16px;
}

.about-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.about-list li {
	position: relative;
	padding-left: 22px;
	line-height: 1.6;
	color: #e5e7eb;
}

.about-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #67e8f9;
	transform: translateY(-50%);
	opacity: 0.9;
}

/* Right stack */
.about-stack {
	display: grid;
	gap: 16px;
}

.about-mini {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 18px 18px;
}

.about-mini h4 {
	margin: 0 0 8px;
	color: #f8fafc;
	font-size: 1.05rem;
}

.about-mini p {
	margin: 0;
	line-height: 1.7;
	color: #cbd5e1;
}

/* CTA */
.about-cta {
	margin-top: 28px;
}

.about-cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px;
	border-radius: 18px;
	border: 1px solid rgba(103, 232, 249, 0.18);
	background: linear-gradient(
		120deg,
		rgba(103, 232, 249, 0.12),
		rgba(255, 255, 255, 0.02)
	);
}

.about-cta-box h3 {
	margin: 0 0 6px;
	color: #f8fafc;
	font-size: 1.2rem;
}

.about-cta-box p {
	margin: 0;
	color: #d1d5db;
	line-height: 1.6;
}

/* Button (same as hero) */
.btn-primary {
	padding: 14px 22px;
	border-radius: 999px;
	text-decoration: none;
	background: #67e8f9;
	color: #0f172a;
	font-weight: 600;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-primary:hover {
	background: #22d3ee;
	transform: translateY(-2px);
}

/* Reveal animations */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
	transition-delay: var(--d, 0s);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
	.about-grid {
		grid-template-columns: 1fr;
	}

	.about-cta-box {
		flex-direction: column;
		align-items: flex-start;
	}
}

.faq {
	padding: 90px 0;
	background: #0b1220;
	color: #e5e7eb;
}

.faq-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.faq-head {
	max-width: 900px;
}

.faq-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 24px;
	margin-top: 44px;
}

/* Accordion */
.faq-accordion {
	display: grid;
	gap: 14px;
}

.faq-item {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.faq-question {
	width: 100%;
	text-align: left;
	padding: 18px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	background: transparent;
	border: none;
	color: #f8fafc;
	font-size: 1rem;
	line-height: 1.4;
}

.faq-question:hover {
	background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
	width: 18px;
	height: 18px;
	position: relative;
	flex: 0 0 18px;
	opacity: 0.9;
}

.faq-icon::before,
.faq-icon::after {
	content: '';
	position: absolute;
	background: #67e8f9;
	border-radius: 2px;
}

.faq-icon::before {
	width: 18px;
	height: 2px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.faq-icon::after {
	width: 2px;
	height: 18px;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}

/* Answer animation */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.faq-answer p {
	margin: 0;
	padding: 0 18px 18px;
	line-height: 1.75;
	color: #cbd5e1;
}

/* Open state */
.faq-item.is-open .faq-answer {
	max-height: 260px;
}

.faq-item.is-open .faq-icon::after {
	opacity: 0;
}

/* Side card */
.faq-side-card {
	background: linear-gradient(
		120deg,
		rgba(103, 232, 249, 0.12),
		rgba(255, 255, 255, 0.02)
	);
	border: 1px solid rgba(103, 232, 249, 0.18);
	border-radius: 18px;
	padding: 22px;
}

.faq-side-card h3 {
	margin: 0 0 10px;
	color: #f8fafc;
	font-size: 1.25rem;
}

.faq-side-card p {
	margin: 0 0 14px;
	color: #d1d5db;
	line-height: 1.7;
}

.faq-side-list {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	display: grid;
	gap: 10px;
}

.faq-side-list li {
	position: relative;
	padding-left: 22px;
	color: #e5e7eb;
}

.faq-side-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #67e8f9;
	transform: translateY(-50%);
	opacity: 0.9;
}

/* Reveal (same logic) */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
	transition-delay: var(--d, 0s);
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
	.faq-grid {
		grid-template-columns: 1fr;
	}
}

.services {
	padding: 90px 0;
	background: #0b1220;
	color: #e5e7eb;
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.services-head {
	max-width: 900px;
}

.services-grid {
	margin-top: 44px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

/* Card */
.service-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 22px;
	backdrop-filter: blur(10px);
	transition:
		transform 0.35s ease,
		border-color 0.35s ease,
		background 0.35s ease;
	position: relative;
	overflow: hidden;
}

.service-card::after {
	content: '';
	position: absolute;
	inset: -1px;
	background: radial-gradient(
		520px 160px at 20% 0%,
		rgba(103, 232, 249, 0.18),
		transparent 55%
	);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(103, 232, 249, 0.22);
	background: rgba(255, 255, 255, 0.05);
}

.service-card:hover::after {
	opacity: 1;
}

.service-top h3 {
	margin: 10px 0 10px;
	color: #f8fafc;
	font-size: 1.15rem;
}

.service-top p {
	margin: 0 0 16px;
	color: #cbd5e1;
	line-height: 1.7;
}

/* Badge */
.service-badge {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0f172a;
	background: #67e8f9;
	border-radius: 999px;
	padding: 6px 10px;
	font-weight: 600;
}

/* List */
.service-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.service-list li {
	position: relative;
	padding-left: 22px;
	color: #e5e7eb;
	line-height: 1.55;
}

.service-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #67e8f9;
	transform: translateY(-50%);
	opacity: 0.9;
}

/* CTA */
.services-cta {
	margin-top: 24px;
}

.services-cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px;
	border-radius: 18px;
	border: 1px solid rgba(103, 232, 249, 0.18);
	background: linear-gradient(
		120deg,
		rgba(103, 232, 249, 0.12),
		rgba(255, 255, 255, 0.02)
	);
}

.services-cta-box h3 {
	margin: 0 0 6px;
	color: #f8fafc;
	font-size: 1.2rem;
}

.services-cta-box p {
	margin: 0;
	color: #d1d5db;
	line-height: 1.6;
}

.services-cta-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Buttons (same family) */
.btn-primary,
.btn-secondary {
	padding: 14px 22px;
	border-radius: 999px;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-primary {
	background: #67e8f9;
	color: #0f172a;
	font-weight: 600;
}

.btn-primary:hover {
	background: #22d3ee;
	transform: translateY(-2px);
}

.btn-secondary {
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #f8fafc;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.08);
}

/* Reveal */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
	transition-delay: var(--d, 0s);
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 1000px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 650px) {
	.services-grid {
		grid-template-columns: 1fr;
	}

	.services-cta-box {
		flex-direction: column;
		align-items: flex-start;
	}
}

.programs {
	padding: 90px 0;
	background: #0b1220;
	color: #e5e7eb;
}

.programs-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.programs-head {
	max-width: 900px;
}

/* Tabs */
.programs-tabs {
	margin-top: 26px;
	display: inline-flex;
	gap: 8px;
	padding: 6px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
}

.tab-btn {
	border: none;
	cursor: pointer;
	padding: 10px 14px;
	border-radius: 999px;
	background: transparent;
	color: #e5e7eb;
	font-size: 0.92rem;
	transition: all 0.3s ease;
}

.tab-btn:hover {
	background: rgba(255, 255, 255, 0.06);
}

.tab-btn.is-active {
	background: #67e8f9;
	color: #0f172a;
	font-weight: 600;
}

/* Panels */
.programs-panels {
	margin-top: 22px;
}

.tab-panel {
	display: none;
}

.tab-panel.is-active {
	display: block;
}

/* Grid */
.programs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

/* Card */
.program-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 22px;
	backdrop-filter: blur(10px);
	transition:
		transform 0.35s ease,
		border-color 0.35s ease,
		background 0.35s ease;
	position: relative;
	overflow: hidden;
}

.program-card::after {
	content: '';
	position: absolute;
	inset: -1px;
	background: radial-gradient(
		520px 160px at 20% 0%,
		rgba(103, 232, 249, 0.18),
		transparent 55%
	);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.program-card:hover {
	transform: translateY(-4px);
	border-color: rgba(103, 232, 249, 0.22);
	background: rgba(255, 255, 255, 0.05);
}

.program-card:hover::after {
	opacity: 1;
}

.program-top h3 {
	margin: 10px 0 10px;
	color: #f8fafc;
	font-size: 1.15rem;
}

.program-top p {
	margin: 0 0 16px;
	color: #cbd5e1;
	line-height: 1.7;
}

/* Tag */
.program-tag {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0f172a;
	background: #67e8f9;
	border-radius: 999px;
	padding: 6px 10px;
	font-weight: 700;
}

/* Featured */
.program-card.featured {
	border-color: rgba(103, 232, 249, 0.22);
	background: linear-gradient(
		120deg,
		rgba(103, 232, 249, 0.12),
		rgba(255, 255, 255, 0.03)
	);
}

.program-card.featured .program-tag {
	background: #a5f3fc;
}

/* List */
.program-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.program-list li {
	position: relative;
	padding-left: 22px;
	color: #e5e7eb;
	line-height: 1.55;
}

.program-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #67e8f9;
	transform: translateY(-50%);
	opacity: 0.9;
}

/* Meta pills */
.program-meta {
	margin-top: 14px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.meta-pill {
	font-size: 0.78rem;
	color: #cbd5e1;
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
}

/* CTA inside card */
.program-cta {
	display: inline-block;
	margin-top: 16px;
}

/* Footer note */
.programs-foot {
	margin-top: 18px;
}

.programs-note {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	padding: 14px 16px;
	color: #cbd5e1;
	line-height: 1.6;
}

.programs-note strong {
	color: #f8fafc;
}

/* Buttons (same family) */
.btn-primary,
.btn-secondary {
	padding: 14px 22px;
	border-radius: 999px;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-primary {
	background: #67e8f9;
	color: #0f172a;
	font-weight: 600;
}

.btn-primary:hover {
	background: #22d3ee;
	transform: translateY(-2px);
}

.btn-secondary {
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #f8fafc;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.08);
}

/* Reveal */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
	transition-delay: var(--d, 0s);
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 1000px) {
	.programs-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 650px) {
	.programs-grid {
		grid-template-columns: 1fr;
	}

	.programs-tabs {
		width: 100%;
		justify-content: space-between;
	}

	.tab-btn {
		flex: 1;
		text-align: center;
	}
}

.cta {
	padding: 90px 0;
	background: #0b1220;
	color: #e5e7eb;
}

.cta-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.cta-wrap {
	position: relative;
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 18px;
	padding: 26px;
	border-radius: 22px;
	border: 1px solid rgba(103, 232, 249, 0.18);
	background: linear-gradient(
		120deg,
		rgba(103, 232, 249, 0.14),
		rgba(255, 255, 255, 0.03)
	);
	overflow: hidden;
}

/* subtle glow */
.cta-wrap::before {
	content: '';
	position: absolute;
	inset: -2px;
	background: radial-gradient(
		680px 220px at 20% 10%,
		rgba(103, 232, 249, 0.22),
		transparent 55%
	);
	opacity: 0.9;
	pointer-events: none;
}

.cta-content,
.cta-side {
	position: relative;
	z-index: 1;
}

.cta-eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #a5f3fc;
}

.cta-title {
	margin: 0 0 12px;
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	line-height: 1.2;
	color: #f8fafc;
}

.cta-text {
	margin: 0 0 18px;
	line-height: 1.75;
	color: #d1d5db;
	max-width: 760px;
}

.cta-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

/* trust bullets */
.cta-trust {
	display: grid;
	gap: 10px;
	padding-top: 6px;
}

.trust-item {
	display: flex;
	gap: 10px;
	align-items: center;
	color: #e5e7eb;
}

.trust-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #67e8f9;
	opacity: 0.95;
}

/* side card */
.cta-card {
	background: rgba(15, 23, 42, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	padding: 18px;
	backdrop-filter: blur(10px);
}

.cta-card h3 {
	margin: 0 0 10px;
	color: #f8fafc;
	font-size: 1.1rem;
}

.cta-steps {
	margin: 0 0 14px;
	padding-left: 18px;
	display: grid;
	gap: 8px;
	color: #cbd5e1;
	line-height: 1.6;
}

.cta-steps strong {
	color: #f8fafc;
}

.cta-mini {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 12px;
	margin-top: 10px;
	margin-bottom: 14px;
}

.cta-mini-title {
	margin: 0 0 6px;
	color: #cbd5e1;
	font-size: 0.9rem;
}

.cta-phone {
	color: #a5f3fc;
	text-decoration: none;
	font-weight: 600;
}

.cta-phone:hover {
	color: #67e8f9;
}

.cta-card-btn {
	display: inline-block;
}

/* Buttons (same family) */
.btn-primary,
.btn-secondary {
	padding: 14px 22px;
	border-radius: 999px;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-primary {
	background: #67e8f9;
	color: #0f172a;
	font-weight: 600;
}

.btn-primary:hover {
	background: #22d3ee;
	transform: translateY(-2px);
}

.btn-secondary {
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #f8fafc;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.08);
}

/* Reveal */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
	.cta-wrap {
		grid-template-columns: 1fr;
		padding: 22px;
	}
}

.site-footer {
	background: #070c16;
	color: #e5e7eb;
	padding: 70px 0 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr 1.1fr;
	gap: 18px;
}

/* Brand */
.footer-logo {
	display: inline-block;
	font-size: 1.25rem;
	font-weight: 700;
	text-decoration: none;
	color: #f8fafc;
	margin-bottom: 10px;
}

.footer-logo span {
	color: #67e8f9;
	margin-left: 4px;
}

.footer-desc {
	margin: 0 0 14px;
	line-height: 1.75;
	color: #cbd5e1;
}

.footer-desc-small {
	margin: 0 0 12px;
	line-height: 1.7;
	color: #cbd5e1;
	font-size: 0.95rem;
}

.footer-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.badge {
	font-size: 0.78rem;
	color: #cbd5e1;
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
}

/* Columns */
.footer-col {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 18px;
	backdrop-filter: blur(10px);
}

.footer-brand {
	padding: 20px;
}

.footer-title {
	margin: 0 0 12px;
	color: #f8fafc;
	font-size: 1rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.footer-links a {
	color: #cbd5e1;
	text-decoration: none;
	transition: color 0.25s ease;
	line-height: 1.4;
}

.footer-links a:hover {
	color: #67e8f9;
}

/* Contact */
.footer-contact .contact-item {
	margin-bottom: 12px;
}

.contact-label {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #a5f3fc;
	margin-bottom: 6px;
}

.contact-link {
	display: inline-block;
	color: #f8fafc;
	text-decoration: none;
	font-weight: 600;
}

.contact-link:hover {
	color: #67e8f9;
}

.contact-text {
	margin: 0;
	color: #cbd5e1;
	line-height: 1.6;
}

.footer-socials {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.footer-socials a {
	font-size: 0.75rem;
	text-decoration: none;
	color: #e5e7eb;
	border: 1px solid rgba(255, 255, 255, 0.22);
	padding: 7px 9px;
	border-radius: 8px;
	transition: all 0.25s ease;
}

.footer-socials a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #67e8f9;
	border-color: rgba(103, 232, 249, 0.28);
}

/* Newsletter */
.newsletter-form {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 6px;
}

.newsletter-form input {
	flex: 1;
	min-width: 220px;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.03);
	color: #f8fafc;
	outline: none;
}

.newsletter-form input::placeholder {
	color: rgba(203, 213, 225, 0.75);
}

.footer-note {
	margin: 10px 0 0;
	color: #cbd5e1;
	font-size: 0.88rem;
	line-height: 1.5;
}

.footer-note a {
	color: #a5f3fc;
	text-decoration: none;
}

.footer-note a:hover {
	color: #67e8f9;
}

/* Divider + bottom */
.footer-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin: 18px 0;
}

.footer-bottom {
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 18px;
	align-items: start;
}

.footer-legal p {
	margin: 0 0 10px;
	color: #cbd5e1;
	line-height: 1.6;
}

.footer-legal p:first-child {
	color: #f8fafc;
}

.footer-disclaimer {
	font-size: 0.9rem;
}

.footer-policy {
	display: grid;
	gap: 10px;
	justify-items: start;
}

.policy-link {
	color: #cbd5e1;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 9px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	transition: all 0.25s ease;
}

.policy-link:hover {
	color: #67e8f9;
	border-color: rgba(103, 232, 249, 0.22);
	background: rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn-primary {
	padding: 12px 16px;
	border-radius: 999px;
	font-size: 0.95rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	background: #67e8f9;
	color: #0f172a;
	font-weight: 700;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-primary:hover {
	background: #22d3ee;
	transform: translateY(-2px);
}

/* Reveal */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
	transition-delay: var(--d, 0s);
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Toast */
.toast {
	position: fixed;
	left: 24px;
	bottom: 24px;
	z-index: 999;
	display: none;
}

.toast.show {
	display: block;
	animation: toastIn 0.35s ease both;
}

.toast-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(15, 23, 42, 0.92);
	border: 1px solid rgba(103, 232, 249, 0.2);
	color: #f8fafc;
	backdrop-filter: blur(10px);
}

.toast-close {
	margin-left: 8px;
	border: none;
	background: transparent;
	color: #cbd5e1;
	cursor: pointer;
	font-size: 0.95rem;
}

.toast-close:hover {
	color: #67e8f9;
}

@keyframes toastIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 1100px) {
	.footer-top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 700px) {
	.footer-top {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		grid-template-columns: 1fr;
	}

	.footer-policy {
		grid-auto-flow: row;
	}
}

.cookie-popup {
	position: fixed;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 9999;
	display: none;
}

.cookie-popup.show {
	display: block;
	animation: cookieIn 0.35s ease both;
}

.cookie-popup__content {
	max-width: 980px;
	margin: 0 auto;
	padding: 14px 16px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(15, 23, 42, 0.92);
	backdrop-filter: blur(10px);
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
}

.cookie-popup__text {
	margin: 0;
	color: #cbd5e1;
	line-height: 1.5;
	font-size: 0.95rem;
}

.cookie-popup__text a {
	color: #67e8f9;
	text-decoration: none;
}

.cookie-popup__text a:hover {
	text-decoration: underline;
}

.cookie-popup__btn {
	padding: 10px 14px;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	background: #67e8f9;
	color: #0f172a;
	font-weight: 700;
	transition:
		transform 0.25s ease,
		background 0.25s ease;
	white-space: nowrap;
}

.cookie-popup__btn:hover {
	background: #22d3ee;
	transform: translateY(-1px);
}

@keyframes cookieIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 700px) {
	.cookie-popup__content {
		flex-direction: column;
		align-items: flex-start;
	}
	.cookie-popup__btn {
		width: 100%;
	}
}

.contact {
	padding: 90px 0;
	background: #0b1220;
	color: #e5e7eb;
}

.contact-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

.contact-head {
	max-width: 800px;
	margin-bottom: 40px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 24px;
}

/* Info */
.contact-info {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 22px;
}

.contact-info h3 {
	margin: 0 0 16px;
	color: #f8fafc;
}

.info-item {
	margin-bottom: 14px;
}

.info-label {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #a5f3fc;
	margin-bottom: 4px;
}

.contact-info a {
	color: #f8fafc;
	text-decoration: none;
	font-weight: 600;
}

.contact-info a:hover {
	color: #67e8f9;
}

.contact-info p {
	margin: 0;
	color: #cbd5e1;
}

.info-note {
	margin-top: 18px;
	font-size: 0.9rem;
	color: #cbd5e1;
}

/* Form */
.contact-form-wrap {
	position: relative;
}

.contact-form {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 22px;
	display: grid;
	gap: 14px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.contact-form input,
.contact-form textarea {
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.03);
	color: #f8fafc;
	font-size: 0.95rem;
	outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(203, 213, 225, 0.7);
}

.contact-form textarea {
	resize: vertical;
}

/* Thank you */
.contact-thanks {
	display: none;
	text-align: center;
	padding: 40px 20px;
	border-radius: 18px;
	border: 1px solid rgba(103, 232, 249, 0.22);
	background: linear-gradient(
		120deg,
		rgba(103, 232, 249, 0.18),
		rgba(255, 255, 255, 0.03)
	);
}

.contact-thanks h3 {
	margin: 0 0 10px;
	color: #f8fafc;
}

.contact-thanks p {
	margin: 0;
	color: #d1d5db;
	line-height: 1.6;
}

/* Buttons */
.btn-primary {
	padding: 14px 22px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	background: #67e8f9;
	color: #0f172a;
	font-weight: 700;
	transition: all 0.3s ease;
	width: fit-content;
}

.btn-primary:hover {
	background: #22d3ee;
	transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}

.privacy {
	padding: 90px 0;
	background: #0b1220;
	color: #e5e7eb;
}

.privacy-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px;
}

.privacy-head {
	margin-bottom: 40px;
}

.privacy-content {
	display: grid;
	gap: 28px;
}

.privacy-block {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 22px;
}

.privacy-block h3 {
	margin: 0 0 12px;
	color: #f8fafc;
	font-size: 1.1rem;
}

.privacy-block p {
	margin: 0 0 10px;
	line-height: 1.7;
	color: #cbd5e1;
}

.privacy-block ul {
	margin: 0 0 10px 18px;
	padding: 0;
	color: #cbd5e1;
	line-height: 1.7;
}

.privacy-block li {
	margin-bottom: 6px;
}

.privacy-block a {
	color: #67e8f9;
	text-decoration: none;
}

.privacy-block a:hover {
	text-decoration: underline;
}

.privacy-update {
	text-align: center;
	font-size: 0.9rem;
	color: #a5f3fc;
	opacity: 0.9;
}

.cookies {
	padding: 90px 0;
	background: #0b1220;
	color: #e5e7eb;
}

.cookies-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px;
}

.cookies-head {
	margin-bottom: 40px;
}

.cookies-content {
	display: grid;
	gap: 28px;
}

.cookies-block {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 22px;
}

.cookies-block h3 {
	margin: 0 0 12px;
	color: #f8fafc;
	font-size: 1.1rem;
}

.cookies-block p {
	margin: 0 0 10px;
	line-height: 1.7;
	color: #cbd5e1;
}

.cookies-block ul {
	margin: 0 0 10px 18px;
	padding: 0;
	color: #cbd5e1;
	line-height: 1.7;
}

.cookies-block li {
	margin-bottom: 6px;
}

.cookies-block a {
	color: #67e8f9;
	text-decoration: none;
}

.cookies-block a:hover {
	text-decoration: underline;
}

.cookies-note {
	font-size: 0.9rem;
	color: #a5f3fc;
	opacity: 0.9;
}

.cookies-update {
	text-align: center;
	font-size: 0.9rem;
	color: #a5f3fc;
	opacity: 0.9;
}
