/* ==========================================================================
   İstanbul Uçak Kargo — Premium Homepage (v1.5)
   Prefix: av-  |  Scoped: .iuk-home
   ========================================================================== */

.iuk-home {
	--av-bg: #020617;
	--av-surface: #0b1120;
	--av-surface-2: #111827;
	--av-line: rgba(255, 255, 255, 0.07);
	--av-text: #f8fafc;
	--av-muted: rgba(255, 255, 255, 0.52);
	--av-blue: #2563eb;
	--av-cyan: #06b6d4;
	--av-green: #10b981;
	--av-wa: #25d366;
	--av-glow: rgba(37, 99, 235, 0.35);
	--av-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--av-header: 56px;
}

.iuk-home .iuk-main { padding-top: 0; }

/* Header over hero */
.iuk-home .iuk-header {
	position: fixed;
	background: transparent;
	border-bottom: 1px solid transparent;
	height: var(--av-header);
	z-index: 100;
	transition: background 0.35s, border-color 0.35s;
}

.iuk-home .iuk-header--scrolled {
	background: rgba(2, 6, 23, 0.92);
	backdrop-filter: blur(16px);
	border-bottom-color: var(--av-line);
}

.iuk-home .iuk-logo__text strong { font-size: 0.875rem; color: #fff; }
.iuk-home .iuk-logo__text small { display: none; }

.iuk-home .iuk-header__inner {
	height: var(--av-header);
	gap: clamp(1rem, 2.5vw, 2rem);
}

.iuk-home .iuk-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	padding: 0 clamp(0.5rem, 2vw, 1.5rem);
}

.iuk-home .iuk-nav__list {
	gap: clamp(1rem, 2vw, 1.75rem);
}

.iuk-home .iuk-nav__list a {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: color 0.25s var(--av-ease), opacity 0.25s var(--av-ease);
}

.iuk-home .iuk-nav__list a:hover,
.iuk-home .iuk-nav__list .current-menu-item a {
	color: #fff;
	opacity: 1;
}

.iuk-home .iuk-header__actions {
	gap: 0.625rem;
	margin-left: 0.25rem;
	flex-shrink: 0;
}

.iuk-home .iuk-header__actions .iuk-btn {
	font-size: 0.8125rem;
	padding: 0.5rem 1rem;
	font-weight: 600;
	border-width: 1px;
	transition: transform 0.25s var(--av-ease), box-shadow 0.25s var(--av-ease), background 0.25s var(--av-ease), border-color 0.25s var(--av-ease);
}

.iuk-home .iuk-header__phone {
	display: inline-flex !important;
}

/* Phone CTA — dedicated glass button (NOT outline; fixes descendant selector bug) */
.iuk-home a.iuk-header__phone.iuk-btn--phone-glass {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	background: rgba(255, 255, 255, 0.22) !important;
	border: 1px solid rgba(255, 255, 255, 0.62) !important;
	color: #ffffff !important;
	opacity: 1 !important;
	visibility: visible !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.22),
		0 2px 18px rgba(0, 0, 0, 0.3);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
	z-index: 2;
	isolation: isolate;
	mix-blend-mode: normal;
}

.iuk-home a.iuk-header__phone.iuk-btn--phone-glass .iuk-btn__text,
.iuk-home a.iuk-header__phone.iuk-btn--phone-glass .iuk-btn__icon {
	color: #ffffff !important;
	opacity: 1 !important;
}

.iuk-home a.iuk-header__phone.iuk-btn--phone-glass svg {
	color: #ffffff !important;
	fill: none;
	stroke: #ffffff !important;
	stroke-width: 2;
	opacity: 1 !important;
	filter: none;
}

.iuk-home a.iuk-header__phone.iuk-btn--phone-glass:hover {
	background: rgba(255, 255, 255, 0.32) !important;
	border-color: rgba(255, 255, 255, 0.78) !important;
	color: #ffffff !important;
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.28),
		0 6px 28px rgba(0, 0, 0, 0.35),
		0 0 24px rgba(255, 255, 255, 0.08);
}

