*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
:root {
    --forest: #1c3a2a;
    --green: #2e6b45;
    --green-m: #3d8558;
    --green-l: #6abf85;
    --earth: #8b6340;
    --earth-l: #c4956a;
    --cream: #f5f0e8;
    --white: #fafaf7;
    --ink: #141410;
    --muted: #6b6b5a;
    --border: rgba(46, 107, 69, 0.15);
}
[data-en] {
    display: none;
}
[data-ar] {
    display: block;
}
html[lang="en"] [data-en] {
    display: block;
}
html[lang="en"] [data-ar] {
    display: none;
}
html[lang="en"] body {
    font-family: "Syne", sans-serif;
}
html[lang="ar"] body {
    font-family: "Cairo", sans-serif;
}
body {
    background: var(--ink);
    color: var(--cream);
    overflow-x: hidden;
    cursor: none;
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
}
::-webkit-scrollbar {
    width: 2px;
}
::-webkit-scrollbar-track {
    background: var(--ink);
}
::-webkit-scrollbar-thumb {
    background: var(--green);
}
#cur {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--green-l);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}
#cur-r {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(106, 191, 133, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.08s;
}

/* ── NAV (identical to homepage) ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s;
}
nav.s {
    background: rgba(20, 20, 16, 0.93);
    backdrop-filter: blur(16px);
    padding: 14px 60px;
    border-bottom: 1px solid var(--border);
}
.n-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.n-mark {
    width: 38px;
    height: 38px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.n-mark svg {
    width: 20px;
    height: 20px;
}
.n-abbr {
    font-family: "Syne", sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 4px;
}
.n-full {
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 1px;
    display: block;
    margin-top: 1px;
}
html[lang="ar"] .n-full {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 10px;
}
.n-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}
.n-links a {
    text-decoration: none;
    color: var(--cream);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.45;
    transition:
        opacity 0.3s,
        color 0.3s;
}
html[lang="ar"] .n-links a {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 13px;
    text-transform: none;
}
.n-links a:hover {
    opacity: 1;
    color: var(--green-l);
}
.n-links a.active {
    opacity: 1;
    color: var(--green-l);
}
.n-cta {
    background: var(--green) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    opacity: 1 !important;
    border-radius: 2px;
    transition: background 0.3s !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.n-cta:hover {
    background: var(--green-m) !important;
}
.n-right {
    display: flex;
    align-items: center;
    gap: 18px;
}
.lsw {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    padding: 3px;
}
.lbtn {
    padding: 5px 11px;
    font-family: "DM Mono", monospace;
    font-size: 11px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.25s;
}
.lbtn.on {
    background: var(--green-m);
    color: var(--white);
}

/* ── SHARED COMPONENTS ── */
section {
    padding: 100px 60px;
}
.stag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.stag::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--green);
    flex-shrink: 0;
}
.stag-t {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--green-l);
    letter-spacing: 3px;
    text-transform: uppercase;
}
html[lang="ar"] .stag-t {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 11px;
}
.h2-en {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
}
.h2-en em {
    font-style: italic;
    color: var(--earth-l);
}
.h2-ar {
    font-family: "Noto Naskh Arabic", serif;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
}
.h2-ar em {
    font-style: normal;
    color: var(--earth-l);
}
.body-p {
    font-size: 14px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 400;
}
html[lang="ar"] .body-p {
    font-family: "Cairo", sans-serif;
    font-size: 14px;
    line-height: 1.85;
}
.btn-g {
    background: var(--green);
    color: var(--white);
    padding: 13px 30px;
    font-family: "Syne", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}
html[lang="ar"] .btn-g {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 13px;
    text-transform: none;
}
.btn-g::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--green-l);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
html[lang="ar"] .btn-g::before {
    transform: translateX(101%);
}
.btn-g:hover::before {
    transform: translateX(0);
}
.btn-g:hover {
    transform: translateY(-2px);
}
.btn-g .t {
    position: relative;
    z-index: 1;
}

