/* ==========================================================================
   GHIB — Premium banking design system
   Tokens, layout, components, motion, responsive overrides.
   ========================================================================== */

:root {
	--ghib-ink: #050b1c;
	--ghib-primary: #061634;
	--ghib-primary-2: #0b2255;
	--ghib-primary-3: #14336a;
	--ghib-accent: #2f6bff;
	--ghib-accent-2: #5fa3ff;
	--ghib-accent-soft: rgba(47, 107, 255, 0.16);
	--ghib-gold: #f4c542;
	--ghib-light: #f4f6fb;
	--ghib-surface: #ffffff;
	--ghib-muted: #5b6b86;
	--ghib-muted-2: #8b97ad;
	--ghib-line: rgba(11, 31, 58, 0.08);
	--ghib-line-strong: rgba(11, 31, 58, 0.16);
	--ghib-glass: rgba(255, 255, 255, 0.08);
	--ghib-radius-xs: 10px;
	--ghib-radius-sm: 14px;
	--ghib-radius-md: 18px;
	--ghib-radius-lg: 24px;
	--ghib-radius-xl: 32px;
	--ghib-shadow-1: 0 10px 30px rgba(11, 31, 58, 0.08);
	--ghib-shadow-2: 0 24px 60px rgba(11, 31, 58, 0.14);
	--ghib-shadow-3: 0 40px 100px rgba(2, 8, 23, 0.32);
	--ghib-shadow-glow: 0 22px 60px rgba(47, 107, 255, 0.35);
	--ghib-container: 1240px;
	--ghib-gutter: clamp(20px, 4vw, 48px);
}

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

html {
	scroll-behavior: smooth;
}

body.ghib-theme {
	margin: 0;
	background: var(--ghib-light);
	color: var(--ghib-ink);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: -0.005em;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.ghib-theme.admin-bar .ghib-site-header { top: 46px; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

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

.screen-reader-text,
.ghib-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ghib-skip-link:focus {
	z-index: 10000;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 14px;
	clip: auto;
	color: var(--ghib-primary);
	background: var(--ghib-surface);
	border-radius: 999px;
	box-shadow: var(--ghib-shadow-1);
}

/* --------------------------------------------------------------------------
   Site header — glass-blurred premium nav
   -------------------------------------------------------------------------- */

.ghib-site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	color: #fff;
	background-color: rgba(7, 18, 41, 0.28);
	backdrop-filter: blur(16px) saturate(140%);
	-webkit-backdrop-filter: blur(16px) saturate(140%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: background-color 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.ghib-site-header.is-scrolled,
body:not(.home) .ghib-site-header {
	background-color: rgba(7, 18, 41, 0.72);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 14px 40px rgba(2, 8, 23, 0.22);
}

.ghib-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 20px;
}

.ghib-brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.ghib-brand__logo { width: auto; height: 38px; max-width: 200px; object-fit: contain; }

.ghib-nav-toggle {
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	gap: 4px;
	padding: 10px;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
	cursor: pointer;
}

.ghib-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 19px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: transform 180ms ease, opacity 180ms ease;
}
.ghib-nav-toggle.is-open span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
.ghib-nav-toggle.is-open span:nth-child(3) { opacity: 0; }
.ghib-nav-toggle.is-open span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

.ghib-primary-nav {
	position: fixed;
	inset: 80px 16px auto 16px;
	display: grid;
	gap: 14px;
	padding: 16px;
	background: rgba(7, 18, 41, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--ghib-radius-md);
	box-shadow: var(--ghib-shadow-3);
	backdrop-filter: blur(18px);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-12px);
	transition: opacity 220ms ease, transform 220ms ease;
}
.ghib-primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }

.ghib-menu { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }

.ghib-menu a,
.ghib-nav-cta {
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 14px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: 0.005em;
	border-radius: 999px;
	transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.ghib-menu a {
	position: relative;
}

.ghib-menu a:hover,
.ghib-menu a:focus-visible,
.ghib-menu a[aria-current="page"] {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.08);
}

.ghib-nav-cta {
	color: #fff;
	font-weight: 700;
	background-color: var(--ghib-accent);
	box-shadow: 0 12px 30px rgba(47, 107, 255, 0.45);
	white-space: nowrap;
}

.ghib-nav-cta:hover,
.ghib-nav-cta:focus-visible {
	background-color: #2155d6;
	transform: translateY(-1px);
}

.ghib-btn:active,
.ghib-nav-cta:active {
	transform: translateY(0) scale(0.98);
}

/* --------------------------------------------------------------------------
   Typography & shared elements
   -------------------------------------------------------------------------- */

.ghib-site-main { overflow: hidden; }

.ghib-kicker {
	display: inline-flex;
	width: fit-content;
	margin: 0 0 18px;
	padding: 8px 14px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	backdrop-filter: blur(8px);
}

.ghib-kicker--navy {
	color: var(--ghib-accent);
	background: rgba(47, 107, 255, 0.08);
	border-color: rgba(47, 107, 255, 0.18);
	backdrop-filter: none;
}

.ghib-accent-text {
	color: var(--ghib-accent);
}

h1, h2, h3, h4 { color: inherit; margin: 0; font-weight: 700; letter-spacing: -0.035em; }

h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.04; }
h3 { font-size: 1.15rem; line-height: 1.25; letter-spacing: -0.02em; }

.ghib-btn,
.ghib-text-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-weight: 700;
	border-radius: 999px;
	transition: transform 240ms ease, box-shadow 240ms ease, background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}

.ghib-btn {
	min-height: 52px;
	padding: 0 26px;
	border: 1px solid transparent;
	font-size: 0.95rem;
}

.ghib-btn--primary {
	color: #fff;
	background-color: var(--ghib-accent);
	box-shadow: var(--ghib-shadow-glow);
}
.ghib-btn--primary:hover,
.ghib-btn--primary:focus-visible {
	background-color: #2155d6;
	transform: translateY(-2px);
	box-shadow: 0 26px 70px rgba(47, 107, 255, 0.5);
}

.ghib-btn--ghost {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(12px);
}
.ghib-btn--ghost:hover,
.ghib-btn--ghost:focus-visible {
	background-color: rgba(255, 255, 255, 0.12);
	transform: translateY(-2px);
}

.ghib-text-link {
	color: var(--ghib-accent);
	font-size: 0.92rem;
	font-weight: 700;
}
.ghib-text-link:hover,
.ghib-text-link:focus-visible {
	color: #1f56d4;
}
.ghib-text-link:hover .ghib-arrow,
.ghib-text-link:focus-visible .ghib-arrow {
	transform: translateX(4px);
}

.ghib-arrow {
	width: 16px;
	height: 16px;
	transition: transform 240ms ease;
}

.ghib-btn .ghib-arrow { width: 18px; height: 18px; }
.ghib-btn:hover .ghib-arrow,
.ghib-btn:focus-visible .ghib-arrow { transform: translateX(4px); }

.ghib-section { padding: clamp(72px, 9vw, 128px) 0; }

/* --------------------------------------------------------------------------
   Hero — cinematic banking hero
   -------------------------------------------------------------------------- */

.ghib-hero {
	position: relative;
	display: grid;
	min-height: 88vh;
	align-items: end;
	padding: clamp(140px, 18vw, 200px) 0 clamp(100px, 12vw, 160px);
	overflow: hidden;
	color: #fff;
	background-color: var(--ghib-primary);
	isolation: isolate;
}

.ghib-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	animation: ghib-hero-pan 18s ease-in-out infinite alternate;
}

@keyframes ghib-hero-pan {
	0%   { transform: scale(1.04) translate3d(0, 0, 0); }
	100% { transform: scale(1.08) translate3d(-1%, -1%, 0); }
}

.ghib-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(5, 12, 30, 0.92) 18%, rgba(5, 12, 30, 0.72) 48%, rgba(5, 12, 30, 0.38) 100%),
		linear-gradient(180deg, rgba(5, 12, 30, 0.3) 0%, rgba(5, 12, 30, 0.75) 100%);
	z-index: 1;
}

.ghib-hero__glow {
	position: absolute;
	z-index: 1;
	right: -10%;
	top: 20%;
	width: 80vw;
	max-width: 900px;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(47, 107, 255, 0.4) 0%, rgba(47, 107, 255, 0) 65%);
	filter: blur(20px);
	pointer-events: none;
}

.ghib-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	gap: clamp(40px, 6vw, 80px);
}

.ghib-hero__content { max-width: 760px; }

