/* =========================================================================
   SAL Innovation - main stylesheet
   -------------------------------------------------------------------------
   Direction handling: this file uses CSS logical properties
   (margin-inline, padding-inline, inset-inline, border-inline) throughout,
   so the same rules lay out correctly in both RTL (Arabic) and LTR
   (English). There is no separate rtl.css to keep in sync.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ---------------------------------------------------------------------- */
:root {
	/* Brand - overridden inline from the Customizer */
	--sal-navy: #12355F;
	--sal-teal: #0F9CAC;
	--sal-teal-light: #3FC0D0;

	/* Derived neutrals */
	--navy-900: #08203C;
	--navy-800: #0C2A4C;
	--navy-700: #12355F;
	--navy-600: #1B4779;

	--ink: #0E1B2A;
	--ink-70: #43536A;
	--ink-50: #6B7A90;
	--ink-30: #9AA6B7;

	--surface: #FFFFFF;
	--surface-alt: #F5F8FB;
	--surface-tint: #EDF4F7;
	--line: #E1E8EF;
	--line-strong: #CBD6E2;

	/* Type */
	--font-latin: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--font-arabic: 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
	--font: var(--font-arabic);

	/* Scale */
	--step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
	--step-0:  clamp(0.98rem, 0.94rem + 0.2vw, 1.08rem);
	--step-1:  clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
	--step-2:  clamp(1.4rem, 1.26rem + 0.7vw, 1.85rem);
	--step-3:  clamp(1.75rem, 1.5rem + 1.2vw, 2.6rem);
	--step-4:  clamp(2.1rem, 1.65rem + 2.2vw, 3.6rem);
	--step-5:  clamp(2.5rem, 1.8rem + 3.4vw, 4.6rem);

	/* Space */
	--gap: clamp(1rem, 0.8rem + 1vw, 1.6rem);
	--section-y: clamp(4rem, 3rem + 5vw, 8rem);
	--container: 1200px;
	--container-narrow: 780px;

	/* Effects */
	--radius: 14px;
	--radius-lg: 22px;
	--shadow-sm: 0 1px 2px rgba(8, 32, 60, .06), 0 2px 8px rgba(8, 32, 60, .04);
	--shadow: 0 4px 12px rgba(8, 32, 60, .07), 0 14px 38px rgba(8, 32, 60, .07);
	--shadow-lg: 0 10px 24px rgba(8, 32, 60, .1), 0 30px 70px rgba(8, 32, 60, .12);
	--ease: cubic-bezier(.22, .68, .32, 1);
	--t: .38s var(--ease);
}

.sal-ltr { --font: var(--font-latin); }

/* -------------------------------------------------------------------------
   2. Reset
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	font-family: var(--font);
	font-size: var(--step-0);
	line-height: 1.75;
	color: var(--ink-70);
	background: var(--surface);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	color: var(--ink);
	font-weight: 600;
	line-height: 1.22;
	letter-spacing: -0.015em;
}
.sal-rtl h1, .sal-rtl h2, .sal-rtl h3, .sal-rtl h4 { letter-spacing: 0; line-height: 1.4; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--sal-teal); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--navy-700); }

img, svg, iframe { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
	outline: 2px solid var(--sal-teal);
	outline-offset: 3px;
	border-radius: 4px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

.skip-link {
	position: absolute;
	inset-inline-start: -9999px;
	top: 0;
	z-index: 999;
	background: var(--navy-700);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 var(--radius) var(--radius);
}
.skip-link:focus { inset-inline-start: 12px; color: #fff; }

/* -------------------------------------------------------------------------
   3. Layout
   ---------------------------------------------------------------------- */