/* ── PAGE HERO (shorter than homepage) ── */
.pg-hero {
    height: 72vh;
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.ph-bg {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1800&q=80")
        center/cover;
    filter: brightness(0.22) saturate(0.5);
    transform: scale(1.05);
}
.ph-grad-en {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(20, 20, 16, 0.98) 35%,
        rgba(28, 58, 42, 0.6) 100%
    );
}
.ph-grad-ar {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        255deg,
        rgba(20, 20, 16, 0.98) 35%,
        rgba(28, 58, 42, 0.6) 100%
    );
}
html[lang="en"] .ph-grad-ar {
    display: none;
}
html[lang="ar"] .ph-grad-en {
    display: none;
}
.ph-grid {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.04;
}
.ph-grid span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--green-l),
        transparent
    );
}
.ph-content {
    position: relative;
    z-index: 10;
    padding: 0 60px 72px;
    width: 100%;
}
.ph-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fup 0.5s 0.1s forwards;
}
.ph-bc-item {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: rgba(245, 240, 232, 0.35);
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}
html[lang="ar"] .ph-bc-item {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 11px;
}
.ph-bc-item:hover {
    color: var(--green-l);
}
.ph-bc-sep {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: rgba(245, 240, 232, 0.15);
}
.ph-bc-cur {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--green-l);
    letter-spacing: 2px;
    text-transform: uppercase;
}
html[lang="ar"] .ph-bc-cur {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 11px;
}
.ph-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    opacity: 0;
    animation: fup 0.6s 0.2s forwards;
}
.ph-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--earth-l);
    flex-shrink: 0;
}
.ph-eye-txt {
    font-size: 10px;
    color: var(--earth-l);
    letter-spacing: 3px;
    text-transform: uppercase;
}
html[lang="ar"] .ph-eye-txt {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 12px;
}
/* Page H1 — slightly smaller than homepage */
.ph-h1-en {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
    overflow: hidden;
    opacity: 0;
    animation: fup 0.9s 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ph-h1-en em {
    font-style: italic;
    color: var(--earth-l);
    font-weight: 400;
}
.ph-h1-ar {
    font-family: "Noto Naskh Arabic", serif;
    font-size: clamp(38px, 4.8vw, 60px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    overflow: hidden;
    opacity: 0;
    animation: fup 0.9s 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ph-h1-ar em {
    font-style: normal;
    color: var(--earth-l);
}
.ph-sub {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.48);
    max-width: 520px;
    opacity: 0;
    animation: fup 0.7s 0.7s forwards;
}
html[lang="ar"] .ph-sub {
    font-family: "Cairo", sans-serif;
    font-size: 15px;
}
/* Year badge floating */
.ph-badge {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    border: 1px solid rgba(46, 107, 69, 0.25);
    padding: 28px 32px;
    text-align: center;
    background: rgba(20, 20, 16, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    animation: fup 0.7s 0.9s forwards;
}
html[lang="ar"] .ph-badge {
    right: auto;
    left: 60px;
}
.ph-badge-n {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 600;
    color: var(--green-l);
    display: block;
    line-height: 1;
}
html[lang="ar"] .ph-badge-n {
    font-family: "Noto Naskh Arabic", serif;
}
.ph-badge-l {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    color: rgba(245, 240, 232, 0.35);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 6px;
}
html[lang="ar"] .ph-badge-l {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 10px;
}

/* ── 01 STORY ── */
.story-sec {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}
.story-sec::before {
    content: "١٩";
    position: absolute;
    font-family: "Noto Naskh Arabic", serif;
    font-size: 300px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.013);
    top: -40px;
    left: -20px;
    pointer-events: none;
    line-height: 1;
}
html[lang="en"] .story-sec::before {
    content: "EST";
    font-family: "Cormorant Garamond", serif;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-img-wrap {
    position: relative;
}
.story-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: saturate(0.55) brightness(0.72);
}
.story-img-frame {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(46, 107, 69, 0.2);
    transform: translate(12px, 12px);
    pointer-events: none;
}
html[lang="ar"] .story-img-frame {
    transform: translate(-12px, 12px);
}
.story-img-tag {
    position: absolute;
    bottom: 0;
    background: var(--forest);
    padding: 18px 22px;
    border-top: 2px solid var(--earth);
}
html[lang="en"] .story-img-tag {
    right: 0;
}
html[lang="ar"] .story-img-tag {
    left: 0;
}
.story-img-tag-n {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--green-l);
    display: block;
    line-height: 1;
}
html[lang="ar"] .story-img-tag-n {
    font-family: "Noto Naskh Arabic", serif;
}
.story-img-tag-l {
    font-size: 9px;
    color: rgba(245, 240, 232, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}
html[lang="ar"] .story-img-tag-l {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 10px;
}
.story-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.story-body .body-p + .body-p {
    margin-top: 18px;
}
.story-quote {
    border-right: 3px solid var(--green-m);
    padding-right: 20px;
    margin: 32px 0;
}
html[lang="ar"] .story-quote {
    border-right: none;
    border-left: 3px solid var(--green-m);
    padding-right: 0;
    padding-left: 20px;
}
.story-quote-txt {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(18px, 2vw, 24px);
    font-style: italic;
    color: var(--cream);
    line-height: 1.55;
    font-weight: 300;
}
html[lang="ar"] .story-quote-txt {
    font-family: "Noto Naskh Arabic", serif;
    font-style: normal;
    font-size: clamp(16px, 1.8vw, 21px);
    font-weight: 600;
}
.story-quote-src {
    font-size: 10px;
    color: var(--earth-l);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
}
html[lang="ar"] .story-quote-src {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 11px;
}

/* ── 02 MISSION / VISION / VALUES ── */
.mvv-sec {
    background: var(--forest);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}
.mvv-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(106, 191, 133, 0.07),
        transparent 65%
    );
}
html[lang="ar"] .mvv-sec::before {
    background: radial-gradient(
        ellipse at 70% 50%,
        rgba(106, 191, 133, 0.07),
        transparent 65%
    );
}
.mvv-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
}
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
}
.mvv-card {
    background: var(--forest);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    cursor: default;
}
.mvv-card:hover {
    background: rgba(28, 58, 42, 0.7);
}
.mvv-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--green-m), var(--earth-l));
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
html[lang="ar"] .mvv-card::after {
    left: auto;
    right: 0;
    background: linear-gradient(to left, var(--green-m), var(--earth-l));
}
.mvv-card:hover::after {
    width: 100%;
}
.mvv-num {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--earth);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}
.mvv-ico {
    font-size: 28px;
    display: block;
    margin-bottom: 18px;
}
/* MVV card heading */
.mvv-t {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.1;
}
html[lang="ar"] .mvv-t {
    font-family: "Noto Naskh Arabic", serif;
    font-size: 22px;
}
.mvv-d {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.5);
    font-weight: 400;
}
html[lang="ar"] .mvv-d {
    font-family: "Cairo", sans-serif;
    font-size: 14px;
}
.mvv-kw {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
}
.mvv-kw span {
    padding: 3px 10px;
    border: 1px solid rgba(106, 191, 133, 0.2);
    font-size: 9px;
    color: var(--green-l);
    letter-spacing: 1px;
    text-transform: uppercase;
}
html[lang="ar"] .mvv-kw span {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 10px;
}

