:root {
	--navy: #0B2A4A;
	--navy-deep: #07203B;
	--blue: #1E6FD6;
	--blue-light: #4F9BFF;
	--gold: #C9A24B;
	--gold-light: #E2C36A;
	--ink: #0E1726;
	--muted: #5B6878;
	--line: #E5E9F0;
	--bg: #FFFFFF;
	--bg-soft: #F6F8FC;
	--radius: 16px;
	--shadow: 0 10px 30px rgba(11, 42, 74, .08);
	--container: 1180px;
	--font: "Inter", system-ui, -apple-system, sans-serif;
	--display: "Sora", var(--font);
}

* { box-sizing: border-box; }

/* Nothing should be draggable sideways. The real fix is that no element is
   wider than the viewport (see the header rules further down); this is the
   backstop for anything that slips through — an over-wide table, an embed, a
   long unbroken string.

   'clip' rather than 'hidden' on purpose: 'hidden' turns these into scroll
   containers, which silently breaks position:sticky on .site-header. */
html, body { max-width: 100%; overflow-x: clip; }

body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }
.hp-page { padding-top: 48px; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); line-height: 1.15; margin: 0 0 .4em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; cursor: pointer; border: 1px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn--primary { background: linear-gradient(to right, var(--blue), #1558b0); color: #fff; border: none; outline: none; }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(30, 111, 214, .35); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--navy); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.site-header__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.site-logo { height: 36px; width: auto; display: block; }
.brand-mark { font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--navy); }
.brand-mark strong { color: var(--gold); font-weight: 800; }

/* Brand lockup: compass icon + wordmark + tagline */
.brand-icon { height: 44px; width: auto; display: block; flex-shrink: 0; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1.05; }
.brand-lockup__name { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: .16em; }
.brand-lockup__avia { color: var(--navy); }
.brand-lockup__gateway { color: var(--gold); }
.brand-lockup__tag { font-size: 10.5px; letter-spacing: .03em; color: var(--muted); margin-top: 3px; }

@media (max-width: 600px) {
	.brand-lockup__tag { display: none; }
	.brand-lockup__name { font-size: 17px; letter-spacing: .12em; }
	.brand-icon { height: 38px; width: auto; }
}
.site-nav { margin-left: auto; }
.site-nav__list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; font-weight: 500; }
.site-nav__list a:hover { color: var(--blue); }
.site-header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.site-header__actions .btn { padding: 9px 18px; font-size: 14px; white-space: nowrap; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 8px 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
/* Desktop-only element; the panel styles below reveal it under 760px. */
.site-nav__auth { display: none; }

/* Logged-in account chip */
.site-header__account {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 14px 6px 6px;
	border: 1px solid var(--line);
	border-radius: 999px;
	text-decoration: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.site-header__account:hover { border-color: var(--blue); box-shadow: 0 4px 14px rgba(30,111,214,.14); }

.site-header__avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), var(--navy));
	color: #fff;
	font-family: var(--display);
	font-weight: 700;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	letter-spacing: .02em;
}

.site-header__account-text { display: flex; flex-direction: column; line-height: 1.1; }
.site-header__account-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.site-header__account-name { font-size: 14px; font-weight: 700; color: var(--navy); }

.site-header__logout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: 1px solid var(--line);
	color: var(--muted);
	transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.site-header__logout:hover { border-color: #c0392b; color: #c0392b; background: rgba(192,57,43,.05); }

/* Hero */
.hero {
	position: relative;
	background: var(--navy);
	color: #fff;
	padding: 80px 0 96px;
	text-align: center;
	overflow: hidden;
}

/* Background photo — light blur via pseudo-element so text stays sharp.
   Position favours the lower part of the frame so the aircraft stay in view
   when the hero is shorter than the image. */
.hero::before {
	content: '';
	position: absolute;
	inset: -20px;
	background: url('../images/hero-bg.jpg') center 78% / cover no-repeat;
	filter: blur(1px);
	transform: scale(1.03);
	z-index: 0;
}

/* Readability overlay — dark through the centre where the text column sits,
   much lighter at the left/right edges so the Cessna and helicopter show. */
.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 58% 80% at 50% 48%,
			rgba(11, 42, 74, .62) 0%,
			rgba(11, 42, 74, .46) 42%,
			rgba(11, 42, 74, .16) 74%,
			rgba(11, 42, 74, .05) 100%),
		linear-gradient(to bottom,
			rgba(11, 42, 74, .26) 0%,
			rgba(11, 42, 74, .05) 45%,
			rgba(11, 42, 74, .32) 100%);
	z-index: 1;
}

