/* ==========================================================================
   AaxicoMed — Design tokens
   ========================================================================== */
:root {
	--c-primary-900: #23104c; /* footer / darkest */
	--c-primary-800: #2a1172; /* headings, logo wordmark */
	--c-primary-700: #2e0d7b; /* buttons, icon badges */
	--c-primary-500: #502e8e; /* CTA banner background */
	--c-primary-100: #f7f6fc; /* alternating section background */
	--c-primary-50:  #efecf9; /* borders / faint fills */

	--c-accent-blue:   #4f8ef7;
	--c-accent-orange: #f5511a;
	--c-accent-yellow: #f9e43d;

	--c-text:       #23213a;
	--c-text-muted: #5c5a72;
	--c-white:      #ffffff;
	--c-border:     #e6e2f2;

	--font-heading: 'Poppins', 'Segoe UI', system-ui, sans-serif;
	--font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;

	--container: 1180px;
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--shadow-card: 0 4px 24px rgba(35, 16, 76, 0.08);
	--shadow-card-hover: 0 12px 32px rgba(35, 16, 76, 0.14);
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--c-text);
	font-size: 16px;
	line-height: 1.65;
	background: var(--c-white);
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.icon { width: 20px; height: 20px; flex-shrink: 0; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
	font-family: var(--font-heading);
	color: var(--c-primary-800);
	margin: 0 0 0.5em;
	line-height: 1.25;
	font-weight: 700;
}
p { margin: 0 0 1em; }
button { font-family: inherit; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.screen-reader-text { position: absolute; left: -9999px; }

section { position: relative; }
.section-pad { padding: 80px 0; }
.bg-alt { background: var(--c-primary-100); }
.bg-dark { background: var(--c-primary-900); color: rgba(255,255,255,0.85); }

/* ==========================================================================
   Section heading (eyebrow + title)
   ========================================================================== */
.section-heading { margin-bottom: 44px; }
.section-heading--center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-heading .eyebrow {
	display: inline-block;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-accent-orange);
	margin-bottom: 10px;
}
.section-heading h2 {
	font-size: clamp(1.6rem, 2.4vw, 2.1rem);
	position: relative;
	padding-bottom: 16px;
}
.section-heading h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 56px;
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--c-accent-orange), var(--c-accent-yellow));
}
.section-heading--center h2::after { left: 50%; transform: translateX(-50%); }
.section-heading--light h2, .section-heading--light .section-heading__sub { color: var(--c-white); }
.section-heading__sub { color: var(--c-text-muted); font-size: 1.05rem; margin-top: 8px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 0.95rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}
.btn .icon { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--c-primary-700); color: var(--c-white); }
.btn--primary:hover { background: var(--c-primary-800); box-shadow: var(--shadow-card-hover); }
.btn--outline { background: transparent; border-color: var(--c-primary-700); color: var(--c-primary-700); }
.btn--outline:hover { background: var(--c-primary-700); color: var(--c-white); }
.btn--white { background: var(--c-white); color: var(--c-primary-700); }
.btn--white:hover { background: var(--c-accent-yellow); }
.btn--text { display: inline-flex; align-items: center; gap: 8px; padding: 0; border-radius: 0; color: var(--c-primary-700); font-weight: 700; }
.btn--text:hover { color: var(--c-accent-orange); }
.btn--text .icon { transition: transform 0.15s ease; }
.btn--text:hover .icon { transform: translateX(4px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,0.96);
	backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
}
.site-logo { display: inline-flex; flex-direction: column; line-height: 1; }
.site-logo .logo-arc {
	width: 92px;
	height: 18px;
	margin-bottom: 2px;
}
.site-logo .logo-text {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--c-primary-800);
}
.site-logo img,
.site-logo .custom-logo-img { max-height: 80px; width: auto; display: block; }

.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-menu a {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--c-text);
	padding: 6px 2px;
	border-bottom: 2px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-menu a:hover,