.iuk-home a.iuk-header__phone.iuk-btn--phone-glass:hover .iuk-btn__text,
.iuk-home a.iuk-header__phone.iuk-btn--phone-glass:hover svg {
	color: #ffffff !important;
	stroke: #ffffff !important;
}

.iuk-home .iuk-header__actions .iuk-btn--whatsapp {
	box-shadow: 0 2px 16px rgba(37, 211, 102, 0.32);
}

.iuk-home .iuk-header__actions .iuk-btn--whatsapp:hover {
	box-shadow: 0 4px 22px rgba(37, 211, 102, 0.42);
	transform: translateY(-1px);
}

.iuk-home a.iuk-header__phone.iuk-btn--phone-glass .iuk-btn__text {
	display: inline;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
	font-weight: 600;
	font-size: clamp(0.6875rem, 2.2vw, 0.8125rem);
	white-space: nowrap;
}

@media (min-width: 768px) {
	.iuk-home .iuk-header__actions {
		gap: 0.875rem;
		margin-left: 0.5rem;
	}
	.iuk-home .iuk-header__actions .iuk-btn {
		padding: 0.5625rem 1.125rem;
	}
	.iuk-home a.iuk-header__phone.iuk-btn--phone-glass .iuk-btn__text {
		font-size: 0.8125rem;
	}
}

.iuk-home .iuk-menu-toggle {
	background: rgba(255, 255, 255, 0.06);
	border-color: var(--av-line);
	color: #fff;
}

/* Shared utilities */
.av-pulse-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--av-green);
	box-shadow: 0 0 12px var(--av-green);
	animation: av-pulse 2s ease-in-out infinite;
}

@keyframes av-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(0.85); }
}

.av-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.95s var(--av-ease), transform 0.95s var(--av-ease);
	transition-delay: var(--delay, 0s);
}

.av-reveal--delay { transition-delay: 0.18s; }
.av-reveal.is-in { opacity: 1; transform: none; }

.av-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform 0.3s var(--av-ease), box-shadow 0.3s var(--av-ease), background 0.3s var(--av-ease);
}

.av-btn svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

.av-btn--wa {
	background: var(--av-wa);
	color: #fff;
	box-shadow: 0 4px 24px rgba(37, 211, 102, 0.25);
}

.av-btn--wa:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
	color: #fff;
}

.av-btn--ghost {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	border: 1px solid var(--av-line);
}

.av-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.av-btn--light {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
}

.av-btn--light:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.av-btn--xl {
	padding: 1.125rem 2rem;
	font-size: 1rem;
	border-radius: 8px;
}

.av-live-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--av-green);
}

.av-live-badge--lg { font-size: 0.75rem; }

.av-link {
	color: var(--av-cyan);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: color 0.2s;
}

.av-link:hover { color: #fff; }

/* ==========================================================================
   SECTION 1 — Cinematic Hero
   ========================================================================== */

.av-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	padding: calc(var(--av-header) + 2.5rem) 0 4rem;
	overflow: hidden;
	background: var(--av-bg);
}

.av-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.av-hero__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	filter: contrast(1.1) saturate(0.95) brightness(0.9);
}

/* Local aircraft highlight — right side only, ~15–20% visibility lift */
.av-hero__media::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse 50% 65% at 72% 42%, rgba(255, 255, 255, 0.14) 0%, transparent 68%),
		radial-gradient(ellipse 35% 45% at 80% 38%, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
	mix-blend-mode: soft-light;
	pointer-events: none;
}

.av-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		105deg,
		rgba(2, 6, 23, 0.94) 0%,
		rgba(2, 6, 23, 0.82) 42%,
		rgba(2, 6, 23, 0.48) 100%
	);
}

.av-hero__vignette {
	position: absolute;
	inset: 0;
	z-index: 3;
	background: radial-gradient(ellipse at 25% 50%, transparent 35%, rgba(2, 6, 23, 0.55) 100%);
	pointer-events: none;
}

.av-hero__inner {
	position: relative;
	z-index: 4;
	display: grid;
	gap: 3rem;
	align-items: center;
	width: 100%;
}

.av-hero__eyebrow {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--av-cyan);
	margin-bottom: 1.5rem;
}

