/* ========= CSS RESET & GLOBAL ========= */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg-main: #050814;
	--bg-elevated: #0f172a;
	--bg-soft: #111827;
	--accent: #38bdf8;
	--accent-soft: rgba(56, 189, 248, 0.14);
	--accent-strong: #0ea5e9;
	--text-main: #e5e7eb;
	--text-muted: #9ca3af;
	--text-soft: #6b7280;
	--border-subtle: rgba(148, 163, 184, 0.25);
	--danger: #f97373;
	--radius-lg: 14px;
	--radius-xl: 24px;
	--shadow-soft: 0 24px 70px rgba(15, 23, 42, 0.8);
	--shadow-card: 0 18px 45px rgba(15, 23, 42, 0.7);
	--transition-fast: 180ms ease-out;
	--transition-med: 260ms ease-out;
	--max-width: 1120px;
}

body {
	/*      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;*/
	font-family: "Roboto";
	background-color: var(--bg-main);
	color: var(--text-main);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ========= LAYOUT HELPERS ========= */
.page {
	min-height: 100vh;
	background:
		radial-gradient(1200px at top left, rgba(56, 189, 248, 0.18), transparent),
		radial-gradient(800px at bottom right, rgba(147, 197, 253, 0.13), transparent),
		radial-gradient(900px at center, rgba(30, 64, 175, 0.25), transparent),
		linear-gradient(135deg, #020617, #020617);
	color: var(--text-main);
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

section {
	padding: 4.5rem 0;
}

@media (min-width: 900px) {
	section {
		padding: 2rem 0;
	}
}

.section-header {
	max-width: 640px;
	margin-bottom: 2.5rem;
}

.section-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.8rem;
	color: var(--accent);
	margin-bottom: 0.5rem;
}

.section-title {
	font-size: 1.9rem;
	letter-spacing: -0.03em;
	margin-bottom: 0.75rem;
}

.section-subtitle {
	color: var(--text-soft);
	font-size: 0.95rem;
}

/* ========= HEADER & NAV ========= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	backdrop-filter: blur(18px);
	background: linear-gradient(to bottom,
			rgba(15, 23, 42, 0.9),
			rgba(15, 23, 42, 0.7),
			transparent);
	border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1.5rem;
	max-width: var(--max-width);
	margin: 0 auto;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.nav-logo-mark {
	max-width: 200px;
	max-height: 100%;
	border-radius: 999px;
	/*background:
        conic-gradient(from 180deg, #22d3ee, #38bdf8, #6366f1, #22d3ee);*/
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	/*      box-shadow: 0 14px 40px rgba(56, 189, 248, 0.45);*/
}

.nav-logo-initial {
	position: relative;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #e0f2fe;
}

.nav-logo-text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.nav-logo-title {
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nav-logo-tagline {
	font-size: 0.7rem;
	color: var(--text-soft);
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	font-size: 0.88rem;
}

.nav-link {
	color: var(--text-muted);
	position: relative;
	padding-bottom: 0.1rem;
}

.nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, #22d3ee, #38bdf8, #6366f1);
	transition: width var(--transition-med);
}

.nav-link:hover {
	color: var(--text-main);
}

.nav-link:hover::after {
	width: 100%;
}

.nav-cta {
	display: none;
}

@media (min-width: 840px) {
	.nav-cta {
		display: inline-flex;
		align-items: center;
		gap: 0.45rem;
		padding: 0.55rem 1rem;
		border-radius: 999px;
		background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.5), transparent 60%),
			linear-gradient(120deg, #22d3ee, #38bdf8, #6366f1);
		color: #0b1120;
		font-size: 0.83rem;
		font-weight: 600;
		border: 0;
		cursor: pointer;
		box-shadow: 0 16px 35px rgba(37, 99, 235, 0.7);
		transition: transform var(--transition-fast), box-shadow var(--transition-fast);
	}

	.nav-cta:hover {
		transform: translateY(-1px);
		box-shadow: 0 22px 45px rgba(37, 99, 235, 0.85);
	}

	.nav-cta span.icon {
		font-size: 1rem;
	}
}

@media (max-width: 720px) {
	.nav-links {
		display: none;
	}
}

/* ========= HERO ========= */
.hero {
	position: relative;
	padding-top: 4rem;
	padding-bottom: 4.5rem;
}

@media (min-width: 900px) {
	.hero {
		padding-top: 5.25rem;
		padding-bottom: 2rem;
	}
}

.hero-inner {
	display: flex;
	gap: 3rem;
}

@media (min-width: 960px) {
	.hero-inner {
		grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
		align-items: center;
	}
}

