/* ═══════════════════════════════════════════════════════════════
   RECYCLING FIELDS — style.css
   Premium Environmental Solutions Website
   ═══════════════════════════════════════════════════════════════ */

/* ─── IMPORTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Tajawal:wght@300;400;500;700;800&family=Cairo:wght@400;500;600;700;800;900&family=Alexandria:wght@400;500;600;700;800&family=Noto+Kufi+Arabic:wght@400;500;600;700&display=swap');

/* ─── ROOT VARIABLES ─── */
:root {
  /* Brand Colors */
  --green-deep:    #004711;
  --green-mid:     #006B26;
  --green-fresh:   #00A86B;
  --green-light:   #E8F5EE;
  --green-mint:    #F0F9F5;
  --blue-tech:     #0066CC;
  --blue-water:    #0099CC;
  --blue-light:    #E5F2FF;
  --gold:          #C8A84B;
  --gold-bright:   #FFB81C;

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #F8FAF9;
  --ink:           #0D1A10;
  --ink-mid:       #2D3E30;
  --ink-light:     #4A5E4F;
  --ink-muted:     #7A8C7D;
  --border:        rgba(0,71,17,0.10);
  --border-light:  rgba(0,71,17,0.06);

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-ar:         'Alexandria', 'Tajawal', 'Cairo', 'Segoe UI Arabic', sans-serif;
  --font-ar-display: 'Cairo', 'Alexandria', 'Tajawal', 'Segoe UI Arabic', sans-serif;
  --font-ar-header:  'Noto Kufi Arabic', 'Cairo', 'Alexandria', 'Tajawal', sans-serif;

  /* Spacing */
  --section-pad:   7rem;
  --container:     1240px;

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(0,71,17,0.08);
  --shadow-md:     0 8px 32px rgba(0,71,17,0.12);
  --shadow-lg:     0 20px 60px rgba(0,71,17,0.15);
  --shadow-xl:     0 32px 80px rgba(0,71,17,0.20);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--green-mint); }
::-webkit-scrollbar-thumb { background: var(--green-fresh); border-radius: 3px; }

/* ─── SELECTION ─── */
::selection { background: var(--green-fresh); color: white; }

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-label.light { color: rgba(255,255,255,0.7); }
.section-label.gold { color: var(--gold-bright); }
.section-label.blue { color: var(--blue-tech); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--green-fresh);
}

.section-title.light { color: var(--white); }
.section-title.light em { color: #7FFFC4; }
.section-title.gold em { color: var(--gold-bright); }
.section-title.blue em { color: #6BC5FF; }

.section-intro {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.8;
  max-width: 560px;
  margin-top: 1rem;
}

.section-intro.light { color: rgba(255,255,255,0.72); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease);
}

.btn:hover::before { transform: translateX(0); }

.btn-green {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,71,17,0.35);
}

.btn-green:hover {
  background: var(--green-mid);
  box-shadow: 0 8px 30px rgba(0,71,17,0.45);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue-tech);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,102,204,0.35);
}

.btn-blue:hover {
  background: #0055AA;
  box-shadow: 0 8px 30px rgba(0,102,204,0.45);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}

.btn-outline-green:hover {
  background: var(--green-deep);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.65);
  color: white;
}

.btn-white {
  background: var(--white);
  color: var(--green-deep);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.btn-white:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold-bright);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(255,184,28,0.35);
}

.btn-gold:hover {
  background: #E5A518;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,184,28,0.45);
}

/* ─── TAG / BADGE ─── */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-green { background: var(--green-light); color: var(--green-deep); }
.tag-blue { background: var(--blue-light); color: var(--blue-tech); }
.tag-gold { background: rgba(255,184,28,0.15); color: #9A7A00; }

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease);
}

.header-top-bar {
  background: var(--green-deep);
  padding: 0.45rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.80);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.header-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.header-top-bar a {
  color: rgba(255,255,255,0.80);
  transition: color 0.2s;
}

.header-top-bar a:hover { color: white; }

.header-top-contacts { display: flex; gap: 1.5rem; align-items: center; }

.header-top-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header-location-icon {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  opacity: 0.92;
  color: rgba(255, 255, 255, 0.9);
}

.header-main {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--green-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.site-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.logo-mark-fallback {
  width: 44px;
  height: 44px;
  background: var(--green-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text { line-height: 1.15; }

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.main-nav > a,
.mega-trigger,
.mega-menu a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-light);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: all 0.2s;
  position: relative;
  letter-spacing: 0.02em;
}

.main-nav > a::after,
.mega-trigger::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0.9rem;
  right: 0.9rem;
  height: 1.5px;
  background: var(--green-fresh);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.main-nav > a:hover,
.mega-trigger:hover { color: var(--green-deep); }
.main-nav > a:hover::after,
.main-nav > a.active::after,
.mega-menu-item:hover .mega-trigger::after { transform: scaleX(1); }
.main-nav > a.active,
.mega-menu-item:hover .mega-trigger { color: var(--green-deep); }

.mega-menu-item {
  position: relative;
}

.mega-trigger { display: inline-flex; align-items: center; gap: 0.32rem; cursor: pointer; }
.mega-trigger .mega-chevron {
  width: 11px; height: 11px;
  transition: transform 0.25s var(--ease);
  opacity: 0.7;
}
.mega-menu-item:hover .mega-trigger .mega-chevron,
.mega-menu-item:focus-within .mega-trigger .mega-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding-top: 14px;
  width: clamp(560px, 62vw, 720px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 1200;
}

.mega-menu-item:hover .mega-menu,
.mega-menu-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.mega-menu-grid::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-top-left-radius: 2px;
  z-index: 1;
}

.mega-col-services {
  padding: 1.5rem 1.4rem 1.3rem;
}

.mega-menu-title {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin: 0 0 0.85rem;
  padding: 0 0.55rem;
}

.mega-link {
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.7rem 0.65rem !important;
  border-radius: 8px;
  margin-bottom: 0.2rem;
  font-size: 0.82rem !important;
  letter-spacing: 0 !important;
  text-decoration: none;
  position: relative;
  transition: background 0.2s var(--ease);
}

.mega-link:last-child { margin-bottom: 0; }
.mega-link::after { display: none !important; }

.mega-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,71,17,0.18);
  transition: transform 0.25s var(--ease);
}

.mega-link-icon.water  { background: linear-gradient(135deg, #00A8E0 0%, #0066CC 100%); }
.mega-link-icon.ai     { background: linear-gradient(135deg, #00A86B 0%, #006B26 100%); }
.mega-link-icon.advise { background: linear-gradient(135deg, #006B26 0%, #003D0E 100%); }

.mega-link-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mega-link-title {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: 0.005em;
  transition: color 0.18s;
}

.mega-link-desc {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: none;
}

.mega-link:hover {
  background: var(--green-mint);
  color: var(--ink) !important;
}
.mega-link:hover .mega-link-title { color: var(--green-deep); }
.mega-link:hover .mega-link-icon  { transform: scale(1.06) rotate(-3deg); }

.mega-link.active { background: var(--green-mint); }
.mega-link.active .mega-link-title { color: var(--green-deep); }
.mega-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--green-fresh);
}

/* Featured promo column */
.mega-col-feature {
  position: relative;
  padding: 1.5rem 1.4rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(0,168,107,0.25), transparent 55%),
    linear-gradient(155deg, #002E0B 0%, var(--green-deep) 55%, #006B26 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.mega-col-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.55;
}

.mega-feature-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B9F0CF;
  background: rgba(0,168,107,0.18);
  border: 1px solid rgba(0,168,107,0.45);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.95rem;
  position: relative;
  z-index: 2;
}

.mega-feature-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-fresh);
  box-shadow: 0 0 8px var(--green-fresh);
}

.mega-feature-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.55rem;
  color: #fff;
  position: relative;
  z-index: 2;
}

.mega-feature-title em {
  font-style: italic;
  color: #B9F0CF;
}

.mega-feature-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 1.1rem;
  position: relative;
  z-index: 2;
}

.mega-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  position: relative;
  z-index: 2;
}

.mega-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

.mega-feature-list li svg {
  width: 13px;
  height: 13px;
  color: var(--green-fresh);
  flex-shrink: 0;
}

.mega-feature-cta {
  margin-top: auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.05rem !important;
  border-radius: 6px;
  background: #fff;
  color: var(--green-deep) !important;
  font-family: var(--font-sans);
  font-size: 0.76rem !important;
  font-weight: 700;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  position: relative;
  z-index: 2;
}

.mega-feature-cta::after { display: none !important; }

.mega-feature-cta:hover {
  background: var(--green-fresh);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,168,107,0.35);
}

.mega-feature-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease);
}

.mega-feature-cta:hover svg {
  transform: translateX(3px);
}

/* Edge-safety: clamp inside viewport on smaller desktops */
@media (max-width: 1180px) {
  .mega-menu { width: clamp(520px, 58vw, 640px); }
  .mega-menu-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
  .mega-feature-title { font-size: 1.05rem; }
}

.header-cta { margin-left: 0.75rem; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle-btn {
  min-width: 50px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #fff 0%, #f0f9f5 100%);
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  box-shadow: 0 8px 18px rgba(0, 71, 17, 0.08);
}

.lang-toggle-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 71, 17, 0.22);
  box-shadow: 0 10px 24px rgba(0, 71, 17, 0.15);
}