/* Soft shadow keeps the copy legible over the lighter overlay without
   having to darken the photo any further. */
.hero__inner {
	text-shadow: 0 1px 12px rgba(6, 24, 44, .55);
}
.hero__inner .btn { text-shadow: none; }

/* Keep all content above the overlays */
.hero__inner {
	position: relative;
	z-index: 2;
}
.hero__title { font-size: clamp(32px, 5vw, 56px); font-weight: 800; max-width: 16ch; margin-inline: auto; }
.hero__subtitle { color: #C7D6EA; font-size: 18px; max-width: 60ch; margin: 0 auto 28px; }

/* #2: Hero positioning badge */
.hero__badge {
	display: inline-block;
	margin-bottom: 22px;
	padding: 6px 16px;
	border-radius: 999px;
	border: 1px solid rgba(201,162,75,.5);
	color: var(--gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

/* #3: Hero dual CTAs */
.hero__ctas {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

/* #1: Hero stats row */
.hero__stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 28px;
	font-size: 13.5px;
	color: rgba(255,255,255,.55);
}
.hero__stat { display: flex; align-items: center; gap: 6px; }
.hero__stat strong { color: var(--gold); font-weight: 700; }
.hero__stat .fas { font-size: 12px; color: var(--gold); }
.hero__stat-sep { color: rgba(255,255,255,.25); font-size: 18px; line-height: 1; }

@keyframes spin-pulse {
	0%   { transform: rotate(0deg);   animation-timing-function: ease-in-out; }
	20%  { transform: rotate(360deg); animation-timing-function: linear; }
	100% { transform: rotate(360deg); }
}
.hero__stat .fa-sync-alt { animation: spin-pulse 2.5s infinite; }

/* Search form */
.search-form { max-width: 860px; margin: 0 auto; background: #fff; border-radius: 20px; padding: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.22); }
.search-form__primary { display: flex; gap: 4px; align-items: center; }
.search-form__field { display: flex; align-items: center; flex: 1; gap: 8px; padding: 4px 14px; border-radius: 12px; transition: background .15s; }
.search-form__field:hover { background: var(--bg-soft); }
.search-form__field--keyword { flex: 2; border-right: 1px solid var(--line); border-radius: 12px 0 0 12px; }
.search-form__field--cat { border-radius: 0 12px 12px 0; }
.search-form__icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--muted); }
.search-form__field input,
.search-form__field select { flex: 1; border: 0; outline: 0; padding: 10px 4px; font-size: 15px; font-family: inherit; background: transparent; color: var(--ink); min-width: 0; }
.search-form__field select { cursor: pointer; }
.search-form__submit { margin: 4px; flex-shrink: 0; padding: 12px 28px; font-size: 15px; }

/* Advanced filters */
.search-form__filters { display: grid; grid-template-columns: 2fr 1.5fr 2fr 1fr; gap: 0; border-top: 1px solid var(--line); margin-top: 4px; padding-top: 4px; }
.search-form__filter { padding: 10px 14px; border-right: 1px solid var(--line); }
.search-form__filter:last-child { border-right: 0; }
.search-form__filter label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 4px; }
.search-form__filter input,
.search-form__filter select { width: 100%; border: 0; outline: 0; font-size: 14px; font-family: inherit; color: var(--ink); background: transparent; padding: 0; }
.range-inputs { display: flex; align-items: center; gap: 6px; }
.range-inputs input { flex: 1; min-width: 0; }
.range-sep { color: var(--muted); font-size: 13px; flex-shrink: 0; }

/* Sections */
.section { padding: 88px 0; }
.section--categories { background: var(--bg-soft); }
.section--featured   { background: #fff; }
.section--how        { background: var(--bg-soft); }
.section--pricing    { background: #fff; }

.section__title {
	font-size: clamp(24px, 3vw, 34px);
	text-align: center;
	margin-bottom: 48px;
	color: var(--navy);
}
.section__title::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background: var(--gold);
	border-radius: 99px;
	margin: 14px auto 0;
}
.section__cta { text-align: center; margin-top: 40px; }

/* Cards grid */
.cards { display: grid; gap: 24px; }
/* minmax(0, 1fr) rather than 1fr: a bare 1fr resolves to minmax(auto, 1fr),
   whose auto floor is the content's min-content width, so a long unbroken word
   pushes the column wider than its share and the grid overflows its container. */
.cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.card--category:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
/* #4: Category icon — Font Awesome, styled circle */
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, rgba(30,111,214,.13), rgba(201,162,75,.18)); color: var(--blue); margin-bottom: 18px; font-size: 22px; }
.card__icon svg { width: 100%; height: 100%; }
/* #5: Listing count badge on category cards */
.card__count { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--blue); background: rgba(30,111,214,.08); padding: 3px 10px; border-radius: 999px; }
.card__title { font-size: 19px; color: var(--navy); }
.card__desc { color: var(--muted); font-size: 14.5px; margin: 0; }