.av-hero__title {
	font-size: clamp(2.375rem, 5.8vw, 4rem);
	font-weight: 700;
	line-height: 1.06;
	color: var(--av-text);
	margin: 0 0 1.5rem;
	letter-spacing: -0.025em;
}

.av-hero__title span { display: block; }

.av-hero__title--accent {
	background: linear-gradient(135deg, #fff 0%, var(--av-cyan) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: -0.02em;
	font-weight: 700;
}

.av-hero__lead {
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.72);
	max-width: 36rem;
	margin-bottom: 2rem;
	letter-spacing: 0.01em;
	font-weight: 400;
}

.av-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* Live operation panel */
.av-live-panel {
	position: relative;
	overflow: hidden;
	background: rgba(11, 17, 32, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	padding: 1.5rem;
	backdrop-filter: blur(28px);
	-webkit-backdrop-filter: blur(28px);
	box-shadow:
		0 32px 80px rgba(0, 0, 0, 0.55),
		0 8px 32px rgba(0, 0, 0, 0.25),
		0 0 0 1px rgba(6, 182, 212, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: box-shadow 0.45s var(--av-ease), transform 0.45s var(--av-ease);
}

.av-live-panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 45%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 100%);
	border-radius: 12px 12px 0 0;
	pointer-events: none;
}

.av-live-panel::after {
	content: '';
	position: absolute;
	top: -40%;
	right: -20%;
	width: 60%;
	height: 80%;
	background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.av-live-panel > * {
	position: relative;
	z-index: 1;
}

.av-live-panel:hover {
	box-shadow:
		0 36px 88px rgba(0, 0, 0, 0.6),
		0 0 48px rgba(6, 182, 212, 0.1),
		0 0 0 1px rgba(6, 182, 212, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.av-live-panel__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--av-line);
}

.av-live-panel__ref {
	font-family: ui-monospace, monospace;
	font-size: 0.75rem;
	color: var(--av-muted);
}

.av-live-panel__route {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0.75rem;
	align-items: center;
	margin-bottom: 1.25rem;
}

.av-live-panel__apt strong {
	display: block;
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #fff;
}

.av-live-panel__apt span {
	font-size: 0.8125rem;
	color: var(--av-muted);
}

.av-live-panel__apt--end { text-align: right; }

.av-live-panel__track {
	position: relative;
	width: 120px;
	height: 3px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
}

.av-live-panel__fill {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--av-blue), var(--av-cyan));
	border-radius: 2px;
	transition: width 0.05s linear;
}

.av-live-panel__signal {
	position: absolute;
	top: 50%;
	width: 12px;
	height: 12px;
	margin: -6px 0 0 -6px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, var(--av-cyan) 42%, transparent 72%);
	box-shadow: 0 0 22px var(--av-cyan), 0 0 8px rgba(255, 255, 255, 0.6);
	pointer-events: none;
	will-change: left;
}

.av-live-panel__marker {
	position: absolute;
	top: 50%;
	width: 6px;
	height: 6px;
	margin: -3px 0 0 -3px;
	border-radius: 50%;
	background: var(--av-green);
	box-shadow: 0 0 14px var(--av-green), 0 0 4px rgba(255, 255, 255, 0.5);
	pointer-events: none;
	will-change: left;
}

.av-live-panel__meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.av-live-panel__meta > div {
	padding: 0.75rem;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid var(--av-line);
	border-radius: 6px;
}

.av-live-panel__key {
	display: block;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--av-muted);
	margin-bottom: 0.25rem;
}

.av-live-panel__val {
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
}

.av-live-panel__val--accent {
	font-size: 0.9375rem;
	color: var(--av-cyan);
	font-weight: 600;
}

.av-live-panel__steps {
	display: flex;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.av-live-panel__steps li {
	flex: 1;
	font-size: 0.6875rem;
	font-weight: 500;
	text-align: center;
	padding: 0.5rem 0.25rem;
	color: var(--av-muted);
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
}

.av-live-panel__steps li.is-active {
	color: #fff;
	background: rgba(16, 185, 129, 0.15);
	box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.3);
}

.av-hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.av-hero__scroll span {
	display: block;
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, var(--av-cyan), transparent);
	animation: av-scroll-hint 2.2s ease-in-out infinite;
}