.hero-badge-row {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.42);
	background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.12), transparent 65%),
		rgba(15, 23, 42, 0.92);
	font-size: 0.75rem;
	color: var(--text-soft);
	margin-bottom: 1.25rem;
	backdrop-filter: blur(12px);
}

.hero-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: radial-gradient(circle, #22c55e, #16a34a);
	box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

.hero-badge-highlight {
	color: var(--accent);
	font-weight: 500;
}

.hero-title {
	font-size: clamp(4.8rem, 2vw, 6.2rem);
	line-height: 1.1;
	letter-spacing: -0.045em;
	margin-bottom: 1rem;
}

.hero-title span.highlight {
	background: linear-gradient(90deg, #38bdf8, #a855f7);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	position: relative;
}

.hero-title span.highlight::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.25rem;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(56, 189, 248, 0.4), transparent);
}

.hero-subtitle {
	color: var(--text-soft);
	max-width: 100%;
	font-size: 0.98rem;
	margin-bottom: 1.75rem;
}

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-bottom: 2rem;
	font-size: 0.8rem;
}

.hero-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--text-muted);
}

.hero-meta-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--accent-soft);
	outline: 1px solid rgba(56, 189, 248, 0.4);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem;
	margin-bottom: 1.5rem;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.35rem;
	border-radius: 999px;
	border: 0;
	background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.5), transparent 60%),
		linear-gradient(120deg, #22d3ee, #38bdf8, #6366f1);
	color: #020617;
	font-weight: 600;
	font-size: 0.92rem;
	cursor: pointer;
	box-shadow: 0 20px 50px rgba(37, 99, 235, 0.85);
	transition: transform var(--transition-med), box-shadow var(--transition-med), filter var(--transition-fast);
	text-decoration: none;
}

.btn-primary span.icon {
	font-size: 1.05rem;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 26px 60px rgba(37, 99, 235, 0.95);
	filter: brightness(1.06);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.8rem 1.1rem;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.5);
	background: rgba(15, 23, 42, 0.92);
	color: var(--text-muted);
	font-size: 0.85rem;
	cursor: pointer;
	transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
	text-decoration: none;
}

.btn-secondary:hover {
	border-color: rgba(148, 163, 184, 0.9);
	background: rgba(15, 23, 42, 1);
	color: var(--text-main);
	transform: translateY(-1px);
}

.hero-footnote {
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* HERO VISUAL / ANIMATION */
.hero-visual {
	position: relative;
	min-height: 260px;
}

@media (min-width: 960px) {
	.hero-visual {
		min-height: 360px;
	}
}

.hero-card {
	position: relative;
	border-radius: var(--radius-xl);
	padding: 1.5rem 1.4rem 1.7rem;
	background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.09), transparent 58%),
		radial-gradient(circle at 100% 0, rgba(56, 189, 248, 0.18), transparent 55%),
		linear-gradient(145deg, rgba(15, 23, 42, 0.97), rgba(17, 24, 39, 0.98));
	border: 1px solid rgba(148, 163, 184, 0.5);
	box-shadow: var(--shadow-card);
	max-width: 360px;
	margin-left: auto;
	overflow: hidden;
}

.hero-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.1rem;
}

.hero-card-title {
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.hero-card-tag {
	font-size: 0.75rem;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	border: 1px solid rgba(34, 197, 94, 0.5);
	color: #bbf7d0;
	background: rgba(22, 163, 74, 0.16);
}

.hero-card-metric-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 0.85rem;
}

.hero-card-metric {
	font-size: 1.7rem;
	font-weight: 600;
	letter-spacing: -0.07em;
}

.hero-card-label {
	font-size: 0.8rem;
	color: var(--text-soft);
}

.hero-card-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 1.1rem;
}

.pill {
	font-size: 0.7rem;
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	color: var(--text-muted);
	background: rgba(15, 23, 42, 0.7);
}

.pill-accent {
	border-color: rgba(56, 189, 248, 0.75);
	color: #bae6fd;
	background: rgba(8, 47, 73, 0.7);
}

.hero-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
	margin-bottom: 1.2rem;
}

.hero-card-cell {
	border-radius: 10px;
	padding: 0.55rem 0.6rem;
	background: rgba(15, 23, 42, 0.96);
	border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-card-cell-label {
	font-size: 0.7rem;
	color: var(--text-soft);
	margin-bottom: 0.2rem;
}

.hero-card-cell-value {
	font-size: 0.85rem;
	font-weight: 500;
}

.hero-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	font-size: 0.72rem;
	color: var(--text-soft);
}

