/* A1 Racking — Industrial brand theme */

:root {
	--navy: #022e75;
	--navy-deep: #011f52;
	--navy-mid: #033a8c;
	--navy-soft: #0a3d7a;
	--logo-blue: #022e75;
	--steel: #c8ced6;
	--steel-dim: #8b949e;
	--chrome: linear-gradient(135deg, #f4f6f8 0%, #aeb6c0 45%, #6e7783 100%);
	--blue: #1e7dff;
	--blue-bright: #4db8ff;
	--blue-grad: linear-gradient(135deg, #0d5fd8 0%, #1e7dff 45%, #4db8ff 100%);
	--text: #e8edf3;
	--text-muted: #a8b3c0;
	--white: #ffffff;
	--radius: 4px;
	--shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
	--header-h: 96px;
	--font-display: "Oswald", "Arial Narrow", sans-serif;
	--font-body: "Source Sans 3", "Segoe UI", sans-serif;
	--container: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--text);
	background:
		radial-gradient(ellipse 80% 50% at 50% -10%, rgba(30, 125, 255, 0.18), transparent 55%),
		linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
	background-attachment: fixed;
	overflow-x: hidden;
}

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

a {
	color: var(--blue-bright);
	text-decoration: none;
	transition: color 0.25s ease;
}

a:hover {
	color: var(--white);
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0.02em;
	margin: 0 0 0.6em;
	color: var(--white);
	text-transform: uppercase;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }

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

/* ---------- Scroll floating icons ---------- */
.scroll-icons {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.scroll-icons .float-icon {
	position: absolute;
	color: rgba(77, 184, 255, 0.08);
	font-size: clamp(2rem, 4vw, 3.5rem);
	transition: transform 0.15s linear, opacity 0.4s ease;
	will-change: transform;
}

/* ---------- Buttons ---------- */
.a1-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding: 0.95rem 1.7rem;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
	text-decoration: none;
	color: var(--white);
}

.a1-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 0.55s ease;
}

.a1-btn:hover::before {
	transform: translateX(120%);
}

.a1-btn-primary {
	background: var(--blue-grad);
	box-shadow: 0 8px 28px rgba(30, 125, 255, 0.35);
	color: var(--white);
}

.a1-btn-primary:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 14px 36px rgba(77, 184, 255, 0.5);
	color: var(--white);
}

.a1-btn-primary:active {
	transform: translateY(-1px) scale(0.99);
}

.a1-btn-ghost {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(200, 206, 214, 0.45);
	backdrop-filter: blur(8px);
	color: var(--steel);
}

.a1-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--blue-bright);
	color: var(--white);
	transform: translateY(-3px);
}

.a1-btn-sm {
	padding: 0.7rem 1.2rem;
	font-size: 0.85rem;
}

.a1-btn i {
	transition: transform 0.3s ease;
}

.a1-btn:hover i {
	transform: translateX(4px);
}

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--logo-blue);
	border-bottom: 1px solid rgba(200, 206, 214, 0.12);
	transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
	background: rgba(2, 46, 117, 0.96);
	backdrop-filter: blur(14px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.top-bar {
	background: rgba(1, 31, 82, 0.55);
	border-bottom: 1px solid rgba(200, 206, 214, 0.12);
	font-size: 0.88rem;
}

.top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.45rem 0;
}

.top-bar-contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.top-bar a {
	color: var(--steel);
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.top-bar a:hover {
	color: var(--blue-bright);
}

.top-bar-social {
	display: flex;
	gap: 0.75rem;
}

.top-bar-social a {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(200, 206, 214, 0.25);
	border-radius: 50%;
	color: var(--steel);
}

.nav-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.55rem 0;
	min-height: 88px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	color: var(--white);
	text-decoration: none;
}

.brand-logo-wrap {
	display: inline-grid;
	place-items: center;
	/* width: 78px;
	height: 78px; */
	padding: 4px;
	border-radius: 50%;
	/* background: linear-gradient(145deg, #ffffff 0%, #d7dde5 45%, #f7f9fb 100%); */
	/* box-shadow:
		0 0 0 2px rgba(255, 255, 255, 0.95),
		0 0 0 4px rgba(77, 184, 255, 0.55),
		0 8px 22px rgba(0, 0, 0, 0.35); */
	flex-shrink: 0;
}

.brand-logo,
.brand img {
	/* width: 70px;
	height: 70px; */
	object-fit: contain;
	background: transparent;
	border-radius: 50%;
	display: block;
	filter: none;
	transition: transform 0.35s ease;
}

