/* ==========================================================================
   Aero Freight & Logistics — style.css
   Corporate · Charcoal + Aero Green (brand-true) · Structured · Photography-led
   Light/Dark themes via CSS custom properties · RTL-aware (dir="rtl")
   ========================================================================== */

:root {
  /* Brand — extracted from the Aero logo (charcoal wordmark + green chevron) */
  --brand:       #18a957;
  --brand-deep:  #08743a;
  --brand-2:     #0d8b47;
  --brand-ink:   #05331c;
  --brand-soft:  #e9f3eb;
  --signal:      #df6a32;

  /* Ink & neutral scale (charcoal, faint cool-green undertone) */
  --clr-primary:   #071b2d;
  --clr-primary-2: #16334a;
  --clr-accent:    var(--brand-deep);   /* legacy hook → green */
  --clr-accent-2:  var(--brand-deep);

  --bg: #f8f6f1;
  --bg-alt: #eef1ef;
  --bg-card: #fcfbf8;
  --bg-elev: #e7ece9;
  --text: #102536;
  --text-muted: #596974;
  --border: #d9dedb;
  --hairline: rgba(7, 27, 45, .11);

  --shadow:    0 28px 64px -34px rgba(7, 27, 45, .38);
  --shadow-sm: 0 14px 34px -26px rgba(7, 27, 45, .25);

  --hero-overlay: linear-gradient(90deg, rgba(4,20,34,.93) 0%, rgba(4,20,34,.74) 45%, rgba(4,20,34,.18) 82%);
  --hero-overlay-b: linear-gradient(180deg, rgba(4,20,34,0) 55%, rgba(4,20,34,.52) 100%);
  --media-tint: linear-gradient(180deg, rgba(4,20,34,0) 58%, rgba(4,20,34,.28) 100%);
  --nav-bg: #f8f6f1;
  --footer-bg: #071b2d;
  --footer-text: #aab7bf;

  --radius: 2px;
  --radius-sm: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --motion-fast: 180ms;
  --motion-base: 280ms;
  --motion-reveal: 520ms;
  --maxw: 1280px;
}

html[data-theme="dark"] {
  --brand:       #1ecb6c;
  --brand-deep:  #35d489;
  --brand-2:     #22b863;
  --brand-ink:   #0c3f26;
  --brand-soft:  #10231a;

  --clr-primary: #f2f6f4;
  --clr-primary-2: #c3ccc7;
  --clr-accent:  #35d489;
  --clr-accent-2: #35d489;

  --bg: #070d0a;
  --bg-alt: #0c1410;
  --bg-card: #101a15;
  --bg-elev: #16221c;
  --text: #eef3f0;
  --text-muted: #93a49b;
  --border: #223029;
  --hairline: rgba(255,255,255,.08);

  --shadow:    0 26px 60px -22px rgba(0,0,0,.72);
  --shadow-sm: 0 12px 30px -16px rgba(0,0,0,.6);

  --hero-overlay: linear-gradient(115deg, rgba(3,8,6,.9) 0%, rgba(3,8,6,.62) 46%, rgba(3,10,7,.5) 100%);
  --media-tint: linear-gradient(180deg, rgba(2,8,5,0) 50%, rgba(2,8,5,.5) 100%);
  --nav-bg: rgba(8,14,11,.82);
  --footer-bg: #05100b;
  --footer-text: #859890;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 104px; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.62;
  font-size: 16.5px;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .4s var(--ease), color .4s var(--ease);
  overflow-x: hidden;
}
html[dir="rtl"] body { font-family: "Tajawal", "Segoe UI", system-ui, sans-serif; letter-spacing: 0; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--brand); color: #fff; }

.container { width: min(var(--maxw), 92%); margin-inline: auto; }

h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; letter-spacing: -0.022em; color: var(--clr-primary); }
html[data-theme="dark"] h1, html[data-theme="dark"] h2, html[data-theme="dark"] h3, html[data-theme="dark"] h4 { color: var(--text); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 { letter-spacing: 0; line-height: 1.25; }

.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

/* Eyebrow — small caps with a leading green rule (corporate signal) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-deep);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--brand); display: inline-block;
}
html[dir="rtl"] .eyebrow { letter-spacing: 0; }

.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { justify-content: center; margin-bottom: 18px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.55; }

/* ---------- Buttons (squared, corporate) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: .95rem;
  letter-spacing: -0.01em; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--clr-primary); color: #fff; }
html[data-theme="dark"] .btn-primary { background: var(--brand); color: #04140b; }
.btn-primary:hover { background: var(--brand-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 26px -12px rgba(10,109,55,.6); }
html[data-theme="dark"] .btn-primary:hover { background: var(--brand-2); }
.btn-outline { border-color: var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--brand); color: var(--brand-deep); background: var(--brand-soft); transform: translateY(-2px); }

/* On dark surfaces (hero, cta, page-hero) */
.hero .btn-primary, .page-hero .btn-primary, .cta-band .btn-primary {
  background: var(--brand); color: #04140b;
}
.hero .btn-primary:hover, .page-hero .btn-primary:hover, .cta-band .btn-primary:hover {
  background: #ffffff; color: var(--clr-primary);
}
.hero .btn-outline, .page-hero .btn-outline, .btn-outline-light {
  color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06);
}
.hero .btn-outline:hover, .page-hero .btn-outline:hover, .btn-outline-light:hover { background: #fff; color: var(--clr-primary); border-color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--clr-primary); color: rgba(255,255,255,.72); font-size: .8rem;
  padding: 8px 0; letter-spacing: -0.005em;
}
html[data-theme="dark"] .topbar { background: #040c08; border-bottom: 1px solid var(--border); }
.topbar .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.72); transition: color .2s var(--ease); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; color: var(--brand); }
.topbar .tb-group { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--nav-bg); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--hairline);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), height .3s var(--ease);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand img { height: 44px; width: auto; }
html[data-theme="dark"] .brand img { filter: brightness(0) invert(1); }