@keyframes av-scroll-hint {
	0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
	50% { opacity: 1; transform: scaleY(1); }
}

@media (min-width: 960px) {
	.av-hero__inner {
		grid-template-columns: 1fr 380px;
		gap: 4rem;
	}
}

/* ==========================================================================
   SECTION 2 — Trust Band (full-width image)
   ========================================================================== */

.av-band {
	position: relative;
	min-height: 680px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.av-band__visual {
	position: absolute;
	inset: 0;
}

.av-band__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: contrast(1.05) saturate(0.9) brightness(0.85);
}

.av-band__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(2, 6, 23, 0.97) 0%,
		rgba(2, 6, 23, 0.58) 50%,
		rgba(2, 6, 23, 0.42) 100%
	);
}

.av-band__content {
	position: relative;
	z-index: 1;
	padding: 4rem 0 5rem;
	max-width: 640px;
}

.av-band__eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--av-cyan);
	margin-bottom: 1rem;
}

.av-band__title {
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 1.25rem;
}

.av-band__title span {
	display: block;
	background: linear-gradient(135deg, #fff, var(--av-cyan));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.av-band__text {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--av-muted);
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.av-band { min-height: 720px; }
}

/* ==========================================================================
   SECTION 3 — Operations Center
   ========================================================================== */

.av-ops {
	position: relative;
	padding: 5rem 0;
	background: var(--av-bg);
	overflow: hidden;
}

.av-ops__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 20% 80%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
		radial-gradient(ellipse 50% 40% at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 55%);
}

.av-ops__grid-lines {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
	background-size: 48px 48px;
}

.av-ops__head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1.5rem;
	margin-bottom: 3rem;
	position: relative;
}

.av-ops__head h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: #fff;
	margin: 0.75rem 0 0;
}

.av-ops__head-note {
	font-size: 0.9375rem;
	color: var(--av-muted);
	max-width: 280px;
	margin: 0;
}

.av-ops__board {
	display: grid;
	gap: 1rem;
	position: relative;
}

.av-ops-card {
	background: rgba(11, 17, 32, 0.6);
	border: 1px solid var(--av-line);
	border-radius: 10px;
	padding: 1.25rem 1.5rem;
	transition: all 0.45s var(--av-ease);
}

.av-ops-card:hover {
	border-color: rgba(255, 255, 255, 0.12);
	transform: translateY(-2px);
}

.av-ops-card.is-active {
	border-color: rgba(16, 185, 129, 0.4);
	background: rgba(16, 185, 129, 0.06);
	box-shadow: 0 0 40px rgba(16, 185, 129, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.av-ops-card__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.av-ops-card__ref {
	font-family: ui-monospace, monospace;
	font-size: 0.75rem;
	color: var(--av-muted);
}

.av-ops-card__status {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--av-cyan);
}

.av-ops-card.is-active .av-ops-card__status { color: var(--av-green); }

.av-ops-card__route {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1rem;
	align-items: center;
	margin-bottom: 1rem;
}

.av-ops-card__apt strong {
	display: block;
	font-size: 1.375rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #fff;
}

.av-ops-card__apt span {
	font-size: 0.75rem;
	color: var(--av-muted);
}

.av-ops-card__track {
	position: relative;
	height: 2px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1px;
}

.av-ops-card__fill {
	height: 100%;
	background: linear-gradient(90deg, var(--av-blue), var(--av-cyan));
	border-radius: 1px;
	transition: width 0.8s var(--av-ease);
}

.av-ops-card__signal {
	position: absolute;
	top: 50%;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	border-radius: 50%;
	background: var(--av-cyan);
	box-shadow: 0 0 16px var(--av-cyan);
	transition: left 0.8s var(--av-ease);
}

.av-ops-card__foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.av-ops-card__info {
	font-size: 0.8125rem;
	color: var(--av-muted);
}

.av-ops-card__info strong {
	color: #fff;
	font-weight: 600;
}

.av-ops-card__live {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--av-green);
	opacity: 0;
	transition: opacity 0.3s;
}

.av-ops-card.is-active .av-ops-card__live { opacity: 1; }