.brand:hover .brand-logo-wrap {
	/* box-shadow:
		0 0 0 2px #ffffff,
		0 0 0 5px rgba(77, 184, 255, 0.85),
		0 10px 28px rgba(0, 0, 0, 0.4); */
}

.brand:hover .brand-logo,
.brand:hover img {
	transform: scale(1.04);
}

.nav-bar {
	background: var(--logo-blue);
}

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

.brand-text strong {
	font-family: var(--font-display);
	font-size: 1.25rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
	background: none;
	-webkit-text-fill-color: #ffffff;
}

.brand-text small {
	font-size: 0.72rem;
	color: #c8d6ea;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu a {
	display: block;
	padding: 0.55rem 0.85rem;
	color: var(--steel);
	font-family: var(--font-display);
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	position: relative;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	left: 0.85rem;
	right: 0.85rem;
	bottom: 0.25rem;
	height: 2px;
	background: var(--blue-grad);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
	color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.nav-menu .menu-item-has-children {
	position: relative;
}

.nav-menu .menu-caret {
	font-size: 0.65rem;
	margin-left: 0.35rem;
	transition: transform 0.25s ease;
}

.nav-menu .menu-item-has-children:hover > a .menu-caret,
.nav-menu .menu-item-has-children.is-open > a .menu-caret {
	transform: rotate(180deg);
}

.nav-menu .sub-menu {
	position: absolute;
	top: calc(100% + 0.35rem);
	left: 0;
	min-width: 240px;
	margin: 0;
	padding: 0.4rem 0;
	list-style: none;
	background: #011f52;
	border: 1px solid rgba(200, 206, 214, 0.18);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	z-index: 1100;
}

.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu,
.nav-menu .menu-item-has-children.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.nav-menu .sub-menu a {
	padding: 0.75rem 1.1rem;
	color: var(--steel);
	white-space: nowrap;
	text-transform: none;
	letter-spacing: 0.04em;
	font-size: 0.88rem;
}

.nav-menu .sub-menu a::after {
	display: none;
}

.nav-menu .sub-menu a:hover {
	background: var(--logo-blue);
	color: var(--white);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(200, 206, 214, 0.3);
	background: rgba(255, 255, 255, 0.04);
	border-radius: var(--radius);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--steel);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: grid;
	place-items: center;
	isolation: isolate;
	overflow: hidden;
}

.hero-media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 13, 26, 0.72) 0%, rgba(0, 33, 71, 0.55) 45%, rgba(0, 13, 26, 0.88) 100%),
		radial-gradient(ellipse at 30% 40%, rgba(30, 125, 255, 0.25), transparent 55%);
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: calc(var(--header-h) + 3rem) 0 5rem;
	max-width: 900px;
}

.hero-logo {
	width: clamp(110px, 18vw, 160px);
	height: auto;
	margin: 0 auto 1.25rem;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
	animation: logoSheen 4s ease-in-out infinite;
}

@keyframes logoSheen {
	0%, 100% { filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45)) brightness(1); }
	50% { filter: drop-shadow(0 14px 40px rgba(77, 184, 255, 0.55)) brightness(1.08); }
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 0.85rem;
	color: var(--blue-bright);
	margin-bottom: 1rem;
}

.hero h1 {
	margin-bottom: 1rem;
	text-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.hero-lead {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	color: var(--steel);
	max-width: 38rem;
	margin: 0 auto 1.75rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem;
}

.hero-scroll {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 28px;
	height: 44px;
	border: 2px solid rgba(200, 206, 214, 0.45);
	border-radius: 20px;
	display: grid;
	place-items: start center;
	padding-top: 8px;
}

.hero-scroll span {
	width: 4px;
	height: 8px;
	border-radius: 4px;
	background: var(--blue-bright);
	animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
	0% { transform: translateY(0); opacity: 1; }
	100% { transform: translateY(16px); opacity: 0; }
}

/* ---------- Sections ---------- */
.section {
	position: relative;
	z-index: 1;
	padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--blue-bright);
	margin-bottom: 0.75rem;
}

.section-head {
	max-width: 720px;
	margin-bottom: 2.75rem;
}

.section-head.light h2,
.section-head.light p {
	color: var(--white);
}

.section-head p:not(.section-eyebrow) {
	color: var(--text-muted);
}

/* Who We Are */
.who-we-are {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(2, 46, 117, 0.35), rgba(1, 31, 82, 0.65));
}