.lang-toggle-mobile {
  width: 100%;
  margin-bottom: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 2rem;
  transition: right 0.4s var(--ease);
  box-shadow: -8px 0 60px rgba(0,0,0,0.15);
  overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.mobile-nav-close button {
  font-size: 1.4rem;
  color: var(--ink);
  padding: 0.5rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.mobile-nav-close button:hover { background: var(--green-light); }

.mobile-nav nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav nav a {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-mid);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav nav a:hover { color: var(--green-deep); }

.mobile-nav-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Header Scrolled State */
#site-header.scrolled .header-top-bar {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — HOME
   ═══════════════════════════════════════════════════════════════ */

#hero {
  min-height: 100vh;
  background: var(--green-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#hero > .container {
  position: relative;
  z-index: 2;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 2.6rem;
  padding: 8.4rem 0 13rem;
  transform: scale(0.975);
  transform-origin: top center;
}

.hero-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 95% 85% at 100% 32%, rgba(0, 18, 10, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 76% 45%, rgba(127, 255, 196, 0.16) 0%, rgba(127, 255, 196, 0.07) 12%, transparent 36%),
    radial-gradient(circle at 70% 58%, rgba(255, 255, 255, 0.07) 0%, transparent 20%),
    radial-gradient(ellipse 72% 88% at 10% 58%, rgba(0, 71, 17, 0.94) 0%, rgba(0, 71, 17, 0.42) 46%, transparent 70%),
    linear-gradient(
      118deg,
      rgba(0, 12, 6, 0.9) 0%,
      rgba(0, 71, 17, 0.58) 36%,
      rgba(0, 71, 17, 0.18) 52%,
      rgba(0, 26, 14, 0.48) 100%
    );
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-grid-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 50%, rgba(255,255,255,0.12) 0%, transparent 26%),
    linear-gradient(135deg, transparent 0%, rgba(0,168,107,0.10) 48%, transparent 76%);
  mix-blend-mode: screen;
  pointer-events: none;
}

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

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,168,107,0.4);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(100vh) rotate(0deg) scale(0.5); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-150px) rotate(720deg) scale(1.2); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 620px);
  display: flex;
  justify-content: flex-end;
  margin-top: 0.55rem;
  padding-bottom: 1.5rem;
  isolation: isolate;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: min(108%, 660px);
  height: min(92%, 540px);
  right: -4%;
  bottom: 0;
  transform: translateY(6%);
  background: radial-gradient(
    ellipse at center,
    rgba(127, 255, 196, 0.14) 0%,
    rgba(0, 168, 107, 0.08) 38%,
    transparent 72%
  );
  pointer-events: none;
  z-index: -1;
  filter: blur(2px);
}

.hero-image {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  object-position: center center;
  position: relative;
  z-index: 1;
  filter:
    brightness(1.03) contrast(1.05) saturate(1.06)
    drop-shadow(0 0 1px rgba(127, 255, 196, 0.95))
    drop-shadow(0 0 10px rgba(127, 255, 196, 0.32))
    drop-shadow(0 0 28px rgba(0, 168, 107, 0.18))
    drop-shadow(0 20px 44px rgba(0, 0, 0, 0.38));
  transform-origin: center;
  animation: heroMapFloat 6s ease-in-out infinite;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0,168,107,0.18);
  border: 1px solid rgba(0,168,107,0.35);
  border-radius: 100px;
  padding: 0.45rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  color: #7FFFC4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: fadeSlideDown 0.8s var(--ease) both;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-fresh);
  box-shadow: 0 0 0 3px rgba(0,168,107,0.25);
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,168,107,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(0,168,107,0.1); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.05rem);
  font-weight: 700;
  line-height: 1.03;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.45rem;
  animation: fadeSlideDown 0.8s 0.15s var(--ease) both;
}

.hero-title .accent {
  color: #7FFFC4;
  font-style: italic;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.74;
  max-width: 480px;
  margin-bottom: 1.9rem;
  font-weight: 300;
  animation: fadeSlideDown 0.8s 0.3s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeSlideDown 0.8s 0.45s var(--ease) both;
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 2;
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-stat {
  padding: 1.75rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

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

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeIn 1s 1s both;
}

.scroll-indicator span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap .hero-bg-video {
    display: none;
  }

  .hero-bg-layers {
    background:
      radial-gradient(circle at 76% 45%, rgba(127, 255, 196, 0.2) 0%, rgba(127, 255, 196, 0.1) 10%, transparent 34%),
      radial-gradient(circle at 70% 58%, rgba(255, 255, 255, 0.08) 0%, transparent 18%),
      radial-gradient(ellipse 70% 78% at 14% 72%, rgba(0, 71, 17, 0.9) 0%, transparent 60%),
      linear-gradient(145deg, #000F08 0%, #00220B 32%, #004711 62%, #001A09 100%);
  }

  .hero-image {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 8.5rem;
    transform: none;
  }

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

  .hero-visual {
    justify-self: start;
    width: min(100%, 500px);
    margin-top: 0;
    padding-bottom: 1.1rem;
  }
}

@media (max-width: 720px) {
  .hero-layout {
    gap: 1.1rem;
    padding: 6.2rem 0 10rem;
    transform: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 9.2vw, 2.45rem);
    line-height: 1.04;
    margin-bottom: 0.9rem;
  }

  .hero-subtitle {
    font-size: 0.91rem;
    line-height: 1.66;
    margin-bottom: 1.35rem;
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
    padding-bottom: 0.8rem;
  }

  .hero-image {
    max-width: 100%;
    filter:
      brightness(1.02) contrast(1.04) saturate(1.05)
      drop-shadow(0 0 1px rgba(127, 255, 196, 0.88))
      drop-shadow(0 0 8px rgba(127, 255, 196, 0.26))
      drop-shadow(0 0 22px rgba(0, 168, 107, 0.14))
      drop-shadow(0 18px 32px rgba(0, 0, 0, 0.28));
  }

  .hero-actions {
    gap: 0.8rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── HERO VARIATIONS (sub-pages) ─── */

.page-hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero.water-hero {
  background-color: #0a1f28;
}

.page-hero.water-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../assets/img/watertre.jpg') center / cover no-repeat;
  animation: waterHeroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.page-hero.water-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      110deg,
      rgba(0, 24, 48, 0.82) 0%,
      rgba(0, 71, 17, 0.52) 38%,
      rgba(0, 153, 204, 0.28) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 42%, rgba(0, 20, 40, 0.55) 100%);
}

.page-hero.water-hero .hero-grid-pattern,
.page-hero.water-hero .water-waves {
  z-index: 1;
}

.page-hero.water-hero > .container {
  position: relative;
  z-index: 2;
}

@keyframes waterHeroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.07) translate(-1.2%, -0.6%); }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero.water-hero::before {
    animation: none;
  }
}

.page-hero.ai-hero {
  background-color: #0a0f1a;
}

.page-hero.ai-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../assets/img/aienergy.jpg') center / cover no-repeat;
  animation: aiHeroKenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}

.page-hero.ai-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(10, 10, 26, 0.9) 0%,
      rgba(0, 34, 68, 0.58) 38%,
      rgba(0, 71, 17, 0.38) 68%,
      rgba(0, 102, 204, 0.35) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, transparent 38%, rgba(5, 12, 32, 0.58) 100%);
}

.page-hero.ai-hero .circuit-bg {
  z-index: 1;
  opacity: 0.11;
}

.page-hero.ai-hero > .container {
  position: relative;
  z-index: 2;
}

@keyframes aiHeroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(0.9%, -0.55%); }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero.ai-hero::before {
    animation: none;
  }
}

.page-hero.consult-hero {
  background-color: #0a1610;
}

.page-hero.consult-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../assets/img/cons.jpg') center / cover no-repeat;
  animation: consultHeroKenBurns 23s ease-in-out infinite alternate;
  will-change: transform;
}

.page-hero.consult-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(0, 26, 8, 0.88) 0%,
      rgba(0, 71, 17, 0.58) 40%,
      rgba(0, 46, 8, 0.48) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, transparent 40%, rgba(0, 18, 10, 0.62) 100%);
}

.page-hero.consult-hero .hero-grid-pattern {
  z-index: 1;
}

.page-hero.consult-hero > .container {
  position: relative;
  z-index: 2;
}

@keyframes consultHeroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.065) translate(-1%, -0.45%); }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero.consult-hero::before {
    animation: none;
  }
}

.page-hero.partners-hero {
  background-color: #0a1418;
}

.page-hero.partners-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../assets/img/part.jpg') center / cover no-repeat;
  animation: partnersHeroKenBurns 23s ease-in-out infinite alternate;
  will-change: transform;
}

.page-hero.partners-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      108deg,
      rgba(0, 26, 8, 0.86) 0%,
      rgba(0, 71, 17, 0.52) 42%,
      rgba(0, 102, 204, 0.38) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 38%, rgba(0, 20, 35, 0.58) 100%);
}

.page-hero.partners-hero .hero-grid-pattern {
  z-index: 1;
}

.page-hero.partners-hero > .container {
  position: relative;
  z-index: 2;
}