@media (min-width: 768px) {
	.av-ops__board {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}
}

@media (min-width: 1100px) {
	.av-ops__board { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   SECTION 4 — Premium Routes
   ========================================================================== */

.av-routes {
	position: relative;
	padding: 6rem 0;
	background: var(--av-surface);
	overflow: hidden;
}

.av-routes__visual {
	position: absolute;
	inset: 0;
	opacity: 0.18;
}

.av-routes__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: contrast(1.04) saturate(0.88) brightness(0.8);
}

.av-routes__visual-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, var(--av-surface) 0%, transparent 30%, transparent 70%, var(--av-surface) 100%);
}

.av-routes__head {
	position: relative;
	margin-bottom: 3rem;
}

.av-routes__eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--av-cyan);
	margin-bottom: 0.75rem;
}

.av-routes__head h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: #fff;
	margin: 0;
	letter-spacing: -0.02em;
}

.av-routes__list {
	position: relative;
	display: grid;
	gap: 1rem;
}

.av-route-mod {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1.5rem;
	align-items: center;
	padding: 1.5rem 1.75rem;
	background: rgba(2, 6, 23, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 10px;
	text-decoration: none;
	color: inherit;
	transition: all 0.35s var(--av-ease);
}

.av-route-mod:hover {
	border-color: rgba(6, 182, 212, 0.4);
	background: rgba(2, 6, 23, 0.88);
	transform: translateX(4px);
	box-shadow: -4px 0 0 var(--av-cyan), 0 8px 32px rgba(6, 182, 212, 0.1);
}

.av-route-mod__codes {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.av-route-mod__code {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #fff;
	font-variant-numeric: tabular-nums;
}

.av-route-mod__connector {
	position: relative;
	width: 48px;
	height: 2px;
}

.av-route-mod__line {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--av-blue), var(--av-cyan));
}

.av-route-mod__dot {
	position: absolute;
	right: -3px;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-radius: 50%;
	background: var(--av-cyan);
	box-shadow: 0 0 10px var(--av-cyan);
}

.av-route-mod__cities {
	font-size: 1.125rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.25rem;
}

.av-route-mod__title {
	font-size: 0.8125rem;
	color: var(--av-muted);
	margin: 0;
}

.av-route-mod__foot {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.375rem;
}

.av-route-mod__status {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--av-green);
}

.av-route-mod__time {
	font-size: 0.8125rem;
	color: var(--av-cyan);
	font-weight: 600;
}

.av-route-mod__arrow {
	font-size: 1.25rem;
	color: var(--av-muted);
	transition: transform 0.25s, color 0.25s;
}

.av-route-mod:hover .av-route-mod__arrow {
	transform: translateX(4px);
	color: var(--av-cyan);
}

.av-routes__foot {
	position: relative;
	margin-top: 2.5rem;
	text-align: center;
}

@media (max-width: 767px) {
	.av-route-mod {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.av-route-mod__foot {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}


/* ==========================================================================
   SECTION 5 — Delivery Visual
   ========================================================================== */

.av-delivery {
	position: relative;
	background: var(--av-bg);
}

.av-delivery__visual {
	position: relative;
	height: 420px;
	overflow: hidden;
}

.av-delivery__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	filter: contrast(1.05) saturate(0.9) brightness(0.86);
}

.av-delivery__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 20%, var(--av-bg) 100%);
}

.av-delivery__content {
	position: relative;
	margin-top: -8rem;
	padding-bottom: 5rem;
	z-index: 1;
}

.av-delivery__copy {
	max-width: 560px;
}

.av-delivery__eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--av-cyan);
	margin-bottom: 1rem;
}

.av-delivery__copy h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.12;
	color: #fff;
	margin: 0 0 1.25rem;
}

.av-delivery__copy h2 span {
	display: block;
	color: var(--av-muted);
	font-weight: 500;
	font-size: 0.85em;
	margin-top: 0.25rem;
}

.av-delivery__copy > p {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--av-muted);
	margin-bottom: 2rem;
}

.av-delivery__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.av-delivery__stats li {
	display: flex;
	flex-direction: column;
}