.container {
	width: min(100% - 2.4rem, var(--container));
	margin-inline: auto;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--about { background: var(--surface); }
.section--services { background: var(--surface-alt); }
.section--sectors { background: var(--surface); }
.section--insights { background: var(--surface-alt); }

/* -------------------------------------------------------------------------
   4. Buttons
   ---------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55em;
	padding: .78em 1.5em;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: var(--step-0);
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background var(--t), color var(--t), border-color var(--t),
	            transform var(--t), box-shadow var(--t);
	white-space: nowrap;
}
.btn--sm { padding: .58em 1.15em; font-size: var(--step--1); }
.btn--lg { padding: .95em 1.9em; }

.btn--primary {
	background: var(--navy-700);
	color: #fff;
	box-shadow: 0 4px 14px rgba(18, 53, 95, .22);
}
.btn--primary:hover {
	background: var(--sal-teal);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(15, 156, 172, .32);
}

.btn--ghost {
	background: transparent;
	color: var(--navy-700);
	border-color: var(--line-strong);
}
.btn--ghost:hover {
	border-color: var(--sal-teal);
	color: var(--sal-teal);
	background: var(--surface-tint);
}

.btn__arrow { display: inline-flex; transition: transform var(--t); }
.sal-rtl .btn__arrow { transform: scaleX(-1); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.sal-rtl .btn:hover .btn__arrow { transform: scaleX(-1) translateX(4px); }

.btn--wa { margin-top: 1.6rem; }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: .45em;
	font-weight: 600;
	color: var(--sal-teal);
}
.link-arrow svg { transition: transform var(--t); }
.sal-rtl .link-arrow svg { transform: scaleX(-1); }
.link-arrow:hover svg { transform: translateX(4px); }
.sal-rtl .link-arrow:hover svg { transform: scaleX(-1) translateX(4px); }

/* -------------------------------------------------------------------------
   5. Header
   ---------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .82);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.site-header.is-stuck {
	border-bottom-color: var(--line);
	box-shadow: 0 2px 20px rgba(8, 32, 60, .06);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	min-height: 76px;
}

/* Logo */
.sal-logo { display: inline-flex; align-items: center; }
.sal-logo__img {
	max-height: 52px;
	width: auto;
	object-fit: contain;
}
/* Footer, no white version supplied: the colour logo would lose its
   navy half against the navy footer, so it sits on a light panel. This
   also means a logo saved WITH a white background still looks right. */
.sal-logo--footer {
	display: inline-flex;
	padding: 14px 20px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
}
.sal-logo--footer .sal-logo__img { max-height: 58px; }

/* A white/knockout version was supplied - it sits directly on the navy,
   no panel needed. */
.sal-logo--footer.sal-logo--knockout {
	padding: 0;
	background: none;
	box-shadow: none;
}
.sal-logo--footer.sal-logo--knockout .sal-logo__img { max-height: 64px; }

.sal-logo--footer.sal-logo--fallback {
	background: none;
	box-shadow: none;
	padding: 0;
}

/* Shown only until a logo is uploaded. Deliberately plain type - it must
   never be mistaken for the brand mark. */
.sal-logo--fallback {
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: .01em;
	color: var(--navy-700);
}
.site-footer .sal-logo--fallback { color: #fff; }

/* Nav */
.nav__list { display: flex; align-items: center; gap: clamp(.6rem, 1.4vw, 1.7rem); }
.nav__list a {
	position: relative;
	display: inline-block;
	padding: .4em .2em;
	color: var(--ink);
	font-size: var(--step--1);
	font-weight: 500;
	transition: color var(--t);
}
.nav__list a::after {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	bottom: .1em;
	width: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--sal-teal);
	transition: width var(--t);
}
.nav__list a:hover { color: var(--sal-teal); }
.nav__list a:hover::after,
.nav__list .current-menu-item > a::after { width: 100%; }
.nav__list .current-menu-item > a { color: var(--sal-teal); }

@media (max-width: 991px) { .site-header .nav { display: none; } }

/* Header actions */
.site-header__actions { display: flex; align-items: center; gap: .7rem; }

.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	padding: .48em 1em;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	color: var(--ink);
	font-size: var(--step--1);
	font-weight: 600;
	transition: all var(--t);
}
.lang-switch:hover {
	border-color: var(--sal-teal);
	color: var(--sal-teal);
	background: var(--surface-tint);
}
.lang-switch__globe { display: inline-flex; opacity: .7; }

@media (max-width: 767px) { .site-header__cta { display: none; } }

/* Mobile toggle */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px; height: 44px;
	padding: 0 10px;
	background: transparent;
	border: 1px solid var(--line-strong);
	border-radius: 12px;
}
.nav-toggle__bar {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--ink);
	border-radius: 2px;
	transition: transform var(--t), opacity var(--t);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) { .nav-toggle { display: flex; } }

