:root {
	--primary: #1b6fd4;
	--primary-bright: #3b8fef;
	--primary-glow: rgba(27, 111, 212, 0.45);
	--navy: #0a1628;
	--navy-mid: #12243f;
	--navy-soft: #1a3358;
	--text: #1a2e4a;
	--text-muted: #5c7290;
	--bg: #fafbfd;
	--bg-white: #ffffff;
	--border: rgba(26, 46, 74, 0.1);
	--max: 1200px;
	--radius: 20px;
	--radius-sm: 12px;
	--font: "Plus Jakarta Sans", system-ui, sans-serif;
	--font-display: "Bricolage Grotesque", var(--font);
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--header-h: 76px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-h);
}

@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;
	}
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.is-menu-open {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

.container {
	width: min(100% - 2.5rem, var(--max));
	margin-inline: auto;
}

.container--wide {
	width: min(100% - 1.5rem, 1320px);
	margin-inline: auto;
}

/* ─── Header ─── */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	height: var(--header-h);
	transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}

.site-header.is-scrolled {
	background: rgba(250, 251, 253, 0.82);
	backdrop-filter: blur(16px) saturate(1.4);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 4px 30px rgba(10, 22, 40, 0.06);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 1.5rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	color: var(--navy);
}

.brand-logo {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
}

.brand-name {
	display: block;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1.15;
}

.brand-tagline {
	display: block;
	font-size: 0.68rem;
	font-weight: 500;
	color: var(--text-muted);
	letter-spacing: 0.03em;
}

.nav-desktop {
	display: flex;
	align-items: center;
	gap: 2.25rem;
}

.nav-desktop a:not(.btn-pill) {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-muted);
	transition: color 0.2s;
}

.nav-desktop a:not(.btn-pill):hover,
.nav-desktop a.nav-active {
	color: var(--primary);
}

.nav-desktop a.nav-active {
	font-weight: 700;
}

.btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.2rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, var(--primary) 0%, #1558a8 100%);
	border-radius: 999px;
	box-shadow: 0 4px 20px var(--primary-glow);
	transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.btn-pill:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px var(--primary-glow);
	color: #fff;
}

.btn-pill svg {
	width: 1rem;
	height: 1rem;
}

.nav-toggle {
	display: none;
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 0.55rem;
	cursor: pointer;
	color: var(--navy);
}

.nav-mobile {
	display: none;
	position: fixed;
	inset: var(--header-h) 0 0 0;
	z-index: 199;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.5rem;
	background: rgba(250, 251, 253, 0.98);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--border);
}

.nav-mobile.is-open {
	display: flex;
}

.nav-mobile a {
	font-size: 1.1rem;
	font-weight: 600;
	padding: 0.75rem 0;
	color: var(--navy);
	border-bottom: 1px solid var(--border);
}

/* ─── Buttons ─── */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.95rem 1.85rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, var(--primary-bright) 0%, var(--primary) 55%, #1558a8 100%);
	border-radius: 999px;
	box-shadow: 0 4px 24px var(--primary-glow);
	transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 36px var(--primary-glow);
	color: #fff;
}

.btn-primary svg {
	width: 1.1rem;
	height: 1.1rem;
	transition: transform 0.25s var(--ease-out);
}

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

.btn-ghost {
	display: inline-flex;
	align-items: center;
	padding: 0.95rem 1.5rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--navy);
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid var(--border);
	border-radius: 999px;
	backdrop-filter: blur(8px);
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: #fff;
}

/* ─── Hero ─── */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	padding: calc(var(--header-h) + 3rem) 0 5rem;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-mesh {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 80% 60% at 70% 20%, rgba(27, 111, 212, 0.14) 0%, transparent 55%),
		radial-gradient(ellipse 50% 40% at 10% 80%, rgba(27, 111, 212, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse 40% 30% at 90% 70%, rgba(59, 143, 239, 0.1) 0%, transparent 45%);
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(27, 111, 212, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(27, 111, 212, 0.04) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 75%);
	opacity: 0.6;
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	pointer-events: none;
	animation: orb-float 12s ease-in-out infinite;
}

