:root {
  --navy: #0A1628;
  --navy-mid: #132040;
  --navy-light: #1E3260;
  --gold: #C9A84C;
  --gold-light: #E8D08A;
  --gold-dark: #8B6914;
  --white: #FAFAF8;
  --gray-100: #F4F2EE;
  --gray-200: #E2DFDA;
  --gray-400: #9A9690;
  --gray-600: #5A5652;
  --text: #1A1814;
  --teal: #1D9E75;
  --teal-light: #5DCAA5;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --arabic: 'Amiri', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--navy); color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* GEO BG */
.geo-bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='0.6'%3E%3Cpolygon points='60,4 112,32 112,88 60,116 8,88 8,32'/%3E%3Cpolygon points='60,18 98,38 98,82 60,102 22,82 22,38'/%3E%3Cline x1='60' y1='4' x2='60' y2='18'/%3E%3Cline x1='112' y1='32' x2='98' y2='38'/%3E%3Cline x1='112' y1='88' x2='98' y2='82'/%3E%3Cline x1='60' y1='116' x2='60' y2='102'/%3E%3Cline x1='8' y1='88' x2='22' y2='82'/%3E%3Cline x1='8' y1='32' x2='22' y2='38'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}

/* LOADER */
#loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-emblem {
  width: 80px; height: 80px; margin-bottom: 2rem;
  border: 1px solid rgba(201,168,76,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: spin-slow 4s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.loader-inner {
  width: 56px; height: 56px; border: 1px solid rgba(201,168,76,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: spin-slow 3s linear infinite reverse;
}
.loader-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.loader-text {
  font-family: var(--arabic); font-size: 1rem; color: var(--gold);
  letter-spacing: 0.3em; text-transform: uppercase; animation: fade-pulse 1.5s ease-in-out infinite;
}
@keyframes fade-pulse { 0%, 100% { opacity: 0.4 } 50% { opacity: 1 } }

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500; height: 72px; padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(10,22,40,0.98) 0%, rgba(10,22,40,0.7) 100%);
  backdrop-filter: blur(20px); border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all 0.4s;
}
nav.scrolled { background: rgba(10,22,40,0.96); }
.nav-brand { display: flex; flex-direction: column; gap: 1px; }
.nav-brand-main {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 0.12em;
}
.nav-brand-sub { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(201,168,76,0.6); }

