/* ===================================================================
   ZANAAT TEKNİK — Navy + Gold Modern Design
   Animated gradient mesh · Glow-bordered cards · Rich animations
   =================================================================== */

/* ----- CSS VARIABLES ----- */
:root {
	/* Navy palette */
	--navy-950: #040c1f;
	--navy-900: #0b1a3b;
	--navy-800: #0f2456;
	--navy-700: #152e6e;
	--navy-600: #1b3a8a;
	--navy-500: #2650b0;
	--navy-400: #3b6fd4;
	--navy-300: #5d8ef0;
	--navy-200: #92b4f4;
	--navy-100: #c3d7f9;
	--navy-50: #eaf1fd;

	/* Gold palette */
	--gold-500: #f59e0b;
	--gold-400: #fbbf24;
	--gold-300: #fcd34d;
	--gold-200: #fde68a;
	--gold-100: #fef3c7;
	--gold-600: #d97706;
	--gold-700: #b45309;

	/* Teal accent */
	--teal-500: #14b8a6;
	--teal-400: #2dd4bf;
	--teal-600: #0d9488;

	/* WhatsApp */
	--wa: #25d366;
	--wa-dark: #1da851;

	/* Surfaces */
	--bg: #f8fafc;
	--bg-dark: var(--navy-900);
	--bg-darker: var(--navy-950);
	--surface: #ffffff;
	--surface-glass: rgba(255, 255, 255, 0.13);
	--surface-glass-border: rgba(255, 255, 255, 0.15);

	/* Text */
	--text: #0f172a;
	--text-muted: #64748b;
	--text-light: #f1f5f9;
	--text-light-muted: rgba(241, 245, 249, 0.65);

	/* Misc */
	--radius: 14px;
	--radius-sm: 8px;
	--radius-lg: 20px;
	--shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	--shadow-glow-blue: 0 0 32px rgba(59, 111, 212, 0.35);
	--shadow-glow-gold: 0 0 32px rgba(245, 158, 11, 0.35);
	--shadow-glow-teal: 0 0 32px rgba(20, 184, 166, 0.35);
	--transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- RESET ----- */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: "Inter", system-ui, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
img,
svg {
	display: block;
	max-width: 100%;
}
a {
	text-decoration: none;
	color: inherit;
}
button {
	border: none;
	cursor: pointer;
	background: none;
	font-family: inherit;
}

/* ----- CONTAINER ----- */
.container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ----- FILIGRAN WATERMARK ----- */
.watermark {
	pointer-events: none;
	position: fixed;
	inset: 0;
	z-index: 3;
	background: url("../images/logo-silhouette.svg") center center / clamp(620px, 108vmax, 1400px) no-repeat;
	opacity: 0.05;
	filter: grayscale(1) contrast(1.18) brightness(0.86);
}

@media (max-width: 768px) {
	.watermark {
		background-size: 140vmax;
		background-position: center 42%;
		opacity: 0.045;
	}
}

@media (max-width: 480px) {
	.watermark {
		background-size: 150vmax;
		background-position: center 45%;
	}
}

@media (min-width: 1440px) {
	.watermark {
		background-size: 102vmax;
	}
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	background: rgba(11, 26, 59, 0.75);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
	background: rgba(4, 12, 31, 0.92);
	box-shadow: 0 2px 32px rgba(0, 0, 0, 0.3);
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}
.header__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-light);
}
.header__logo img {
	width: 36px;
	height: 36px;
}
.header__logo strong {
	font-size: 1.05rem;
	font-weight: 700;
	display: block;
	line-height: 1.2;
}
.header__logo span {
	font-size: 0.72rem;
	color: var(--gold-400);
	font-weight: 500;
}
.header__nav {
	display: flex;
	gap: 32px;
}
.header__nav a {
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--text-light-muted);
	position: relative;
	transition: color var(--transition);
}
.header__nav a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gold-400);
	border-radius: 2px;
	transition: width var(--transition);
}
.header__nav a:hover,
.header__nav a.active {
	color: var(--text-light);
}
.header__nav a:hover::after,
.header__nav a.active::after {
	width: 100%;
}
.header__cta {
	display: flex;
	gap: 10px;
}

