:root {
	--bg: #030d1a;
	--surf: #061222;
	--surf2: #0a1c33;
	--surf3: #0d2040;
	--blue: #155fd4;
	--blue-lt: #4d91ff;
	--blue-dk: #0d3d8f;
	--blue-glow: rgba(26, 111, 255, 0.28);
	--blue-glow-lt: rgba(26, 111, 255, 0.12);
	--silver: #e0eaff;
	--silver2: #8daac8;
	--silver3: #6a88a8;
	--border: #0e2340;
	--border2: #132a4a;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--bg);
	color: var(--silver);
	line-height: 1.6;
	overflow-x: hidden;
	color-scheme: dark;
}

body::after {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 160px 160px;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.03;
	mix-blend-mode: overlay;
}

img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2 {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	line-height: 1.05;
}

h3 {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.2;
}

h1 {
	font-size: clamp(3.5rem, 8vw, 8.5rem);
	letter-spacing: -0.01em;
}

h2 {
	font-size: clamp(2.2rem, 5vw, 4.2rem);
}

em {
	font-style: normal;
	color: var(--blue-lt);
}

.label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--blue-lt);
}

/* BUTTONS */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.875rem 1.875rem;
	background: var(--blue);
	color: #fff;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.btn-primary svg {
	width: 15px;
	height: 15px;
	transition: transform 0.22s;
}

.btn-primary:hover {
	background: var(--blue-lt);
	transform: translateY(-2px);
	box-shadow: 0 10px 32px var(--blue-glow);
}

.btn-primary:hover svg {
	transform: translateX(3px);
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.875rem 1.875rem;
	background: transparent;
	color: var(--silver);
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: 1px solid rgba(224, 234, 255, .2);
	cursor: pointer;
	transition: border-color 0.22s, color 0.22s;
}

.btn-ghost svg {
	width: 15px;
	height: 15px;
}

.btn-ghost:hover {
	border-color: var(--blue-lt);
	color: var(--blue-lt);
}

/* NAV */
#nav {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	transition: background 0.35s, border-color 0.35s;
}

#nav.scrolled {
	background: rgba(3, 13, 26, .96);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
}

.nav-wrap {
	max-width: 1440px;
	margin: 0 auto;
	padding: 1.5rem 2.5rem;
	display: flex;
	align-items: center;
	gap: 3rem;
	transition: padding 0.35s;
}

#nav.scrolled .nav-wrap {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.brand-mark {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 100%);
	border: 1px solid rgba(26, 111, 255, .4);
	color: #fff;
	font-family: 'Rajdhani', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.05em;
	flex-shrink: 0;
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.brand-mark.lg {
	width: 54px;
	height: 54px;
	font-size: 1.3rem;
}

.bm-as {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.brand-name {
	font-family: 'Rajdhani', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.brand-sub {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--blue-lt);
}

.nav-links {
	display: flex;
	gap: 2.5rem;
	margin-left: auto;
}

.nav-links a {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--silver2);
	transition: color 0.2s;
}

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

.nav-cta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--blue-lt);
	border: 1px solid rgba(26, 111, 255, .35);
	padding: 0.5rem 1.1rem;
	transition: background 0.2s, border-color 0.2s;
}

.nav-cta svg {
	width: 14px;
	height: 14px;
}

.nav-cta:hover {
	background: rgba(26, 111, 255, .1);
	border-color: var(--blue-lt);
}

/* HERO */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
}

.hero-img {
	position: absolute;
	inset: 0;
}

.hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	transform: scale(1.05);
	animation: heroScale 16s ease forwards;
	filter: hue-rotate(180deg) saturate(1.2) brightness(0.85);
}

@keyframes heroScale {
	to {
		transform: scale(1);
	}
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, rgba(3, 13, 26, .96) 0%, rgba(3, 13, 26, .65) 55%, rgba(3, 13, 26, .2) 100%),
		linear-gradient(to top, rgba(3, 13, 26, .92) 0%, transparent 45%);
}

.hero-body {
	position: relative;
	z-index: 2;
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 10rem 2.5rem 5rem;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--silver2);
	margin-bottom: 1.5rem;
	animation: fadeUp 0.8s 0.2s both;
}