@keyframes partnersHeroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.065) translate(0.85%, -0.5%); }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero.partners-hero::before {
    animation: none;
  }
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 0 6rem;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.page-hero h1 em {
  font-style: italic;
  color: #7FFFC4;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 2.25rem;
}

/* Water hero waves */
.water-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  overflow: hidden;
}

.water-wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 100px;
  background: rgba(0,153,204,0.2);
  border-radius: 50% 50% 0 0 / 80px;
  animation: waveFlow linear infinite;
}

.water-wave:nth-child(1) { animation-duration: 8s; opacity: 0.6; }
.water-wave:nth-child(2) { animation-duration: 11s; opacity: 0.4; animation-delay: -4s; bottom: 10px; }
.water-wave:nth-child(3) { animation-duration: 14s; opacity: 0.2; animation-delay: -7s; bottom: 20px; }

@keyframes waveFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* AI hero circuits */
.circuit-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(0,102,204,0.8) 29px, rgba(0,102,204,0.8) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(0,102,204,0.8) 29px, rgba(0,102,204,0.8) 30px);
}

/* ═══════════════════════════════════════════════════════════════
   TRUST / STATS SECTION
   ═══════════════════════════════════════════════════════════════ */

.trust-section {
  background: var(--off-white);
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-card {
  text-align: center;
  padding: 1.5rem;
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--green-deep);
  box-shadow: var(--shadow-sm);
}

.trust-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}

.trust-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.4rem;
}

/* ═══════════════════════════════════════════════════════════════
   SEGMENTS / SERVICES
   ═══════════════════════════════════════════════════════════════ */

.segments-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.segments-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.segments-header .section-label { display: flex; justify-content: center; }

.segment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.segment-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.segment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.segment-card.water::before { background: linear-gradient(90deg, #004711, #0099CC); }
.segment-card.ai::before { background: linear-gradient(90deg, #0066CC, var(--gold-bright)); }
.segment-card.consult::before { background: linear-gradient(90deg, #004711, #00A86B); }

.segment-card:hover { background: var(--green-mint); transform: translateY(-3px); }
.segment-card:hover::before { transform: scaleX(1); }

.segment-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: all 0.3s;
}

.segment-card.water .segment-icon-wrap { background: var(--blue-light); color: var(--blue-water); }
.segment-card.ai .segment-icon-wrap { background: rgba(0,102,204,0.1); color: var(--blue-tech); }
.segment-card.consult .segment-icon-wrap { background: var(--green-light); color: var(--green-deep); }

.segment-card:hover .segment-icon-wrap {
  background: var(--green-deep);
  color: var(--white);
}

.segment-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.segment-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.segment-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.segment-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
  transition: gap 0.2s;
}

.segment-link:hover { gap: 0.9rem; }

/* ─── SERVICES GRID ─── */
.services-section { padding: var(--section-pad) 0; background: var(--white); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-fresh);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.service-card:hover { background: var(--green-mint); }
.service-card:hover::after { transform: scaleX(1); }

.service-card-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  transition: color 0.3s;
}

.service-card:hover .service-card-num { color: rgba(0,168,107,0.12); }

.service-icon-box {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon-box {
  background: var(--green-deep);
  color: var(--white);
}

/* Blue variants */
.service-card.blue-variant .service-icon-box { background: var(--blue-light); color: var(--blue-tech); }
.service-card.blue-variant:hover .service-icon-box { background: var(--blue-tech); color: white; }
.service-card.blue-variant::after { background: var(--blue-tech); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.87rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.service-card-specs {
  font-size: 0.78rem;
  font-family: var(--font-sans);
  color: var(--green-mid);
  font-weight: 600;
  padding: 0.5rem 0;
  border-top: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green-deep);
  transition: gap 0.2s;
}

.service-link:hover { gap: 0.8rem; }

/* ═══════════════════════════════════════════════════════════════
   WHY US SECTION
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   WHO WE ARE
   ═══════════════════════════════════════════════════════════════ */

.who-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--off-white);
  overflow: hidden;
}

.who-section-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(0, 168, 107, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 90% 90%, rgba(0, 71, 17, 0.05) 0%, transparent 40%);
  z-index: 0;
}

.who-section > .container {
  position: relative;
  z-index: 1;
}

.who-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.who-header .section-label {
  justify-content: center;
}

.who-intro {
  margin: 1.25rem auto 0;
}

/* ─── Story + Stats split ─── */
.who-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 6rem;
}

.who-story {
  display: flex;
  flex-direction: column;
}

.who-story-marker {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.who-story-marker-bar {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--green-fresh) 0%, var(--green-deep) 100%);
}

.who-story-marker-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-story-year {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}

.who-story-marker-label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-top: 0.4rem;
}

.who-story h3 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.who-story p {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-weight: 400;
}

.who-story-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.who-story-pillar {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  background: #fff;
  border: 1px solid rgba(0, 168, 107, 0.22);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: all 0.25s var(--ease);
}

.who-story-pillar svg {
  flex-shrink: 0;
  color: var(--green-fresh);
}

.who-story-pillar:hover {
  background: var(--green-mint);
  border-color: rgba(0, 168, 107, 0.4);
  transform: translateY(-1px);
}

/* ─── Stats card ─── */
.who-stats-card {
  background: #fff;
  border: 1px solid rgba(0, 71, 17, 0.08);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  box-shadow:
    0 2px 8px rgba(0, 71, 17, 0.04),
    0 18px 50px rgba(0, 71, 17, 0.07);
  position: relative;
  overflow: hidden;
}

.who-stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-fresh) 0%, var(--green-deep) 100%);
}

.who-stats-card-header {
  padding-bottom: 1.4rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(0, 71, 17, 0.08);
}

.who-stats-card-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-bottom: 0.55rem;
}

.who-stats-card-header h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.who-stats-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.who-stat-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.1rem;
  align-items: center;
  padding: 0.75rem 0;
}

.who-stat-row + .who-stat-row {
  border-top: 1px dashed rgba(0, 71, 17, 0.08);
  padding-top: 1.1rem;
}

.who-stat-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
}

.who-stat-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.who-stat-text strong {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.who-stat-text span {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.55;
}

/* ─── Values block ─── */
.who-values-block {
  margin-bottom: 4rem;
}

.who-values-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.who-values-header .section-label {
  justify-content: center;
}

.who-values-header .section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
}

.who-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.who-value-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 71, 17, 0.08);
  border-radius: 14px;
  padding: 1.85rem 1.6rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.who-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 168, 107, 0.24);
}

.who-value-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--green-mint) 0%, #ffffff 100%);
  border: 1px solid rgba(0, 168, 107, 0.22);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.who-value-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.55rem;
}

.who-value-card p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.65;
  margin: 0;
}

/* ─── CTA strip ─── */
.who-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.25rem;
  background: #fff;
  border: 1px solid rgba(0, 71, 17, 0.08);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 71, 17, 0.04);
  position: relative;
  overflow: hidden;
}

.who-cta::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green-fresh) 0%, var(--green-deep) 100%);
}

.who-cta-text h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.who-cta-text p {
  font-size: 0.94rem;
  color: var(--ink-light);
  margin: 0;
  line-height: 1.5;
}

.who-cta-btn {
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .who-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4.5rem;
  }
  .who-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .who-cta {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .who-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .who-values-grid {
    grid-template-columns: 1fr;
  }
  .who-stats-card {
    padding: 1.75rem 1.5rem;
  }
  .who-cta {
    padding: 1.5rem 1.4rem;
  }
}

.why-section {
  padding: var(--section-pad) 0;
  background: var(--green-mint);
}

.why-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.why-header .section-label { display: flex; justify-content: center; }

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

.why-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: 4px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s var(--ease);
}

.why-card:hover {
  border-bottom-color: var(--green-fresh);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.why-card-num {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green-fresh);
  margin-bottom: 1rem;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

.why-card:hover .why-icon {
  background: var(--green-deep);
  color: var(--white);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.why-card p {
  font-size: 0.86rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   MAP SECTION
   ═══════════════════════════════════════════════════════════════ */

.map-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(150deg, #002E0B 0%, #004711 60%, #005E1A 100%);
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
}

.map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.map-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.map-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}

.map-feature-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-fresh);
  flex-shrink: 0;
}

.map-svg-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-svg-container::before {
  content: '';
  position: absolute;
  width: min(86%, 420px);
  height: min(86%, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,255,196,0.14) 0%, rgba(127,255,196,0.04) 45%, transparent 72%);
  filter: blur(4px);
  pointer-events: none;
}

.ksa-map-figure {
  position: relative;
  width: 100%;
  max-width: 520px;
  z-index: 1;
}

.ksa-map-image {
  width: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.38));
}

.riyadh-boundary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.riyadh-boundary path {
  stroke-linejoin: round;
  stroke-linecap: round;
}

.riyadh-region-outer {
  fill: rgba(0,168,107,0.08);
  stroke: rgba(172,255,224,0.82);
  stroke-width: 1.1;
  stroke-dasharray: 3.2 2.4;
  filter: drop-shadow(0 0 8px rgba(114,255,200,0.30));
}

.riyadh-region-inner {
  fill: rgba(127,255,196,0.16);
  stroke: rgba(236,255,246,0.88);
  stroke-width: 0.95;
  filter: drop-shadow(0 0 4px rgba(127,255,196,0.22));
}