/* Burger */
.header__burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 30px;
	padding: 4px 0;
}
.header__burger span {
	display: block;
	height: 2.5px;
	width: 100%;
	border-radius: 2px;
	background: var(--text-light);
	transition: var(--transition);
	transform-origin: center;
}
.header__burger.open span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}
.header__burger.open span:nth-child(2) {
	opacity: 0;
}
.header__burger.open span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* ================================================================
   MOBILE NAV
   ================================================================ */
.mob-nav {
	position: fixed;
	inset: 0;
	z-index: 999;
	pointer-events: none;
	visibility: hidden;
}
.mob-nav.open {
	pointer-events: auto;
	visibility: visible;
}
.mob-nav__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	transition: opacity 0.3s;
}
.mob-nav.open .mob-nav__overlay {
	opacity: 1;
}
.mob-nav__panel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: var(--navy-900);
	padding: 72px 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	transform: translateY(-100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
	max-height: 100dvh;
	overflow-y: auto;
}
.mob-nav.open .mob-nav__panel {
	transform: translateY(0);
}
.mob-nav__links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.mob-nav__links a {
	color: var(--text-light-muted);
	font-size: 1.05rem;
	font-weight: 500;
	padding: 12px 14px;
	border-radius: var(--radius-sm);
	transition: background var(--transition), color var(--transition);
}
.mob-nav__links a:hover,
.mob-nav__links a.active {
	background: rgba(255, 255, 255, 0.06);
	color: var(--text-light);
}
.mob-nav__cta {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: auto;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 600;
	font-size: 0.92rem;
	border-radius: var(--radius-sm);
	padding: 10px 22px;
	transition: all var(--transition);
	white-space: nowrap;
}
.btn__icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	fill: currentColor;
	stroke: none;
}
.btn--lg {
	padding: 14px 30px;
	font-size: 1rem;
	border-radius: var(--radius);
}
.btn--sm {
	padding: 8px 16px;
	font-size: 0.82rem;
}
.btn--full {
	width: 100%;
}

/* Gold */
.btn--gold {
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	color: #fff;
	box-shadow: 0 2px 16px rgba(245, 158, 11, 0.25);
}
.btn--gold:hover {
	box-shadow: 0 4px 28px rgba(245, 158, 11, 0.4);
	transform: translateY(-1px);
}

/* Ghost */
.btn--ghost {
	background: rgba(255, 255, 255, 0.14);
	color: var(--text-light);
	border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn--ghost:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* WhatsApp */
.btn--whatsapp {
	background: linear-gradient(135deg, var(--wa), var(--wa-dark));
	color: #fff;
	box-shadow: 0 2px 16px rgba(37, 211, 102, 0.25);
}
.btn--whatsapp:hover {
	box-shadow: 0 4px 28px rgba(37, 211, 102, 0.4);
	transform: translateY(-1px);
}

/* Outline Light */
.btn--outline-light {
	background: transparent;
	color: var(--text-light);
	border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn--outline-light .btn__icon {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6px;
}
.btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.4);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 40%, #0d2240 100%);
	overflow: hidden;
	padding-top: 68px;
}

/* ----- Gradient mesh blobs ----- */
.hero__mesh {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.mesh-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	will-change: transform;
}
.mesh-blob--1 {
	width: 600px;
	height: 600px;
	top: -10%;
	left: -5%;
	background: radial-gradient(circle, rgba(59, 111, 212, 0.35) 0%, transparent 70%);
	animation: meshFloat1 18s ease-in-out infinite;
}
.mesh-blob--2 {
	width: 500px;
	height: 500px;
	top: 40%;
	right: -8%;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
	animation: meshFloat2 22s ease-in-out infinite;
}
.mesh-blob--3 {
	width: 400px;
	height: 400px;
	bottom: -5%;
	left: 30%;
	background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
	animation: meshFloat3 20s ease-in-out infinite;
}
.mesh-blob--4 {
	width: 350px;
	height: 350px;
	top: 15%;
	right: 25%;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
	animation: meshFloat4 25s ease-in-out infinite;
}