.hero-orb--1 {
	width: 320px;
	height: 320px;
	background: rgba(27, 111, 212, 0.2);
	top: 10%;
	right: 5%;
}

.hero-orb--2 {
	width: 200px;
	height: 200px;
	background: rgba(59, 143, 239, 0.15);
	bottom: 20%;
	left: -5%;
	animation-delay: -4s;
}

@keyframes orb-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-20px, 15px) scale(1.05); }
}

.hero .container {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 3rem;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	padding: 0.4rem 0.9rem 0.4rem 0.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--primary);
	background: rgba(27, 111, 212, 0.08);
	border: 1px solid rgba(27, 111, 212, 0.15);
	border-radius: 999px;
}

.hero-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--primary-bright);
	box-shadow: 0 0 12px var(--primary);
	animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
	margin: 0 0 1.35rem;
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5.5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: var(--navy);
}

.hero h1 .line-accent {
	display: block;
	background: linear-gradient(120deg, var(--primary) 0%, var(--primary-bright) 50%, #5ba3f5 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-lead {
	margin: 0 0 2rem;
	max-width: 28rem;
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.hero-trust-item strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--navy);
	letter-spacing: -0.02em;
}

.hero-trust-item span {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
}

/* Hero showcase */
.hero-showcase {
	position: relative;
}

.hero-showcase-frame {
	position: relative;
	border-radius: 28px;
	padding: 3px;
	background: linear-gradient(145deg, rgba(27, 111, 212, 0.5), rgba(255, 255, 255, 0.8) 40%, rgba(27, 111, 212, 0.25));
	box-shadow:
		0 4px 6px rgba(10, 22, 40, 0.04),
		0 24px 80px rgba(27, 111, 212, 0.18),
		0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.hero-showcase-inner {
	position: relative;
	border-radius: 25px;
	overflow: hidden;
	background: linear-gradient(180deg, #eef4fc 0%, #fff 100%);
	aspect-ratio: 4 / 3.2;
}

.hero-showcase-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 36%;
}

.hero-showcase-glow {
	position: absolute;
	inset: -20%;
	background: radial-gradient(circle at 50% 50%, var(--primary-glow), transparent 65%);
	opacity: 0.35;
	pointer-events: none;
	z-index: -1;
}

.hero-float-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
	backdrop-filter: blur(12px);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--navy);
	animation: card-float 6s ease-in-out infinite;
}

.hero-float-card svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--primary);
	flex-shrink: 0;
}

.hero-float-card--code {
	left: -8%;
	bottom: 18%;
	animation-delay: 0s;
}

.hero-float-card--cloud {
	right: -6%;
	top: 22%;
	animation-delay: -2s;
}

@keyframes card-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ─── Marquee ─── */
.marquee {
	padding: 1.25rem 0;
	background: var(--navy);
	overflow: hidden;
}

.marquee-track {
	display: flex;
	width: max-content;
	gap: 3rem;
	animation: marquee 28s linear infinite;
}

.marquee-track span {
	flex-shrink: 0;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	white-space: nowrap;
}

.marquee-track span::before {
	content: "◆";
	margin-right: 3rem;
	color: var(--primary-bright);
	font-size: 0.5rem;
	vertical-align: middle;
}

@keyframes marquee {
	to { transform: translateX(-50%); }
}

/* ─── Sections shared ─── */
.section-label {
	display: inline-block;
	margin-bottom: 0.75rem;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
}

.section-title {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 3.5vw, 2.65rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--navy);
	line-height: 1.1;
}

.section-lead {
	margin: 0;
	max-width: 32rem;
	font-size: 1.05rem;
	color: var(--text-muted);
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ─── Services (bento) ─── */
.services {
	padding: 6rem 0;
	position: relative;
}

.services-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 2rem;
	margin-bottom: 3rem;
}

.services-bento {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: auto auto;
	gap: 1.25rem;
}

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0;
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--primary-bright));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s var(--ease-out);
	z-index: 3;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
	border-color: rgba(27, 111, 212, 0.25);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card:hover .service-visual img {
	transform: scale(1.06);
}