.eyebrow-rule {
	display: block;
	width: 48px;
	height: 1px;
	background: var(--blue);
	flex-shrink: 0;
}

.hero h1 {
	max-width: 820px;
	margin-bottom: 1.75rem;
	animation: fadeUp 0.9s 0.4s both;
}

.hero-lead {
	max-width: 500px;
	font-size: 0.95rem;
	line-height: 1.82;
	color: var(--silver2);
	margin-bottom: 2.5rem;
	animation: fadeUp 0.9s 0.6s both;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	animation: fadeUp 0.9s 0.8s both;
}

.hero-foot {
	position: relative;
	z-index: 2;
	background: rgba(3, 13, 26, .82);
	backdrop-filter: blur(16px);
	border-top: 1px solid var(--border);
	display: flex;
	animation: fadeIn 0.8s 1s both;
}

.hero-stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1.75rem 1rem;
	border-right: 1px solid var(--border2);
}

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

.hs-num {
	font-family: 'Rajdhani', sans-serif;
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--blue-lt);
	line-height: 1;
}

.hs-label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--silver3);
	margin-top: 0.4rem;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* ── HERO FX LAYER ─────────────────────────────────────────── */
.hero-fx {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

/* Radial blue glow pulse */
.hfx-glow {
	position: absolute;
	left: -10%;
	bottom: -10%;
	width: 75vw;
	height: 75vw;
	max-width: 900px;
	max-height: 900px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(26, 111, 255, 0.22) 0%, transparent 70%);
	animation: glowPulse 5s ease-in-out infinite;
	transform-origin: center;
}

@keyframes glowPulse {
	0%, 100% {
		opacity: 0.6;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.12);
	}
}

/* Horizontal scan line */
.hfx-scanline {
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(77, 145, 255, 0.5) 40%, rgba(77, 145, 255, 0.9) 50%, rgba(77, 145, 255, 0.5) 60%, transparent 100%);
	animation: scanDown 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
	top: 0;
}

@keyframes scanDown {
	0% {
		top: -2px;
		opacity: 0;
	}

	5% {
		opacity: 1;
	}

	95% {
		opacity: 0.6;
	}

	100% {
		top: 100%;
		opacity: 0;
	}
}

/* Particle canvas */
.hfx-particles {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
}

/* Light streaks */
.hfx-streak {
	position: absolute;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(77, 145, 255, 0.8), transparent);
	border-radius: 1px;
	opacity: 0;
}

.hfx-streak--1 {
	width: 35%;
	top: 28%;
	left: -40%;
	animation: streakAcross 7s 1.2s ease-in-out infinite;
}

.hfx-streak--2 {
	width: 22%;
	top: 55%;
	left: -30%;
	animation: streakAcross 9s 3.5s ease-in-out infinite;
}

.hfx-streak--3 {
	width: 45%;
	top: 72%;
	left: -50%;
	animation: streakAcross 8s 5.8s ease-in-out infinite;
}