/* ── 03 NUMBERS ── */
.num-sec {
    background: #111110;
    padding: 80px 60px;
}
.num-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 52px;
}
.num-item {
    padding: 40px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
    position: relative;
    overflow: hidden;
}
html[lang="ar"] .num-item {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}
html[lang="ar"] .num-item:last-child {
    border-left: none;
}
.num-item:last-child {
    border-right: none;
}
.num-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 100%,
        rgba(106, 191, 133, 0.05),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s;
}
.num-item:hover::before {
    opacity: 1;
}
/* Big number */
.num-n {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--green-l);
    display: block;
    line-height: 1;
}
html[lang="ar"] .num-n {
    font-family: "Noto Naskh Arabic", serif;
}
.num-suf {
    color: var(--earth-l);
}
/* Label */
.num-l {
    font-size: 10px;
    color: rgba(245, 240, 232, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 7px;
    display: block;
}
html[lang="ar"] .num-l {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 11px;
}

/* ── 04 TEAM ── */
.team-sec {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}
.team-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 56px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}
.tm {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.tm-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    filter: saturate(0.4) brightness(0.7);
    transition:
        filter 0.5s,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.tm:hover .tm-img {
    filter: saturate(0.7) brightness(0.85);
    transform: scale(1.04);
}
.tm-over {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 20, 16, 0.97) 0%,
        rgba(20, 20, 16, 0.3) 50%,
        transparent 80%
    );
    padding: 24px;
}
.tm-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    transform: translateY(36px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.tm:hover .tm-body {
    transform: translateY(0);
}
/* Team member name */
.tm-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
    line-height: 1.1;
}
html[lang="ar"] .tm-name {
    font-family: "Noto Naskh Arabic", serif;
    font-size: 18px;
}
/* Role */
.tm-role {
    font-size: 10px;
    color: var(--earth-l);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
html[lang="ar"] .tm-role {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 11px;
}
/* Bio text */
.tm-bio {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.45);
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.3s 0.1s,
        transform 0.3s 0.1s;
}
html[lang="ar"] .tm-bio {
    font-family: "Cairo", sans-serif;
    font-size: 13px;
}
.tm:hover .tm-bio {
    opacity: 1;
    transform: translateY(0);
}
.tm-line {
    width: 28px;
    height: 1px;
    background: var(--green-m);
    display: block;
    margin-bottom: 8px;
    transition: width 0.4s 0.2s;
}
.tm:hover .tm-line {
    width: 52px;
}