/* Mobile nav */
.mobile-nav {
	position: fixed;
	inset: 76px 0 auto 0;
	z-index: 99;
	background: #fff;
	border-bottom: 1px solid var(--line);
	box-shadow: var(--shadow);
	max-height: calc(100dvh - 76px);
	overflow-y: auto;
	animation: mnav .3s var(--ease);
}
@keyframes mnav { from { opacity: 0; transform: translateY(-10px); } }
.mobile-nav[hidden] { display: none; }
.mobile-nav__inner { padding-block: 1.4rem 2rem; }
.mobile-nav .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
.mobile-nav .nav__list a {
	display: block;
	padding: .9em 0;
	border-bottom: 1px solid var(--line);
	font-size: var(--step-1);
}
.mobile-nav .nav__list a::after { display: none; }
.mobile-nav__foot { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.5rem; }
.mobile-nav__foot .btn, .mobile-nav__foot .lang-switch { justify-content: center; text-align: center; }

/* -------------------------------------------------------------------------
   6. Hero
   ---------------------------------------------------------------------- */
.hero {
	position: relative;
	padding-block: clamp(3.5rem, 2rem + 8vw, 8rem) clamp(4rem, 2rem + 8vw, 8rem);
	overflow: hidden;
	background: linear-gradient(170deg, var(--surface-tint) 0%, #fff 55%);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: .5;
}
.hero__glow--1 {
	width: 520px; height: 520px;
	inset-inline-end: -140px;
	top: -180px;
	background: radial-gradient(circle, var(--sal-teal-light), transparent 68%);
}
.hero__glow--2 {
	width: 420px; height: 420px;
	inset-inline-start: -160px;
	bottom: -200px;
	background: radial-gradient(circle, var(--navy-600), transparent 70%);
	opacity: .22;
}
.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(18, 53, 95, .045) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(18, 53, 95, .045) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 78%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 78%);
}

.hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	align-items: center;
	gap: clamp(2rem, 4vw, 4rem);
}

/* Welcome state: a single centred column holding the logo and tagline. */
.hero--welcome {
	display: grid;
	place-items: center;
	min-height: clamp(70vh, 60vh + 10vw, 88vh);
	padding-block: clamp(3rem, 2rem + 6vw, 7rem);
}
.hero__inner--center {
	grid-template-columns: 1fr;
	justify-items: center;
	text-align: center;
}
.hero__inner--center .hero__content { max-width: 62ch; }
.hero__inner--center .hero__title,
.hero__inner--center .hero__lead { max-width: none; margin-inline: auto; }
.hero__inner--center .hero__actions { justify-content: center; }

.hero__logo { margin-bottom: clamp(1.4rem, 1rem + 1.5vw, 2.4rem); }
.hero__logo-img {
	width: auto;
	max-width: min(100%, 460px);
	max-height: clamp(88px, 7vw + 60px, 150px);
	margin-inline: auto;
	object-fit: contain;
}

.hero__tagline {
	margin: 0;
	font-size: var(--step-1);
	font-weight: 500;
	color: var(--sal-teal);
	letter-spacing: .04em;
}
.sal-rtl .hero__tagline { letter-spacing: 0; }

.hero__headline {
	margin-top: clamp(1.2rem, 1rem + 1vw, 2rem);
	font-size: var(--step-3);
	color: var(--navy-900);
	text-wrap: balance;
}
.hero__inner--center .hero__lead { margin-top: 1.1rem; margin-bottom: 0; }
.hero__inner--center .hero__actions { margin-top: 2rem; }
@media (max-width: 900px) {
	.hero__inner { grid-template-columns: 1fr; }
	.hero__visual { display: none; }
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .6em;
	margin: 0 0 1.1rem;
	padding: .4em 1.1em .4em .6em;
	background: rgba(255, 255, 255, .8);
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: var(--step--1);
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--navy-700);
	box-shadow: var(--shadow-sm);
}
.sal-rtl .hero__eyebrow { padding: .4em .6em .4em 1.1em; }
.hero__eyebrow-mark { display: inline-flex; }