.nav-menu a.is-active,
.nav-menu li.current-menu-item > a {
	color: var(--c-primary-700);
	border-bottom-color: var(--c-primary-700);
}
.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--c-primary-800);
	cursor: pointer;
	padding: 4px;
}
.nav-toggle .icon { width: 28px; height: 28px; }
.nav-toggle .icon.icon-close { display: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	padding: 96px 0;
	background: var(--c-primary-100);
	overflow: hidden;
	min-height: 520px;
	box-sizing: border-box;
}
.hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
	z-index: 0;
}
.hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, var(--c-primary-100) 0%, var(--c-primary-100) 28%, rgba(247,246,252,0.75) 45%, rgba(247,246,252,0.15) 65%, rgba(247,246,252,0) 78%);
}
.hero__content { position: relative; z-index: 2; max-width: 640px; }
.hero__content h1 {
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin-bottom: 0.4em;
}
.hero__content h1 .lede { color: var(--c-text); display: block; }
.hero__content h1 .accent { color: var(--c-primary-700); display: block; }
.hero__content p { color: var(--c-text-muted); font-size: 1.08rem; max-width: 52ch; }
.hero__actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

.page-hero {
	position: relative;
	overflow: hidden;
	background: var(--c-primary-100);
	min-height: 420px;
	padding: 64px 0;
	box-sizing: border-box;
}
.page-hero__media {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: 52%;
	z-index: 0;
}
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero__media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, var(--c-primary-100) 0%, rgba(247,246,252,0.65) 10%, rgba(247,246,252,0) 26%);
}
.page-hero__content { position: relative; z-index: 1; max-width: 440px; }
.page-hero__content h1 { color: var(--c-text); font-size: clamp(1.9rem, 3.6vw, 2.6rem); position: relative; padding-bottom: 18px; }
.page-hero__content h1::after {
	content: "";
	position: absolute; left: 0; bottom: 0;
	width: 64px; height: 4px; border-radius: 2px;
	background: linear-gradient(90deg, var(--c-accent-orange), var(--c-accent-yellow));
}
.page-hero__content p { color: var(--c-text-muted); font-size: 1.05rem; max-width: 50ch; margin-top: 18px; }

/* ==========================================================================
   Feature strip (3-col icon+text, used under hero)
   ========================================================================== */
.feature-strip-section {
	background: var(--c-primary-100);
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
}
.feature-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	padding-top: 48px;
	padding-bottom: 48px;
}
.feature-item { display: flex; gap: 20px; align-items: flex-start; padding: 0 32px; border-left: 1px solid var(--c-border); }
.feature-item:first-child { padding-left: 0; border-left: none; }
.feature-item:last-child { padding-right: 0; }
.feature-item__icon { flex-shrink: 0; display: inline-flex; color: var(--c-primary-700); }
.feature-item__icon .icon { width: 44px; height: 44px; }
.feature-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.feature-item p { color: var(--c-text-muted); font-size: 0.94rem; margin: 0; }

.icon-badge {
	width: 52px; height: 52px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: var(--radius-sm);
	background: var(--c-primary-700);
	color: var(--c-white);
}
.icon-badge .icon { width: 26px; height: 26px; }
.icon-badge--outline {
	background: transparent;
	border: 1.5px solid var(--c-primary-700);
	color: var(--c-primary-700);
}
.icon-badge--circle { border-radius: 50%; }
.icon-badge--lg { width: 68px; height: 68px; }
.icon-badge--lg .icon { width: 32px; height: 32px; }

/* ==========================================================================
   Cards — business divisions
   ========================================================================== */
.division-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.division-card {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	display: flex;
	flex-direction: column;
}
.division-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.division-card__media { position: relative; height: 168px; }
.division-card__media img { width: 100%; height: 100%; object-fit: cover; }
.division-card__badge {
	position: absolute; left: 20px; bottom: -22px;
	width: 52px; height: 52px;
	display: flex; align-items: center; justify-content: center;
	background: var(--c-primary-700);
	border-radius: var(--radius-sm);
	border: 3px solid var(--c-white);
	color: var(--c-white);
	box-shadow: var(--shadow-card);
}
.division-card__badge .icon { width: 24px; height: 24px; }
.division-card__body { padding: 34px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.division-card__body h3 { font-size: 1.2rem; position: relative; padding-bottom: 10px; margin-bottom: 12px; }
.division-card__body h3::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 34px; height: 3px; border-radius: 2px;
	background: linear-gradient(90deg, var(--c-accent-orange), var(--c-accent-yellow));
}
.division-card__body p { color: var(--c-text-muted); font-size: 0.95rem; flex: 1; }
.feature-list { margin: 4px 0 18px; }
.feature-list li {
	display: flex; gap: 10px; align-items: flex-start;
	font-size: 0.92rem; color: var(--c-text-muted);
	padding: 5px 0;
}
.feature-list li .icon { width: 16px; height: 16px; color: var(--c-primary-700); flex-shrink: 0; margin-top: 3px; }