/* Featured card — high contrast text */
.service-card--featured {
	grid-column: 1 / span 6;
	grid-row: 1 / span 2;
	background: linear-gradient(155deg, #0a1628 0%, #12243f 45%, #1a3a6b 100%);
	border: none;
	box-shadow: 0 20px 60px rgba(10, 22, 40, 0.2);
}

.service-card--featured::before {
	background: linear-gradient(90deg, #5ba3f5, #9ec9ff);
}

.service-card--featured .service-body {
	position: relative;
	z-index: 2;
}

.service-card--featured .service-card-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	height: 100%;
	padding: 1.75rem;
}

.service-card--featured .service-num {
	color: rgba(255, 255, 255, 0.2);
}

.service-card--featured .service-icon {
	background: rgba(91, 163, 245, 0.2);
	color: #9ec9ff;
	border: 1px solid rgba(158, 201, 255, 0.25);
}

.service-card.service-card--featured h3 {
	font-size: 1.5rem;
	color: #ffffff;
	margin-bottom: 0.75rem;
}

.service-card.service-card--featured p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: none;
	line-height: 1.65;
}

.service-card--wide .service-card-inner--wide {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 1.5rem;
	align-items: center;
	padding: 1.5rem 1.75rem;
}

.service-card-inner {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Decorative illustrations */
.service-deco {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 0;
}

.service-deco--light {
	inset: auto;
	top: 1rem;
	right: 1rem;
	width: 60px;
	height: 40px;
}

.service-deco-svg {
	position: absolute;
	top: -20%;
	right: -15%;
	width: 70%;
	height: auto;
	color: rgba(91, 163, 245, 0.15);
}

.service-deco-ring {
	transform-origin: center;
	animation: service-spin 24s linear infinite;
}

.service-deco-ring--2 {
	animation-direction: reverse;
	animation-duration: 18s;
}

.service-deco-line {
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
	animation: service-draw 4s var(--ease-out) infinite alternate;
}

.service-deco-dot {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--primary);
	opacity: 0.35;
	animation: service-dot-float 4s ease-in-out infinite;
}

.service-deco-dot:nth-child(1) { top: 0; left: 0; }
.service-deco-dot:nth-child(2) { top: 50%; right: 0; animation-delay: -1.3s; }
.service-deco-dot:nth-child(3) { bottom: 0; left: 40%; animation-delay: -2.6s; }

.service-deco-wave {
	width: 100%;
	height: 100%;
	color: rgba(27, 111, 212, 0.2);
}

.service-deco-wave path {
	stroke-dasharray: 180;
	animation: service-wave 3s ease-in-out infinite;
}

@keyframes service-spin {
	to { transform: rotate(360deg); }
}

@keyframes service-draw {
	to { stroke-dashoffset: 0; }
}

@keyframes service-dot-float {
	0%, 100% { transform: translateY(0); opacity: 0.35; }
	50% { transform: translateY(-6px); opacity: 0.7; }
}

@keyframes service-wave {
	0%, 100% { stroke-dashoffset: 180; }
	50% { stroke-dashoffset: 40; }
}

@keyframes service-img-reveal {
	from {
		opacity: 0;
		transform: scale(1.08);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes service-glow-pulse {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 0.85; transform: scale(1.05); }
}

@keyframes service-shimmer {
	0% { transform: translateX(-100%) skewX(-12deg); }
	100% { transform: translateX(200%) skewX(-12deg); }
}

/* Service images */
.service-visual {
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.service-card:not(.service-card--featured):not(.service-card--wide) .service-visual {
	height: 140px;
	margin: 0 1rem;
	border-radius: 12px;
}

.service-card:not(.service-card--featured):not(.service-card--wide) .service-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.08) 100%);
	pointer-events: none;
}

.service-visual--featured {
	border-radius: 14px;
	min-height: 200px;
}

.service-visual--wide {
	border-radius: 14px;
	height: 160px;
}

.service-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-out);
}

.service-card.is-visible .service-visual img {
	animation: service-img-reveal 0.9s var(--ease-out) forwards;
}

.service-visual-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 70%, rgba(91, 163, 245, 0.35), transparent 55%);
	animation: service-glow-pulse 5s ease-in-out infinite;
	pointer-events: none;
}