/* How it works */
.step { text-align: center; padding: 24px; }
.step__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%);
	color: var(--gold);
	font-size: 28px;
	margin-bottom: 20px;
	box-shadow: 0 8px 24px rgba(11,42,74,.18);
	transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover .step__icon {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(11,42,74,.22);
}
.step h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* Pricing */
.section--pricing { background: var(--bg-soft); }
.plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; text-align: center; }
.plan--featured { border-color: var(--blue); box-shadow: var(--shadow); transform: scale(1.03); }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #2a2000; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; }
.plan__name { color: var(--navy); font-size: 20px; }
.plan__price { font-family: var(--display); font-size: 40px; font-weight: 800; color: var(--ink); margin: 6px 0 18px; }
.plan__price span { font-size: 15px; font-weight: 500; color: var(--muted); }
.plan__features { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.plan__features li { color: var(--muted); font-size: 14.5px; padding-left: 22px; position: relative; }
.plan__features li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #C7D6EA; padding: 60px 0 24px; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand-mark { color: #fff; }
.site-footer .brand-mark strong { color: var(--gold-light); }
.site-footer__brand p { max-width: 36ch; font-size: 14.5px; margin-top: 14px; line-height: 1.65; }
.site-footer__heading { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 16px; }
.site-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.site-footer__links a { color: #C7D6EA; font-size: 14.5px; text-decoration: none; transition: color .15s ease; }
.site-footer__links a:hover { color: #fff; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; font-size: 13px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.site-footer__bar-note { color: #8aa3c0; }

@media (max-width: 900px) {
	.site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
	.site-footer__grid { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 900px) {
	.cards--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
	.site-nav, .site-header__actions .btn--ghost { display: none; }
	.nav-toggle { display: flex; }

	/* The burger only toggled a class that nothing styled, so the menu never
	   appeared. Opening it drops a panel below the sticky header. */
	.site-nav.is-open {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow);
		padding: 6px 0 10px;
		max-height: calc(100vh - 64px);
		overflow-y: auto;
	}
	.site-nav.is-open .site-nav__list {
		flex-direction: column;
		gap: 0;
		padding: 0 24px;
	}
	.site-nav.is-open .site-nav__list li { width: 100%; }
	.site-nav.is-open .site-nav__list a {
		display: block;
		padding: 13px 0;
		border-bottom: 1px solid var(--line);
		font-size: 16px;
		color: var(--navy);
	}
	.site-nav.is-open .site-nav__list li:last-child a { border-bottom: 0; }

	/* Sign in lives in the header on desktop but is hidden here, so surface it
	   inside the panel — otherwise mobile visitors cannot reach it at all. */
	.site-nav__auth { display: block; padding: 12px 24px 2px; }
	.site-nav__auth .btn { width: 100%; }

	/* Burger turns into a close icon while the panel is open. */
	.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
	.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

	/* Compact account chip on mobile: keep avatar, drop text + logout */
	.site-header__account { padding: 4px; border: 0; }
	.site-header__account-text, .site-header__logout { display: none; }
	.cards--3 { grid-template-columns: minmax(0, 1fr); }
	.plan--featured { transform: none; }
	.search-form { border-radius: var(--radius); padding: 4px; }
	.search-form__primary { flex-direction: column; gap: 0; }
	.search-form__field--keyword { border-right: 0; border-bottom: 1px solid var(--line); border-radius: var(--radius) var(--radius) 0 0; }
	.search-form__field--cat { border-radius: 0; border-bottom: 1px solid var(--line); }
	.search-form__submit { width: calc(100% - 8px); margin: 4px; border-radius: 12px; }
	.search-form__filters { grid-template-columns: 1fr 1fr; }
	.search-form__filter:nth-child(2) { border-right: 0; }
	.search-form__filter:nth-child(3),
	.search-form__filter:nth-child(4) { border-top: 1px solid var(--line); }
}

/* --------------------------------------------------------------------------
   Header sizing on small screens

   At 375px the container leaves ~327px, but the brand (icon + wordmark +
   tagline) and the actions (avatar + CTA + burger) needed roughly 460px. The
   overflow is what let the whole page be dragged sideways, so shrinking the
   header is also what stops the horizontal scrolling.
   -------------------------------------------------------------------------- */

@media (max-width: 760px) {
	.site-header__inner { gap: 12px; }
	/* Let the brand give up space instead of forcing the row wider. */
	.site-header__brand { min-width: 0; flex-shrink: 1; }
	.brand-lockup { min-width: 0; }
	.brand-icon { height: 36px; }
	.brand-lockup__name { font-size: 16px; letter-spacing: .12em; }
	.site-header__actions { gap: 8px; flex-shrink: 0; }
	.site-header__actions .btn { padding: 8px 14px; font-size: 13px; }
}

@media (max-width: 560px) {
	.brand-icon { height: 32px; }
	.brand-lockup__name { font-size: 14px; letter-spacing: .08em; }
	/* Tagline is the first thing to go — it is decorative, not navigation. */
	.brand-lockup__tag { display: none; }
	.site-header__actions .btn { padding: 8px 12px; font-size: 12px; }
}

@media (max-width: 400px) {
	.container { padding: 0 16px; }
	.site-header__inner { gap: 8px; }
	.brand-icon { height: 28px; }
	.brand-lockup__name { font-size: 13px; }
	.site-header__actions .btn--primary { padding: 8px 10px; font-size: 12px; }
}

@media (max-width: 430px) {
	.cards--4 { grid-template-columns: minmax(0, 1fr); }
	.cards { gap: 16px; }
	.card { padding: 20px; }
}

/* Below ~340px even the shortened CTA stops fitting; the same action stays
   reachable from the menu panel and the account chip. */
@media (max-width: 340px) {
	.site-header__actions .btn--primary { display: none; }
}

/* ==========================================================================
   Content pages (About, Services, Pricing, Contact, Legal)
   ========================================================================== */

/* ---- Page hero band ---- */
.page-hero {
	background: radial-gradient(120% 140% at 85% -20%, #123a63 0%, var(--navy) 48%, var(--navy-deep) 100%);
	color: #fff;
	padding: 64px 0 56px;
	text-align: center;
}
.page-hero__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--gold-light);
	margin-bottom: 14px;
}
.page-hero__title {
	font-family: var(--display);
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 800;
	line-height: 1.1;
	max-width: 20ch;
	margin: 0 auto 14px;
	color: #fff;
}
.page-hero__subtitle {
	color: #C7D6EA;
	font-size: 17px;
	line-height: 1.6;
	max-width: 62ch;
	margin: 0 auto;
}
.page-hero--legal { padding: 56px 0 44px; }

/* ---- Generic page sections ---- */
.page-section { padding: 64px 0; }
.page-section--soft { background: var(--bg-soft); }

/* ---- Prose ---- */
.page-prose { color: var(--ink); font-size: 16px; line-height: 1.75; }
.page-prose--narrow { max-width: 760px; margin: 0 auto; }
.page-prose p { margin: 0 0 18px; }
.page-lead { font-size: 19px; line-height: 1.6; color: var(--navy); font-weight: 500; }

/* Legal prose */
.page-prose--legal { max-width: 820px; margin: 0 auto; }
.page-prose--legal h2 {
	font-family: var(--display);
	font-size: 20px;
	color: var(--navy);
	margin: 32px 0 12px;
}
.page-prose--legal ul { margin: 0 0 18px; padding-left: 20px; }
.page-prose--legal li { margin-bottom: 8px; color: var(--ink); }
.page-prose--legal a { color: var(--blue); }

.legal-note {
	background: rgba(201,162,75,.10);
	border: 1px solid rgba(201,162,75,.35);
	border-radius: 12px;
	padding: 14px 18px;
	font-size: 14px;
	color: #6a5320;
	margin-bottom: 28px;
}

/* ---- Stat band (About) ---- */
.stat-band {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.stat-band__item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 20px;
	text-align: center;
}
.stat-band__num {
	display: block;
	font-family: var(--display);
	font-size: 34px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1;
	margin-bottom: 8px;
}
.stat-band__label { font-size: 13.5px; color: var(--muted); }

/* ---- Value cards (About) ---- */
.value-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
}
.value-card h3 { color: var(--navy); font-size: 18px; margin: 0 0 10px; }
.value-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---- Service grid (Services) ---- */
.service-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.service-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card__icon {
	display: inline-flex;
	width: 52px; height: 52px;
	padding: 13px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(30,111,214,.12), rgba(201,162,75,.16));
	color: var(--blue);
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__icon i { font-size: 22px; line-height: 1; }
.service-card__title { font-family: var(--display); font-size: 20px; color: var(--navy); margin: 0; }
.service-card__desc { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; flex: 1; }
.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
}
.service-card__link:hover { color: var(--navy); }