@keyframes streakAcross {
	0% {
		transform: translateX(0);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	80% {
		opacity: 0.7;
	}

	100% {
		transform: translateX(200vw);
		opacity: 0;
	}
}

/* Perspective grid */
.hfx-grid {
	position: absolute;
	left: -10%;
	right: -10%;
	bottom: 80px;
	height: 240px;
	background-image:
		linear-gradient(rgba(26, 111, 255, 0.12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(26, 111, 255, 0.10) 1px, transparent 1px);
	background-size: 60px 60px;
	transform: perspective(400px) rotateX(60deg);
	transform-origin: bottom center;
	mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
	-webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
	animation: gridFade 1.6s 0.3s both;
}

@keyframes gridFade {
	from {
		opacity: 0;
		transform: perspective(400px) rotateX(60deg) translateY(30px);
	}

	to {
		opacity: 1;
		transform: perspective(400px) rotateX(60deg) translateY(0);
	}
}

/* ── HERO TEXT ANIMATIONS ──────────────────────────────────── */
.eyebrow-text {
	animation: revealText 0.9s 0.3s both;
}

@keyframes revealText {
	from {
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}

	to {
		clip-path: inset(0 0% 0 0);
		opacity: 1;
	}
}

.eyebrow-rule {
	animation: ruleGrow 0.7s 0.15s both;
	transform-origin: left;
}

@keyframes ruleGrow {
	from {
		transform: scaleX(0);
	}

	to {
		transform: scaleX(1);
	}
}

.h1-line {
	display: inline-block;
	animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.h1-line--1 {
	animation-delay: 0.45s;
}

.h1-line--2 {
	animation-delay: 0.65s;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(60px) skewY(3deg);
	}

	to {
		opacity: 1;
		transform: translateY(0) skewY(0deg);
	}
}

/* Shimmer on the em highlight */
em.h1-line--2 {
	background: linear-gradient(90deg, var(--blue-lt) 0%, #ffffff 45%, var(--blue-lt) 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: slideUp 0.9s 0.65s cubic-bezier(0.16, 1, 0.3, 1) both, shimmer 3.5s 1.6s linear infinite;
}

@keyframes shimmer {
	to {
		background-position: 200% center;
	}
}

/* CTA button pulse glow */
.btn-primary {
	animation: btnAppear 0.7s 1.1s both;
	position: relative;
}

.btn-primary::after {
	content: '';
	position: absolute;
	inset: 0;
	box-shadow: 0 0 0 0 rgba(26, 111, 255, 0.55);
	animation: btnGlow 2.8s 2s ease-out infinite;
	pointer-events: none;
}

@keyframes btnAppear {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes btnGlow {
	0% {
		box-shadow: 0 0 0 0 rgba(26, 111, 255, 0.55);
	}

	70% {
		box-shadow: 0 0 0 12px rgba(26, 111, 255, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(26, 111, 255, 0);
	}
}

/* Hero stat counters pop-in */
.hero-stat {
	animation: statPop 0.6s both;
}

.hero-stat:nth-child(1) {
	animation-delay: 1.1s;
}

.hero-stat:nth-child(2) {
	animation-delay: 1.25s;
}

.hero-stat:nth-child(3) {
	animation-delay: 1.4s;
}

.hero-stat:nth-child(4) {
	animation-delay: 1.55s;
}

@keyframes statPop {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* SECTION SHARED */
section {
	padding: 7rem 2.5rem;
	max-width: 1440px;
	margin: 0 auto;
}

.section-head {
	display: flex;
	align-items: flex-start;
	gap: 4rem;
	margin-bottom: 4rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border);
}

.sh-left .label {
	display: block;
}

.sh-left h2 {
	margin-top: 0.5rem;
}

.sh-right {
	flex: 1;
	font-size: 0.9rem;
	color: var(--silver2);
	line-height: 1.82;
	padding-top: 2.5rem;
	max-width: 480px;
}

/* SERVICES */
.services {
	border-top: 1px solid var(--border);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid var(--border);
	border-bottom: none;
	border-right: none;
}

.svc {
	padding: 2.5rem 2rem;
	border-right: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	position: relative;
	overflow: hidden;
	transition: background 0.28s;
}

.svc::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--blue);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}

.svc:hover {
	background: var(--surf2);
}

.svc:hover::after {
	transform: scaleX(1);
}

.svc-num {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--blue-lt);
	margin-bottom: 1rem;
}

.svc-icon {
	color: var(--blue-lt);
	margin-bottom: 1.25rem;
}

.svc-icon svg {
	width: 22px;
	height: 22px;
}

.svc h3 {
	margin-bottom: 0.75rem;
}

.svc p {
	font-size: 0.86rem;
	color: var(--silver2);
	line-height: 1.78;
}

/* PRICING */
.pricing {
	background: var(--surf);
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 7rem 2.5rem;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.pricing .section-head {
	max-width: 1440px;
	margin: 0 auto 4rem;
}

.pricing-main {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.price-card {
	background: var(--bg);
	border: 1px solid var(--border2);
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.price-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--blue), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}

.price-card:hover {
	border-color: rgba(26, 111, 255, .4);
	box-shadow: 0 0 40px var(--blue-glow-lt);
}

.price-card:hover::before {
	opacity: 1;
}

.price-card--accent {
	border-color: rgba(26, 111, 255, .3);
	background: var(--surf2);
}

.price-card--accent::before {
	opacity: 0.6;
}

.pc-icon {
	width: 52px;
	height: 52px;
	background: rgba(26, 111, 255, .12);
	border: 1px solid rgba(26, 111, 255, .25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue-lt);
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.pc-icon svg {
	width: 22px;
	height: 22px;
}

.pc-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.pc-header h3 {
	font-size: 1.6rem;
}

.pc-price {
	font-family: 'Rajdhani', sans-serif;
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--blue-lt);
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	white-space: nowrap;
}

.pc-check {
	color: var(--blue-lt);
}

.pc-check svg {
	width: 20px;
	height: 20px;
}

.pc-includes {
	flex: 1;
}

.pc-inc-label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--blue-lt);
	display: block;
	margin-bottom: 0.875rem;
}

.pc-includes ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.pc-includes li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: var(--silver2);
}