.riyadh-marker {
  position: absolute;
  left: 55.8%;
  top: 48.2%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.riyadh-pulse {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,168,107,0.30);
  box-shadow: 0 0 0 0 rgba(0,168,107,0.52);
  animation: riyadhPulse 2.4s infinite;
}

.riyadh-pin {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #00A86B;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 10px 20px rgba(0,0,0,0.32);
}

.riyadh-pin::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  left: 5px;
  top: 5px;
}

.riyadh-label {
  position: absolute;
  left: 26px;
  top: -9px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  background: rgba(0,26,10,0.88);
  border: 1px solid rgba(127,255,196,0.42);
  white-space: nowrap;
}

.riyadh-label strong {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}

.riyadh-label small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  line-height: 1;
  color: rgba(219,255,236,0.82);
}

@keyframes riyadhPulse {
  0% { box-shadow: 0 0 0 0 rgba(0,168,107,0.52); }
  70% { box-shadow: 0 0 0 18px rgba(0,168,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,168,107,0); }
}

/* ═══════════════════════════════════════════════════════════════
   IMPACT / STATS
   ═══════════════════════════════════════════════════════════════ */

.impact-section { padding: var(--section-pad) 0; background: var(--white); }

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

.impact-bars { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }

.impact-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.impact-bar-label {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-mid);
}

.impact-bar-pct {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
}

.impact-bar-track {
  height: 8px;
  background: var(--green-light);
  border-radius: 100px;
  overflow: hidden;
}

.impact-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-fresh));
  width: 0;
  transition: width 1.8s var(--ease-out);
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.impact-stat-card {
  padding: 2rem;
  background: var(--green-mint);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  text-align: center;
}

.impact-stat-icon { color: var(--green-deep); margin-bottom: 0.85rem; }

.impact-stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}

.impact-stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.4rem;
}

/* ═══════════════════════════════════════════════════════════════
   CERTIFICATIONS BAR
   ═══════════════════════════════════════════════════════════════ */

.certs-section {
  background: var(--green-deep);
  padding: 3.5rem 0;
}

.certs-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.certs-text strong {
  display: block;
  color: white;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.certs-text span { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

.certs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cert-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 0.55rem 1.1rem;
  color: white;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.cert-badge:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════════════════
   PARTNERS / LOGOS
   ═══════════════════════════════════════════════════════════════ */

.partners-showcase {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partners-showcase-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.partners-showcase-header .section-label {
  display: flex;
  justify-content: center;
}

.partners-category-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  margin: 3rem 0 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.partners-category-title::before,
.partners-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.partner-logo-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.partner-logo-card::before {
  content: attr(data-name);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-deep);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}

.partner-logo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green-fresh); }
.partner-logo-card:hover::before { transform: translateY(0); }

.partner-logo-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.partner-logo-card:hover img { filter: grayscale(0%); }

/* Partner placeholder (when no real logo) */
.partner-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-muted);
}

.partner-logo-placeholder svg { color: var(--green-mid); opacity: 0.6; }

.partner-logo-placeholder span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.partners-cta { text-align: center; margin-top: 3.5rem; }

/* ─── Full Partners Page ─── */
.partners-page-section { padding: var(--section-pad) 0; }

.partners-page-section:nth-child(even) { background: var(--off-white); }

.partner-full-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.partner-full-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.partner-full-card.water::before { background: var(--blue-water); }
.partner-full-card.ai::before { background: var(--blue-tech); }
.partner-full-card.consult::before { background: var(--green-fresh); }

.partner-full-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.partner-full-card:hover::before { transform: scaleX(1); }

.partner-card-logo {
  height: 70px;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.partner-card-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.partner-card-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.partner-full-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.partner-full-card p {
  font-size: 0.83rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.partner-logos-marquee {
  overflow: hidden;
  position: relative;
  direction: ltr;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,249,0.9));
  padding: 1.1rem 0;
}

.partner-logos-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  direction: ltr;
  animation: partnerMarquee 34s linear infinite;
  padding: 0 1rem;
}

.partner-logos-track-reverse {
  animation-direction: reverse;
}

.partner-logos-marquee:hover .partner-logos-track {
  animation-play-state: paused;
}

.partner-mini-card {
  width: 224px;
  min-height: 112px;
  border: 1px solid rgba(0, 71, 17, 0.1);
  border-radius: 12px;
  background: var(--white);
  padding: 0.95rem 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.partner-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--green-fresh);
}

.partner-mini-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,168,107,0.14);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.partner-mini-card h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.45rem;
}

.partner-mini-card img {
  max-width: 102px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.25rem;
}

.partner-mini-card span {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@keyframes partnerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes partnerMarqueeRtl {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

html[lang="ar"] .partner-logos-track {
  animation-name: partnerMarqueeRtl;
}

@media (max-width: 900px) {
  .partner-mini-card {
    width: 210px;
    min-height: 110px;
  }

  .partner-logos-track {
    animation-duration: 28s;
  }
}

@media (max-width: 600px) {
  .partner-mini-card {
    width: 185px;
    min-height: 104px;
    padding: 0.85rem 0.7rem;
  }

  .partner-mini-logo {
    width: 38px;
    height: 38px;
    font-size: 0.7rem;
  }

  .partner-mini-card h4 {
    font-size: 0.74rem;
  }

  .partner-mini-card span {
    font-size: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-logos-track {
    animation: none;
  }
}

.partner-specs {
  font-size: 0.78rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink-light);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.partner-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-top: 1rem;
  transition: gap 0.2s;
}

.partner-card-cta:hover { gap: 0.75rem; }

/* ─── Partnership Models ─── */
.partnership-models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.partnership-model-card {
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s var(--ease);
}

.partnership-model-card.featured {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: white;
}

.partnership-model-card:not(.featured):hover {
  border-color: var(--green-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.partnership-tier {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-bottom: 1rem;
}

.featured .partnership-tier { color: #7FFFC4; }

.partnership-model-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.partnership-model-card p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured .partnership-model-card p { color: rgba(255,255,255,0.72); }

.partnership-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.partnership-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--ink-light);
}

.featured .partnership-feature { color: rgba(255,255,255,0.82); }

.partnership-feature svg { color: var(--green-fresh); flex-shrink: 0; }
.featured .partnership-feature svg { color: #7FFFC4; }

/* ─── Leadership ─── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.leadership-card {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.leadership-card:hover {
  border-color: rgba(0, 71, 17, 0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.leadership-card-media {
  height: 320px;
  background: var(--green-mint);
}

.leadership-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-card-body {
  padding: 1.5rem;
}

.leadership-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.leadership-role {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-mid);
  margin-bottom: 0.9rem;
}

.leadership-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   LEADERSHIP PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ─── Leadership pillars section (after hero) ─── */
.leadership-pillars-section {
  padding: var(--section-pad) 0 calc(var(--section-pad) - 2rem);
  background: var(--off-white);
}

.leadership-pillars-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}

.leadership-pillars-header .section-label {
  justify-content: center;
}

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

.leadership-pillar-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 71, 17, 0.08);
  border-radius: 16px;
  padding: 2rem 1.75rem 1.85rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  overflow: hidden;
}

.leadership-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-fresh) 0%, var(--green-deep) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.leadership-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 168, 107, 0.22);
}

.leadership-pillar-card:hover::before {
  transform: scaleX(1);
}

.leadership-pillar-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: rgba(0, 71, 17, 0.10);
  letter-spacing: -0.02em;
}

.leadership-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-mint) 0%, #ffffff 100%);
  border: 1px solid rgba(0, 168, 107, 0.22);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.leadership-pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.leadership-pillar-card p {
  font-size: 0.93rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .leadership-pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Leadership team header ─── */
.leadership-team-section {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(circle at 10% -15%, rgba(0, 168, 107, 0.06) 0%, transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(0, 71, 17, 0.05) 0%, transparent 28%),
    #fff;
}

.leadership-team-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3rem;
}

.leadership-team-header .section-label {
  justify-content: center;
}

.leadership-team-header .section-intro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--ink-mid);
}

/* ─── Leadership profile cards ─── */
.leadership-profile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
  gap: 2.6rem;
  background: #fff;
  border: 1px solid rgba(0, 71, 17, 0.1);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow:
    0 10px 28px rgba(0, 71, 17, 0.08),
    0 28px 85px rgba(0, 71, 17, 0.1);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  margin-bottom: 2.5rem;
}

.leadership-profile:last-child {
  margin-bottom: 0;
}

.leadership-profile::before {
  content: '';
  position: absolute;
  top: 0.9rem;
  bottom: 0.9rem;
  left: 0.9rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 168, 107, 0.85) 0%, rgba(0, 71, 17, 0.9) 100%);
}

.leadership-profile::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.leadership-profile:hover {
  transform: translateY(-5px);
  box-shadow:
    0 14px 36px rgba(0, 71, 17, 0.1),
    0 36px 95px rgba(0, 71, 17, 0.14);
}

/* Featured (founder) variant */
.leadership-profile-featured {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
}

.leadership-profile-featured::before {
  width: 4px;
}

/* Reverse layout */
.leadership-profile-reverse {
  grid-template-columns: 1fr minmax(300px, 420px);
}