@keyframes meshFloat1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(80px, 60px) scale(1.1); }
	50% { transform: translate(30px, 120px) scale(0.95); }
	75% { transform: translate(-50px, 40px) scale(1.05); }
}
@keyframes meshFloat2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(-60px, -40px) scale(1.08); }
	50% { transform: translate(-100px, 30px) scale(0.92); }
	75% { transform: translate(-30px, -80px) scale(1.04); }
}
@keyframes meshFloat3 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(70px, -60px) scale(1.12); }
	66% { transform: translate(-40px, -30px) scale(0.9); }
}
@keyframes meshFloat4 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(-40px, 50px) scale(1.06); }
	50% { transform: translate(60px, -20px) scale(0.94); }
	75% { transform: translate(20px, 70px) scale(1.1); }
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 48px;
	padding: 80px 0 120px;
}
.hero__content {
	max-width: 720px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

/* Badge */
.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 6px 18px;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--text-light-muted);
	backdrop-filter: blur(8px);
}
.live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--wa);
	animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
	50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
}

.hero__title {
	font-size: clamp(2.2rem, 5.5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--text-light);
	letter-spacing: -0.02em;
}
.gold-text {
	background: linear-gradient(135deg, var(--gold-400), var(--gold-500), var(--gold-300));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero__sub {
	font-size: 1.08rem;
	color: var(--text-light-muted);
	max-width: 560px;
	line-height: 1.7;
}

/* Hero buttons */
.hero__btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 8px;
}

/* Hero stats */
.hero__stats {
	display: flex;
	align-items: center;
	gap: 0;
	background: rgba(255, 255, 255, 0.11);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	padding: 24px 42px;
	backdrop-filter: blur(12px);
}
.hstat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}
.hstat__icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	margin-bottom: 4px;
	background: rgba(59, 111, 212, 0.15);
	color: var(--navy-300);
}
.hstat__icon svg {
	width: 22px;
	height: 22px;
}
.hstat__icon--gold {
	background: rgba(245, 158, 11, 0.15);
	color: var(--gold-400);
}
.hstat__icon--teal {
	background: rgba(20, 184, 166, 0.15);
	color: var(--teal-400);
}
.hstat strong {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--text-light);
}
.hstat span {
	font-size: 0.78rem;
	color: var(--text-light-muted);
	font-weight: 500;
}
.hstat__sep {
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.08);
	margin: 0 36px;
}

/* Removed wave - using clean lines instead */

/* ================================================================
   SECTION HEADS
   ================================================================ */
.sec-head {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 56px;
}
.sec-head h2 {
	font-size: clamp(1.7rem, 3.5vw, 2.4rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.015em;
	margin-bottom: 12px;
	color: var(--text);
}
.sec-head p {
	color: var(--text-muted);
	font-size: 1.02rem;
	line-height: 1.7;
}
.sec-head--light h2 {
	color: var(--text-light);
}
.sec-head--light p {
	color: var(--text-light-muted);
}

/* Chip */
.chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--navy-500);
	background: rgba(38, 80, 176, 0.08);
	padding: 5px 14px;
	border-radius: 50px;
	margin-bottom: 14px;
}
.chip--gold {
	color: var(--gold-500);
	background: rgba(245, 158, 11, 0.12);
}

/* ================================================================
   SERVICES
   ================================================================ */