.hero__title {
	font-size: var(--step-5);
	font-weight: 700;
	color: var(--navy-900);
	margin-bottom: .55em;
	max-width: 16ch;
}
.sal-ltr .hero__title { max-width: 14ch; }

.hero__lead {
	font-size: var(--step-1);
	line-height: 1.85;
	color: var(--ink-70);
	max-width: 48ch;
	margin-bottom: 2.2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Animated mark */
.hero__mark { position: relative; max-width: 420px; margin-inline: auto; }
.hero__mark-svg { width: 100%; height: auto; overflow: visible; }
.hero__ring {
	fill: none;
	stroke: var(--navy-700);
	stroke-opacity: .14;
	stroke-width: 1;
	transform-origin: 160px 160px;
}
.hero__ring--a { animation: spin 46s linear infinite; stroke-dasharray: 3 9; }
.hero__ring--b { animation: spin 34s linear infinite reverse; stroke-dasharray: 2 14; }
.hero__ring--c { stroke-opacity: .2; }
.hero__tri {
	transform-origin: 160px 160px;
	animation: float 7s ease-in-out infinite;
	filter: drop-shadow(0 12px 26px rgba(15, 156, 172, .32));
}
.hero__dot { fill: var(--sal-teal); }
.hero__dot--1 { animation: float 5.5s ease-in-out infinite; }
.hero__dot--2 { fill: var(--navy-600); animation: float 6.5s ease-in-out infinite .6s; }
.hero__dot--3 { fill: var(--sal-teal-light); animation: float 8s ease-in-out infinite 1.2s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-11px); }
}

.hero__scroll {
	position: absolute;
	inset-inline-start: 50%;
	bottom: 1.6rem;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .55rem;
	font-size: .68rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ink-50);
}
.sal-rtl .hero__scroll { transform: translateX(50%); letter-spacing: 0; }
.hero__scroll-line {
	width: 1px; height: 34px;
	background: linear-gradient(to bottom, transparent, var(--sal-teal));
}
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* -------------------------------------------------------------------------
   7. Section headings
   ---------------------------------------------------------------------- */
.sec-head { margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.6rem); }
.sec-head--center { text-align: center; margin-inline: auto; max-width: 720px; }

.kicker {
	display: inline-flex;
	align-items: center;
	gap: .6em;
	margin: 0 0 .9rem;
	font-size: var(--step--1);
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--sal-teal);
}
.sal-rtl .kicker { letter-spacing: 0; text-transform: none; }
.sec-head--center .kicker { justify-content: center; }
.kicker__bar {
	width: 26px; height: 2px;
	border-radius: 2px;
	background: var(--sal-teal);
}

.sec-title {
	font-size: var(--step-3);
	color: var(--navy-900);
	max-width: 20ch;
}
.sec-head--center .sec-title { margin-inline: auto; max-width: 24ch; }

.sec-lead {
	margin-top: 1rem;
	font-size: var(--step-1);
	color: var(--ink-70);
	max-width: 60ch;
}
.sec-head--center .sec-lead { margin-inline: auto; }

/* -------------------------------------------------------------------------
   8. About
   ---------------------------------------------------------------------- */
.about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 4.5rem);
	align-items: start;
}
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } }

.about__body { font-size: var(--step-0); line-height: 1.9; }

.about__pillars { display: grid; gap: 1rem; }