/* Desktop menu */
.nav-menu { display: flex; align-items: center; gap: 2.2rem; }
.nav-menu a {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s;
  position: relative; padding-bottom: 4px;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-menu a:hover { color: var(--gold-light); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.active { color: var(--gold-light); }
.nav-menu a.active::after { width: 100%; }
.nav-cta {
  background: transparent; border: 1px solid var(--gold) !important;
  color: var(--gold-light) !important; padding: 0.5rem 1.5rem; border-radius: 1px;
  font-size: 0.65rem !important; letter-spacing: 0.2em !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav-cta:hover::after { display: none; }
.lang-switch {
  font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 0.35rem 0.8rem; border-radius: 2px; cursor: pointer; transition: all 0.2s;
}
.lang-switch:hover { border-color: var(--gold); color: var(--gold-light); }

/* ═══ HAMBURGER ═══ */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 510;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--gold);
  transition: all 0.3s ease; border-radius: 1px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(5,8,16,0.85); backdrop-filter: blur(8px);
  z-index: 480; opacity: 0; visibility: hidden; transition: all 0.4s;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ═══════════════════════════════════════════════════
       SECTION ÉCONOMIE VERTE / ESG
       Ton : raffiné, sombre avec accents verts profonds
       et dorés — cohérent avec la charte existante
    ═══════════════════════════════════════════════════ */

      /* ══ LOGO NAV ══ */
      #main-nav .nav-brand {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.72rem !important;
        text-decoration: none;
      }

      #main-nav .nav-logo {
        height: 36px;
        width: 36px;
        object-fit: contain;
        flex-shrink: 0;
        display: block;
        filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
        transition: transform 0.25s ease, filter 0.25s ease;
      }

      #main-nav .nav-logo:hover {
        transform: scale(1.08) rotate(-3deg);
        filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.4));
      }

      #main-nav .nav-brand-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 1;
      }
      /* ══ HERO CARDS — image de fond ══ */
    .hero-stat-card { position:relative; overflow:hidden; }
    .hero-card-img {
      position:absolute; inset:0; width:100%; height:100%;
      object-fit:cover; opacity:.08; filter:grayscale(40%);
      transition:opacity .4s; pointer-events:none;
    }
    .hero-stat-card:hover .hero-card-img { opacity:.15; }
    .hero-stat-card .num,
    .hero-stat-card .lbl { position:relative; z-index:1; }
      /* ══ BOUTON "OUR PROJECTS" — PULSE GLOW ══ */
      @keyframes pulse-glow {
        0% {
          box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.0), 0 0 0 0 rgba(201, 168, 76, 0.0);
          opacity: 1;
        }

        30% {
          box-shadow: 0 0 10px 2px rgba(201, 168, 76, 0.55), 0 0 22px 6px rgba(201, 168, 76, 0.22);
          opacity: 0.88;
        }

        60% {
          box-shadow: 0 0 18px 4px rgba(201, 168, 76, 0.35), 0 0 38px 10px rgba(201, 168, 76, 0.12);
          opacity: 1;
        }

        100% {
          box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.0), 0 0 0 0 rgba(201, 168, 76, 0.0);
          opacity: 1;
        }
      }

      @keyframes pulse-border {

        0%,
        100% {
          border-color: rgba(201, 168, 76, 0.55);
        }

        50% {
          border-color: rgba(201, 168, 76, 1);
        }
      }

      .btn-outline-pulse {
        animation:
          pulse-glow 2.2s ease-in-out infinite,
          pulse-border 2.2s ease-in-out infinite;
        position: relative;
      }

      /* Petit badge "attention" clignotant */
      .btn-outline-pulse::after {
        content: '●';
        position: absolute;
        top: -5px;
        right: -5px;
        font-size: 0.45rem;
        color: #c9a84c;
        animation: dot-blink 1.1s ease-in-out infinite;
        line-height: 1;
      }

      @keyframes dot-blink {

        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }

        50% {
          opacity: 0.2;
          transform: scale(0.6);
        }
      }

      /* Arrêt de l'animation au survol pour ne pas gêner le clic */
      .btn-outline-pulse:hover {
        animation: none;
        box-shadow: 0 0 20px 6px rgba(201, 168, 76, 0.45);
      }

      .btn-outline-pulse:hover::after {
        display: none;
      }

      /* ── Palette ESG ── */
      :root {
        --green-deep: #0d2e1a;
        --green-mid: #1a4a2e;
        --green-bright: #2d7d4f;
        --green-light: #4db87a;
        --green-glow: rgba(77, 184, 122, 0.12);
        --earth: #8b6914;
        --earth-light: #c9a84c;
        --sand: rgba(201, 168, 76, 0.08);
      }

      /* ══ HERO ESG — bandeau d'introduction ══ */
      .esg-intro {
        background: linear-gradient(160deg, var(--green-deep) 0%, #0a1628 60%, #091520 100%);
        padding: 5rem 5vw 0;
        position: relative;
        overflow: hidden;
      }

      .esg-intro::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
          radial-gradient(ellipse 60% 40% at 80% 20%, rgba(45, 125, 79, 0.18) 0%, transparent 70%),
          radial-gradient(ellipse 40% 30% at 10% 80%, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
        pointer-events: none;
      }

      /* Motif géométrique feuille stylisée */
      .esg-geo {
        position: absolute;
        top: 0;
        right: 0;
        width: 520px;
        height: 520px;
        opacity: 0.04;
        pointer-events: none;
      }

      .esg-intro-inner {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        padding-bottom: 4rem;
        border-bottom: 1px solid rgba(77, 184, 122, 0.12);
      }

      .esg-intro-left {}

      .esg-eyebrow {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.4rem;
      }

      .esg-eyebrow-line {
        width: 32px;
        height: 1px;
        background: var(--green-light);
      }

      .esg-eyebrow-text {
        font-size: 0.62rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--green-light);
        font-weight: 500;
      }

      .esg-intro-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2.2rem, 4vw, 3.8rem);
        font-weight: 400;
        color: #fff;
        line-height: 1.1;
        margin-bottom: 1.4rem;
      }

      .esg-intro-title em {
        font-style: italic;
        color: var(--green-light);
      }

      .esg-intro-desc {
        font-size: 0.92rem;
        color: rgba(255, 255, 255, 0.52);
        line-height: 1.95;
        max-width: 480px;
        border-left: 2px solid rgba(77, 184, 122, 0.35);
        padding-left: 1.2rem;
      }

      .esg-intro-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: rgba(77, 184, 122, 0.1);
      }

      .esg-stat-box {
        background: rgba(13, 46, 26, 0.6);
        padding: 1.8rem 1.5rem;
        backdrop-filter: blur(8px);
        transition: background 0.3s;
      }

      .esg-stat-box:hover {
        background: rgba(45, 125, 79, 0.12);
      }

      .esg-stat-num {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.4rem;
        color: var(--green-light);
        line-height: 1;
        margin-bottom: 0.3rem;
      }

      .esg-stat-label {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.5;
      }

      /* ══ TROIS PILIERS ESG ══ */
      .esg-pillars {
        background: linear-gradient(180deg, #091520 0%, #0a1628 100%);
        padding: 0 5vw 5rem;
        position: relative;
      }

      .esg-pillars::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(13, 46, 26, 0.4) 0%, transparent 70%);
        pointer-events: none;
      }

      .esg-pillars-tabs {
        display: flex;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        margin-bottom: 0;
        position: relative;
        z-index: 2;
      }

      .esg-tab {
        padding: 1.4rem 2.5rem;
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.35);
        cursor: pointer;
        border: none;
        background: none;
        font-family: 'DM Sans', sans-serif;
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
        transition: all 0.25s;
        display: flex;
        align-items: center;
        gap: 0.6rem;
      }

      .esg-tab .tab-icon {
        font-size: 1rem;
      }

      .esg-tab:hover {
        color: rgba(255, 255, 255, 0.65);
      }

      .esg-tab.active {
        color: #fff;
        border-bottom-color: var(--green-light);
      }

      .esg-tab.active-env {
        border-bottom-color: var(--green-light);
      }

      .esg-tab.active-soc {
        border-bottom-color: #5ba8d4;
      }

      .esg-tab.active-gov {
        border-bottom-color: var(--earth-light);
      }

      .esg-panels {
        position: relative;
        z-index: 2;
      }

      .esg-panel {
        display: none;
        padding: 4rem 0 0;
      }

      .esg-panel.active {
        display: block;
      }

      /* ─ ÉCONOMIE VERTE ─ */
      .esg-green-layout {
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 5rem;
        align-items: start;
      }

      .esg-panel-eyebrow {
        font-size: 0.6rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        margin-bottom: 1rem;
        font-weight: 600;
      }

      .esg-panel-eyebrow.green {
        color: var(--green-light);
      }

      .esg-panel-eyebrow.blue {
        color: #5ba8d4;
      }

      .esg-panel-eyebrow.gold {
        color: var(--earth-light);
      }

      .esg-panel-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 400;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 1.2rem;
      }

      .esg-panel-desc {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.95;
        margin-bottom: 2.5rem;
      }

      /* Cards verticaux thématiques */
      .esg-cards-col {
        display: flex;
        flex-direction: column;
        gap: 1px;
        background: rgba(77, 184, 122, 0.08);
      }

      .esg-card {
        background: rgba(10, 22, 40, 0.8);
        padding: 1.6rem 1.8rem;
        display: flex;
        gap: 1.2rem;
        align-items: flex-start;
        transition: background 0.3s;
        cursor: default;
      }

      .esg-card:hover {
        background: rgba(45, 125, 79, 0.1);
      }

      .esg-card-icon {
        width: 38px;
        height: 38px;
        border-radius: 1px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
        margin-top: 2px;
      }

      .esg-card-icon.green {
        border: 1px solid rgba(77, 184, 122, 0.3);
        background: rgba(77, 184, 122, 0.06);
      }

      .esg-card-icon.blue {
        border: 1px solid rgba(91, 168, 212, 0.3);
        background: rgba(91, 168, 212, 0.06);
      }

      .esg-card-icon.gold {
        border: 1px solid rgba(201, 168, 76, 0.3);
        background: rgba(201, 168, 76, 0.06);
      }

      .esg-card-body {}

      .esg-card-title {
        font-size: 0.88rem;
        color: #fff;
        font-weight: 500;
        margin-bottom: 0.35rem;
      }

      .esg-card-desc {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.42);
        line-height: 1.75;
      }

      /* Indicators bar */
      .esg-indicators {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: rgba(77, 184, 122, 0.08);
        margin-top: 2.5rem;
      }

      .esg-ind-box {
        background: rgba(10, 22, 40, 0.7);
        padding: 1.4rem 1.5rem;
        text-align: center;
      }

      .esg-ind-val {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        color: var(--green-light);
        line-height: 1;
        margin-bottom: 0.3rem;
      }

      .esg-ind-val.blue {
        color: #5ba8d4;
      }

      .esg-ind-val.gold {
        color: var(--earth-light);
      }

      .esg-ind-label {
        font-size: 0.68rem;
        color: rgba(255, 255, 255, 0.38);
        line-height: 1.5;
        letter-spacing: 0.04em;
      }

      /* ── Approche Sociale — layout alterné ── */
      .esg-social-layout {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 5rem;
        align-items: start;
      }

      /* Timeline sociale */
      .esg-timeline {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
      }

      .esg-timeline::before {
        content: '';
        position: absolute;
        left: 19px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(180deg, rgba(91, 168, 212, 0.4), rgba(91, 168, 212, 0.05));
      }

      .esg-tl-item {
        display: flex;
        gap: 1.4rem;
        align-items: flex-start;
        padding-bottom: 2rem;
        position: relative;
      }

      .esg-tl-dot {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(91, 168, 212, 0.35);
        background: rgba(91, 168, 212, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        flex-shrink: 0;
        z-index: 1;
      }

      .esg-tl-content {}

      .esg-tl-title {
        font-size: 0.9rem;
        color: #fff;
        font-weight: 500;
        margin-bottom: 0.35rem;
      }

      .esg-tl-desc {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.42);
        line-height: 1.75;
      }

      /* Engagement card */
      .esg-commitment-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: rgba(91, 168, 212, 0.08);
      }

      .esg-commit-box {
        background: rgba(10, 22, 40, 0.8);
        padding: 1.8rem 1.5rem;
        transition: background 0.3s;
      }

      .esg-commit-box:hover {
        background: rgba(91, 168, 212, 0.06);
      }

      .esg-commit-num {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2rem;
        color: #5ba8d4;
        line-height: 1;
        margin-bottom: 0.4rem;
      }

      .esg-commit-label {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.6;
      }

      /* ── Gouvernance / Économie verte intégrée ── */
      .esg-gov-layout {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
      }

      .esg-gov-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-top: 2px solid transparent;
        padding: 2rem 1.6rem;
        border-radius: 1px;
        transition: border-color 0.3s, background 0.3s;
      }

      .esg-gov-card.gold-top {
        border-top-color: var(--earth-light);
      }

      .esg-gov-card.green-top {
        border-top-color: var(--green-light);
      }

      .esg-gov-card.blue-top {
        border-top-color: #5ba8d4;
      }

      .esg-gov-card:hover {
        background: rgba(201, 168, 76, 0.03);
      }

      .esg-gov-icon {
        font-size: 1.6rem;
        margin-bottom: 1rem;
      }

      .esg-gov-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 0.5rem;
      }

      .esg-gov-desc {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.42);
        line-height: 1.8;
        margin-bottom: 1.2rem;
      }

      .esg-gov-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
      }

      .esg-gov-list li {
        font-size: 0.76rem;
        color: rgba(255, 255, 255, 0.38);
        padding-left: 1rem;
        position: relative;
        line-height: 1.5;
      }

      .esg-gov-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.6em;
        width: 5px;
        height: 1px;
        background: var(--earth-light);
      }

      .esg-gov-card.green-top .esg-gov-list li::before {
        background: var(--green-light);
      }

      .esg-gov-card.blue-top .esg-gov-list li::before {
        background: #5ba8d4;
      }

      /* ── Bandeau de progression ESG ── */
      .esg-progress-band {
        background: rgba(13, 46, 26, 0.5);
        border-top: 1px solid rgba(77, 184, 122, 0.12);
        border-bottom: 1px solid rgba(77, 184, 122, 0.12);
        padding: 3rem 5vw;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        position: relative;
        z-index: 2;
      }

      .esg-progress-item {
        padding: 1rem 2rem;
        border-right: 1px solid rgba(77, 184, 122, 0.1);
      }

      .esg-progress-item:last-child {
        border-right: none;
      }

      .esg-progress-label {
        font-size: 0.62rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 0.7rem;
      }

      .esg-progress-bar-wrap {
        height: 3px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 2px;
        margin-bottom: 0.5rem;
        overflow: hidden;
      }

      .esg-progress-bar {
        height: 100%;
        border-radius: 2px;
        transform-origin: left;
        animation: bar-grow 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        animation-play-state: paused;
      }

      .esg-progress-bar.green {
        background: linear-gradient(90deg, var(--green-bright), var(--green-light));
      }

      .esg-progress-bar.blue {
        background: linear-gradient(90deg, #3a85b5, #5ba8d4);
      }

      .esg-progress-bar.gold {
        background: linear-gradient(90deg, var(--earth), var(--earth-light));
      }

      .esg-progress-bar.teal {
        background: linear-gradient(90deg, #1a8c7a, #24c9af);
      }

      .esg-progress-bar.animated {
        animation-play-state: running;
      }

      @keyframes bar-grow {
        from {
          width: 0;
        }

        to {
          width: var(--target-w, 75%);
        }
      }

      .esg-progress-pct {
        font-size: 0.78rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
      }

      /* Responsive ESG */
      @media (max-width: 1024px) {
        .esg-intro-inner {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }

        .esg-green-layout,
        .esg-social-layout {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }

        .esg-gov-layout {
          grid-template-columns: 1fr 1fr;
        }

        .esg-progress-band {
          grid-template-columns: 1fr 1fr;
        }

        .esg-progress-item {
          border-bottom: 1px solid rgba(77, 184, 122, 0.1);
        }
      }

      @media (max-width: 640px) {
        .esg-intro-right {
          grid-template-columns: 1fr 1fr;
        }

        .esg-gov-layout {
          grid-template-columns: 1fr;
        }

        .esg-progress-band {
          grid-template-columns: 1fr 1fr;
        }

        .esg-tab {
          padding: 1rem 1.2rem;
          font-size: 0.62rem;
        }

        .esg-tab .tab-icon {
          display: none;
        }

        .esg-indicators {
          grid-template-columns: 1fr;
        }

        .esg-commitment-grid {
          grid-template-columns: 1fr;
        }
      }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 5vw 6rem;
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 4vw 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .geo-bg {
  opacity: 0.04;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(29, 158, 117, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.hero-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 76, 0.25) 30%, var(--gold) 50%, rgba(201, 168, 76, 0.25) 70%, transparent 100%);
  z-index: 3;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title .gold-line {
  display: block;
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .thin-line {
  display: block;
  font-weight: 400;
  font-size: 0.55em;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-style: normal;
  margin-top: 0.6rem;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2;
  max-width: 440px;
  margin-bottom: 3.5rem;
  border-left: 2px solid var(--gold-dark);
  padding-left: 1.2rem;
}

/* HERO (from gie_website.html adapted) */
.hero {
  min-height: 100vh; background: var(--navy); display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(29,158,117,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; right: 0; top: 0; width: 52%; height: 100%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-pattern::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 40px);
}
.hero-content {
  position: relative; z-index: 2; padding: 160px 4rem 6rem;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 2px; margin-bottom: 2rem; width: fit-content;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite;
}

.hero-pillar {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 360px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 2px;
  overflow: hidden;
}

.pillar-header {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.pillar-header-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.pillar-header-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}

.pillar-stat {
  padding: 1.4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: background 0.3s;
}

.pillar-stat:hover {
  background: rgba(201, 168, 76, 0.04);
}

.pillar-stat:last-child {
  border-bottom: none;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 60px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 500;
}

.stat-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Conteneur qui masque le dépassement */
.stats-scroll-container {
  overflow: hidden;
  height: 280px; /* Ajuste selon la hauteur d'un bloc * nombre visible */
  position: relative;
}

/* Piste qui contient les éléments (sera dupliquée) */
.stats-scroll-track {
  display: flex;
  flex-direction: column;
  animation: scroll-vertical 12s linear infinite;
}

/* Pause au survol pour lire confortablement */
.stats-scroll-container:hover .stats-scroll-track {
  animation-play-state: paused;
}

/* Animation de translation verticale */
@keyframes scroll-vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Style des statistiques (conservé) */
.pillar-stat {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.pillar-stat:hover {
  background: rgba(255,255,255,0.05);
}

.stat-num {
  font-size: 2rem;
  font-weight: bold;
}

/* ═══ HERO with BG image ═══ */
.hero {
  min-height: 100vh; background: var(--navy); display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.75) 50%, rgba(10,22,40,0.85) 100%);
}
.hero-pattern {
  position: absolute; right: 0; top: 0; width: 52%; height: 100%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%); z-index: 1;
}
.hero-pattern::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 40px);
}
.hero-content {
  position: relative; z-index: 2; padding: 160px 4rem 6rem;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 2px; margin-bottom: 2rem; width: fit-content;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 300;
  color: var(--white); line-height: 1.15; margin-bottom: 1.5rem;
}
.hero-title em { font-style: normal; color: var(--gold); display: block; }
.hero-desc {
  color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.8;
  max-width: 480px; margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy); padding: 0.85rem 2.2rem;
  text-decoration: none; font-weight: 600; font-size: 0.9rem; border-radius: 2px;
  letter-spacing: 0.04em; transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.25); color: var(--white); padding: 0.85rem 2.2rem;
  text-decoration: none; font-size: 0.9rem; border-radius: 2px; letter-spacing: 0.04em;
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy);
  padding: 0.9rem 2.5rem; text-decoration: none; font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase; border-radius: 1px;
  transition: all 0.3s; box-shadow: 0 0 30px rgba(201,168,76,0.2); display: inline-block;
}
.btn-gold:hover { box-shadow: 0 0 50px rgba(201,168,76,0.4); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(201,168,76,0.3); color: rgba(255,255,255,0.8);
  padding: 0.9rem 2.5rem; text-decoration: none; font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase; border-radius: 1px; transition: all 0.3s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

/* HERO VISUAL — Vision / Values / Objectives */
.hero-visual {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: center;
  padding: 160px 3rem 6rem 4rem;
}
.hero-cards {
  display: flex; flex-direction: column; gap: 1rem; width: 100%;
}
.hero-stat-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15);
  border-left: 3px solid var(--gold); padding: 1.4rem 1.6rem; border-radius: 2px;
  transition: transform 0.3s, background 0.3s;
}
.hero-stat-card:hover { transform: translateX(6px); background: rgba(255,255,255,0.07); }
.hero-stat-card .num {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); font-weight: 600; margin-bottom: 0.4rem;
}
.hero-stat-card .lbl {
  font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.7;
}