.services {
	position: relative;
	padding: 100px 0;
	background: var(--bg);
}
.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* ----- GLOW CARD ----- */
.glow-card {
	position: relative;
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 36px 28px 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	overflow: hidden;
	border: 1.5px solid transparent;
	transition: all var(--transition);
	box-shadow: var(--shadow);
}
/* Glow border effect */
.glow-card::before {
	content: "";
	position: absolute;
	inset: -1.5px;
	border-radius: inherit;
	/* Let browser skip layout/paint for off-screen sections until needed */
	content-visibility: auto;
	padding: 1.5px;
	background: transparent;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity var(--transition);
	z-index: 1;
}
.glow-card[data-glow="blue"]::before {
	background: linear-gradient(135deg, var(--navy-400), var(--navy-300), var(--navy-500));
}
.glow-card[data-glow="gold"]::before {
	background: linear-gradient(135deg, var(--gold-400), var(--gold-500), var(--gold-300));
}
.glow-card[data-glow="teal"]::before {
	background: linear-gradient(135deg, var(--teal-400), var(--teal-500), var(--teal-600));
}

/* Skip rendering off-screen sections until needed */
/* Keep sections always paintable for cross-device reliability. */
.services,
.why-us,
.process,
.districts,
.faq,
.contact,
.footer {
	content-visibility: visible;
	contain-intrinsic-size: auto;
}

.glow-card:hover::before {
	opacity: 1;
}
.glow-card:hover {
	transform: translateY(-4px);
}
.glow-card[data-glow="blue"]:hover {
	box-shadow: var(--shadow), var(--shadow-glow-blue);
}
.glow-card[data-glow="gold"]:hover {
	box-shadow: var(--shadow), var(--shadow-glow-gold);
}
.glow-card[data-glow="teal"]:hover {
	box-shadow: var(--shadow), var(--shadow-glow-teal);
}

.glow-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.glow-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: grid;
	place-items: center;
}
.glow-card__icon svg {
	width: 28px;
	height: 28px;
}
.glow-card__icon--blue {
	background: rgba(59, 111, 212, 0.1);
	color: var(--navy-400);
}
.glow-card__icon--gold {
	background: rgba(245, 158, 11, 0.1);
	color: var(--gold-500);
}
.glow-card__icon--teal {
	background: rgba(20, 184, 166, 0.1);
	color: var(--teal-500);
}
.glow-card__tag {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 4px 12px;
	border-radius: 50px;
}
.glow-card__tag--blue {
	background: rgba(59, 111, 212, 0.08);
	color: var(--navy-400);
}
.glow-card__tag--gold {
	background: rgba(245, 158, 11, 0.08);
	color: var(--gold-600);
}
.glow-card__tag--teal {
	background: rgba(20, 184, 166, 0.08);
	color: var(--teal-600);
}
.glow-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text);
}
.glow-card p {
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.7;
}

/* ================================================================
   PROCESS
   ================================================================ */
.process {
	position: relative;
	padding: 100px 0;
	background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
	overflow: hidden;
}

.steps {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 0;
	max-width: 900px;
	margin: 0 auto;
}

/* Connecting line */
.steps__line {
	position: absolute;
	top: 28px;
	left: 16%;
	right: 16%;
	height: 3px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 3px;
	z-index: 0;
}
.steps__progress {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
	border-radius: 3px;
	transition: width 1.2s ease;
}

.step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	position: relative;
	z-index: 1;
}
.step__dot {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--text-light-muted);
	background: var(--navy-800);
	border: 2px solid rgba(255, 255, 255, 0.1);
	transition: all var(--transition-slow);
}
.step.lit .step__dot {
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	color: #fff;
	border-color: var(--gold-400);
	box-shadow: 0 0 24px rgba(245, 158, 11, 0.35);
}
.step__card {
	background: rgba(255, 255, 255, 0.11);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius);
	padding: 24px 22px;
	text-align: center;
	transition: all var(--transition);
	width: 100%;
	max-width: 260px;
}
.step.lit .step__card {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(245, 158, 11, 0.15);
}
.step__card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-light);
	margin-bottom: 8px;
}
.step__card p {
	font-size: 0.88rem;
	color: var(--text-light-muted);
	line-height: 1.65;
}