.who-float-icons {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.who-float-icons i {
	position: absolute;
	color: rgba(77, 184, 255, 0.12);
	font-size: clamp(1.6rem, 3.5vw, 2.8rem);
	animation: whoFloat 12s ease-in-out infinite;
}

.who-float-icons i:nth-child(1) { top: 8%; left: 6%; animation-duration: 11s; animation-delay: 0s; }
.who-float-icons i:nth-child(2) { top: 18%; right: 10%; animation-duration: 13s; animation-delay: -2s; font-size: 2.2rem; }
.who-float-icons i:nth-child(3) { top: 42%; left: 3%; animation-duration: 14s; animation-delay: -4s; }
.who-float-icons i:nth-child(4) { top: 55%; right: 5%; animation-duration: 12s; animation-delay: -1s; }
.who-float-icons i:nth-child(5) { bottom: 18%; left: 12%; animation-duration: 15s; animation-delay: -3s; }
.who-float-icons i:nth-child(6) { bottom: 10%; right: 14%; animation-duration: 11s; animation-delay: -5s; }
.who-float-icons i:nth-child(7) { top: 30%; left: 22%; animation-duration: 16s; animation-delay: -6s; opacity: 0.7; }
.who-float-icons i:nth-child(8) { top: 70%; right: 28%; animation-duration: 13s; animation-delay: -2.5s; }
.who-float-icons i:nth-child(9) { top: 12%; left: 48%; animation-duration: 14s; animation-delay: -7s; }
.who-float-icons i:nth-child(10) { bottom: 22%; left: 40%; animation-duration: 12s; animation-delay: -1.5s; }

@keyframes whoFloat {
	0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
	50% { transform: translateY(-18px) rotate(8deg); opacity: 0.22; }
}

.who-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: stretch;
}

.who-media {
	display: flex;
	min-height: 100%;
}

.who-image-frame {
	position: relative;
	flex: 1;
	display: flex;
	min-height: 100%;
}

.who-image-frame img {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	border: 1px solid rgba(200, 206, 214, 0.25);
	box-shadow: var(--shadow);
	aspect-ratio: auto;
}

.who-image-frame::before {
	content: "";
	position: absolute;
	inset: 1rem -1rem -1rem 1rem;
	border: 1px solid rgba(77, 184, 255, 0.35);
	z-index: -1;
}

.who-badge {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	background: var(--blue-grad);
	padding: 1rem 1.15rem;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
	display: grid;
	gap: 0.15rem;
}

.who-badge strong {
	font-family: var(--font-display);
	font-size: 2rem;
	line-height: 1;
}

.who-badge span {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.who-copy {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.who-features {
	display: grid;
	gap: 1.15rem;
	margin-top: 1.75rem;
}

.who-features article {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
	padding: 1rem 0;
	border-top: 1px solid rgba(200, 206, 214, 0.15);
}

.who-features i {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	background: rgba(30, 125, 255, 0.12);
	border: 1px solid rgba(77, 184, 255, 0.35);
	color: var(--blue-bright);
	font-size: 1.1rem;
}

.who-features h3 {
	margin-bottom: 0.25rem;
	font-size: 1.05rem;
}

.who-features p {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.98rem;
}

/* Services */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.service-card {
	padding: 1.75rem 1.5rem;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(200, 206, 214, 0.16);
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
	scroll-margin-top: 120px;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(77, 184, 255, 0.55);
	box-shadow: 0 18px 40px rgba(0, 33, 71, 0.45);
	background: linear-gradient(160deg, rgba(30, 125, 255, 0.16), rgba(255, 255, 255, 0.03));
}

.service-icon {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	margin-bottom: 1.15rem;
	font-size: 1.45rem;
	color: var(--navy-deep);
	background: var(--chrome);
	border-radius: 2px;
	transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
	transform: scale(1.08) rotate(-4deg);
	color: var(--navy-mid);
}

.service-card p {
	color: var(--text-muted);
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--font-display);
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blue-bright);
}

.service-card:hover .service-link {
	color: var(--white);
}

.service-link i {
	transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
	transform: translateX(5px);
}

/* Trusted carousel */
.trusted {
	background:
		linear-gradient(180deg, rgba(0, 13, 26, 0.9), rgba(0, 33, 71, 0.95)),
		url("../images/warehouse.jpg") center / cover fixed;
	border-block: 1px solid rgba(200, 206, 214, 0.12);
}

.trusted-carousel {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.75rem;
	align-items: center;
}

.carousel-track-wrap {
	overflow: hidden;
}