.pillar {
	position: relative;
	padding: 1.6rem 1.7rem;
	background: var(--surface-alt);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.pillar:hover {
	transform: translateY(-3px);
	border-color: transparent;
	box-shadow: var(--shadow);
	background: #fff;
}
.pillar__icon {
	display: inline-flex;
	color: var(--sal-teal);
	margin-bottom: .8rem;
}
.pillar__title { font-size: var(--step-1); margin-bottom: .4rem; }
.pillar__text { font-size: var(--step--1); line-height: 1.8; margin: 0; }

/* Stats */
.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	margin-top: clamp(3rem, 2rem + 3vw, 5rem);
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .3rem;
	padding: clamp(1.4rem, 1rem + 1.5vw, 2.4rem) 1rem;
	background: #fff;
	text-align: center;
	transition: background var(--t);
}
.stat:hover { background: var(--surface-tint); }
.stat__value {
	font-family: var(--font-latin);
	font-size: var(--step-4);
	font-weight: 700;
	line-height: 1;
	color: var(--navy-700);
	background: linear-gradient(135deg, var(--navy-700), var(--sal-teal));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.stat__label {
	font-size: var(--step--1);
	color: var(--ink-50);
	line-height: 1.5;
}

/* -------------------------------------------------------------------------
   9. Cards
   ---------------------------------------------------------------------- */
.cards { display: grid; gap: clamp(1rem, .7rem + 1vw, 1.6rem); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 950px) { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards--3 { grid-template-columns: 1fr; } }

.card {
	position: relative;
	padding: clamp(1.5rem, 1.2rem + 1vw, 2.2rem);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--sal-teal), var(--sal-teal-light));
	transform: scaleX(0);
	transform-origin: inline-start;
	transition: transform var(--t);
}
.card:hover {
	transform: translateY(-5px);
	border-color: transparent;
	box-shadow: var(--shadow-lg);
}
.card:hover::before { transform: scaleX(1); }

.card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px; height: 54px;
	margin-bottom: 1.2rem;
	border-radius: 14px;
	background: var(--surface-tint);
	color: var(--sal-teal);
	transition: background var(--t), color var(--t), transform var(--t);
}
.card:hover .card__icon {
	background: var(--sal-teal);
	color: #fff;
	transform: scale(1.06);
}

.card__title { font-size: var(--step-1); margin-bottom: .6rem; }
.card__title a { color: inherit; }
.card__title a:hover { color: var(--sal-teal); }
.card__text { font-size: var(--step--1); line-height: 1.85; margin: 0; }

.card__more {
	display: inline-flex;
	margin-top: 1.1rem;
	color: var(--sal-teal);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity var(--t), transform var(--t);
}
.sal-rtl .card__more { transform: scaleX(-1) translateX(-6px); }
.card:hover .card__more { opacity: 1; transform: translateX(0); }
.sal-rtl .card:hover .card__more { transform: scaleX(-1) translateX(0); }

/* -------------------------------------------------------------------------
   10. Approach steps (navy band)
   ---------------------------------------------------------------------- */
.section--approach {
	background:
		radial-gradient(ellipse 70% 90% at 80% 0%, rgba(15, 156, 172, .22), transparent 60%),
		linear-gradient(160deg, var(--navy-800), var(--navy-900));
	color: rgba(255, 255, 255, .72);
	overflow: hidden;
}
.section--approach .sec-title { color: #fff; }
.section--approach .kicker { color: var(--sal-teal-light); }
.section--approach .kicker__bar { background: var(--sal-teal-light); }

.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1.2rem, 1rem + 1vw, 2rem);
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
	position: relative;
	padding-top: 2.4rem;
	border-top: 1px solid rgba(255, 255, 255, .16);
}
.step::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: -1px;
	width: 42px;
	height: 2px;
	background: var(--sal-teal-light);
	transition: width .5s var(--ease);
}
.step:hover::before { width: 100%; }

.step__num {
	position: absolute;
	top: .8rem;
	inset-inline-start: 0;
	font-family: var(--font-latin);
	font-size: var(--step--1);
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--sal-teal-light);
	opacity: .9;
}
.step__title { color: #fff; font-size: var(--step-1); margin-bottom: .5rem; }
.step__text { font-size: var(--step--1); line-height: 1.85; margin: 0; color: rgba(255, 255, 255, .68); }

/* -------------------------------------------------------------------------
   11. Sectors
   ---------------------------------------------------------------------- */
.sectors {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(.8rem, .6rem + .8vw, 1.2rem);
}
@media (max-width: 900px) { .sectors { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .sectors { grid-template-columns: repeat(2, 1fr); } }

.sector {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .85rem;
	padding: clamp(1.4rem, 1.1rem + 1vw, 2rem) 1rem;
	background: var(--surface-alt);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-align: center;
	color: var(--ink);
	transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t);
}
.sector:hover {
	transform: translateY(-4px);
	background: #fff;
	border-color: transparent;
	box-shadow: var(--shadow);
	color: var(--navy-700);
}
.sector__icon { color: var(--sal-teal); transition: transform var(--t); }
.sector:hover .sector__icon { transform: scale(1.12); }
.sector__name { font-size: var(--step--1); font-weight: 600; line-height: 1.4; }

/* -------------------------------------------------------------------------
   12. Insights / post cards
   ---------------------------------------------------------------------- */
.insights__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--gap);
	flex-wrap: wrap;
}
.insights__head .sec-head { margin-bottom: clamp(1.4rem, 1rem + 1vw, 2.2rem); }