/* SECTIONS BASE */
.section { padding: 7rem 5vw; position: relative; overflow: hidden; }
.section-dark { background: var(--navy-mid); }
.section-darker { background: var(--navy); }
.section-sand { background: #0f1d35; }

.s-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 1.2rem; }
.s-eyebrow-line { width: 30px; height: 1px; background: var(--gold); }
.s-eyebrow-text { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.s-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.2; color: var(--white); margin-bottom: 1rem; }
.s-subtitle { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.9; max-width: 580px; }

/* ABOUT STRIP */
.about-strip { background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark)); padding: 1px 0; }
.about-strip-inner { background: var(--navy-mid); padding: 3.5rem 5vw; display: flex; gap: 4rem; align-items: center; flex-wrap: wrap; }
.about-pillar { flex: 1; min-width: 160px; text-align: center; }
.about-pillar-num { font-family: var(--font-serif); font-size: 2.5rem; background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.about-pillar-label { font-size: 0.72rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-top: 4px; }
.about-pillar-divider { width: 1px; height: 50px; background: rgba(201,168,76,0.25); }

/* SERVICES */
.services-layout { display: grid; grid-template-columns: 340px 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
.services-intro { position: sticky; top: 100px; }
.services-intro-arabic { font-family: var(--arabic); font-size: 2.5rem; color: rgba(201,168,76,0.2); line-height: 1.4; margin-bottom: 2rem; direction: rtl; }
.services-grid-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.2); }
.svc-card { background: var(--navy-mid); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: background 0.4s; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: linear-gradient(180deg, var(--gold-light), var(--gold)); transition: height 0.4s; }
.svc-card:hover { background: var(--navy-light); }
.svc-card:hover::before { height: 100%; }
.svc-num { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700; color: rgba(201,168,76,0.08); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.svc-icon { width: 44px; height: 44px; border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; border-radius: 1px; transition: border-color 0.3s, background 0.3s; }
.svc-card:hover .svc-icon { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.svc-icon svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.2; fill: none; }
.svc-title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--white); margin-bottom: 0.7rem; font-weight: 500; }
.svc-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.85; }
.svc-tag { display: inline-block; margin-top: 1.2rem; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.7rem; border: 1px solid rgba(201,168,76,0.2); color: rgba(201,168,76,0.6); border-radius: 1px; }