.ghib-hero__content h1 {
	font-size: clamp(2.6rem, 6.4vw, 5.2rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.045em;
}

.ghib-hero__content h1 .ghib-accent-text {
	display: inline;
	color: var(--ghib-accent-2);
	background: linear-gradient(180deg, #6ea9ff, #2f6bff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ghib-hero__copy {
	max-width: 540px;
	margin: clamp(20px, 2.4vw, 30px) 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	line-height: 1.7;
}

.ghib-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: clamp(28px, 3vw, 40px);
}

@media (max-width: 480px) {
	.ghib-hero__actions { display: grid; }
	.ghib-btn { width: 100%; }
}

/* Hero glass card */

.ghib-glass-card,
.ghib-hero-card {
	background: linear-gradient(135deg, rgba(15, 32, 64, 0.6), rgba(15, 32, 64, 0.3));
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--ghib-radius-lg);
	box-shadow: 0 30px 90px rgba(2, 8, 23, 0.45);
	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);
}

.ghib-hero-card {
	align-self: end;
	width: 100%;
	max-width: 460px;
	padding: clamp(20px, 2.4vw, 28px);
	color: #fff;
}

.ghib-hero-card header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.ghib-hero-card__pip {
	width: 8px;
	height: 8px;
	background: var(--ghib-accent-2);
	border-radius: 50%;
	box-shadow: 0 0 0 6px rgba(47, 107, 255, 0.18);
}

.ghib-hero-card header strong { color: rgba(255, 255, 255, 0.85); font-weight: 700; }

.ghib-hero-card__list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ghib-hero-card__list li {
	display: grid;
	grid-template-columns: 38px 1fr;
	align-items: start;
	gap: 14px;
}

.ghib-hero-card__list svg {
	width: 22px;
	height: 22px;
	margin-top: 2px;
	padding: 8px;
	color: var(--ghib-accent-2);
	background: rgba(47, 107, 255, 0.12);
	border: 1px solid rgba(47, 107, 255, 0.24);
	border-radius: 12px;
	box-sizing: content-box;
}

.ghib-hero-card__list p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.92rem;
	line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Section header + services
   -------------------------------------------------------------------------- */

.ghib-section-header {
	display: grid;
	gap: 18px;
	margin-bottom: clamp(40px, 5vw, 60px);
}

.ghib-section-header > div { max-width: 720px; }

.ghib-section-header h2 {
	color: var(--ghib-primary);
	font-size: clamp(2rem, 4.2vw, 3rem);
	line-height: 1.06;
}

.ghib-section--navy .ghib-section-header h2,
.ghib-section--navy .ghib-section-header p,
.ghib-section--navy .ghib-section-header .ghib-kicker {
	color: #fff;
}

.ghib-section--navy .ghib-section-header p {
	color: rgba(255, 255, 255, 0.7);
}

.ghib-services { background: var(--ghib-light); }

.ghib-service-grid {
	display: grid;
	gap: clamp(22px, 2.6vw, 30px);
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ghib-service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--ghib-line);
	border-radius: var(--ghib-radius-lg);
	box-shadow: var(--ghib-shadow-1);
	transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.ghib-service-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 65%, rgba(47, 107, 255, 0.04));
	opacity: 0;
	transition: opacity 320ms ease;
	pointer-events: none;
}

.ghib-service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(47, 107, 255, 0.32);
	box-shadow: var(--ghib-shadow-2);
}

.ghib-service-card:hover::after { opacity: 1; }

.ghib-service-card__media {
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.ghib-service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 800ms ease;
}

.ghib-service-card:hover .ghib-service-card__media img {
	transform: scale(1.08);
}

.ghib-service-card__body {
	position: relative;
	padding: clamp(22px, 2.4vw, 30px);
	padding-bottom: clamp(76px, 7vw, 88px);
}

.ghib-service-card__body p {
	padding-right: 56px;
}

.ghib-service-card__number {
	display: inline-flex;
	margin-bottom: 14px;
	color: var(--ghib-accent);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.ghib-service-card__body h3 {
	color: var(--ghib-primary);
	font-size: 1.25rem;
}

.ghib-service-card__body p {
	margin: 12px 0 0;
	color: var(--ghib-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

.ghib-service-card__cta {
	position: absolute;
	right: 22px;
	bottom: 22px;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	color: var(--ghib-accent);
	background: rgba(47, 107, 255, 0.1);
	border: 1px solid rgba(47, 107, 255, 0.2);
	border-radius: 50%;
	transition: transform 240ms ease, background-color 240ms ease, color 240ms ease;
}

.ghib-service-card__cta:hover {
	color: #fff;
	background: var(--ghib-accent);
	transform: translate(3px, -3px);
}

/* --------------------------------------------------------------------------
   Stats band — navy with subtle dotted grid
   -------------------------------------------------------------------------- */

.ghib-stats {
	position: relative;
	padding: clamp(48px, 6vw, 72px) 0;
	color: #fff;
	background: linear-gradient(180deg, var(--ghib-primary) 0%, #0a224d 100%);
	isolation: isolate;
}

.ghib-stats__pattern {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
	-webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
	opacity: 0.6;
	z-index: 0;
}

.ghib-stats__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(16px, 2vw, 22px);
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ghib-stat-card {
	display: grid;
	gap: 10px;
	padding: clamp(22px, 2.6vw, 28px);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--ghib-radius-md);
	transition: transform 280ms ease, background-color 280ms ease, border-color 280ms ease;
}

.ghib-stat-card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.2);
}

.ghib-stat-card svg {
	width: 22px;
	height: 22px;
	padding: 8px;
	color: var(--ghib-accent-2);
	background: rgba(47, 107, 255, 0.16);
	border: 1px solid rgba(47, 107, 255, 0.28);
	border-radius: 10px;
	box-sizing: content-box;
}

.ghib-stat-card strong {
	font-size: clamp(2.2rem, 3.6vw, 2.8rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	overflow-wrap: anywhere;
}

.ghib-stat-card span {
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Feature split with floating badges
   -------------------------------------------------------------------------- */

.ghib-feature { background: var(--ghib-surface); }

.ghib-feature__grid {
	display: grid;
	gap: clamp(40px, 5vw, 72px);
	align-items: center;
}

.ghib-feature__content h2 {
	color: var(--ghib-primary);
}

.ghib-feature__content h2 .ghib-accent-text {
	color: var(--ghib-accent);
	background: linear-gradient(180deg, var(--ghib-accent-2), var(--ghib-accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ghib-feature__list {
	display: grid;
	gap: 14px;
	margin: 28px 0 32px;
	padding: 0;
	list-style: none;
}

.ghib-feature__list li {
	display: grid;
	grid-template-columns: 28px 1fr;
	align-items: start;
	gap: 14px;
}

.ghib-feature__list svg {
	width: 16px;
	height: 16px;
	padding: 6px;
	color: var(--ghib-accent);
	background: rgba(47, 107, 255, 0.12);
	border-radius: 50%;
	box-sizing: content-box;
}

.ghib-feature__list p {
	margin: 0;
	color: var(--ghib-muted);
	font-size: 1rem;
}

.ghib-feature__media {
	position: relative;
}

.ghib-feature__photo {
	position: relative;
	overflow: hidden;
	border-radius: var(--ghib-radius-xl);
	box-shadow: var(--ghib-shadow-2);
}

.ghib-feature__photo img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	display: block;
}

.ghib-feature__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 12, 30, 0) 55%, rgba(5, 12, 30, 0.6) 100%);
	pointer-events: none;
}

.ghib-feature__badges {
	position: absolute;
	z-index: 2;
	left: clamp(14px, 2.4vw, 26px);
	right: clamp(14px, 2.4vw, 26px);
	bottom: clamp(14px, 2vw, 22px);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	padding: clamp(10px, 1.4vw, 16px);
	color: #fff;
	background: rgba(7, 18, 41, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--ghib-radius-md);
	box-shadow: 0 24px 60px rgba(2, 8, 23, 0.32);
	backdrop-filter: blur(20px) saturate(140%);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
}

.ghib-badge-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 6px clamp(8px, 1.4vw, 16px);
	color: #fff;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	transition: transform 240ms ease;
}

.ghib-badge-card + .ghib-badge-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14%;
	bottom: 14%;
	width: 1px;
	background: rgba(255, 255, 255, 0.16);
}

.ghib-badge-card__icon {
	display: grid;
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	place-items: center;
	color: var(--ghib-accent-2);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 10px;
}

.ghib-badge-card__icon svg {
	width: 18px;
	height: 18px;
}

.ghib-badge-card__label {
	font-size: 0.86rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.005em;
}