.leadership-profile-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 71, 17, 0.08) 0%, rgba(0, 71, 17, 0) 25%),
    linear-gradient(150deg, #f4faf7 0%, #eaf6ef 100%);
  min-height: 470px;
  border: 1px solid rgba(0, 71, 17, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58), 0 18px 36px rgba(0, 71, 17, 0.11);
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem;
}

.leadership-profile-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 70% 20%, rgba(0, 168, 107, 0.12), transparent 44%);
  z-index: 1;
  pointer-events: none;
}

.leadership-profile-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(0, 71, 17, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

.leadership-profile-image {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.6s var(--ease);
  filter: saturate(1.02) contrast(1.02);
  z-index: 0;
}

.leadership-profile:hover .leadership-profile-image {
  transform: scale(1.018);
}

.leadership-profile-num {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--green-deep);
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 168, 107, 0.2);
  border-radius: 8px;
  width: 50px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
  backdrop-filter: blur(2px);
}

.leadership-profile-content {
  position: relative;
  z-index: 2;
  padding: 0.35rem 0.35rem 0.35rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.44rem 0.82rem;
  background: rgba(0, 168, 107, 0.1);
  border: 1px solid rgba(0, 168, 107, 0.24);
  border-radius: 7px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.95rem;
  width: auto;
  max-width: max-content;
}

.leadership-profile-tag svg {
  flex-shrink: 0;
  color: var(--green-fresh);
}

.leadership-profile-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.75rem);
  line-height: 1.05;
  margin-bottom: 0.78rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.leadership-profile-content .leadership-role {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(0, 71, 17, 0.04);
  border: 1px solid rgba(0, 71, 17, 0.08);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
}

.leadership-profile-content p {
  font-size: 1.01rem;
  color: var(--ink-mid);
  line-height: 1.9;
  margin-bottom: 0.8rem;
  font-weight: 400;
  max-width: 68ch;
}

.leadership-profile-content p + p {
  padding-top: 0.25rem;
}

/* Explicit executive redesign (higher specificity, leadership page only) */
.leadership-team-section .leadership-executive-card {
  grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
  gap: 2.8rem;
  padding: 2.3rem;
  border-radius: 26px;
  border: 1px solid rgba(0, 71, 17, 0.14);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
  box-shadow:
    0 14px 32px rgba(0, 71, 17, 0.08),
    0 34px 90px rgba(0, 71, 17, 0.12);
}

.leadership-team-section .leadership-executive-card::before {
  width: 4px;
  left: 1.05rem;
  top: 1.05rem;
  bottom: 1.05rem;
}

.leadership-team-section .leadership-executive-card::after {
  inset: 0;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.leadership-team-section .leadership-executive-image-wrap {
  min-height: 500px;
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid rgba(0, 71, 17, 0.16);
  background:
    linear-gradient(180deg, rgba(0, 71, 17, 0.1) 0%, rgba(0, 71, 17, 0) 24%),
    linear-gradient(150deg, #f5faf7 0%, #e9f5ee 100%);
}

.leadership-team-section .leadership-executive-image-wrap .leadership-profile-image {
  max-height: 455px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.leadership-team-section .leadership-executive-content {
  padding: 0.4rem 0.2rem 0.4rem 0;
}

.leadership-team-section .leadership-executive-content .leadership-profile-tag {
  border-radius: 8px;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  padding: 0.45rem 0.9rem;
}

.leadership-team-section .leadership-executive-content h2 {
  font-size: clamp(2.2rem, 3.4vw, 2.85rem);
  line-height: 1.04;
  margin-bottom: 0.85rem;
}

.leadership-team-section .leadership-executive-content .leadership-role {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  border-radius: 6px;
  margin-bottom: 1.3rem;
  padding: 0.42rem 0.78rem;
  background: rgba(0, 71, 17, 0.04);
  border: 1px solid rgba(0, 71, 17, 0.1);
}

.leadership-team-section .leadership-executive-content p {
  font-size: 1.02rem;
  line-height: 1.92;
  max-width: 67ch;
}

.leadership-team-section .leadership-executive-card .leadership-profile-num {
  width: 50px;
  height: 40px;
  font-size: 1.05rem;
  border-radius: 8px;
}

.leadership-credentials {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(0, 71, 17, 0.08);
}

.leadership-credentials-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-bottom: 0.85rem;
}

.leadership-profile .team-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.leadership-profile .cert-badge {
  background: linear-gradient(135deg, var(--green-mint) 0%, #ffffff 100%);
  border: 1px solid rgba(0, 168, 107, 0.28);
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.95rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 71, 17, 0.05);
  transition: all 0.25s var(--ease);
}

.leadership-profile .cert-badge:hover {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 71, 17, 0.18);
}

/* ─── Leadership CTA section ─── */
.leadership-cta-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.leadership-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  background:
    linear-gradient(135deg, var(--green-deep) 0%, #003a0e 100%);
  color: #fff;
  border-radius: 22px;
  padding: 3.5rem 3.25rem;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 71, 17, 0.18);
}

.leadership-cta-card::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 168, 107, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.leadership-cta-card::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -180px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 168, 107, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.leadership-cta-content {
  position: relative;
  z-index: 1;
}

.leadership-cta-content .section-title.light {
  margin-bottom: 1.1rem;
}

.leadership-cta-content p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  max-width: 520px;
  margin: 0;
}

.leadership-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
}

.leadership-cta-actions .btn {
  justify-content: center;
  padding: 1rem 1.6rem;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .leadership-cta-card {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.75rem;
    text-align: center;
  }
  .leadership-cta-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .leadership-pillars-header .section-label,
  .leadership-team-header .section-label {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */

.about-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.about-section-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about-section-media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/cons.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: aboutMediaPan 22s ease-in-out infinite alternate;
}

@keyframes aboutMediaPan {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1.09) translateX(-1.4%);
  }
}

.about-section-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(0, 71, 17, 0.9) 0%,
    rgba(0, 71, 17, 0.72) 34%,
    rgba(0, 71, 17, 0.38) 46%,
    rgba(248, 250, 249, 0.94) 52%,
    rgba(248, 250, 249, 0.97) 100%
  );
  pointer-events: none;
}

.about-section-media-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  .about-section-media-image {
    animation: none;
    transform: none;
  }

  .about-section-media {
    background: var(--green-deep);
  }
}

.about-section-inner {
  position: relative;
  z-index: 3;
}

.about-visual {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual-card {
  background: rgba(0, 71, 17, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-visual-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(0, 168, 107, 0.18);
  pointer-events: none;
}

.about-visual-card > * {
  position: relative;
  z-index: 1;
}

.about-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.about-card-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 2rem;
}

.about-pillars { display: flex; flex-direction: column; gap: 1.75rem; }

.about-pillar { display: flex; gap: 1rem; align-items: flex-start; }

.about-pillar-icon {
  width: 38px;
  height: 38px;
  background: rgba(0,168,107,0.22);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-fresh);
  flex-shrink: 0;
}

.about-pillar-text h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.about-pillar-text p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}

.about-float-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 2.5rem;
  background: white;
  border-radius: 10px;
  padding: 1rem 1.75rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.about-float-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.about-float-label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-muted);
  line-height: 1.4;
}

.about-text { padding-top: 2rem; }
.about-text p {
  color: #000;
  font-weight: 500;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-values { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }

.about-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--green-mint);
  border-left: 3px solid var(--green-fresh);
  border-radius: 0 4px 4px 0;
}

.about-value-icon { color: var(--green-deep); flex-shrink: 0; margin-top: 2px; }
.about-value h4 { font-size: 0.92rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.about-value p { font-size: 0.82rem; color: var(--ink-light); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   PROCESS / TIMELINE
   ═══════════════════════════════════════════════════════════════ */

.process-section { padding: var(--section-pad) 0; background: var(--off-white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 4rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--green-fresh), var(--green-light), var(--green-fresh));
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--green-fresh);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-deep);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.process-step:hover .process-step-num {
  background: var(--green-deep);
  color: white;
  transform: scale(1.1);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.process-step-duration {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */

.faq-section { padding: var(--section-pad) 0; }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 860px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--green-fresh); }

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  background: white;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--green-mint); }

.faq-item.open .faq-question { background: var(--green-mint); }

.faq-question span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-deep);
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--green-deep);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 1.75rem 1.35rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.8;
}

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

.roi-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quick-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */

.contact-section { padding: var(--section-pad) 0; background: var(--green-mint); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form-wrap { }

.contact-form { margin-top: 2.5rem; }

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

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  border-radius: 3px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-fresh);
  box-shadow: 0 0 0 3px rgba(0,168,107,0.12);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23004711' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-info-col { padding-top: 0; }

.contact-info-col h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }

.contact-detail-icon {
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-detail-text h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.3rem;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.contact-detail-text a { transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--green-deep); }

.contact-map-placeholder {
  background: var(--green-deep);
  border-radius: 6px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.contact-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 30px),
                    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 30px);
}

.contact-map-content {
  text-align: center;
  color: rgba(255,255,255,0.75);
  position: relative;
  z-index: 1;
}

.contact-map-content p { font-size: 0.85rem; margin-top: 0.5rem; }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: var(--green-deep);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s var(--ease-spring);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

#site-footer { background: var(--ink); color: rgba(255,255,255,0.65); }

.footer-main { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
}