.av-delivery__stats strong {
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.av-delivery__stats span {
	font-size: 0.8125rem;
	color: var(--av-muted);
	margin-top: 0.375rem;
}

@media (min-width: 768px) {
	.av-delivery__visual { height: 520px; }
}

/* ==========================================================================
   SECTION 6 — Process Timeline
   ========================================================================== */

.av-process {
	padding: 4.5rem 0 5.5rem;
	background:
		radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.06) 0%, transparent 55%),
		linear-gradient(180deg, #0a0f1a 0%, var(--av-surface) 100%);
	border-top: 1px solid var(--av-line);
}

.av-process__head {
	text-align: center;
	margin-bottom: 3.5rem;
}

.av-process__eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--av-cyan);
	margin-bottom: 0.75rem;
}

.av-process__head h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.av-process__timeline {
	position: relative;
	padding: 2rem 1.5rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.av-process__line {
	position: absolute;
	top: 2.75rem;
	left: 12.5%;
	right: 12.5%;
	height: 2px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 1px;
	overflow: visible;
}

.av-process__line-fill {
	height: 100%;
	width: 100%;
	transform: scaleX(0);
	transform-origin: left center;
	background: linear-gradient(90deg, var(--av-blue), var(--av-cyan), var(--av-green));
	border-radius: 1px;
	will-change: transform;
}

.av-process__line-pulse {
	position: absolute;
	top: 50%;
	left: 0;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	border-radius: 50%;
	background: radial-gradient(circle, #fff 0%, var(--av-cyan) 50%, transparent 72%);
	box-shadow: 0 0 18px var(--av-cyan), 0 0 6px rgba(255, 255, 255, 0.8);
	will-change: transform;
	pointer-events: none;
}

.av-process__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.av-process__node {
	text-align: center;
	padding-top: 0.5rem;
}

.av-process__dot {
	width: 16px;
	height: 16px;
	margin: 0 auto 1.25rem;
	border-radius: 50%;
	background: var(--av-surface-2);
	border: 2px solid rgba(255, 255, 255, 0.15);
	transition: border-color 0.5s var(--av-ease), background 0.5s var(--av-ease), box-shadow 0.5s var(--av-ease), transform 0.5s var(--av-ease);
	position: relative;
	z-index: 1;
}

.av-process__node.is-active .av-process__dot {
	transform: scale(1.15);
}

.av-process__node.is-active .av-process__dot,
.av-process__node.is-done .av-process__dot {
	border-color: var(--av-cyan);
	background: var(--av-cyan);
	box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.av-process__node strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.375rem;
}

.av-process__node span {
	font-size: 0.8125rem;
	color: var(--av-muted);
	line-height: 1.45;
	display: block;
	max-width: 160px;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.av-process__steps {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.av-process__line { display: none; }
	.av-process__node {
		display: grid;
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto;
		gap: 0 1rem;
		text-align: left;
		padding-left: 0.5rem;
		border-left: 2px solid rgba(255, 255, 255, 0.08);
	}
	.av-process__dot {
		grid-row: 1 / 3;
		margin: 0;
		align-self: center;
	}
	.av-process__node span { max-width: none; margin: 0; }
}

/* ==========================================================================
   SECTION 7 — Final CTA
   ========================================================================== */

.av-cta {
	position: relative;
	padding: 6rem 0;
	background: var(--av-bg);
	overflow: hidden;
	text-align: center;
}

.av-cta__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
}

.av-cta__glow--1 {
	width: 500px;
	height: 500px;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(37, 99, 235, 0.2);
}

.av-cta__glow--2 {
	width: 400px;
	height: 400px;
	bottom: -150px;
	right: 10%;
	background: rgba(6, 182, 212, 0.12);
}

.av-cta__inner {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
}

.av-cta__title {
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 700;
	line-height: 1.12;
	color: #fff;
	margin: 0 0 1.25rem;
	background: linear-gradient(135deg, #fff 20%, var(--av-cyan) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.av-cta h2.av-cta__title span { display: inline; }

.av-cta__text {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--av-muted);
	margin-bottom: 2.5rem;
}

.av-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

/* Mobile refinements */
@media (max-width: 767px) {
	.av-hero {
		padding: calc(var(--av-header) + 1.5rem) 0 3rem;
		min-height: auto;
	}

	.av-hero__inner { gap: 2rem; }

	.av-band { min-height: 560px; }
	.av-band__content { padding: 3rem 0 4rem; }

	.av-ops { padding: 4rem 0; }
	.av-routes { padding: 4.5rem 0; }
	.av-delivery__content { margin-top: -6rem; padding-bottom: 4rem; }
	.av-process { padding: 4rem 0 5rem; }
	.av-cta { padding: 4.5rem 0; }

	.av-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.av-cta__actions .av-btn--xl {
		width: 100%;
		justify-content: center;
	}
}

/* ==========================================================================
   Cinematic intro overlay
   ========================================================================== */

.iuk-home.iuk-intro-active {
	overflow: hidden;
}

.iuk-home.iuk-intro-active .iuk-header,
.iuk-home.iuk-intro-active .iuk-main,
.iuk-home.iuk-intro-active .iuk-footer {
	opacity: 0;
}

.iuk-home.iuk-intro-done .iuk-header,
.iuk-home.iuk-intro-done .iuk-main,
.iuk-home.iuk-intro-done .iuk-footer {
	opacity: 1;
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.av-intro {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #020617;
	transition: opacity 0.48s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.48s;
}

.av-intro.is-exiting {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.av-intro.is-exiting .av-intro__inner {
	opacity: 0;
	transform: scale(0.98) translateY(-6px);
	transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.av-intro__glow {
	position: absolute;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 68%);
	filter: blur(48px);
	pointer-events: none;
	animation: av-intro-glow 2s ease-in-out infinite alternate;
}

.av-intro__glow::after {
	content: '';
	position: absolute;
	inset: 20%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
}

@keyframes av-intro-glow {
	from { opacity: 0.7; transform: scale(0.95); }
	to { opacity: 1; transform: scale(1.05); }
}

.av-intro__inner {
	position: relative;
	text-align: center;
	padding: 2rem;
	animation: av-intro-in 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
	transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes av-intro-in {
	from { opacity: 0; transform: translateY(16px) scale(0.97); }
	to { opacity: 1; transform: none; }
}

.av-intro__brand {
	font-size: clamp(0.9375rem, 2.8vw, 1.0625rem);
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 0.875rem;
	text-shadow: 0 0 48px rgba(6, 182, 212, 0.45);
}

.av-intro__sub {
	font-size: clamp(0.8125rem, 2vw, 0.9375rem);
	color: rgba(255, 255, 255, 0.58);
	margin: 0 0 2.25rem;
	letter-spacing: 0.06em;
	font-weight: 400;
}

.av-intro__route {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	max-width: 280px;
	margin: 0 auto;
}

.av-intro__code {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.65);
	font-variant-numeric: tabular-nums;
}

.av-intro__track {
	position: relative;
	flex: 1;
	height: 2px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1px;
	overflow: visible;
}

.av-intro__fill {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	background: linear-gradient(90deg, var(--av-blue), var(--av-cyan));
	border-radius: 1px;
	animation: av-intro-route 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
	box-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
}

.av-intro__signal {
	position: absolute;
	top: 50%;
	left: 0;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	border-radius: 50%;
	background: radial-gradient(circle, #fff 0%, var(--av-cyan) 50%, transparent 72%);
	box-shadow: 0 0 20px var(--av-cyan), 0 0 6px rgba(255, 255, 255, 0.7);
	animation: av-intro-pulse 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

@keyframes av-intro-route {
	to { width: 100%; }
}

@keyframes av-intro-pulse {
	to { left: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.av-reveal { opacity: 1; transform: none; transition: none; }
	.av-pulse-dot, .av-hero__scroll span { animation: none !important; }
	.av-intro__fill, .av-intro__signal, .av-intro__inner { animation: none !important; }
	.av-intro__fill { width: 100%; }
	.av-intro__signal { left: 100%; }
	.iuk-home.iuk-intro-active .iuk-header,
	.iuk-home.iuk-intro-active .iuk-main,
	.iuk-home.iuk-intro-active .iuk-footer { opacity: 1; }
}