.service-visual-glow--blue {
	background: radial-gradient(circle at 70% 50%, rgba(27, 111, 212, 0.25), transparent 60%);
}

.service-visual--featured::before,
.service-visual--wide::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		105deg,
		transparent 40%,
		rgba(255, 255, 255, 0.12) 50%,
		transparent 60%
	);
	animation: service-shimmer 6s ease-in-out infinite;
	pointer-events: none;
}

.service-body {
	position: relative;
	padding: 1.25rem 1.5rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.service-card--featured .service-body {
	padding: 0;
	justify-content: center;
}

.service-card--wide .service-body {
	padding: 0;
}

.service-num {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1;
	color: rgba(27, 111, 212, 0.14);
	z-index: 2;
}

.service-card--featured .service-num {
	top: 0;
	right: 0;
}

.service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	background: rgba(27, 111, 212, 0.1);
	border-radius: 12px;
	color: var(--primary);
	flex-shrink: 0;
}

.service-icon svg {
	width: 24px;
	height: 24px;
}

.service-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--navy);
	letter-spacing: -0.02em;
}

.service-card p {
	margin: 0;
	font-size: 0.9rem;
	color: #4a6178;
	line-height: 1.6;
}

/* Staggered card entrance */
.service-card.reveal.is-visible[data-service="01"] { transition-delay: 0s; }
.service-card.reveal.is-visible[data-service="02"] { transition-delay: 0.08s; }
.service-card.reveal.is-visible[data-service="03"] { transition-delay: 0.16s; }
.service-card.reveal.is-visible[data-service="04"] { transition-delay: 0.24s; }

.services-bento .service-card:nth-child(2) {
	grid-column: 7 / span 3;
	grid-row: 1;
}

.services-bento .service-card:nth-child(3) {
	grid-column: 10 / span 3;
	grid-row: 1;
}

.services-bento .service-card:nth-child(4) {
	grid-column: 7 / span 6;
	grid-row: 2;
}

@media (prefers-reduced-motion: reduce) {
	.service-deco-ring,
	.service-deco-line,
	.service-deco-dot,
	.service-deco-wave path,
	.service-visual-glow,
	.service-visual--featured::before,
	.service-visual--wide::before,
	.service-card.is-visible .service-visual img {
		animation: none;
	}

	.service-card:hover .service-visual img {
		transform: none;
	}
}

/* ─── Process ─── */
.process {
	padding: 5rem 0 6rem;
	background: var(--bg-white);
	border-block: 1px solid var(--border);
}

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

.process-step {
	position: relative;
	padding: 1.75rem 1.5rem;
	border-radius: var(--radius-sm);
	background: var(--bg);
	border: 1px solid var(--border);
}

.process-step::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -0.85rem;
	width: 1.5rem;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), transparent);
	transform: translateY(-50%);
}

.process-step:last-child::after {
	display: none;
}

.process-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-bottom: 1rem;
	font-family: var(--font-display);
	font-size: 0.9rem;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(135deg, var(--primary), #1558a8);
	border-radius: 10px;
}

.process-step h3 {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--navy);
}

.process-step p {
	margin: 0;
	font-size: 0.88rem;
	color: var(--text-muted);
}

/* ─── About ─── */
.about {
	padding: 6rem 0;
}

.about-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.about-quote {
	margin: 2rem 0 0;
	padding: 1.75rem 2rem;
	background: linear-gradient(135deg, rgba(27, 111, 212, 0.06) 0%, rgba(255, 255, 255, 0.9) 100%);
	border-left: 4px solid var(--primary);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 1.05rem;
	font-weight: 600;
	font-style: italic;
	color: var(--navy);
	line-height: 1.6;
}

.about-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.about-feature {
	display: flex;
	gap: 1rem;
	padding: 1.25rem 1.35rem;
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	transition: box-shadow 0.3s, border-color 0.3s;
}

.about-feature:hover {
	box-shadow: 0 12px 32px rgba(10, 22, 40, 0.06);
	border-color: rgba(27, 111, 212, 0.2);
}

.about-feature-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(27, 111, 212, 0.1);
	border-radius: 12px;
	color: var(--primary);
}

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