.footer-brand .logo-name { color: white; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }

.footer-brand p {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.85;
  max-width: 280px;
}

.footer-commit {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  background: rgba(0,168,107,0.1);
  border-left: 3px solid var(--green-fresh);
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.footer-col h4 {
  color: white;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.footer-links a::before {
  content: '›';
  color: var(--green-fresh);
  font-size: 1.1rem;
}

.footer-links a:hover { color: white; }

.footer-newsletter { }

.footer-newsletter p {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border-radius: 3px 0 0 3px;
  outline: none;
  transition: all 0.2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--green-fresh); background: rgba(255,255,255,0.12); }

.newsletter-form button {
  padding: 0.75rem 1.1rem;
  background: var(--green-fresh);
  border: none;
  cursor: pointer;
  color: white;
  border-radius: 0 3px 3px 0;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}

.newsletter-form button:hover { background: var(--green-mid); }

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.58);
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--green-fresh);
  border-color: var(--green-fresh);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.75rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-legal a:hover { color: white; }
.footer-credit-link {
  margin-inline-start: auto;
  color: rgba(255,255,255,0.26);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.65;
}
.footer-credit-link:hover {
  color: rgba(255,255,255,0.5);
  opacity: 1;
}

/* Basic front-end content protection */
body.content-protected {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

body.content-protected input,
body.content-protected textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

body.content-protected img,
body.content-protected video,
body.content-protected svg {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* CTA Banner */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, #005E1A 60%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.cta-banner-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .segment-cards { grid-template-columns: 1fr; }
  .partnership-models-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section-media-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 71, 17, 0.85) 0%,
      rgba(0, 71, 17, 0.55) 38%,
      rgba(248, 250, 249, 0.94) 62%,
      rgba(248, 250, 249, 0.98) 100%
    );
  }

  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .impact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .map-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-logo-grid { grid-template-columns: repeat(4, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .riyadh-label {
    left: 24px;
    top: -10px;
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 5rem; }

  .main-nav, .header-actions { display: none; }
  .hamburger { display: flex; }

  .header-top-bar {
    display: none;
  }

  .header-main .container {
    height: 62px;
  }

  .logo { gap: 0.6rem; }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .logo-name { font-size: 1.05rem; }

  .riyadh-marker {
    left: 55.4%;
    top: 47.7%;
  }

  .riyadh-label {
    left: 18px;
    top: 18px;
    padding: 0.32rem 0.5rem;
  }

  .riyadh-label strong {
    font-size: 0.66rem;
  }

  .riyadh-label small {
    font-size: 0.56rem;
  }
  .logo-sub { font-size: 0.56rem; }

  .hamburger {
    padding: 6px;
    gap: 4px;
  }

  .hamburger span {
    width: 20px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 6.6rem 0 14.2rem;
    transform: none;
  }

  .hero-content { max-width: 100%; }

  .hero-badge {
    font-size: 0.62rem;
    padding: 0.38rem 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
  }

  .hero-title {
    font-size: clamp(1.95rem, 8.6vw, 2.4rem);
    line-height: 1.05;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 1.25rem;
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
    padding-bottom: 2.9rem;
  }

  .hero-image {
    max-width: 420px;
    width: 100%;
    filter:
      drop-shadow(0 0 1px rgba(127,255,196,0.80))
      drop-shadow(0 0 5px rgba(127,255,196,0.28))
      drop-shadow(0 18px 26px rgba(0,0,0,0.22));
  }

  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .ai-capabilities-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .roi-form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .impact-stats-grid { grid-template-columns: 1fr 1fr; }
  .partners-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .partnership-models-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leadership-profile,
  .leadership-profile-reverse {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.2rem;
  }
  .leadership-profile-reverse .leadership-profile-image-wrap {
    order: -1;
  }
  .leadership-profile-image-wrap {
    min-height: 390px;
    max-height: none;
    padding: 0.85rem;
  }
  .leadership-profile-content {
    padding: 0.5rem 0.25rem 0.25rem;
  }
  .leadership-profile-content h2 {
    font-size: 1.9rem;
  }
  .leadership-profile-content p {
    font-size: 0.98rem;
    line-height: 1.8;
  }
  .leadership-profile::after {
    width: 200px;
    height: 200px;
  }
  .leadership-profile-num {
    width: 46px;
    height: 38px;
    font-size: 1rem;
  }
  .faq-question {
    padding: 1.1rem 1rem;
  }
  .faq-answer-inner {
    padding: 0 1rem 1.1rem;
  }
  .scroll-indicator { display: none; }
}

/* ─── Arabic / RTL ─── */
html[lang="ar"] body {
  font-family: var(--font-ar);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.85;
}

html[lang="ar"] {
  direction: rtl;
}

html[lang="ar"] .section-label,
html[lang="ar"] .btn,
html[lang="ar"] .main-nav > a,
html[lang="ar"] .mega-trigger,
html[lang="ar"] .mobile-nav nav a,
html[lang="ar"] .leadership-role,
html[lang="ar"] .form-group label {
  letter-spacing: 0;
}

html[lang="ar"] p,
html[lang="ar"] li,
html[lang="ar"] .section-intro,
html[lang="ar"] .hero-subtitle,
html[lang="ar"] .service-card p,
html[lang="ar"] .faq-answer-inner,
html[lang="ar"] .contact-detail-text p,
html[lang="ar"] .about-value p,
html[lang="ar"] .who-value-card p {
  font-family: var(--font-ar);
  font-weight: 400;
  line-height: 1.95;
}

html[lang="ar"] .hero-title,
html[lang="ar"] .section-title,
html[lang="ar"] .page-hero h1,
html[lang="ar"] .leadership-profile-content h2,
html[lang="ar"] .team-card h4,
html[lang="ar"] .partnership-model-card h3,
html[lang="ar"] .why-card h3,
html[lang="ar"] .service-card h3,
html[lang="ar"] .process-step h4 {
  font-family: var(--font-ar-display);
  font-style: normal;
  font-weight: 800;
}

html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5 {
  font-family: var(--font-ar-display);
  letter-spacing: 0;
}

/* Arabic typography needs more vertical breathing room.
   Latin display fonts compress lines tightly, but Arabic
   has high alefs / madda marks and deep descenders. */
html[lang="ar"] .hero-title {
  line-height: 1.45;
  letter-spacing: 0;
  word-spacing: 0.05em;
  margin-bottom: 1.75rem;
}

html[lang="ar"] .hero-title .accent {
  font-style: normal;
  font-weight: 700;
  display: inline-block;
  padding: 0 0.15em;
}

html[lang="ar"] .hero-subtitle,
html[lang="ar"] .page-hero p {
  line-height: 1.95;
  font-weight: 400;
}

html[lang="ar"] .section-title,
html[lang="ar"] .page-hero h1 {
  line-height: 1.4;
  letter-spacing: 0;
}

html[lang="ar"] .section-title em,
html[lang="ar"] .hero-title em,
html[lang="ar"] .page-hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: var(--green-fresh);
}

/* ─── Distinctive Arabic header typography (Reem Kufi) ─── */
html[lang="ar"] .header-top-bar,
html[lang="ar"] .header-top-bar a,
html[lang="ar"] .header-top-location,
html[lang="ar"] .header-top-contacts,
html[lang="ar"] .header-top-contacts a,
html[lang="ar"] .main-nav,
html[lang="ar"] .main-nav > a,
html[lang="ar"] .mega-trigger,
html[lang="ar"] .mega-menu a,
html[lang="ar"] .mega-menu-title,
html[lang="ar"] .header-cta,
html[lang="ar"] .header-cta.btn,
html[lang="ar"] .lang-toggle-btn,
html[lang="ar"] .mobile-nav nav a,
html[lang="ar"] .nav-logo,
html[lang="ar"] .logo {
  font-family: var(--font-ar-header);
  letter-spacing: 0;
}

html[lang="ar"] .btn,
html[lang="ar"] .service-link,
html[lang="ar"] .lang-toggle-btn {
  font-family: var(--font-ar-header);
  font-weight: 700;
  text-transform: none;
}

html[lang="ar"] input,
html[lang="ar"] select,
html[lang="ar"] textarea,
html[lang="ar"] option,
html[lang="ar"] .contact-form label {
  font-family: var(--font-ar);
}

/* ─── About section readability improvements in Arabic ─── */
html[lang="ar"] .about-section-media-image {
  animation-name: aboutMediaPanRtl;
}

@keyframes aboutMediaPanRtl {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1.09) translateX(1.4%);
  }
}

html[lang="ar"] .about-text {
  text-align: right;
  background: rgba(248, 250, 249, 0.88);
  border: 1px solid rgba(0, 71, 17, 0.08);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 28px rgba(0, 71, 17, 0.08);
}

html[lang="ar"] .about-text p {
  color: var(--ink-mid);
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
}

html[lang="ar"] .about-visual-card {
  background: linear-gradient(
    160deg,
    rgba(0, 52, 12, 0.9) 0%,
    rgba(0, 71, 17, 0.8) 52%,
    rgba(0, 43, 11, 0.88) 100%
  );
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

html[lang="ar"] .about-card-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.8;
}

html[lang="ar"] .about-card-title,
html[lang="ar"] .about-pillar-text h4 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

html[lang="ar"] .about-pillar-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  line-height: 1.85;
}