/* ==========================================================================
   Icon grid (support functions)
   ========================================================================== */
.icon-card-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 22px;
}
.icon-card {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 30px 20px;
	text-align: center;
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.icon-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); border-color: transparent; }
.icon-card .icon-badge { margin: 0 auto 16px; background: var(--c-primary-50); color: var(--c-primary-700); }
.icon-card h3 { font-size: 1rem; margin-bottom: 10px; }
.icon-card p { font-size: 0.88rem; color: var(--c-text-muted); margin-bottom: 14px; }
.icon-card .btn--text { font-size: 0.88rem; }

/* ==========================================================================
   About teaser / split sections
   ========================================================================== */
.split-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.split-section__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-section__content .eyebrow {
	display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: 0.12em;
	text-transform: uppercase; color: var(--c-accent-orange); margin-bottom: 10px;
}
.split-section__content h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.split-section__content p { color: var(--c-text-muted); }

/* ==========================================================================
   Info cards (mission/vision/values/commitment, 2x2 grid)
   ========================================================================== */
.who-we-are { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-card {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 28px;
	box-shadow: var(--shadow-card);
}
.info-card .icon-badge { margin-bottom: 16px; }
.info-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.info-card p, .info-card ul { color: var(--c-text-muted); font-size: 0.95rem; margin: 0; }
.info-card ul li { display: flex; gap: 8px; padding: 3px 0; align-items: flex-start; }
.info-card ul li .icon { width: 15px; height: 15px; margin-top: 4px; color: var(--c-primary-700); flex-shrink: 0; }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--c-primary-100);
}
.stat-item { text-align: center; padding: 44px 20px; border-right: 1px solid var(--c-border); }
.stat-item:last-child { border-right: none; }
.stat-item .icon-badge { margin: 0 auto 12px; background: transparent; border: 1.5px solid var(--c-primary-700); color: var(--c-primary-700); }
.stat-item .stat-num { font-family: var(--font-heading); font-weight: 800; font-size: 2rem; color: var(--c-primary-800); }
.stat-item .stat-label { color: var(--c-text-muted); font-size: 0.92rem; }

/* ==========================================================================
   Journey timeline
   ========================================================================== */
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; padding-top: 10px; }
.timeline::before {
	content: "";
	position: absolute; top: 34px; left: 8%; right: 8%; height: 2px;
	background: var(--c-primary-50);
}
.timeline-step { text-align: center; position: relative; }
.timeline-step .icon-badge { margin: 0 auto 18px; background: var(--c-white); border: 2px solid var(--c-primary-700); color: var(--c-primary-700); position: relative; z-index: 1; }
.timeline-step .year { font-family: var(--font-heading); font-weight: 700; color: var(--c-accent-orange); font-size: 0.95rem; }
.timeline-step h4 { font-size: 1rem; margin: 4px 0 8px; }
.timeline-step p { font-size: 0.86rem; color: var(--c-text-muted); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner { background: linear-gradient(120deg, var(--c-primary-500), var(--c-primary-700)); }
.cta-banner__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	padding: 40px 24px; flex-wrap: wrap;
}
.cta-banner__content { display: flex; align-items: center; gap: 20px; }
.cta-banner__icon {
	width: 68px; height: 68px; border-radius: 50%;
	background: rgba(255,255,255,0.15);
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
	color: var(--c-white);
}
.cta-banner__icon .icon { width: 34px; height: 34px; }
.cta-banner h3 { color: var(--c-white); font-size: 1.5rem; margin-bottom: 4px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0; font-size: 1.05rem; }