.about-feature h4 {
	margin: 0 0 0.25rem;
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--navy);
}

.about-feature p {
	margin: 0;
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* ─── CTA ─── */
.cta {
	padding: 0 0 6rem;
}

.cta-panel {
	position: relative;
	padding: 4rem 3rem;
	border-radius: 28px;
	overflow: hidden;
	text-align: center;
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, #1a4a7a 100%);
	color: #fff;
}

.cta-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(59, 143, 239, 0.25) 0%, transparent 50%),
		radial-gradient(circle at 80% 30%, rgba(27, 111, 212, 0.2) 0%, transparent 45%);
	pointer-events: none;
}

.cta-panel .section-title {
	position: relative;
	color: #fff;
	margin-bottom: 0.75rem;
}

.cta-panel .section-lead {
	position: relative;
	margin: 0 auto 2rem;
	color: rgba(255, 255, 255, 0.75);
	max-width: 28rem;
}

.cta-actions {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.cta-panel .btn-primary {
	background: #fff;
	color: var(--navy);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-panel .btn-primary:hover {
	background: #f0f6ff;
	color: var(--primary);
}

.cta-panel .btn-ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.08);
}

.cta-panel .btn-ghost:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

/* ─── Footer ─── */
.site-footer {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.7);
	padding: 3.5rem 0 2rem;
}

.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
	padding-bottom: 2.5rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-name {
	color: #fff;
}

.footer-brand .brand-tagline {
	color: rgba(255, 255, 255, 0.5);
}

.footer-links {
	display: flex;
	gap: 2rem;
}

.footer-links a {
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--primary-bright);
}

.footer-tagline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	margin: 0 0 1.5rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
}

.footer-tagline svg {
	width: 1.2rem;
	height: 1.2rem;
	color: var(--primary-bright);
}

.footer-tagline .highlight {
	color: var(--primary-bright);
	font-weight: 800;
}

.footer-meta {
	text-align: center;
	font-size: 0.8rem;
	opacity: 0.5;
}

.footer-meta a:hover {
	color: #fff;
}

/* ─── Team page ─── */
.page-teams main {
	padding-top: var(--header-h);
}

.page-hero {
	position: relative;
	padding: 4rem 0 3.5rem;
	overflow: hidden;
}

.page-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 80% at 80% 0%, rgba(27, 111, 212, 0.12) 0%, transparent 55%),
		linear-gradient(180deg, #fff 0%, var(--bg) 100%);
	pointer-events: none;
}

.page-hero-inner {
	position: relative;
	max-width: 720px;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-muted);
}

.breadcrumb a {
	color: var(--primary);
	transition: color 0.2s;
}

.breadcrumb a:hover {
	color: var(--primary-bright);
}

.breadcrumb span[aria-current] {
	color: var(--navy);
}

.page-hero h1 {
	margin: 0 0 1.25rem;
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.04em;
	color: var(--navy);
}