/* PROJECTS */
.projects-header { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: end; margin-bottom: 5rem; }
.project-count { font-family: var(--font-serif); font-size: 8rem; font-weight: 700; line-height: 1; background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: -1rem; }
.projects-list { display: flex; flex-direction: column; gap: 0; }
.proj-card { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 2.5rem 0; display: grid; grid-template-columns: 80px 1fr auto; gap: 2.5rem; align-items: start; cursor: pointer; transition: padding 0.3s; position: relative; }
.proj-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: width 0.5s; }
.proj-card:hover::after { width: 100%; }
.proj-card:hover { padding-left: 12px; }
.proj-card.featured { background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%); border: 1px solid rgba(201,168,76,0.2); border-radius: 2px; padding: 3rem; margin-bottom: 1.5rem; grid-template-columns: 1fr; gap: 0; }
.proj-card.featured::after { display: none; }
.proj-featured-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.proj-featured-badge { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.4rem 1rem; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); font-weight: 700; border-radius: 1px; }
.proj-featured-num { font-family: var(--font-serif); font-size: 5rem; font-weight: 700; color: rgba(201,168,76,0.08); line-height: 1; }
.proj-featured-body { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.proj-featured-title { font-family: var(--font-serif); font-size: 2rem; color: var(--white); margin-bottom: 0.5rem; line-height: 1.2; }
.proj-featured-sub { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.5rem; }
.proj-featured-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.9; margin-bottom: 2rem; }
.proj-featured-phases { display: flex; flex-direction: column; gap: 0; }
.phase-row { display: flex; align-items: center; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.phase-row:last-child { border-bottom: none; }
.phase-row-num { font-family: var(--font-serif); font-size: 0.85rem; color: var(--gold); min-width: 28px; font-weight: 700; }
.phase-row-text { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.phase-row-tag { margin-left: auto; font-size: 0.6rem; letter-spacing: 0.1em; padding: 0.2rem 0.5rem; border-radius: 1px; white-space: nowrap; }
.phase-row-tag.done { background: rgba(29,158,117,0.15); color: var(--teal-light); }
.phase-row-tag.active { background: rgba(201,168,76,0.12); color: var(--gold-light); }
.phase-row-tag.pending { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.35); }
.proj-featured-metrics { display: flex; flex-direction: column; gap: 1rem; }
.metric-box { background: rgba(10,22,40,0.6); border: 1px solid rgba(255,255,255,0.07); padding: 1.2rem 1.5rem; border-radius: 1px; }
.metric-box-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.4rem; }
.metric-box-val { font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold-light); }
.metric-box-sub { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; }
.proj-num { font-family: var(--font-serif); font-size: 2rem; color: rgba(201,168,76,0.2); line-height: 1; }
.proj-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--white); margin-bottom: 0.4rem; }
.proj-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.8rem; }
.proj-tag { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.45); border-radius: 1px; }
.proj-arrow { font-size: 1.2rem; color: rgba(201,168,76,0.3); align-self: center; transition: color 0.3s, transform 0.3s; }
.proj-card:hover .proj-arrow { color: var(--gold); transform: translateX(6px); }

