/*
Theme Name: NENO Theme
Theme URI: https://nenobrand.com
Author: Daniel Mollel
Author URI: https://nenobrand.com
Description: Minimal luxury theme for NENO Insurance.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neno-theme
Tags: minimal, luxury, clean, one-column
*/

/* =========================================
   1. DESIGN TOKENS
   ========================================= */

:root {
	/* Brand */
	--color-brand:        #1f4d80;
	--color-brand-dark:   #163a62;
	--color-brand-light:  #e8f0f9;

	/* Neutrals */
	--color-bg:           #ffffff;
	--color-text:         #212223;
	--color-muted:        #6b7280;
	--color-border:       #e8e8e8;

	/* Footer */
	--color-footer-bg:    #0d1b2e;
	--color-footer-text:  rgba(255, 255, 255, 0.65);
	--color-footer-head:  #ffffff;
	--color-footer-border: rgba(255, 255, 255, 0.1);

	/* Accent */
	--color-accent:       #f0b429;
	--color-accent-dark:  #c8920a;

	/* Typography — Poppins only */
	--font-sans:   'Poppins', system-ui, -apple-system, sans-serif;

	/* Spacing scale */
	--space-xs:   0.5rem;
	--space-sm:   1rem;
	--space-md:   2rem;
	--space-lg:   4rem;
	--space-xl:   8rem;

	/* Layout */
	--max-width:      1200px;
	--content-width:  720px;
	--header-height:  80px;

	/* Motion */
	--ease:        cubic-bezier(0.4, 0, 0.2, 1);
	--duration-sm: 150ms;
	--duration-md: 250ms;
}


/* =========================================
   2. RESET & BASE
   ========================================= */

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

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body {
	background-color: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.7;
	overflow-x: hidden;
}

@media (max-width: 480px) {
	:root { --space-md: 1rem; }
}

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

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

ul {
	list-style: none;
}

address {
	font-style: normal;
}

button {
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	font: inherit;
}


/* =========================================
   3. LAYOUT
   ========================================= */

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-main {
	flex: 1;
}

.container {
	width: 100%;
	max-width: var(--max-width);
	margin-inline: auto;
	padding-inline: var(--space-md);
}

.container--narrow {
	max-width: var(--content-width);
}


/* =========================================
   4. HEADER
   ========================================= */

/* =========================================
   4. SITE HEADER — STICKY PILL
   ========================================= */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	transition: top 0.3s cubic-bezier(0, 0, 0.2, 1), padding 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* The pill bar */
.site-header__bar {
	max-width: 1100px;
	margin-inline: auto;
	padding-inline: 1.5rem;
	border: 1px solid transparent;
	border-radius: 0;
	background: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
	transition:
		max-width     0.35s cubic-bezier(0, 0, 0.2, 1),
		border-radius 0.35s cubic-bezier(0, 0, 0.2, 1),
		border-color  0.35s cubic-bezier(0, 0, 0.2, 1),
		box-shadow    0.35s cubic-bezier(0, 0, 0.2, 1),
		background    0.35s cubic-bezier(0, 0, 0.2, 1);
}

@media (min-width: 901px) {
	.site-header.is-scrolled {
		top: 1rem;
		padding-inline: 1.5rem;
	}

	.site-header.is-scrolled .site-header__bar {
		max-width: 960px;
		border-radius: 12px;
		border-color: var(--color-border);
		box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
		background: rgba(255, 255, 255, 0.92);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
	}
}

/* Nav row */
.site-header__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: 1.5rem;
	transition: height 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.site-header.is-scrolled .site-header__nav {
	height: 56px;
}

.site-header__logo img {
	height: 40px;
	width: auto;
	display: block;
}

/* Desktop links */
.site-header__links {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	flex: 1;
	justify-content: center;
}

.site-header__link {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--color-text);
	padding: 0.4em 0.75em;
	border-radius: 6px;
	position: relative;
	transition: color 0.2s, background 0.2s;
}

.site-header__link:hover {
	color: var(--color-brand);
	background: var(--color-brand-light);
}

.site-header__link.is-active {
	color: var(--color-brand);
	font-weight: 600;
}

.site-header__link.is-active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 16px;
	height: 2px;
	background: var(--color-brand);
	border-radius: 2px;
}

/* CTA + toggle */
.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

/* =========================================
   5. MOBILE NAV TOGGLE
   ========================================= */

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	padding: 6px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	background: transparent;
	cursor: pointer;
}

.nav-toggle__bar {
	display: block;
	width: 100%;
	height: 1.5px;
	background-color: var(--color-text);
	border-radius: 2px;
	transition:
		transform var(--duration-md) var(--ease),
		opacity   var(--duration-sm) var(--ease);
	transform-origin: center;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

/* =========================================
   6. MOBILE MENU OVERLAY
   ========================================= */

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 99;
	overflow-y: auto;
}

.mobile-menu.is-open {
	display: flex;
	flex-direction: column;
}

.mobile-menu__inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	padding: calc(var(--header-height) + 1.5rem) 1.5rem 2rem;
	animation: fadeInUp 0.2s cubic-bezier(0, 0, 0.2, 1) both;
}

.mobile-menu__links {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.mobile-menu__link {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-text);
	padding: 0.875rem 0.5rem;
	border-bottom: 1px solid var(--color-border);
	display: block;
	transition: color 0.2s;
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
	color: var(--color-brand);
}

.mobile-menu__footer {
	margin-top: 2rem;
}

@media (max-width: 900px) {
	.site-header__links,
	.site-header__cta {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}
}


/* =========================================
   7. BUTTONS
   ========================================= */

/* =========================================
   GLASS BUTTON — liquid glass base
   ========================================= */

.liquid-glass-filter-def {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	pointer-events: none;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.75em 1.75em;
	border-radius: 100px;
	border: none;
	background: transparent;
	position: relative;
	isolation: isolate;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1), color 0.3s;
	text-decoration: none;
}

/* Glass lens layer */
.btn::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: -1;
	backdrop-filter: blur(10px) url(#liquid-glass-btn) saturate(160%);
	-webkit-backdrop-filter: blur(10px) saturate(160%);
	transition: background-color 0.35s cubic-bezier(0, 0, 0.2, 1),
	            box-shadow       0.35s cubic-bezier(0, 0, 0.2, 1),
	            border-color     0.35s cubic-bezier(0, 0, 0.2, 1);
	box-shadow:
		inset 0 0 0 1px rgba(255,255,255,0.10),
		inset 1.8px 3px 0px -2px rgba(255,255,255,0.90),
		inset -2px -2px 0px -2px rgba(255,255,255,0.80),
		inset -3px -8px 1px -6px rgba(255,255,255,0.60),
		inset -0.3px -1px 4px 0px rgba(0,0,0,0.12),
		inset 0px 3px 4px -2px rgba(0,0,0,0.20),
		0px 1px 5px 0px rgba(0,0,0,0.10),
		0px 6px 16px 0px rgba(0,0,0,0.08);
}

@media (hover: hover) {
	.btn:not(:disabled):hover { transform: scale(1.04); }
}
.btn:not(:disabled):active { transform: scale(0.96); }

/* Primary — navy glass */
.btn--primary {
	color: #ffffff;
}
.btn--primary::before {
	background-color: rgba(31, 77, 128, 0.88);
}
.btn--primary:hover::before {
	background-color: rgba(22, 58, 98, 0.96);
	box-shadow:
		inset 0 0 0 1px rgba(255,255,255,0.15),
		inset 1.8px 3px 0px -2px rgba(255,255,255,0.90),
		inset -2px -2px 0px -2px rgba(255,255,255,0.80),
		0px 4px 20px rgba(31,77,128,0.4),
		0px 8px 28px rgba(0,0,0,0.12);
}

/* Outline — light glass tint */
.btn--outline {
	color: var(--color-brand);
}
.btn--outline::before {
	background-color: rgba(31, 77, 128, 0.07);
	box-shadow:
		inset 0 0 0 1px rgba(31,77,128,0.35),
		inset 1.8px 3px 0px -2px rgba(255,255,255,0.60),
		0px 2px 8px rgba(0,0,0,0.06);
}
.btn--outline:hover { color: #ffffff; }
.btn--outline:hover::before {
	background-color: rgba(31, 77, 128, 0.90);
	box-shadow:
		inset 0 0 0 1px rgba(255,255,255,0.15),
		inset 1.8px 3px 0px -2px rgba(255,255,255,0.80),
		0px 4px 20px rgba(31,77,128,0.35);
}

/* Ghost — dark-bg glass */
.btn--ghost {
	color: var(--color-footer-head);
}
.btn--ghost::before {
	background-color: rgba(255,255,255,0.06);
	box-shadow:
		inset 0 0 0 1px rgba(255,255,255,0.18),
		inset 1.8px 3px 0px -2px rgba(255,255,255,0.40),
		0px 2px 8px rgba(0,0,0,0.10);
}
.btn--ghost:hover { color: #ffffff; }
.btn--ghost:hover::before {
	background-color: rgba(31,77,128,0.88);
}

/* Ghost — light-mode override (dark navy border/text) for light-bg contexts */
:root:not([data-theme="dark"]) .ab-mission__links .btn--ghost,
:root:not([data-theme="dark"]) .prd-hero__inner .btn--ghost,
:root:not([data-theme="dark"]) .sv-hero__inner .btn--ghost,
:root:not([data-theme="dark"]) .pt-hero__inner .btn--ghost,
:root:not([data-theme="dark"]) .ab-hero__inner .btn--ghost {
	color: #1f4d80;
}
:root:not([data-theme="dark"]) .ab-mission__links .btn--ghost::before,
:root:not([data-theme="dark"]) .prd-hero__inner .btn--ghost::before,
:root:not([data-theme="dark"]) .sv-hero__inner .btn--ghost::before,
:root:not([data-theme="dark"]) .pt-hero__inner .btn--ghost::before,
:root:not([data-theme="dark"]) .ab-hero__inner .btn--ghost::before {
	background-color: transparent;
	box-shadow:
		inset 0 0 0 1.5px rgba(31,77,128,0.35),
		0px 2px 8px rgba(0,0,0,0.06);
}
:root:not([data-theme="dark"]) .ab-mission__links .btn--ghost:hover,
:root:not([data-theme="dark"]) .prd-hero__inner .btn--ghost:hover,
:root:not([data-theme="dark"]) .sv-hero__inner .btn--ghost:hover,
:root:not([data-theme="dark"]) .pt-hero__inner .btn--ghost:hover,
:root:not([data-theme="dark"]) .ab-hero__inner .btn--ghost:hover {
	color: #ffffff;
}
:root:not([data-theme="dark"]) .ab-mission__links .btn--ghost:hover::before,
:root:not([data-theme="dark"]) .prd-hero__inner .btn--ghost:hover::before,
:root:not([data-theme="dark"]) .sv-hero__inner .btn--ghost:hover::before,
:root:not([data-theme="dark"]) .pt-hero__inner .btn--ghost:hover::before,
:root:not([data-theme="dark"]) .ab-hero__inner .btn--ghost:hover::before {
	background-color: rgba(31,77,128,0.88);
	box-shadow: inset 0 0 0 1.5px transparent, 0px 4px 16px rgba(31,77,128,0.25);
}

@media (max-width: 600px) {
	.btn--primary { display: none; }
}


/* =========================================
   8. FOOTER
   ========================================= */

.site-footer {
	background-color: var(--color-footer-bg);
	color: var(--color-footer-text);
	margin-top: auto;
}

/* Main grid area */

.site-footer__main {
	padding-block: var(--space-lg);
	border-bottom: 1px solid var(--color-footer-border);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: var(--space-lg);
}

@media (max-width: 960px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-md);
	}

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

@media (max-width: 560px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-col--brand {
		grid-column: auto;
	}
}

/* Brand column */

.footer-logo img {
	height: 40px;
	width: auto;
	filter: brightness(0) invert(1);
	margin-bottom: var(--space-md);
}

.footer-tagline {
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--color-footer-text);
	max-width: 300px;
	margin-bottom: var(--space-md);
}

/* Social icons */

.footer-social {
	display: flex;
	gap: var(--space-sm);
}

.footer-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--color-footer-border);
	border-radius: 50%;
	color: var(--color-footer-text);
	transition:
		color            var(--duration-sm) var(--ease),
		border-color     var(--duration-sm) var(--ease),
		background-color var(--duration-sm) var(--ease);
}

.footer-social__link:hover {
	color: #ffffff;
	border-color: var(--color-brand);
	background-color: var(--color-brand);
}

/* Footer columns */

.footer-col__heading {
	font-family: var(--font-sans);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-footer-head);
	margin-bottom: 1.25rem;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-col a {
	font-size: 0.875rem;
	color: var(--color-footer-text);
	transition: color var(--duration-sm) var(--ease);
}

.footer-col a:hover {
	color: #ffffff;
}

/* Contact address */

.footer-address {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-address p {
	font-size: 0.875rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.footer-address__label {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-footer-head);
}

.footer-address a {
	color: var(--color-footer-text);
	transition: color var(--duration-sm) var(--ease);
}

.footer-address a:hover {
	color: #ffffff;
}

/* Bottom bar */

.site-footer__bottom {
	padding-block: var(--space-md);
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	flex-wrap: wrap;
}

.site-footer__copy {
	font-size: 0.8125rem;
	color: var(--color-footer-text);
}

.footer-legal-nav {
	display: flex;
	gap: var(--space-md);
}

.footer-legal-nav a {
	font-size: 0.8125rem;
	color: var(--color-footer-text);
	transition: color var(--duration-sm) var(--ease);
}

.footer-legal-nav a:hover {
	color: #ffffff;
}

@media (max-width: 480px) {
	.site-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}


/* =========================================
   9. TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-sans);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--color-text);
}

h1 { font-size: clamp(2rem,   5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p + p {
	margin-top: var(--space-sm);
}

strong {
	font-weight: 600;
}

/* =========================================
   10. PAGE CONTENT
   ========================================= */

.entry {
	padding-block: var(--space-xl);
}

.entry-header {
	margin-bottom: var(--space-lg);
}

.entry-title {
	font-family: var(--font-sans);
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 300;
	letter-spacing: 0.04em;
	line-height: 1.1;
}

.entry-content {
	font-size: 1rem;
	line-height: 1.85;
}

.entry-content > * + * {
	margin-top: var(--space-sm);
}


/* =========================================
   11. ANIMATIONS & SCROLL REVEAL
   ========================================= */

@keyframes gradientShift {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes floatUp {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-18px); }
}

@keyframes pulseGlow {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50%       { opacity: 1;   transform: scale(1.08); }
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(40px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
	from { opacity: 0; transform: translateX(50px); }
	to   { opacity: 1; transform: translateX(0); }
}

@keyframes rotateSlow {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

@keyframes iconFloat1 {
	0%, 100% { transform: translateY(0)     rotate(0deg); }
	33%       { transform: translateY(-22px) rotate(9deg); }
	66%       { transform: translateY(11px)  rotate(-6deg); }
}

@keyframes iconFloat2 {
	0%, 100% { transform: translateY(0)     rotate(0deg)   scale(1); }
	50%       { transform: translateY(-26px) rotate(-11deg) scale(1.06); }
}

@keyframes iconFloat3 {
	0%, 100% { transform: translate(0, 0)         rotate(0deg); }
	25%       { transform: translate(11px, -16px)  rotate(6deg); }
	75%       { transform: translate(-8px, 13px)   rotate(-9deg); }
}

[data-reveal] {
	opacity: 0;
	transform: translateY(40px);
	will-change: transform, opacity;
	transition: opacity 0.75s cubic-bezier(0, 0, 0.2, 1),
	            transform 0.75s cubic-bezier(0, 0, 0.2, 1);
}

[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(0.9); }

[data-reveal].is-visible,
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="scale"].is-visible { opacity: 1; transform: none; }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }


/* =========================================
   12. HOMEPAGE — SHARED ELEMENTS
   ========================================= */

.hp-tag {
	display: inline-flex;
	align-items: center;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.hp-tag--light {
	color: var(--color-accent);
}

.hp-tag--dark {
	color: var(--color-brand);
}

.hp-tag::before {
	display: none;
}

.hp-section-title {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin-bottom: 1rem;
	color: #1f4d80;
}

.hp-section-title span {
	color: #f0b429;
}

.hp-section-sub {
	font-size: 1rem;
	color: var(--color-muted);
	line-height: 1.75;
}

.hp-section-head {
	margin-bottom: var(--space-lg);
}

.hp-section-head--center {
	text-align: center;
	max-width: 600px;
	margin-inline: auto;
	margin-bottom: var(--space-lg);
}

.hp-gradient-line {
	display: none;
}

.hp-section-head--center .hp-gradient-line,
.sv-hero__inner .hp-gradient-line,
.sv-cta__inner .hp-gradient-line,
.prd-hero__inner .hp-gradient-line,
.ab-hero__inner .hp-gradient-line {
	margin-inline: auto;
}


/* =========================================
   13. HOMEPAGE — HERO
   ========================================= */

.hp-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: linear-gradient(-45deg, #060f25, #0b1f47, #122a60, #1a3b78);
	background-size: 400% 400%;
	animation: gradientShift 18s ease infinite;
	overflow: hidden;
}

.hp-hero__orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(60px);
	will-change: transform, opacity;
	transform: translateZ(0);
}

.hp-hero__orb--1 {
	width: 600px;
	height: 600px;
	top: -200px;
	right: -100px;
	background: radial-gradient(circle, rgba(31, 77, 128, 0.18) 0%, transparent 70%);
	animation: pulseGlow 8s ease-in-out infinite;
}

.hp-hero__orb--2 {
	width: 400px;
	height: 400px;
	bottom: -150px;
	left: -80px;
	background: radial-gradient(circle, rgba(240, 180, 41, 0.07) 0%, transparent 70%);
	animation: pulseGlow 10s ease-in-out infinite 2s;
}

.hp-hero__orb--3 {
	display: none;
}

.hp-hero__body {
	flex: 1;
	display: flex;
	align-items: center;
}

.hp-hero__inner {
	display: grid;
	grid-template-columns: 55% 45%;
	align-items: flex-end;
	gap: 3rem;
	padding-top: 5rem;
	padding-bottom: 0;
	width: 100%;
}

.hp-hero__content {
	position: relative;
	z-index: 2;
	padding-bottom: 5rem;
}

.hp-hero__badge {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 2rem;
	animation: fadeInUp 0.8s cubic-bezier(0, 0, 0.2, 1) both;
}

.hp-hero__badge-text {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #ffffff;
}

.hero-wave-wrap {
	position: relative;
	height: 1px;
	width: 316px;
}

.hero-wave-hit {
	position: relative;
	top: -20px;
	z-index: 10;
	height: 40px;
	width: 100%;
	cursor: default;
}

.hero-wave-svg {
	position: absolute;
	top: -50px;
	height: 100px;
	width: 100%;
	overflow: visible;
}

.hero-wave-path {
	stroke: var(--color-accent);
}

.hp-hero__heading {
	font-size: clamp(3rem, 6vw, 5.25rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.03em;
	color: #ffffff;
	margin-bottom: 1.75rem;
	animation: fadeInUp 0.8s 0.12s cubic-bezier(0, 0, 0.2, 1) both;
}

.hp-hero__heading .accent {
	color: #f0b429;
}

.hp-hero__sub {
	font-size: 1.0625rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.8;
	max-width: 460px;
	margin-bottom: 2.5rem;
	animation: fadeInUp 0.8s 0.24s cubic-bezier(0, 0, 0.2, 1) both;
}

.hp-hero__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s 0.36s cubic-bezier(0, 0, 0.2, 1) both;
}