.post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.post-card:hover {
	transform: translateY(-5px);
	border-color: transparent;
	box-shadow: var(--shadow-lg);
}
.post-card__media { overflow: hidden; aspect-ratio: 3 / 2; background: var(--surface-tint); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card__date { font-size: var(--step--1); color: var(--ink-30); }
.post-card__title { font-size: var(--step-1); }
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--sal-teal); }
.post-card__excerpt { font-size: var(--step--1); line-height: 1.8; margin: 0; }

/* -------------------------------------------------------------------------
   13. Contact
   ---------------------------------------------------------------------- */
.section--contact {
	background:
		radial-gradient(ellipse 60% 80% at 10% 100%, rgba(15, 156, 172, .1), transparent 62%),
		var(--surface-alt);
}
.contact__grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: clamp(2rem, 4vw, 4.5rem);
	align-items: start;
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__list { display: grid; gap: 1.2rem; margin-top: 2rem; }
.contact__item { display: flex; align-items: flex-start; gap: .95rem; }
.contact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px; height: 42px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid var(--line);
	color: var(--sal-teal);
}
.contact__meta { display: flex; flex-direction: column; gap: .1rem; }
.contact__label { font-size: var(--step--1); color: var(--ink-30); }
.contact__value { font-weight: 600; color: var(--ink); }
a.contact__value:hover { color: var(--sal-teal); }

/* Form */
.contact__form-wrap {
	padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}
.cform { display: grid; gap: 1.1rem; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .cform__row { grid-template-columns: 1fr; } }

.cform__field { display: flex; flex-direction: column; gap: .4rem; }
.cform__label { font-size: var(--step--1); font-weight: 600; color: var(--ink); }
.cform__label span { color: var(--sal-teal); }