.hero-card-footer span.accent {
	color: var(--accent);
}

.hero-orbit {
	position: absolute;
	max-width: 100%;
	inset: 10%;
	pointer-events: none;
	opacity: 0.7;
	mix-blend-mode: screen;
}

.hero-orbit-ring {
	position: absolute;
	border-radius: 999px;
	border: 1px dashed rgba(56, 189, 248, 0.4);
	animation: spin-slow 24s linear infinite;
}

.hero-orbit-ring:nth-child(1) {
	inset: 25% 5% 50% 25%;
	animation-duration: 26s;
}

.hero-orbit-ring:nth-child(2) {
	inset: 45% 15% 30% 5%;
	animation-direction: reverse;
	animation-duration: 32s;
}

.hero-orbit-ring:nth-child(3) {
	inset: 5% 25% 70% 10%;
	border-color: rgba(129, 140, 248, 0.45);
	animation-duration: 38s;
}

.hero-orbit-glow {
	position: absolute;
	width: 150px;
	height: 150px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 60%);
	filter: blur(0.5px);
	animation: float-orbit 18s ease-in-out infinite alternate;
}

.hero-orbit-glow:nth-child(4) {
	top: 18%;
	left: 10%;
}

.hero-orbit-glow:nth-child(5) {
	bottom: 25%;
	right: 8%;
	background: radial-gradient(circle, rgba(129, 140, 248, 0.4), transparent 60%);
	animation-duration: 22s;
}

@keyframes spin-slow {
	to {
		transform: rotate(360deg);
	}
}

@keyframes float-orbit {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}

	50% {
		transform: translate3d(10px, -8px, 0) scale(1.03);
	}

	100% {
		transform: translate3d(-8px, 12px, 0) scale(1);
	}
}

/* ========= WHAT WE DO ========= */
.cards-grid {
	display: grid;
	gap: 1.4rem;
}

@media (min-width: 740px) {
	.cards-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.card {
	position: relative;
	padding: 1.4rem 1.4rem 1.5rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(150deg,
			rgba(15, 23, 42, 0.96),
			rgba(15, 23, 42, 0.98));
	border: 1px solid var(--border-subtle);
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.7);
	overflow: hidden;
	transition: transform var(--transition-med), box-shadow var(--transition-med),
		border-color var(--transition-fast), background var(--transition-fast);
}

.card::before {
	content: "";
	position: absolute;
	inset: -40%;
	opacity: 0;
	background:
		radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.26), transparent 58%),
		radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.2), transparent 60%);
	transition: opacity var(--transition-med);
	pointer-events: none;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.9);
	border-color: rgba(148, 163, 184, 0.7);
	background: linear-gradient(150deg,
			rgba(15, 23, 42, 1),
			rgba(15, 23, 42, 0.98));
}

.card:hover::before {
	opacity: 1;
}

.card-icon {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.9rem;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.7);
	font-size: 1.1rem;
}

.card-title {
	font-size: 1rem;
	margin-bottom: 0.4rem;
	font-weight: 500;
}

.card-body {
	font-size: 0.9rem;
	color: var(--text-soft);
	margin-bottom: 0.85rem;
}

.card-meta {
	font-size: 0.78rem;
	color: var(--text-muted);
}

/* ========= WHY CHOOSE US ========= */
.grid-two {
	display: grid;
	gap: 2.4rem;
}

@media (min-width: 880px) {
	.grid-two {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
		align-items: center;
	}
}

.list-checks {
	display: grid;
	gap: 0.9rem;
	font-size: 0.9rem;
}

.list-check {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	color: var(--text-soft);
}

.list-check-icon {
	margin-top: 0.15rem;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	background: rgba(22, 163, 74, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.6);
	color: #bbf7d0;
}

.metrics-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	font-size: 0.8rem;
}

.metric-card {
	padding: 0.9rem 0.9rem;
	border-radius: 14px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.5);
}

.metric-value {
	font-size: 1.1rem;
	font-weight: 600;
}

.metric-label {
	color: var(--text-soft);
	margin-top: 0.2rem;
}