/* ── 05 TIMELINE (company history) ── */
.hist-sec {
    background: #111110;
    position: relative;
    overflow: hidden;
}
.hist-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(46, 107, 69, 0.05),
        transparent 60%
    );
}
.hist-track {
    position: relative;
    margin-top: 64px;
    padding: 0 0 0 48px;
}
html[lang="ar"] .hist-track {
    padding: 0 48px 0 0;
}
.hist-track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--green-m) 10%,
        var(--green-m) 90%,
        transparent
    );
}
html[lang="ar"] .hist-track::before {
    left: auto;
    right: 0;
}
.h-item {
    position: relative;
    padding-bottom: 56px;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.65s,
        transform 0.65s;
}
.h-item.hv {
    opacity: 1;
    transform: translateY(0);
}
.h-item:last-child {
    padding-bottom: 0;
}
.h-dot {
    position: absolute;
    left: -48px;
    top: 4px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--green-m);
    background: var(--ink);
    border-radius: 50%;
    transition: background 0.4s;
}
html[lang="ar"] .h-dot {
    left: auto;
    right: -48px;
}
.h-item:hover .h-dot {
    background: var(--green-m);
}
.h-year {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: var(--earth-l);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 6px;
}
html[lang="ar"] .h-year {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 11px;
}
/* History heading */
.h-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.1;
}
html[lang="ar"] .h-title {
    font-family: "Noto Naskh Arabic", serif;
    font-size: 20px;
}
.h-desc {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 600px;
}
html[lang="ar"] .h-desc {
    font-family: "Cairo", sans-serif;
    font-size: 14px;
}
.h-badge {
    display: inline-block;
    padding: 3px 10px;
    border: 1px solid rgba(196, 149, 106, 0.3);
    color: var(--earth-l);
    font-size: 9px;
    letter-spacing: 1px;
    margin-top: 10px;
}
html[lang="ar"] .h-badge {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 10px;
}

/* ── 06 CERTIFICATIONS & PARTNERS ── */
.cert-sec {
    background: var(--forest);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}