/* ---- Pricing extras ---- */
.pricing-upgrade {
	text-align: center;
	max-width: 680px;
	margin: 28px auto 0;
	padding: 14px 22px;
	background: var(--grey-light, #F4F6F9);
	border: 1px solid var(--line);
	border-radius: 12px;
	color: var(--navy);
	font-size: 14.5px;
	font-weight: 600;
}
.pricing-note {
	text-align: center;
	color: var(--muted);
	font-size: 13.5px;
	max-width: 640px;
	margin: 32px auto 0;
}

/* ---- FAQ ---- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 4px 20px;
}
.faq__q {
	cursor: pointer;
	font-weight: 700;
	color: var(--navy);
	padding: 16px 0;
	list-style: none;
	position: relative;
	padding-right: 28px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 14px;
	font-size: 22px;
	color: var(--blue);
	font-weight: 400;
}
.faq__item[open] .faq__q::after { content: "\2212"; }
.faq__a { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0 0 16px; }

/* ---- CTA band ---- */
.cta-band {
	background: linear-gradient(135deg, var(--navy), var(--navy-deep));
	color: #fff;
	padding: 48px 0;
}
.cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}
.cta-band__title { font-family: var(--display); font-size: 26px; font-weight: 800; margin: 0 0 6px; color: #fff; }
.cta-band__text { color: #C7D6EA; margin: 0; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn--ghost-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

/* ---- Contact ---- */
.contact-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.85fr;
	gap: 32px;
	align-items: start;
}
.contact-form-wrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px;
	box-shadow: 0 2px 12px rgba(11,42,74,.05);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__label { font-size: 13px; font-weight: 600; color: var(--navy); }
.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--line);
	border-radius: 10px;
	font-size: 14px;
	font-family: inherit;
	color: var(--ink);
	background: var(--bg-soft);
	box-sizing: border-box;
	outline: none;
	transition: border-color .15s, background .15s, box-shadow .15s;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--blue);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(30,111,214,.08);
}
.contact-form__submit { align-self: flex-start; margin-top: 4px; }
.contact-form__consent { font-size: 12.5px; color: var(--muted); margin: 0; }
.contact-form__consent a { color: var(--blue); }
.contact-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-alert { border-radius: 10px; padding: 14px 16px; font-size: 14px; margin-bottom: 20px; }
.contact-alert--success { background: rgba(26,122,74,.10); border: 1px solid rgba(26,122,74,.35); color: #1a7a4a; }
.contact-alert--error { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.30); color: #c0392b; }

.contact-info {
	background: var(--navy);
	color: #fff;
	border-radius: var(--radius);
	padding: 30px;
}
.contact-info__title { font-family: var(--display); font-size: 19px; color: #fff; margin: 0 0 20px; }
.contact-info__item { display: flex; flex-direction: column; gap: 3px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-info__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9db4d0; }
.contact-info__item a, .contact-info__item span:not(.contact-info__label) { color: #fff; font-size: 15px; text-decoration: none; }
.contact-info__item a:hover { color: var(--gold-light); }
.contact-info__note { margin-top: 18px; font-size: 13.5px; color: #C7D6EA; line-height: 1.6; }

/* WooCommerce checkout: keep logo proportional inside header */
.woocommerce-checkout .site-header__inner { height: auto; min-height: 64px; padding-top: 10px; padding-bottom: 10px; }
.woocommerce-checkout .brand-icon { height: 32px; }
.woocommerce-checkout .brand-lockup__name { font-size: 15px; }
.woocommerce-checkout .brand-lockup__tag { display: none; }

/* Promote-to-featured star + text in My Listings row */
.hp-listing__action--feature { color: var(--gold); display: inline-flex; align-items: center; gap: 5px; margin-left: auto; }
.hp-listing__action--feature[data-state="active"] { color: var(--gold); opacity: 1; }
.hp-listing__action--feature:not([data-state]) { opacity: 0.6; }
.hp-listing__action--feature:not([data-state]):hover { opacity: 1; }

.hp-listing__boost-label { font-size: 12px; font-weight: 600; white-space: nowrap; }
.hp-listing__boost-label--active { color: var(--gold); }

/* Push the boost/featured action to the right end of the actions cell */
.hp-listing--edit-block .hp-listing__actions--primary { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.hp-listing--edit-block .hp-listing__actions--primary .hp-listing__action--feature { margin-left: 0; order: 10; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
	.stat-band { grid-template-columns: repeat(2, 1fr); }
	.service-grid { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.contact-form__row { grid-template-columns: 1fr; }
	.cta-band__inner { flex-direction: column; align-items: flex-start; }
}