.nav-links { display: flex; align-items: center; gap: 32px; font-weight: 500; font-size: .93rem; letter-spacing: -0.008em; }
.nav-links > li { position: relative; }
.nav-mobile-quote { display: none !important; }
.nav-links a { padding: 8px 2px; position: relative; color: var(--text-muted); transition: color .2s var(--ease); }
.nav-links a:hover, .nav-links > li > a.active { color: var(--text); }
.nav-links > li > a::after {
  content: ""; position: absolute; inset-inline-start: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--brand); transition: width .28s var(--ease);
}
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { width: 100%; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 16px); inset-inline-start: 0; min-width: 270px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow); padding: 12px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .26s var(--ease);
}
.dropdown-menu::before { content: ""; position: absolute; top: -16px; inset-inline-start: 0; width: 100%; height: 16px; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-weight: 500; font-size: .875rem; color: var(--text-muted); border-inline-start: 2px solid transparent; }
.dropdown-menu a:hover { background: var(--bg-elev); color: var(--text); border-inline-start-color: var(--brand); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--border);
  background: transparent; color: var(--text); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; font-size: .95rem;
  transition: all .25s var(--ease);
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { border-color: var(--brand); color: var(--brand-deep); background: var(--brand-soft); }
.lang-btn { width: auto; padding: 0 15px; font-weight: 700; font-size: .82rem; gap: 6px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 3px; transition: all .3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; height: min(86vh, 760px); min-height: 580px; overflow: hidden; background: #06110c; }
.hero-track { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity var(--motion-reveal) var(--ease); transform: scale(1.03); will-change: transform, opacity;
  animation: none;
}
.slide.active { opacity: 1; transform: scale(1); }
.hero--single .slide.active { animation: hero-drift 16s ease-in-out infinite alternate; }
@keyframes hero-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -.5%, 0); }
}
.slide::before { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); }
.slide::after { content: ""; position: absolute; inset: 0; background: var(--hero-overlay-b); }
.hero-content {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column;
  justify-content: center; color: #fff; max-width: 720px;
}
html[dir="rtl"] .hero-content { text-align: right; }
.hero-content .eyebrow { color: #fff; margin-bottom: 20px; }
.hero-content .eyebrow::before { background: var(--brand); }
.hero-content h1 { font-size: clamp(2.3rem, 5.4vw, 4.1rem); margin-bottom: 20px; letter-spacing: -0.03em; font-weight: 800; color: #fff; }
.hero-content p { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: rgba(255,255,255,.88); margin-bottom: 34px; max-width: 560px; font-weight: 400; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 30px; inset-inline-start: 0; width: 100%; display: flex; justify-content: center; gap: 10px; z-index: 3; }
.hero-dots button {
  width: 32px; height: 3px; border-radius: 2px; border: 0; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.4); transition: background .3s, width .3s;
}
.hero-dots button.active { background: var(--brand); width: 46px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--clr-primary); color: rgba(255,255,255,.85); }
html[data-theme="dark"] .trust-strip { background: #04100a; border-block: 1px solid var(--border); }
.trust-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 40px; padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: .9rem; font-weight: 500; }
.trust-item svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; }
.trust-item strong { color: #fff; font-weight: 700; }

/* ---------- Stats strip ---------- */
.stats { background: var(--bg-alt); padding: 74px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; }
.stat { text-align: center; padding: 8px 16px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; inset-inline-start: 0; top: 12px; bottom: 12px; width: 1px; background: var(--border); }
.stat h3 { font-size: clamp(2.4rem, 4.6vw, 3.4rem); color: var(--clr-primary); font-weight: 800; letter-spacing: -0.035em; }
html[data-theme="dark"] .stat h3 { color: var(--text); }
.stat h3 span, .stat .accent { color: var(--brand-deep); }
.stat p { color: var(--text-muted); font-size: .9rem; margin-top: 6px; letter-spacing: -0.005em; }

@media (max-width: 700px) { .stat + .stat::before { display: none; } }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.split-media::after { content: ""; position: absolute; inset-inline-start: -16px; top: -16px; width: 74px; height: 74px; border-top: 3px solid var(--brand); border-inline-start: 3px solid var(--brand); border-top-left-radius: 6px; z-index: -1; }
html[dir="rtl"] .split-media::after { inset-inline-start: auto; inset-inline-end: -16px; border-inline-start: 0; border-inline-end: 3px solid var(--brand); }
.split-media .badge-year {
  position: absolute; bottom: -20px; inset-inline-end: -16px;
  background: var(--clr-primary); color: #fff;
  border-radius: 10px; padding: 18px 24px; text-align: center; box-shadow: var(--shadow);
  border-top: 3px solid var(--brand);
}
html[data-theme="dark"] .badge-year { background: var(--bg-elev); }
.badge-year strong { display: block; font-size: 1.7rem; line-height: 1.1; letter-spacing: -0.03em; color: #fff; }
html[data-theme="dark"] .badge-year strong { color: var(--text); }
.badge-year span { font-size: .72rem; color: var(--brand); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.split-body h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: 16px 0 20px; }
.split-body .eyebrow { margin-bottom: 4px; }
.split-body p { color: var(--text-muted); margin-bottom: 15px; font-size: 1.04rem; }
.checklist { margin: 22px 0 30px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 13px; align-items: start; font-weight: 500; color: var(--text); }
.checklist li::before {
  content: ""; width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; border-radius: 6px;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6d37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
html[data-theme="dark"] .checklist li::before { background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2335d489' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat; }

/* ---------- Cards / services grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  display: flex; flex-direction: column; position: relative;
}
.card::before { content: ""; position: absolute; top: 0; inset-inline-start: 0; width: 0; height: 3px; background: var(--brand); transition: width .45s var(--ease); z-index: 2; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 40%, var(--border)); }
.card:hover::before { width: 100%; }
.card-media { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.card-media picture { display: block; height: 100%; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card-media::after { content: ""; position: absolute; inset: 0; background: var(--media-tint); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 10px; letter-spacing: -0.018em; }
.card-body p { color: var(--text-muted); font-size: .95rem; flex: 1; line-height: 1.58; }
.card-link { margin-top: 20px; font-weight: 600; font-size: .88rem; color: var(--brand-deep); display: inline-flex; gap: 7px; align-items: center; }
.card-link .arrow { transition: transform .3s var(--ease); }
.card:hover .arrow { transform: translateX(5px); }
html[dir="rtl"] .card:hover .arrow { transform: translateX(-5px) scaleX(-1); }
html[dir="rtl"] .arrow { display: inline-block; transform: scaleX(-1); }

.priority-services { gap: 22px; }
.priority-card { border-top: 3px solid var(--brand); }
.priority-card .card-body { padding-top: 22px; }
.priority-index { color: var(--brand-deep); font-size: .72rem; font-weight: 800; letter-spacing: .12em; margin-bottom: 14px; }

/* icon feature cards */
.feature {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 40%, var(--border)); }
.feature .f-icon {
  width: 54px; height: 54px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand-deep);
  margin-bottom: 20px; border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
}
.feature .f-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 10px; letter-spacing: -0.018em; }
.feature p { color: var(--text-muted); font-size: .95rem; line-height: 1.58; }

/* ---------- Service detail blocks ---------- */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--border); }
.svc-block:last-of-type { border-bottom: 0; }
.svc-block.reverse .svc-media { order: 2; }
html[dir="rtl"] .svc-block.reverse .svc-media { order: 2; }
.svc-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 16/11; object-fit: cover; width: 100%; }
.svc-body h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin: 12px 0 16px; }
.svc-body p { color: var(--text-muted); margin-bottom: 14px; font-size: 1.03rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.svc-tags span {
  background: var(--bg-elev); border: 1px solid var(--border); padding: 7px 15px;
  border-radius: 6px; font-size: .82rem; font-weight: 600; color: var(--text-muted);
}

/* ---------- Process / timeline ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 44px 26px 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); overflow: hidden; }
.step::after { content: ""; position: absolute; top: 0; inset-inline-start: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--brand), transparent); transform: scaleX(0); transform-origin: inset-inline-start; transition: transform .45s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step:hover::after { transform: scaleX(1); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 24px; inset-inline-start: 26px;
  color: var(--brand-deep); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.06rem; margin: 24px 0 10px; letter-spacing: -0.018em; }
.step p { font-size: .93rem; color: var(--text-muted); line-height: 1.55; }

/* ---------- Industries ---------- */
.industry { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.industry img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.industry:hover img { transform: scale(1.06); }
.industry::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(7,20,14,.9)); }
.industry .ind-label {
  position: absolute; inset: auto 0 0 0; padding: 26px 22px 22px; color: #fff; font-weight: 700; z-index: 1;
  font-size: 1.04rem; letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px;
}
.industry .ind-label::before { content: ""; width: 20px; height: 2px; background: var(--brand); }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: 0; border: 1px solid var(--border); }
.faq-item { padding-inline: clamp(22px, 3vw, 38px); border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  width: 100%; background: none; border: 0; color: var(--text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 32px 0; font-size: 1.08rem; font-weight: 600; text-align: start; font-family: inherit; letter-spacing: -0.015em;
}
.faq-q .chev { transition: transform .35s var(--ease); color: var(--brand-deep); flex-shrink: 0; display: inline-flex; }
.faq-q .chev svg { width: 20px; height: 20px; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 0 32px; color: var(--text-muted); font-size: 1.01rem; line-height: 1.62; }

/* ---------- Locations ---------- */
.loc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); border-top: 3px solid var(--brand); }
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.loc-card h3 { font-size: 1.08rem; margin-bottom: 14px; letter-spacing: -0.018em; }
.loc-card p { font-size: .93rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.55; }
.loc-card a { color: var(--brand-deep); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--clr-primary); border-radius: var(--radius); color: #fff; padding: 74px 60px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap;
  border-top: 3px solid var(--brand);
}
html[data-theme="dark"] .cta-band { background: var(--bg-elev); }
.cta-band::after {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(18,178,87,.24), transparent 62%); top: -180px; inset-inline-end: -140px;
}
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 10px; color: #fff; }
.cta-band p { color: rgba(255,255,255,.74); font-size: 1.08rem; max-width: 520px; }
.cta-band .btn { position: relative; z-index: 1; }
.cta-band .hero-cta { gap: 14px; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; }
.contact-info h3 { margin-bottom: 14px; font-size: 1.45rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; font-size: 1.03rem; }
.contact-line { display: flex; gap: 16px; align-items: start; margin-bottom: 22px; }
.contact-line .f-icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand-deep); border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent); }
.contact-line .f-icon svg { width: 21px; height: 21px; }
.contact-line strong { display: block; font-size: .96rem; margin-bottom: 3px; color: var(--text); }
.contact-line span, .contact-line a { font-size: .9rem; color: var(--text-muted); }
.contact-line a:hover { color: var(--brand-deep); }

.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); border-top: 3px solid var(--brand); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-field label { font-size: .84rem; font-weight: 600; display: block; margin-bottom: 8px; color: var(--text); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 15px; border-radius: 8px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-family: inherit; font-size: .94rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent);
}
.form-note { font-size: .82rem; color: var(--text-muted); margin-top: 14px; }

/* ---------- Group companies ---------- */
.marquee { overflow: hidden; position: relative; padding: 14px 0; }
.marquee-track { display: flex; gap: 48px; align-items: center; justify-content: center; flex-wrap: wrap; }
.marquee-track img { height: 44px; width: auto; filter: grayscale(1); opacity: .5; transition: all .3s var(--ease); }
html[data-theme="dark"] .marquee-track img { filter: grayscale(1) brightness(0) invert(1); opacity: .45; }
.marquee-track img:hover { filter: grayscale(0); opacity: 1; }
html[data-theme="dark"] .marquee-track img:hover { filter: none; opacity: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: #cbd8d2; padding: 82px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr .9fr 1.25fr; gap: 34px; padding-bottom: 52px; }
.footer-grid > div:first-child p { font-size: .95rem; line-height: 1.72; max-width: 320px; }
.footer-grid img { height: 42px; width: auto; margin-bottom: 22px; opacity: .95; }
.footer-grid h4 { color: #fff; font-size: .82rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .12em; font-weight: 750; }
.footer-grid li { margin-bottom: 12px; font-size: .94rem; line-height: 1.45; }
.footer-grid a { color: #dce9e3; transition: color .2s var(--ease); }
.footer-grid a:hover { color: var(--brand); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 8px; border: 1px solid rgba(255,255,255,.16);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  transition: all .28s var(--ease);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--brand); border-color: var(--brand); color: #04140b; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); padding: 24px 0; text-align: center; font-size: .86rem; color: #cbd8d2; }

/* ---------- Legal pages ---------- */
.legal-hero { background: var(--clr-primary); padding: 152px 0 98px; }
.legal-hero .eyebrow { color: #78dda0; }
.legal-hero .eyebrow::before { background: #78dda0; }
.legal-hero h1 { color: #fff; max-width: 820px; }
.legal-hero > .container > p:not(.breadcrumb) { max-width: 680px; color: rgba(255,255,255,.74); font-size: 1.05rem; }
.legal-layout { display: grid; grid-template-columns: minmax(190px, .35fr) minmax(0, 1fr); gap: clamp(36px, 8vw, 128px); align-items: start; }
.legal-aside { position: sticky; top: 110px; display: grid; gap: 12px; padding-top: 8px; border-top: 2px solid var(--brand-deep); }
.legal-aside p { color: var(--text-muted); font-size: .78rem; line-height: 1.5; }
.legal-aside a { color: var(--brand-deep); font-size: .84rem; font-weight: 700; }
.legal-content { max-width: 820px; }
.legal-section { display: grid; grid-template-columns: 44px 1fr; gap: 22px; padding: 0 0 38px; margin: 0 0 38px; border-bottom: 1px solid var(--border); }
.legal-section > span { color: var(--brand-deep); font-size: .7rem; font-weight: 750; letter-spacing: .11em; padding-top: 8px; }
.legal-section h2 { font-size: clamp(1.36rem, 2.3vw, 1.85rem); letter-spacing: -.03em; margin-bottom: 14px; }
.legal-section p { max-width: 720px; color: var(--text-muted); line-height: 1.76; }
.legal-section p + p { margin-top: 14px; }

/* ---------- Floating buttons ---------- */
.float-wa {
  position: fixed; bottom: 24px; inset-inline-start: 24px; z-index: 1200;
  background: #25d366; color: #fff; border-radius: 10px; padding: 13px 18px;
  display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .88rem;
  box-shadow: 0 14px 30px -12px rgba(37,211,102,.6);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -12px rgba(37,211,102,.7); }
.to-top {
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 1200;
  width: 46px; height: 46px; border-radius: 8px; border: 0; cursor: pointer;
  background: var(--clr-primary); color: #fff; font-size: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s var(--ease); box-shadow: var(--shadow);
}
html[data-theme="dark"] .to-top { background: var(--brand); color: #04140b; }
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-3px); background: var(--brand-deep); color: #fff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: 158px 0 118px; color: #fff; text-align: center;
  background-size: cover; background-position: center; background-color: #06110c; overflow: hidden;
}
.page-hero .page-hero-bg { position: absolute; inset: -8% 0; background-size: cover; background-position: center; will-change: transform; z-index: 0; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); z-index: 1; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 16px; letter-spacing: -0.03em; color: #fff; }
.page-hero p { color: rgba(255,255,255,.86); max-width: 660px; margin-inline: auto; font-size: 1.12rem; }
.breadcrumb { margin-top: 24px; font-size: .84rem; color: rgba(255,255,255,.62); }
.breadcrumb a { color: #fff; font-weight: 600; }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity var(--motion-reveal) var(--ease), transform var(--motion-reveal) var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; }
.reveal.d4 { transition-delay: .24s; }
/* auto-stagger children */
.stagger > * { opacity: 0; transform: translateY(14px); transition: opacity var(--motion-reveal) var(--ease), transform var(--motion-reveal) var(--ease); }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: .07s; }
.stagger.visible > *:nth-child(3) { transition-delay: .14s; }
.stagger.visible > *:nth-child(4) { transition-delay: .21s; }
.stagger.visible > *:nth-child(5) { transition-delay: .28s; }
.stagger.visible > *:nth-child(6) { transition-delay: .35s; }

/* ---------- Values ---------- */
.value-pill { display: flex; align-items: center; gap: 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 22px; font-weight: 600; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.value-pill:hover { border-color: var(--brand); transform: translateY(-3px); }
.value-pill .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }

.cert-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; align-items: center; }
.cert-badges span {
  background: var(--brand-soft); border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent); color: var(--brand-deep);
  font-weight: 600; font-size: .8rem; padding: 8px 16px; border-radius: 6px;
}

/* ---------- News ---------- */
.news-meta { font-size: .84rem; color: var(--text-muted); margin-top: 14px; }
.news-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.chip {
  border: 1px solid var(--border); background: transparent; color: var(--text-muted);
  padding: 9px 20px; border-radius: 7px; font-weight: 600; font-size: .85rem;
  cursor: pointer; font-family: inherit; transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--brand); color: var(--brand-deep); }
.chip.active { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }
html[data-theme="dark"] .chip.active { background: var(--brand); color: #04140b; border-color: var(--brand); }
.news-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  opacity: 0; transform: translateY(18px); animation: fadeUp .6s var(--ease) both; border-top: 3px solid transparent;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-top-color: var(--brand); }
.news-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: .74rem; }
.news-cat { font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-deep); font-size: .68rem; }
html[dir="rtl"] .news-cat { letter-spacing: 0; }
.news-date { color: var(--text-muted); }
.news-card h3 { font-size: 1.12rem; line-height: 1.42; flex: 1; font-weight: 700; letter-spacing: -0.015em; }
.news-card h3 a:hover { color: var(--brand-deep); }
.news-src { font-size: .82rem; color: var(--text-muted); font-weight: 600; padding-top: 4px; border-top: 1px solid var(--border); }
.news-empty { text-align: center; color: var(--text-muted); grid-column: 1 / -1; padding: 48px 0; }