/* Hero primary — amber glass */
.btn--hero-primary {
	color: #0a1628;
	font-weight: 800;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	padding: 1em 2.5em;
}
.btn--hero-primary::before {
	background-color: rgba(240, 180, 41, 0.92);
	box-shadow:
		inset 0 0 0 1px rgba(255,255,255,0.20),
		inset 1.8px 3px 0px -2px rgba(255,255,255,0.90),
		0px 4px 20px rgba(240,180,41,0.40),
		0px 8px 28px rgba(0,0,0,0.10);
}
.btn--hero-primary:hover::before {
	background-color: rgba(249, 212, 85, 0.96);
	box-shadow:
		inset 0 0 0 1px rgba(255,255,255,0.25),
		inset 1.8px 3px 0px -2px rgba(255,255,255,0.90),
		0px 8px 32px rgba(240,180,41,0.60),
		0px 12px 36px rgba(0,0,0,0.12);
}

/* Hero ghost — white glass on dark bg */
.btn--hero-ghost {
	color: rgba(255, 255, 255, 0.88);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	padding: 1em 2.5em;
}
.btn--hero-ghost::before {
	background-color: rgba(255, 255, 255, 0.08);
	box-shadow:
		inset 0 0 0 1.5px rgba(255,255,255,0.22),
		inset 1.8px 3px 0px -2px rgba(255,255,255,0.40),
		0px 2px 8px rgba(0,0,0,0.12);
}
.btn--hero-ghost:hover { color: #ffffff; }
.btn--hero-ghost:hover::before {
	background-color: rgba(255, 255, 255, 0.15);
	box-shadow:
		inset 0 0 0 1.5px rgba(255,255,255,0.50),
		inset 1.8px 3px 0px -2px rgba(255,255,255,0.60),
		0px 4px 16px rgba(0,0,0,0.15);
}

/* Hero visual */

.hp-hero__visual {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-self: flex-end;
	animation: fadeInRight 1s 0.2s cubic-bezier(0, 0, 0.2, 1) both;
}

.hp-hero__glow-ring {
	position: absolute;
	width: 540px;
	height: 260px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at 50% 100%, rgba(26, 59, 120, 0.7) 0%, transparent 70%);
	pointer-events: none;
}

.hp-hero__img-frame {
	position: relative;
	width: 552px;
	animation: floatUp 7s ease-in-out infinite;
	mask-image: linear-gradient(to bottom, black 55%, transparent 94%);
	-webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 94%);
}

.hp-hero__img-frame img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

/* Floating background icons */

.hp-hero__icons {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.hp-hero__icon {
	position: absolute;
	color: #ffffff;
	opacity: 0.155;
}

.hp-hero__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.hp-hero__icon--1 { width: 78px;  top: 12%;  left: 6%;   animation: iconFloat1 12s ease-in-out infinite; }
.hp-hero__icon--2 { width: 56px;  top: 62%;  left: 13%;  animation: iconFloat2 15s ease-in-out infinite 2s; }
.hp-hero__icon--3 { width: 68px;  top: 22%;  right: 6%;  animation: iconFloat3 10s ease-in-out infinite 4s; }
.hp-hero__icon--4 { width: 48px;  top: 68%;  right: 10%; animation: iconFloat1 13s ease-in-out infinite 1s; }
.hp-hero__icon--5 { width: 88px;  top: 42%;  left: 3%;   animation: iconFloat2 11s ease-in-out infinite 3s; }
.hp-hero__icon--6 { width: 62px;  top: 8%;   left: 42%;  animation: iconFloat3 14s ease-in-out infinite 5s; }

/* Hero shield decorations */

@keyframes shieldFloat {
	0%, 100% { transform: translateY(0)     rotate(-2deg); }
	33%       { transform: translateY(-16px) rotate(2.5deg); }
	66%       { transform: translateY(8px)   rotate(-1deg); }
}

.hp-hero__shield-r {
	position: absolute;
	top: 8px;
	right: -16px;
	width: 175px;
	z-index: 3;
	pointer-events: none;
	animation: shieldFloat 6s ease-in-out infinite;
	filter: drop-shadow(0 14px 32px rgba(240, 180, 41, 0.38))
	        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.hp-hero__shield-r img {
	width: 100%;
	height: auto;
	display: block;
}

.hp-hero__shield-l {
	position: absolute;
	top: 8%;
	right: -30px;
	width: 200px;
	z-index: 0;
	pointer-events: none;
	opacity: 0.15;
	animation: shieldFloat 9s ease-in-out infinite 3s;
}

.hp-hero__shield-l img {
	width: 100%;
	height: auto;
	display: block;
	transform: scaleX(-1);
}

/* Hero stats bar */

.hp-hero__statsbar {
	position: relative;
	z-index: 2;
	background: #ffffff;
	box-shadow: 0 -10px 48px rgba(6, 15, 37, 0.28);
}

.hp-hero__statsbar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #f0b429;
}

.hp-statsbar-inner {
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.hp-stat-item {
	flex: 1;
	text-align: center;
	padding: 2.25rem 2rem;
	border-right: 1px solid rgba(31, 77, 128, 0.08);
	max-width: 220px;
	position: relative;
	overflow: hidden;
	transition: background 0.3s ease;
	animation: fadeInUp 0.55s cubic-bezier(0, 0, 0.2, 1) both;
}

.hp-stat-item:nth-child(1) { animation-delay: 0.05s; }
.hp-stat-item:nth-child(2) { animation-delay: 0.15s; }
.hp-stat-item:nth-child(3) { animation-delay: 0.25s; }
.hp-stat-item:nth-child(4) { animation-delay: 0.35s; }

.hp-stat-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 36px;
	height: 2px;
	background: var(--color-accent);
	border-radius: 2px;
	transform: translateX(-50%) scaleX(0);
	transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.hp-stat-item:hover {
	background: rgba(31, 77, 128, 0.03);
}

.hp-stat-item:hover::after {
	transform: translateX(-50%) scaleX(1);
}

.hp-stat-item:last-child {
	border-right: none;
}

.hp-stat-item__num {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #1f4d80;
	line-height: 1;
	margin-bottom: 0.45rem;
}

.hp-stat-item__num em {
	font-style: normal;
}

.hp-stat-item__label {
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #6b7a99;
}

@media (max-width: 900px) {
	.hp-hero__inner {
		grid-template-columns: 1fr;
		padding-top: 4rem;
		padding-bottom: 0;
		text-align: center;
	}

	.hp-hero__content {
		padding-bottom: 2rem;
	}

	.hp-hero__sub {
		max-width: 100%;
	}

	.hp-hero__actions {
		justify-content: center;
	}

	.hp-hero__visual {
		order: -1;
		align-self: auto;
	}

	.hp-hero__img-frame {
		width: 336px;
	}
}

@media (max-width: 560px) {
	.hp-statsbar-inner {
		flex-wrap: wrap;
	}

	.hp-stat-item {
		flex: 1 1 50%;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		max-width: none;
	}

	.hp-stat-item:nth-child(odd) {
		border-right: 1px solid rgba(255, 255, 255, 0.06);
	}
}


/* =========================================
   14. HOMEPAGE — SERVICES
   ========================================= */

.hp-services {
	padding-block: var(--space-xl);
	background: linear-gradient(-45deg, #060f25, #0b1f47, #122a60, #1a3b78);
	background-size: 400% 400%;
	animation: gradientShift 18s ease infinite 9s;
}

.hp-services .hp-tag--dark         { color: var(--color-accent); }
.hp-services .hp-gradient-line     { background: var(--color-accent); }
.hp-services .hp-section-title     { color: #ffffff; }
.hp-services .hp-section-title span { color: #f0b429; }
.hp-services .hp-section-sub       { color: rgba(255, 255, 255, 0.52); }

.hp-services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.hp-service-card--featured {
	grid-column: span 2;
}

.hp-service-card--featured .hp-service-card__img {
	height: 260px;
}

.hp-service-card--featured .hp-service-card__title {
	font-size: 1.25rem;
}

@keyframes cardGoldBreathe {
	0%, 100% {
		border-color: rgba(240, 180, 41, 0.55);
		box-shadow: 0 0 16px rgba(240, 180, 41, 0.2),
		            0 20px 50px rgba(0, 0, 0, 0.45);
	}
	50% {
		border-color: rgba(240, 180, 41, 0.95);
		box-shadow: 0 0 32px rgba(240, 180, 41, 0.55),
		            0 0 60px rgba(240, 180, 41, 0.15),
		            0 28px 60px rgba(0, 0, 0, 0.45);
	}
}

.hp-service-card {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 20px;
	overflow: hidden;
	will-change: transform;
	transition: transform 0.35s cubic-bezier(0, 0, 0.2, 1),
	            background 0.3s ease;
}

.hp-service-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.45s cubic-bezier(0, 0, 0.2, 1);
	z-index: 2;
}

.hp-service-card:hover {
	background: rgba(255, 255, 255, 0.09);
	animation: cardGoldBreathe 2.6s ease-in-out infinite;
}

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

.hp-service-card__img {
	height: 210px;
	overflow: hidden;
	position: relative;
}

.hp-service-card__img::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(to top, rgba(6, 12, 28, 0.85), transparent);
	pointer-events: none;
	z-index: 1;
}

.hp-service-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
	transition: transform 0.55s cubic-bezier(0, 0, 0.2, 1),
	            filter 0.55s ease;
}

.hp-service-card:hover .hp-service-card__img img {
	transform: scale(1.08);
	filter: brightness(1.1);
}

.hp-service-card__badge {
	position: absolute;
	top: 0.875rem;
	left: 0.875rem;
	background: rgba(240, 180, 41, 0.15);
	border: 1px solid rgba(240, 180, 41, 0.35);
	border-radius: 100px;
	padding: 0.3em 0.9em;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-accent);
	z-index: 2;
}

.hp-service-card__body {
	padding: 1.6rem 1.75rem 1.75rem;
}

.hp-service-card__title {
	font-size: 1.075rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.55rem;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.hp-service-card__text {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.72;
	margin-bottom: 1.25rem;
}

.hp-service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--color-accent);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: gap 0.25s ease, opacity 0.25s ease;
}

.hp-service-card__link::after {
	content: '\2192';
	font-size: 1rem;
	transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1);
}

.hp-service-card:hover .hp-service-card__link {
	gap: 0.75rem;
	opacity: 0.9;
}

.hp-service-card:hover .hp-service-card__link::after {
	transform: translateX(5px);
}

@media (max-width: 960px) {
	.hp-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hp-service-card--featured {
		grid-column: span 1;
	}
	.hp-service-card--featured .hp-service-card__img {
		height: 200px;
	}
}

@media (max-width: 540px) {
	.hp-services-grid {
		grid-template-columns: 1fr;
	}
}


/* =========================================
   14b. HOMEPAGE — HOW IT WORKS
   ========================================= */

.hp-process {
	padding-block: var(--space-xl);
	background: linear-gradient(160deg, #f8faff 0%, #eef2ff 60%, #e0e8f9 100%);
}

.hp-process__steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	margin-top: var(--space-lg);
}

.hp-process__step {
	flex: 1;
	max-width: 260px;
	text-align: center;
	padding: 2rem 1.5rem;
	position: relative;
	overflow: hidden;
	will-change: transform;
	transition: transform 0.2s ease-out;
}

.hp-process__step:hover {
	/* transform handled by tilt JS */
}

.hp-process__num {
	display: none;
}

.hp-process__icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #1e4da8 0%, #0f2558 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	box-shadow: 0 12px 32px rgba(15, 37, 88, 0.35);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hp-process__step:hover .hp-process__icon {
	box-shadow: 0 18px 44px rgba(15, 37, 88, 0.45);
	transform: scale(1.06);
}

.hp-process__icon svg {
	width: 32px;
	height: 32px;
	stroke: #ffffff;
	fill: none;
}

.hp-process__step h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-heading);
	margin-bottom: 0.6rem;
}

.hp-process__step p {
	font-size: 0.875rem;
	color: var(--color-muted);
	line-height: 1.75;
}

.hp-process__arrow {
	display: none;
}

/* ── Process tracker ── */
.hp-process__tracker {
	max-width: 560px;
	margin: 2rem auto 2.5rem;
	position: relative;
	user-select: none;
}

.hp-process__track-nodes {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	z-index: 2;
	padding-bottom: 0.5rem;
}

.hp-process__track-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	cursor: default;
}

.hp-process__track-nlbl {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--color-muted);
	transition: color 0.3s ease, opacity 0.3s ease;
	opacity: 0.5;
}

.hp-process__track-ndot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid var(--color-muted);
	background: var(--color-bg);
	transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.hp-process__track-node.is-active .hp-process__track-nlbl {
	color: #f0b429;
	opacity: 1;
}

.hp-process__track-node.is-active .hp-process__track-ndot {
	border-color: #f0b429;
	background: #f0b429;
	box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.22);
	transform: scale(1.2);
}

.hp-process__track-line {
	position: relative;
	height: 4px;
	border-radius: 2px;
	background: rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin: 0 8px;
}

.hp-process__track-fill {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0%;
	border-radius: 2px;
	background: linear-gradient(90deg, #1f4d80 0%, #f0b429 100%);
	transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Step card active state */
.hp-process__step {
	border-radius: 16px;
	border: 1.5px solid transparent;
	background: transparent;
	transition: border-color 0.35s ease, background 0.35s ease, transform 0.2s ease-out;
}

.hp-process__step.is-active {
	border-color: rgba(240, 180, 41, 0.35);
	background: rgba(240, 180, 41, 0.05);
}

.hp-process__step.is-active .hp-process__icon {
	box-shadow: 0 18px 44px rgba(15, 37, 88, 0.45), 0 0 0 4px rgba(240, 180, 41, 0.3);
}

/* TIRA certification seal — absolute, overlaps hero visual */
.hp-hero__tira-seal {
	position: absolute;
	bottom: 1.5rem;
	left: -80px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.6rem 1rem 0.6rem 0.6rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), 0 0 0 3px rgba(240, 180, 41, 0.25);
	animation: sealFloat 6s ease-in-out infinite 1s;
	z-index: 10;
}

@keyframes sealFloat {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-5px); }
}

.hp-hero__tira-seal img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: contain;
	flex-shrink: 0;
	filter: drop-shadow(0 2px 8px rgba(240, 180, 41, 0.4));
}

.hp-hero__tira-seal__text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.hp-hero__tira-seal__text strong {
	font-size: 0.8rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.2;
}

.hp-hero__tira-seal__text span {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.45;
	max-width: 140px;
}

.tira-short { display: none; }

@keyframes sealFloatMobile {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50%       { transform: translateX(-50%) translateY(-5px); }
}

/* Footer TIRA badge */
.footer-tira {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin: 1.25rem 0;
}

.footer-tira img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	flex-shrink: 0;
	opacity: 0.85;
}

.footer-tira span {
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.4;
	max-width: 160px;
}

/* CTA form */
.hp-cta__form {
	width: 100%;
	max-width: 560px;
	position: relative;
	overflow: hidden;
}

.hp-cta__form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.hp-cta__form input,
.hp-cta__form select {
	flex: 1 1 140px;
	padding: 0.85rem 1rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-family: var(--font-sans);
	font-size: 0.8rem;
	backdrop-filter: blur(8px);
	transition: border-color 0.2s ease, background 0.2s ease;
	-webkit-appearance: none;
}

.hp-cta__form input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.hp-cta__form select {
	cursor: pointer;
	color: rgba(255, 255, 255, 0.5);
}

.hp-cta__form select option {
	color: #1e293b;
	background: #fff;
}

.hp-cta__form input:focus,
.hp-cta__form select:focus {
	outline: none;
	border-color: var(--color-gold);
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.hp-cta__form .btn {
	white-space: nowrap;
	flex-shrink: 0;
	align-self: flex-start;
}

.hp-cta__form-row--full {
	margin-top: 0.65rem;
}

.hp-cta__form textarea {
	flex: 1 1 100%;
	width: 100%;
	padding: 0.85rem 1rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-family: var(--font-sans);
	font-size: 0.8rem;
	backdrop-filter: blur(8px);
	transition: border-color 0.2s ease, background 0.2s ease;
	resize: vertical;
}

.hp-cta__form textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.hp-cta__form textarea:focus {
	outline: none;
	border-color: var(--color-accent);
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

/* WhatsApp FAB — icon only */
.hp-wa-fab {
	position: fixed;
	bottom: 5rem;
	right: 1.75rem;
	z-index: 9000;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #128C7E;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 18px rgba(18, 140, 126, 0.55);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-wa-fab svg {
	width: 26px;
	height: 26px;
}

.hp-wa-fab:hover {
	transform: translateY(-3px) scale(1.08);
	box-shadow: 0 10px 32px rgba(18, 140, 126, 0.65);
	color: #fff;
}

/* Back to top */
.back-to-top {
	position: fixed;
	bottom: 1.75rem;
	right: 1.75rem;
	z-index: 9000;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #1e4da8;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.55);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow:
		0 4px 16px rgba(0, 0, 0, 0.28),
		0 0 0 4px rgba(30, 77, 168, 0.18);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease, box-shadow 0.25s ease;
	pointer-events: none;
}

.back-to-top.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.back-to-top:hover {
	background: #f0b429;
	color: #0f2558;
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow:
		0 8px 24px rgba(240, 180, 41, 0.45),
		0 0 0 4px rgba(240, 180, 41, 0.2);
}

.back-to-top svg {
	width: 18px;
	height: 18px;
	stroke-width: 3;
}

/* Cookie notice */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9500;
	background: #0f1c35;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 1rem 1.5rem;
	transform: translateY(0);
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-notice.is-hiding {
	transform: translateY(100%);
	opacity: 0;
}

.cookie-notice[hidden] {
	display: none;
}

.cookie-notice__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.cookie-notice__inner p {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
	line-height: 1.6;
}

.cookie-notice__inner a {
	color: var(--color-gold);
	text-decoration: underline;
}

.cookie-notice__actions {
	display: flex;
	gap: 0.75rem;
	flex-shrink: 0;
}

.cookie-notice__accept {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-accent);
	color: #0d1b2e;
	border: none;
	border-radius: 100px;
	padding: 0.6em 1.75em;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	white-space: nowrap;
}

.cookie-notice__decline {
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.45);
	padding: 0.5rem 0.75rem;
	transition: color 0.2s;
}

.cookie-notice__decline:hover {
	color: rgba(255, 255, 255, 0.8);
}

/* Smooth scroll */
html {
	scroll-behavior: smooth;
}

@media (max-width: 600px) {
	.hp-process__steps { flex-direction: column; align-items: center; }
	.hp-process__tracker { display: none; }
	.hp-cta__form input,
	.hp-cta__form select,
	.hp-cta__form textarea { flex: 1 1 100%; width: 100%; }
	.hp-cta__form-row--full { flex-direction: column; }
	.hp-cta__form-row--full .btn { width: 100%; justify-content: center; }
	/* TIRA seal — centered, 40% smaller */
	.hp-hero__tira-seal {
		left: 50%;
		transform: translateX(-50%);
		bottom: 1rem;
		padding: 0.36rem 0.6rem 0.36rem 0.36rem;
		gap: 0.45rem;
		border-radius: 10px;
		animation: sealFloatMobile 6s ease-in-out infinite 1s;
	}
	.hp-hero__tira-seal img { width: 38px; height: 38px; }
	.hp-hero__tira-seal__text strong { font-size: 0.48rem; }
	.hp-hero__tira-seal__text span { font-size: 0.42rem; max-width: 84px; }

	/* Show short label, hide long on mobile */
	.tira-full { display: none; }
	.tira-short { display: block; }

	/* Badge + wave line — centered on mobile */
	.hp-hero__badge { align-items: center; }
	.hero-wave-wrap { margin-inline: auto; }
	.cookie-notice__inner { flex-direction: column; align-items: flex-start; }
	.cookie-notice__actions { flex-direction: column; align-items: stretch; width: 100%; }
	.cookie-notice__actions .btn { width: 100%; justify-content: center; }
	.cookie-notice__decline { text-align: center; }
}


