:root {
	--cyan: #5ed3e6;
	--blue: #3aa9d9;
	--purple: #7b3fe4;
	--dark-purple: #5a2dbb;
	--bg: #000000;
	--white: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg);
	color: var(--white);
	font-family: 'Inter', sans-serif;
	overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 22px 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid rgba(94, 211, 230, 0.08);
	transition:
		padding 0.35s ease,
		background 0.35s ease;
}

nav.scrolled {
	padding: 14px 80px;
	background: rgba(0, 0, 0, 0.92);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.nav-logo img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.nav-logo-text {
	font-size: 1.35rem;
	font-weight: 800;
	background: linear-gradient(90deg, var(--cyan), var(--purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}

.nav-links a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 500;
	transition: color 0.25s ease;
}

.nav-links a:hover {
	color: var(--cyan);
}

.nav-cta {
	background: linear-gradient(135deg, var(--cyan), var(--purple)) !important;
	color: white !important;
	padding: 10px 26px;
	border-radius: 50px;
	font-weight: 700 !important;
	font-size: 0.88rem !important;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease !important;
	box-shadow: 0 0 20px rgba(94, 211, 230, 0.25);
}

.nav-cta:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}

/* hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: white;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* mobile menu */
.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.97);
	z-index: 999;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 36px;
}

.mobile-menu.open {
	display: flex;
}

.mobile-menu a {
	color: white;
	text-decoration: none;
	font-size: 1.6rem;
	font-weight: 700;
}

.mobile-menu a:hover {
	color: var(--cyan);
}

.mobile-close {
	position: absolute;
	top: 24px;
	right: 24px;
	cursor: pointer;
	font-size: 2rem;
	color: rgba(255, 255, 255, 0.5);
}

/* ── HERO ── */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 140px 80px 100px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse 65% 55% at 15% 55%,
			rgba(94, 211, 230, 0.11) 0%,
			transparent 70%
		),
		radial-gradient(
			ellipse 55% 65% at 85% 45%,
			rgba(123, 63, 228, 0.14) 0%,
			transparent 70%
		),
		radial-gradient(
			ellipse 40% 35% at 50% 90%,
			rgba(58, 169, 217, 0.07) 0%,
			transparent 60%
		);
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(94, 211, 230, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(94, 211, 230, 0.025) 1px, transparent 1px);
	background-size: 70px 70px;
}

/* floating orbs */
.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: drift 12s ease-in-out infinite;
	pointer-events: none;
}

.orb-1 {
	width: 340px;
	height: 340px;
	background: rgba(94, 211, 230, 0.06);
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}

.orb-2 {
	width: 280px;
	height: 280px;
	background: rgba(123, 63, 228, 0.08);
	top: 20%;
	right: 8%;
	animation-delay: -4s;
}

.orb-3 {
	width: 200px;
	height: 200px;
	background: rgba(58, 169, 217, 0.07);
	bottom: 15%;
	left: 30%;
	animation-delay: -8s;
}

@keyframes drift {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -20px) scale(1.05);
	}
	66% {
		transform: translate(-20px, 15px) scale(0.97);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 880px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(94, 211, 230, 0.07);
	border: 1px solid rgba(94, 211, 230, 0.25);
	border-radius: 50px;
	padding: 9px 22px;
	font-size: 0.82rem;
	color: var(--cyan);
	font-weight: 600;
	margin-bottom: 36px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.badge-dot {
	width: 7px;
	height: 7px;
	background: var(--cyan);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.4;
		transform: scale(1.4);
	}
}

.hero-title {
	font-size: clamp(2.8rem, 6vw, 5.4rem);
	font-weight: 900;
	line-height: 1.06;
	letter-spacing: -2px;
	margin-bottom: 28px;
}

.gradient-text {
	background: linear-gradient(
		135deg,
		var(--cyan) 0%,
		var(--blue) 45%,
		var(--purple) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.75;
	max-width: 620px;
	margin: 0 auto 52px;
	font-weight: 400;
}

.hero-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--cyan), var(--purple));
	color: white;
	padding: 16px 38px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.97rem;
	transition: all 0.3s ease;
	box-shadow: 0 0 32px rgba(94, 211, 230, 0.28);
	letter-spacing: 0.2px;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 56px rgba(94, 211, 230, 0.45);
}

.btn-outline {
	background: transparent;
	color: white;
	padding: 16px 38px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.97rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	transition: all 0.3s ease;
}