/* ---------- Micro-animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.anim-up { animation: fadeUp .9s var(--ease) both; }
.anim-up.d1 { animation-delay: .12s; }
.anim-up.d2 { animation-delay: .24s; }
.anim-up.d3 { animation-delay: .36s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.float-anim { animation: none; }

/* Mega dropdown (17 services) */
.dropdown-menu.mega { grid-template-columns: 1fr 1fr; min-width: 560px; }
.dropdown-menu.mega .dd-all { grid-column: 1 / -1; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--border); border-radius: 0; margin-bottom: 6px; padding-bottom: 12px; border-inline-start: 0; }
@media (max-width: 860px) { .dropdown-menu.mega { min-width: 0; grid-template-columns: 1fr; } }

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .section { padding: 84px 0; }
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .svc-block, .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
  .svc-block.reverse .svc-media { order: 0; }
  .split-media .badge-year { inset-inline-end: 12px; }
  .nav-links {
    position: fixed; inset: 0; background: var(--bg);
    flex-direction: column; align-items: stretch; gap: 0; padding: 132px 6% 40px;
    box-shadow: var(--shadow); transform: translateY(-104%);
    transition: transform var(--motion-base) var(--ease); z-index: 1200; overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li { border-bottom: 1px solid var(--border); }
  .nav-links > li > a { display: block; padding: 16px 4px; font-size: 1.02rem; }
  .nav-links .nav-mobile-quote { display: block !important; border: 0; margin-top: 24px; }
  .nav-mobile-quote .btn { width: 100%; justify-content: center; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 12px 14px; display: none; min-width: 0;
  }
  .dropdown.open .dropdown-menu { display: grid; }
  .brand, .nav-actions { position: relative; z-index: 1201; }
  .hamburger { display: flex; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .grid-4, .process-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .topbar .tb-group.tb-hours { display: none; }
  .cta-band { padding: 44px 28px; }
  .float-wa span { display: none; }
  .float-wa { padding: 13px 14px; }
  .hero { min-height: 540px; }
  .trust-grid { justify-content: flex-start; }
}

@media (max-width: 780px) {
  .legal-hero { padding: 122px 0 78px; }
  .legal-layout { grid-template-columns: 1fr; gap: 34px; }
  .legal-aside { position: static; }
  .legal-section { grid-template-columns: 32px 1fr; gap: 14px; padding-bottom: 30px; margin-bottom: 30px; }
}

/* Newsroom 2026 — dense editorial hierarchy, calm interactions */
#news.section { background: linear-gradient(180deg, var(--bg) 0, var(--bg-alt) 42%, var(--bg) 100%); }

.newsroom-feature-row { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(310px, .8fr); border: 1px solid var(--border); background: var(--bg-card); margin-bottom: 18px; }
.newsroom-feature-row #news-featured { min-width: 0; }
.news-lead { min-height: 100%; margin: 0; padding: clamp(24px, 3.2vw, 38px); border: 0; border-inline-end: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, color-mix(in srgb, var(--brand) 8%, var(--bg-card)), var(--bg-card) 60%); }
.news-lead h3 { font-size: clamp(1.45rem, 2.6vw, 2.25rem); line-height: 1.13; letter-spacing: -.035em; margin: 14px 0; text-wrap: balance; }
.lead-deck { max-width: 610px; color: var(--text-muted); font-size: .9rem; margin-bottom: 15px; }
.news-lead .news-save { margin-inline-start: auto; }
.news-latest-rail { padding: 18px 20px; }
.rail-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 11px; border-bottom: 2px solid var(--clr-primary); color: var(--clr-primary); font-size: .68rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.news-latest-rail ol { counter-reset: dispatch; }
.news-latest-rail li { display: grid; grid-template-columns: 22px 1fr; gap: 9px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.news-latest-rail li > span { color: var(--brand-deep); font-size: .7rem; font-weight: 750; }
.news-latest-rail a { display: block; color: var(--text); font-weight: 650; line-height: 1.29; font-size: .82rem; }
.news-latest-rail a:hover { color: var(--brand-deep); }
.news-latest-rail small { display: block; color: var(--text-muted); font-size: .66rem; margin-top: 4px; }

.news-snapshot { display: grid; grid-template-columns: minmax(210px, .55fr) minmax(0, 1.45fr); gap: clamp(22px, 4vw, 54px); margin: 0 0 28px; padding: clamp(20px, 2.7vw, 30px); background: var(--clr-primary); border: 0; border-inline-start: 4px solid var(--signal); color: #fff; }
.news-snapshot .eyebrow { color: #70d996; }
.news-snapshot h2 { color: #fff; font-size: clamp(1.45rem, 2.6vw, 2.25rem); line-height: 1.15; }
.news-snapshot .snap-highlights li { border-color: rgba(255,255,255,.13); }
.news-snapshot .snap-highlights li a { color: #fff; }
.news-snapshot .snap-highlights li span { color: rgba(255,255,255,.55); }

.newsroom-explore-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 14px; }
.newsroom-explore-head h2 { font-size: clamp(1.55rem, 2.8vw, 2.35rem); letter-spacing: -.04em; margin-top: 5px; }
#news-results { color: var(--text-muted); font-size: .82rem; padding-bottom: 8px; }
.news-controls { position: sticky; top: 82px; z-index: 6; display: block; margin: 0 0 18px; padding: 12px; background: color-mix(in srgb, var(--bg-card) 93%, transparent); border: 1px solid var(--border); backdrop-filter: blur(15px); }
.news-control-row { display: grid; grid-template-columns: minmax(260px, 1fr) auto auto auto; gap: 12px; }
.news-search-wrap { max-width: none; }
.news-sort, .news-saved-toggle { min-height: 44px; padding: 0 14px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text); font: 650 .78rem/1 inherit; }
.news-sort { min-width: 150px; }
.news-saved-toggle { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.news-saved-toggle b { min-width: 20px; padding: 1px 5px; background: var(--bg-alt); font-size: .68rem; }
.news-saved-toggle.active { border-color: var(--brand-deep); color: var(--brand-deep); background: var(--brand-soft); }
.news-controls .news-filters { margin: 14px 0 0; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
.news-controls .chip { flex: 0 0 auto; }

.news-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; background: transparent; border: 0; }
.news-card { min-height: 224px; padding: 20px; background: var(--bg-card); border: 1px solid var(--border); display: flex; flex-direction: column; transition: background .2s ease, border-color var(--motion-fast) var(--ease); }
.news-card:hover { transform: none; background: color-mix(in srgb, var(--brand) 5%, var(--bg-card)); box-shadow: none; }
.news-card-kicker { display: flex; align-items: center; min-height: 32px; }
.news-card-kicker .news-save { margin-inline-start: auto; }
.news-card-kicker .news-cat { font-size: .71rem; letter-spacing: .085em; }
.news-card-kicker .news-gcc { margin-inline-start: 7px; padding: 4px 8px; font-size: .63rem; }
.news-card h3 { font-size: clamp(1.02rem, 1.22vw, 1.18rem); line-height: 1.32; margin: 14px 0 auto; letter-spacing: -.02em; }
.news-card-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--text-muted); font-size: .74rem; margin: 18px 0 12px; }
.news-card-meta span { color: var(--text); font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.news-card-meta time { flex-shrink: 0; }
.news-card-detail { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border); }
.story-signal { color: var(--brand-deep); font-size: .67rem; font-weight: 750; text-transform: uppercase; letter-spacing: .055em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.news-read { color: var(--clr-primary); font-size: .68rem; font-weight: 750; text-transform: uppercase; letter-spacing: .055em; white-space: nowrap; }
.news-save { width: 32px; height: 32px; border: 1px solid var(--border); background: transparent; color: var(--text-muted); cursor: pointer; font-size: 1rem; }
.news-save:hover, .news-save.is-saved { border-color: var(--brand-deep); color: var(--brand-deep); background: var(--brand-soft); }
.news-load-wrap { text-align: center; padding-top: 36px; }
.news-load-more[hidden] { display: none; }
.news-empty { grid-column: 1 / -1; padding: 70px 24px; text-align: center; color: var(--text-muted); background: var(--bg-card); }

@media (max-width: 980px) {
  .newsroom-feature-row { grid-template-columns: 1fr; }
  .news-lead { border-inline-end: 0; border-bottom: 1px solid var(--border); }
  .news-latest-rail ol { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .newsroom-explore-head { align-items: flex-start; flex-direction: column; }
  .news-latest-rail ol { display: block; }
  .news-snapshot { grid-template-columns: 1fr; }
  .snap-highlights li { display: block; }
  .snap-highlights li span { display: block; margin-top: 5px; }
  .news-controls { position: static; padding: 14px; }
  .news-control-row { grid-template-columns: 1fr 1fr; }
  .news-search-wrap { grid-column: 1 / -1; }
  .news-refresh { grid-column: 1 / -1; }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-card { min-height: 214px; padding: 17px; }
}
@media (max-width: 480px) { .news-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   News page — live ops dashboard, ticker, snapshot, featured, search, share
   ========================================================================== */

/* Live dot */
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #9fb1a8; vertical-align: middle; }
.live-dot.on { background: var(--brand); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(18,178,87,.55); }
  70% { box-shadow: 0 0 0 8px rgba(18,178,87,0); }
  100% { box-shadow: 0 0 0 0 rgba(18,178,87,0); }
}

/* GCC port board — intentionally compact so the ticker attaches to the hero. */
.dash-strip { padding: 0 0 26px; background: var(--bg-alt); }
.dash-head { max-width: 720px; margin: 0; padding: 18px 0 10px; }
.dash-head .eyebrow { margin-bottom: 0; }
.dash-head p { color: var(--text-muted); font-size: 1rem; }
.dash-grid {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(226px, 1fr); gap: 10px;
  overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline proximity;
  background: var(--clr-primary); border-radius: 0 0 12px 12px; padding: 12px; border-top: 3px solid var(--brand);
  scrollbar-width: thin;
}
html[data-theme="dark"] .dash-grid { background: #0a1712; border: 1px solid var(--border); border-top: 3px solid var(--brand); }
.dash-hub { min-width: 0; scroll-snap-align: start; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 8px; padding: 12px 13px; color: #fff; }
.hub-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 4px; }
.hub-name { font-weight: 700; font-size: .9rem; color: #fff; display: inline-flex; align-items: center; gap: 7px; }
.hub-name svg { width: 16px; height: 16px; color: var(--brand); }
.hub-clock { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--brand); font-size: .84rem; }
.hub-country { color: rgba(255,255,255,.52); font-size: .66rem; text-transform: uppercase; letter-spacing: .07em; }
.hub-profile { min-height: 17px; margin: 7px 0 8px; color: rgba(255,255,255,.78); font-size: .72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hub-wx { display: flex; align-items: baseline; gap: 7px; }
.wx-temp { font-size: 1.32rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.wx-cond { color: rgba(255,255,255,.68); font-size: .82rem; }
.hub-details { display: flex; justify-content: space-between; align-items: center; gap: 9px; margin-top: 7px; }
.hub-wind { color: rgba(255,255,255,.5); font-size: .68rem; white-space: nowrap; }
.hub-authority { color: #8fe6ae; font-size: .66rem; font-weight: 700; white-space: nowrap; }
.hub-authority:hover { color: #fff; }
.dash-marine { background: rgba(18,178,87,.12); border-color: rgba(18,178,87,.32); }
.dm-row { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(255,255,255,.72); padding: 5px 0; }
.dm-row + .dm-row { border-top: 1px solid rgba(255,255,255,.08); }
.dm-row strong { color: #fff; font-variant-numeric: tabular-nums; font-size: .96rem; }
@media (max-width: 620px) { .dash-grid { grid-auto-columns: minmax(214px, 78vw); } .dash-head { padding-top: 14px; } }

/* Breaking ticker */
.news-ticker { background: var(--clr-primary); color: #fff; overflow: hidden; }
html[data-theme="dark"] .news-ticker { background: #04100a; border-block: 1px solid var(--border); }
.ticker-inner { display: flex; align-items: center; gap: 18px; height: 48px; }
.tk-label { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--brand); }
html[dir="rtl"] .tk-label { letter-spacing: 0; }
.tk-viewport { overflow: hidden; position: relative; flex: 1; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.ticker-track { display: flex; gap: 44px; width: max-content; animation: ticker 85s linear infinite; }
.news-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track a { color: rgba(255,255,255,.82); font-size: .86rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 9px; }
.ticker-track a:hover { color: #fff; }
.tk-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }
html[dir="rtl"] .ticker-track { animation-name: ticker-rtl; }
@keyframes ticker-rtl { to { transform: translateX(50%); } }

/* GCC snapshot (AEO block) */
.news-snapshot { background: var(--bg-alt); border: 1px solid var(--border); border-top: 3px solid var(--brand); border-radius: 12px; padding: 26px 30px; margin-bottom: 36px; }
.news-snapshot h2 { font-size: 1.16rem; margin-bottom: 10px; }
.snap-summary { color: var(--text); font-size: 1.02rem; line-height: 1.62; margin-bottom: 16px; }
.snap-highlights { display: grid; gap: 0; }
.snap-highlights li { display: flex; justify-content: space-between; gap: 14px; font-size: .92rem; border-top: 1px solid var(--border); padding: 10px 0; }
.snap-highlights li a { font-weight: 600; color: var(--text); }
.snap-highlights li a:hover { color: var(--brand-deep); }
.snap-highlights li span { color: var(--text-muted); flex-shrink: 0; font-size: .82rem; }

/* Refresh button */
.news-refresh {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 44px; vertical-align: middle;
  margin: 0; padding: 6px 14px; border-radius: 8px; white-space: nowrap;
  border: 1px solid var(--border); background: var(--bg-card); color: var(--text);
  font-family: inherit; font-size: .8rem; font-weight: 600; cursor: pointer;
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.news-refresh:hover { border-color: var(--brand); color: var(--brand-deep); background: var(--brand-soft); }
.news-refresh .rf-ic { display: inline-flex; }
.news-refresh .rf-ic svg { width: 15px; height: 15px; }
.news-refresh.busy { pointer-events: none; opacity: .8; color: var(--brand-deep); border-color: var(--brand); }
.news-refresh.busy .rf-ic svg { animation: spin .8s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Controls: search + filters */
.news-controls { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; }
.news-search-wrap { position: relative; display: flex; align-items: center; flex: 1; min-width: 240px; max-width: 360px; }
.news-search-wrap svg { position: absolute; inset-inline-start: 14px; width: 18px; height: 18px; color: var(--text-muted); pointer-events: none; }
#news-search { width: 100%; padding: 12px 16px 12px 44px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-family: inherit; font-size: .92rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
html[dir="rtl"] .news-search-wrap svg { inset-inline-start: auto; inset-inline-end: 14px; }
html[dir="rtl"] #news-search { padding: 12px 44px 12px 16px; }
#news-search:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent); }
.news-controls .news-filters { margin-bottom: 0; justify-content: flex-end; flex: 2; }

/* Featured lead */
#news-featured:empty { display: none; }
.news-lead { background: var(--bg-card); border: 1px solid var(--border); border-top: 3px solid var(--brand); border-radius: 12px; padding: 32px 34px; margin-bottom: 30px; box-shadow: var(--shadow-sm); transition: box-shadow .4s var(--ease); }
.news-lead:hover { box-shadow: var(--shadow); }
.news-lead .news-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.lead-flag { font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .66rem; color: #fff; background: var(--brand-deep); padding: 4px 10px; border-radius: 5px; }
html[dir="rtl"] .lead-flag { letter-spacing: 0; }
.news-lead h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.26; margin-bottom: 16px; letter-spacing: -.02em; }
.news-lead h3 a:hover { color: var(--brand-deep); }

/* Card foot, share, gcc pill */
.news-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto; }
.news-src { font-size: .82rem; color: var(--text-muted); font-weight: 600; border: 0; padding: 0; }
.news-share { display: flex; gap: 6px; }
.news-share a { width: 30px; height: 30px; border-radius: 7px; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all .25s var(--ease); }
.news-share a svg { width: 15px; height: 15px; }
.news-share a:hover { border-color: var(--brand); color: var(--brand-deep); background: var(--brand-soft); transform: translateY(-1px); }
.news-gcc { display: inline-block; margin-inline-start: 8px; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand-deep); background: var(--brand-soft); border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent); padding: 2px 7px; border-radius: 4px; vertical-align: middle; }
html[dir="rtl"] .news-gcc { letter-spacing: 0; }

@media (max-width: 640px) {
  .news-controls { flex-direction: column; align-items: stretch; }
  .news-search-wrap { max-width: none; }
  .news-controls .news-filters { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .anim-up, .news-card, .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
  .page-hero .page-hero-bg { transform: none !important; }
}

/* ==========================================================================
   2026 editorial system — maritime precision, restrained motion, human scale
   ========================================================================== */

body {
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: -.006em;
}

h1, h2, h3, h4 { font-weight: 650; }

.section { padding: clamp(76px, 9vw, 124px) 0; }
.section-head { max-width: 820px; margin: 0 0 58px; text-align: start; }
.section-head .eyebrow { justify-content: flex-start; }
.section-head h2 { max-width: 760px; font-size: clamp(2.15rem, 4vw, 3.65rem); letter-spacing: -.045em; }
.section-head p { max-width: 650px; font-size: 1.04rem; }
.eyebrow { color: var(--brand-deep); letter-spacing: .16em; }
.eyebrow::before { width: 34px; background: var(--signal); }

.btn {
  min-height: 48px;
  border-radius: 1px;
  padding: 13px 24px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.btn-primary { background: var(--brand-deep); }
.btn-primary:hover { background: var(--clr-primary); box-shadow: none; }

.topbar { background: var(--clr-primary); padding: 9px 0; }
.topbar svg { color: #6ed793; }
.site-header {
  background: var(--nav-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--hairline);
}
.nav { height: 82px; }
.brand img { height: 48px; }
.nav-links { gap: 34px; font-size: .82rem; font-weight: 650; letter-spacing: .025em; text-transform: uppercase; }
.nav-links > li > a::after { bottom: -5px; background: var(--signal); }
.dropdown-menu { border-radius: 1px; padding: 16px; }
.dropdown-menu a, .icon-btn, .lang-btn { border-radius: 1px; }
.icon-btn:hover { border-color: var(--clr-primary); color: var(--clr-primary); background: transparent; }

.hero { height: min(88vh, 840px); min-height: 650px; background: var(--clr-primary); }
.hero-content { max-width: 800px; padding-top: 22px; }
.hero-content .eyebrow { font-size: .71rem; margin-bottom: 26px; }
.hero-content h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6.1vw, 5.55rem);
  line-height: .98;
  letter-spacing: -.058em;
  font-weight: 650;
  text-wrap: balance;
}
.hero-content p { max-width: 610px; margin-top: 28px; font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.62; }
.hero-dots { justify-content: flex-start; width: min(var(--maxw), 92%); inset-inline-start: 50%; transform: translateX(-50%); }
.hero-dots button { width: 46px; height: 2px; border-radius: 0; }
.hero-dots button.active { width: 70px; background: var(--signal); }

.trust-strip { background: #0c2437; }
.trust-grid { padding: 26px 0; }
.trust-item { font-size: .82rem; letter-spacing: .01em; }
.trust-item svg { color: #6ed793; }

.stats { padding: 62px 0; background: var(--bg); }
.stat { text-align: start; padding: 10px 26px; }
.stat:first-child { padding-inline-start: 0; }
.stat h3 { font-size: clamp(2rem, 4vw, 3.4rem); color: var(--clr-primary); font-weight: 600; white-space: nowrap; }
.stat h3 span, .stat .accent { color: var(--brand-deep); }
.stat p { max-width: 160px; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; line-height: 1.4; }

.split { gap: clamp(46px, 7vw, 100px); }
.split-media img, .svc-media img { border-radius: 1px; box-shadow: none; }
.split-media::after { width: 96px; height: 96px; border-color: var(--signal); border-radius: 0; }
.split-media .badge-year { border-radius: 1px; border-top-color: var(--signal); background: var(--clr-primary); }
.split-body h2 { font-size: clamp(2.1rem, 4vw, 3.45rem); letter-spacing: -.045em; }
.checklist li::before { border-radius: 1px; }

.grid-3 { gap: 22px; }
.grid-4 { gap: 20px; }
.card { border-radius: 1px; box-shadow: none; }
.card::before { height: 2px; background: var(--signal); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: #bbc5c1; }
.card-media { aspect-ratio: 3 / 2; }
.card-media img { filter: saturate(.82) contrast(1.03); }
.service-card-grid .card-media::after {
  background: linear-gradient(140deg, rgba(8,116,58,.15) 0%, rgba(24,169,87,.06) 48%, rgba(4,20,34,.28) 100%);
}
.card-body { padding: 26px 24px 30px; }
.card-body h3 { font-size: 1.16rem; }
.card-link { color: var(--clr-primary); text-transform: uppercase; letter-spacing: .055em; font-size: .72rem; }

.feature, .value-pill, .loc-card, .faq-item, .news-card, .news-lead, .news-snapshot, .dash-grid, .dash-hub {
  border-radius: 1px;
  box-shadow: none;
}
.feature { padding: 34px 30px; }
.feature .f-icon, .contact-line .f-icon { border-radius: 1px; background: transparent; border-color: var(--border); }
.feature:hover { transform: translateY(-3px); box-shadow: none; border-color: var(--brand-deep); }

.industry { border-radius: 1px; }
.industry img { filter: saturate(.78) contrast(1.05); }
.ind-label { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }

.process-step .num { color: var(--signal); font-weight: 600; }
.cta-band { border-radius: 1px; background: var(--clr-primary); box-shadow: none; }
.cta-band::before { background: linear-gradient(90deg, var(--signal), transparent 72%); height: 3px; }

.page-hero { padding: 176px 0 126px; text-align: start; background-color: var(--clr-primary); }
.page-hero h1 { max-width: 850px; font-size: clamp(2.8rem, 5.5vw, 5.1rem); line-height: 1; letter-spacing: -.052em; font-weight: 650; }
.page-hero p { margin-inline: 0; max-width: 700px; }
.breadcrumb { letter-spacing: .06em; text-transform: uppercase; font-size: .68rem; }

.svc-block { gap: clamp(42px, 6vw, 86px); padding: 96px 0; }
.svc-media img { aspect-ratio: 3 / 2; filter: saturate(.82) contrast(1.04); }
.svc-body h2 { font-size: clamp(2rem, 3.3vw, 3rem); letter-spacing: -.04em; }

.site-footer { padding-top: 92px; }
.footer-grid h4 { color: #fff; letter-spacing: .14em; }
.footer-social a, .float-wa, .to-top { border-radius: 1px; }
.float-wa { box-shadow: 0 10px 30px -18px rgba(0,0,0,.5); }

@media (max-width: 860px) {
  .section-head { margin-inline: 0; }
  .nav-links { top: 82px; background: var(--bg); }
  .hero { min-height: 610px; }
  .hero-content h1 { font-size: clamp(2.75rem, 10vw, 4.6rem); }
  .page-hero { padding: 122px 0 92px; }
}

@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .hero { min-height: 590px; }
  .hero-content h1 { font-size: clamp(2.55rem, 13vw, 3.7rem); }
  .hero-content p { margin-top: 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 10px 8px; }
  .stat + .stat::before { display: none; }
  .page-hero h1 { font-size: clamp(2.45rem, 12vw, 3.65rem); }
}

/* Keep the newsroom composition above the legacy news component defaults. */
.newsroom-feature-row .news-lead { min-height: 100%; margin: 0; padding: clamp(24px, 3.2vw, 38px); border: 0; border-inline-end: 1px solid var(--border); background: linear-gradient(145deg, color-mix(in srgb, var(--brand) 8%, var(--bg-card)), var(--bg-card) 60%); }
#news .news-snapshot { display: grid; grid-template-columns: minmax(210px, .55fr) minmax(0, 1.45fr); gap: clamp(22px, 4vw, 54px); margin: 0 0 28px; padding: clamp(20px, 2.7vw, 30px); background: var(--clr-primary); border: 0; border-inline-start: 4px solid var(--signal); color: #fff; }
#news .news-snapshot h2, #news .news-snapshot .snap-highlights a { color: #fff; }
#news .news-snapshot .snap-highlights li { border-color: rgba(255,255,255,.13); }
#news .news-snapshot .snap-highlights span { color: rgba(255,255,255,.55); }
#news .news-controls { position: sticky; top: 82px; z-index: 6; display: block; margin: 0 0 18px; padding: 12px; background: color-mix(in srgb, var(--bg-card) 93%, transparent); border: 1px solid var(--border); backdrop-filter: blur(15px); }
#news .news-search-wrap { max-width: none; }
#news .news-controls .news-filters { margin: 14px 0 0; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; }
@media (max-width: 700px) {
  .newsroom-feature-row .news-lead { border-inline-end: 0; border-bottom: 1px solid var(--border); }
  #news .news-snapshot { grid-template-columns: 1fr; }
  #news .news-controls { position: static; padding: 14px; }
}

/* Service pages — evidence, clarity and conversion */
.service-proof { background: var(--clr-primary); color: #fff; border-top: 1px solid rgba(255,255,255,.1); }
.service-proof-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); min-height: 128px; }
.service-proof-grid > div { display: flex; flex-direction: column; justify-content: center; padding: 24px 28px; border-inline-start: 1px solid rgba(255,255,255,.12); }
.service-proof-grid > div:first-child { border-inline-start: 0; padding-inline-start: 0; }
.service-proof-grid .eyebrow { color: #78dda0; margin: 0; }
.service-proof-grid strong { color: #fff; font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 600; line-height: 1; letter-spacing: -.04em; }
.service-proof-grid span:not(.eyebrow) { color: rgba(255,255,255,.62); margin-top: 9px; font-size: .68rem; line-height: 1.35; text-transform: uppercase; letter-spacing: .075em; }

.service-body-media { min-height: 510px; height: 100%; position: relative; overflow: hidden; background: #dfe5e2; }
.service-body-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(13,42,64,.12); pointer-events: none; }
.service-body-media img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; object-position: center; filter: saturate(.88) contrast(1.025); transition: transform .8s var(--ease), filter .8s var(--ease); }
.service-body-media:hover img { transform: scale(1.018); filter: saturate(.96) contrast(1.035); }

.service-brief-section { background: var(--clr-primary); color: #fff; }
.service-brief { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(52px, 8vw, 120px); align-items: start; }
.service-brief h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 3rem); line-height: 1.08; letter-spacing: -.04em; margin: 12px 0 20px; }
.service-brief .eyebrow { color: #78dda0; }
.service-quote > p { color: rgba(255,255,255,.7); }
.service-quote .checklist { margin: 26px 0 30px; }
.service-quote .checklist li { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.12); }
.service-quote .checklist li::before { color: #78dda0; border-color: rgba(120,221,160,.5); }
.service-quote .btn-primary { background: #fff; color: var(--clr-primary); }
.service-quote .btn-primary:hover { background: #78dda0; }
.service-process { display: grid; grid-template-columns: 1fr 1fr; margin-top: 34px; border: 1px solid rgba(255,255,255,.13); }
.service-process-step {
  position: relative; min-height: 205px; padding: 28px; margin: 0;
  background: rgba(255,255,255,.025); border-bottom: 1px solid rgba(255,255,255,.13);
  transition: background-color .25s var(--ease);
}
.service-process-step:hover { background: rgba(255,255,255,.055); }
.service-process-step:nth-child(odd) { border-inline-end: 1px solid rgba(255,255,255,.13); }
.service-process-step:nth-last-child(-n+2) { border-bottom: 0; }
.service-process-num {
  display: block; color: #78dda0; font-size: .78rem; font-weight: 750;
  font-variant-numeric: tabular-nums; letter-spacing: .12em;
}
.service-process-step h3 { color: #fff; margin: 34px 0 8px; font-size: 1.08rem; }
.service-process-step p { color: rgba(255,255,255,.7); font-size: .86rem; line-height: 1.55; }

@media (max-width: 900px) {
  .service-proof-grid { grid-template-columns: repeat(4, 1fr); }
  .service-proof-grid .proof-intro { grid-column: 1 / -1; min-height: 68px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .service-proof-grid > div:first-child { padding-inline-start: 0; }
  .service-brief { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .service-proof-grid { grid-template-columns: 1fr 1fr; }
  .service-proof-grid .proof-intro { grid-column: 1 / -1; }
  .service-proof-grid > div { padding: 20px 14px; }
  .service-proof-grid > div:nth-child(odd) { border-inline-start: 0; }
  .service-body-media, .service-body-media img { min-height: 360px; }
  .service-process { grid-template-columns: 1fr; }
  .service-process-step, .service-process-step:nth-child(odd) { border-inline-end: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .service-process-step:last-child { border-bottom: 0; }
}

/* About page — group narrative, leadership and institutional proof */
.about-hero .eyebrow { color: #78dda0; margin-bottom: 24px; }
.about-hero .eyebrow::before { background: #78dda0; }
.about-hero h1 { max-width: 980px; }
.about-hero > .container > p:not(.breadcrumb) { max-width: 760px; font-size: clamp(1rem, 1.5vw, 1.22rem); }

.about-proof { background: var(--clr-primary); color: #fff; border-top: 1px solid rgba(255,255,255,.12); }
.about-proof-grid { display: grid; grid-template-columns: 1.25fr repeat(4, 1fr); min-height: 150px; }
.about-proof-grid > div { display: flex; flex-direction: column; justify-content: center; padding: 28px; border-inline-start: 1px solid rgba(255,255,255,.12); }
.about-proof-grid > div:first-child { border-inline-start: 0; padding-inline-start: 0; }
.about-proof-grid .eyebrow { color: #78dda0; margin: 0; }
.about-proof-grid strong { color: #fff; font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 600; line-height: 1; letter-spacing: -.045em; font-variant-numeric: tabular-nums; }
.about-proof-grid span:not(.eyebrow) { color: rgba(255,255,255,.62); margin-top: 10px; font-size: .7rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .075em; }

.about-story-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: clamp(52px, 8vw, 118px); align-items: center; }
.about-story-media { min-height: 620px; overflow: hidden; margin: 0; background: #dbe2df; }
.about-story-media img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; filter: saturate(.82) contrast(1.04); transition: transform .8s var(--ease); }
.about-story-media:hover img { transform: scale(1.018); }
.about-story-copy h2 { margin: 14px 0 24px; font-size: clamp(2.1rem, 4vw, 3.65rem); line-height: 1.06; letter-spacing: -.045em; }
.about-story-copy > p { color: var(--text-muted); margin-bottom: 17px; }
.about-story-copy .about-story-note { margin-top: 30px; padding: 18px 0 18px 24px; color: var(--clr-primary); border-inline-start: 3px solid var(--signal); font-size: .78rem; font-weight: 700; letter-spacing: .075em; text-transform: uppercase; }
html[dir="rtl"] .about-story-copy .about-story-note { padding: 18px 24px 18px 0; }

.about-leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-leader { display: grid; grid-template-columns: minmax(190px, .72fr) minmax(0, 1.28fr); min-height: 460px; background: var(--bg-card); border: 1px solid var(--border); }
.about-leader img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; object-position: center top; filter: grayscale(1) contrast(1.02); }
.about-leader > div { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(30px, 4vw, 50px); }
.about-leader blockquote { position: relative; margin: 0 0 auto; padding-top: 35px; color: var(--text); font-size: clamp(1rem, 1.45vw, 1.16rem); line-height: 1.68; }
.about-leader blockquote::before { content: "“"; position: absolute; top: -12px; inset-inline-start: 0; color: var(--brand); font-family: Georgia, serif; font-size: 4.8rem; line-height: 1; }
.about-leader h3 { margin-top: 32px; font-size: 1rem; }
.about-leader > div > p { margin-top: 5px; color: var(--brand-deep); font-size: .73rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.about-timeline { border: 1px solid var(--border); background: var(--bg-card); }
.about-timeline-tabs { display: flex; overflow-x: auto; scrollbar-width: thin; border-bottom: 1px solid var(--border); }
.about-timeline-tab { flex: 0 0 154px; min-height: 112px; padding: 21px 18px; border: 0; border-inline-end: 1px solid var(--border); background: transparent; color: var(--text); text-align: start; font-family: inherit; cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease); }
.about-timeline-tab span { display: block; color: var(--brand-deep); font-size: 1.35rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.about-timeline-tab small { display: block; margin-top: 9px; color: var(--text-muted); font-size: .68rem; line-height: 1.35; }
.about-timeline-tab:hover { background: var(--bg-alt); }
.about-timeline-tab.is-active { background: var(--clr-primary); color: #fff; box-shadow: inset 0 3px var(--signal); }
.about-timeline-tab.is-active span { color: #78dda0; }
.about-timeline-tab.is-active small { color: rgba(255,255,255,.72); }
.about-timeline-tab:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 40%, transparent); outline-offset: -3px; }
.about-timeline-panels { min-height: 270px; }
.about-timeline-panel { display: grid; grid-template-columns: .4fr 1.6fr; gap: clamp(32px, 7vw, 100px); align-items: center; min-height: 270px; padding: clamp(34px, 6vw, 72px); }
.about-timeline-panel[hidden] { display: none; }
.about-timeline-year { color: color-mix(in srgb, var(--brand-deep) 18%, transparent); font-size: clamp(4rem, 10vw, 8rem); font-weight: 650; line-height: .8; letter-spacing: -.07em; font-variant-numeric: tabular-nums; }
.about-timeline-panel h3 { margin-bottom: 13px; font-size: clamp(1.55rem, 2.6vw, 2.3rem); letter-spacing: -.035em; }
.about-timeline-panel p { max-width: 720px; color: var(--text-muted); font-size: 1.02rem; }

.about-company-group + .about-company-group { margin-top: 64px; }
.about-company-group > h3 { margin: 0 0 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); color: var(--brand-deep); font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; }
.about-company-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.about-company-card { display: grid; grid-template-columns: 62px 1fr; gap: 20px; min-height: 210px; padding: 28px; background: var(--bg-card); border: 1px solid var(--border); transition: transform .3s var(--ease), border-color .3s var(--ease); }
.about-company-card:hover { transform: translateY(-3px); border-color: var(--brand-deep); }
.about-company-mark { display: flex; align-items: center; justify-content: center; width: 62px; height: 62px; background: var(--clr-primary); color: #78dda0; font-size: .72rem; font-weight: 800; letter-spacing: .04em; }
.about-company-year { display: block; margin-bottom: 8px; color: var(--brand-deep); font-size: .66rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.about-company-card h3 { font-size: 1rem; line-height: 1.3; }
.about-company-card p { margin-top: 10px; color: var(--text-muted); font-size: .84rem; line-height: 1.55; }

.about-credential-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; }
.about-aeo { min-height: 330px; padding: clamp(34px, 5vw, 56px); background: var(--clr-primary); color: #fff; border-inline-start: 4px solid var(--signal); }
.about-aeo .aeo-logo { display: block; width: 92px; height: 92px; margin-bottom: 22px; padding: 4px; object-fit: contain; background: #fff; }
.about-aeo h3 { color: #fff; font-size: clamp(1.45rem, 2.7vw, 2.15rem); }
.about-aeo p { margin-top: 14px; color: rgba(255,255,255,.7); }
html[data-theme="dark"] .about-aeo { background: #071b10; color: var(--text); }
html[data-theme="dark"] .about-aeo h3 { color: var(--text); }
html[data-theme="dark"] .about-aeo p { color: rgba(238,243,240,.76); }
.about-iso-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); background: var(--bg-card); }
.about-iso-grid article { display: flex; flex-direction: column; justify-content: flex-start; min-height: 330px; padding: 30px 24px; border-inline-start: 1px solid var(--border); background: radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--iso-accent) 7%, transparent), transparent 58%), repeating-linear-gradient(135deg, transparent 0 18px, color-mix(in srgb, var(--iso-accent) 7%, transparent) 18px 19px), var(--bg-card); }
.about-iso-grid article:first-child { border-inline-start: 0; }
.iso-badge {
  position: relative; flex: 0 0 auto; width: min(210px, 100%); height: auto; aspect-ratio: 579 / 595; margin: 0 auto auto; text-align: center;
}
.iso-badge img { width: 100%; height: 100%; object-fit: contain; }
.iso-badge span, .iso-badge strong { position: absolute; z-index: 1; left: 0; width: 100%; margin: 0; }
.iso-badge span { top: 21%; color: #f7d985; font-size: .72rem; font-weight: 850; letter-spacing: .2em; text-shadow: 0 1px 2px rgba(0,0,0,.7); }
.iso-badge strong { top: 71%; color: #182027; font-size: 1rem; font-weight: 900; letter-spacing: -.025em; text-shadow: 0 1px 1px rgba(255,255,255,.42), 0 0 2px rgba(255,255,255,.32); }
.iso-quality { --iso-accent: var(--brand-deep); }
.iso-environment { --iso-accent: #39835f; }
.iso-safety { --iso-accent: #bd6a3b; }
.about-iso-grid strong { color: var(--clr-primary); font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.1; }
.about-iso-grid span { margin-top: 12px; color: var(--text-muted); font-size: .78rem; line-height: 1.4; }
.about-iso-grid .iso-badge span { position: absolute; top: 21%; margin: 0; color: #f7d985; font-size: .72rem; line-height: 1; font-weight: 850; letter-spacing: .2em; }
.about-iso-grid .iso-badge strong { position: absolute; top: 71%; margin: 0; color: #182027; font-size: 1rem; line-height: 1; font-weight: 900; letter-spacing: -.025em; text-shadow: 0 1px 1px rgba(255,255,255,.42), 0 0 2px rgba(255,255,255,.32); }
.about-assurance-lists { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; margin-top: 20px; }
.about-assurance-lists section { padding: clamp(30px, 4vw, 46px); background: var(--bg-alt); border: 1px solid var(--border); }
.about-assurance-lists h3 { margin-bottom: 22px; font-size: 1.08rem; }
.about-assurance-lists ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; list-style: none; }
.about-assurance-lists li { position: relative; padding: 10px 0 10px 19px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: .82rem; line-height: 1.45; }
.about-assurance-lists li::before { content: ""; position: absolute; top: 18px; inset-inline-start: 0; width: 6px; height: 6px; background: var(--brand); }
html[dir="rtl"] .about-assurance-lists li { padding: 10px 19px 10px 0; }
.about-assurance-lists section:last-child ul { grid-template-columns: 1fr; }

.about-purpose-section { padding: 0; background: var(--clr-primary); color: #fff; }
.about-purpose-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.about-purpose-grid article { min-height: 330px; padding: clamp(38px, 5vw, 64px); border-inline-start: 1px solid rgba(255,255,255,.13); }
.about-purpose-grid article:first-child { border-inline-start: 0; }
.about-purpose-grid article > span { color: #78dda0; font-size: .72rem; font-weight: 750; letter-spacing: .12em; }
.about-purpose-grid h3 { margin: 72px 0 14px; color: #fff; font-size: 1.45rem; }
.about-purpose-grid p { color: rgba(255,255,255,.68); font-size: .92rem; }

.about-audience-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--border); }
.about-audience-card { min-height: 310px; padding: 28px 24px; background: var(--bg-card); border-inline-start: 1px solid var(--border); }
.about-audience-card:first-child { border-inline-start: 0; }
.about-audience-card > span { color: var(--brand-deep); font-size: .7rem; font-weight: 750; letter-spacing: .12em; }
.about-audience-card h3 { margin: 68px 0 14px; font-size: 1rem; line-height: 1.35; }
.about-audience-card p { color: var(--text-muted); font-size: .82rem; line-height: 1.55; }

@media (max-width: 1100px) {
  .about-proof-grid { grid-template-columns: repeat(4, 1fr); }
  .about-proof-intro { grid-column: 1 / -1; min-height: 74px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .about-proof-grid > div:first-child { padding-inline-start: 0; }
  .about-leader { grid-template-columns: .82fr 1.18fr; }
  .about-company-grid { grid-template-columns: 1fr 1fr; }
  .about-audience-grid { grid-template-columns: repeat(3, 1fr); }
  .about-audience-card:nth-child(4) { border-inline-start: 0; border-top: 1px solid var(--border); }
  .about-audience-card:nth-child(5) { border-top: 1px solid var(--border); }
}

@media (max-width: 820px) {
  .about-story-grid, .about-credential-grid, .about-assurance-lists { grid-template-columns: 1fr; }
  .about-story-media, .about-story-media img { min-height: 440px; }
  .about-leadership-grid { grid-template-columns: 1fr; }
  .about-leader { min-height: 420px; }
  .about-timeline-panel { grid-template-columns: 1fr; gap: 30px; }
  .about-timeline-year { font-size: 4.5rem; }
  .about-purpose-grid { grid-template-columns: 1fr; }
  .about-purpose-grid article { min-height: auto; border-inline-start: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .about-purpose-grid article:first-child { border-top: 0; }
  .about-purpose-grid h3 { margin-top: 42px; }
}

@media (max-width: 600px) {
  .about-proof-grid { grid-template-columns: 1fr 1fr; }
  .about-proof-grid > div { padding: 22px 14px; }
  .about-proof-grid > div:nth-child(even) { border-inline-start: 0; }
  .about-story-media, .about-story-media img { min-height: 360px; }
  .about-leader { grid-template-columns: 1fr; }
  .about-leader img { min-height: 360px; max-height: 430px; }
  .about-leader > div { min-height: 350px; }
  .about-company-grid, .about-iso-grid, .about-audience-grid { grid-template-columns: 1fr; }
  .about-company-card { grid-template-columns: 52px 1fr; padding: 24px 20px; }
  .about-company-mark { width: 52px; height: 52px; }
  .about-iso-grid article, .about-audience-card { min-height: auto; border-inline-start: 0; border-top: 1px solid var(--border); }
  .about-iso-grid article:first-child, .about-audience-card:first-child { border-top: 0; }
  .iso-badge { width: min(218px, 78vw); height: auto; aspect-ratio: 579 / 595; margin-bottom: 30px; }
  .about-audience-card:nth-child(4) { border-top: 1px solid var(--border); }
  .about-audience-card h3 { margin-top: 38px; }
  .about-assurance-lists ul { grid-template-columns: 1fr; }
}

/* Contact page — guided enquiries and regional access */
.contact-hero .eyebrow { color: #78dda0; margin-bottom: 24px; }
.contact-hero .eyebrow::before { background: #78dda0; }
.contact-hero h1 { max-width: 960px; }
.contact-hero > .container > p:not(.breadcrumb) { max-width: 760px; font-size: clamp(1rem, 1.5vw, 1.22rem); }

.contact-proof { background: var(--clr-primary); color: #fff; border-top: 1px solid rgba(255,255,255,.12); }
.contact-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.contact-proof-grid > div { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 18px; min-height: 112px; padding: 24px 30px; border-inline-start: 1px solid rgba(255,255,255,.12); }
.contact-proof-grid > div:first-child { border-inline-start: 0; }
.contact-proof-grid span { color: #78dda0; font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.contact-proof-grid strong { color: #fff; font-size: .84rem; font-weight: 650; line-height: 1.4; }

.contact-enquiry-grid { display: grid; grid-template-columns: minmax(300px, .76fr) minmax(0, 1.24fr); gap: 0; align-items: stretch; border: 1px solid var(--border); }
.contact-channel-panel { padding: clamp(38px, 5vw, 62px); background: var(--clr-primary); color: #fff; }
.contact-channel-panel .eyebrow { color: #78dda0; }
.contact-channel-panel h2 { max-width: 420px; margin: 16px 0 18px; color: #fff; font-size: clamp(2rem, 3.5vw, 3.15rem); line-height: 1.05; letter-spacing: -.045em; }
.contact-channel-panel > p { color: rgba(255,255,255,.66); }
.contact-channel-list { margin-top: 44px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-channel-list > a { display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: #fff; }
.contact-channel-list > a:hover strong { color: #78dda0; }
.contact-channel-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid rgba(120,221,160,.42); color: #78dda0; }
.contact-channel-icon svg { width: 20px; height: 20px; }
.contact-channel-list small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.55); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-channel-list strong { color: #fff; font-size: .94rem; font-weight: 600; transition: color .2s var(--ease); }
.contact-hours { margin-top: 36px; padding-inline-start: 20px; border-inline-start: 3px solid var(--signal); }
.contact-hours span { color: #78dda0; font-size: .66rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.contact-hours p { margin-top: 7px; color: rgba(255,255,255,.67); font-size: .8rem; }

.contact-form-panel { padding: clamp(38px, 5vw, 64px); background: var(--bg-card); }
.contact-form-panel h2 { max-width: 600px; margin: 14px 0 14px; font-size: clamp(2rem, 3.7vw, 3.25rem); line-height: 1.06; letter-spacing: -.045em; }
.contact-form-intro { max-width: 640px; margin-bottom: 34px; color: var(--text-muted); }
.contact-form-panel .form-grid { gap: 20px; }
.contact-form-panel .form-field label { margin-bottom: 8px; font-size: .76rem; font-weight: 700; letter-spacing: .025em; }
.contact-form-panel .form-field input,
.contact-form-panel .form-field textarea,
.contact-form-panel .form-field select { min-height: 50px; border-radius: 1px; background: var(--bg); }
.contact-form-panel .form-field textarea { min-height: 150px; resize: vertical; }
.contact-form-panel .form-field input:focus,
.contact-form-panel .form-field textarea:focus,
.contact-form-panel .form-field select:focus { border-color: var(--brand-deep); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent); }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.contact-consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 22px; color: var(--text-muted); font-size: .78rem; line-height: 1.45; cursor: pointer; }
.contact-consent input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--brand-deep); }
.contact-security-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 18px; padding: 16px 18px; background: var(--bg-alt); border-inline-start: 3px solid var(--brand); }
.contact-security-note > span { display: inline-flex; flex: 0 0 auto; color: var(--brand-deep); }
.contact-security-note svg { width: 18px; height: 18px; }
.contact-security-note p { color: var(--text-muted); font-size: .76rem; line-height: 1.5; }
.contact-submit { margin-top: 24px; }
.contact-delivery-note { max-width: 640px; margin-top: 14px; color: var(--text-muted); font-size: .73rem; line-height: 1.5; }
.contact-form-panel .form-success { margin-top: 18px; padding: 14px 16px; background: color-mix(in srgb, var(--brand) 10%, var(--bg-card)); border: 1px solid color-mix(in srgb, var(--brand) 35%, var(--border)); color: var(--brand-deep); font-size: .82rem; font-weight: 650; }
.contact-form-panel .form-success[hidden] { display: none; }

.contact-map-grid { display: grid; grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr); min-height: 560px; border: 1px solid var(--border); background: var(--bg-card); }
.contact-map-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 72px); }
.contact-map-copy h2 { margin: 14px 0 20px; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.05; letter-spacing: -.045em; }
.contact-map-copy > p { color: var(--text-muted); }
.contact-map-details { display: grid; gap: 9px; margin: 30px 0; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.contact-map-details a { color: var(--text); font-size: .88rem; font-weight: 600; }
.contact-map-details a:hover { color: var(--brand-deep); }
.contact-map-details span { color: var(--text-muted); font-size: .77rem; line-height: 1.5; }
.contact-map-copy .btn { align-self: flex-start; }
.contact-map-frame { min-height: 560px; background: #d9dfdc; }
.contact-map-frame iframe { display: block; width: 100%; height: 100%; min-height: 560px; border: 0; filter: saturate(.78) contrast(1.03); }

.contact-location-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); }
.contact-location-card { position: relative; min-height: 390px; padding: clamp(34px, 5vw, 58px); background: var(--bg-card); }
.contact-location-card + .contact-location-card { border-inline-start: 1px solid var(--border); }
.contact-location-card > span { color: var(--brand-deep); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.contact-location-card h3 { margin: 58px 0 18px; font-size: clamp(1.55rem, 2.5vw, 2.2rem); letter-spacing: -.035em; }
.contact-location-card > p { max-width: 530px; color: var(--text-muted); }
.contact-location-card > div { display: grid; gap: 7px; margin-top: 26px; }
.contact-location-card > div a { color: var(--text); font-size: .87rem; font-weight: 600; }
.contact-location-card > div a:hover { color: var(--brand-deep); }
.contact-location-card small { color: var(--text-muted); font-size: .76rem; line-height: 1.5; }
.contact-directions-link { display: inline-flex; margin-top: 24px; color: var(--brand-deep); font-size: .73rem; font-weight: 750; letter-spacing: .075em; text-transform: uppercase; }

.contact-next-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); }
.contact-next-grid article { min-height: 310px; padding: clamp(32px, 4vw, 50px); background: var(--bg-card); border-inline-start: 1px solid var(--border); }
.contact-next-grid article:first-child { border-inline-start: 0; }
.contact-next-grid article > span { color: var(--brand-deep); font-size: .7rem; font-weight: 750; letter-spacing: .12em; }
.contact-next-grid h3 { margin: 72px 0 14px; font-size: 1.12rem; }
.contact-next-grid p { color: var(--text-muted); font-size: .86rem; line-height: 1.58; }

@media (max-width: 900px) {
  .contact-enquiry-grid, .contact-map-grid { grid-template-columns: 1fr; }
  .contact-channel-panel { min-height: auto; }
  .contact-map-frame, .contact-map-frame iframe { min-height: 440px; }
}

@media (max-width: 700px) {
  .contact-proof-grid { grid-template-columns: 1fr; }
  .contact-proof-grid > div { min-height: 84px; padding: 18px 0; border-inline-start: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .contact-proof-grid > div:first-child { border-top: 0; }
  .contact-form-panel .form-grid { grid-template-columns: 1fr; }
  .contact-form-panel .form-grid .full { grid-column: auto; }
  .contact-location-grid, .contact-next-grid { grid-template-columns: 1fr; }
  .contact-location-card + .contact-location-card, .contact-next-grid article { border-inline-start: 0; border-top: 1px solid var(--border); }
  .contact-next-grid article:first-child { border-top: 0; }
  .contact-location-card, .contact-next-grid article { min-height: auto; }
  .contact-next-grid h3 { margin-top: 44px; }
  .contact-map-frame, .contact-map-frame iframe { min-height: 360px; }
}

/* ===========================================================================
   Unified Aero green system — logo-derived atmosphere, readable panels
   ========================================================================== */
:root {
  --brand: #18a957;
  --brand-deep: #08743a;
  --brand-2: #0d8b47;
  --brand-ink: #05331c;
  --brand-soft: #e8f7ee;
  --brand-bright: #78dda0;
  --signal: var(--brand);
  --green-gradient: linear-gradient(125deg, #08743a 0%, #18a957 48%, #65cf89 100%);
  --green-dark-gradient: linear-gradient(125deg, #042817 0%, #08743a 52%, #0d8b47 100%);
  --site-atmosphere:
    radial-gradient(circle at 8% 6%, rgba(24, 169, 87, .24), transparent 30rem),
    radial-gradient(circle at 94% 24%, rgba(13, 139, 71, .16), transparent 28rem),
    linear-gradient(150deg, #f6fbf7 0%, #edf8f0 48%, #f8fcf9 100%);
  --bg: rgba(248, 252, 249, .82);
  --bg-alt: rgba(234, 246, 238, .78);
  --bg-card: rgba(255, 255, 255, .92);
  --bg-elev: rgba(238, 248, 241, .94);
  --nav-bg: #f8fcf9;
  --border: rgba(8, 116, 58, .18);
  --hairline: rgba(8, 116, 58, .16);
  --shadow: 0 24px 64px -38px rgba(5, 51, 28, .42);
  --shadow-sm: 0 14px 34px -26px rgba(5, 51, 28, .28);
  --hero-overlay: linear-gradient(100deg, rgba(3, 37, 20, .91) 0%, rgba(5, 78, 39, .73) 48%, rgba(5, 65, 32, .26) 100%);
  --hero-overlay-b: linear-gradient(180deg, rgba(3, 51, 28, 0) 52%, rgba(3, 51, 28, .54) 100%);
}

html[data-theme="dark"] {
  --brand: #32c970;
  --brand-deep: #69dc99;
  --brand-2: #1ca85c;
  --brand-soft: #102f1c;
  --brand-bright: #8ee9b3;
  --site-atmosphere:
    radial-gradient(circle at 10% 4%, rgba(24, 169, 87, .29), transparent 32rem),
    radial-gradient(circle at 95% 28%, rgba(13, 139, 71, .18), transparent 30rem),
    linear-gradient(150deg, #05100a 0%, #071d10 48%, #04130a 100%);
  --bg: rgba(5, 18, 10, .82);
  --bg-alt: rgba(8, 31, 17, .78);
  --bg-card: rgba(13, 35, 21, .93);
  --bg-elev: rgba(18, 47, 28, .94);
  --nav-bg: #05120a;
  --border: rgba(120, 221, 160, .18);
  --hairline: rgba(120, 221, 160, .14);
  --green-dark-gradient: linear-gradient(125deg, #03190d 0%, #07552c 52%, #08743a 100%);
  --hero-overlay: linear-gradient(100deg, rgba(1, 16, 8, .94) 0%, rgba(3, 54, 28, .78) 52%, rgba(4, 58, 29, .35) 100%);
  --hero-overlay-b: linear-gradient(180deg, rgba(2, 19, 10, 0) 52%, rgba(1, 16, 8, .66) 100%);
}

html { background: #eaf6ee; }
html[data-theme="dark"] { background: #04130a; }
body { background: var(--site-atmosphere); background-attachment: fixed; }

/* Content retains comfortable contrast while the gradient carries through every page. */
.section-alt, .stats, .legal-layout, .cookie-notice, .news-lead,
.contact-form-panel, .contact-location-card, .contact-next-grid article,
.about-assurance-lists section { background-color: var(--bg-alt); }
.card, .feature, .value-pill, .loc-card, .faq-item, .form-card,
.news-card, .news-controls, .about-leader, .about-timeline, .about-company-card,
.about-iso-grid, .contact-map-grid, .contact-map-copy, .contact-form-panel,
.contact-location-card, .contact-next-grid article { background-color: var(--bg-card); }

/* Logo green replaces the previous secondary orange accent everywhere. */
.eyebrow::before, .nav-links > li > a::after, .hero-dots button.active,
.card::before, .split-media .badge-year, .cta-band::before,
.about-timeline-tab.is-active, .contact-hours, .news-snapshot,
.about-aeo, .service-brief-section { border-color: var(--brand); }
.eyebrow::before, .nav-links > li > a::after, .hero-dots button.active,
.card::before { background: var(--green-gradient); }
.topbar, .trust-strip, .site-footer, .cta-band, .legal-hero,
.service-proof, .service-brief-section, .about-proof, .about-purpose-section,
.contact-proof, .contact-channel-panel, .news-ticker, #news .news-snapshot,
.dash-grid { background: var(--green-dark-gradient); }
.service-proof-grid .eyebrow, .service-brief .eyebrow, .about-hero .eyebrow,
.about-proof-grid .eyebrow, .contact-hero .eyebrow, .contact-channel-panel .eyebrow,
.news-snapshot .eyebrow, .contact-hours span { color: var(--brand-bright); }

.dropdown-menu, .news-controls { backdrop-filter: saturate(140%) blur(18px); -webkit-backdrop-filter: saturate(140%) blur(18px); }
.site-header { background: var(--nav-bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav-links { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.btn-primary { background: var(--green-gradient); color: #fff; }
html[data-theme="dark"] .btn-primary { background: var(--green-gradient); color: #fff; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--brand-deep); color: #fff; }
.hero .btn-primary, .page-hero .btn-primary, .cta-band .btn-primary { background: var(--green-gradient); color: #fff; }
html[data-theme="dark"] .hero .btn-primary,
html[data-theme="dark"] .page-hero .btn-primary,
html[data-theme="dark"] .cta-band .btn-primary { background: var(--green-gradient); color: #fff; }
.hero .btn-primary:hover, .page-hero .btn-primary:hover, .cta-band .btn-primary:hover { background: #fff; color: var(--brand-ink); }
.chip.active { background: var(--green-gradient); border-color: var(--brand-deep); }

/* Keyboard and touch behaviour share the same clear, brand-consistent affordances. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: rgba(24, 169, 87, .2); }
.btn, .icon-btn, .hamburger, .float-wa, .to-top, .footer-social a,
.faq-q, .news-save, .news-refresh, .news-saved-toggle, .chip { min-height: 44px; min-width: 44px; }
.card-link, .footer-grid a, .contact-channel-list > a, .contact-map-details a,
.contact-location-card > div a { text-underline-offset: .18em; }
@media (hover: hover) {
  .card-link:hover, .footer-grid a:hover, .contact-map-details a:hover,
  .contact-location-card > div a:hover { text-decoration: underline; }
}

/* Guardrails for small screens, long Arabic strings, and image-led layouts. */
h1, h2, h3, h4, p, a, span, li { overflow-wrap: anywhere; }
.card-media img, .industry img, .svc-media img, .split-media img,
.service-body-media img { object-position: center; }
@media (max-width: 860px) {
  .nav { height: 72px; }
  .brand img { height: 42px; }
  .nav-links { top: 72px; max-height: calc(100dvh - 72px); padding: 10px 5%; background: var(--nav-bg); }
  .nav-links > li > a { min-height: 52px; display: flex; align-items: center; padding: 13px 10px; }
  .dropdown-menu a { min-height: 44px; display: flex; align-items: center; }
  body.nav-open { overflow: hidden; }
  .section-head { margin-bottom: 38px; }
  .section-head h2 { font-size: clamp(2rem, 8vw, 3rem); }
  .page-hero { padding-block: clamp(108px, 16vw, 132px) clamp(72px, 11vw, 96px); }
}
@media (max-width: 620px) {
  .container { width: min(100% - 32px, var(--maxw)); }
  .topbar .container { justify-content: center; }
  .topbar .tb-group { justify-content: center; gap: 12px; }
  .hero { min-height: max(540px, 100svh); }
  .hero-content { padding-bottom: 66px; }
  .hero-content h1 { font-size: clamp(2.3rem, 11vw, 3.5rem); }
  .hero-content p { font-size: 1rem; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
  .card-media { aspect-ratio: 16 / 10; }
  .service-body-media, .service-body-media img { min-height: 300px; }
  .service-body-media img { object-position: center center; }
  .contact-map-frame, .contact-map-frame iframe { min-height: 300px; }
}
@media (max-width: 380px) {
  .nav-actions { gap: 4px; }
  .icon-btn { width: 40px; min-width: 40px; }
  .section { padding-block: 60px; }
  .hero-content h1 { font-size: 2.2rem; }
}

.form-field:focus-within label { color: var(--brand-deep); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus,
.news-search-wrap input:focus, .news-sort:focus {
  border-color: var(--brand-deep);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 18%, transparent);
}

/* ---------- Dark-mode contrast guardrails ----------
   Keep legacy dark surfaces dark when --clr-primary is used for heading text. */
html[data-theme="dark"] .hero,
html[data-theme="dark"] .page-hero,
html[data-theme="dark"] .about-timeline-tab.is-active,
html[data-theme="dark"] .about-company-mark {
  background-color: #071b10;
  color: var(--text);
}

html[data-theme="dark"] .hero,
html[data-theme="dark"] .page-hero {
  background: #06110c;
}

html[data-theme="dark"] .about-timeline-tab.is-active {
  background: var(--green-dark-gradient);
}

html[data-theme="dark"] .about-timeline-tab.is-active small {
  color: rgba(238, 243, 240, .78);
}

html[data-theme="dark"] .about-company-mark {
  background: #0a2a18;
  color: var(--brand-bright);
}

/* White action surfaces need dark ink in the dark theme. */
html[data-theme="dark"] .hero .btn-primary:hover,
html[data-theme="dark"] .page-hero .btn-primary:hover,
html[data-theme="dark"] .cta-band .btn-primary:hover,
html[data-theme="dark"] .hero .btn-outline:hover,
html[data-theme="dark"] .page-hero .btn-outline:hover,
html[data-theme="dark"] .btn-outline-light:hover,
html[data-theme="dark"] .service-quote .btn-primary {
  color: #082015;
}