/* REGULATION */
.reg-masthead { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(201,168,76,0.2); margin-top: 4rem; overflow: hidden; border-radius: 2px; }
.reg-pane { padding: 3rem; border-right: 1px solid rgba(201,168,76,0.2); position: relative; overflow: hidden; }
.reg-pane:last-child { border-right: none; }
.reg-pane-watermark { position: absolute; top: -10px; right: -10px; font-family: var(--arabic); font-size: 6rem; font-weight: 700; color: rgba(201,168,76,0.04); line-height: 1; pointer-events: none; }
.reg-badge-lg { display: inline-flex; align-items: center; gap: 8px; padding: 0.5rem 1.2rem; margin-bottom: 1.5rem; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; border-radius: 1px; }
.reg-badge-lg.u { background: rgba(201,168,76,0.12); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.2); }
.reg-badge-lg.c { background: rgba(29,158,117,0.1); color: var(--teal-light); border: 1px solid rgba(29,158,117,0.2); }
.reg-pane-title { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); margin-bottom: 1.5rem; }
.reg-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.reg-list li { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.7; padding-left: 1.2rem; position: relative; }
.reg-list li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 5px; height: 1px; background: var(--gold); }
.free-zone { margin-top: 3rem; background: linear-gradient(135deg, rgba(29,158,117,0.06), rgba(29,158,117,0.02)); border: 1px solid rgba(29,158,117,0.18); border-radius: 2px; padding: 3rem; }
.free-zone-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.free-zone-icon { width: 40px; height: 40px; border: 1px solid rgba(29,158,117,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.free-zone-icon svg { width: 18px; height: 18px; stroke: var(--teal-light); fill: none; stroke-width: 1.5; }
.free-zone-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--teal-light); }
.free-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.free-item { background: rgba(10,22,40,0.5); border: 1px solid rgba(29,158,117,0.1); padding: 1.2rem; border-radius: 1px; transition: border-color 0.3s, background 0.3s; }
.free-item:hover { border-color: rgba(29,158,117,0.3); background: rgba(29,158,117,0.05); }
.free-item-num { font-family: var(--font-serif); font-size: 1.6rem; color: rgba(29,158,117,0.3); margin-bottom: 0.5rem; }
.free-item-title { font-size: 0.85rem; color: var(--white); font-weight: 500; margin-bottom: 0.3rem; }
.free-item-sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ZFT */
.zft-hero { background: linear-gradient(135deg, var(--navy-mid), var(--navy-light)); border: 1px solid rgba(201,168,76,0.2); border-radius: 2px; padding: 4rem; margin-top: 4rem; display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; position: relative; overflow: hidden; }
.zft-hero .geo-bg { opacity: 0.03; }
.zft-hero-title { font-family: var(--font-serif); font-size: 2.2rem; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.zft-hero-title span { background: linear-gradient(90deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.zft-hero-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.9; margin-bottom: 2.5rem; }
.zft-steps-mini { display: flex; flex-direction: column; gap: 0; }
.zft-step { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.zft-step:last-child { border-bottom: none; }
.zft-step-circle { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--gold-light); font-weight: 600; }
.zft-step-title { font-size: 0.88rem; color: var(--white); font-weight: 500; margin-bottom: 0.2rem; }
.zft-step-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.zft-advantages { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.2); border-radius: 1px; }
.zft-adv { background: rgba(10,22,40,0.8); padding: 1.5rem; transition: background 0.3s; }
.zft-adv:hover { background: rgba(201,168,76,0.06); }
.zft-adv-icon { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--gold); }
.zft-adv-title { font-size: 0.86rem; color: var(--white); font-weight: 500; margin-bottom: 0.3rem; }
.zft-adv-sub { font-size: 0.76rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* VIGILANCE */
.vig-band { background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02)); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 4rem 5vw; }
.vig-inner { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.vig-left-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold-light); margin-bottom: 0.8rem; }
.vig-left-desc { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
.vig-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.vig-card { border: 1px solid rgba(255,255,255,0.08); border-left: 2px solid var(--gold); padding: 1.5rem; background: rgba(10,22,40,0.5); border-radius: 1px; }
.vig-card-title { font-size: 0.86rem; color: var(--white); font-weight: 600; margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.vig-card-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ═══ NEWS with images ═══ */
.news-section { background: var(--navy-mid); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.news-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px; overflow: hidden; transition: transform 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
.news-img-wrap {
  position: relative; width: 100%; height: 180px; overflow: hidden;
}
.news-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-img-wrap img { transform: scale(1.08); }
.news-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.8) 100%);
}
.news-card-header {
  padding: 1rem 1.5rem 0; display: flex; align-items: center; justify-content: space-between;
}
.news-date { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal-light); }
.news-source { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); padding: 0.2rem 0.6rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 1px; }
.news-body { padding: 1.2rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); margin-bottom: 0.6rem; line-height: 1.3; }
.news-excerpt { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 1.2rem; flex: 1; }
.news-link { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: color 0.2s; }
.news-link:hover { color: var(--gold-light); }
.news-featured {
  grid-column: span 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(201,168,76,0.02));
  border: 1px solid rgba(201,168,76,0.2);
}
.news-featured .news-img-wrap { height: 100%; min-height: 280px; }
.news-featured .news-body { display: flex; flex-direction: column; justify-content: center; padding: 2rem; }
.news-featured .news-title { font-size: 1.35rem; }
.news-badge { display: inline-block; font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.8rem; background: var(--gold); color: var(--navy); font-weight: 700; border-radius: 1px; margin-bottom: 1rem; width: fit-content; }