.carousel-track {
	display: flex;
	gap: 1rem;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.trust-slide {
	flex: 0 0 calc(25% - 0.75rem);
	min-width: 200px;
	padding: 1.75rem 1.25rem;
	text-align: center;
	background: rgba(0, 13, 26, 0.65);
	border: 1px solid rgba(200, 206, 214, 0.2);
	backdrop-filter: blur(8px);
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.trust-slide:hover {
	border-color: var(--blue-bright);
	transform: translateY(-4px);
}

.trust-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 1rem;
	display: grid;
	place-items: center;
	font-size: 1.4rem;
	color: var(--blue-bright);
	border: 1px solid rgba(77, 184, 255, 0.4);
	background: rgba(30, 125, 255, 0.12);
	border-radius: 50%;
}

.trust-slide strong {
	display: block;
	font-family: var(--font-display);
	font-size: 2.2rem;
	color: var(--white);
	line-height: 1;
	margin-bottom: 0.4rem;
}

.trust-slide strong i {
	font-size: 1.6rem;
	color: var(--blue-bright);
}

.trust-slide span {
	color: var(--steel);
	font-size: 0.92rem;
}

.carousel-btn {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(200, 206, 214, 0.35);
	background: rgba(255, 255, 255, 0.06);
	color: var(--steel);
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.carousel-btn:hover {
	background: var(--blue-grad);
	color: var(--white);
	border-color: transparent;
	transform: scale(1.08);
}

/* Reviews */
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.review-card {
	padding: 1.75rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(200, 206, 214, 0.14);
	border-top: 3px solid transparent;
	border-image: var(--blue-grad) 1;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

.review-stars {
	color: #f0b429;
	margin-bottom: 1rem;
	display: flex;
	gap: 0.25rem;
}

.review-card > p {
	color: var(--steel);
	font-size: 1.05rem;
	min-height: 5.5em;
}

.review-author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-top: 1.25rem;
}

.review-author .avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--chrome);
	color: var(--navy-deep);
}

.review-author strong {
	display: block;
	font-family: var(--font-display);
	letter-spacing: 0.04em;
	color: var(--white);
}

.review-author small {
	color: var(--text-muted);
}

/* FAQs */
.faqs {
	background: linear-gradient(180deg, transparent, rgba(2, 46, 117, 0.45), transparent);
}

.faqs-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: stretch;
}

.faqs-media {
	display: flex;
	min-height: 100%;
}

.faqs-image-frame {
	position: relative;
	flex: 1;
	width: 100%;
}

.faqs-image-frame img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	border: 1px solid rgba(200, 206, 214, 0.25);
	box-shadow: var(--shadow);
}

.faqs-content .section-head {
	margin-bottom: 1.5rem;
}

.faq-list {
	max-width: none;
	display: grid;
	gap: 0.75rem;
}

.faq-item {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(200, 206, 214, 0.16);
	padding: 0;
	transition: border-color 0.3s ease;
}

.faq-item[open] {
	border-color: rgba(77, 184, 255, 0.45);
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 1.15rem 1.25rem;
	font-family: var(--font-display);
	font-size: 1.05rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	color: var(--white);
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary i {
	color: var(--blue-bright);
	transition: transform 0.3s ease;
}

.faq-item[open] summary i {
	transform: rotate(45deg);
}

.faq-item p {
	margin: 0;
	padding: 0 1.25rem 1.25rem;
	color: var(--text-muted);
}

/* Contact */
.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.contact-points {
	list-style: none;
	padding: 0;
	margin: 1.75rem 0 0;
	display: grid;
	gap: 0.9rem;
}

.contact-points li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--steel);
}

.contact-points i {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	background: rgba(30, 125, 255, 0.12);
	border: 1px solid rgba(77, 184, 255, 0.3);
	color: var(--blue-bright);
}

.contact-form-card {
	padding: clamp(1.5rem, 3vw, 2rem);
	background: rgba(0, 13, 26, 0.72);
	border: 1px solid rgba(200, 206, 214, 0.2);
	box-shadow: var(--shadow);
}

.a1-cf7-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1.15rem;
}

.a1-cf7-full {
	grid-column: 1 / -1;
}

.a1-cf7-field {
	margin: 0;
}

.a1-cf7-field label {
	display: block;
	margin-bottom: 0.4rem;
	font-family: var(--font-display);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--steel);
}

.wpcf7-form-control,
.a1-fallback-form input,
.a1-fallback-form select,
.a1-fallback-form textarea,
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card select,
.contact-form-card textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(200, 206, 214, 0.25);
	background: rgba(255, 255, 255, 0.05);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 1rem;
	border-radius: var(--radius);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus,