/* ==========================================================================
   Partners
   ========================================================================== */
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.partner-card {
	background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-md);
	padding: 32px; display: flex; gap: 24px; align-items: flex-start; box-shadow: var(--shadow-card);
}
.partner-card__logo { width: 240px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.partner-card__logo img { max-height: 160px; width: auto; }
.partner-card p { color: var(--c-text-muted); font-size: 0.95rem; }

.logo-strip { display: flex; align-items: center; justify-content: center; gap: 64px; flex-wrap: wrap; padding: 20px 0; }
.logo-strip img { max-height: 176px; width: auto; opacity: 0.85; }
.logo-strip img.logo-strip__aroa { max-height: 224px; }

.reason-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; text-align: center; }
.reason-item { padding: 0 16px; border-left: 1px solid var(--c-border); }
.reason-item:first-child { border-left: none; padding-left: 0; }
.reason-item:last-child { padding-right: 0; }
.reason-item .icon-badge {
	width: 72px; height: 72px;
	margin: 0 auto 16px;
	background: var(--c-primary-50);
	border: none;
	color: var(--c-primary-700);
}
.reason-item .icon-badge .icon { width: 32px; height: 32px; }
.reason-item h4 { font-size: 1rem; margin-bottom: 6px; }
.reason-item p { font-size: 0.88rem; color: var(--c-text-muted); }

/* ==========================================================================
   Commitment section (icon + heading split, used on Business Divisions)
   ========================================================================== */
.commitment-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: center; }
.commitment-block { display: flex; gap: 22px; align-items: center; }
.commitment-block__icon {
	width: 96px; height: 96px; flex-shrink: 0;
	border-radius: 50%;
	background: var(--c-primary-700);
	color: var(--c-white);
	display: flex; align-items: center; justify-content: center;
}
.commitment-block__icon .icon { width: 44px; height: 44px; }
.commitment-block h3 { position: relative; padding-bottom: 14px; margin-bottom: 14px; }
.commitment-block h3::after {
	content: "";
	position: absolute; left: 0; bottom: 0;
	width: 56px; height: 4px; border-radius: 2px;
	background: linear-gradient(90deg, var(--c-accent-orange), var(--c-accent-yellow));
}
.commitment-block p { color: var(--c-text-muted); font-size: 0.95rem; margin: 0; max-width: 40ch; }
.commitment-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
	text-align: center;
	border-left: 1px solid var(--c-border);
	padding-left: 48px;
}
.commitment-item__icon { display: inline-flex; color: var(--c-primary-700); margin-bottom: 14px; }
.commitment-item__icon .icon { width: 48px; height: 48px; }
.commitment-item h4 { font-size: 1rem; margin-bottom: 8px; }
.commitment-item p { font-size: 0.88rem; color: var(--c-text-muted); margin: 0; }

/* ==========================================================================
   Legal pages (Privacy Policy / Terms & Conditions)
   ========================================================================== */
.legal-updated-badge {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--c-primary-50); color: var(--c-primary-700);
	padding: 8px 16px; border-radius: 999px;
	font-size: 0.85rem; font-weight: 600;
	margin-top: 18px;
}
.legal-updated-badge .icon { width: 15px; height: 15px; }
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-section {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	padding: 36px 40px;
	margin-bottom: 24px;
	scroll-margin-top: 90px;
}
.legal-section:last-child { margin-bottom: 0; }
.legal-section__head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.legal-section__num {
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--c-primary-700); color: var(--c-white);
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}
.legal-section h2 { font-size: 1.15rem; margin: 0; }
.legal-section h4 { font-size: 0.98rem; margin: 18px 0 8px; }
.legal-section p { color: var(--c-text-muted); margin: 0 0 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 0 0 12px; }
.legal-section ul:last-child { margin-bottom: 0; }
.legal-section ul li {
	color: var(--c-text-muted);
	display: flex; gap: 10px; padding: 4px 0;
}
.legal-section ul li::before {
	content: "";
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--c-primary-700);
	margin-top: 9px;
	flex-shrink: 0;
}