/* =========================================
   15. HOMEPAGE — ABOUT
   ========================================= */

.hp-about {
	padding-block: var(--space-xl);
	background: linear-gradient(160deg, #f0f4ff 0%, #e8eef8 50%, #f5f7fa 100%);
}

.hp-about__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

/* Image */
.hp-about__img-wrap {
	position: relative;
}

.hp-about__img-wrap::before {
	content: '';
	position: absolute;
	inset: -12px auto 12px -12px;
	right: 12px;
	border-radius: 20px;
	background: linear-gradient(135deg, #1f4d80 0%, #0f2558 100%);
	opacity: 0.12;
	z-index: 0;
}

.hp-about__img-wrap::after {
	content: '';
	position: absolute;
	bottom: -8px;
	right: -8px;
	width: 60%;
	height: 40%;
	border-radius: 16px;
	background: linear-gradient(135deg, #f0b429 0%, #e09a1a 100%);
	opacity: 0.15;
	z-index: 0;
}

.hp-about__img-wrap img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 16px;
	display: block;
	box-shadow: 0 24px 64px rgba(15, 37, 88, 0.18), 0 4px 16px rgba(15, 37, 88, 0.1);
}

/* Floating TIRA badge */
.hp-about__badge {
	position: absolute;
	bottom: 24px;
	right: -20px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: #ffffff;
	border-radius: 14px;
	padding: 0.7rem 1.1rem;
	box-shadow: 0 8px 32px rgba(15, 37, 88, 0.18), 0 2px 8px rgba(15, 37, 88, 0.08);
	border: 1px solid rgba(31, 77, 128, 0.08);
}

.hp-about__badge > svg {
	flex-shrink: 0;
	color: #f0b429;
	stroke: #f0b429;
}

.hp-about__badge-text {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.hp-about__badge-text strong {
	font-size: 0.8rem;
	font-weight: 700;
	color: #1f4d80;
	line-height: 1.2;
}

.hp-about__badge-text span {
	font-size: 0.68rem;
	color: #7a96b8;
	letter-spacing: 0.02em;
}

/* Content */
.hp-about__content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: flex-start;
}

.hp-about__content .hp-section-title {
	color: var(--color-text);
}

.hp-about__text {
	font-size: 1rem;
	color: var(--color-muted);
	line-height: 1.85;
}

/* Stat strip */
.hp-about__stats {
	display: flex;
	gap: 0;
	width: 100%;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(31, 77, 128, 0.12);
}

.hp-about__stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem 0.75rem;
	text-align: center;
	background: rgba(255, 255, 255, 0.7);
	border-right: 1px solid rgba(31, 77, 128, 0.1);
}

.hp-about__stat:last-child {
	border-right: none;
}

.hp-about__stat strong {
	font-size: 1.5rem;
	font-weight: 800;
	color: #1f4d80;
	line-height: 1;
	margin-bottom: 0.3rem;
}

.hp-about__stat span {
	font-size: 0.7rem;
	color: var(--color-muted);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-weight: 500;
}

/* Feature list with checkmarks */
.hp-about__list {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	width: 100%;
	list-style: none;
}

.hp-about__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9375rem;
	color: var(--color-text);
	line-height: 1.55;
	padding: 0.65rem 0.85rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(31, 77, 128, 0.08);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.hp-about__list li:hover {
	background: rgba(255, 255, 255, 0.95);
	border-color: rgba(240, 180, 41, 0.35);
}

.hp-about__list li svg {
	flex-shrink: 0;
	margin-top: 0.18em;
	color: #f0b429;
	stroke: #f0b429;
}

@media (max-width: 860px) {
	.hp-about__inner {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.hp-about__img-wrap::before,
	.hp-about__img-wrap::after {
		display: none;
	}

	.hp-about__badge {
		right: 12px;
		bottom: 12px;
	}
}


/* =========================================
   16. HOMEPAGE — PARTNERS
   ========================================= */

.hp-partners {
	padding-block: var(--space-lg);
	background: #ffffff;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.hp-clients {
	padding-block: var(--space-lg);
	background: #f5f7fa;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

/* Shared hover-brand layout */
.brand-hover-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
}

@media (min-width: 640px) {
	.brand-hover-row {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 3rem;
	}
}

/* Left label */
.brand-hover-label {
	flex-shrink: 0;
	min-width: 180px;
}

.brand-hover-sublabel {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--color-muted);
	letter-spacing: 0.04em;
	margin-bottom: 0.2rem;
}

.brand-hover-title-wrap {
	position: relative;
}

.brand-hover-placeholder {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	opacity: 0;
	pointer-events: none;
	user-select: none;
	line-height: 1.2;
	max-width: 220px;
}

.brand-hover-clip {
	position: absolute;
	inset: 0;
	overflow: visible;
}

.brand-hover-name {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--color-text);
	line-height: 1.2;
	max-width: 220px;
}

/* Right logo grid */
.brand-hover-grid {
	display: grid;
	grid-template-columns: repeat(4, auto);
	gap: 0.375rem;
	align-items: center;
	justify-items: center;
}

@media (min-width: 640px) {
	.brand-hover-grid {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-end;
		gap: 0.375rem;
	}
}

.brand-hover-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 72px;
	padding: 0.625rem 0.875rem;
	border-radius: 8px;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, opacity 0.2s;
	overflow: hidden;
}

.brand-hover-btn img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	filter: grayscale(1);
	opacity: 0.35;
	mix-blend-mode: multiply;
	transition: filter 0.2s, opacity 0.2s;
	display: block;
}

.brand-hover-btn.is-active {
	border-color: rgba(31, 77, 128, 0.25);
	background: rgba(31, 77, 128, 0.04);
}

.brand-hover-btn.is-active img {
	filter: grayscale(0);
	opacity: 1;
}

.brand-hover-btn.is-dimmed {
	opacity: 0.4;
}

.brand-hover-btn:hover {
	border-color: rgba(31, 77, 128, 0.25);
	background: rgba(31, 77, 128, 0.04);
}

.brand-hover-btn:hover img {
	filter: grayscale(0);
	opacity: 1;
	mix-blend-mode: normal;
}


/* =========================================
   18. HOMEPAGE — CTA BANNER
   ========================================= */

.hp-cta {
	position: relative;
	padding-block: 7rem;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	overflow: hidden;
}

.hp-cta__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg,
		rgba(4, 13, 28, 0.92) 0%,
		rgba(15, 36, 71, 0.88) 50%,
		rgba(31, 77, 128, 0.82) 100%);
}

.hp-cta .container {
	position: relative;
	z-index: 1;
}

.hp-cta__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.hp-cta__text h2 {
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin-bottom: 0.6rem;
}

.hp-cta__text h2 span {
	color: var(--color-accent);
}

.hp-cta__text p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
}

@media (max-width: 640px) {
	.hp-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.hp-cta {
		background-attachment: scroll;
		padding-block: 5rem;
	}
}

.section-label {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-brand);
	margin-bottom: 0.75rem;
}

.section-header {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
	margin-bottom: var(--space-lg);
}

.section-title {
	font-family: var(--font-sans);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 400;
	letter-spacing: 0.02em;
	margin-bottom: 0.75rem;
}

.section-desc {
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.75;
}


/* =========================================
   12. HOMEPAGE — HERO
   ========================================= */

.hero {
	padding-block: var(--space-xl);
	background-color: var(--color-bg);
	overflow: hidden;
}

.hero__inner {
	display: grid;
	grid-template-columns: 55% 45%;
	align-items: center;
	gap: var(--space-lg);
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
}

.hero__heading {
	font-family: var(--font-sans);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 300;
	line-height: 1.08;
	letter-spacing: 0.02em;
	color: var(--color-text);
}

.hero__text {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--color-muted);
	max-width: 480px;
}

.hero__actions {
	display: flex;
	gap: var(--space-sm);
	flex-wrap: wrap;
}

.btn--outline-dark {
	background-color: transparent;
	color: var(--color-text);
	border: 1px solid var(--color-border);
}

.btn--outline-dark:hover {
	background-color: var(--color-text);
	color: #ffffff;
	border-color: var(--color-text);
}

.hero__stats {
	display: flex;
	gap: var(--space-lg);
	padding-top: var(--space-md);
	border-top: 1px solid var(--color-border);
	width: 100%;
}

.hero__stat strong {
	display: block;
	font-family: var(--font-sans);
	font-size: 2.25rem;
	font-weight: 400;
	color: var(--color-brand);
	line-height: 1;
	margin-bottom: 0.2rem;
}

.hero__stat span {
	font-size: 0.6875rem;
	color: var(--color-muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero__visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero__visual::before {
	content: '';
	position: absolute;
	width: 88%;
	aspect-ratio: 1;
	border-radius: 50%;
	background-color: var(--color-brand-light);
	z-index: 0;
}

.hero__image {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 520px;
	height: auto;
	display: block;
}

@media (max-width: 768px) {
	.hero__inner {
		grid-template-columns: 1fr;
	}

	.hero__visual {
		order: -1;
		max-width: 300px;
		margin-inline: auto;
	}

	.hero__stats {
		gap: var(--space-md);
	}

	.hero__stat strong {
		font-size: 1.75rem;
	}
}


/* =========================================
   13. HOMEPAGE — SERVICES
   ========================================= */

.services-section {
	padding-block: var(--space-xl);
	background-color: #f8f8f8;
}

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

.service-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 3px;
	overflow: hidden;
	transition:
		transform  var(--duration-md) var(--ease),
		box-shadow var(--duration-md) var(--ease);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.service-card__image {
	height: 210px;
	overflow: hidden;
}

.service-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--duration-md) var(--ease);
}

.service-card:hover .service-card__image img {
	transform: scale(1.05);
}

.service-card__body {
	padding: 1.5rem;
}

.service-card__title {
	font-family: var(--font-sans);
	font-size: 1.25rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
	color: var(--color-text);
}

.service-card__text {
	font-size: 0.875rem;
	color: var(--color-muted);
	line-height: 1.65;
	margin-bottom: 1.25rem;
}

.service-card__link {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--color-brand);
	transition: opacity var(--duration-sm) var(--ease);
}

.service-card__link:hover {
	opacity: 0.7;
}

@media (max-width: 900px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 540px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}


/* =========================================
   14. HOMEPAGE — ABOUT
   ========================================= */

.about-section {
	padding-block: var(--space-xl);
}

.about-section__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
	align-items: center;
}

.about-section__image {
	border-radius: 3px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.about-section__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-section__content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: flex-start;
}

.about-section__content h2 {
	font-family: var(--font-sans);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 400;
	line-height: 1.15;
}

.about-section__content > p {
	font-size: 1rem;
	color: var(--color-muted);
	line-height: 1.8;
}

.about-section__list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.about-section__list li {
	font-size: 0.9375rem;
	color: var(--color-text);
	padding-left: 1.25rem;
	position: relative;
	line-height: 1.5;
}

.about-section__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--color-brand);
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.about-section__inner {
		grid-template-columns: 1fr;
	}
}


/* =========================================
   15. HOMEPAGE — PARTNERS
   ========================================= */

.partners-section {
	padding-block: var(--space-lg);
	background-color: #f8f8f8;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.partners-section__label {
	text-align: center;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-muted);
	margin-bottom: var(--space-md);
}

.partners-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2rem 3.5rem;
}

.partner-logo img {
	height: 34px;
	width: auto;
	object-fit: contain;
	filter: grayscale(1) opacity(0.55);
	transition: filter var(--duration-md) var(--ease);
}

.partner-logo img:hover {
	filter: grayscale(0) opacity(1);
}


/* =========================================
   16. HOMEPAGE — CLIENTS
   ========================================= */

.clients-section {
	padding-block: var(--space-xl);
}

.clients-showcase {
	max-width: 600px;
	margin-inline: auto;
	border: 1px solid var(--color-border);
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.clients-showcase img {
	width: 100%;
	height: auto;
	display: block;
}


/* =========================================
   17. HOMEPAGE — CTA BANNER
   ========================================= */

.cta-banner {
	position: relative;
	padding-block: var(--space-xl);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	overflow: hidden;
}

.cta-banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(13, 27, 46, 0.83);
}

.cta-banner .container {
	position: relative;
	z-index: 1;
}

.cta-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	flex-wrap: wrap;
}

.cta-banner__text h2 {
	font-family: var(--font-sans);
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 300;
	color: #ffffff;
	margin-bottom: 0.5rem;
	line-height: 1.15;
}

.cta-banner__text p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1rem;
}

@media (max-width: 640px) {
	.cta-banner__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.cta-banner {
		background-attachment: scroll;
	}
}


/* =========================================
   PERFORMANCE — content-visibility
   ========================================= */

.hp-about,
.hp-partners,
.hp-clients,
.hp-cta {
	content-visibility: auto;
	contain-intrinsic-size: 0 480px;
}


/* =========================================
   PERFORMANCE — reduced motion
   ========================================= */

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


/* =========================================
   HOMEPAGE — FAQ
   ========================================= */

@keyframes qmarkFloat1 {
	0%, 100% { transform: translateY(0)     rotateY(0deg)   rotateX(0deg); }
	33%       { transform: translateY(-32px) rotateY(18deg)  rotateX(9deg); }
	66%       { transform: translateY(16px)  rotateY(-12deg) rotateX(-6deg); }
}

@keyframes qmarkFloat2 {
	0%, 100% { transform: translateY(0)     rotateY(0deg)   scale(1); }
	50%       { transform: translateY(-28px) rotateY(-22deg) scale(1.04); }
}

@keyframes qmarkFloat3 {
	0%, 100% { transform: translate(0, 0)         rotateY(0deg)   rotateX(0deg); }
	25%       { transform: translate(22px, -22px)  rotateY(14deg)  rotateX(7deg); }
	75%       { transform: translate(-16px, 20px)  rotateY(-9deg)  rotateX(-5deg); }
}

.hp-faq {
	position: relative;
	padding-block: var(--space-xl);
	background: linear-gradient(160deg, #ffffff 0%, #eef2ff 55%, #dde7f9 100%);
	overflow: hidden;
}

.hp-faq__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	perspective: 600px;
}

.hp-faq__qmark {
	position: absolute;
	font-family: var(--font-sans);
	font-weight: 800;
	color: var(--color-brand);
	line-height: 1;
	user-select: none;
}

.hp-faq__qmark--1 { font-size: 200px; opacity: 0.04; top: -30px;   left: 3%;   animation: qmarkFloat1 14s ease-in-out infinite; }
.hp-faq__qmark--2 { font-size: 130px; opacity: 0.05; top: 38%;     right: 3%;  animation: qmarkFloat2 11s ease-in-out infinite 2s; }
.hp-faq__qmark--3 { font-size: 240px; opacity: 0.03; bottom: -50px; left: 28%;  animation: qmarkFloat3 17s ease-in-out infinite 4s; }
.hp-faq__qmark--4 { font-size: 96px;  opacity: 0.05; top: 8%;      right: 22%; animation: qmarkFloat1 12s ease-in-out infinite 6s; }
.hp-faq__qmark--5 { font-size: 160px; opacity: 0.04; bottom: 0;    left: 58%;  animation: qmarkFloat2 19s ease-in-out infinite 1s; }

.hp-faq-list {
	max-width: 780px;
	margin-inline: auto;
	margin-top: var(--space-lg);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	position: relative;
	z-index: 1;
}

.hp-faq-item {
	background: #ffffff;
	border: 1px solid rgba(31, 77, 128, 0.1);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(31, 77, 128, 0.06);
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.hp-faq-item:hover {
	box-shadow: 0 6px 28px rgba(31, 77, 128, 0.13);
	border-color: rgba(31, 77, 128, 0.2);
}

.hp-faq-item.is-open {
	border-color: rgba(31, 77, 128, 0.25);
	box-shadow: 0 8px 32px rgba(31, 77, 128, 0.14);
}

.hp-faq-item__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 1.5rem 1.75rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.45;
	transition: color 0.2s ease;
}

.hp-faq-item__q:hover,
.hp-faq-item.is-open .hp-faq-item__q {
	color: var(--color-brand);
}

.hp-faq-item__icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1.5px solid rgba(31, 77, 128, 0.22);
	position: relative;
	transition: background 0.28s ease, border-color 0.28s ease, transform 0.38s cubic-bezier(0, 0, 0.2, 1);
}

.hp-faq-item__icon::before,
.hp-faq-item__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--color-brand);
	border-radius: 2px;
	transition: background 0.28s ease;
}

.hp-faq-item__icon::before {
	width: 11px;
	height: 2px;
	transform: translate(-50%, -50%);
}

.hp-faq-item__icon::after {
	width: 2px;
	height: 11px;
	transform: translate(-50%, -50%);
	transition: background 0.28s ease, opacity 0.28s ease;
}

.hp-faq-item.is-open .hp-faq-item__icon {
	background: var(--color-brand);
	border-color: var(--color-brand);
	transform: rotate(45deg);
}

.hp-faq-item.is-open .hp-faq-item__icon::before,
.hp-faq-item.is-open .hp-faq-item__icon::after {
	background: #ffffff;
}

.hp-faq-item__a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s cubic-bezier(0, 0, 0.2, 1);
}

.hp-faq-item__a > p {
	overflow: hidden;
	padding: 0 1.75rem;
	font-size: 0.9375rem;
	color: var(--color-muted);
	line-height: 1.78;
	transition: padding 0.4s cubic-bezier(0, 0, 0.2, 1);
}

.hp-faq-item.is-open .hp-faq-item__a {
	grid-template-rows: 1fr;
}

.hp-faq-item.is-open .hp-faq-item__a > p {
	padding-bottom: 1.5rem;
}


/* =========================================
   404 PAGE
   ========================================= */

.error-404 {
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding-block: 6rem;
	background: linear-gradient(160deg, #0b1929 0%, #0d1d35 100%);
}

.error-404__inner {
	text-align: center;
	max-width: 560px;
	margin: 0 auto;
}

.error-404__icon {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-blue) 0%, #1e3a8a 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	box-shadow: 0 12px 40px rgba(30, 77, 168, 0.3);
}

.error-404__icon svg {
	width: 48px;
	height: 48px;
}

.error-404__code {
	font-size: 6rem;
	font-weight: 800;
	color: #d4e1f0;
	line-height: 1;
	margin-bottom: 0.5rem;
	opacity: 0.18;
}

.error-404__heading {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: #d4e1f0;
	margin-bottom: 1rem;
}

.error-404__text {
	font-size: 1rem;
	color: #7a96b8;
	line-height: 1.7;
	margin-bottom: 2.5rem;
}

.error-404__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}