.pc-includes li svg {
	width: 14px;
	height: 14px;
	color: var(--blue-lt);
	flex-shrink: 0;
}

.pc-btn {
	align-self: flex-start;
}

/* ADDITIONAL CHARGES */
.pricing-extras {
	max-width: 1440px;
	margin: 0 auto;
	background: var(--surf3);
	border: 1px solid rgba(26, 111, 255, .2);
	padding: 2rem 2.5rem;
}

.pe-header {
	margin-bottom: 1.5rem;
}

.pe-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.pe-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	background: var(--surf2);
	border: 1px solid var(--border2);
	transition: border-color 0.25s;
}

.pe-item:hover {
	border-color: rgba(26, 111, 255, .3);
}

.pe-icon {
	width: 40px;
	height: 40px;
	background: rgba(26, 111, 255, .1);
	border: 1px solid rgba(26, 111, 255, .2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue-lt);
	flex-shrink: 0;
}

.pe-icon svg {
	width: 18px;
	height: 18px;
}

.pe-name {
	font-size: 0.9rem;
	flex: 1;
	color: var(--silver2);
}

.pe-price {
	font-family: 'Rajdhani', sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--blue-lt);
	line-height: 1;
}

/* GALLERY */
.work {
	border-top: 1px solid var(--border);
}

.work-head {
	margin-bottom: 2.5rem;
}

.work-head h2 {
	margin-top: 0.5rem;
}

.work-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 420px 280px;
	gap: 4px;
}

.wg-feature {
	grid-row: 1;
	grid-column: 1;
	position: relative;
	overflow: hidden;
}

.wg-side {
	grid-row: 1;
	grid-column: 2;
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 4px;
}

.wg-row {
	grid-row: 2;
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
}

.wg-item {
	position: relative;
	overflow: hidden;
}

.wg-feature img, .wg-item img {
	transition: transform 0.7s ease;
	filter: hue-rotate(180deg) saturate(1.1) brightness(0.9);
}

.wg-feature:hover img, .wg-item:hover img {
	transform: scale(1.06);
}

.wg-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2.5rem 1.25rem 1.25rem;
	background: linear-gradient(transparent, rgba(3, 13, 26, .92));
	display: flex;
	align-items: flex-end;
	gap: 0.75rem;
	transform: translateY(100%);
	transition: transform 0.32s ease;
}

.wg-feature:hover .wg-info, .wg-item:hover .wg-info {
	transform: translateY(0);
}

.wg-tag {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--blue-lt);
	border: 1px solid rgba(26, 111, 255, .4);
	padding: 0.2rem 0.5rem;
	background: rgba(26, 111, 255, .12);
	flex-shrink: 0;
	text-transform: uppercase;
}

.wg-make {
	font-family: 'Rajdhani', sans-serif;
	font-size: 1rem;
	font-weight: 600;
}

.work-cta {
	text-align: center;
	margin-top: 3rem;
}

/* ABOUT */
.about {
	max-width: none;
	width: 100%;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 640px;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.about-img {
	position: relative;
	overflow: hidden;
}

.about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: hue-rotate(180deg) saturate(1.15) brightness(0.85);
}