.btn-outline:hover {
	border-color: var(--cyan);
	color: var(--cyan);
	background: rgba(94, 211, 230, 0.04);
}

.hero-stats {
	display: flex;
	gap: 0;
	justify-content: center;
	margin-top: 90px;
	padding-top: 60px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	flex-wrap: wrap;
}

.stat-item {
	flex: 1;
	min-width: 120px;
	text-align: center;
	padding: 0 30px;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:last-child {
	border-right: none;
}

.stat-val {
	font-size: 2.4rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--cyan), var(--purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -1px;
}

.stat-lbl {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.42);
	margin-top: 6px;
	font-weight: 500;
}

/* ── SHARED SECTION STYLES ── */
.section-wrap {
	padding: 120px 80px;
}

.section-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 3.5px;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 16px;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: -1px;
	margin-bottom: 20px;
}

.section-sub {
	font-size: 1.02rem;
	color: rgba(255, 255, 255, 0.52);
	line-height: 1.72;
}

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

/* ── ABOUT ── */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
}

.about-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-wrap {
	position: relative;
	width: 300px;
	height: 300px;
}

.logo-ring {
	position: absolute;
	inset: -18px;
	border-radius: 50%;
	background: conic-gradient(
		from 0deg,
		var(--cyan),
		var(--blue),
		var(--purple),
		var(--dark-purple),
		var(--cyan)
	);
	animation: rotateSpin 10s linear infinite;
}

.logo-ring::after {
	content: '';
	position: absolute;
	inset: 4px;
	background: black;
	border-radius: 50%;
}

@keyframes rotateSpin {
	to {
		transform: rotate(360deg);
	}
}

.logo-img {
	position: relative;
	z-index: 1;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	object-fit: cover;
}

.float-card {
	position: absolute;
	background: rgba(10, 10, 20, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 14px 18px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 2;
}

.float-card.fc-top {
	top: 10px;
	right: -50px;
	animation: floatY 4s ease-in-out infinite;
}

.float-card.fc-bot {
	bottom: 20px;
	left: -50px;
	animation: floatY 4s ease-in-out infinite reverse;
	animation-delay: -2s;
}

@keyframes floatY {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.fc-icon {
	font-size: 1.3rem;
	margin-bottom: 4px;
}
.fc-title {
	font-size: 0.82rem;
	font-weight: 700;
}
.fc-sub {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 2px;
}

.about-features {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 38px;
}

.feat-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.feat-icon {
	width: 46px;
	height: 46px;
	flex-shrink: 0;
	border-radius: 13px;
	background: linear-gradient(
		135deg,
		rgba(94, 211, 230, 0.12),
		rgba(123, 63, 228, 0.12)
	);
	border: 1px solid rgba(94, 211, 230, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.feat-text h4 {
	font-size: 0.98rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.feat-text p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.48);
	line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how-section {
	background: rgba(255, 255, 255, 0.013);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.how-header {
	text-align: center;
	margin-bottom: 80px;
}

.how-header .section-sub {
	max-width: 560px;
	margin: 0 auto;
}

.steps-track {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	position: relative;
}

.steps-track::before {
	content: '';
	position: absolute;
	top: 39px;
	left: calc(12.5% + 16px);
	right: calc(12.5% + 16px);
	height: 1px;
	background: linear-gradient(90deg, var(--cyan), var(--purple));
	opacity: 0.25;
	z-index: 0;
}

.step-card {
	text-align: center;
	position: relative;
	z-index: 1;
}

.step-circle {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 1);
	border: 1px solid rgba(94, 211, 230, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 28px;
	font-size: 1.75rem;
	position: relative;
}

.step-badge {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 22px;
	height: 22px;
	background: linear-gradient(135deg, var(--cyan), var(--purple));
	border-radius: 50%;
	font-size: 0.65rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.step-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.step-card p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.48);
	line-height: 1.65;
}

/* ── SERVICES ── */
.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	margin-top: 64px;
}

.svc-card {
	background: rgba(255, 255, 255, 0.028);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 24px;
	padding: 38px 32px;
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
}

.svc-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--cyan), transparent);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.svc-card:hover {
	border-color: rgba(94, 211, 230, 0.2);
	background: rgba(94, 211, 230, 0.035);
	transform: translateY(-5px);
}

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

.svc-card.highlight {
	background: linear-gradient(
		135deg,
		rgba(94, 211, 230, 0.07),
		rgba(123, 63, 228, 0.07)
	);
	border-color: rgba(94, 211, 230, 0.25);
}

.svc-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(
		135deg,
		rgba(94, 211, 230, 0.12),
		rgba(123, 63, 228, 0.12)
	);
	border: 1px solid rgba(94, 211, 230, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.55rem;
	margin-bottom: 24px;
}

.svc-card h3 {
	font-size: 1.08rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.svc-card p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.48);
	line-height: 1.68;
}