.page-hero h1 .line-accent {
	background: linear-gradient(120deg, var(--primary) 0%, var(--primary-bright) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.page-hero-lead {
	margin: 0;
	font-size: 1.15rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.team-culture {
	padding: 3rem 0 4rem;
}

.team-culture-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.team-culture-copy p {
	margin: 0;
	font-size: 1.05rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.team-stats {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.team-stats li {
	padding: 1.25rem 1.35rem;
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	transition: box-shadow 0.3s, border-color 0.3s;
}

.team-stats li:hover {
	box-shadow: 0 12px 32px rgba(10, 22, 40, 0.06);
	border-color: rgba(27, 111, 212, 0.2);
}

.team-stats strong {
	display: block;
	margin-bottom: 0.25rem;
	font-size: 1rem;
	font-weight: 800;
	color: var(--navy);
}

.team-stats span {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.team-section {
	padding: 4rem 0 5rem;
}

.team-section--alt {
	background: var(--bg-white);
	border-block: 1px solid var(--border);
}

.team-section-head {
	margin-bottom: 2.5rem;
	max-width: 36rem;
}

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

.team-grid--lead {
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.team-card {
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.team-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 45px rgba(10, 22, 40, 0.09);
}

.team-card-photo {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-card-photo--img {
	background: linear-gradient(145deg, #e8f2fc, #d4e4f7);
}

.team-card-photo--img::before {
	display: none;
}

.team-card-photo--img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.5s var(--ease-out);
}

/* Full-body office portraits — keep face in frame */
.team-card-photo--portrait img {
	object-position: top center;
}

.team-card:not(.team-card--lead) .team-card-photo--portrait {
	aspect-ratio: 3 / 4;
}

.team-card:hover .team-card-photo--img img {
	transform: scale(1.05);
}

.team-alias {
	font-size: 0.75em;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: 0.02em;
}

.team-card--lead .team-alias {
	color: var(--primary-bright);
}

.team-card--lead .team-card-photo {
	aspect-ratio: 4 / 5;
}

.team-card-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 24px 24px;
	opacity: 0.5;
	pointer-events: none;
}

.team-avatar {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42%;
	max-width: 140px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: 3px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 12px 32px rgba(10, 22, 40, 0.15);
	transition: transform 0.45s var(--ease-out);
}

.team-card--lead .team-avatar {
	width: 38%;
	max-width: 120px;
}

.team-card:hover .team-avatar {
	transform: scale(1.06);
}

.team-avatar-initials {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #fff;
	text-shadow: 0 2px 8px rgba(10, 22, 40, 0.2);
}

.team-card--lead .team-avatar-initials {
	font-size: clamp(2rem, 5vw, 2.75rem);
}

.team-avatar--1 {
	background: linear-gradient(145deg, #1b6fd4 0%, #0a4a8f 100%);
}

.team-avatar--2 {
	background: linear-gradient(145deg, #3b8fef 0%, #1b6fd4 100%);
}

.team-avatar--3 {
	background: linear-gradient(145deg, #12243f 0%, #1b6fd4 100%);
}

.team-avatar--4 {
	background: linear-gradient(145deg, #5ba3f5 0%, #3b8fef 100%);
}

.team-avatar--5 {
	background: linear-gradient(145deg, #1a4a7a 0%, #12243f 100%);
}

.team-avatar--6 {
	background: linear-gradient(145deg, #0c1f3d 0%, #1b6fd4 100%);
}

.team-avatar--7 {
	background: linear-gradient(145deg, #2d6eb8 0%, #5ba3f5 100%);
}

.team-avatar--8 {
	background: linear-gradient(145deg, #1558a8 0%, #3b8fef 100%);
}

.team-card--lead {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0;
}

.team-card--lead .team-card-body {
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.team-card h3 {
	margin: 0 0 0.2rem;
	padding: 1.25rem 1.25rem 0;
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--navy);
	letter-spacing: -0.02em;
}

.team-card--lead h3 {
	padding: 0;
	font-size: 1.35rem;
}

.team-role {
	margin: 0 0 0.65rem;
	padding: 0 1.25rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.team-card--lead .team-role {
	padding: 0;
}

.team-bio {
	margin: 0;
	padding: 0 1.25rem 1.25rem;
	font-size: 0.88rem;
	color: #4a6178;
	line-height: 1.55;
}

.team-card--lead .team-bio {
	padding: 0;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.team-link {
	display: inline-flex;
	align-self: flex-start;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--primary);
	transition: color 0.2s;
}

.team-link:hover {
	color: var(--primary-bright);
}

.team-values {
	padding: 5rem 0;
}

.team-values-inner {
	max-width: 640px;
	margin-inline: auto;
	text-align: center;
}

.team-values-inner .section-title {
	margin-bottom: 2.5rem;
}

.team-values-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	text-align: left;
}

.team-values-list li {
	display: flex;
	gap: 1.25rem;
	padding: 1.5rem 1.75rem;
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: box-shadow 0.3s;
}

.team-values-list li:hover {
	box-shadow: 0 12px 36px rgba(10, 22, 40, 0.07);
}

.team-value-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(27, 111, 212, 0.1);
	border-radius: 12px;
	color: var(--primary);
}

.team-value-icon svg {
	width: 24px;
	height: 24px;
}

.team-values-list h3 {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--navy);
}

.team-values-list p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.55;
}

.page-teams .cta {
	padding-bottom: 5rem;
}