.ghib-badge-card:hover .ghib-badge-card__icon {
	background: rgba(47, 107, 255, 0.22);
	border-color: rgba(47, 107, 255, 0.32);
}

@media (max-width: 640px) {
	.ghib-feature__photo img { min-height: 320px; }
	.ghib-feature__badges {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		margin-top: 16px;
		grid-template-columns: 1fr;
		gap: 6px;
		padding: 14px;
		background: rgba(7, 18, 41, 0.92);
	}
	.ghib-badge-card + .ghib-badge-card::before {
		left: 12px;
		right: 12px;
		top: 0;
		bottom: auto;
		width: auto;
		height: 1px;
	}
}

/* --------------------------------------------------------------------------
   Partners marquee
   -------------------------------------------------------------------------- */

.ghib-partners {
	padding: clamp(56px, 6vw, 80px) 0;
	background: var(--ghib-surface);
	border-top: 1px solid var(--ghib-line);
	border-bottom: 1px solid var(--ghib-line);
}

.ghib-partners__title {
	margin: 0 0 30px;
	color: var(--ghib-muted-2);
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-align: center;
}

.ghib-partners__rail {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 clamp(12px, 4vw, 48px);
}

.ghib-partners__arrow {
	display: grid;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	place-items: center;
	color: var(--ghib-primary);
	background: #fff;
	border: 1px solid var(--ghib-line-strong);
	border-radius: 50%;
	box-shadow: var(--ghib-shadow-1);
	cursor: pointer;
	transition: transform 240ms ease, color 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.ghib-partners__arrow:hover {
	color: #fff;
	background: var(--ghib-accent);
	border-color: var(--ghib-accent);
	transform: translateY(-2px);
}

.ghib-partners__arrow .ghib-arrow { width: 18px; height: 18px; }

.ghib-partners__track {
	display: flex;
	gap: clamp(32px, 4vw, 56px);
	flex: 1;
	overflow: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	overflow-x: auto;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ghib-partners__track::-webkit-scrollbar { display: none; }
.ghib-partners__track { scrollbar-width: none; }

.ghib-partner {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	height: 56px;
	padding: 6px 18px;
	color: var(--ghib-primary);
	scroll-snap-align: start;
	opacity: 0.72;
	filter: grayscale(1);
	transition: opacity 280ms ease, filter 280ms ease, transform 280ms ease;
}

.ghib-partner:hover {
	opacity: 1;
	filter: grayscale(0);
	transform: translateY(-2px);
}

.ghib-logo {
	display: block;
	width: auto;
	height: 36px;
	max-width: 100%;
}

@media (max-width: 640px) {
	.ghib-partner { min-width: 150px; }
	.ghib-logo { height: 30px; }
}

/* --------------------------------------------------------------------------
   Fintech / online banking section
   -------------------------------------------------------------------------- */

.ghib-fintech {
	position: relative;
	padding: clamp(80px, 10vw, 130px) 0;
	color: #fff;
	background: radial-gradient(circle at 20% 20%, rgba(47, 107, 255, 0.22), transparent 55%) var(--ghib-primary);
	overflow: hidden;
	isolation: isolate;
}

.ghib-fintech__pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: radial-gradient(ellipse at center, #000, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 70%);
	z-index: 0;
}

.ghib-fintech__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(40px, 5vw, 64px);
	grid-template-areas:
		"content"
		"features"
		"device";
}

.ghib-fintech__content { grid-area: content; }
.ghib-fintech__features { grid-area: features; }
.ghib-fintech__device { grid-area: device; }

.ghib-fintech__content h2 {
	font-size: clamp(2.2rem, 4.6vw, 3.6rem);
	line-height: 1.04;
}

.ghib-fintech__content .ghib-accent-text {
	background: linear-gradient(180deg, var(--ghib-accent-2), var(--ghib-accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ghib-fintech__intro {
	max-width: 520px;
	margin: 18px 0 12px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.05rem;
	font-weight: 600;
}

.ghib-fintech__content p {
	max-width: 520px;
	color: rgba(255, 255, 255, 0.7);
}

.ghib-fintech__store-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.ghib-store-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 56px;
	padding: 0 22px;
	color: #fff;
	background: #050e22;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	transition: transform 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.ghib-store-btn:hover {
	transform: translateY(-2px);
	background: #0a1735;
	border-color: rgba(255, 255, 255, 0.3);
}

.ghib-store-btn svg { width: 22px; height: 22px; }
.ghib-store-btn span { display: grid; line-height: 1.15; }
.ghib-store-btn small { font-size: 0.66rem; color: rgba(255, 255, 255, 0.62); letter-spacing: 0.08em; text-transform: uppercase; }
.ghib-store-btn strong { font-size: 0.95rem; }

.ghib-feature-row {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: start;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ghib-feature-row:last-child { border-bottom: 0; }

.ghib-feature-row__icon {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	color: var(--ghib-accent-2);
	background: rgba(47, 107, 255, 0.14);
	border: 1px solid rgba(47, 107, 255, 0.24);
	border-radius: 14px;
}

.ghib-feature-row__icon svg { width: 22px; height: 22px; }

.ghib-feature-row strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.ghib-feature-row p {
	margin: 4px 0 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.9rem;
}

/* Phone mockup */

.ghib-fintech__device {
	position: relative;
	display: grid;
	place-items: center;
}

.ghib-phone {
	position: relative;
	z-index: 1;
	width: min(320px, 80vw);
	padding: 12px;
	background: linear-gradient(160deg, #0c1d3d, #07142d);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 38px;
	box-shadow: 0 50px 90px rgba(2, 8, 23, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ghib-phone__notch {
	width: 80px;
	height: 6px;
	margin: 4px auto 14px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 999px;
}

.ghib-phone__screen {
	display: grid;
	gap: 14px;
	padding: 18px;
	background: linear-gradient(180deg, #0a1a3a, #061327);
	border-radius: 28px;
	overflow: hidden;
}

.ghib-phone__header { display: grid; gap: 4px; color: #fff; }
.ghib-phone__header small { color: rgba(255, 255, 255, 0.6); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.ghib-phone__header strong { font-size: 1.05rem; font-weight: 700; }

.ghib-phone__balance {
	padding: 18px;
	background: linear-gradient(135deg, rgba(47, 107, 255, 0.22), rgba(47, 107, 255, 0.06));
	border: 1px solid rgba(47, 107, 255, 0.32);
	border-radius: 18px;
	color: #fff;
}

.ghib-phone__balance p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.ghib-phone__balance strong { display: block; margin: 6px 0 4px; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }
.ghib-phone__balance small { color: var(--ghib-accent-2); font-size: 0.75rem; font-weight: 600; }

.ghib-phone__actions {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}

.ghib-phone__actions button {
	display: grid;
	gap: 4px;
	justify-items: center;
	padding: 10px 4px;
	color: #fff;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	cursor: pointer;
	transition: background-color 220ms ease, transform 220ms ease;
}

.ghib-phone__actions button:hover {
	background: rgba(47, 107, 255, 0.18);
	transform: translateY(-2px);
}

.ghib-phone__actions svg { width: 14px; height: 14px; color: var(--ghib-accent-2); }
.ghib-phone__actions span { font-size: 0.62rem; color: rgba(255, 255, 255, 0.72); letter-spacing: 0.04em; }

.ghib-phone__list {
	display: grid;
	gap: 10px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
}

.ghib-phone__list > p {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ghib-phone__list > div {
	display: grid;
	grid-template-columns: 28px 1fr auto;
	align-items: center;
	gap: 10px;
	color: #fff;
}

.ghib-phone__list span {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	color: var(--ghib-accent-2);
	background: rgba(47, 107, 255, 0.12);
	border-radius: 8px;
}
.ghib-phone__list span svg { width: 14px; height: 14px; }

.ghib-phone__list strong { font-size: 0.78rem; font-weight: 700; }
.ghib-phone__list small { display: block; color: rgba(255, 255, 255, 0.5); font-size: 0.68rem; font-style: normal; }
.ghib-phone__list em { font-style: normal; font-size: 0.82rem; font-weight: 700; color: var(--ghib-accent-2); }

.ghib-phone__halo {
	position: absolute;
	inset: -10% -20%;
	background: radial-gradient(circle, rgba(47, 107, 255, 0.4), transparent 60%);
	filter: blur(40px);
	z-index: 0;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.ghib-cta {
	padding: clamp(56px, 6vw, 90px) 0;
	color: #fff;
	background: linear-gradient(135deg, var(--ghib-primary) 0%, var(--ghib-primary-2) 100%);
}

.ghib-cta__inner {
	display: grid;
	gap: 28px;
	align-items: center;
	padding: clamp(28px, 3vw, 42px);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--ghib-radius-xl);
	backdrop-filter: blur(14px);
}

.ghib-cta h2 {
	font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.ghib-cta p { color: rgba(255, 255, 255, 0.65); margin: 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.ghib-site-footer {
	padding: clamp(64px, 7vw, 96px) 0 28px;
	color: rgba(255, 255, 255, 0.7);
	background: #050f24;
}

.ghib-footer__grid {
	display: grid;
	gap: clamp(36px, 4vw, 56px);
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ghib-footer__brand p {
	max-width: 320px;
	margin: 18px 0 22px;
	font-size: 0.95rem;
	line-height: 1.6;
}

.ghib-brand--footer .ghib-brand__logo { height: 44px; }

.ghib-social { display: flex; gap: 10px; }

.ghib-social a {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	color: rgba(255, 255, 255, 0.66);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.ghib-social a:hover {
	color: #fff;
	background: var(--ghib-accent);
	border-color: var(--ghib-accent);
	transform: translateY(-2px);
}

.ghib-social svg { width: 16px; height: 16px; }

.ghib-footer__column h2 {
	margin: 0 0 18px;
	color: #fff;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.ghib-footer__column ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ghib-footer__column a,
.ghib-footer__column span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.93rem;
	transition: color 220ms ease, transform 220ms ease;
}

.ghib-footer__column a:hover,
.ghib-footer__column a:focus-visible {
	color: #fff;
	transform: translateX(2px);
}

.ghib-footer__contact svg { width: 16px; height: 16px; color: var(--ghib-accent-2); flex: none; }

.ghib-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	align-items: center;
	padding-top: 26px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.86rem;
}

.ghib-footer__bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.ghib-footer__bottom a { color: rgba(255, 255, 255, 0.6); transition: color 220ms ease; }
.ghib-footer__bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Scroll-reveal motion + counter
   -------------------------------------------------------------------------- */

.ghib-animate {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
	transition-delay: var(--ghib-delay, 0ms);
	will-change: opacity, transform;
}

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

/* --------------------------------------------------------------------------
   Responsive layout
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
	body.ghib-theme.admin-bar .ghib-site-header { top: 32px; }
}

@media (min-width: 760px) {
	.ghib-hero__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
		align-items: end;
	}

	.ghib-feature__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	}

	.ghib-section-header {
		grid-template-columns: 1fr auto;
		align-items: end;
	}

	.ghib-feature__badges {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ghib-cta__inner {
		grid-template-columns: 1fr auto;
		text-align: left;
	}
}

@media (min-width: 980px) {
	.ghib-nav-toggle { display: none; }

	.ghib-primary-nav {
		position: static;
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.ghib-menu {
		display: flex;
		align-items: center;
		gap: 2px;
		padding: 4px;
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 999px;
	}

	.ghib-menu li { list-style: none; }

	.ghib-menu a {
		width: auto;
		min-height: 38px;
		padding: 6px 16px;
		font-size: 0.86rem;
	}

	.ghib-nav-cta {
		width: auto;
		min-height: 44px;
		padding: 8px 20px;
		margin-left: 6px;
		font-size: 0.88rem;
	}

	.ghib-fintech__grid {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
		grid-template-areas:
			"content device"
			"features device";
		row-gap: 36px;
	}

	.ghib-feature__photo img { min-height: 460px; }
}

@media (min-width: 1180px) {
	.ghib-menu a { padding-inline: 18px; font-size: 0.9rem; }
	.ghib-fintech__grid { gap: 80px; }
}

@media (max-width: 640px) {
	.ghib-feature__badges {
		grid-template-columns: 1fr;
		margin-top: 18px;
	}

	.ghib-footer__grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 720px) {
	.ghib-footer__grid {
		grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* --------------------------------------------------------------------------
   Content-page (about, careers, services, contact)
   Reuse base typography for non-home pages that use existing markup
   -------------------------------------------------------------------------- */

.ghib-content-page {
	min-height: 70vh;
	padding: 140px 0 80px;
	background: var(--ghib-light);
}

.ghib-hero--compact {
	min-height: 56vh;
	padding: clamp(140px, 16vw, 200px) 0 clamp(60px, 8vw, 100px);
}

.ghib-hero--compact .ghib-hero__content h1 {
	font-size: clamp(2.4rem, 5vw, 4rem);
}

.ghib-hero--compact .ghib-hero__grid {
	grid-template-columns: minmax(0, 1fr);
}

.ghib-section--light { background: var(--ghib-light); }
.ghib-section--navy {
	color: #fff;
	background: linear-gradient(135deg, var(--ghib-primary) 0%, var(--ghib-primary-2) 100%);
}

.ghib-section-heading { max-width: 760px; margin-bottom: 34px; }
.ghib-section-heading--light { color: #fff; }
.ghib-section-heading h2 { color: var(--ghib-primary); }
.ghib-section-heading--light h2 { color: #fff; }
.ghib-section-heading p { color: var(--ghib-muted); margin: 16px 0 0; }
.ghib-section-heading--light p { color: rgba(255, 255, 255, 0.7); }

.ghib-card-grid {
	display: grid;
	gap: 24px;
}
.ghib-card-grid--two { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.ghib-card-grid--three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.ghib-card-grid--four { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.ghib-info-card,
.ghib-value-card,
.ghib-team-card,
.ghib-location-card,
.ghib-contact-panel,
.ghib-role-card {
	background: #fff;
	border: 1px solid var(--ghib-line);
	border-radius: var(--ghib-radius-lg);
	box-shadow: var(--ghib-shadow-1);
	overflow: hidden;
	padding: 24px;
	transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.ghib-info-card:hover,
.ghib-value-card:hover,
.ghib-team-card:hover,
.ghib-location-card:hover,
.ghib-role-card:hover {
	transform: translateY(-6px);
	border-color: rgba(47, 107, 255, 0.28);
	box-shadow: var(--ghib-shadow-2);
}

.ghib-info-card h3,
.ghib-value-card h3,
.ghib-team-card h3,
.ghib-location-card h3,
.ghib-role-card h3,
.ghib-contact-panel h3 {
	margin: 0;
	color: var(--ghib-primary);
	font-size: 1.1rem;
}

.ghib-info-card p,
.ghib-value-card p,
.ghib-team-card p,
.ghib-location-card p,
.ghib-role-card p {
	margin: 10px 0 0;
	color: var(--ghib-muted);
}

.ghib-section--navy .ghib-value-card {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
}

.ghib-section--navy .ghib-value-card h3 { color: #fff; }
.ghib-section--navy .ghib-value-card p { color: rgba(255, 255, 255, 0.66); }

.ghib-split {
	display: grid;
	gap: 40px;
	align-items: center;
}

@media (min-width: 760px) {
	.ghib-split {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 60px;
	}
	.ghib-split--reverse .ghib-split__media { order: 2; }
}

.ghib-split__media {
	overflow: hidden;
	border-radius: var(--ghib-radius-xl);
	box-shadow: var(--ghib-shadow-2);
}

.ghib-split__media img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

.ghib-split__content h2 { color: var(--ghib-primary); }
.ghib-section--navy .ghib-split__content h2 { color: #fff; }
.ghib-split__content p { color: var(--ghib-muted); margin: 16px 0 0; }
.ghib-section--navy .ghib-split__content p { color: rgba(255, 255, 255, 0.66); }

.ghib-glass-card.ghib-dark-card {
	color: #fff;
	background: rgba(7, 18, 41, 0.85);
	border-color: rgba(255, 255, 255, 0.12);
	padding: 28px;
}

.ghib-dark-card h3 { color: #fff; margin: 0 0 16px; }

.ghib-clean-list,
.ghib-check-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ghib-clean-list li,
.ghib-check-list p {
	position: relative;
	padding-left: 28px;
	color: rgba(255, 255, 255, 0.74);
	margin: 0;
}

.ghib-check-list p {
	color: var(--ghib-muted);
}

.ghib-clean-list li::before,
.ghib-check-list p::before {
	content: "";
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 8px;
	height: 8px;
	background: var(--ghib-accent);
	border-radius: 50%;
}

.ghib-team-card { padding: 0; }
.ghib-team-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.ghib-team-card h3, .ghib-team-card p { padding-inline: 22px; }
.ghib-team-card h3 { margin-top: 20px; }
.ghib-team-card p { padding-bottom: 22px; }

.ghib-service-stack { display: grid; gap: 24px; }
.ghib-service-row {
	display: grid;
	background: #fff;
	border: 1px solid var(--ghib-line);
	border-radius: var(--ghib-radius-xl);
	box-shadow: var(--ghib-shadow-1);
	overflow: hidden;
}
@media (min-width: 760px) {
	.ghib-service-row { grid-template-columns: 0.9fr 1.1fr; align-items: stretch; }
	.ghib-service-row:nth-child(even) .ghib-service-row__media { order: 2; }
}
.ghib-service-row__media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.ghib-service-row__content { padding: clamp(24px, 3vw, 40px); }
.ghib-service-row__number { color: var(--ghib-accent); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; }
.ghib-service-row h3 { margin: 14px 0; color: var(--ghib-primary); font-size: 1.4rem; }
.ghib-service-row p { color: var(--ghib-muted); }

.ghib-pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.ghib-pill-list li {
	padding: 8px 12px;
	color: var(--ghib-primary);
	background: rgba(47, 107, 255, 0.08);
	border: 1px solid rgba(47, 107, 255, 0.18);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
}

.ghib-role-list { display: grid; gap: 14px; }

.ghib-role-card {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
}

.ghib-role-card h3 { color: #fff; }
.ghib-role-card p { color: rgba(255, 255, 255, 0.68); }
.ghib-role-card span {
	padding: 8px 12px;
	color: #fff;
	background: rgba(47, 107, 255, 0.5);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
}

.ghib-contact-grid {
	display: grid;
	gap: 24px;
}

@media (min-width: 880px) {
	.ghib-contact-grid {
		grid-template-columns: 1.1fr 0.9fr;
		align-items: start;
	}
}

.ghib-contact-panel { padding: 28px; }
.ghib-contact-panel--dark {
	color: #fff;
	background: var(--ghib-primary);
	border-color: rgba(255, 255, 255, 0.12);
}
.ghib-contact-panel--dark h3,
.ghib-contact-panel--dark a { color: #fff; }
.ghib-contact-panel--dark p { color: rgba(255, 255, 255, 0.7); }

.ghib-contact-form { display: grid; gap: 16px; margin-top: 22px; }
.ghib-contact-form label { display: grid; gap: 8px; color: var(--ghib-primary); font-weight: 700; }
.ghib-contact-form input,
.ghib-contact-form select,
.ghib-contact-form textarea {
	width: 100%;
	padding: 13px 15px;
	color: var(--ghib-primary);
	background: #fff;
	border: 1px solid var(--ghib-line-strong);
	border-radius: var(--ghib-radius-sm);
	outline: none;
	transition: border-color 220ms ease, box-shadow 220ms ease;
}

.ghib-contact-form input:focus,
.ghib-contact-form select:focus,
.ghib-contact-form textarea:focus {
	border-color: var(--ghib-accent);
	box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.14);
}

.ghib-department-list {
	display: grid;
	gap: 18px;
	margin-top: 20px;
}

.ghib-department-list > div {
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ghib-department-list > div:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.ghib-department-list a {
	display: block;
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.78);
}

.ghib-location-card {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
	padding: 0;
}

.ghib-location-card img { width: 100%; height: 220px; object-fit: cover; }
.ghib-location-card h3 { color: #fff; padding: 22px 22px 0; }
.ghib-location-card p { color: rgba(255, 255, 255, 0.7); padding: 12px 22px; }
.ghib-location-card p:last-child { padding-bottom: 22px; }

.ghib-prose { max-width: 840px; }
.ghib-prose > *:first-child { margin-top: 0; }
.ghib-prose h1,
.ghib-prose h2,
.ghib-prose h3 { color: var(--ghib-primary); line-height: 1.12; }

.ghib-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ghib-accent);
	font-weight: 700;
	transition: color 220ms ease, gap 220ms ease;
}
.ghib-link:hover { gap: 12px; color: #1f56d4; }
.ghib-link::after { content: "->"; }

/* ==========================================================================
   Inner page system — shared by About, Services, Careers, Contact
   ========================================================================== */

.ghib-section--soft {
	background: linear-gradient(180deg, #f8fafe 0%, #eef2fa 100%);
}

/* --------------------------------------------------------------------------
   Inner-page heroes — refined executive subpages
   Homepage stays the only large cinematic hero. Every inner page (About,
   Banking/Services, Careers, Contact) uses the same compact, image-backed
   editorial hero for a unified institutional rhythm.
   -------------------------------------------------------------------------- */

.ghib-hero--inner {
	min-height: 0;
	height: auto;
	padding: clamp(120px, 14vw, 150px) 0 clamp(48px, 6vw, 72px);
	align-items: center;
	background: linear-gradient(135deg, #061634 0%, #0a1f4a 55%, #0f2a5c 100%);
}

/* Subtle background image — pushed back so type leads */
.ghib-hero--inner .ghib-hero__image {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center 35%;
	opacity: 0.42;
	filter: saturate(0.9) brightness(0.82);
	animation: none;
}

/* Editorial overlay tuned for legibility on top of the image */
.ghib-hero--inner .ghib-hero__overlay {
	background:
		linear-gradient(105deg, rgba(6, 22, 52, 0.92) 0%, rgba(10, 31, 74, 0.7) 55%, rgba(15, 42, 92, 0.38) 100%),
		linear-gradient(180deg, rgba(5, 12, 30, 0.05) 0%, rgba(5, 12, 30, 0.55) 100%);
}

.ghib-hero--inner .ghib-hero__glow {
	right: -6%;
	top: -15%;
	bottom: auto;
	width: 55vw;
	max-width: 620px;
	background: radial-gradient(circle, rgba(47, 107, 255, 0.3) 0%, rgba(47, 107, 255, 0) 65%);
	filter: blur(38px);
}

.ghib-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	display: grid;
	gap: clamp(14px, 1.4vw, 20px);
}

.ghib-hero--inner h1 {
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.03em;
	max-width: 22ch;
}

.ghib-hero--inner h1 .ghib-accent-text {
	background: linear-gradient(180deg, #6ea9ff, #2f6bff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ghib-hero--inner .ghib-kicker {
	margin-bottom: 4px;
	font-size: 0.68rem;
	letter-spacing: 0.22em;
}

.ghib-hero--inner .ghib-hero__copy {
	max-width: 56ch;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.7);
	font-size: clamp(0.96rem, 1.05vw, 1.05rem);
	line-height: 1.7;
}

.ghib-hero--inner .ghib-hero__actions {
	margin-top: clamp(18px, 2vw, 26px);
}

.ghib-hero--inner .ghib-hero__actions .ghib-btn {
	min-height: 48px;
	padding: 0 22px;
	font-size: 0.9rem;
}

/* Split-layout variant: left content, right institutional visual */
.ghib-hero--split .ghib-container {
	position: relative;
	z-index: 2;
	display: grid;
	gap: clamp(36px, 5vw, 64px);
	align-items: center;
}

@media (min-width: 880px) {
	.ghib-hero--split .ghib-container {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	}
}

.ghib-hero--split .ghib-hero__image { display: none; }
.ghib-hero--split .ghib-hero__overlay {
	background:
		linear-gradient(120deg, rgba(6, 22, 52, 0.96) 0%, rgba(10, 31, 74, 0.85) 55%, rgba(13, 37, 84, 0.7) 100%);
}

.ghib-hero__visual {
	position: relative;
	width: 100%;
	max-width: 520px;
	margin-left: auto;
	aspect-ratio: 4 / 3.2;
	border-radius: var(--ghib-radius-xl);
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(2, 8, 23, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.ghib-hero__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1200ms ease;
}

.ghib-hero__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(6, 22, 52, 0.18) 0%, rgba(47, 107, 255, 0.05) 60%, transparent 100%);
	pointer-events: none;
}

.ghib-hero__visual:hover img { transform: scale(1.03); }

.ghib-hero__visual-badge {
	position: absolute;
	left: clamp(14px, 2vw, 22px);
	bottom: clamp(14px, 2vw, 22px);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	color: #fff;
	background: rgba(7, 18, 41, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--ghib-radius-sm);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	font-size: 0.82rem;
	font-weight: 600;
}

.ghib-hero__visual-badge svg {
	width: 16px;
	height: 16px;
	color: var(--ghib-accent-2);
}

/* Per-page tone tuning — same compact height across all inner pages,
   only the imagery treatment differs to keep each page identifiable. */

.ghib-hero--services .ghib-hero__image {
	opacity: 0.38;
	filter: saturate(0.85) brightness(0.78);
}

.ghib-hero--services .ghib-hero__overlay {
	background:
		linear-gradient(105deg, rgba(6, 22, 52, 0.92) 0%, rgba(10, 31, 74, 0.7) 55%, rgba(20, 50, 110, 0.45) 100%),
		radial-gradient(circle at 80% 30%, rgba(47, 107, 255, 0.18), transparent 55%);
}

.ghib-hero--careers .ghib-hero__image {
	opacity: 0.48;
	filter: saturate(0.95) brightness(0.92);
}

.ghib-hero--careers .ghib-hero__overlay {
	background:
		linear-gradient(110deg, rgba(6, 22, 52, 0.9) 0%, rgba(11, 34, 80, 0.62) 55%, rgba(28, 68, 138, 0.34) 100%);
}

.ghib-hero--about .ghib-hero__image {
	opacity: 0.46;
	filter: saturate(0.95) brightness(0.9);
}

.ghib-hero--about .ghib-hero__overlay {
	background:
		linear-gradient(105deg, rgba(6, 22, 52, 0.92) 0%, rgba(10, 31, 74, 0.7) 55%, rgba(15, 42, 92, 0.4) 100%);
}

.ghib-hero--contact .ghib-hero__image {
	opacity: 0.4;
	filter: saturate(0.9) brightness(0.85);
}

.ghib-hero--contact .ghib-hero__overlay {
	background:
		linear-gradient(110deg, rgba(6, 22, 52, 0.94) 0%, rgba(10, 31, 74, 0.72) 55%, rgba(15, 42, 92, 0.45) 100%),
		radial-gradient(circle at 85% 30%, rgba(47, 107, 255, 0.18), transparent 55%);
}

/* Faint dotted pattern reused on inner heroes for institutional texture */
.ghib-hero--inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
	-webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
	opacity: 0.7;
	z-index: 1;
	pointer-events: none;
}

@media (max-width: 720px) {
	.ghib-hero--inner { padding-block: clamp(110px, 24vw, 140px) clamp(44px, 8vw, 64px); }
	.ghib-hero--inner h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
	.ghib-hero--inner .ghib-hero__copy { font-size: 0.94rem; }
	.ghib-hero--split .ghib-hero__visual { max-width: 100%; margin: 18px 0 0; aspect-ratio: 16 / 10; }
	.ghib-hero__visual-badge { font-size: 0.74rem; padding: 8px 12px; }
}

/* Breadcrumb */
.ghib-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 0 0 4px;
	padding: 0;
	list-style: none;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.82rem;
	letter-spacing: 0.06em;
}

.ghib-breadcrumb li[aria-hidden="true"] { opacity: 0.4; }
.ghib-breadcrumb a {
	color: rgba(255, 255, 255, 0.8);
	transition: color 220ms ease;
}
.ghib-breadcrumb a:hover { color: #fff; }
.ghib-breadcrumb [aria-current="page"] { color: var(--ghib-accent-2); font-weight: 600; }

/* Generic glass-card header (used in About/Careers/Contact glass panels) */
.ghib-glass-card__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.ghib-glass-card__header strong { color: rgba(255, 255, 255, 0.92); font-weight: 700; }

/* Premium feature/value cards (used on About, Services, Careers, Contact) */

.ghib-value-grid {
	display: grid;
	gap: clamp(18px, 2vw, 24px);
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ghib-compliance-grid { /* alias of value grid for semantic clarity */
	display: grid;
	gap: clamp(18px, 2vw, 24px);
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ghib-premium-card {
	position: relative;
	display: grid;
	gap: 14px;
	padding: clamp(22px, 2.4vw, 28px);
	background: #fff;
	border: 1px solid var(--ghib-line);
	border-radius: var(--ghib-radius-lg);
	box-shadow: var(--ghib-shadow-1);
	transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
	min-width: 0;
}

.ghib-premium-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(47, 107, 255, 0.05));
	border-radius: inherit;
	opacity: 0;
	transition: opacity 320ms ease;
	pointer-events: none;
}

.ghib-premium-card:hover {
	transform: translateY(-6px);
	border-color: rgba(47, 107, 255, 0.28);
	box-shadow: var(--ghib-shadow-2);
}
.ghib-premium-card:hover::after { opacity: 1; }

.ghib-premium-card__num {
	position: absolute;
	top: 22px;
	right: 24px;
	color: var(--ghib-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.ghib-premium-card__icon {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	color: var(--ghib-accent);
	background: rgba(47, 107, 255, 0.1);
	border: 1px solid rgba(47, 107, 255, 0.18);
	border-radius: 14px;
}
.ghib-premium-card__icon svg { width: 22px; height: 22px; }

.ghib-premium-card h3 {
	margin: 0;
	color: var(--ghib-primary);
	font-size: 1.15rem;
}

.ghib-premium-card p {
	margin: 0;
	color: var(--ghib-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Variant on dark navy sections */
.ghib-section--navy .ghib-premium-card,
.ghib-premium-card--navy {
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 18px 40px rgba(2, 8, 23, 0.25);
}

.ghib-section--navy .ghib-premium-card h3,
.ghib-premium-card--navy h3 { color: #fff; }

.ghib-section--navy .ghib-premium-card p,
.ghib-premium-card--navy p { color: rgba(255, 255, 255, 0.7); }

.ghib-section--navy .ghib-premium-card__icon,
.ghib-premium-card--navy .ghib-premium-card__icon {
	color: var(--ghib-accent-2);
	background: rgba(47, 107, 255, 0.16);
	border-color: rgba(47, 107, 255, 0.28);
}

/* Light explicit variant for use within ghib-section--light/soft */
.ghib-premium-card--light { background: #fff; }

/* About — vertical timeline */

.ghib-timeline {
	position: relative;
	display: grid;
	gap: clamp(20px, 2.6vw, 36px);
	margin: 0;
	padding: 6px 0 0 0;
	list-style: none;
}

.ghib-timeline::before {
	content: "";
	position: absolute;
	top: 18px;
	bottom: 18px;
	left: clamp(60px, 7vw, 110px);
	width: 2px;
	background: linear-gradient(180deg, transparent, var(--ghib-line-strong) 12%, var(--ghib-line-strong) 88%, transparent);
}

.ghib-timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: clamp(70px, 8vw, 120px) 1fr;
	gap: clamp(18px, 2.4vw, 36px);
	align-items: start;
}

.ghib-timeline__item::before {
	content: "";
	position: absolute;
	top: 14px;
	left: clamp(56px, 7vw, 106px);
	width: 10px;
	height: 10px;
	background: var(--ghib-accent);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.18);
}

.ghib-timeline__year {
	color: var(--ghib-accent);
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 800;
	letter-spacing: -0.01em;
}

.ghib-timeline__body {
	padding: clamp(18px, 2vw, 24px);
	background: #fff;
	border: 1px solid var(--ghib-line);
	border-radius: var(--ghib-radius-lg);
	box-shadow: var(--ghib-shadow-1);
	transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.ghib-timeline__item:hover .ghib-timeline__body {
	transform: translateY(-4px);
	border-color: rgba(47, 107, 255, 0.28);
	box-shadow: var(--ghib-shadow-2);
}

.ghib-timeline__body h3 { margin: 0; color: var(--ghib-primary); font-size: 1.1rem; }
.ghib-timeline__body p { margin: 8px 0 0; color: var(--ghib-muted); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 560px) {
	.ghib-timeline::before { left: 20px; }
	.ghib-timeline__item { grid-template-columns: 1fr; gap: 6px; padding-left: 36px; }
	.ghib-timeline__item::before { left: 14px; top: 8px; }
}

/* About — premium leadership cards */

.ghib-leader-grid {
	display: grid;
	gap: clamp(20px, 2.6vw, 28px);
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ghib-leader-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--ghib-line);
	border-radius: var(--ghib-radius-lg);
	box-shadow: var(--ghib-shadow-1);
	transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
	min-width: 0;
}

.ghib-leader-card:hover {
	transform: translateY(-6px);
	border-color: rgba(47, 107, 255, 0.28);
	box-shadow: var(--ghib-shadow-2);
}

.ghib-leader-card__media {
	overflow: hidden;
	background: linear-gradient(180deg, #f4f6fb, #e8ecf4);
	aspect-ratio: 4 / 5;
}

.ghib-leader-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.3) contrast(1.02);
	transition: filter 600ms ease, transform 800ms ease;
}

.ghib-leader-card:hover .ghib-leader-card__media img {
	filter: grayscale(0) contrast(1.05);
	transform: scale(1.04);
}

.ghib-leader-card__body { padding: clamp(20px, 2.2vw, 26px); }
.ghib-leader-card__body h3 { margin: 0; color: var(--ghib-primary); font-size: 1.15rem; }
.ghib-leader-card__body span {
	display: block;
	margin: 6px 0 12px;
	color: var(--ghib-accent);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.ghib-leader-card__body p { margin: 0; color: var(--ghib-muted); font-size: 0.93rem; line-height: 1.55; }

/* Services — detail row */

.ghib-service-detail {
	display: grid;
	gap: clamp(36px, 4vw, 60px);
}

.ghib-service-detail__row {
	display: grid;
	gap: clamp(28px, 4vw, 52px);
	align-items: center;
}

@media (min-width: 760px) {
	.ghib-service-detail__row {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	}
	.ghib-service-detail__row:nth-child(even) .ghib-service-detail__media {
		order: 2;
	}
}

.ghib-service-detail__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--ghib-radius-xl);
	box-shadow: var(--ghib-shadow-2);
}

.ghib-service-detail__media img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	transition: transform 1000ms ease;
}

.ghib-service-detail__row:hover .ghib-service-detail__media img {
	transform: scale(1.04);
}

.ghib-service-detail__badge {
	position: absolute;
	left: clamp(16px, 2vw, 24px);
	bottom: clamp(16px, 2vw, 24px);
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 18px;
	color: #fff;
	background: rgba(7, 18, 41, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--ghib-radius-sm);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.ghib-service-detail__badge span {
	color: var(--ghib-accent-2);
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.ghib-service-detail__badge small {
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.ghib-service-detail__content h3 {
	margin: 12px 0 18px;
	color: var(--ghib-primary);
	font-size: clamp(1.7rem, 3vw, 2.2rem);
	letter-spacing: -0.03em;
}

.ghib-service-detail__content p {
	color: var(--ghib-muted);
	font-size: 1rem;
	line-height: 1.65;
}

/* Process / steps */

.ghib-process { position: relative; isolation: isolate; }

.ghib-process__steps {
	position: relative;
	display: grid;
	gap: clamp(22px, 2.4vw, 30px);
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: ghib-step;
}

.ghib-process__step {
	position: relative;
	padding: clamp(22px, 2.4vw, 28px);
	color: #fff;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--ghib-radius-md);
	transition: transform 280ms ease, background-color 280ms ease, border-color 280ms ease;
	min-width: 0;
}

.ghib-process__step:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.2);
}

.ghib-process__icon {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	margin-bottom: 16px;
	color: var(--ghib-accent-2);
	background: rgba(47, 107, 255, 0.16);
	border: 1px solid rgba(47, 107, 255, 0.28);
	border-radius: 12px;
}

.ghib-process__icon svg { width: 22px; height: 22px; }

.ghib-process__num {
	display: block;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.ghib-process__step h3 {
	margin: 0;
	color: #fff;
	font-size: 1.1rem;
}

.ghib-process__step p {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.93rem;
	line-height: 1.55;
}

/* Light variant of process steps */
.ghib-process__steps--light .ghib-process__step {
	color: var(--ghib-ink);
	background: #fff;
	border-color: var(--ghib-line);
	box-shadow: var(--ghib-shadow-1);
}

.ghib-process__steps--light .ghib-process__num { color: rgba(11, 31, 58, 0.32); }

.ghib-process__steps--light .ghib-process__icon {
	color: var(--ghib-accent);
	background: rgba(47, 107, 255, 0.1);
	border-color: rgba(47, 107, 255, 0.18);
}

.ghib-process__steps--light .ghib-process__step h3 { color: var(--ghib-primary); }
.ghib-process__steps--light .ghib-process__step p { color: var(--ghib-muted); }

/* Light variant of the text link */
.ghib-text-link--light { color: var(--ghib-accent-2); }
.ghib-text-link--light:hover { color: #fff; }

/* Careers — role filters and role cards */

.ghib-role-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: clamp(24px, 3vw, 36px);
}

.ghib-chip {
	padding: 9px 16px;
	color: rgba(255, 255, 255, 0.78);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.ghib-chip:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-1px);
}

.ghib-chip.is-active {
	color: #fff;
	background: var(--ghib-accent);
	border-color: var(--ghib-accent);
	box-shadow: 0 12px 28px rgba(47, 107, 255, 0.35);
}

.ghib-role-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ghib-role {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 18px;
	padding: clamp(20px, 2.4vw, 26px) clamp(22px, 2.6vw, 30px);
	color: #fff;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--ghib-radius-md);
	transition: transform 280ms ease, background-color 280ms ease, border-color 280ms ease;
}

.ghib-role:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(47, 107, 255, 0.32);
}

.ghib-role__team {
	display: inline-flex;
	margin-bottom: 8px;
	padding: 5px 10px;
	color: var(--ghib-accent-2);
	background: rgba(47, 107, 255, 0.14);
	border: 1px solid rgba(47, 107, 255, 0.28);
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ghib-role h3 { margin: 0; color: #fff; font-size: 1.05rem; }

.ghib-role__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.86rem;
}

.ghib-role__meta span { display: inline-flex; align-items: center; gap: 8px; }
.ghib-role__meta svg { width: 14px; height: 14px; color: var(--ghib-accent-2); }

.ghib-role__cta { min-height: 44px; padding: 0 18px; font-size: 0.86rem; }

.ghib-role-empty {
	padding: clamp(22px, 2.6vw, 28px);
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px dashed rgba(255, 255, 255, 0.16);
	border-radius: var(--ghib-radius-md);
}

@media (max-width: 640px) {
	.ghib-role { grid-template-columns: 1fr; }
	.ghib-role__cta { justify-self: start; }
}

/* Contact — quick contact cards */

.ghib-contact-quick {
	display: grid;
	gap: clamp(14px, 1.8vw, 18px);
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ghib-contact-quick__card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	color: var(--ghib-primary);
	background: #fff;
	border: 1px solid var(--ghib-line);
	border-radius: var(--ghib-radius-lg);
	box-shadow: var(--ghib-shadow-1);
	transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

a.ghib-contact-quick__card:hover {
	transform: translateY(-3px);
	border-color: rgba(47, 107, 255, 0.32);
	box-shadow: var(--ghib-shadow-2);
}

.ghib-contact-quick__icon {
	display: grid;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	place-items: center;
	color: var(--ghib-accent);
	background: rgba(47, 107, 255, 0.1);
	border: 1px solid rgba(47, 107, 255, 0.18);
	border-radius: 12px;
}

.ghib-contact-quick__icon svg { width: 20px; height: 20px; }
.ghib-contact-quick__card small { display: block; color: var(--ghib-muted-2); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }
.ghib-contact-quick__card strong { display: block; margin-top: 4px; font-size: 0.96rem; color: var(--ghib-primary); }

/* Contact — form + aside layout */

.ghib-contact-layout {
	display: grid;
	gap: clamp(28px, 3vw, 40px);
}

@media (min-width: 980px) {
	.ghib-contact-layout {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
		align-items: stretch;
	}

	.ghib-contact-layout > .ghib-contact-form-card,
	.ghib-contact-layout > .ghib-contact-aside {
		height: 100%;
		display: flex;
		flex-direction: column;
	}

	.ghib-contact-aside .ghib-department-list {
		flex: 1 1 auto;
	}
}

/* Aside footer — anchors the bottom of the dark card so it balances the form */
.ghib-contact-aside { position: relative; }

.ghib-contact-aside .ghib-glass-card__header {
	margin-bottom: 22px;
}

.ghib-contact-aside .ghib-department-list { gap: 20px; }

.ghib-contact-aside__footer {
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: grid;
	gap: 16px;
}

.ghib-contact-aside__hours {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ghib-contact-aside__hours-icon {
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	place-items: center;
	color: var(--ghib-accent-2);
	background: rgba(47, 107, 255, 0.14);
	border: 1px solid rgba(47, 107, 255, 0.28);
	border-radius: 12px;
}
.ghib-contact-aside__hours-icon svg { width: 18px; height: 18px; }

.ghib-contact-aside__hours small {
	display: block;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
}

.ghib-contact-aside__hours strong {
	display: block;
	margin-top: 4px;
	color: #fff;
	font-size: 0.96rem;
	font-weight: 600;
}

.ghib-contact-aside__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 18px;
	color: #fff;
	background: var(--ghib-accent);
	border-radius: var(--ghib-radius-sm);
	font-size: 0.92rem;
	font-weight: 600;
	box-shadow: 0 14px 32px rgba(47, 107, 255, 0.32);
	transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.ghib-contact-aside__cta svg { width: 16px; height: 16px; }

.ghib-contact-aside__cta:hover {
	transform: translateY(-2px);
	background: #2056d4;
	box-shadow: 0 18px 38px rgba(47, 107, 255, 0.4);
	color: #fff;
}

.ghib-contact-form-card {
	padding: clamp(28px, 3vw, 40px);
	background: #fff;
	border: 1px solid var(--ghib-line);
	border-radius: var(--ghib-radius-xl);
	box-shadow: var(--ghib-shadow-1);
}

.ghib-contact-form-card h2 {
	color: var(--ghib-primary);
	font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.ghib-contact-form-card__intro {
	margin: 12px 0 24px;
	color: var(--ghib-muted);
}

.ghib-contact-form__row {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
}

@media (min-width: 600px) {
	.ghib-contact-form__row { grid-template-columns: 1fr 1fr; }
}

.ghib-contact-form label { display: grid; gap: 8px; color: var(--ghib-primary); font-weight: 600; font-size: 0.92rem; }

.ghib-contact-form input,
.ghib-contact-form select,
.ghib-contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	color: var(--ghib-primary);
	background: #fff;
	border: 1px solid var(--ghib-line-strong);
	border-radius: var(--ghib-radius-sm);
	outline: none;
	transition: border-color 220ms ease, box-shadow 220ms ease;
}

.ghib-contact-form input:focus,
.ghib-contact-form select:focus,
.ghib-contact-form textarea:focus {
	border-color: var(--ghib-accent);
	box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.14);
}

.ghib-contact-form textarea { resize: vertical; min-height: 140px; }

.ghib-checkbox {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 12px;
	color: var(--ghib-muted);
	font-size: 0.88rem;
	line-height: 1.55;
	font-weight: 500;
}

.ghib-checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--ghib-accent); }

.ghib-contact-aside { padding: clamp(22px, 2.4vw, 28px); }
.ghib-contact-aside .ghib-department-list { display: grid; gap: 18px; padding: 0; margin: 0; list-style: none; }
.ghib-contact-aside .ghib-department-list li { padding-bottom: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.ghib-contact-aside .ghib-department-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.ghib-contact-aside .ghib-department-list h3 { margin: 0 0 8px; color: #fff; font-size: 0.96rem; }
.ghib-contact-aside .ghib-department-list a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.88rem;
	transition: color 220ms ease;
}
.ghib-contact-aside .ghib-department-list a:hover { color: #fff; }
.ghib-contact-aside .ghib-department-list a svg { width: 14px; height: 14px; color: var(--ghib-accent-2); }
.ghib-contact-aside .ghib-department-list a + a { margin-left: 0; }

/* Contact — offices */

.ghib-offices { isolation: isolate; }

.ghib-office-grid {
	display: grid;
	gap: clamp(24px, 2.6vw, 32px);
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ghib-office-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	color: #fff;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--ghib-radius-lg);
	transition: transform 320ms ease, border-color 320ms ease, background-color 320ms ease;
	min-width: 0;
}

.ghib-office-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(47, 107, 255, 0.32);
}

.ghib-office-card__media { position: relative; }
.ghib-office-card__media img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	filter: hue-rotate(-6deg) brightness(0.92);
	transition: transform 800ms ease, filter 600ms ease;
}

.ghib-office-card:hover .ghib-office-card__media img {
	transform: scale(1.04);
	filter: hue-rotate(0) brightness(1);
}

.ghib-office-card__pin {
	position: absolute;
	top: 16px;
	right: 16px;
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	color: #fff;
	background: var(--ghib-accent);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	box-shadow: var(--ghib-shadow-glow);
}
.ghib-office-card__pin svg { width: 18px; height: 18px; }

.ghib-office-card__body { padding: clamp(22px, 2.4vw, 28px); display: grid; gap: 10px; }
.ghib-office-card__body h3 { margin: 0; font-size: 1.4rem; color: #fff; }
.ghib-office-card__body p { margin: 0; color: rgba(255, 255, 255, 0.72); line-height: 1.6; }
.ghib-office-card__body ul {
	display: grid;
	gap: 8px;
	margin: 12px 0 0;
	padding: 14px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	list-style: none;
}
.ghib-office-card__body li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
}
.ghib-office-card__body li svg { width: 16px; height: 16px; color: var(--ghib-accent-2); }

/* Contact — FAQ accordion */

.ghib-faq-layout {
	display: grid;
	gap: clamp(28px, 3vw, 48px);
}

@media (min-width: 900px) {
	.ghib-faq-layout {
		grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
		align-items: start;
	}
}

.ghib-faq-intro h2 { color: var(--ghib-primary); font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.ghib-faq-intro p { color: var(--ghib-muted); margin: 14px 0 18px; }

.ghib-faq {
	display: grid;
	gap: 12px;
}

.ghib-faq__item {
	background: #fff;
	border: 1px solid var(--ghib-line);
	border-radius: var(--ghib-radius-md);
	box-shadow: var(--ghib-shadow-1);
	overflow: hidden;
	transition: border-color 240ms ease, box-shadow 240ms ease;
}

.ghib-faq__item[open] {
	border-color: rgba(47, 107, 255, 0.32);
	box-shadow: var(--ghib-shadow-2);
}

.ghib-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: clamp(18px, 2vw, 22px) clamp(20px, 2.4vw, 26px);
	color: var(--ghib-primary);
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.ghib-faq__item summary::-webkit-details-marker { display: none; }
.ghib-faq__item summary::marker { display: none; }

.ghib-faq__toggle {
	display: grid;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	place-items: center;
	color: var(--ghib-accent);
	background: rgba(47, 107, 255, 0.1);
	border: 1px solid rgba(47, 107, 255, 0.2);
	border-radius: 50%;
	transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1), background-color 240ms ease;
}

.ghib-faq__toggle svg { width: 14px; height: 14px; }

.ghib-faq__item[open] .ghib-faq__toggle {
	color: #fff;
	background: var(--ghib-accent);
	border-color: var(--ghib-accent);
	transform: rotate(45deg);
}

.ghib-faq__body {
	padding: 0 clamp(20px, 2.4vw, 26px) clamp(20px, 2.2vw, 24px);
	color: var(--ghib-muted);
	font-size: 0.95rem;
	line-height: 1.65;
	animation: ghib-faq-fade 360ms ease;
}

@keyframes ghib-faq-fade {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Hide legacy fallback hero variant — keep for old templates if any still use it */
.ghib-hero--compact {
	min-height: 56vh;
	padding: clamp(140px, 16vw, 200px) 0 clamp(60px, 8vw, 100px);
}
.ghib-hero--compact .ghib-hero__content h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.ghib-hero--compact .ghib-hero__grid { grid-template-columns: minmax(0, 1fr); }

/* --------------------------------------------------------------------------
   Targeted fixes — contact cards, careers role filter, contact form notice
   -------------------------------------------------------------------------- */

/* Quick contact cards: stretch to equal heights and prevent long emails from overflowing */
.ghib-contact-quick {
	align-items: stretch;
}

.ghib-contact-quick__card {
	min-width: 0;
	align-items: flex-start;
	height: 100%;
}

.ghib-contact-quick__card > div {
	min-width: 0;
	flex: 1;
}

.ghib-contact-quick__card strong {
	overflow-wrap: anywhere;
	word-break: break-word;
	font-size: 0.92rem;
	line-height: 1.4;
}

/* Role filter: [hidden] must beat the explicit display: grid declaration */
.ghib-role[hidden] { display: none !important; }

/* Contact form status notice */
.ghib-contact-form__notice {
	margin: 0 0 20px;
	padding: 14px 18px;
	border-radius: var(--ghib-radius-md);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.5;
	border: 1px solid transparent;
}

.ghib-contact-form__notice--success {
	color: #0c5132;
	background: rgba(46, 184, 122, 0.12);
	border-color: rgba(46, 184, 122, 0.4);
}

.ghib-contact-form__notice--error {
	color: #842029;
	background: rgba(220, 53, 69, 0.1);
	border-color: rgba(220, 53, 69, 0.4);
}

/* Office card list — wrap long emails neatly */
.ghib-office-card__body li a,
.ghib-office-card__body li {
	overflow-wrap: anywhere;
	word-break: break-word;
}
.ghib-office-card__body li a {
	color: inherit;
}
.ghib-office-card__body li a:hover { color: #fff; }

/* Department list email links — keep contained on narrow viewports */
.ghib-contact-aside .ghib-department-list a {
	overflow-wrap: anywhere;
	word-break: break-word;
	max-width: 100%;
}