.svc-tag {
	display: inline-block;
	margin-top: 20px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--cyan);
	background: rgba(94, 211, 230, 0.08);
	padding: 5px 12px;
	border-radius: 50px;
}

/* ── TRUST ── */
.trust-section {
	position: relative;
	overflow: hidden;
}

.trust-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: 700px;
	background: radial-gradient(
		circle,
		rgba(123, 63, 228, 0.07) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.trust-header {
	text-align: center;
	margin-bottom: 70px;
}

.trust-header .section-sub {
	max-width: 500px;
	margin: 0 auto;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.trust-card {
	text-align: center;
	padding: 44px 24px 36px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.065);
	border-radius: 22px;
	transition: all 0.35s ease;
}

.trust-card:hover {
	background: rgba(94, 211, 230, 0.04);
	border-color: rgba(94, 211, 230, 0.2);
	transform: translateY(-4px);
}

.trust-icon {
	font-size: 2.6rem;
	margin-bottom: 20px;
}

.trust-card h3 {
	font-size: 1.02rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.trust-card p {
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.46);
	line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
	background: rgba(255, 255, 255, 0.012);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-header {
	text-align: center;
	margin-bottom: 70px;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.testi-card {
	background: rgba(255, 255, 255, 0.028);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 24px;
	padding: 36px;
	transition: all 0.35s ease;
	display: flex;
	flex-direction: column;
}

.testi-card:hover {
	border-color: rgba(123, 63, 228, 0.28);
	transform: translateY(-4px);
}

.testi-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 20px;
}

.testi-stars span {
	color: var(--cyan);
	font-size: 0.88rem;
}

.testi-text {
	font-size: 0.93rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.75;
	font-style: italic;
	flex: 1;
	margin-bottom: 28px;
}

.testi-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-av {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cyan), var(--purple));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1rem;
	flex-shrink: 0;
}

.author-name {
	font-size: 0.92rem;
	font-weight: 700;
}

.author-role {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.42);
	margin-top: 2px;
}

/* ── TESTIMONIAL CAROUSEL ── */
.carousel-track {
	overflow: hidden;
}

.testimonials-grid.is-carousel {
	display: flex;
	flex-wrap: nowrap;
	gap: 22px;
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

.testimonials-grid.is-carousel .testi-card {
	flex: 0 0 var(--carousel-card-width, 300px);
	min-width: 0;
}

.carousel-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 12px;
}

.carousel-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.2s,
		border-color 0.2s,
		opacity 0.2s;
	flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
	background: rgba(123, 63, 228, 0.22);
	border-color: rgba(123, 63, 228, 0.5);
}

.carousel-btn:disabled {
	opacity: 0.28;
	cursor: not-allowed;
}

.carousel-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 4px;
	border: none;
	background: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	padding: 0;
	transition:
		background 0.25s,
		width 0.25s;
}

.carousel-dot.active {
	width: 24px;
	background: var(--cyan);
}

/* ── PDF DOCUMENT PAGES (privacy, ethics, …) ── */
.privacy-hero {
	padding: 140px 0 60px;
	text-align: center;
}

.privacy-viewer {
	padding: 0 0 100px;
}

.privacy-viewer .inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pdf-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.pdf-toolbar-label {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.45);
}

.pdf-download-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.85rem;
	font-weight: 500;
	font-family: inherit;
	text-decoration: none;
	transition:
		background 0.2s,
		border-color 0.2s,
		color 0.2s;
	cursor: pointer;
}

.pdf-download-btn:hover {
	background: rgba(94, 211, 230, 0.1);
	border-color: rgba(94, 211, 230, 0.35);
	color: var(--cyan);
}

.pdf-frame-wrap {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(255, 255, 255, 0.025);
	height: 80vh;
	min-height: 500px;
}

.pdf-frame-wrap iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

.pdf-fallback {
	display: none;
	padding: 60px 32px;
	text-align: center;
}

.pdf-fallback p {
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 20px;
	font-size: 0.92rem;
}