.back-to-top {
	position: fixed;
	right: 24px; bottom: 24px;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--c-primary-700);
	color: var(--c-white);
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-card-hover);
	opacity: 0; pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s ease;
	z-index: 90;
	border: none; cursor: pointer;
}
.back-to-top:hover { background: var(--c-primary-800); }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top .icon { width: 20px; height: 20px; }

@media (max-width: 760px) {
	.legal-section { padding: 26px 22px; }
	.back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

/* ==========================================================================
   Why choose us (About page, 5 col)
   ========================================================================== */
.choose-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.choose-card {
	background: var(--c-primary-700); border-radius: var(--radius-md);
	padding: 30px 18px; text-align: center;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.choose-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.choose-card .icon-badge {
	margin: 0 auto 16px; width: auto; height: auto;
	background: transparent; border: none; border-radius: 0;
	color: var(--c-white);
}
.choose-card .icon-badge .icon { width: 44px; height: 44px; }
.choose-card h4 { color: var(--c-white); font-size: 0.98rem; margin-bottom: 6px; }
.choose-card p { font-size: 0.86rem; color: rgba(255,255,255,0.85); margin: 0; }

/* ==========================================================================
   Team grid
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	text-align: center;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.team-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.team-card__media { aspect-ratio: 1/1; background: var(--c-primary-50); display: flex; align-items: center; justify-content: center; padding: 44px; }
.team-card__media img { width: 100%; height: 100%; object-fit: contain; }
.team-card__body { padding: 20px 20px 26px; }
.team-card__body h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card__body h3 .team-card__last { font-weight: 400; }
.team-card__body p { color: var(--c-text-muted); font-size: 0.92rem; margin: 0; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-hero {
	position: relative;
	background: var(--c-primary-100);
	padding: 0;
	overflow: hidden;
}
.contact-hero__bg { position: absolute; inset: 0; }
.contact-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-hero__bg::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(90deg, var(--c-primary-100) 0%, rgba(247,246,252,0.94) 22%, rgba(247,246,252,0.55) 40%, rgba(247,246,252,0) 54%);
}
.contact-hero__grid {
	position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
	padding-top: 64px; padding-bottom: 64px; align-items: start;
}
.contact-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); position: relative; padding-bottom: 16px; margin-bottom: 4px; }
.contact-hero h1::after {
	content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 4px; border-radius: 2px;
	background: linear-gradient(90deg, var(--c-accent-orange), var(--c-accent-yellow));
}
.contact-hero h2 { font-size: 1.4rem; margin-top: 20px; }
.contact-info-list { margin-top: 20px; display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .icon-badge { background: transparent; border: 1.5px solid var(--c-primary-700); color: var(--c-primary-700); flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.92rem; color: var(--c-text-muted); margin: 0; white-space: pre-line; }

.contact-form-card {
	background: var(--c-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card-hover);
	padding: 36px;
}
.contact-form-card h3 { font-size: 1.3rem; position: relative; padding-bottom: 14px; margin-bottom: 6px; }
.contact-form-card h3::after {
	content: ""; position: absolute; left: 0; bottom: 0; width: 44px; height: 3px; border-radius: 2px;
	background: linear-gradient(90deg, var(--c-accent-orange), var(--c-accent-yellow));
}
.contact-form-card > p { color: var(--c-text-muted); font-size: 0.92rem; margin-bottom: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; }
.form-group label .req { color: var(--c-accent-orange); }
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--c-border);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--c-text);
	background: var(--c-white);
	transition: border-color 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--c-primary-700);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-notice { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 0.92rem; }
.form-notice--success { background: #e6f7ec; color: #16693f; }
.form-notice--error { background: #fdeaea; color: #b3261e; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item .icon-badge { margin: 0 auto 14px; background: transparent; border: 1.5px solid var(--c-primary-700); color: var(--c-primary-700); }
.trust-item h4 { font-size: 1rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.88rem; color: var(--c-text-muted); }

.map-section { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: 0; align-items: stretch; }
.map-section__info { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.map-section__embed { min-height: 380px; }
.map-section__embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--c-primary-900); color: rgba(255,255,255,0.72); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 32px; padding-bottom: 48px; }
.footer-brand .site-logo .logo-text { color: var(--c-white); }
.footer-brand .site-logo img { max-height: 80px; }
.footer-brand p { font-size: 0.92rem; margin: 16px 0 20px; max-width: 32ch; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
	width: 36px; height: 36px; border-radius: 50%;
	background: rgba(255,255,255,0.08);
	display: flex; align-items: center; justify-content: center;
	transition: background 0.15s ease;
}
.footer-social a:hover { background: var(--c-accent-yellow); color: var(--c-primary-800); }
.footer-social .icon { width: 16px; height: 16px; }
.site-footer h4 { color: var(--c-white); font-size: 1rem; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-links a:hover { color: var(--c-accent-yellow); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; margin-bottom: 14px; }
.footer-contact .icon { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--c-accent-yellow); }
.footer-contact a:hover { color: var(--c-accent-yellow); }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 20px 0;
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
	font-size: 0.85rem;
}
.footer-bottom a:hover { color: var(--c-white); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
	.split-section, .contact-hero__grid, .map-section, .who-we-are { grid-template-columns: 1fr; }
	.page-hero { padding: 0; }
	.page-hero__media { position: static; width: 100%; height: 260px; }
	.page-hero__media::before { display: none; }
	.page-hero__content { max-width: 100%; padding: 40px 0; }
	.hero { min-height: 0; padding: 0; }
	.hero__bg { position: static; width: 100%; height: 260px; }
	.hero__scrim { display: none; }
	.hero__content { max-width: 100%; padding: 40px 0; }
	.feature-strip, .division-grid, .info-grid, .partner-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
	.feature-strip { gap: 32px; }
	.feature-item { border-left: none; padding: 0; }
	.icon-card-grid, .reason-grid, .choose-grid, .timeline, .stats-strip, .trust-strip { grid-template-columns: repeat(3, 1fr); }
	.reason-item { border-left: none; padding: 0; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.timeline::before { display: none; }
	.commitment-inner { grid-template-columns: 1fr; gap: 32px; }
	.commitment-grid { grid-template-columns: repeat(2, 1fr); border-left: none; padding-left: 0; border-top: 1px solid var(--c-border); padding-top: 32px; }
}
@media (max-width: 760px) {
	.nav-menu {
		position: fixed; top: 68px; right: 0; left: 0; height: calc(100vh - 68px); background: var(--c-white);
		flex-direction: column; align-items: flex-start; gap: 0;
		padding: 10px 24px 24px; overflow-y: auto;
		transform: translateY(-8px); opacity: 0; pointer-events: none;
		transition: opacity 0.2s ease, transform 0.2s ease;
	}
	.nav-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
	.nav-menu li { width: 100%; border-bottom: 1px solid var(--c-border); }
	.nav-menu a { display: block; padding: 14px 2px; }
	.nav-toggle { display: inline-flex; }
	.nav-toggle.is-open .icon-menu { display: none; }
	.nav-toggle.is-open .icon-close { display: block; }

	.feature-strip, .division-grid, .info-grid, .partner-grid, .team-grid,
	.icon-card-grid, .reason-grid, .choose-grid, .timeline, .stats-strip, .trust-strip,
	.footer-grid { grid-template-columns: 1fr; }
	.commitment-grid { grid-template-columns: 1fr; }
	.reason-item { padding: 20px 0; border-top: 1px solid var(--c-border); }
	.reason-item:first-child { padding-top: 0; border-top: none; }
	.reason-item:last-child { padding-bottom: 0; }
	.feature-strip { gap: 0; }
	.feature-item { padding: 24px 0; border-top: 1px solid var(--c-border); }
	.feature-item:first-child { padding-top: 0; border-top: none; }
	.feature-item:last-child { padding-bottom: 0; }
	.form-row { grid-template-columns: 1fr; }
	.section-pad { padding: 56px 0; }
	.cta-banner__inner { flex-direction: column; align-items: flex-start; }
	.map-section__info { padding: 40px 24px; }
	.stat-item { border-right: none; border-bottom: 1px solid var(--c-border); }
	.stat-item:last-child { border-bottom: none; }
	.partner-card { flex-direction: column; }
	.partner-card__logo { width: 100%; }
	.partner-card__logo img { max-height: 120px; }
}