.wpcf7-form-control:focus {
	outline: none;
	border-color: var(--blue-bright);
	box-shadow: 0 0 0 3px rgba(30, 125, 255, 0.2);
}

.contact-form-card select option {
	color: #111;
}

.a1-cf7-submit {
	margin: 0.5rem 0 0;
}

.wpcf7-submit,
.a1-fallback-form .a1-btn {
	width: auto;
	border: none;
	background: var(--blue-grad);
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
	font-size: 0.9rem;
}

.form-note {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.page-fallback {
	padding-top: calc(var(--header-h) + 4rem);
}

/* Footer */
.site-footer {
	position: relative;
	z-index: 1;
	padding-top: 4rem;
	background: var(--navy-deep);
	border-top: 1px solid rgba(200, 206, 214, 0.12);
	overflow: hidden;
}

.footer-glow {
	position: absolute;
	width: 420px;
	height: 420px;
	right: -80px;
	top: -120px;
	background: radial-gradient(circle, rgba(30, 125, 255, 0.25), transparent 65%);
	pointer-events: none;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 2rem;
	padding-bottom: 3rem;
}

.footer-brand p {
	color: var(--text-muted);
	margin-top: 1rem;
}

.footer-contact-links {
	display: grid;
	gap: 0.55rem;
	margin-top: 1rem;
}

.footer-contact-links a {
	color: var(--steel);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.site-footer h3 {
	font-size: 1rem;
	margin-bottom: 1rem;
	color: var(--blue-bright);
}

.site-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.5rem;
}

.site-footer ul a {
	color: var(--steel);
}

.site-footer ul a:hover {
	color: var(--white);
}

.footer-bottom {
	border-top: 1px solid rgba(200, 206, 214, 0.1);
	padding: 1.15rem 0;
}

.footer-bottom p {
	margin: 0;
	color: var(--steel-dim);
	font-size: 0.92rem;
}

/* Motion initial states (JS enhances) */
[data-motion] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-motion].is-visible {
	opacity: 1;
	transform: none;
}

[data-motion="fade-left"] {
	transform: translateX(-36px);
}

[data-motion="fade-right"] {
	transform: translateX(36px);
}

[data-motion="hero"] {
	opacity: 1;
	transform: none;
}

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

	.who-grid,
	.contact-grid,
	.faqs-grid,
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.trust-slide {
		flex-basis: calc(50% - 0.5rem);
	}

	.faqs-image-frame img {
		min-height: 100%;
	}
}

@media (max-width: 860px) {
	.nav-toggle {
		display: flex;
	}

	.primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0.5rem;
		padding: 1rem 1.25rem 1.25rem;
		background: rgba(2, 46, 117, 0.98);
		border-bottom: 1px solid rgba(200, 206, 214, 0.15);
		transform: translateY(-8px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	}

	.primary-nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
	}

	.nav-menu a {
		padding: 0.85rem 0.5rem;
		border-bottom: 1px solid rgba(200, 206, 214, 0.08);
	}

	.nav-menu .menu-item-has-children > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.nav-menu .sub-menu {
		position: static;
		min-width: 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
		display: none;
		background: rgba(1, 31, 82, 0.65);
		border: none;
		box-shadow: none;
		padding: 0 0 0.35rem;
		margin: 0 0 0.35rem;
	}

	.nav-menu .menu-item-has-children.is-open > .sub-menu {
		display: block;
	}

	.nav-menu .sub-menu a {
		padding-left: 1.25rem;
		font-size: 0.85rem;
		border-bottom: 1px solid rgba(200, 206, 214, 0.06);
	}

	.nav-cta {
		width: 100%;
		margin-top: 0.5rem;
	}

	.top-bar-contacts {
		gap: 0.75rem;
		font-size: 0.8rem;
	}

	.brand-text {
		display: none;
	}
}

@media (max-width: 720px) {
	.who-grid,
	.contact-grid,
	.faqs-grid,
	.services-grid,
	.reviews-grid,
	.footer-grid,
	.a1-cf7-grid {
		grid-template-columns: 1fr;
	}

	.who-image-frame img,
	.faqs-image-frame img {
		min-height: 280px;
		height: 320px;
	}

	.trusted-carousel {
		grid-template-columns: 1fr;
	}

	.carousel-btn {
		display: none;
	}

	.trust-slide {
		flex-basis: 85%;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.a1-btn {
		width: 100%;
	}

	.top-bar-social {
		display: none;
	}

	.review-card > p {
		min-height: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}

	[data-motion] {
		opacity: 1;
		transform: none;
	}

	.who-float-icons i {
		animation: none !important;
		opacity: 0.12;
	}
}