/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-success-banner {
	background: linear-gradient(90deg, #065f46 0%, #047857 100%);
	padding: 1rem 0;
}

.contact-success-banner__inner {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: #fff;
}

.contact-success-banner__inner svg {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	color: #6ee7b7;
}

.contact-success-banner__inner strong {
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
}

.contact-success-banner__inner span {
	font-size: 0.8rem;
	opacity: 0.85;
}

.contact-page {
	padding-block: var(--space-xl);
	background: #f8faff;
}

.contact-page__inner {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 4rem;
	align-items: flex-start;
}

.contact-page__inner > * {
	min-width: 0;
}

.contact-page__info h1 {
	margin-block: 0.75rem 1rem;
}

.contact-page__info > p {
	color: var(--color-muted);
	line-height: 1.75;
	margin-bottom: 2rem;
}

.contact-page__details {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact-page__details li {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	font-size: 0.875rem;
	color: var(--color-muted);
	line-height: 1.6;
}

.contact-page__details svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--color-blue);
	margin-top: 0.1rem;
}

.contact-page__details a {
	color: var(--color-blue);
	text-decoration: none;
}

.contact-page__details a:hover {
	text-decoration: underline;
}

.contact-page__form-wrap {
	background: #fff;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--color-border);
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.contact-form-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1rem;
	min-width: 0;
}

.contact-form-field label {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-heading);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
	width: 100%;
	min-width: 0;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	border: 1.5px solid var(--color-border);
	background: #f8faff;
	font-family: var(--font-sans);
	font-size: 0.875rem;
	color: var(--color-text);
	transition: border-color 0.2s ease;
	-webkit-appearance: none;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
	outline: none;
	border-color: var(--color-blue);
	background: #fff;
}

.contact-form-field textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-form-field input.is-invalid,
.contact-form-field select.is-invalid,
.contact-form-field textarea.is-invalid {
	border-color: #dc2626;
	background: #fff5f5;
}

.contact-form-field input.is-valid,
.contact-form-field select.is-valid,
.contact-form-field textarea.is-valid {
	border-color: #16a34a;
}

.contact-form-field__error {
	display: none;
	font-size: 0.78rem;
	color: #dc2626;
	margin-top: 0.35rem;
	font-weight: 500;
}

.contact-form-field input.is-invalid ~ .contact-form-field__error,
.contact-form-field select.is-invalid ~ .contact-form-field__error,
.contact-form-field textarea.is-invalid ~ .contact-form-field__error {
	display: block;
}

@media (max-width: 860px) {
	.contact-page__inner { grid-template-columns: 1fr; gap: 2.5rem; }
	.contact-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.contact-page__form-wrap { padding: 1.25rem; border-radius: 14px; }
	.contact-page__info > p { overflow-wrap: break-word; word-break: break-word; }
}

@media (max-width: 480px) {
	.contact-page__form-wrap { padding: 1rem; }
}

/* =========================================
   PRIVACY POLICY PAGE
   ========================================= */

.policy-hero {
	padding-block: 5rem 3.5rem;
	background: linear-gradient(135deg, #0f2558 0%, #1e4da8 100%);
}

.policy-hero .hp-gradient-line {
	display: block;
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, #f0b429, #f0b42900);
	border-radius: 2px;
	margin-bottom: 1rem;
}

.policy-hero .hp-tag--dark {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.2);
}

.policy-hero__title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: #ffffff;
	margin: 0.75rem 0 0.5rem;
	line-height: 1.15;
}

.policy-hero__meta {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

.policy-body {
	padding-block: 4rem 6rem;
	background: #f8faff;
}

.policy-content {
	max-width: 760px;
}

.policy-section {
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid #e5eaf5;
}

.policy-section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.policy-section h2 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1f4d80;
	margin: 0 0 1rem;
	letter-spacing: -0.01em;
}

.policy-section h3 {
	font-size: 0.95rem;
	font-weight: 600;
	color: #1e4da8;
	margin: 1.5rem 0 0.5rem;
}

.policy-section p,
.policy-section address {
	font-size: 0.95rem;
	color: #374151;
	line-height: 1.75;
	margin: 0 0 1rem;
	font-style: normal;
}

.policy-section p:last-child {
	margin-bottom: 0;
}

.policy-section ul {
	margin: 0 0 1rem 1.25rem;
	padding: 0;
}

.policy-section ul li {
	font-size: 0.95rem;
	color: #374151;
	line-height: 1.75;
	margin-bottom: 0.4rem;
}

.policy-section a {
	color: #1e4da8;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.policy-section a:hover {
	color: #f0b429;
}

.policy-section--contact address strong {
	display: block;
	font-size: 1rem;
	color: #1f4d80;
	margin-bottom: 0.25rem;
}

.policy-table-wrap {
	overflow-x: auto;
	margin: 1rem 0;
	border-radius: 10px;
	border: 1px solid #dce4f5;
}

.policy-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.policy-table thead tr {
	background: #1e4da8;
}

.policy-table th {
	padding: 0.75rem 1rem;
	text-align: left;
	color: #ffffff;
	font-weight: 600;
	white-space: nowrap;
}

.policy-table td {
	padding: 0.7rem 1rem;
	color: #374151;
	border-top: 1px solid #e5eaf5;
	line-height: 1.55;
}

.policy-table tbody tr:nth-child(even) td {
	background: #f0f4fb;
}

@media (max-width: 640px) {
	.policy-hero { padding-block: 3.5rem 2.5rem; }
	.policy-body { padding-block: 2.5rem 4rem; }
	.policy-section { margin-bottom: 2rem; padding-bottom: 2rem; }
}

/* =========================================
   GENERIC PAGE (page.php fallback)
   ========================================= */

.wp-page {
	padding-block: 5rem 6rem;
	background: #f8faff;
	min-height: 60vh;
}

.wp-page__article {
	max-width: 760px;
}

.wp-page__title {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 700;
	color: #1f4d80;
	margin: 0 0 2rem;
	line-height: 1.2;
}

.wp-page__content {
	font-size: 1rem;
	color: #374151;
	line-height: 1.8;
}