.about-body {
	background: var(--surf);
	padding: 6rem 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-body .label {
	display: block;
}

.about-body h2 {
	margin: 0.75rem 0 1.75rem;
}

.about-body>p {
	font-size: 0.9rem;
	color: var(--silver2);
	line-height: 1.84;
	margin-bottom: 1rem;
}

.about-badges {
	list-style: none;
	margin: 1.75rem 0 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.about-badges li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--silver2);
}

.about-badges li svg {
	width: 15px;
	height: 15px;
	color: var(--blue-lt);
	flex-shrink: 0;
}

/* PROCESS */
.process {
	border-top: 1px solid var(--border);
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--border);
	border-right: none;
}

.pstep {
	padding: 2.5rem 2rem;
	border-right: 1px solid var(--border);
}

.ps-num {
	font-family: 'Rajdhani', sans-serif;
	font-size: 4.5rem;
	font-weight: 700;
	-webkit-text-stroke: 1px rgba(26, 111, 255, .4);
	color: transparent;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.pstep>svg {
	width: 22px;
	height: 22px;
	color: var(--blue-lt);
	display: block;
	margin-bottom: 1.25rem;
}

.pstep h3 {
	margin-bottom: 0.75rem;
}

.pstep p {
	font-size: 0.85rem;
	color: var(--silver2);
	line-height: 1.78;
}

/* TESTIMONIALS */
.testimonials {
	border-top: 1px solid var(--border);
}

.tgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.tcard {
	background: var(--surf);
	border: 1px solid var(--border);
	padding: 2.25rem;
}

.tcard--accent {
	background: var(--surf2);
	border-color: rgba(26, 111, 255, .28);
}

.tcard-stars {
	display: flex;
	gap: 4px;
	color: var(--blue-lt);
	margin-bottom: 1.25rem;
}

.tcard-stars svg {
	width: 13px;
	height: 13px;
	fill: currentColor;
}

.tcard blockquote {
	font-family: 'Inter', sans-serif;
	font-style: italic;
	font-size: 0.95rem;
	line-height: 1.72;
	color: var(--silver);
	margin-bottom: 1.75rem;
}

.tcard-author {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

.ta-init {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--blue-dk), var(--blue));
	color: #fff;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}

.ta-info {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.ta-info strong {
	font-size: 0.875rem;
}

.ta-info span {
	font-size: 0.75rem;
	color: var(--silver3);
}

/* CONTACT */
.contact {
	max-width: none;
	width: 100%;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.contact-left {
	background: var(--surf);
	padding: 6rem 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-left .label {
	display: block;
}

.contact-left h2 {
	margin: 0.75rem 0 1.25rem;
}

.contact-left>p {
	font-size: 0.9rem;
	color: var(--silver2);
	line-height: 1.84;
	margin-bottom: 2.5rem;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.cdetail {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.cdetail svg {
	width: 18px;
	height: 18px;
	color: var(--blue-lt);
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.cdetail div {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.cdetail strong {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--silver);
}

.cdetail span, .cdetail a {
	font-size: 0.875rem;
	color: var(--silver2);
	transition: color 0.2s;
}

.cdetail a:hover {
	color: var(--blue-lt);
}

.contact-right {
	background: var(--bg);
	padding: 6rem 5rem;
}

.contact-right h3 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 1.75rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border);
}

.frow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.fg {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	margin-bottom: 1.25rem;
}

.fg label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--silver3);
}

.fg input, .fg select, .fg textarea {
	background: var(--surf2);
	border: 1px solid var(--border2);
	color: var(--silver);
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	padding: 0.75rem 1rem;
	outline: none;
	transition: border-color 0.2s;
	width: 100%;
}

.fg select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a6585' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
	cursor: pointer;
}

.fg select option {
	background: var(--surf3);
}

.fg input:focus, .fg select:focus, .fg textarea:focus {
	border-color: var(--blue);
}

.fg input::placeholder, .fg textarea::placeholder {
	color: var(--silver3);
}

.fg textarea {
	resize: vertical;
}

.req {
	color: var(--blue-lt);
}

.fset {
	border: 1px solid var(--border);
	padding: 1.25rem 1.25rem 0.25rem;
	margin: 0 0 1.25rem;
}

.fset legend {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--silver3);
	padding: 0 0.5rem;
}

.fhint {
	font-size: 0.75rem;
	color: var(--silver3);
	margin: 0 0 1rem;
}

.fset .frow {
	margin-bottom: 0;
}

.fset .fg:last-child, .fset .frow .fg {
	margin-bottom: 1rem;
}


.btn-submit {
	margin-top: 0.5rem;
	width: 100%;
	justify-content: center;
}

.form-success {
	text-align: center;
	padding: 4rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.form-success svg {
	width: 52px;
	height: 52px;
	color: var(--blue-lt);
}

.form-success h3 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 2rem;
}

.form-success p {
	font-size: 0.875rem;
	color: var(--silver2);
	line-height: 1.75;
	max-width: 340px;
}

.form-success p a {
	color: var(--blue-lt);
	text-decoration: underline;
}

.form-success p a:hover {
	text-decoration: none;
}


/* FOOTER */
.footer {
	background: #020912;
	border-top: 1px solid var(--border);
}

.footer-top {
	max-width: 1440px;
	margin: 0 auto;
	padding: 4.5rem 2.5rem 3rem;
	display: flex;
	gap: 5rem;
	align-items: flex-start;
}

.footer-brand {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	flex-shrink: 0;
}

.footer-brand .brand-text {
	padding-top: 0.25rem;
}

.footer-nav {
	display: flex;
	gap: 4rem;
	flex: 1;
	justify-content: flex-end;
}

.fn-col {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.fn-head {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--silver);
	margin-bottom: 0.5rem;
}

.fn-col a, .fn-col span {
	font-size: 0.82rem;
	color: var(--silver3);
	transition: color 0.2s;
	line-height: 1.45;
}

.fn-col a:hover {
	color: var(--blue-lt);
}

.fn-hours {
	font-size: 0.75rem !important;
}

.footer-bottom {
	max-width: 1440px;
	margin: 0 auto;
	padding: 1.5rem 2.5rem;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-bottom p {
	font-size: 0.7rem;
	color: var(--silver3);
}

.footer-social {
	display: flex;
	gap: 1.25rem;
}

.footer-social a {
	color: var(--silver3);
	transition: color 0.2s;
}

.footer-social a svg {
	width: 17px;
	height: 17px;
}

.footer-social a:hover {
	color: var(--blue-lt);
}

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

	.work-grid {
		grid-template-rows: 360px 240px;
	}

	.about {
		grid-template-columns: 1fr;
	}

	.about-img {
		height: 380px;
	}

	.about-body {
		padding: 4rem 3rem;
	}

	.process-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact {
		grid-template-columns: 1fr;
	}

	.contact-left {
		padding: 4rem 3rem;
	}

	.contact-right {
		padding: 4rem 3rem;
	}

	.footer-top {
		flex-direction: column;
		gap: 3rem;
	}

	.footer-nav {
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 2.5rem;
	}

	.pricing-main {
		grid-template-columns: 1fr;
	}

	.pe-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {

	/* Base */
	section {
		padding: 4rem 1.25rem;
	}

	/* Nav */
	.nav-wrap {
		padding: 1rem 1.25rem;
	}

	.nav-links {
		display: none;
	}

	.nav-cta {
		display: flex;
		font-size: 0.7rem;
		padding: 0.45rem 0.875rem;
	}

	/* Hero */
	.hero-body {
		padding: 8rem 1.25rem 3rem;
	}

	.hero-lead {
		font-size: 0.88rem;
		max-width: 100%;
	}

	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.hero-actions .btn-primary,
	.hero-actions .btn-ghost {
		width: 100%;
		justify-content: center;
	}

	.hero-foot {
		flex-wrap: wrap;
	}

	.hero-stat {
		flex: 1 1 50%;
		border-right: 1px solid var(--border2);
	}

	.hero-stat:nth-child(2) {
		border-right: none;
	}

	.hero-stat:nth-child(3) {
		border-top: 1px solid var(--border2);
	}

	.hero-stat:nth-child(4) {
		border-top: 1px solid var(--border2);
		border-right: none;
	}

	.hs-num {
		font-size: 2rem;
	}

	/* Section head */
	.section-head {
		flex-direction: column;
		gap: 1rem;
		padding-bottom: 1.5rem;
		margin-bottom: 2.5rem;
	}

	.sh-right {
		padding-top: 0;
		font-size: 0.85rem;
	}

	/* Services */
	.services-grid {
		grid-template-columns: 1fr;
	}

	.svc {
		padding: 1.75rem 1.25rem;
	}

	/* Pricing */
	.pricing {
		padding: 4rem 1.25rem;
	}

	.pricing-extras {
		padding: 1.25rem;
	}

	.price-card {
		padding: 1.75rem 1.25rem;
	}

	.pc-price {
		font-size: 2.2rem;
	}

	/* Gallery */
	.work-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 4px;
	}

	.wg-feature {
		height: 260px;
		grid-column: 1;
		grid-row: auto;
	}

	.wg-side {
		grid-column: 1;
		grid-row: auto;
		display: grid;
		grid-template-rows: 200px 200px;
		gap: 4px;
	}

	.wg-item {
		height: 200px;
	}

	.wg-row {
		grid-template-columns: 1fr;
		grid-column: 1;
		grid-row: auto;
	}

	/* always show gallery info on mobile (no hover) */
	.wg-info {
		transform: translateY(0);
	}

	/* About */
	.about {
		display: flex;
		flex-direction: column;
	}

	.about-img {
		height: 280px;
	}

	.about-body {
		padding: 2.5rem 1.25rem;
	}

	.about-body h2 {
		margin: 0.5rem 0 1.25rem;
	}

	/* Process */
	.process-steps {
		grid-template-columns: 1fr;
		border-right: 1px solid var(--border);
	}

	.pstep {
		padding: 2rem 1.25rem;
	}

	.ps-num {
		font-size: 3rem;
	}

	/* Testimonials */
	.tgrid {
		grid-template-columns: 1fr;
	}

	/* Contact */
	.contact {
		display: flex;
		flex-direction: column;
	}

	.contact-left {
		padding: 2.5rem 1.25rem;
	}

	.contact-right {
		padding: 2.5rem 1.25rem;
	}

	.frow {
		grid-template-columns: 1fr;
	}

	/* Footer */
	.footer-top {
		padding: 3rem 1.25rem 2rem;
	}

	.footer-nav {
		gap: 2rem;
		flex-wrap: wrap;
	}

	.fn-col {
		min-width: calc(50% - 1rem);
	}

	.footer-bottom {
		padding: 1.25rem 1.25rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	/* Buttons */
	.btn-primary, .btn-ghost {
		font-size: 0.78rem;
		padding: 0.8rem 1.5rem;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: clamp(2.8rem, 12vw, 4rem);
	}

	h2 {
		font-size: clamp(1.9rem, 8vw, 2.5rem);
	}

	section {
		padding: 3.5rem 1rem;
	}

	/* Hero */
	.hero-body {
		padding: 7rem 1rem 2.5rem;
	}

	.hero-stat {
		padding: 1.25rem 0.5rem;
	}

	.hs-num {
		font-size: 1.7rem;
	}

	.hs-label {
		font-size: 0.6rem;
	}

	/* Nav */
	.nav-wrap {
		padding: 0.875rem 1rem;
	}

	.brand-name {
		font-size: 0.95rem;
	}

	.brand-sub {
		display: none;
	}

	/* Pricing */
	.pricing {
		padding: 3.5rem 1rem;
	}

	.pe-grid {
		gap: 0.75rem;
	}

	.pe-item {
		padding: 1rem;
		gap: 0.75rem;
	}

	/* About / Contact */
	.about-body {
		padding: 2rem 1rem;
	}

	.contact-left {
		padding: 2rem 1rem;
	}

	.contact-right {
		padding: 2rem 1rem;
	}

	/* Process */
	.pstep {
		padding: 1.75rem 1rem;
	}

	/* Footer */
	.footer-top {
		padding: 2.5rem 1rem 1.75rem;
	}

	.fn-col {
		min-width: 100%;
	}

	.footer-bottom {
		padding: 1rem;
	}

	.footer-bottom p {
		font-size: 0.65rem;
	}
}