/* ── CONTACT ── */
.contact-section {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.contact-info .section-sub {
	max-width: 440px;
	margin-bottom: 40px;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.contact-detail {
	display: flex;
	align-items: center;
	gap: 14px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.92rem;
}

.contact-detail--link {
	text-decoration: none;
	cursor: pointer;
	transition: color 0.25s ease;
}

.contact-detail--link:hover {
	color: var(--cyan);
}

.contact-detail-icon {
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: linear-gradient(
		135deg,
		rgba(94, 211, 230, 0.1),
		rgba(123, 63, 228, 0.1)
	);
	border: 1px solid rgba(94, 211, 230, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
}

/* ── PHONE ACTION POPUP ── */
.phone-action-wrap {
	position: relative;
}

.phone-action-trigger {
	background: none;
	border: none;
	font-family: inherit;
	width: 100%;
	text-align: left;
	align-items: center;
}

/* Icon with WhatsApp badge overlay */
.phone-action-icon {
	position: relative;
}

.whatsapp-badge {
	position: absolute;
	bottom: -4px;
	right: -4px;
	width: 16px;
	height: 16px;
	background: #111;
	border-radius: 50%;
	border: 1.5px solid rgba(37, 211, 102, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Two-line label */
.phone-action-label {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
}

.phone-action-number {
	font-size: 0.92rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.25s ease;
}

.phone-action-trigger:hover .phone-action-number {
	color: var(--cyan);
}

.phone-action-hint {
	font-size: 0.72rem;
	font-weight: 600;
	color: #25d366;
	letter-spacing: 0.3px;
	opacity: 0.85;
}

.phone-action-chevron {
	margin-left: auto;
	font-size: 1.1rem;
	opacity: 0.45;
	transition: transform 0.25s ease, opacity 0.25s ease;
	line-height: 1;
}

.phone-action-trigger[aria-expanded="true"] .phone-action-chevron {
	transform: rotate(90deg);
	opacity: 0.85;
}

.phone-popup {
	position: absolute;
	left: 0;
	top: calc(100% + 8px);
	z-index: 200;
	background: rgba(10, 10, 20, 0.96);
	border: 1px solid rgba(94, 211, 230, 0.22);
	border-radius: 16px;
	overflow: hidden;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(94, 211, 230, 0.06);
	min-width: 230px;

	/* animation */
	opacity: 0;
	transform: translateY(-8px) scale(0.97);
	transition:
		opacity 0.22s ease,
		transform 0.22s ease;
	pointer-events: none;
}

.phone-popup:not([hidden]) {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

/* override [hidden] so CSS animation still runs */
.phone-popup[hidden] {
	display: block !important;
	visibility: hidden;
}

.phone-popup-option {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 15px 20px;
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition:
		background 0.18s ease,
		color 0.18s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-popup-option:last-child {
	border-bottom: none;
}

.phone-popup-option:hover {
	background: rgba(94, 211, 230, 0.07);
	color: #fff;
}

.phone-popup-option-icon {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	flex-shrink: 0;
	transition: background 0.18s ease;
}

.phone-popup-option:hover .phone-popup-option-icon {
	background: rgba(94, 211, 230, 0.12);
	border-color: rgba(94, 211, 230, 0.25);
}

.phone-popup-option--whatsapp .phone-popup-option-icon {
	color: #25d366;
}

.phone-popup-option--whatsapp:hover {
	background: rgba(37, 211, 102, 0.07);
	color: #fff;
}

.phone-popup-option--whatsapp:hover .phone-popup-option-icon {
	background: rgba(37, 211, 102, 0.12);
	border-color: rgba(37, 211, 102, 0.3);
}

.contact-form {
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 28px;
	padding: 48px 40px;
}

.form-title {
	font-size: 1.3rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.form-sub {
	font-size: 0.87rem;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 32px;
}

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

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 14px;
}

.form-group.full {
	grid-column: 1 / -1;
}

.form-group label {
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 13px 16px;
	color: white;
	font-size: 0.9rem;
	font-family: 'Inter', sans-serif;
	transition: border-color 0.25s ease;
	outline: none;
	width: 100%;
}

.form-group select option {
	background: #111;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: rgba(94, 211, 230, 0.4);
	background: rgba(94, 211, 230, 0.04);
}

.form-group textarea {
	resize: vertical;
	min-height: 110px;
}

.form-btn {
	width: 100%;
	background: linear-gradient(135deg, var(--cyan), var(--purple));
	color: white;
	border: none;
	padding: 16px;
	border-radius: 14px;
	font-size: 0.97rem;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	transition: all 0.3s ease;
	margin-top: 8px;
	box-shadow: 0 0 28px rgba(94, 211, 230, 0.2);
}

.form-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 48px rgba(94, 211, 230, 0.38);
}

/* ── CTA BANNER ── */
.cta-banner {
	padding: 140px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse 70% 70% at 50% 50%,
			rgba(123, 63, 228, 0.11) 0%,
			transparent 70%
		),
		radial-gradient(
			ellipse 50% 40% at 25% 30%,
			rgba(94, 211, 230, 0.08) 0%,
			transparent 60%
		);
}

.cta-inner {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
}

.cta-title {
	font-size: clamp(2.2rem, 4.5vw, 3.6rem);
	font-weight: 900;
	letter-spacing: -1.5px;
	line-height: 1.08;
	margin-bottom: 22px;
}

.cta-sub {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.58);
	line-height: 1.7;
	margin-bottom: 50px;
}

/* ── FOOTER ── */
footer {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 70px 80px 40px;
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-brand img {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 14px;
}

.footer-brand-name {
	font-size: 1.25rem;
	font-weight: 800;
	background: linear-gradient(90deg, var(--cyan), var(--purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 12px;
}

.footer-brand p {
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.38);
	line-height: 1.65;
	max-width: 280px;
}

.footer-col h4 {
	font-size: 0.85rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 20px;
	letter-spacing: 0.2px;
}

.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.footer-col a {
	text-decoration: none;
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.38);
	transition: color 0.22s ease;
}

.footer-col a:hover {
	color: var(--cyan);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-copy {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.3);
}

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

.footer-pill {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 5px 13px;
	border-radius: 50px;
}

/* ── FAQ ── */
.faq-section {
	background: rgba(255, 255, 255, 0.012);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-header {
	text-align: center;
	max-width: 620px;
	margin: 0 auto 60px;
}

.faq-list {
	max-width: 780px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: rgba(255, 255, 255, 0.028);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.faq-item:hover {
	border-color: rgba(94, 211, 230, 0.2);
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	color: white;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
	padding: 22px 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	line-height: 1.5;
}

.faq-question:focus-visible {
	outline: 2px solid var(--cyan);
	outline-offset: -2px;
	border-radius: 16px;
}

.faq-icon {
	font-size: 1.5rem;
	color: var(--cyan);
	flex-shrink: 0;
	font-weight: 300;
	transition: transform 0.3s ease;
	line-height: 1;
}

.faq-question[aria-expanded='true'] .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 24px 22px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.92rem;
	line-height: 1.75;
}

.faq-answer p {
	margin: 0;
}

.faq-answer a {
	color: var(--cyan);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
}

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

.reveal-delay-1 {
	transition-delay: 0.1s;
}
.reveal-delay-2 {
	transition-delay: 0.2s;
}
.reveal-delay-3 {
	transition-delay: 0.3s;
}
.reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	nav {
		padding: 18px 40px;
	}
	nav.scrolled {
		padding: 12px 40px;
	}
	.section-wrap {
		padding: 90px 40px;
	}
	.about-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	.about-visual {
		order: -1;
	}
	.steps-track {
		grid-template-columns: repeat(2, 1fr);
	}
	.steps-track::before {
		display: none;
	}
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.footer-top {
		grid-template-columns: 1fr 1fr;
	}
	.cta-banner {
		padding: 100px 40px;
	}
	footer {
		padding: 60px 40px 36px;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 16px 24px;
	}
	nav.scrolled {
		padding: 12px 24px;
	}
	.nav-links {
		display: none;
	}
	.hamburger {
		display: flex;
	}
	.hero {
		padding: 110px 24px 70px;
	}
	.section-wrap {
		padding: 70px 24px;
	}
	.hero-stats {
		gap: 0;
	}
	.stat-item {
		padding: 0 16px;
	}
	.stat-val {
		font-size: 1.8rem;
	}
	.about-visual {
		display: none;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	.trust-grid {
		grid-template-columns: 1fr 1fr;
	}
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.contact-form {
		padding: 32px 24px;
	}
	.cta-banner {
		padding: 80px 24px;
	}
	footer {
		padding: 50px 24px 30px;
	}
	.footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 18px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.trust-grid {
		grid-template-columns: 1fr;
	}
	.hero-actions {
		flex-direction: column;
		align-items: center;
	}
	.btn-primary,
	.btn-outline {
		width: 100%;
		text-align: center;
	}
}