.wp-page__content h2 { font-size: 1.3rem; font-weight: 700; color: #1f4d80; margin: 2rem 0 0.75rem; }
.wp-page__content h3 { font-size: 1.1rem; font-weight: 600; color: #1e4da8; margin: 1.5rem 0 0.5rem; }
.wp-page__content p  { margin: 0 0 1.25rem; }
.wp-page__content ul,
.wp-page__content ol { margin: 0 0 1.25rem 1.5rem; }
.wp-page__content li { margin-bottom: 0.4rem; }
.wp-page__content a  { color: #1e4da8; text-decoration: underline; text-underline-offset: 3px; }
.wp-page__content a:hover { color: #f0b429; }
.wp-page__content strong { color: #1f4d80; }

/* =========================================
   BLOG COMING SOON
   ========================================= */

.coming-soon {
	padding-block: 6rem 7rem;
	background: #f8faff;
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.coming-soon__inner {
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
}

.coming-soon__icon svg {
	width: 80px;
	height: 80px;
}

.coming-soon__title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: #1f4d80;
	line-height: 1.15;
	margin: 0;
}

.coming-soon__title span {
	color: #f0b429;
}

.coming-soon__desc {
	font-size: 1.05rem;
	color: #4b5563;
	line-height: 1.75;
	margin: 0;
	max-width: 480px;
}

.coming-soon__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 0.5rem;
}

@media (max-width: 480px) {
	.coming-soon { padding-block: 4rem 5rem; }
	.coming-soon__actions { flex-direction: column; width: 100%; }
	.coming-soon__actions .btn { width: 100%; text-align: center; }
}

/* =========================================
   ACTIVE NAV ITEM
   ========================================= */

.site-header__link[aria-current="page"],
.mobile-menu__link[aria-current="page"] {
	color: var(--color-brand);
	font-weight: 600;
}


/* =========================================
   THEME TOGGLE BUTTON
   ========================================= */

/* ═══════════════════════════════
   UNIQUE THEME TOGGLE — SKY PILL
   ═══════════════════════════════ */
.theme-toggle {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
	outline: none;
}

.theme-toggle:focus-visible .tt-track {
	box-shadow: 0 0 0 2px rgba(31,77,128,0.4);
}

/* the pill track */
.tt-track {
	position: relative;
	width: 54px;
	height: 26px;
	border-radius: 999px;
	background: linear-gradient(135deg, #d6eaf8 0%, #aed6f1 100%);
	border: 1px solid rgba(31,77,128,0.18);
	overflow: hidden;
	transition: background 0.5s ease, border-color 0.4s;
	display: flex;
	align-items: center;
}

/* tiny stars (hidden in light mode) */
.tt-star {
	position: absolute;
	border-radius: 50%;
	background: #fff;
	opacity: 0;
	transition: opacity 0.4s;
}
.tt-star--a { width: 2px; height: 2px; top: 5px;  left: 8px;  transition-delay: 0.1s; }
.tt-star--b { width: 1.5px; height: 1.5px; top: 14px; left: 14px; transition-delay: 0.2s; }
.tt-star--c { width: 2px; height: 2px; top: 7px;  left: 20px; transition-delay: 0.15s; }

/* sliding thumb */
.tt-thumb {
	position: absolute;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #f0b429;
	box-shadow: 0 2px 6px rgba(240,180,41,0.55), inset 0 1px 0 rgba(255,255,255,0.4);
	transition: left 0.4s cubic-bezier(0.34,1.4,0.64,1), background 0.4s, box-shadow 0.4s;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.tt-sun, .tt-moon {
	position: absolute;
	width: 11px;
	height: 11px;
	transition: opacity 0.3s, transform 0.4s;
}

.tt-sun  { color: #fff; opacity: 1;  transform: scale(1) rotate(0deg); }
.tt-moon { color: #1f4d80; fill: #1f4d80; opacity: 0; transform: scale(0.5) rotate(-90deg); }

/* hover: subtle glow */
.theme-toggle:hover .tt-track {
	border-color: rgba(240,180,41,0.45);
}

/* ── dark mode state ── */
[data-theme="dark"] .tt-track {
	background: linear-gradient(135deg, #0d1d35 0%, #152a46 100%);
	border-color: rgba(168,196,224,0.2);
}

[data-theme="dark"] .tt-star { opacity: 1; }

[data-theme="dark"] .tt-thumb {
	left: 31px;
	background: oklch(88% 0.01 240);
	box-shadow: 0 2px 8px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}

[data-theme="dark"] .tt-sun  { opacity: 0;  transform: scale(0.5) rotate(90deg); }
[data-theme="dark"] .tt-moon { opacity: 1;  transform: scale(1) rotate(0deg); }

[data-theme="dark"] .theme-toggle:hover .tt-track {
	border-color: rgba(168,196,224,0.35);
}

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

/* ═══════════════════════════════
   LANGUAGE TOGGLE
   ═══════════════════════════════ */
.lang-toggle {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid rgba(31,77,128,0.18);
	background: transparent;
	cursor: pointer;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #1f4d80;
	transition: background 0.2s, border-color 0.2s;
	flex-shrink: 0;
}

.lang-toggle:hover {
	background: rgba(31,77,128,0.06);
}

.lang-toggle__sep {
	opacity: 0.3;
	font-weight: 400;
}

.lang-toggle__opt {
	opacity: 0.45;
	transition: opacity 0.2s;
}

.lang-toggle__opt.is-active {
	opacity: 1;
	color: #1f4d80;
}

[data-theme="dark"] .lang-toggle {
	border-color: rgba(168,196,224,0.2);
	color: #a8c4e0;
}

[data-theme="dark"] .lang-toggle:hover {
	background: rgba(255,255,255,0.05);
}

[data-theme="dark"] .lang-toggle__opt.is-active { color: #d4e4f5; }

/* =========================================
   LANGUAGE SYSTEM
   ========================================= */
.lang-sw { display: none; }
[data-lang="sw"] .lang-en { display: none; }
[data-lang="sw"] .lang-sw { display: revert; }

/* bio panel: active-state class beats lang visibility */
.ts-bio--hidden { display: none !important; }

/* =========================================
   THEME SWITCH TRANSITION
   ========================================= */

html[data-theme] body,
html[data-theme] .site-header,
html[data-theme] .site-header__bar {
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}


/* =========================================
   DARK MODE — TOKENS
   ========================================= */

[data-theme="dark"] {
	--color-bg:           #0b1929;
	--color-brand:        #5a9fd4;
	--color-brand-dark:   #4a88c0;
	--color-brand-light:  rgba(90, 159, 212, 0.12);
	--color-text:         #f5faff;
	--color-muted:        #f0b429;
	--color-border:       rgba(255, 255, 255, 0.08);
}


/* =========================================
   DARK MODE — HEADER
   ========================================= */

[data-theme="dark"] .site-header__bar {
	background: #0b1929;
	border-bottom-color: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .site-header.is-scrolled .site-header__bar {
	background: rgba(11, 25, 41, 0.94);
	border-color: rgba(255, 255, 255, 0.09);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .site-header__link {
	color: #b8cfe8;
}

[data-theme="dark"] .site-header__link:hover {
	color: #5a9fd4;
	background: rgba(90, 159, 212, 0.1);
}

[data-theme="dark"] .site-header__link.is-active {
	color: #5a9fd4;
}

[data-theme="dark"] .site-header__link.is-active::after {
	background: #5a9fd4;
}

[data-theme="dark"] .nav-toggle {
	border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .nav-toggle__bar {
	background-color: #b8cfe8;
}


/* =========================================
   DARK MODE — MOBILE MENU
   ========================================= */

[data-theme="dark"] .mobile-menu {
	background: rgba(11, 25, 41, 0.97);
}

[data-theme="dark"] .mobile-menu__link {
	color: #b8cfe8;
	border-bottom-color: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .mobile-menu__link:hover,
[data-theme="dark"] .mobile-menu__link.is-active {
	color: #5a9fd4;
}


/* =========================================
   DARK MODE — HERO STATS BAR
   ========================================= */

[data-theme="dark"] .hp-hero__statsbar {
	background: #0f2240;
	box-shadow: 0 -10px 48px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .hp-stat-item {
	border-right-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .hp-stat-item:hover {
	background: rgba(90, 159, 212, 0.06);
}

[data-theme="dark"] .hp-stat-item__num {
	color: #a8c8e8;
}

[data-theme="dark"] .hp-stat-item__label {
	color: #7a96b8;
}


/* =========================================
   DARK MODE — HOW IT WORKS (PROCESS)
   ========================================= */

[data-theme="dark"] .hp-process {
	background: #0d1d35;
}

[data-theme="dark"] .hp-process__step h3 {
	color: #d4e1f0;
}

[data-theme="dark"] .hp-process__step p {
	color: #7a96b8;
}

[data-theme="dark"] .hp-process__num {
	color: #f0b429;
}

[data-theme="dark"] .hp-process__arrow svg path,
[data-theme="dark"] .hp-process__arrow svg line,
[data-theme="dark"] .hp-process__arrow svg polyline {
	stroke: #3a6080;
}


/* =========================================
   DARK MODE — ABOUT
   ========================================= */

[data-theme="dark"] .hp-about {
	background: #0d1d35;
}

[data-theme="dark"] .hp-about__img-wrap::before {
	opacity: 0.18;
}

[data-theme="dark"] .hp-about__img-wrap::after {
	opacity: 0.1;
}

[data-theme="dark"] .hp-about__badge {
	background: #0f2240;
	border-color: rgba(90, 159, 212, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .hp-about__badge-text strong {
	color: #a8c8e8;
}

[data-theme="dark"] .hp-about__badge-text span {
	color: #5a7a9a;
}

[data-theme="dark"] .hp-about__content .hp-section-title {
	color: #ffffff;
}

[data-theme="dark"] .hp-about__text {
	color: #8aa8c8;
}

[data-theme="dark"] .hp-about__stats {
	border-color: rgba(90, 159, 212, 0.15);
}

[data-theme="dark"] .hp-about__stat {
	background: rgba(15, 34, 64, 0.7);
	border-right-color: rgba(90, 159, 212, 0.1);
}

[data-theme="dark"] .hp-about__stat strong {
	color: #5a9fd4;
}

[data-theme="dark"] .hp-about__stat span {
	color: #5a7a9a;
}

[data-theme="dark"] .hp-about__list li {
	color: #c8dcf0;
	background: rgba(15, 34, 64, 0.5);
	border-color: rgba(90, 159, 212, 0.1);
}

[data-theme="dark"] .hp-about__list li:hover {
	background: rgba(15, 34, 64, 0.85);
	border-color: rgba(240, 180, 41, 0.3);
}


/* =========================================
   DARK MODE — PARTNERS / CLIENTS
   ========================================= */

[data-theme="dark"] .hp-partners {
	background: #0f2240;
	border-top-color: rgba(255, 255, 255, 0.06);
	border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .hp-clients {
	background: #0d1d35;
	border-top-color: rgba(255, 255, 255, 0.06);
	border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .brand-hover-btn img {
	mix-blend-mode: normal;
	filter: grayscale(1) brightness(1.8);
	opacity: 0.4;
}

[data-theme="dark"] .brand-hover-btn.is-active img {
	filter: grayscale(0) brightness(1.4);
	opacity: 0.9;
}

[data-theme="dark"] .brand-hover-btn.is-active {
	border-color: rgba(90, 159, 212, 0.3);
	background: rgba(90, 159, 212, 0.08);
}

[data-theme="dark"] .brand-hover-name {
	color: #d4e1f0;
}

[data-theme="dark"] .brand-hover-sublabel {
	color: #7a96b8;
}


/* =========================================
   DARK MODE — FAQ
   ========================================= */

[data-theme="dark"] .hp-faq {
	background: linear-gradient(160deg, #0b1929 0%, #0d1d35 55%, #0f2240 100%);
}

[data-theme="dark"] .hp-faq-item {
	background: #0f2240;
	border-color: rgba(90, 159, 212, 0.12);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hp-faq-item:hover {
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
	border-color: rgba(90, 159, 212, 0.22);
}

[data-theme="dark"] .hp-faq-item.is-open {
	border-color: rgba(90, 159, 212, 0.3);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .hp-faq-item__q {
	color: #d4e1f0;
}

[data-theme="dark"] .hp-faq-item__q:hover,
[data-theme="dark"] .hp-faq-item.is-open .hp-faq-item__q {
	color: #5a9fd4;
}

[data-theme="dark"] .hp-faq-item__icon {
	border-color: rgba(90, 159, 212, 0.3);
}

[data-theme="dark"] .hp-faq-item__icon::before,
[data-theme="dark"] .hp-faq-item__icon::after {
	background: #5a9fd4;
}

[data-theme="dark"] .hp-faq-item.is-open .hp-faq-item__icon {
	background: #5a9fd4;
	border-color: #5a9fd4;
}

[data-theme="dark"] .hp-faq-item.is-open .hp-faq-item__icon::before,
[data-theme="dark"] .hp-faq-item.is-open .hp-faq-item__icon::after {
	background: #0b1929;
}

[data-theme="dark"] .hp-faq-item__a > p {
	color: #7a96b8;
}

[data-theme="dark"] .hp-faq__qmark {
	color: #5a9fd4;
}


/* =========================================
   DARK MODE — CONTACT PAGE
   ========================================= */

[data-theme="dark"] .contact-page {
	background: #0b1929;
}

[data-theme="dark"] .contact-page__info h1 {
	color: #d4e1f0;
}

[data-theme="dark"] .contact-page__info > p {
	color: #7a96b8;
}

[data-theme="dark"] .contact-page__details li {
	color: #7a96b8;
}

[data-theme="dark"] .contact-page__form-wrap {
	background: #0f2240;
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .contact-form-field label {
	color: #b8cfe8;
}

[data-theme="dark"] .contact-form-field input,
[data-theme="dark"] .contact-form-field select,
[data-theme="dark"] .contact-form-field textarea {
	background: #0f2240;
	border-color: rgba(255, 255, 255, 0.12);
	color: #d4e1f0;
}

[data-theme="dark"] .contact-form-field input::placeholder,
[data-theme="dark"] .contact-form-field textarea::placeholder {
	color: #4a6080;
}

[data-theme="dark"] .contact-form-field input:focus,
[data-theme="dark"] .contact-form-field select:focus,
[data-theme="dark"] .contact-form-field textarea:focus {
	border-color: #5a9fd4;
	background: #0d1d35;
}

[data-theme="dark"] .contact-form-field input.is-invalid,
[data-theme="dark"] .contact-form-field select.is-invalid,
[data-theme="dark"] .contact-form-field textarea.is-invalid {
	background: rgba(220, 38, 38, 0.08);
}

[data-theme="dark"] .contact-form-field select option {
	background: #0f2240;
	color: #d4e1f0;
}


/* =========================================
   DARK MODE — GENERAL LIGHT SURFACES
   ========================================= */

/* services-section (background: #f8f8f8) */
[data-theme="dark"] .services-section {
	background-color: #0d1d35;
}

/* service-card (background: var(--color-bg)) */
[data-theme="dark"] .service-card {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.10);
}

/* partners-section (background: #f8f8f8) */
[data-theme="dark"] .partners-section {
	background-color: #0d1d35;
	border-top-color: rgba(255, 255, 255, 0.06);
	border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* error-404 (background: linear-gradient light blues) */
[data-theme="dark"] .error-404 {
	background: linear-gradient(160deg, #0b1929 0%, #0d1d35 100%);
}

/* policy pages (background: #f8faff) */
[data-theme="dark"] .policy-body {
	background: #0b1929;
}

[data-theme="dark"] .policy-section {
	border-bottom-color: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .policy-section h2 {
	color: #d4e1f0;
}

[data-theme="dark"] .policy-section h3 {
	color: #5a9fd4;
}

[data-theme="dark"] .policy-section p,
[data-theme="dark"] .policy-section address,
[data-theme="dark"] .policy-section ul li {
	color: #7a96b8;
}

[data-theme="dark"] .policy-section a {
	color: #5a9fd4;
}

[data-theme="dark"] .policy-table-wrap {
	border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .policy-table td {
	color: #b8cfe8;
	border-top-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .policy-table tbody tr:nth-child(even) td {
	background: rgba(255, 255, 255, 0.03);
}

/* wp-page (background: #f8faff) */
[data-theme="dark"] .wp-page {
	background: #0b1929;
}

[data-theme="dark"] .wp-page__title {
	color: #d4e1f0;
}

[data-theme="dark"] .wp-page__content {
	color: #7a96b8;
}

[data-theme="dark"] .wp-page__content h2 { color: #d4e1f0; }
[data-theme="dark"] .wp-page__content h3 { color: #5a9fd4; }
[data-theme="dark"] .wp-page__content strong { color: #b8cfe8; }
[data-theme="dark"] .wp-page__content a { color: #5a9fd4; }

/* coming-soon (background: #f8faff) */
[data-theme="dark"] .coming-soon {
	background: #0b1929;
}

[data-theme="dark"] .coming-soon__title {
	color: #d4e1f0;
}

[data-theme="dark"] .coming-soon__title span {
	color: #5a9fd4;
}

[data-theme="dark"] .coming-soon__desc {
	color: #7a96b8;
}


/* =========================================
   DARK MODE — TYPOGRAPHY / HEADINGS
   ========================================= */

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
	color: #d4e1f0;
}

[data-theme="dark"] .hp-section-title {
	color: #d4e1f0;
}

[data-theme="dark"] .hp-section-title span {
	color: #f0b429;
}

[data-theme="dark"] .hp-section-sub {
	color: #7a96b8;
}

[data-theme="dark"] .hp-tag--dark {
	color: #5a9fd4;
}

[data-theme="dark"] .hp-gradient-line {
	background: #5a9fd4;
}

[data-theme="dark"] .section-label {
	color: #5a9fd4;
}

[data-theme="dark"] .section-desc {
	color: #7a96b8;
}


/* =========================================
   DARK MODE — BACK TO TOP
   ========================================= */

[data-theme="dark"] .back-to-top {
	background: #1a3a60;
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(90, 159, 212, 0.12);
}

[data-theme="dark"] .back-to-top:hover {
	background: #f0b429;
	color: #0b1929;
	border-color: rgba(255, 255, 255, 0.5);
}


/* =========================================
   DARK MODE — COOKIE NOTICE
   ========================================= */

/* Cookie notice already has a dark bg (#0f1c35), keep it consistent */
[data-theme="dark"] .cookie-notice {
	background: #060e1c;
	border-top-color: rgba(255, 255, 255, 0.06);
}


/* =========================================
   DARK MODE — BTN OVERRIDES
   ========================================= */

/* Primary button stays navy glass — works fine on dark bg */
/* Outline button: adjust for dark bg */
[data-theme="dark"] .btn--outline {
	color: #5a9fd4;
}

[data-theme="dark"] .btn--outline::before {
	background-color: rgba(90, 159, 212, 0.08);
	box-shadow:
		inset 0 0 0 1px rgba(90, 159, 212, 0.35),
		inset 1.8px 3px 0px -2px rgba(255, 255, 255, 0.20),
		0px 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .btn--outline:hover {
	color: #ffffff;
}

[data-theme="dark"] .btn--outline:hover::before {
	background-color: rgba(90, 159, 212, 0.88);
}


/* =========================================
   DARK MODE — SCROLLED HEADER GLASSMORPHISM
   ========================================= */

/* Override the rgba(255,255,255,0.92) in the scrolled pill */
@media (min-width: 901px) {
	[data-theme="dark"] .site-header.is-scrolled .site-header__bar {
		background: rgba(11, 25, 41, 0.92);
	}
}


/* =========================================
   LIGHT MODE — HERO REDESIGN (WHITE)
   ========================================= */

.hp-hero {
	background:
		radial-gradient(ellipse at 78% 15%, rgba(31, 77, 128, 0.10) 0%, transparent 55%),
		radial-gradient(ellipse at 18% 85%, rgba(240, 180, 41, 0.07) 0%, transparent 45%),
		radial-gradient(ellipse at 50% 50%, rgba(31, 77, 128, 0.04) 0%, transparent 60%),
		#f8fbff;
	background-size: auto;
	animation: none;
}

.hp-hero__icon {
	color: #1f4d80;
	opacity: 0.07;
}

.hp-hero__badge-text {
	color: var(--color-brand);
}

.hp-hero__heading {
	color: #1f4d80;
}

.hp-hero__heading .accent {
	color: #f0b429;
}

.hp-hero__sub {
	color: #4a6080;
}

.hp-hero__glow-ring {
	background: radial-gradient(ellipse at 50% 100%, rgba(31, 77, 128, 0.10) 0%, transparent 70%);
}

.hp-hero__statsbar {
	background: #ffffff;
	box-shadow: 0 -4px 24px rgba(31, 77, 128, 0.09);
	border-top: 1px solid rgba(31, 77, 128, 0.06);
}

.hp-hero__tira-seal {
	background: #ffffff;
	border: 1px solid rgba(31, 77, 128, 0.14);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: 0 8px 32px rgba(31, 77, 128, 0.11), 0 0 0 3px rgba(240, 180, 41, 0.22);
}

.hp-hero__tira-seal__text strong {
	color: #1f4d80;
}

.hp-hero__tira-seal__text span {
	color: #4a6080;
}

/* Ghost hero button — dark outlined on white bg */
.btn--hero-ghost {
	color: #1f4d80;
}

.btn--hero-ghost::before {
	background-color: rgba(31, 77, 128, 0.06);
	box-shadow:
		inset 0 0 0 1.5px rgba(31, 77, 128, 0.22),
		inset 1.8px 3px 0px -2px rgba(255, 255, 255, 0.80),
		0px 2px 8px rgba(0, 0, 0, 0.05);
}

.btn--hero-ghost:hover {
	color: #ffffff;
}

.btn--hero-ghost:hover::before {
	background-color: rgba(31, 77, 128, 0.88);
	box-shadow:
		inset 0 0 0 1.5px rgba(255, 255, 255, 0.20),
		inset 1.8px 3px 0px -2px rgba(255, 255, 255, 0.60),
		0px 4px 20px rgba(31, 77, 128, 0.28);
}


/* =========================================
   LIGHT MODE — SERVICES REDESIGN (WHITE)
   ========================================= */

.hp-services {
	background: linear-gradient(160deg, #f8faff 0%, #eef4ff 55%, #e6efff 100%);
	background-size: auto;
	animation: none;
}

.hp-services .hp-tag--dark {
	color: var(--color-brand);
}

.hp-services .hp-gradient-line {
	background: var(--color-brand);
}

.hp-services .hp-section-title {
	color: #1f4d80;
}

.hp-services .hp-section-title span {
	color: #f0b429;
}

.hp-services .hp-section-sub {
	color: var(--color-muted);
}

/* Service cards — clean white on light bg */
.hp-service-card {
	background: #ffffff;
	border: 1px solid rgba(31, 77, 128, 0.09);
	box-shadow: 0 2px 20px rgba(31, 77, 128, 0.06);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.hp-service-card:hover {
	background: #f4f8ff;
	border-color: rgba(31, 77, 128, 0.18);
	box-shadow: 0 14px 44px rgba(31, 77, 128, 0.12);
	animation: none;
}

.hp-service-card__title {
	color: #1f4d80;
}

.hp-service-card__text {
	color: #6b7280;
}

.hp-service-card__link {
	color: var(--color-brand);
}


/* =========================================
   DARK MODE — HERO RESTORATION + MORPHISM
   ========================================= */

[data-theme="dark"] .hp-hero {
	background: linear-gradient(-45deg, #060f25, #0b1f47, #122a60, #1a3b78);
	background-size: 400% 400%;
	animation: gradientShift 18s ease infinite;
}

[data-theme="dark"] .hp-hero__orb--1 {
	background: radial-gradient(circle, rgba(90, 159, 212, 0.24) 0%, transparent 70%);
}

[data-theme="dark"] .hp-hero__orb--2 {
	background: radial-gradient(circle, rgba(240, 180, 41, 0.11) 0%, transparent 70%);
}

/* Floating icons: glowing blue in dark */
[data-theme="dark"] .hp-hero__icon {
	color: #a8c8f0;
	opacity: 0.22;
	filter: drop-shadow(0 0 7px rgba(90, 159, 212, 0.28));
}

[data-theme="dark"] .hp-hero__badge-text { color: #ffffff; }
[data-theme="dark"] .hp-hero__heading    { color: #ffffff; }
[data-theme="dark"] .hp-hero__heading .accent { color: #f0b429; }
[data-theme="dark"] .hp-hero__sub       { color: rgba(255, 255, 255, 0.60); }

[data-theme="dark"] .hp-hero__glow-ring {
	background: radial-gradient(ellipse at 50% 100%, rgba(26, 59, 120, 0.70) 0%, transparent 70%);
}

[data-theme="dark"] .hp-hero__statsbar {
	background: #0f2240;
	box-shadow: 0 -10px 48px rgba(0, 0, 0, 0.50);
	border-top: none;
}

[data-theme="dark"] .hp-stat-item__num  { color: #a8c8e8; }

[data-theme="dark"] .hp-hero__tira-seal {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.20);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), 0 0 0 3px rgba(240, 180, 41, 0.25);
}

[data-theme="dark"] .hp-hero__tira-seal__text strong { color: #ffffff; }
[data-theme="dark"] .hp-hero__tira-seal__text span   { color: rgba(255, 255, 255, 0.75); }

/* Ghost hero button — restore white glass in dark */
[data-theme="dark"] .btn--hero-ghost           { color: rgba(255, 255, 255, 0.88); }
[data-theme="dark"] .btn--hero-ghost::before {
	background-color: rgba(255, 255, 255, 0.08);
	box-shadow:
		inset 0 0 0 1.5px rgba(255, 255, 255, 0.22),
		inset 1.8px 3px 0px -2px rgba(255, 255, 255, 0.40),
		0px 2px 8px rgba(0, 0, 0, 0.12);
}
[data-theme="dark"] .btn--hero-ghost:hover         { color: #ffffff; }
[data-theme="dark"] .btn--hero-ghost:hover::before {
	background-color: rgba(255, 255, 255, 0.15);
	box-shadow:
		inset 0 0 0 1.5px rgba(255, 255, 255, 0.50),
		inset 1.8px 3px 0px -2px rgba(255, 255, 255, 0.60),
		0px 4px 16px rgba(0, 0, 0, 0.15);
}


/* =========================================
   DARK MODE — SERVICES RESTORATION
   ========================================= */

[data-theme="dark"] .hp-services {
	background: linear-gradient(-45deg, #060f25, #0b1f47, #122a60, #1a3b78);
	background-size: 400% 400%;
	animation: gradientShift 18s ease infinite 9s;
}

[data-theme="dark"] .hp-services .hp-tag--dark          { color: var(--color-accent); }
[data-theme="dark"] .hp-services .hp-gradient-line      { background: var(--color-accent); }
[data-theme="dark"] .hp-services .hp-section-title      { color: #ffffff; }
[data-theme="dark"] .hp-services .hp-section-title span { color: #f0b429; }
[data-theme="dark"] .hp-services .hp-section-sub        { color: rgba(255, 255, 255, 0.52); }

[data-theme="dark"] .hp-service-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.13);
	box-shadow: none;
}

[data-theme="dark"] .hp-service-card:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(240, 180, 41, 0.55);
	box-shadow: 0 0 16px rgba(240, 180, 41, 0.20), 0 20px 50px rgba(0, 0, 0, 0.45);
	animation: cardGoldBreathe 2.6s ease-in-out infinite;
}

[data-theme="dark"] .hp-service-card__title { color: #ffffff; }
[data-theme="dark"] .hp-service-card__text  { color: rgba(255, 255, 255, 0.50); }
[data-theme="dark"] .hp-service-card__link  { color: var(--color-accent); }


/* =========================================
   DARK MODE — PRIMARY BUTTON CONTRAST FIX
   ========================================= */

[data-theme="dark"] .btn--primary { color: #ffffff; }

[data-theme="dark"] .btn--primary::before {
	background-color: rgba(58, 128, 210, 0.95);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.20),
		inset 1.8px 3px 0px -2px rgba(255, 255, 255, 0.90),
		inset -2px -2px 0px -2px rgba(255, 255, 255, 0.75),
		inset -3px -8px 1px -6px rgba(255, 255, 255, 0.55),
		0px 4px 20px rgba(58, 128, 210, 0.55),
		0px 8px 28px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .btn--primary:hover::before {
	background-color: rgba(78, 148, 228, 0.98);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.24),
		inset 1.8px 3px 0px -2px rgba(255, 255, 255, 0.90),
		0px 6px 28px rgba(78, 148, 228, 0.65),
		0px 12px 36px rgba(0, 0, 0, 0.32);
}


/* =========================================
   DARK MODE — NENO LOGO WHITE
   ========================================= */

[data-theme="dark"] .site-header__logo img {
	filter: brightness(0) invert(1);
}


/* =========================================
   DARK MODE — PARTNERS / CLIENTS LOGO CARDS
   ========================================= */

[data-theme="dark"] .brand-hover-btn {
	background: rgba(255, 255, 255, 0.96);
	border-color: transparent;
	border-radius: 12px;
	padding: 0.75rem 1rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

[data-theme="dark"] .brand-hover-btn img {
	mix-blend-mode: normal;
	filter: grayscale(1) contrast(0.85);
	opacity: 0.60;
}

[data-theme="dark"] .brand-hover-btn:hover {
	background: #ffffff;
	border-color: rgba(31, 77, 128, 0.20);
	box-shadow: 0 4px 20px rgba(31, 77, 128, 0.22);
}

[data-theme="dark"] .brand-hover-btn:hover img {
	filter: none;
	opacity: 1;
}

[data-theme="dark"] .brand-hover-btn.is-active {
	background: #ffffff;
	border-color: rgba(31, 77, 128, 0.25);
	box-shadow: 0 4px 24px rgba(31, 77, 128, 0.25), 0 0 0 2px rgba(90, 159, 212, 0.30);
}

[data-theme="dark"] .brand-hover-btn.is-active img {
	filter: none;
	opacity: 1;
}

[data-theme="dark"] .brand-hover-btn.is-dimmed {
	opacity: 0.55;
}

[data-theme="dark"] .brand-hover-name    { color: #ffffff; }
[data-theme="dark"] .brand-hover-sublabel { color: #8aa8c8; }


/* =========================================
   DARK MODE — RICHER SECTION BACKGROUNDS
   ========================================= */

[data-theme="dark"] .hp-process {
	background:
		radial-gradient(ellipse at 15% 30%, rgba(90, 159, 212, 0.07) 0%, transparent 50%),
		radial-gradient(ellipse at 85% 75%, rgba(31, 77, 128, 0.10) 0%, transparent 45%),
		#0d1d35;
}

[data-theme="dark"] .hp-about {
	background:
		radial-gradient(ellipse at 85% 20%, rgba(90, 159, 212, 0.06) 0%, transparent 50%),
		radial-gradient(ellipse at 15% 80%, rgba(31, 77, 128, 0.09) 0%, transparent 45%),
		#0d1d35;
}

[data-theme="dark"] .hp-partners {
	background:
		radial-gradient(ellipse at 50% 0%, rgba(90, 159, 212, 0.05) 0%, transparent 60%),
		#0f2240;
	border-top-color: rgba(255, 255, 255, 0.05);
	border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .hp-clients {
	background:
		radial-gradient(ellipse at 50% 100%, rgba(90, 159, 212, 0.05) 0%, transparent 60%),
		#0d1d35;
	border-top-color: rgba(255, 255, 255, 0.05);
	border-bottom-color: rgba(255, 255, 255, 0.05);
}

/* Process icon: richer glow */
[data-theme="dark"] .hp-process__icon {
	box-shadow: 0 12px 32px rgba(15, 37, 88, 0.60), 0 0 0 1px rgba(90, 159, 212, 0.18);
}

[data-theme="dark"] .hp-process__step h3 { color: #f0f4f9; }

/* Tracker — dark mode */
[data-theme="dark"] .hp-process__track-line {
	background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .hp-process__track-ndot {
	border-color: rgba(138, 168, 200, 0.4);
	background: #0d1d35;
}

[data-theme="dark"] .hp-process__track-node.is-active .hp-process__track-ndot {
	background: #f0b429;
	box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.25);
}

[data-theme="dark"] .hp-process__step.is-active {
	border-color: rgba(240, 180, 41, 0.25);
	background: rgba(240, 180, 41, 0.06);
}

[data-theme="dark"] .hp-process__step.is-active .hp-process__icon {
	box-shadow: 0 18px 44px rgba(15, 37, 88, 0.60), 0 0 0 4px rgba(240, 180, 41, 0.28);
}


/* =========================================
   DARK MODE — REFINED TOKEN OVERRIDES
   (brighter white text + more yellow accents)
   ========================================= */

[data-theme="dark"] {
	--color-text:  #e8f0f9;
	--color-muted: #8aa8c8;
}

[data-theme="dark"] .hp-section-title        { color: #ffffff; }
[data-theme="dark"] .hp-section-sub          { color: #8aa8c8; }
[data-theme="dark"] .hp-tag--dark            { color: var(--color-accent); }
[data-theme="dark"] .hp-tag--light           { color: var(--color-accent); }
[data-theme="dark"] .hp-gradient-line        { background: var(--color-accent); }
[data-theme="dark"] .section-label           { color: var(--color-accent); }

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3 { color: #f0f4f9; }

/* About list items */
[data-theme="dark"] .hp-about__content .hp-section-title { color: #ffffff; }
[data-theme="dark"] .hp-about__text                      { color: #8aa8c8; }
[data-theme="dark"] .hp-about__list li                   { color: #c8dcf0; }


/* =========================================
   DARK MODE — SCROLLED HEADER PILL (FINAL)
   ========================================= */

@media (min-width: 901px) {
	[data-theme="dark"] .site-header.is-scrolled .site-header__bar {
		background: rgba(9, 20, 36, 0.94);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
	}
}


/* =========================================
   MOBILE — SHIELD SIZE + TIRA TEXT FIX
   ========================================= */

@media (max-width: 900px) {
	.hp-hero__shield-r {
		width: 138px;
		top: 0;
		right: -10px;
	}
}

@media (max-width: 600px) {
	.hp-hero__shield-r {
		width: 113px;
		top: 4px;
		right: -8px;
	}

	/* TIRA badge: center the text, hide sub text */
	.hp-hero__tira-seal__text {
		align-items: center;
		text-align: center;
	}

	.tira-full {
		display: none;
	}

	/* duplicate of global rule — not needed in mobile block */

	/* Logo grid: 3 columns on mobile, no overflow */
	.brand-hover-grid {
		grid-template-columns: repeat(3, 1fr);
		width: 100%;
	}

	.brand-hover-btn {
		width: 100%;
		padding: 0.5rem 0.5rem;
	}

	/* Prevent horizontal overflow in logo sections */
	.hp-partners,
	.hp-clients {
		overflow-x: hidden;
	}

	/* Full-width logo row on mobile */
	.brand-hover-row {
		width: 100%;
	}
}

/* ── Services section CTA ─────────────────────────── */
.hp-services-cta {
	display: flex;
	justify-content: center;
	margin-top: 2.5rem;
}

/* ══════════════════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════════════════ */

/* Hero banner */
.sv-hero {
	padding: 5rem 0 3.5rem;
	text-align: center;
}

.sv-hero__inner {
	max-width: 720px;
	margin-inline: auto;
}

.sv-hero__anchors {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.sv-hero__anchor {
	display: inline-block;
	padding: 0.45rem 1.1rem;
	border: 1px solid rgba(31, 77, 128, 0.22);
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--color-brand);
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sv-hero__anchor:hover {
	background: var(--color-brand);
	color: #fff;
	border-color: var(--color-brand);
}

/* Service sections — alternating */
.sv-section {
	padding: 5rem 0;
}

.sv-section:nth-child(even) {
	background: oklch(97.5% 0.006 240);
}

.sv-section__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.sv-section__media {
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: 0 16px 48px rgba(31, 77, 128, 0.14);
}

.sv-section__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s ease-out;
}

.sv-section__media:hover img {
	transform: scale(1.03);
}

.sv-section--flip .sv-section__media {
	order: 2;
}

.sv-section--flip .sv-section__content {
	order: 1;
}

.sv-section__content .hp-tag {
	margin-bottom: 0.75rem;
}

.sv-section__title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	color: #1f4d80;
	margin: 0.5rem 0 0.75rem;
	line-height: 1.2;
}

.sv-section__subtitle {
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--color-brand);
	margin-bottom: 1rem;
	line-height: 1.5;
}

.sv-section__text {
	color: #4a6080;
	line-height: 1.75;
	margin-bottom: 1.5rem;
}

.sv-features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.sv-features.lang-sw { display: none; }
[data-lang="sw"] .sv-features.lang-en { display: none; }
[data-lang="sw"] .sv-features.lang-sw { display: flex; }

.sv-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: #374151;
	line-height: 1.5;
}

.sv-features li::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	background: var(--color-accent);
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2558' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: center;
}

/* Services CTA strip */
.sv-cta {
	padding: 5rem 0;
	background: var(--color-brand);
	text-align: center;
}

.sv-cta__inner {
	max-width: 640px;
	margin-inline: auto;
}

.sv-cta__inner .hp-gradient-line {
	margin-inline: auto;
	background: var(--color-accent);
}

.sv-cta__inner h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	color: #fff;
	margin: 0.75rem 0 0.75rem;
}

.sv-cta__inner p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1rem;
	margin-bottom: 2rem;
	line-height: 1.65;
}

.sv-cta__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Dark mode — services page */
[data-theme="dark"] .sv-section:nth-child(even) {
	background: oklch(18% 0.02 240);
}

[data-theme="dark"] .sv-section__title {
	color: #e8f0f9;
}

[data-theme="dark"] .sv-section__text {
	color: var(--color-muted);
}

[data-theme="dark"] .sv-features li {
	color: #c8d8ea;
}

[data-theme="dark"] .sv-hero__anchor {
	border-color: rgba(138, 168, 200, 0.3);
	color: var(--color-muted);
}

[data-theme="dark"] .sv-hero__anchor:hover {
	background: var(--color-brand);
	color: #fff;
	border-color: var(--color-brand);
}

@media (max-width: 900px) {
	.sv-section__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.sv-section--flip .sv-section__media,
	.sv-section--flip .sv-section__content {
		order: unset;
	}
}

@media (max-width: 600px) {
	.sv-hero {
		padding: 3.5rem 0 2.5rem;
	}

	.sv-section {
		padding: 3rem 0;
	}
}

/* ══════════════════════════════════════════════════════
   PRODUCTS PAGE
   ══════════════════════════════════════════════════════ */

/* Hero */
.prd-hero {
	padding: 5rem 0 3rem;
	text-align: center;
}

.prd-hero__inner {
	max-width: 720px;
	margin-inline: auto;
}

/* Category nav */
.prd-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 2.5rem;
}

.prd-nav__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.25rem;
	border: 1px solid rgba(31, 77, 128, 0.2);
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--color-brand);
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.prd-nav__item svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.prd-nav__item:hover {
	background: var(--color-brand);
	color: #fff;
	border-color: var(--color-brand);
}

/* Category sections */
.prd-category {
	padding: 5rem 0;
}

.prd-category--alt {
	background: oklch(97.5% 0.006 240);
}

.prd-category__head {
	margin-bottom: 2.5rem;
}

.prd-category__label {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.35rem;
	font-weight: 700;
	color: #1f4d80;
}

.prd-category__label svg {
	width: 24px;
	height: 24px;
	color: var(--color-accent);
	flex-shrink: 0;
}

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

/* Product card */
.prd-card {
	background: #fff;
	border: 1px solid rgba(31, 77, 128, 0.09);
	border-radius: 20px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0;
	transition: box-shadow 0.25s, transform 0.25s;
	position: relative;
	overflow: hidden;
}

.prd-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 20px;
	border: 2px solid transparent;
	transition: border-color 0.25s;
	pointer-events: none;
}

.prd-card:hover {
	box-shadow: 0 12px 40px rgba(31, 77, 128, 0.12);
	transform: translateY(-4px);
}

.prd-card:hover::before {
	border-color: rgba(240, 180, 41, 0.5);
}

.prd-card__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: oklch(95% 0.02 240);
	border-radius: 12px;
	margin-bottom: 1.25rem;
	color: var(--color-brand);
	flex-shrink: 0;
}

.prd-card__icon svg {
	width: 24px;
	height: 24px;
}

.prd-card__badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-accent);
	background: rgba(240, 180, 41, 0.12);
	border-radius: 999px;
	padding: 0.2rem 0.65rem;
	margin-bottom: 0.6rem;
}

.prd-card__title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1f4d80;
	margin: 0 0 0.75rem;
	line-height: 1.3;
}

.prd-card__text {
	font-size: 0.88rem;
	color: #6b7280;
	line-height: 1.65;
	margin: 0 0 1.25rem;
}

.prd-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.prd-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.82rem;
	color: #374151;
	line-height: 1.45;
}

.prd-card__features li::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-accent);
	margin-top: 0.45em;
}

.prd-card__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: auto;
	padding: 0.8rem 1.1rem;
	background: var(--color-brand);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	border-radius: 10px;
	border: 2px solid transparent;
	transition: background 0.22s ease, border-color 0.22s ease, transform 0.15s ease, box-shadow 0.22s ease;
	box-shadow: 0 2px 8px oklch(40% 0.12 240 / 0.18);
}

.prd-card__cta .cta-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: oklch(100% 0 0 / 0.15);
	border-radius: 6px;
	flex-shrink: 0;
	transition: background 0.22s ease, transform 0.22s ease;
}

.prd-card__cta:hover {
	background: oklch(38% 0.14 245);
	border-color: oklch(55% 0.16 245);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px oklch(40% 0.14 240 / 0.28);
}

.prd-card__cta:hover .cta-arrow {
	background: oklch(100% 0 0 / 0.22);
	transform: translateX(3px);
}

/* Dark mode — products page */
[data-theme="dark"] .prd-nav__item {
	border-color: rgba(138, 168, 200, 0.25);
	color: var(--color-muted);
}

[data-theme="dark"] .prd-nav__item:hover {
	background: var(--color-brand);
	color: #fff;
	border-color: var(--color-brand);
}

[data-theme="dark"] .prd-category--alt {
	background: oklch(18% 0.02 240);
}

[data-theme="dark"] .prd-category__label {
	color: #e8f0f9;
}

[data-theme="dark"] .prd-card {
	background: oklch(20% 0.02 240);
	border-color: rgba(138, 168, 200, 0.12);
}

[data-theme="dark"] .prd-card__icon {
	background: oklch(25% 0.025 240);
	color: #8ab8e0;
}

[data-theme="dark"] .prd-card__title {
	color: #e8f0f9;
}

[data-theme="dark"] .prd-card__text {
	color: var(--color-muted);
}

[data-theme="dark"] .prd-card__features li {
	color: #c8d8ea;
}

[data-theme="dark"] .prd-card__cta {
	background: oklch(32% 0.08 240);
	border-color: oklch(45% 0.1 240 / 0.4);
	color: #e8f0f9;
	box-shadow: 0 2px 8px oklch(10% 0.04 240 / 0.4);
}

[data-theme="dark"] .prd-card__cta:hover {
	background: oklch(38% 0.1 240);
	border-color: oklch(55% 0.12 240);
}

[data-theme="dark"] .prd-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 960px) {
	.prd-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.prd-hero {
		padding: 3.5rem 0 2rem;
	}

	.prd-category {
		padding: 3rem 0;
	}

	.prd-grid {
		grid-template-columns: 1fr;
	}
}

/* ══════════════════════════════════════════════════════
   DARK MODE — WHITE + GOLD TEXT OVERRIDES
   ══════════════════════════════════════════════════════ */

[data-theme="dark"] body {
	color: #f5faff;
}

[data-theme="dark"] .hp-section-sub,
[data-theme="dark"] .sv-section__text,
[data-theme="dark"] .sv-section__subtitle,
[data-theme="dark"] .ab-mission__content p,
[data-theme="dark"] .pt-section-sub,
[data-theme="dark"] .pt-why__content p {
	color: rgba(255, 255, 255, 0.82);
}

[data-theme="dark"] .sv-section__subtitle {
	color: #f0b429;
}

[data-theme="dark"] .hp-tag--dark {
	color: #f0b429;
	border-color: rgba(240, 180, 41, 0.3);
}

[data-theme="dark"] .ab-section-title,
[data-theme="dark"] .sv-section__title,
[data-theme="dark"] .ab-team-card__name,
[data-theme="dark"] .ab-value-card__title,
[data-theme="dark"] .pt-section-head h2 {
	color: #ffffff;
}

[data-theme="dark"] .ab-value-card__text,
[data-theme="dark"] .ab-team-card__bio,
[data-theme="dark"] .ab-team-card__title {
	color: rgba(255, 255, 255, 0.72);
}

[data-theme="dark"] .ab-team-card__title {
	color: #f0b429;
}

[data-theme="dark"] .prd-category__label {
	color: #ffffff;
}

[data-theme="dark"] .prd-card__badge {
	color: #f0b429;
	background: rgba(240, 180, 41, 0.15);
}

[data-theme="dark"] .sv-hero__anchor {
	color: rgba(255, 255, 255, 0.75);
	border-color: rgba(255, 255, 255, 0.18);
}

[data-theme="dark"] .sv-hero__anchor:hover {
	color: #fff;
	background: rgba(240, 180, 41, 0.2);
	border-color: #f0b429;
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════ */

.ab-hero {
	padding: 5rem 0 3.5rem;
	text-align: center;
}

.ab-hero__inner {
	max-width: 700px;
	margin-inline: auto;
}

/* Mission section */
.ab-mission {
	padding: 5rem 0;
}

.ab-mission__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.ab-mission__media {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: 0 16px 48px rgba(31, 77, 128, 0.14);
}

.ab-mission__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ab-mission__badge {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #fff;
	border-radius: 999px;
	padding: 0.5rem 1rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--color-brand);
	box-shadow: 0 4px 16px rgba(31, 77, 128, 0.18);
}

.ab-section-title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	color: #1f4d80;
	margin: 0.5rem 0 1rem;
	line-height: 1.2;
}

.ab-section-title span {
	color: #f0b429;
}

.ab-mission__content p {
	color: #4a6080;
	line-height: 1.75;
	margin-bottom: 1rem;
}

.ab-mission__links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1.75rem;
}

/* Stats bar */
.ab-stats {
	background: oklch(14% 0.04 238);
	padding: 3.5rem 0;
}

.ab-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}

.ab-stat__num {
	display: block;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: #f0b429;
	line-height: 1;
	margin-bottom: 0.4rem;
}

.ab-stat__label {
	display: block;
	font-size: 0.85rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.78);
	letter-spacing: 0.04em;
}

/* Values */
.ab-values {
	padding: 5rem 0;
	background: oklch(97.5% 0.006 240);
}

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

.ab-value-card {
	background: #fff;
	border: 1px solid rgba(31, 77, 128, 0.09);
	border-radius: 20px;
	padding: 2rem 1.5rem;
	transition: box-shadow 0.25s, transform 0.25s;
}

.ab-value-card:hover {
	box-shadow: 0 12px 36px rgba(31, 77, 128, 0.1);
	transform: translateY(-4px);
}

.ab-value-card__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: oklch(95% 0.02 240);
	border-radius: 12px;
	margin-bottom: 1.25rem;
	color: var(--color-brand);
}

.ab-value-card__icon svg {
	width: 24px;
	height: 24px;
}

.ab-value-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #1f4d80;
	margin: 0 0 0.6rem;
}

.ab-value-card__text {
	font-size: 0.88rem;
	color: #6b7280;
	line-height: 1.65;
	margin: 0;
}

/* Team */
.ab-team {
	padding: 5rem 0;
}

.ab-team__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2.5rem;
}

.ab-team-card {
	background: #fff;
	border: 1px solid rgba(31, 77, 128, 0.09);
	border-radius: 20px;
	overflow: hidden;
	transition: box-shadow 0.25s, transform 0.25s;
}

.ab-team-card:hover {
	box-shadow: 0 16px 48px rgba(31, 77, 128, 0.12);
	transform: translateY(-5px);
}

.ab-team-card__photo {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: oklch(95% 0.015 240);
}

.ab-team-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
	transition: transform 0.5s ease-out;
}

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

.ab-team-card__body {
	padding: 1.5rem;
}

.ab-team-card__name {
	font-size: 1.05rem;
	font-weight: 700;
	color: #1f4d80;
	margin: 0 0 0.25rem;
}

.ab-team-card__title {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #f0b429;
	margin-bottom: 0.75rem;
}

.ab-team-card__bio {
	font-size: 0.85rem;
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
}

/* Dark mode — about */
[data-theme="dark"] .ab-values {
	background: oklch(18% 0.02 240);
}

[data-theme="dark"] .ab-value-card,
[data-theme="dark"] .ab-team-card {
	background: oklch(20% 0.02 240);
	border-color: rgba(138, 168, 200, 0.12);
}

[data-theme="dark"] .ab-value-card__icon {
	background: oklch(25% 0.025 240);
	color: #8ab8e0;
}

[data-theme="dark"] .ab-mission__badge {
	background: oklch(22% 0.025 240);
	color: #f0b429;
}

[data-theme="dark"] .ab-team-card__photo {
	background: oklch(22% 0.02 240);
}

[data-theme="dark"] .ab-stat__label {
	color: rgba(255, 255, 255, 0.70);
}

@media (max-width: 960px) {
	.ab-mission__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ab-values__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ab-team__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ab-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.ab-hero {
		padding: 3.5rem 0 2.5rem;
	}

	.ab-values__grid,
	.ab-team__grid {
		grid-template-columns: 1fr;
	}

	.ab-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

/* ══════════════════════════════════════════════════════
   PARTNERS PAGE
   ══════════════════════════════════════════════════════ */

.pt-hero {
	background: #1f4d80;
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

.pt-hero__dot-bg {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
	background-size: 26px 26px;
	pointer-events: none;
}

.pt-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 260px;
	gap: 3rem;
	align-items: center;
	text-align: left;
	max-width: none;
	margin: 0;
}

.pt-hero__text {
	max-width: 560px;
}

.pt-hero__heading {
	font-size: clamp(2.25rem, 4.5vw, 3.5rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0.5rem 0 1.25rem;
}

.pt-hero__heading em {
	font-style: normal;
	color: #f0b429;
}

.pt-hero__sub {
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.75;
}

.pt-hero__stats {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex-shrink: 0;
}

.pt-hero__stat-card {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 16px;
	padding: 1.5rem 2rem;
	text-align: center;
	backdrop-filter: blur(8px);
}

.pt-hero__stat-num {
	display: block;
	font-size: 2.75rem;
	font-weight: 800;
	color: #f0b429;
	line-height: 1;
}

.pt-hero__stat-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 0.4rem;
}

.pt-insurers {
	padding: 5rem 0;
}

.pt-section-head {
	margin-bottom: 2.5rem;
	max-width: 640px;
}

.pt-section-sub {
	color: #4a6080;
	line-height: 1.7;
	margin-top: 0.75rem;
}

/* Partner logo grid */
.pt-partner-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.pt-partner-card {
	background: #fff;
	border: 1px solid rgba(31, 77, 128, 0.1);
	border-radius: 16px;
	padding: 1.5rem 1.25rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	transition: box-shadow 0.25s, transform 0.25s;
}

.pt-partner-card:hover {
	box-shadow: 0 8px 28px rgba(31, 77, 128, 0.12);
	transform: translateY(-3px);
}

.pt-partner-card img {
	height: 44px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.7;
	transition: filter 0.3s, opacity 0.3s;
}

.pt-partner-card:hover img {
	filter: none;
	opacity: 1;
}

.pt-partner-card span {
	font-size: 0.72rem;
	font-weight: 600;
	color: #6b7280;
	text-align: center;
	line-height: 1.3;
}

/* Why section */
.pt-why {
	padding: 5rem 0;
	background: oklch(97.5% 0.006 240);
}

.pt-why__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.pt-why__media {
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: 0 16px 48px rgba(31, 77, 128, 0.12);
}

.pt-why__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Clients grid */
.pt-clients {
	padding: 5rem 0;
}

.pt-client-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
	margin-top: 0.5rem;
}

.pt-client-card {
	background: #fff;
	border: 1px solid rgba(31, 77, 128, 0.08);
	border-radius: 14px;
	padding: 1.25rem 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: box-shadow 0.2s, transform 0.2s;
}

.pt-client-card:hover {
	box-shadow: 0 6px 20px rgba(31, 77, 128, 0.1);
	transform: translateY(-2px);
}

.pt-client-card img {
	height: 36px;
	width: auto;
	max-width: 100px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.65;
	transition: filter 0.3s, opacity 0.3s;
}

.pt-client-card:hover img {
	filter: none;
	opacity: 1;
}

/* Dark mode — partners */
[data-theme="dark"] .pt-hero {
	background: #163a62;
}

[data-theme="dark"] .pt-why {
	background: oklch(18% 0.02 240);
}

[data-theme="dark"] .pt-partner-card,
[data-theme="dark"] .pt-client-card {
	background: #ffffff;
	border-color: rgba(31, 77, 128, 0.10);
}

[data-theme="dark"] .pt-partner-card img,
[data-theme="dark"] .pt-client-card img {
	filter: grayscale(1);
	opacity: 0.65;
}

[data-theme="dark"] .pt-partner-card:hover img,
[data-theme="dark"] .pt-client-card:hover img {
	filter: none;
	opacity: 1;
}

[data-theme="dark"] .pt-partner-card span {
	color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 960px) {
	.pt-partner-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.pt-client-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.pt-why__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.pt-hero__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.pt-hero__stats {
		flex-direction: row;
		justify-content: center;
	}

	.pt-hero__stat-card {
		flex: 1;
		min-width: 0;
	}
}

@media (max-width: 600px) {
	.pt-hero {
		padding: 3.5rem 0 2.5rem;
	}

	.pt-partner-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pt-client-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pt-insurers,
	.pt-why,
	.pt-clients {
		padding: 3rem 0;
	}
}

/* ── Values grid — 5-col variant ───────────────────────────── */
.ab-values__grid--5 {
	grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1100px) {
	.ab-values__grid--5 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 700px) {
	.ab-values__grid--5 {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── TeamShowcase ──────────────────────────────────────────── */
.ts-showcase {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 3.5rem;
	align-items: start;
	margin-top: 3rem;
}

.ts-photos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.ts-photo-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	width: calc(25% - 0.5625rem);
	height: 280px;
	background: oklch(91% 0.015 240);
	flex-shrink: 0;
}

.ts-photo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 12%;
	display: block;
	filter: grayscale(1);
	transition: filter 0.4s ease-out, transform 0.5s ease-out;
}

.ts-photos.has-hover .ts-photo-card:not(.is-active) img {
	filter: grayscale(1) brightness(0.4);
}

.ts-photos.has-hover .ts-photo-card.is-active img {
	filter: grayscale(0);
	transform: scale(1.04);
}

.ts-photo-card--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: oklch(88% 0.04 220);
}

.ts-photo-card__initials {
	font-size: 2rem;
	font-weight: 800;
	color: oklch(38% 0.09 230);
	letter-spacing: -0.02em;
	user-select: none;
	transition: color 0.3s;
}

.ts-photos.has-hover .ts-photo-card--placeholder.is-active .ts-photo-card__initials {
	color: oklch(22% 0.06 240);
}

.ts-photo-card__label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2rem 0.9rem 0.9rem;
	background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
	color: #fff;
	transform: translateY(6px);
	opacity: 0;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
	pointer-events: none;
}

.ts-photo-card.is-active .ts-photo-card__label {
	transform: translateY(0);
	opacity: 1;
}

.ts-photo-card__label strong {
	display: block;
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.3;
}

.ts-photo-card__label span {
	font-size: 0.7rem;
	opacity: 0.78;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Sidebar */
.ts-sidebar {
	position: relative;
	padding-left: 1.25rem;
	padding-top: 0.25rem;
}

.ts-sidebar::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background: oklch(88% 0.012 240);
}

.ts-indicator {
	position: absolute;
	left: -1px;
	width: 3px;
	border-radius: 2px;
	background: #f0b429;
	transition: top 0.28s cubic-bezier(0.4, 0, 0.2, 1), height 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
	opacity: 0;
	pointer-events: none;
}

.ts-indicator.is-visible { opacity: 1; }

.ts-name-item {
	display: block;
	width: 100%;
	text-align: left;
	padding: 0.85rem 0;
	border: none;
	border-bottom: 1px solid oklch(91% 0.01 240);
	background: none;
	cursor: pointer;
	transition: padding-left 0.22s ease-out;
}

.ts-name-item:last-child { border-bottom: none; }

.ts-name-item.is-active { padding-left: 0.4rem; }

.ts-name-item__name {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	color: oklch(22% 0.04 240);
	transition: color 0.22s;
}

.ts-name-item.is-active .ts-name-item__name { color: #f0b429; }

.ts-name-item__role {
	display: block;
	font-size: 0.72rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: oklch(54% 0.03 240);
	margin-top: 0.15rem;
}

/* Bio panel */
.ts-bio-panel {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid oklch(91% 0.01 240);
	min-height: 3rem;
}

.ts-bio-text {
	font-size: 0.95rem;
	color: #6b7280;
	line-height: 1.7;
	margin: 0;
	max-width: 65ch;
	animation: ts-fade-in 0.25s ease-out;
}

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

/* Dark mode — TeamShowcase */
[data-theme="dark"] .ts-sidebar::before,
[data-theme="dark"] .ts-name-item,
[data-theme="dark"] .ts-bio-panel {
	border-color: oklch(28% 0.025 240);
}

[data-theme="dark"] .ts-name-item__name { color: oklch(88% 0.02 240); }
[data-theme="dark"] .ts-name-item.is-active .ts-name-item__name { color: #f0b429; }
[data-theme="dark"] .ts-name-item__role { color: oklch(60% 0.03 240); }
[data-theme="dark"] .ts-indicator { background: #f0b429; }
[data-theme="dark"] .ts-photo-card {
	background: linear-gradient(155deg, oklch(36% 0.09 215) 0%, oklch(25% 0.06 238) 100%);
}
[data-theme="dark"] .ts-photo-card--placeholder {
	background: linear-gradient(155deg, oklch(42% 0.11 210) 0%, oklch(30% 0.07 235) 100%);
}
[data-theme="dark"] .ts-photo-card__initials {
	color: oklch(88% 0.06 210);
}
[data-theme="dark"] .ts-photos.has-hover .ts-photo-card--placeholder.is-active .ts-photo-card__initials {
	color: #fff;
}
[data-theme="dark"] .ts-bio-text { color: rgba(255,255,255,0.72); }

@media (max-width: 900px) {
	.ts-showcase {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ts-sidebar {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
		padding-left: 0;
	}

	.ts-sidebar::before { display: none; }
	.ts-indicator { display: none; }

	.ts-name-item {
		border: 1px solid oklch(91% 0.01 240);
		border-radius: 10px;
		margin: 0.25rem;
		padding: 0.75rem 1rem;
		transition: background 0.2s;
	}

	.ts-name-item.is-active {
		padding-left: 1rem;
		background: oklch(96% 0.015 240);
	}

	[data-theme="dark"] .ts-name-item.is-active {
		background: oklch(24% 0.03 240);
	}
}

@media (max-width: 580px) {
	.ts-photo-card {
		width: calc(50% - 0.375rem);
		height: auto;
		aspect-ratio: 3 / 4;
	}

	.ts-sidebar {
		grid-template-columns: 1fr;
	}
}

/* ── Contact Map ───────────────────────────────────────────── */
.contact-map {
	padding: 4rem 0 5rem;
}

.contact-map__inner {
	text-align: center;
	margin-bottom: 3rem;
}

.contact-map__inner .hp-gradient-line {
	margin-inline: auto;
}

.contact-map__sub {
	font-size: 0.9rem;
	color: oklch(54% 0.03 240);
	margin-top: 0.5rem;
}

[data-theme="dark"] .contact-map__sub { color: oklch(62% 0.03 240); }

/* ═══════════════════════════════════════════
   DUAL MAP CARD SYSTEM
   ═══════════════════════════════════════════ */

/* ── duo wrapper ── */
.neno-duo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	flex-wrap: nowrap;
	padding-bottom: 2rem;
}

/* ── CARD 1: preview ── */
.neno-map-card {
	position: relative;
	perspective: 1000px;
	cursor: pointer;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	outline: none;
	flex-shrink: 0;
}

.neno-map-card__inner {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid rgba(31,77,128,0.10);
	box-shadow: 0 4px 24px rgba(31,77,128,0.08);
	transform-style: preserve-3d;
	transition: transform 0.15s ease, box-shadow 0.3s ease, border-color 0.3s;
	width: 280px;
	height: 160px;
}

.neno-map-card:hover .neno-map-card__inner,
.neno-map-card:focus-visible .neno-map-card__inner {
	box-shadow: 0 12px 40px rgba(31,77,128,0.15);
}

.neno-map-card.is-linked .neno-map-card__inner {
	border-color: rgba(240,180,41,0.35);
	box-shadow: 0 6px 28px rgba(31,77,128,0.12), 0 0 0 3px rgba(240,180,41,0.10);
}

/* split flash — brief white burst on click */
.neno-split-flash {
	position: absolute;
	inset: 0;
	border-radius: 20px;
	background: rgba(240,180,41,0.18);
	opacity: 0;
	pointer-events: none;
	z-index: 20;
}

.neno-split-flash.is-flashing {
	animation: split-flash 0.55s ease-out forwards;
}

@keyframes split-flash {
	0%   { opacity: 1; transform: scale(1); }
	40%  { opacity: 0.6; transform: scale(1.06); }
	100% { opacity: 0; transform: scale(1.12); }
}

/* overlay gradient */
.neno-map-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(31,77,128,0.04) 0%, transparent 50%, rgba(31,77,128,0.06) 100%);
	pointer-events: none;
}

/* grid pattern */
.neno-map-card__grid {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	color: #1f4d80;
	transition: opacity 0.3s;
}

/* streets layer */
.neno-map-card__streets {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s;
}

.neno-map-card__streets.is-visible { opacity: 1; }

.neno-map-card__streets-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* roads */
.neno-road {
	stroke: #1f4d80;
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
	transition: stroke-dashoffset 0s;
}

.neno-road--main { opacity: 0.18; }
.neno-road--sec  { opacity: 0.08; }

.neno-road.is-drawn {
	stroke-dashoffset: 0;
	transition: stroke-dashoffset 0.7s ease var(--d, 0s);
}

/* buildings */
.neno-map-building {
	position: absolute;
	border-radius: 3px;
	background: rgba(31,77,128,0.18);
	border: 1px solid rgba(31,77,128,0.12);
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.4s ease var(--d, 0s), transform 0.4s ease var(--d, 0s);
}

.neno-map-building.is-drawn { opacity: 1; transform: scale(1); }

/* location pin */
.neno-map-pin {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0) translateY(-20px);
	opacity: 0;
	transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.3s, opacity 0.3s ease 0.3s;
	filter: drop-shadow(0 4px 12px rgba(240,180,41,0.45));
}

.neno-map-pin.is-drawn {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1) translateY(0);
}

.neno-map-card__fade {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 40%;
	background: linear-gradient(to top, rgba(255,255,255,0.55), transparent);
	pointer-events: none;
}

/* card content */
.neno-map-card__content {
	position: relative;
	z-index: 10;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
}

.neno-map-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.neno-map-icon {
	color: #f0b429;
	filter: drop-shadow(0 0 4px rgba(240,180,41,0.4));
	transition: filter 0.3s, opacity 0.3s;
}

.neno-map-card:hover .neno-map-icon {
	filter: drop-shadow(0 0 8px rgba(240,180,41,0.7));
}

.neno-map-card__status {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(31,77,128,0.06);
	backdrop-filter: blur(4px);
	transition: background 0.2s;
}

.neno-map-card:hover .neno-map-card__status,
.neno-gmap-card .neno-map-card__status {
	background: rgba(31,77,128,0.10);
}

.neno-map-card__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #f0b429;
	animation: map-pulse 2s ease-in-out infinite;
}

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

.neno-map-card__live {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #1f4d80;
}

.neno-map-card__bottom {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.neno-map-card__loc {
	font-size: 0.9rem;
	font-weight: 600;
	color: #1f4d80;
	margin: 0;
	letter-spacing: -0.01em;
	transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.neno-map-card:hover .neno-map-card__loc { transform: translateX(4px); }

.neno-map-card__coords {
	font-size: 0.75rem;
	font-family: monospace;
	color: #6b7280;
	margin: 0;
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.25s, height 0.25s;
}

.neno-map-card__coords.is-visible { height: 1.2em; opacity: 1; }

.neno-map-card__line {
	height: 1px;
	background: linear-gradient(to right, rgba(240,180,41,0.5), rgba(240,180,41,0.25), transparent);
	transform: scaleX(0.3);
	transform-origin: left;
	transition: transform 0.4s ease;
}

/* hint text */
.neno-map-hint {
	font-size: 10px;
	color: #6b7280;
	white-space: nowrap;
	margin: 8px 0 0;
	opacity: 0;
	transform: translateY(4px);
	text-align: center;
	transition: opacity 0.2s, transform 0.2s;
}

/* ── connector between cards ── */
.neno-connector {
	display: flex;
	align-items: center;
	gap: 0;
	width: 0;
	overflow: hidden;
	opacity: 0;
	transition: width 0.4s cubic-bezier(0.34,1.56,0.64,1) 0.15s,
	            opacity 0.3s ease 0.15s;
	flex-shrink: 0;
	margin-top: -2px;
}

.neno-duo.is-open .neno-connector {
	width: 48px;
	opacity: 1;
}

.neno-connector__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #f0b429;
	flex-shrink: 0;
	box-shadow: 0 0 6px rgba(240,180,41,0.5);
}

.neno-connector__line {
	flex: 1;
	height: 1.5px;
	background: linear-gradient(to right, #f0b429, rgba(240,180,41,0.4));
}

/* ── CARD 2: Google Map ── */
.neno-gmap-card {
	flex-shrink: 0;
	width: 280px;
	height: 220px;
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid rgba(31,77,128,0.10);
	box-shadow: 0 4px 24px rgba(31,77,128,0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;

	/* spawn animation state */
	opacity: 0;
	transform: scale(0.4) translateX(-40px);
	pointer-events: none;
	transition: none;
}

.neno-duo.is-open .neno-gmap-card {
	opacity: 1;
	transform: scale(1) translateX(0);
	pointer-events: auto;
	animation: gmap-spawn 0.55s cubic-bezier(0.34,1.56,0.64,1) 0.12s both;
}

@keyframes gmap-spawn {
	0%   { opacity: 0; transform: scale(0.3) translateX(-60px); filter: blur(6px); }
	55%  { filter: blur(0); }
	75%  { transform: scale(1.05) translateX(3px); }
	100% { opacity: 1; transform: scale(1) translateX(0); }
}

.neno-gmap-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.65rem 1rem 0.55rem;
	border-bottom: 1px solid rgba(31,77,128,0.07);
	flex-shrink: 0;
}

.neno-gmap-card__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: none;
	background: rgba(31,77,128,0.07);
	color: #1f4d80;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	padding: 0;
}

.neno-gmap-card__close:hover {
	background: rgba(31,77,128,0.15);
	transform: scale(1.1);
}

.neno-gmap-card__body {
	flex: 1;
	overflow: hidden;
	position: relative;
}

.neno-gmap-card__body iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.neno-gmap-card__footer {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0.5rem 1rem;
	font-size: 0.7rem;
	color: #6b7280;
	border-top: 1px solid rgba(31,77,128,0.06);
	flex-shrink: 0;
	line-height: 1.3;
}

.neno-gmap-card__footer svg {
	flex-shrink: 0;
	color: #f0b429;
}

/* ── dark mode ── */
[data-theme="dark"] .neno-map-card__inner {
	background: oklch(20% 0.025 240);
	border-color: rgba(138,168,200,0.14);
	box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

[data-theme="dark"] .neno-map-card:hover .neno-map-card__inner,
[data-theme="dark"] .neno-map-card:focus-visible .neno-map-card__inner {
	box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

[data-theme="dark"] .neno-map-card.is-linked .neno-map-card__inner {
	border-color: rgba(240,180,41,0.30);
	box-shadow: 0 6px 28px rgba(0,0,0,0.3), 0 0 0 3px rgba(240,180,41,0.08);
}

[data-theme="dark"] .neno-map-card__overlay {
	background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 50%, rgba(255,255,255,0.03) 100%);
}

[data-theme="dark"] .neno-road { stroke: #a8c4e0; }
[data-theme="dark"] .neno-road--main { opacity: 0.20; }
[data-theme="dark"] .neno-road--sec  { opacity: 0.09; }

[data-theme="dark"] .neno-map-building {
	background: rgba(168,196,224,0.12);
	border-color: rgba(168,196,224,0.09);
}

[data-theme="dark"] .neno-map-card__fade {
	background: linear-gradient(to top, rgba(15,25,41,0.65), transparent);
}

[data-theme="dark"] .neno-map-card__status { background: rgba(255,255,255,0.05); }
[data-theme="dark"] .neno-map-card:hover .neno-map-card__status { background: rgba(255,255,255,0.08); }
[data-theme="dark"] .neno-map-card__live   { color: rgba(168,196,224,0.8); }
[data-theme="dark"] .neno-map-card__loc    { color: #d4e4f5; }
[data-theme="dark"] .neno-map-card__coords { color: rgba(168,196,224,0.6); }
[data-theme="dark"] .neno-map-card__grid   { color: #a8c4e0; }
[data-theme="dark"] .neno-map-hint         { color: rgba(168,196,224,0.55); }

[data-theme="dark"] .neno-gmap-card {
	background: oklch(20% 0.025 240);
	border-color: rgba(138,168,200,0.14);
	box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

[data-theme="dark"] .neno-gmap-card__header {
	border-color: rgba(138,168,200,0.10);
}

[data-theme="dark"] .neno-gmap-card__footer {
	border-color: rgba(138,168,200,0.08);
	color: rgba(168,196,224,0.55);
}

[data-theme="dark"] .neno-gmap-card__close {
	background: rgba(255,255,255,0.06);
	color: #a8c4e0;
}

[data-theme="dark"] .neno-gmap-card__close:hover {
	background: rgba(255,255,255,0.12);
}

[data-theme="dark"] .neno-map-card__live { color: rgba(168,196,224,0.8); }

/* ── mobile: stack vertically ── */
@media (max-width: 640px) {
	.neno-duo { flex-direction: column; align-items: center; }

	.neno-connector {
		width: 1.5px !important;
		height: 0;
		flex-direction: column;
		margin: 0;
		transition: width 0s, height 0.4s cubic-bezier(0.34,1.56,0.64,1) 0.15s,
		            opacity 0.3s ease 0.15s;
	}

	.neno-duo.is-open .neno-connector { width: 1.5px !important; height: 32px; }

	.neno-connector__line {
		flex: 1;
		width: 1.5px;
		height: auto;
		background: linear-gradient(to bottom, #f0b429, rgba(240,180,41,0.4));
	}

	.neno-map-card__inner,
	.neno-gmap-card { width: min(90vw, 320px); }

	@keyframes gmap-spawn {
		0%   { opacity: 0; transform: scale(0.3) translateY(-40px); filter: blur(6px); }
		55%  { filter: blur(0); }
		75%  { transform: scale(1.05) translateY(3px); }
		100% { opacity: 1; transform: scale(1) translateY(0); }
	}
}

/* ── Skip link ─────────────────────────────────────────────── */
.skip-link {
	position: absolute;
	top: -100%;
	left: 1rem;
	padding: 0.6rem 1.25rem;
	background: #0f2558;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: 0 0 10px 10px;
	z-index: 9999;
	text-decoration: none;
	transition: top 0.18s;
}
.skip-link:focus { top: 0; }

/* ── Insights Archive ──────────────────────────────────────── */
.insights-hero {
	padding: 5rem 0 3rem;
}

.insights-hero__inner {
	max-width: 680px;
}

.insight-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3.5rem;
}

.insight-card {
	background: #fff;
	border: 1px solid oklch(91% 0.01 240);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.25s, transform 0.25s;
}

.insight-card:hover {
	box-shadow: 0 16px 48px rgba(15, 37, 88, 0.10);
	transform: translateY(-4px);
}

.insight-card__img {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: oklch(92% 0.015 240);
}

.insight-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease-out;
}

.insight-card:hover .insight-card__img img {
	transform: scale(1.04);
}

.insight-card__body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.insight-card__tags {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	margin-bottom: 0.75rem;
}

.insight-card__tag {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #1a3a7a;
	background: oklch(94% 0.025 240);
	border-radius: 4px;
	padding: 0.2rem 0.55rem;
}

.insight-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #1f4d80;
	line-height: 1.4;
	margin: 0 0 0.6rem;
}

.insight-card__excerpt {
	font-size: 0.85rem;
	color: #6b7280;
	line-height: 1.65;
	margin: 0 0 1.25rem;
	flex: 1;
}

.insight-card__meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.75rem;
	color: oklch(54% 0.03 240);
	border-top: 1px solid oklch(92% 0.01 240);
	padding-top: 1rem;
	margin-top: auto;
}

.insight-card__meta span { display: flex; align-items: center; gap: 0.3rem; }
.insight-card__meta svg { flex-shrink: 0; }

.insight-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: #1a3a7a;
	text-decoration: none;
	margin-top: 1rem;
	transition: gap 0.2s;
}
.insight-card__link:hover { gap: 0.6rem; }

/* Dark mode — insights archive */
[data-theme="dark"] .insight-card {
	background: oklch(20% 0.02 240);
	border-color: oklch(28% 0.02 240);
}
[data-theme="dark"] .insight-card__tag {
	background: oklch(26% 0.04 240);
	color: oklch(78% 0.06 220);
}
[data-theme="dark"] .insight-card__title { color: #fff; }
[data-theme="dark"] .insight-card__excerpt { color: rgba(255,255,255,0.65); }
[data-theme="dark"] .insight-card__meta { border-color: oklch(28% 0.02 240); color: oklch(58% 0.03 240); }
[data-theme="dark"] .insight-card__link { color: oklch(75% 0.09 220); }

@media (max-width: 900px) {
	.insight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
	.insight-grid { grid-template-columns: 1fr; }
}

/* ── Single Insight Article ────────────────────────────────── */
.insight-article {
	padding: 0 0 5rem;
}

.insight-article__hero {
	width: 100%;
	aspect-ratio: 21 / 8;
	overflow: hidden;
	background: oklch(88% 0.02 240);
}

.insight-article__hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.insight-article__header {
	max-width: 760px;
	margin: 3rem auto 0;
	padding: 0 1.5rem;
}

.insight-article__breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.78rem;
	color: oklch(54% 0.03 240);
	margin-bottom: 1.25rem;
}
.insight-article__breadcrumb a { color: inherit; text-decoration: none; }
.insight-article__breadcrumb a:hover { color: #1a3a7a; }
.insight-article__breadcrumb svg { flex-shrink: 0; }

.insight-article__tags {
	display: flex;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

.insight-article__title {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 800;
	color: #1f4d80;
	line-height: 1.25;
	margin: 0 0 1rem;
}

.insight-article__meta {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 0.82rem;
	color: oklch(54% 0.03 240);
	padding-bottom: 1.5rem;
	border-bottom: 1px solid oklch(91% 0.01 240);
}

.insight-article__body {
	max-width: 760px;
	margin: 2rem auto 0;
	padding: 0 1.5rem;
	font-size: 1rem;
	line-height: 1.8;
	color: oklch(28% 0.03 240);
}

.insight-article__body h2 {
	font-size: 1.45rem;
	font-weight: 800;
	color: #1f4d80;
	margin: 2.5rem 0 0.75rem;
	line-height: 1.3;
}

.insight-article__body h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1f4d80;
	margin: 2rem 0 0.5rem;
}

.insight-article__body p { margin: 0 0 1.2rem; }

.insight-article__body ul,
.insight-article__body ol {
	margin: 0 0 1.2rem 1.5rem;
}

.insight-article__body li { margin-bottom: 0.4rem; }

.insight-article__body strong { color: oklch(22% 0.04 240); }

.insight-article__body .callout {
	background: oklch(95% 0.025 240);
	border-left: 4px solid #1a3a7a;
	border-radius: 0 12px 12px 0;
	padding: 1rem 1.25rem;
	margin: 1.5rem 0;
	font-size: 0.95rem;
}

.insight-disclaimer {
	max-width: 760px;
	margin: 3rem auto 0;
	padding: 1.25rem 1.5rem;
	background: oklch(96% 0.012 240);
	border: 1px solid oklch(88% 0.02 240);
	border-radius: 12px;
	font-size: 0.8rem;
	color: oklch(48% 0.03 240);
	line-height: 1.65;
}

.insight-disclaimer strong {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.4rem;
	color: oklch(40% 0.04 240);
}

/* Dark mode — article */
[data-theme="dark"] .insight-article__title { color: #fff; }
[data-theme="dark"] .insight-article__meta { border-color: oklch(28% 0.02 240); color: oklch(58% 0.03 240); }
[data-theme="dark"] .insight-article__body { color: rgba(255,255,255,0.82); }
[data-theme="dark"] .insight-article__body h2,
[data-theme="dark"] .insight-article__body h3 { color: #fff; }
[data-theme="dark"] .insight-article__body strong { color: #fff; }
[data-theme="dark"] .insight-article__body .callout {
	background: oklch(22% 0.04 240);
	border-left-color: oklch(65% 0.1 220);
}
[data-theme="dark"] .insight-disclaimer {
	background: oklch(18% 0.02 240);
	border-color: oklch(28% 0.02 240);
	color: oklch(62% 0.03 240);
}
[data-theme="dark"] .insight-disclaimer strong { color: oklch(70% 0.03 240); }
[data-theme="dark"] .insight-article__breadcrumb { color: oklch(58% 0.03 240); }
[data-theme="dark"] .insight-article__breadcrumb a:hover { color: oklch(75% 0.09 220); }

@media (max-width: 760px) {
	.insight-article__hero { aspect-ratio: 16 / 9; }
	.insight-article__header,
	.insight-article__body,
	.insight-disclaimer { padding: 0 1rem; }
}

/* ── Mwanga Tower Building Showcase ─────────────────────────── */
.ct-building {
	position: relative;
	overflow: hidden;
	padding: 100px 24px 120px;
	text-align: center;
	background: #0a0d14; /* fallback while images load */
}

/* ── Real sky layer ── */
.ct-building__sky-wrap {
	position: absolute;
	inset: -10% 0;          /* extra height so parallax scroll doesn't show edges */
	z-index: 0;
	pointer-events: none;
	will-change: transform;
}

.ct-sky {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	animation: ct-sky-drift 28s ease-in-out infinite alternate;
	transform-origin: center center;
}

/* Light sky visible by default, dark sky hidden */
.ct-sky--light { opacity: 1; }
.ct-sky--dark  { opacity: 0; }

/* In dark theme: swap visibility */
[data-theme="dark"] .ct-sky--light { opacity: 0; }
[data-theme="dark"] .ct-sky--dark  { opacity: 1; }

@keyframes ct-sky-drift {
	0%   { transform: scale(1.14) translateX(0%); }
	100% { transform: scale(1.14) translateX(-5%); }
}

/* ── Gradient overlay: top fade for text legibility ── */
.ct-building__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(
		to bottom,
		rgba(255,255,255,0.52) 0%,
		rgba(255,255,255,0.1)  35%,
		rgba(255,255,255,0)    60%
	);
}

[data-theme="dark"] .ct-building__overlay {
	background: linear-gradient(
		to bottom,
		rgba(6,8,18,0.68) 0%,
		rgba(6,8,18,0.25) 35%,
		rgba(6,8,18,0)    60%
	);
}

/* ── Content ── */
.ct-building__inner {
	position: relative;
	z-index: 2;
	max-width: 960px;
	margin: 0 auto;
}

.ct-building__header { margin-bottom: 52px; }

.ct-building__eyebrow {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: oklch(40% 0.18 52);
	margin-bottom: 10px;
}

.ct-building__title {
	font-size: clamp(1.8rem, 4.5vw, 3.2rem);
	font-weight: 800;
	color: oklch(18% 0.04 250);
	line-height: 1.05;
	margin: 0 0 14px;
	letter-spacing: -0.02em;
}

.ct-building__addr {
	font-size: 0.95rem;
	color: oklch(38% 0.04 248);
	margin: 0;
}

[data-theme="dark"] .ct-building__eyebrow { color: oklch(72% 0.2 52); }
[data-theme="dark"] .ct-building__title   { color: oklch(96% 0.008 250); }
[data-theme="dark"] .ct-building__addr    { color: oklch(70% 0.04 248); }

/* ── Stage / card ── */
.ct-building__stage {
	position: relative;
	display: inline-block;
	perspective: 1400px;
}

.ct-building__card {
	position: relative;
	display: inline-block;
	transform-style: preserve-3d;
	will-change: transform;
}

/* Frame: transparent — sky shows through */
.ct-building__frame {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background: transparent;
	box-shadow:
		0 0 0 1px rgba(0,0,0,0.12),
		0 20px 55px rgba(0,0,0,0.22),
		0 4px 12px  rgba(0,0,0,0.12);
}

[data-theme="dark"] .ct-building__frame {
	box-shadow:
		0 0 0 1px rgba(255,255,255,0.08),
		0 20px 55px rgba(0,0,0,0.55),
		0 4px 12px  rgba(0,0,0,0.3);
}

/* Shimmer sweep */
.ct-building__shimmer {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		112deg,
		transparent 15%,
		rgba(255,255,255,0.28) 50%,
		transparent 85%
	);
	background-size: 280% 100%;
	animation: ct-shimmer 6s ease-in-out infinite;
	pointer-events: none;
	z-index: 2;
}

@keyframes ct-shimmer {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* Building image: multiply removes white background against sky */
.ct-building__img {
	display: block;
	max-width: 520px;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
	mix-blend-mode: multiply;
	mask-image: radial-gradient(ellipse 92% 96% at 50% 36%, black 38%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse 92% 96% at 50% 36%, black 38%, transparent 80%);
}

/* Dark mode: multiply on sunset sky gives warm/moody tones */
[data-theme="dark"] .ct-building__img {
	filter: brightness(1.15) contrast(1.08);
}

/* ── Floating info badges ── */
.ct-building__badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: rgba(255,255,255,0.88);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 14px;
	text-align: left;
	white-space: nowrap;
	z-index: 5;
	box-shadow: 0 4px 20px rgba(0,0,0,0.14), 0 1px 4px rgba(0,0,0,0.1);
}

.ct-building__badge--a {
	top: 18%;
	right: 20px;
	animation: ct-float-a 4s ease-in-out infinite alternate;
}

.ct-building__badge--b {
	bottom: 22%;
	left: 20px;
	animation: ct-float-b 4.6s ease-in-out infinite alternate;
}

@keyframes ct-float-a {
	from { transform: translateY(0); }
	to   { transform: translateY(-9px); }
}

@keyframes ct-float-b {
	from { transform: translateY(0); }
	to   { transform: translateY(-7px); }
}

.ct-building__badge svg {
	flex-shrink: 0;
	color: oklch(48% 0.2 52);
}

.ct-building__badge strong {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	color: oklch(18% 0.04 250);
	line-height: 1.3;
}

.ct-building__badge span {
	display: block;
	font-size: 0.7rem;
	color: oklch(42% 0.04 248);
	line-height: 1.3;
}

[data-theme="dark"] .ct-building__badge {
	background: rgba(12,14,26,0.82);
	border-color: rgba(255,255,255,0.12);
	box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.25);
}

[data-theme="dark"] .ct-building__badge strong { color: oklch(95% 0.008 250); }
[data-theme="dark"] .ct-building__badge span   { color: oklch(68% 0.04 248); }
[data-theme="dark"] .ct-building__badge svg    { color: oklch(70% 0.2 52); }

@media (max-width: 680px) {
	.ct-building { padding: 72px 20px 80px; }
	.ct-building__img { max-width: 300px; }
	.ct-building__badge--a { right: 12px; }
	.ct-building__badge--b { left: 12px; }
}

@media (max-width: 440px) {
	.ct-building__badge { display: none; }
}


/* =========================================
   SUCCESS MODAL
   ========================================= */

.nso-overlay {
	position: fixed; inset: 0; z-index: 99998;
	background: rgba(5, 14, 30, 0.68);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.nso-overlay--in  { opacity: 1; }
.nso-overlay--out { opacity: 0; }

.nso-card {
	background: oklch(99% 0.005 250);
	border-radius: 24px;
	padding: 52px 44px 44px;
	max-width: 460px; width: 100%;
	text-align: center;
	position: relative;
	box-shadow: 0 32px 80px rgba(0,0,0,0.28), 0 4px 16px rgba(0,0,0,0.12);
	transform: scale(0.84) translateY(24px);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.34,1.4,0.64,1), opacity 0.3s ease;
}
.nso-overlay--in .nso-card {
	transform: scale(1) translateY(0);
	opacity: 1;
}
[data-theme="dark"] .nso-card {
	background: oklch(13% 0.025 250);
	border: 1px solid rgba(255,255,255,0.07);
}

.nso-close {
	position: absolute; top: 18px; right: 18px;
	width: 36px; height: 36px;
	background: none; border: none; cursor: pointer;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: oklch(55% 0.02 250);
	transition: background 0.2s, color 0.2s;
}
.nso-close:hover { background: oklch(92% 0.01 250); color: oklch(25% 0.02 250); }
[data-theme="dark"] .nso-close { color: oklch(55% 0.04 248); }
[data-theme="dark"] .nso-close:hover { background: rgba(255,255,255,0.08); color: oklch(90% 0.008 250); }

.nso-icon {
	width: 88px; height: 88px;
	border-radius: 50%;
	background: oklch(96% 0.05 145);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 28px;
}
[data-theme="dark"] .nso-icon { background: oklch(20% 0.05 145); }

.nso-svg { width: 48px; height: 48px; display: block; }

.nso-circle {
	stroke-dasharray: 145;
	stroke-dashoffset: 145;
	animation: nso-circle-draw 0.55s ease-out 0.15s forwards;
}
@keyframes nso-circle-draw { to { stroke-dashoffset: 0; } }

.nso-tick {
	stroke-dasharray: 55;
	stroke-dashoffset: 55;
	animation: nso-tick-draw 0.35s ease-out 0.62s forwards;
}
@keyframes nso-tick-draw { to { stroke-dashoffset: 0; } }

.nso-label {
	font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
	text-transform: uppercase;
	color: oklch(52% 0.18 145);
	margin: 0 0 10px;
}
[data-theme="dark"] .nso-label { color: oklch(65% 0.16 145); }

.nso-title {
	font-size: 1.55rem; font-weight: 700;
	color: oklch(16% 0.02 250);
	margin: 0 0 14px;
	line-height: 1.25;
}
[data-theme="dark"] .nso-title { color: oklch(95% 0.008 250); }

.nso-sub {
	font-size: 0.95rem;
	color: oklch(46% 0.02 250);
	line-height: 1.7;
	margin: 0 0 36px;
}
[data-theme="dark"] .nso-sub { color: oklch(65% 0.04 248); }

.nso-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 13px 32px;
	background: oklch(30% 0.1 250);
	color: #fff; border: none; border-radius: 12px;
	font-size: 0.92rem; font-weight: 600;
	cursor: pointer; letter-spacing: 0.02em;
	transition: background 0.2s, transform 0.15s;
}
.nso-btn:hover { background: oklch(36% 0.12 250); transform: translateY(-2px); }
.nso-btn:active { transform: translateY(0); }
.nso-btn--outline {
	background: transparent;
	border: 1.5px solid oklch(30% 0.1 250);
	color: oklch(30% 0.1 250);
	display: inline-flex; align-items: center; gap: 7px;
	text-decoration: none;
}
.nso-btn--outline:hover { background: oklch(30% 0.1 250); color: #fff; }
[data-theme="dark"] .nso-btn--outline { border-color: oklch(65% 0.1 250); color: oklch(75% 0.1 250); }
[data-theme="dark"] .nso-btn--outline:hover { background: oklch(45% 0.12 250); color: #fff; border-color: transparent; }
.nso-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.ab-profile-download {
	display: inline-flex; align-items: center; gap: 8px;
	margin-top: 24px;
}

.ab-profile-section { padding: 80px 0; text-align: center; }
.ab-profile-section__inner {
	display: flex; flex-direction: column; align-items: center; gap: 16px;
	max-width: 600px; margin: 0 auto;
}
.ab-profile-section__inner h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
	color: oklch(16% 0.02 250);
}
[data-theme="dark"] .ab-profile-section__inner h2 { color: oklch(95% 0.008 250); }
.ab-profile-section__inner p {
	color: oklch(46% 0.02 250); line-height: 1.7; margin: 0;
}
[data-theme="dark"] .ab-profile-section__inner p { color: oklch(65% 0.04 248); }

@media (max-width: 480px) {
	.nso-card { padding: 44px 28px 36px; border-radius: 20px; }
	.nso-title { font-size: 1.3rem; }
}

/* ── Form submission overlay spinner ── */
.cf-submit-overlay {
	position: absolute; inset: 0;
	background: oklch(98% 0.005 250 / 0.88);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border-radius: inherit;
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	gap: 20px;
	z-index: 10;
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
}
[data-theme="dark"] .cf-submit-overlay {
	background: oklch(14% 0.02 250 / 0.88);
}
.cf-submit-overlay.is-visible {
	opacity: 1;
	pointer-events: all;
}
.cf-submit-overlay__spinner {
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 3px solid oklch(88% 0.02 250);
	border-top-color: oklch(38% 0.14 250);
	animation: cf-spin 0.7s linear infinite;
}
[data-theme="dark"] .cf-submit-overlay__spinner {
	border-color: oklch(30% 0.04 250);
	border-top-color: oklch(65% 0.15 250);
}
@keyframes cf-spin {
	to { transform: rotate(360deg); }
}
.cf-submit-overlay__label {
	font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em;
	color: oklch(38% 0.1 250);
	text-transform: uppercase;
}
[data-theme="dark"] .cf-submit-overlay__label {
	color: oklch(70% 0.1 250);
}
.cf-submit-overlay__bar-track {
	width: 160px; height: 3px;
	background: oklch(88% 0.02 250);
	border-radius: 99px;
	overflow: hidden;
}
[data-theme="dark"] .cf-submit-overlay__bar-track {
	background: oklch(28% 0.04 250);
}
.cf-submit-overlay__bar-fill {
	height: 100%;
	width: 0%;
	background: oklch(38% 0.14 250);
	border-radius: 99px;
	transition: width 0.12s ease;
}
[data-theme="dark"] .cf-submit-overlay__bar-fill {
	background: oklch(65% 0.15 250);
}
.contact-page__form-wrap { position: relative; }