.cform__input {
	width: 100%;
	padding: .8em 1em;
	font: inherit;
	font-size: var(--step-0);
	color: var(--ink);
	background: var(--surface-alt);
	border: 1px solid var(--line);
	border-radius: 11px;
	transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.cform__input:focus {
	outline: none;
	background: #fff;
	border-color: var(--sal-teal);
	box-shadow: 0 0 0 4px rgba(15, 156, 172, .12);
}
.cform__input--area { resize: vertical; min-height: 130px; line-height: 1.7; }
.cform__input.is-invalid { border-color: #d14343; background: #fff6f6; }

.cform__error { font-size: var(--step--1); color: #d14343; min-height: 1.2em; }
.cform__hp { position: absolute; inset-inline-start: -9999px; opacity: 0; pointer-events: none; }
.cform__submit { justify-self: start; margin-top: .3rem; }
.cform__submit[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

.cform__status { margin: 0; font-size: var(--step--1); font-weight: 600; min-height: 1.4em; }
.cform__status.is-ok { color: #0a7c4a; }
.cform__status.is-err { color: #d14343; }

.contact__map {
	margin-top: clamp(2rem, 1.5rem + 2vw, 3.5rem);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
}
.contact__map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* -------------------------------------------------------------------------
   14. Page hero / entry / prose
   ---------------------------------------------------------------------- */
.page-hero {
	position: relative;
	padding-block: clamp(3rem, 2rem + 4vw, 5.5rem) clamp(2rem, 1.5rem + 3vw, 3.5rem);
	background: linear-gradient(170deg, var(--surface-tint), #fff);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero__title { font-size: var(--step-4); color: var(--navy-900); max-width: 24ch; }
.page-hero__lead { margin-top: 1rem; font-size: var(--step-1); max-width: 62ch; }
.page-hero__meta { margin-top: .8rem; font-size: var(--step--1); color: var(--ink-50); }

.entry__media {
	margin: 0 0 2.5rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.entry__media img { width: 100%; }

.prose { font-size: var(--step-0); line-height: 1.95; color: var(--ink-70); }
.prose h2 { font-size: var(--step-2); margin: 2.4em 0 .7em; color: var(--navy-900); }
.prose h3 { font-size: var(--step-1); margin: 1.9em 0 .6em; color: var(--navy-800); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 0 0 1.4em; padding-inline-start: 1.4em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--sal-teal); }
.prose blockquote {
	margin: 2em 0;
	padding: 1.2em 1.6em;
	border-inline-start: 3px solid var(--sal-teal);
	background: var(--surface-alt);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: var(--step-1);
	color: var(--navy-800);
}
.sal-rtl .prose blockquote { border-radius: var(--radius) 0 0 var(--radius); }
.prose img { border-radius: var(--radius); margin-block: 1.5em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; margin-block: 1.5em; }
.prose th, .prose td { padding: .7em 1em; border: 1px solid var(--line); text-align: start; }
.prose th { background: var(--surface-alt); color: var(--ink); font-weight: 600; }

.project-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.2rem;
	margin-bottom: 2.5rem;
	padding: 1.4rem 1.6rem;
	background: var(--surface-alt);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}
.project-meta__item { display: flex; flex-direction: column; gap: .2rem; }
.project-meta__label { font-size: var(--step--1); color: var(--ink-30); }
.project-meta__value { font-weight: 600; color: var(--ink); }
.project-meta__value--hl { color: var(--sal-teal); font-size: var(--step-1); }

/* Post nav */
.post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 3.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--line);
}
@media (max-width: 600px) { .post-nav { grid-template-columns: 1fr; } }
.post-nav__link {
	display: flex;
	flex-direction: column;
	gap: .25rem;
	padding: 1.1rem 1.3rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color var(--t), background var(--t);
}
.post-nav__link:hover { border-color: var(--sal-teal); background: var(--surface-alt); }
.post-nav__link--next { text-align: end; }
.post-nav__dir { font-size: var(--step--1); color: var(--ink-30); }
.post-nav__title { font-weight: 600; color: var(--ink); }

/* Pagination */
.pagination { margin-top: 3rem; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: .4rem; flex-wrap: wrap; }
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px; height: 42px;
	padding-inline: .7em;
	border: 1px solid var(--line);
	border-radius: 11px;
	color: var(--ink);
	font-weight: 600;
	transition: all var(--t);
}
.pagination .page-numbers:hover { border-color: var(--sal-teal); color: var(--sal-teal); }
.pagination .page-numbers.current {
	background: var(--navy-700);
	border-color: var(--navy-700);
	color: #fff;
}

/* Empty / 404 */
.empty { text-align: center; padding-block: 3rem; }
.empty__text { font-size: var(--step-1); margin-bottom: 1.5rem; }

.notfound { text-align: center; padding-block: clamp(2rem, 4vw, 4rem); }
.notfound__mark { display: inline-flex; margin-bottom: 1.2rem; }
.notfound__code {
	font-family: var(--font-latin);
	font-size: var(--step-5);
	font-weight: 700;
	line-height: 1;
	margin: 0 0 .3em;
	background: linear-gradient(135deg, var(--navy-700), var(--sal-teal));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.notfound__title { font-size: var(--step-2); margin-bottom: .6rem; }
.notfound__text { max-width: 46ch; margin-inline: auto; }
.notfound__actions { margin-block: 2rem; }

/* Search form */
.searchform { display: flex; gap: .5rem; max-width: 460px; margin-inline: auto; }
.searchform__input {
	flex: 1;
	padding: .75em 1.1em;
	font: inherit;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--ink);
}
.searchform__input:focus {
	outline: none;
	border-color: var(--sal-teal);
	box-shadow: 0 0 0 4px rgba(15, 156, 172, .12);
}
.searchform__btn {
	padding: .75em 1.5em;
	background: var(--navy-700);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-weight: 600;
	transition: background var(--t);
}
.searchform__btn:hover { background: var(--sal-teal); }

/* -------------------------------------------------------------------------
   15. Footer
   ---------------------------------------------------------------------- */
.site-footer {
	background:
		radial-gradient(ellipse 60% 100% at 85% 0%, rgba(15, 156, 172, .16), transparent 60%),
		linear-gradient(165deg, var(--navy-800), var(--navy-900));
	color: rgba(255, 255, 255, .62);
	padding-block: clamp(3rem, 2rem + 4vw, 5rem) 2rem;
	font-size: var(--step--1);
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.7fr 1fr;
	gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 700px) { .site-footer__grid { grid-template-columns: 1fr; } }

.site-footer__blurb { margin-top: 1.3rem; max-width: 42ch; line-height: 1.85; }

.site-footer__title {
	color: #fff;
	font-size: var(--step-0);
	margin-bottom: 1.1rem;
}
.site-footer__list { display: grid; gap: .7rem; }
.site-footer__list a { color: rgba(255, 255, 255, .62); }
.site-footer__list a:hover { color: var(--sal-teal-light); }
.site-footer__list--contact li { display: flex; align-items: flex-start; gap: .6rem; }
.site-footer__list--contact svg { color: var(--sal-teal-light); flex: 0 0 auto; margin-top: .25em; }

.social { display: flex; gap: .5rem; margin-top: 1.6rem; flex-wrap: wrap; }
.social__link {
	display: inline-flex;
	align-items: center;
	padding: .45em 1em;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	color: rgba(255, 255, 255, .75);
	font-size: var(--step--1);
	font-weight: 500;
	transition: all var(--t);
}
.social__link:hover {
	border-color: var(--sal-teal-light);
	background: rgba(15, 156, 172, .16);
	color: #fff;
}

.site-footer__widgets { margin-top: 2.5rem; }

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
	padding-top: 1.8rem;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: var(--step--1);
	color: rgba(255, 255, 255, .45);
}
.site-footer__cr { margin: 0; }
.site-footer__reg { margin-inline-start: .6em; opacity: .75; }
.site-footer__made {
	margin: 0;
	letter-spacing: .16em;
	text-transform: uppercase;
	font-size: .66rem;
}
.sal-rtl .site-footer__made { letter-spacing: 0; text-transform: none; }

/* -------------------------------------------------------------------------
   16. Reveal on scroll
   ---------------------------------------------------------------------- */
.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
	transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* No JS and reduced motion both render everything immediately. */
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1 !important; transform: none !important; transition: none; }
	.hero__ring, .hero__tri, .hero__dot { animation: none !important; }
	* { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* -------------------------------------------------------------------------
   17. Print
   ---------------------------------------------------------------------- */
@media print {
	.site-header, .mobile-nav, .hero__bg, .hero__visual, .hero__scroll,
	.contact__form-wrap, .site-footer__bottom, .nav-toggle { display: none !important; }
	body { color: #000; background: #fff; }
	.section { padding-block: 1.5rem; }
	a { color: #000; text-decoration: underline; }
}

/* -------------------------------------------------------------------------
   18. Comments
   ---------------------------------------------------------------------- */
.comments { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.comments__title { font-size: var(--step-2); margin-bottom: 1.8rem; }
.comments__list { display: grid; gap: 1.6rem; margin-bottom: 2.5rem; }
.comments__list .children { display: grid; gap: 1.6rem; margin-top: 1.6rem; padding-inline-start: 1.8rem; border-inline-start: 2px solid var(--line); }
.comments__list .comment-body { padding: 1.3rem 1.5rem; background: var(--surface-alt); border-radius: var(--radius); }
.comments__list .comment-author { display: flex; align-items: center; gap: .7rem; margin-bottom: .5rem; font-weight: 600; color: var(--ink); }
.comments__list .comment-author img { border-radius: 50%; }
.comments__list .comment-metadata { font-size: var(--step--1); color: var(--ink-30); margin-bottom: .7rem; }
.comments__list .reply { margin-top: .7rem; font-size: var(--step--1); font-weight: 600; }
.comments__closed { color: var(--ink-50); font-style: italic; }
.comments__form { margin-top: 1rem; }
.comment-form-cookies-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: var(--step--1); }
.comment-form-cookies-consent input { margin-top: .35em; }