/* ================================================================
   DISTRICTS
   ================================================================ */
.districts {
	padding: 100px 0;
	background: var(--bg);
}
.districts__box {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(0, 0, 0, 0.04);
}
.pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.pill {
	background: rgba(38, 80, 176, 0.06);
	color: var(--navy-700);
	font-size: 0.85rem;
	font-weight: 500;
	padding: 8px 18px;
	border-radius: 50px;
	border: 1px solid rgba(38, 80, 176, 0.08);
	transition: all var(--transition);
	cursor: default;
}
.pill:hover {
	background: var(--navy-500);
	color: #fff;
	border-color: var(--navy-500);
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(38, 80, 176, 0.2);
}

.districts__note {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 28px;
	padding: 18px 22px;
	background: rgba(245, 158, 11, 0.06);
	border: 1px solid rgba(245, 158, 11, 0.1);
	border-radius: var(--radius);
}
.districts__note svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--gold-600);
	margin-top: 2px;
}
.districts__note p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.6;
}
.districts__note strong {
	color: var(--text);
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
	padding: 100px 0;
	background: var(--bg);
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}
.contact__info h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 14px;
}
.contact__desc {
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 24px;
}
.contact__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}
.contact__tags span {
	font-size: 0.78rem;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 50px;
	background: rgba(245, 158, 11, 0.08);
	color: var(--gold-700);
}
.contact__rows {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.contact__row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	background: var(--surface);
	border-radius: var(--radius);
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: all var(--transition);
}
a.contact__row:hover {
	border-color: var(--navy-300);
	box-shadow: 0 2px 12px rgba(59, 111, 212, 0.12);
}
.contact__row svg {
	width: 22px;
	height: 22px;
	color: var(--navy-400);
	flex-shrink: 0;
}
.contact__row span {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text);
}

/* CTA Card */
.cta-card {
	position: relative;
	background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
	border-radius: var(--radius-lg);
	padding: 48px 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
}
.cta-card__glow {
	position: absolute;
	top: -40%;
	right: -30%;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
	filter: blur(40px);
	animation: ctaGlow 6s ease-in-out infinite;
}
@keyframes ctaGlow {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-30px, 20px) scale(1.15); }
}
.cta-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.12);
	display: grid;
	place-items: center;
	margin-bottom: 4px;
}
.cta-card__icon svg {
	width: 30px;
	height: 30px;
	color: var(--wa);
}
.cta-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-light);
}
.cta-card p {
	font-size: 0.92rem;
	color: var(--text-light-muted);
	line-height: 1.65;
	max-width: 280px;
}
.cta-card small {
	font-size: 0.78rem;
	color: var(--text-light-muted);
	margin-top: 4px;
}
.cta-card .btn {
	position: relative;
	z-index: 2;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
	background: var(--navy-950);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 60px 0 0;
	color: var(--text-light-muted);
}
.footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__brand h3 {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 12px;
}
.footer__brand p {
	font-size: 0.88rem;
	line-height: 1.65;
	max-width: 320px;
}
.footer h4 {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text-light);
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer__links a {
	font-size: 0.88rem;
	transition: color var(--transition);
}
.footer__links a:hover {
	color: var(--gold-400);
}
.footer__contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 0.88rem;
}
.footer__contact a {
	transition: color var(--transition);
}
.footer__contact a:hover {
	color: var(--gold-400);
}
.footer__bottom {
	text-align: center;
	padding: 24px 0;
	font-size: 0.8rem;
}

/* ================================================================
   GLOBAL CTA BAR
   ================================================================ */