.cert-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(106, 191, 133, 0.07),
        transparent 60%
    );
}
.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 52px;
}
.cert-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
}
.cert-item {
    background: var(--forest);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.3s;
    cursor: default;
}
.cert-item:hover {
    background: rgba(28, 58, 42, 0.7);
}
.cert-ico {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(106, 191, 133, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: border-color 0.3s;
}
.cert-item:hover .cert-ico {
    border-color: var(--green-m);
}
/* Cert name */
.cert-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 2px;
}
html[lang="ar"] .cert-name {
    font-family: "Cairo", sans-serif;
    font-size: 14px;
}
.cert-body {
    font-size: 11px;
    color: rgba(245, 240, 232, 0.35);
    line-height: 1.5;
}
html[lang="ar"] .cert-body {
    font-family: "Cairo", sans-serif;
    font-size: 12px;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
}
.partner-item {
    background: var(--forest);
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: background 0.3s;
    cursor: default;
    min-height: 110px;
}
.partner-item:hover {
    background: rgba(28, 58, 42, 0.7);
}
.partner-ico {
    font-size: 28px;
    line-height: 1;
}
/* Partner name */
.partner-name {
    font-size: 12px;
    color: rgba(245, 240, 232, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}
html[lang="ar"] .partner-name {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 12px;
}

/* ── 07 CTA ── */
.cta {
    background: var(--green);
    padding: 72px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    position: relative;
    overflow: hidden;
}
.cta::before {
    position: absolute;
    font-family: "Cormorant Garamond", serif;
    font-size: 200px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
}
html[lang="en"] .cta::before {
    content: "BUILD";
    right: -20px;
}
html[lang="ar"] .cta::before {
    content: "نبني";
    left: -10px;
    font-family: "Noto Naskh Arabic", serif;
    right: auto;
}
.cta-txt {
    position: relative;
    z-index: 1;
}
.cta-pre {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 10px;
}
html[lang="ar"] .cta-pre {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 11px;
}
.cta-h-en {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
}
.cta-h-en em {
    font-style: italic;
    color: var(--earth-l);
}
.cta-h-ar {
    font-family: "Noto Naskh Arabic", serif;
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}
.cta-h-ar em {
    font-style: normal;
    color: var(--earth-l);
}
.btn-cream {
    background: var(--cream);
    color: var(--forest);
    padding: 15px 34px;
    font-family: "Syne", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.2s;
}
html[lang="ar"] .btn-cream {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 13px;
    text-transform: none;
}
.btn-cream::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
html[lang="ar"] .btn-cream::before {
    transform-origin: right;
}
.btn-cream:hover::before {
    transform: scaleX(1);
}
.btn-cream:hover {
    transform: translateY(-2px);
}
.btn-cream .t {
    position: relative;
    z-index: 1;
}

/* ── FOOTER ── */
footer {
    background: #0d0d0b;
    padding: 56px 60px 26px;
}
.ft {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.f-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
}
.f-mk {
    width: 34px;
    height: 34px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.f-mk svg {
    width: 18px;
    height: 18px;
}
.f-abbr2 {
    font-family: "Syne", sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 4px;
}
.f-tag {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 14px;
    color: var(--earth-l);
    display: block;
    margin-bottom: 8px;
}
html[lang="ar"] .f-tag {
    font-family: "Noto Naskh Arabic", serif;
    font-style: normal;
    font-size: 15px;
}
.f-about {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1.7;
    max-width: 210px;
}
html[lang="ar"] .f-about {
    font-family: "Cairo", sans-serif;
    font-size: 13px;
}
.fc h5 {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--green-l);
    text-transform: uppercase;
    margin-bottom: 16px;
}
html[lang="ar"] .fc h5 {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 10px;
}
.fc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.fc a {
    color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}
html[lang="ar"] .fc a {
    font-family: "Cairo", sans-serif;
    font-size: 13px;
}
.fc a:hover {
    color: rgba(255, 255, 255, 0.7);
}
.fb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}
.f-copy {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 1px;
}
html[lang="ar"] .f-copy {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    font-size: 11px;
}
.fsoc {
    display: flex;
    gap: 9px;
}
.fsoc a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.22);
    font-size: 11px;
    font-family: "DM Mono", monospace;
    transition:
        border-color 0.3s,
        color 0.3s,
        transform 0.2s;
}
.fsoc a:hover {
    border-color: var(--green-l);
    color: var(--green-l);
    transform: translateY(-2px);
}

/* ── SCROLL REVEAL ── */
@keyframes wup {
    from {
        transform: translateY(105%);
    }
    to {
        transform: translateY(0);
    }
}
@keyframes fup {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.sr {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.sr.in {
    opacity: 1;
    transform: translateY(0);
}
.sl {
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
html[lang="ar"] .sl {
    transform: translateX(40px);
}
.sl.in {
    opacity: 1;
    transform: translateX(0);
}
.srr {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
html[lang="ar"] .srr {
    transform: translateX(-40px);
}
.srr.in {
    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;
}

@media (max-width: 900px) {
    nav {
        padding: 16px 22px;
    }
    nav.s {
        padding: 12px 22px;
    }
    .n-links {
        display: none;
    }
    section,
    .mvv-sec,
    .num-sec,
    .cert-sec {
        padding: 60px 22px;
    }
    .ph-content {
        padding: 0 22px 56px;
    }
    .story-grid,
    .mvv-header,
    .team-header,
    .cert-grid,
    .hist-track,
    .cta {
        display: block;
    }
    .story-grid {
        gap: 40px;
    }
    .mvv-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    .num-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta {
        padding: 56px 22px;
        flex-direction: column;
    }
    footer {
        padding: 44px 22px 22px;
    }
    .ft {
        grid-template-columns: 1fr;
    }
    .ph-badge {
        display: none;
    }
    .story-img {
        height: 300px;
    }
    .hist-track {
        padding: 0 0 0 32px;
    }
    html[lang="ar"] .hist-track {
        padding: 0 32px 0 0;
    }
}