/* CONTACT with BG image */
.contact-section {
  padding: 8rem 5vw; position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(135deg, rgba(10,22,40,0.95), rgba(10,22,40,0.85)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=60') center/cover no-repeat;
}
.contact-section .geo-bg { opacity: 0.025; }
.contact-deco { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.contact-arabic { font-family: var(--arabic); font-size: 1.2rem; color: rgba(201,168,76,0.4); letter-spacing: 0.2em; direction: rtl; margin-bottom: 2rem; }
.contact-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 1.2rem; line-height: 1.2; }
.contact-title em { font-style: italic; color: var(--gold-light); }
.contact-sub { font-size: 0.95rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 3.5rem; line-height: 1.9; }
.contact-btns { display: flex; gap: 1.2rem; justify-content: center; }

/* NEWSLETTER */
      .newsletter {
        padding: 4rem 5vw;
        background: var(--navy);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .newsletter h3 {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        color: var(--white);
        margin-bottom: 0.6rem;
      }

      .newsletter p {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 2rem;
      }

      .newsletter-form {
        display: flex;
        gap: 0;
        max-width: 460px;
        width: 100%;
      }

      .newsletter-input {
        flex: 1;
        padding: 0.85rem 1.2rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-right: none;
        color: var(--white);
        font-size: 0.85rem;
        font-family: var(--font-sans);
        border-radius: 1px 0 0 1px;
        outline: none;
      }

      .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.3);
      }

      .newsletter-input:focus {
        border-color: rgba(201, 168, 76, 0.3);
      }

      .newsletter-btn {
        padding: 0.85rem 1.5rem;
        background: var(--gold);
        color: var(--navy);
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        border-radius: 0 1px 1px 0;
        font-family: var(--font-sans);
        transition: background 0.2s;
      }

      .newsletter-btn:hover {
        background: var(--gold-light);
      }