.mob-bar {
	display: flex;
	position: fixed;
	bottom: 20px;
	right: 20px;
	left: auto;
	transform: none;
	width: auto;
	z-index: 998;
	background: rgba(4, 12, 31, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	padding: 8px;
	gap: 8px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
.mob-bar__call,
.mob-bar__wa {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 0.84rem;
	font-weight: 600;
	color: #fff;
}
.mob-bar__call {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.mob-bar__call .btn__icon,
.mob-bar__wa .btn__icon {
	width: 18px;
	height: 18px;
	fill: currentColor;
}
.mob-bar__wa {
	background: linear-gradient(135deg, var(--wa), var(--wa-dark));
}

/* ================================================================
   SKIP LINK (Accessibility)
   ================================================================ */
.skip-link {
	position: absolute;
	top: -100%;
	left: 16px;
	z-index: 10000;
	background: var(--gold-500);
	color: #fff;
	padding: 12px 24px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 0.9rem;
	transition: top 0.3s;
}
.skip-link:focus {
	top: 12px;
}

/* ================================================================
   FOCUS STYLES (Accessibility)
   ================================================================ */
:focus-visible {
	outline: 2px solid var(--gold-400);
	outline-offset: 2px;
	border-radius: 4px;
}
button:focus-visible,
a:focus-visible {
	outline: 2px solid var(--gold-400);
	outline-offset: 2px;
}

/* ================================================================
   WHY US
   ================================================================ */
.why-us {
	position: relative;
	padding: 100px 0;
	background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
	overflow: hidden;
}
.why-us__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.why-card {
	position: relative;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
	transition: all var(--transition);
}
.why-card:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.12);
	transform: translateY(-4px);
}
.why-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	margin-bottom: 4px;
}
.why-card__icon svg {
	width: 28px;
	height: 28px;
}
.why-card__icon--blue {
	background: rgba(59, 111, 212, 0.15);
	color: var(--navy-300);
}
.why-card__icon--gold {
	background: rgba(245, 158, 11, 0.15);
	color: var(--gold-400);
}
.why-card__icon--teal {
	background: rgba(20, 184, 166, 0.15);
	color: var(--teal-400);
}
.why-card__icon--wa {
	background: rgba(37, 211, 102, 0.15);
	color: var(--wa);
}
.why-card:hover .why-card__icon--blue { box-shadow: var(--shadow-glow-blue); }
.why-card:hover .why-card__icon--gold { box-shadow: var(--shadow-glow-gold); }
.why-card:hover .why-card__icon--teal { box-shadow: var(--shadow-glow-teal); }
.why-card:hover .why-card__icon--wa { box-shadow: 0 0 32px rgba(37, 211, 102, 0.35); }
.why-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-light);
}
.why-card p {
	font-size: 0.88rem;
	color: var(--text-light-muted);
	line-height: 1.65;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq {
	padding: 100px 0;
	background: var(--bg);
}
.faq__list {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.faq-item {
	background: var(--surface);
	border-radius: var(--radius);
	border: 1px solid rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: all var(--transition);
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
}
.faq-item:hover {
	border-color: rgba(59, 111, 212, 0.15);
	box-shadow: 0 2px 16px rgba(59, 111, 212, 0.08);
}
.faq-item[open] {
	border-color: var(--navy-300);
	box-shadow: 0 4px 24px rgba(59, 111, 212, 0.12);
}
.faq-item__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text);
	transition: color var(--transition);
	user-select: none;
}
.faq-item__q::-webkit-details-marker {
	display: none;
}
.faq-item__q::marker {
	display: none;
	content: "";
}
.faq-item__q span {
	flex: 1;
	padding-right: 12px;
}
.faq-item__chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--text-muted);
	transition: transform 0.3s ease;
}
.faq-item[open] .faq-item__chevron {
	transform: rotate(180deg);
	color: var(--navy-400);
}
.faq-item__a {
	padding: 0 24px 20px;
	animation: faqSlide 0.3s ease;
}
.faq-item__a p {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.7;
}
.faq-item__a a {
	color: var(--navy-400);
	font-weight: 500;
	text-decoration: underline;
	text-decoration-color: rgba(59, 111, 212, 0.3);
	text-underline-offset: 2px;
	transition: text-decoration-color var(--transition);
}
.faq-item__a a:hover {
	text-decoration-color: var(--navy-400);
}
@keyframes faqSlide {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ================================================================
   REVEAL ANIMATION
   ================================================================ */
.rv {
	opacity: 1;
	transform: translate(0, 0);
	transition:
		opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
html.js .rv {
	opacity: 0;
}
html.js .rv[data-rv="up"] {
	transform: translateY(36px);
}
html.js .rv[data-rv="down"] {
	transform: translateY(-24px);
}
html.js .rv[data-rv="left"] {
	transform: translateX(-36px);
}
html.js .rv[data-rv="right"] {
	transform: translateX(36px);
}
html.js .rv.visible {
	opacity: 1;
	transform: translate(0, 0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
	.services,
	.why-us,
	.process,
	.districts,
	.faq,
	.contact,
	.footer {
		content-visibility: visible;
		contain-intrinsic-size: auto;
	}

	.services__grid {
		grid-template-columns: 1fr 1fr;
	}
	.services__grid .glow-card:last-child {
		grid-column: span 2;
		max-width: 400px;
		justify-self: center;
	}
	.why-us__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.steps {
		flex-direction: column;
		align-items: center;
		gap: 32px;
	}
	.steps__line {
		top: 0;
		bottom: 0;
		left: 28px;
		right: auto;
		width: 3px;
		height: auto;
	}
	.steps__progress {
		width: 100% !important;
		height: 0;
		transition: height 1.2s ease;
	}
	.step {
		flex-direction: row;
		align-items: flex-start;
		gap: 20px;
	}
	.step__card {
		text-align: left;
		max-width: 420px;
	}
}

@media (max-width: 768px) {
	.header__nav,
	.header__cta {
		display: none;
	}
	.header__burger {
		display: flex;
	}
	.header__inner {
		height: 62px;
	}
	.mob-nav__panel {
		padding: 68px 18px 22px;
	}
	.mob-nav__links a {
		font-size: 1rem;
		padding: 13px 14px;
	}

	.hero__inner {
		padding: 52px 0 86px;
		gap: 24px;
	}
	.hero__badge {
		font-size: 0.76rem;
		padding: 6px 14px;
	}
	.hero__title {
		font-size: clamp(1.9rem, 7vw, 2.4rem);
		line-height: 1.18;
	}
	.hero__sub {
		font-size: 0.98rem;
		line-height: 1.6;
		max-width: 95%;
	}
	.hero__stats {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 14px;
		max-width: min(100%, 420px);
		margin: 0 auto;
	}
	.hstat {
		display: grid;
		grid-template-columns: 44px 1fr;
		align-items: center;
		column-gap: 12px;
		row-gap: 2px;
		padding: 14px 12px;
		border-radius: var(--radius-sm);
		background: rgba(255, 255, 255, 0.09);
		border: 1px solid rgba(255, 255, 255, 0.06);
		transition: all var(--transition);
	}
	.hstat__icon {
		width: 42px;
		height: 42px;
		margin-bottom: 0;
		grid-row: 1 / span 2;
	}
	.hstat__icon svg {
		width: 22px;
		height: 22px;
	}
	.hstat strong {
		font-size: 1.06rem;
		font-weight: 700;
		text-align: left;
		line-height: 1.15;
	}
	.hstat span {
		font-size: 0.74rem;
		line-height: 1.25;
		text-align: left;
	}
	.hstat__sep {
		display: none;
	}

	.services,
	.why-us,
	.process,
	.districts,
	.faq,
	.contact {
		padding: 76px 0;
	}
	.sec-head {
		margin: 0 auto 34px;
	}
	.sec-head p {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.services__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.services__grid .glow-card:last-child {
		grid-column: span 1;
		max-width: 100%;
	}
	.glow-card {
		padding: 26px 20px 22px;
	}
	.glow-card h3 {
		font-size: 1.06rem;
	}
	.glow-card p {
		font-size: 0.9rem;
		line-height: 1.62;
	}

	.why-us__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.why-card {
		flex-direction: row;
		text-align: left;
		gap: 14px;
		padding: 18px;
	}
	.why-card__icon {
		width: 44px;
		height: 44px;
		flex-shrink: 0;
	}
	.why-card h3 {
		font-size: 0.98rem;
	}
	.why-card p {
		font-size: 0.84rem;
		line-height: 1.55;
	}

	.faq-item__q {
		padding: 16px 18px;
		font-size: 0.9rem;
	}
	.faq-item__a {
		padding: 0 18px 16px;
	}

	.contact__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.contact__desc {
		font-size: 0.95rem;
		margin-bottom: 18px;
	}
	.contact__tags {
		margin-bottom: 18px;
	}
	.contact__row {
		padding: 12px 14px;
	}
	.contact__row span {
		font-size: 0.9rem;
	}

	.footer__grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.footer {
		padding-bottom: 86px;
	}

	.mob-bar {
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		border-radius: 0;
		border-left: none;
		border-right: none;
		border-bottom: none;
		padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
		gap: 10px;
	}
	.mob-bar__call,
	.mob-bar__wa {
		flex: 1;
		border-radius: var(--radius-sm);
		padding: 12px 10px;
		font-size: 0.88rem;
		min-height: 48px;
	}

	.step__card {
		max-width: 100%;
		padding: 16px 14px;
	}
	.districts__box {
		padding: 22px 16px;
	}
	.pill {
		font-size: 0.8rem;
		padding: 7px 12px;
	}

	/* Mobile performance: tone down expensive effects */
	.mesh-blob {
		animation: none;
		filter: blur(80px);
	}
}

@media (max-width: 480px) {
	.mob-bar {
		bottom: 0;
		width: 100%;
		padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
		gap: 8px;
	}
	.mob-bar__call,
	.mob-bar__wa {
		padding: 10px 8px;
		font-size: 0.82rem;
	}
	.hero {
		min-height: 100svh;
	}
	.hero__inner {
		padding: 42px 0 72px;
		gap: 18px;
	}
	.hero__badge {
		font-size: 0.7rem;
		padding: 5px 12px;
	}
	.hero__title {
		font-size: clamp(1.65rem, 8vw, 2.05rem);
	}
	.hero__sub {
		font-size: 0.92rem;
	}
	.hero__stats {
		grid-template-columns: 1fr;
		gap: 8px;
		max-width: 100%;
		padding: 10px;
	}
	.hstat {
		grid-template-columns: 40px 1fr;
		column-gap: 10px;
		padding: 12px 10px;
	}
	.hstat__icon {
		width: 40px;
		height: 40px;
	}
	.hstat strong {
		font-size: 1rem;
	}
	.hstat span {
		font-size: 0.72rem;
	}
	.container {
		padding: 0 16px;
	}
	.services,
	.why-us,
	.process,
	.districts,
	.faq,
	.contact {
		padding: 62px 0;
	}
	.sec-head {
		margin-bottom: 28px;
	}
	.sec-head h2 {
		font-size: 1.52rem;
	}
	.sec-head p {
		font-size: 0.9rem;
	}
	.glow-card {
		padding: 22px 16px 18px;
	}
	.steps {
		gap: 20px;
	}
	.step {
		gap: 12px;
	}
	.step__dot {
		width: 44px;
		height: 44px;
		font-size: 0.96rem;
	}
	.cta-card {
		padding: 28px 16px;
	}
	.pills {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}
	.pill {
		width: 100%;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