html[lang="ar"] .about-pillar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
}

html[lang="ar"] .about-value {
  border-left: none;
  border-right: 3px solid var(--green-fresh);
  border-radius: 4px 0 0 4px;
  text-align: right;
}

html[lang="ar"] .about-float-badge {
  right: auto;
  left: 2.5rem;
}

/* ─── Larger header elements in Arabic (Cairo-tuned) ─── */
html[lang="ar"] .main-nav {
  gap: 0.4rem;
}

html[lang="ar"] .main-nav > a,
html[lang="ar"] .mega-trigger {
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
}

html[lang="ar"] .mega-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.7rem 0.65rem !important;
}

html[lang="ar"] .mega-link-title {
  font-family: var(--font-ar-display, var(--font-ar));
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
}

html[lang="ar"] .mega-link-desc {
  font-family: var(--font-ar);
  font-size: 0.82rem;
  letter-spacing: 0;
  line-height: 1.55;
}

html[lang="ar"] .mega-menu-title {
  font-family: var(--font-ar);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

html[lang="ar"] .mega-feature-tag {
  font-family: var(--font-ar);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

html[lang="ar"] .mega-feature-title {
  font-family: var(--font-ar-display, var(--font-ar));
  font-size: 1.18rem;
  line-height: 1.4;
}

html[lang="ar"] .mega-feature-desc {
  font-family: var(--font-ar);
  font-size: 0.86rem;
  line-height: 1.7;
}

html[lang="ar"] .mega-feature-list li {
  font-family: var(--font-ar);
  font-size: 0.84rem;
  letter-spacing: 0;
}

html[lang="ar"] .mega-feature-cta {
  font-family: var(--font-ar);
  font-size: 0.86rem !important;
  letter-spacing: 0.02em !important;
  text-transform: none;
}

html[lang="ar"] .mega-feature-cta svg {
  transform: scaleX(-1);
}
html[lang="ar"] .mega-feature-cta:hover svg {
  transform: scaleX(-1) translateX(3px);
}

html[lang="ar"] .mega-link.active::before {
  left: auto;
  right: 0;
  border-radius: 3px 0 0 3px;
}

html[lang="ar"] .mega-trigger .mega-chevron {
  margin-right: 0;
  margin-left: 0.15rem;
}

/* Keep mixed numeric tokens readable in RTL cards */
html[lang="ar"] .hero-stat-value span,
html[lang="ar"] .service-card-num,
html[lang="ar"] .who-story-year,
html[lang="ar"] .who-stat-num,
html[lang="ar"] .why-card-num,
html[lang="ar"] .about-float-num,
html[lang="ar"] .process-step-num,
html[lang="ar"] .impact-stat-value,
html[lang="ar"] .leadership-pillar-num,
html[lang="ar"] .leadership-profile-num {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Service-card sequence numbers on solution pages (Arabic) */
html[lang="ar"] .service-card-num {
  left: 1.75rem;
  right: auto;
  text-align: left;
  unicode-bidi: bidi-override;
}

/* Align mega menu behavior with RTL navbar flow */
html[lang="ar"] .mega-menu {
  left: auto;
  right: 50%;
  transform: translateX(50%) translateY(8px);
}

html[lang="ar"] .mega-menu-item:hover .mega-menu,
html[lang="ar"] .mega-menu-item:focus-within .mega-menu {
  transform: translateX(50%) translateY(0);
}

html[lang="ar"] .mega-menu-grid::before {
  left: auto;
  right: 50%;
  transform: translateX(50%) rotate(45deg);
}

html[lang="ar"] .mega-link {
  grid-template-columns: minmax(0, 1fr) 40px;
  text-align: right;
}

html[lang="ar"] .mega-link-icon { order: 2; }
html[lang="ar"] .mega-link-text { order: 1; }

html[lang="ar"] .header-cta,
html[lang="ar"] .header-cta.btn {
  font-size: 0.94rem;
  padding: 0.7rem 1.4rem;
  font-weight: 700;
}

html[lang="ar"] .lang-toggle-btn {
  min-width: 56px;
  height: 42px;
  font-size: 0.8rem;
  font-weight: 700;
}

html[lang="ar"] .header-top-bar {
  font-size: 0.88rem;
  font-weight: 500;
}

html[lang="ar"] .header-top-bar a,
html[lang="ar"] .header-top-location {
  font-size: 0.88rem;
  font-weight: 500;
}

html[lang="ar"] .mobile-nav nav a {
  font-size: 1.15rem;
  font-weight: 600;
}

/* ─── Leadership page RTL polish ─── */
html[lang="ar"] .leadership-profile::before {
  left: auto;
  right: 0.9rem;
}

html[lang="ar"] .leadership-profile::after {
  right: 0;
  left: 0;
}

html[lang="ar"] .leadership-profile-num {
  left: auto;
  right: 1.1rem;
}

html[lang="ar"] .leadership-pillar-card::before {
  transform-origin: right;
}

html[lang="ar"] .leadership-pillar-num {
  right: auto;
  left: 1.5rem;
}

html[lang="ar"] .leadership-pillar-card h3,
html[lang="ar"] .leadership-team-header .section-title,
html[lang="ar"] .leadership-pillars-header .section-title {
  font-family: var(--font-ar-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
}

html[lang="ar"] .leadership-profile-tag {
  letter-spacing: 0;
  font-weight: 700;
  font-family: var(--font-ar-header);
  font-size: 0.78rem;
}

html[lang="ar"] .leadership-credentials-label {
  letter-spacing: 0;
  font-weight: 700;
  font-size: 0.78rem;
  font-family: var(--font-ar-header);
}

html[lang="ar"] .leadership-profile-content .leadership-role {
  letter-spacing: 0;
  font-weight: 700;
  font-family: var(--font-ar-header);
  font-size: 0.85rem;
}

html[lang="ar"] .leadership-profile .cert-badge {
  font-family: var(--font-ar);
  letter-spacing: 0;
  font-size: 0.82rem;
  font-weight: 600;
}

html[lang="ar"] .leadership-profile-content p {
  font-size: 1rem;
  line-height: 2.05;
}

html[lang="ar"] .leadership-profile-content h2 {
  font-family: var(--font-ar-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
}

html[lang="ar"] .leadership-cta-card::before {
  right: auto;
  left: -160px;
}

html[lang="ar"] .leadership-cta-card::after {
  left: auto;
  right: -180px;
}

html[lang="ar"] .leadership-cta-content p {
  line-height: 1.95;
  font-size: 1.05rem;
}

/* ─── Who We Are RTL polish ─── */
html[lang="ar"] .who-story-marker {
  flex-direction: row-reverse;
}

html[lang="ar"] .who-section-pattern {
  background-image:
    radial-gradient(circle at 80% 10%, rgba(0, 168, 107, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(0, 71, 17, 0.05) 0%, transparent 40%);
}

html[lang="ar"] .who-story h3,
html[lang="ar"] .who-stats-card-header h4,
html[lang="ar"] .who-values-header .section-title,
html[lang="ar"] .who-cta-text h4 {
  font-family: var(--font-ar-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
}

html[lang="ar"] .who-story p,
html[lang="ar"] .who-cta-text p {
  font-size: 1rem;
  line-height: 2;
}

html[lang="ar"] .who-story,
html[lang="ar"] .who-stats-card,
html[lang="ar"] .who-value-card,
html[lang="ar"] .who-cta-text {
  text-align: right;
}

html[lang="ar"] .who-story-pillars {
  justify-content: flex-end;
}

html[lang="ar"] .who-story-marker-label,
html[lang="ar"] .who-stats-card-tag {
  letter-spacing: 0;
  font-weight: 700;
  font-family: var(--font-ar-header);
  font-size: 0.78rem;
}

html[lang="ar"] .who-story-pillar {
  font-family: var(--font-ar);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  flex-direction: row-reverse;
}

html[lang="ar"] .who-stat-text strong {
  font-family: var(--font-ar);
  font-weight: 700;
  letter-spacing: 0;
}

html[lang="ar"] .who-stat-text span {
  font-family: var(--font-ar);
  font-size: 0.92rem;
  line-height: 1.7;
}

html[lang="ar"] .who-value-card h4 {
  font-family: var(--font-ar-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0;
  line-height: 1.4;
}

html[lang="ar"] .who-value-card p {
  font-family: var(--font-ar);
  font-size: 0.95rem;
  line-height: 1.85;
}

html[lang="ar"] .who-cta::before {
  left: auto;
  right: 0;
}

html[lang="ar"] .who-cta {
  flex-direction: row-reverse;
  text-align: right;
}

@media (max-width: 968px) {
  html[lang="ar"] .who-cta {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}

html[lang="ar"] .header-top-bar .container,
html[lang="ar"] .header-main .container {
  flex-direction: row-reverse;
}

html[lang="ar"] .main-nav > a::after,
html[lang="ar"] .mega-trigger::after {
  left: auto;
  right: 0.9rem;
}

html[lang="ar"] .partnership-features,
html[lang="ar"] .faq-question,
html[lang="ar"] .contact-detail,
html[lang="ar"] .footer-links a {
  text-align: right;
}

/* Keep phone/email/location values stable in Arabic UI */
html[lang="ar"] .header-top-contacts,
html[lang="ar"] .header-top-contacts a,
html[lang="ar"] .contact-detail-text a[href^="tel"],
html[lang="ar"] .contact-detail-text a[href^="mailto"],
html[lang="ar"] .contact-detail-text p a[href^="tel"],
html[lang="ar"] .contact-detail-text p a[href^="mailto"],
html[lang="ar"] .footer-contact a[href^="tel"],
html[lang="ar"] .footer-contact a[href^="mailto"] {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
  display: inline-block;
}

html[lang="ar"] .header-top-contacts {
  flex-direction: row;
}

@media (max-width: 540px) {
  .partners-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .certs-inner { flex-direction: column; text-align: center; }
  .certs-list { justify-content: center; }
  .quick-stats-grid { grid-template-columns: 1fr; }
  .hero-layout {
    gap: 1rem;
    padding: 6.1rem 0 13.2rem;
  }

  .hero-visual {
    padding-bottom: 2.6rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }

  .hero-image {
    max-width: 360px;
    filter:
      drop-shadow(0 0 1px rgba(127,255,196,0.76))
      drop-shadow(0 0 4px rgba(127,255,196,0.24))
      drop-shadow(0 16px 24px rgba(0,0,0,0.22));
  }

  .mobile-nav {
    width: min(300px, 88vw);
    padding: 1.5rem;
  }

  .mobile-nav nav a {
    font-size: 0.98rem;
    padding: 0.95rem 0;
  }
}

/* ─── Water page specific ─── */
.water-accent { color: var(--blue-water); }
.ai-accent { color: var(--blue-tech); }

.water-service .service-icon-box { background: rgba(0,153,204,0.12); color: var(--blue-water); }
.water-service:hover .service-icon-box { background: var(--blue-water); color: white; }
.water-service::after { background: var(--blue-water); }

/* ─── Packages / ROI ─── */
.roi-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.roi-calculator {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 3rem;
  max-width: 760px;
  margin: 0 auto;
}

.roi-result {
  background: var(--green-light);
  border: 1.5px solid rgba(0,168,107,0.2);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  display: none;
}

.roi-result.show { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.roi-result-item { text-align: center; }

.roi-result-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.roi-result-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.3rem;
}

/* Packages */
.packages-section { padding: var(--section-pad) 0; }

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

.package-card {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
}

.package-card.featured {
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.package-card:not(.featured):hover {
  border-color: var(--green-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.package-tier {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-bottom: 0.75rem;
}

.featured .package-tier { color: #7FFFC4; }

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.featured .package-card h3 { color: white; }

.package-duration {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.featured .package-duration { color: rgba(255,255,255,0.6); }

.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.featured .package-features { border-bottom-color: rgba(255,255,255,0.1); }

.package-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--ink-light);
}

.featured .package-feature { color: rgba(255,255,255,0.8); }
.package-feature svg { color: var(--green-fresh); flex-shrink: 0; }
.featured .package-feature svg { color: #7FFFC4; }

.package-investment {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.featured .package-investment { color: rgba(255,255,255,0.6); }

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

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

/* Dashboard mock */
.dashboard-section {
  padding: var(--section-pad) 0;
  background: var(--ink);
}

.dashboard-mock {
  background: #111827;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  margin-top: 3rem;
}

.dashboard-header {
  background: #1F2937;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-dot { width: 12px; height: 12px; border-radius: 50%; }
.dash-dot.red { background: #FF5F57; }
.dash-dot.yellow { background: #FFBD2E; }
.dash-dot.green { background: #28C840; }

.dashboard-title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  flex: 1;
  text-align: center;
}

.dashboard-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.dash-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.dash-metric-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-fresh);
  line-height: 1;
}

.dash-metric-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}

.dash-chart {
  grid-column: span 4;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1.5rem;
  height: 180px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--green-deep), var(--green-fresh));
  animation: barGrow 1.5s var(--ease-out) forwards;
  transform-origin: bottom;
}

@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@media (max-width: 768px) {
  .dashboard-body { grid-template-columns: repeat(2, 1fr); }
  .dash-chart { grid-column: span 2; }
}

/* ─── Team Cards ─── */
.team-section { padding: var(--section-pad) 0; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }

.team-card {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.team-card-avatar {
  height: 200px;
  background: var(--green-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.team-card-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-fresh));
}

.team-card-body { padding: 1.5rem; }

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.team-card-role {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}

.team-card p { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.65; }

.team-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

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

/* ─── Industries ─── */
.industries-section { padding: var(--section-pad) 0; background: var(--off-white); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.industry-card:hover {
  border-color: var(--green-fresh);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.industry-card svg {
  display: block;
  flex: 0 0 auto;
  color: var(--green-deep);
  margin: 0 auto 0.9rem;
}

.industry-card span {
  display: block;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: 0.03em;
}

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

/* Case Studies */
.cases-section { padding: var(--section-pad) 0; }

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

.case-card {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.case-card-header {
  background: var(--green-deep);
  padding: 2rem;
  color: white;
}

.case-card-header h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.case-card-header p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.case-card-body { padding: 2rem; }

.case-metric-row { display: flex; gap: 1rem; margin-bottom: 1.5rem; }

.case-metric {
  flex: 1;
  background: var(--green-mint);
  border-radius: 6px;
  padding: 0.85rem;
  text-align: center;
}

.case-metric-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.case-metric-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.3rem;
}

.case-card-body p { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.75; }

blockquote {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--green-mint);
  border-left: 3px solid var(--green-fresh);
  font-size: 0.83rem;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.65;
}

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

/* ===== Leadership Executive Final Overrides ===== */
.leadership-team-section .leadership-executive-card {
  grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
  gap: 2.8rem;
  padding: 2.3rem;
  border-radius: 26px;
  border: 1px solid rgba(0, 71, 17, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
  box-shadow: 0 14px 32px rgba(0, 71, 17, 0.08), 0 34px 90px rgba(0, 71, 17, 0.12);
}

.leadership-team-section .leadership-executive-card::before {
  width: 4px;
  left: 1.05rem;
  top: 1.05rem;
  bottom: 1.05rem;
}

.leadership-team-section .leadership-executive-card::after {
  inset: 0;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.leadership-team-section .leadership-executive-image-wrap {
  min-height: 500px;
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid rgba(0, 71, 17, 0.16);
  background: linear-gradient(180deg, rgba(0, 71, 17, 0.1) 0%, rgba(0, 71, 17, 0) 24%), linear-gradient(150deg, #f5faf7 0%, #e9f5ee 100%);
}

.leadership-team-section .leadership-executive-image-wrap .leadership-profile-image {
  max-height: 455px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.leadership-team-section .leadership-executive-content h2 {
  font-size: clamp(2.2rem, 3.4vw, 2.85rem);
  line-height: 1.04;
  margin-bottom: 0.85rem;
}

.leadership-team-section .leadership-executive-content .leadership-role {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  margin-bottom: 1.3rem;
}

.leadership-team-section .leadership-executive-content p {
  font-size: 1.02rem;
  line-height: 1.92;
  max-width: 67ch;
}

@media (max-width: 900px) {
  .leadership-team-section .leadership-executive-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.2rem;
  }

  .leadership-team-section .leadership-executive-image-wrap {
    min-height: 400px;
    padding: 0.9rem;
  }

  .leadership-team-section .leadership-executive-content h2 { font-size: 1.95rem; }
  .leadership-team-section .leadership-executive-content p { font-size: 0.98rem; line-height: 1.82; }
}

html[lang="ar"] .leadership-team-section .leadership-executive-card::before {
  left: auto;
  right: 1.05rem;
}

/* ===== Leadership Prime Redesign ===== */
.leadership-team-section .leadership-block-header {
  max-width: 820px;
  margin: 0 auto 2.4rem;
}

.leadership-prime-card {
  display: grid;
  grid-template-columns: minmax(330px, 430px) minmax(0, 1fr);
  gap: 2.5rem;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 71, 17, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
  box-shadow: 0 12px 28px rgba(0, 71, 17, 0.08), 0 30px 82px rgba(0, 71, 17, 0.12);
}

.leadership-prime-media {
  position: relative;
  min-height: 500px;
  border-radius: 18px;
  border: 1px solid rgba(0, 71, 17, 0.16);
  background: linear-gradient(155deg, #f4faf6 0%, #e8f4ed 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.leadership-prime-image {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: contain;
}

.leadership-prime-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 52px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 71, 17, 0.18);
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.leadership-prime-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-prime-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 168, 107, 0.22);
  background: rgba(0, 168, 107, 0.1);
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.leadership-prime-name {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 3.4vw, 2.75rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.leadership-prime-role {
  width: max-content;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(0, 71, 17, 0.1);
  border-radius: 6px;
  background: rgba(0, 71, 17, 0.04);
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.leadership-prime-content p {
  font-size: 1.01rem;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 0.75rem;
  max-width: 68ch;
}

@media (max-width: 900px) {
  .leadership-prime-card {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.2rem;
  }

  .leadership-prime-media {
    min-height: 390px;
  }

  .leadership-prime-name {
    font-size: 1.9rem;
  }

  .leadership-prime-content p {
    font-size: 0.98rem;
    line-height: 1.82;
  }
}

html[lang="ar"] .leadership-prime-num {
  left: auto;
  right: 1rem;
}