@media (max-width: 640px) {
	.metrics-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ========= PROCESS ========= */
.timeline {
	position: relative;
	margin-top: 1rem;
	padding-left: 1.3rem;
	border-left: 1px solid rgba(148, 163, 184, 0.4);
}

@media (min-width: 880px) {
	.timeline {
		border-left: none;
		padding-left: 0;
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.2rem;
	}
}

.timeline-step {
	position: relative;
	margin-bottom: 1.8rem;
	padding-left: 0.6rem;
}

@media (min-width: 880px) {
	.timeline-step {
		margin-bottom: 0;
		padding-left: 0;
	}
}

.timeline-dot {
	position: absolute;
	left: -1.3rem;
	top: 0.2rem;
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: radial-gradient(circle, #38bdf8, #0ea5e9);
	box-shadow: 0 0 12px rgba(56, 189, 248, 0.9);
}

@media (min-width: 880px) {
	.timeline-dot {
		position: static;
		margin-bottom: 0.35rem;
	}
}

.timeline-step-title {
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.timeline-step-body {
	font-size: 0.82rem;
	color: var(--text-soft);
}

.timeline-step-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--text-muted);
	margin-bottom: 0.25rem;
}

/* ========= TESTIMONIAL / TRUST ========= */
.trust-panel {
	padding: 1.4rem 1.3rem;
	border-radius: var(--radius-lg);
	background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 60%),
		linear-gradient(135deg, #020617, #020617);
	border: 1px solid rgba(148, 163, 184, 0.6);
	box-shadow: var(--shadow-soft);
	font-size: 0.88rem;
	color: var(--text-soft);
}

.trust-panel-quote {
	font-size: 0.9rem;
	color: var(--text-main);
	margin-bottom: 0.75rem;
}

.trust-panel-author {
	font-size: 0.8rem;
	color: var(--text-muted);
}

.logos-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.4rem;
	font-size: 0.75rem;
}

.logo-pill {
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	border: 1px dashed rgba(148, 163, 184, 0.6);
	color: var(--text-muted);
}

/* ========= CONTACT ========= */
.contact-grid {
	display: grid;
	gap: 2rem;
}

@media (min-width: 880px) {
	.contact-grid {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
		align-items: flex-start;
	}
}

.contact-card {
	padding: 1.5rem 1.4rem 1.6rem;
	border-radius: var(--radius-lg);
	background: rgba(15, 23, 42, 0.97);
	border: 1px solid rgba(148, 163, 184, 0.6);
	box-shadow: var(--shadow-card);
	font-size: 0.9rem;
}

.contact-row {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	margin-bottom: 1rem;
}

.contact-label {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--text-muted);
}

.contact-value {
	font-size: 0.9rem;
}

.contact-link {
	color: var(--accent);
	text-decoration: none;
}

.contact-link:hover {
	text-decoration: underline;
}

.contact-note {
	font-size: 0.8rem;
	color: var(--text-soft);
	margin-top: 1rem;
}

.contact-form-group {
	margin-bottom: 0.9rem;
}

.contact-form-group label {
	display: block;
	font-size: 0.78rem;
	margin-bottom: 0.25rem;
	color: var(--text-muted);
}

.contact-form-group input,
.contact-form-group textarea {
	width: 100%;
	padding: 0.6rem 0.7rem;
	border-radius: 10px;
	border: 1px solid rgba(148, 163, 184, 0.5);
	background: rgba(15, 23, 42, 0.9);
	color: var(--text-main);
	font-family: inherit;
	font-size: 0.86rem;
	outline: none;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
	resize: vertical;
	min-height: 44px;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
	border-color: rgba(56, 189, 248, 0.9);
	box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.9);
	background: rgba(15, 23, 42, 1);
}

.contact-form-footnote {
	font-size: 0.75rem;
	color: var(--text-soft);
	margin-top: 0.5rem;
}

.btn-full {
	width: 100%;
	justify-content: center;
}

/* ========= FOOTER ========= */
.site-footer {
	border-top: 1px solid rgba(30, 64, 175, 0.7);
	padding: 1.8rem 0 2rem;
	background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
	font-size: 0.8rem;
	color: var(--text-muted);
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.9rem;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.footer-link {
	color: var(--text-muted);
	text-decoration: none;
}

.footer-link:hover {
	color: var(--text-main);
}

/* Hamburger button */
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}

.nav-toggle span {
	width: 26px;
	height: 3px;
	background: var(--text-main);
	border-radius: 5px;
	transition: 0.3s;
}

/* Show only on mobile */
@media (max-width: 720px) {
	.nav-toggle {
		display: flex;
	}
}

/* Overlay background */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	/* Ensures full viewport height */
	min-height: 100vh;
	background: rgba(5, 8, 20, 0.95);
	backdrop-filter: blur(10px);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 999;
}

/* Menu container */
.mobile-menu {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	text-align: center;
}

.mobile-menu a {
	font-size: 1.6rem;
	color: var(--text-main);
	text-decoration: none;
}

/* Active state */
.mobile-menu-overlay.active {
	display: flex;
}