/* FOOTER */
footer { background: var(--navy); border-top: 1px solid rgba(201,168,76,0.2); padding: 4rem 5vw 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand-logo { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.3rem; }
.footer-brand-sub { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201,168,76,0.4); margin-bottom: 1.2rem; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.9; }
.footer-col-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-compliance { font-size: 0.65rem; letter-spacing: 0.12em; padding: 0.35rem 1rem; border: 1px solid rgba(29,158,117,0.2); color: var(--teal-light); border-radius: 1px; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.up { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.up { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
════════════════════════════════════════ */
@media(max-width:1000px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-pattern { display: none; }
  .hero-content { padding: 140px 1.5rem 4rem; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .services-layout { grid-template-columns: 1fr; }
  .services-intro { position: static; }
  .projects-header { grid-template-columns: 1fr; }
  .reg-masthead { grid-template-columns: 1fr; }
  .reg-pane { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .free-grid { grid-template-columns: 1fr 1fr; }
  .zft-hero { grid-template-columns: 1fr; }
  .zft-advantages { grid-template-columns: 1fr; }
  .vig-inner { grid-template-columns: 1fr; }
  .vig-cards { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .news-featured .news-img-wrap { height: 200px; min-height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proj-card { grid-template-columns: 60px 1fr auto; }
  .proj-featured-body { grid-template-columns: 1fr; }
  .section { padding: 5rem 5vw; }
  .contact-btns { flex-direction: column; align-items: center; }
}

@media(max-width:768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-left: 1px solid rgba(201,168,76,0.2);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 6rem 2rem 2rem; gap: 0; z-index: 490;
    transform: translateX(100%); transition: transform 0.4s ease;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a {
    font-size: 0.85rem; padding: 1rem 0; width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.8);
  }
  .nav-menu a::after { display: none; }
  .nav-menu a:hover { color: var(--gold-light); }
  .nav-cta { margin-top: 1rem; width: 100%; text-align: center; }
  .lang-switch { margin-top: 1.5rem; }
  .about-strip-inner { gap: 2rem; }
  .about-pillar-divider { display: none; }
  .free-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline, .btn-gold, .btn-ghost { width: 100%; text-align: center; }
  .project-count { font-size: 5rem; }
  .news-featured .news-title { font-size: 1.15rem; }
}

@media(max-width:480px) {
  .hero-content { padding: 120px 1rem 3rem; }
  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: 0.95rem; }
  .s-title { font-size: 1.6rem; }
  .section { padding: 4rem 1rem; }
  .contact-section { padding: 5rem 1rem; }
  .zft-hero { padding: 2rem; }
  .reg-pane { padding: 2rem 1.5rem; }
  .proj-card.featured { padding: 2rem 1.5rem; }
  .metric-box { padding: 1rem; }
}

@media(max-width:600px) {
        .news-grid-full {
          grid-template-columns: 1fr;
        }

        .newsletter-form {
          flex-direction: column;
        }

        .newsletter-input {
          border-right: 1px solid rgba(255, 255, 255, 0.12);
          border-bottom: none;
          border-radius: 1px 1px 0 0;
        }

        .newsletter-btn {
          border-radius: 0 0 1px 1px;
        }
      }
