/* ═══════════════════════════════════════════════════════════════
   ADISH REFINERY  ·  Design System  ·  v3.0
   Font: Far Yekan (local) + Exo 2 (Latin)
   Palette: Deep Navy · Teal · Orange Flame · Gold Premium · Cyan
═══════════════════════════════════════════════════════════════ */

/* ── Far Yekan ── */
@font-face {
    font-family: 'Far Yekan';
    src: url('/wp-content/uploads/2026/06/Far_Yekan.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: block;
}

/* ── Design Tokens ── */
:root {
    /* Background scale (dark → less dark) */
    --bg-0: #030810;
    --bg-1: #070D1B;
    --bg-2: #0B1224;
    --bg-3: #111B30;
    --bg-4: #162038;
    --bg-glass: rgba(11,18,36,.7);

    /* Brand colors */
    --orange:   #E85A1E;
    --orange-2: #FF7040;
    --orange-3: #FF9265;
    --gold:     #C98C3A;
    --gold-2:   #DBA759;
    --cyan:     #00C8DE;
    --cyan-2:   #00E8FF;
    --teal:     #005B70;
    --teal-2:   #0C7F8B;

    /* Text */
    --t-1: #F2F5FF;
    --t-2: #9AA8BF;
    --t-3: #5B6880;
    --t-acc: #E85A1E;

    /* Borders */
    --b-1: rgba(255,255,255,.07);
    --b-2: rgba(232,90,30,.25);
    --b-cyan: rgba(0,200,222,.2);

    /* Typography */
    --ff-ar: 'Far Yekan', system-ui, sans-serif;
    --ff-en: 'Exo 2', 'Rajdhani', system-ui, sans-serif;

    /* Spacing */
    --sec: clamp(5rem,9vw,8rem);
    --sec-sm: clamp(3rem,5vw,4.5rem);
    --r: 12px;
    --r-lg: 20px;

    /* Nav height */
    --nav-h: 76px;

    /* Transitions */
    --ease: cubic-bezier(.25,.46,.45,.94);
    --ease-out: cubic-bezier(0,.55,.45,1);
    --ease-in-out: cubic-bezier(.76,0,.24,1);
    --dur: .4s;
}

/* ─── Skip to content ─── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    padding: .6rem 1.8rem;
    background: var(--orange);
    color: #fff;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 700;
    z-index: 10000;
    overflow: visible;
}

/* ─── Reset ─── */
*, *::before, *::after {
    box-sizing: border-box; margin: 0; padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
button, input, textarea, select { font: inherit; }
html { font-size: 16px; }
body {
    direction: rtl;
    font-family: var(--ff-ar);
    background: var(--bg-1);
    color: var(--t-1);
    line-height: 1.65;
    font-weight: 500;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── Utility ─── */
.container { width: min(1220px,92vw); margin-inline: auto; }
.text-center { text-align: center; }
.text-o { color: var(--orange); }
.label-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .72rem; letter-spacing: .1em;
    color: var(--orange); font-family: var(--ff-ar); font-weight: 700;
    padding: .3rem .9rem; border: 1px solid var(--b-2);
    border-radius: 100px; margin-bottom: 1.2rem;
}
.section-top { margin-bottom: clamp(2.5rem,5vw,4rem); }
.h2 { font-size: clamp(2rem,4.5vw,3.6rem); font-weight: 800; line-height: 1.12; }

/* ════════════════════════════════════════════════════
   PRELOADER
════════════════════════════════════════════════════ */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg-0);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.4rem;
    overflow: hidden;
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
#preloader.done { opacity: 0; pointer-events: none; transform: scale(1.04); }

.pre__grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,200,222,.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,200,222,.032) 1px, transparent 1px);
    background-size: 52px 52px;
}

.pre__hub {
    position: relative; width: 280px; height: 280px;
    display: flex; align-items: center; justify-content: center;
}
.pre__rings { position: absolute; inset: 0; overflow: visible; }
.pre__arc { fill: none; stroke-linecap: round; transform-box: fill-box; transform-origin: center; }
.pre__arc--outer {
    stroke: var(--cyan); stroke-width: 1;
    stroke-dasharray: 3 16; opacity: .5;
    animation: preSpin 30s linear infinite;
}
.pre__arc--mid {
    stroke: var(--orange); stroke-width: 2.5;
    stroke-dasharray: 125 32;
    filter: drop-shadow(0 0 5px rgba(232,90,30,.7));
    animation: preSpinCCW 16s linear infinite;
}
.pre__arc--inner {
    stroke: var(--gold); stroke-width: 1.5;
    stroke-dasharray: 370 95; opacity: .8;
    animation: preSpin 10s linear infinite;
}
@keyframes preSpin    { to { transform: rotate(360deg);  } }
@keyframes preSpinCCW { to { transform: rotate(-360deg); } }

.pre__orb-track {
    position: absolute; inset: 0;
    animation: preSpin 7s linear infinite;
}
.pre__orb {
    position: absolute; top: 50%; left: 50%;
    width: 8px; height: 8px;
    margin-top: -130px; margin-left: -4px;
    background: var(--cyan); border-radius: 50%;
    box-shadow: 0 0 12px 5px rgba(0,200,222,.7);
}

.pre__logo-wrap {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
}
.pre__logo {
    animation: preLogoPulse 3.5s ease-in-out infinite;
}
.pre__logo-pulse {
    position: absolute; inset: -22px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,90,30,.1) 0%, transparent 70%);
    animation: prePulseRing 3.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes preLogoPulse {
    0%,100% { filter: drop-shadow(0 0 18px rgba(232,90,30,.65)); }
    50%      { filter: drop-shadow(0 0 34px rgba(232,90,30,1));  }
}
@keyframes prePulseRing {
    0%,100% { transform: scale(.85); opacity: .35; }
    50%      { transform: scale(1.4); opacity: .9;  }
}

.pre__name-en {
    font-family: var(--ff-en), sans-serif;
    font-size: 2.1rem; font-weight: 900; letter-spacing: .42em;
    color: #fff; margin: 0;
    text-shadow: 0 0 28px rgba(232,90,30,.45), 0 0 60px rgba(232,90,30,.15);
}
.pre__name-fa {
    font-family: var(--ff-ar); font-size: .75rem;
    color: var(--t-3); margin: 0;
}

.pre__bottom {
    display: flex; flex-direction: column; align-items: center; gap: .55rem;
    width: 230px;
}
.pre__counter {
    font-family: var(--ff-en), sans-serif;
    font-size: 2.2rem; font-weight: 900;
    color: var(--orange); line-height: 1;
    text-shadow: 0 0 20px rgba(232,90,30,.5);
}
.lang-fa .pre__counter { font-family: var(--ff-ar); }
.pre__pct-u { font-size: 1.1rem; margin-inline-start: .15rem; opacity: .75; }
.pre__bar {
    width: 100%; height: 2px;
    background: rgba(255,255,255,.07); border-radius: 9px; overflow: hidden;
}
.pre__fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, var(--orange), var(--gold), var(--cyan));
    border-radius: 9px;
    box-shadow: 0 0 8px rgba(232,90,30,.45);
    transition: width .25s linear;
}
.pre__msg {
    font-family: var(--ff-ar); direction: rtl;
    font-size: .7rem; color: var(--t-3);
    margin: 0; transition: opacity .3s ease;
}

/* ════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; inset-inline: 0; z-index: 900;
    height: var(--nav-h);
    background: transparent;
    transition: background .4s var(--ease), box-shadow .4s;
    border-bottom: 1px solid transparent;
}
.nav.stuck {
    background: rgba(3,8,16,.88);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-color: var(--b-1);
    box-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.nav__inner {
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
    display: flex; align-items: center; gap: .8rem;
    text-decoration: none; flex-shrink: 0;
}
.nav__logo img {
    width: 42px; height: 42px; object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(232,90,30,.4));
    transition: filter .3s;
}
.nav__logo:hover img { filter: drop-shadow(0 0 14px rgba(232,90,30,.8)); }
.nav__logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav__logo-title { font-size: 1.05rem; font-weight: 900; color: var(--t-1); line-height: 1; }
.nav__logo-sub   { font-size: .55rem; color: var(--t-3); letter-spacing: .12em; font-family: var(--ff-en); }

/* Links */
.nav__links { display: flex; gap: .15rem; align-items: center; }
.nav__links ul { display: flex; gap: .15rem; align-items: center; list-style: none; }
.nav__links a {
    position: relative; padding: .5rem .9rem;
    font-size: .85rem; font-weight: 700;
    color: rgba(242,245,255,.7); letter-spacing: .03em;
    transition: color .3s;
}
.nav__links a::after {
    content: ''; position: absolute; bottom: 0; right: 50%; left: 50%;
    height: 2px; background: var(--orange); border-radius: 9px;
    transition: right .3s var(--ease), left .3s var(--ease);
}
.nav__links a:hover, .nav__links .current-menu-item a { color: var(--t-1); }
.nav__links a:hover::after, .nav__links .current-menu-item a::after { right: .9rem; left: .9rem; }

.nav__cta {
    padding: .55rem 1.3rem; border: 1px solid var(--orange);
    border-radius: 100px; font-size: .82rem; font-weight: 700;
    color: var(--t-1); transition: background .3s, color .3s;
}
.nav__cta:hover { background: var(--orange); color: #fff; }
.nav__org-btn {
    display: inline-flex; align-items: center; gap: .45rem;
}
.nav__org-btn .org-lock { flex-shrink: 0; transition: transform .3s; }
.nav__org-btn:hover .org-lock { transform: rotate(-10deg) scale(1.1); }
.nav__org-btn.checking .org-spinner { display: inline-flex !important; }
.nav__org-btn.checking .org-lock   { display: none; }

/* Progress bar */
.nav__progress {
    position: absolute; bottom: -1px; right: 0; left: 0;
    height: 2px; background: var(--bg-3);
}
.nav__progress-fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    transition: width .1s linear;
}

/* Nav Actions */
.nav__actions { display: flex; align-items: center; gap: .75rem; }

/* Mobile Burger */
.nav__burger {
    display: none; flex-direction: column; gap: 5px;
    width: 32px; padding: 4px; z-index: 10;
}
.nav__burger span {
    display: block; height: 2px; background: var(--t-1); border-radius: 9px;
    transition: transform .35s var(--ease), opacity .35s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
    position: fixed; top: 0; right: 0;
    width: min(320px,90vw); height: 100vh;
    background: var(--bg-0); border-left: 1px solid var(--b-1);
    padding: 6rem 1.5rem 2rem;
    transform: translateX(100%); transition: transform .45s var(--ease-in-out);
    z-index: 800;
    display: flex; flex-direction: column; gap: .3rem;
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
.nav__mobile a {
    display: block;
    padding: 1rem .5rem; font-size: 1.2rem; font-weight: 700;
    color: var(--t-2); border-bottom: 1px solid var(--b-1);
    transition: color .25s, padding-right .25s;
}
.nav__mobile a:hover { color: var(--orange); padding-right: 1rem; }
.nav__backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.7);
    backdrop-filter: blur(6px); z-index: 750;
    opacity: 0; pointer-events: none; transition: opacity .35s;
}
.nav__backdrop.show { opacity: 1; pointer-events: all; }

/* Mobile CTA & phone */
.nav__mobile-cta {
    display: block; margin-top: 1.5rem;
    padding: .85rem 1.5rem; border-radius: 100px;
    background: linear-gradient(135deg, var(--orange), #c84a10);
    color: #fff; font-weight: 700; font-size: 1rem; text-align: center;
    transition: opacity .3s;
}
.nav__mobile-cta:hover { opacity: .85; }
.nav__mobile-phone {
    margin-top: auto; padding: 1rem .5rem;
    font-size: .9rem; color: var(--orange); display: block;
}

/* ════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--ff-ar); font-weight: 700;
    font-size: .92rem; letter-spacing: .04em;
    padding: .85rem 2rem; border-radius: 100px;
    transition: transform .3s var(--ease), box-shadow .3s;
    position: relative; overflow: hidden; white-space: nowrap;
}
.btn i {
    position: absolute; inset: 0; border-radius: inherit;
    background: rgba(255,255,255,.12);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s var(--ease);
}
.btn:hover i { transform: scaleX(1); }
.btn:hover { transform: translateY(-2px); }

.btn-o {
    background: linear-gradient(135deg, var(--orange), #c84a10);
    color: #fff;
    box-shadow: 0 4px 24px rgba(232,90,30,.35), 0 0 0 0 rgba(232,90,30,.3);
}
.btn-o:hover {
    box-shadow: 0 8px 32px rgba(232,90,30,.55), 0 0 0 6px rgba(232,90,30,.12);
}

.btn-ghost {
    background: transparent; color: var(--t-1);
    border: 1.5px solid rgba(242,245,255,.25);
}
.btn-ghost:hover {
    border-color: var(--orange); color: var(--orange);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn__arr { transition: transform .3s var(--ease); }
.btn:hover .btn__arr { transform: translateX(-4px); }

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
    position: relative; height: 100svh; min-height: 620px;
    display: flex; align-items: center; overflow: hidden;
    padding-top: var(--nav-h);
}
.hero__img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 30%;
    transform: scale(1.1);
    animation: kenBurns 22s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    from { transform: scale(1.1) translateY(0); }
    to   { transform: scale(1.0) translateY(-2%); }
}
.hero__dark {
    position: absolute; inset: 0;
    background: linear-gradient(
        145deg,
        rgba(3,8,16,.92) 0%,
        rgba(3,8,16,.75) 45%,
        rgba(3,8,16,.4) 100%
    );
}
.hero__vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 80% 50%, transparent 40%, rgba(3,8,16,.7) 100%);
}
.hero__canvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none;
}
.hero__wrap {
    position: relative; z-index: 2;
    padding-bottom: 4rem;
    max-width: 820px;
}
.hero__kicker {
    display: flex; align-items: center; gap: .6rem;
    font-size: .82rem; font-family: var(--ff-ar); font-weight: 700;
    color: var(--t-2); letter-spacing: .04em;
    margin-bottom: 1.5rem;
    animation: fadeUp .7s var(--ease) .1s both;
}
.kicker__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange); flex-shrink: 0;
    box-shadow: 0 0 8px var(--orange);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%,100% { box-shadow: 0 0 6px var(--orange); transform: scale(1); }
    50%      { box-shadow: 0 0 16px var(--orange); transform: scale(1.3); }
}
.hero__h1 {
    display: flex; flex-direction: column;
    font-size: clamp(3rem,9vw,7.5rem); font-weight: 900;
    line-height: 1.05; letter-spacing: -.02em;
    gap: .18em;
    margin-bottom: 1.8rem;
    padding-bottom: .14em;
}
.hero__h1-line {
    display: block;
    animation: clipUp .9s var(--ease-in-out) both;
}
.hero__h1-line:nth-child(1) { animation-delay: .35s; padding-bottom: .2em; }
.hero__h1-line:nth-child(2) { animation-delay: .55s; }
.hero__h1-line--accent { color: var(--orange); }
@keyframes clipUp {
    from { clip-path: inset(0 0 100% 0); }
    to   { clip-path: inset(0 0 0% 0); }
}
.hero__sub {
    font-size: clamp(1rem,1.8vw,1.2rem); color: rgba(242,245,255,.72);
    line-height: 1.75; max-width: 600px; margin-bottom: 2.5rem;
    animation: fadeUp .8s var(--ease) .8s both;
}
.hero__btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp .8s var(--ease) 1s both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero stats bar */
.hstats {
    position: absolute; bottom: 0; inset-inline: 0; z-index: 3;
    background: rgba(3,8,16,.7);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--b-1);
}
.hstats__row {
    display: grid; grid-template-columns: repeat(4,1fr); align-items: center;
    height: 90px;
}
.hstat {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .2rem; text-align: center;
}
.hstat b { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 900; color: var(--t-1); line-height: 1; }
.hstat sup, .hstat sub { font-size: .8rem; color: var(--orange); font-weight: 700; }
.hstat span { font-size: .7rem; color: var(--t-3); letter-spacing: .1em; }
.hstat__sep { width: 1px; height: 45px; background: var(--b-1); margin: auto; }

/* Scroll indicator */
.hero__scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%); z-index: 4;
    display: flex; align-items: center; justify-content: center;
    opacity: .6; transition: opacity .3s;
}
.hero__scroll:hover { opacity: 1; }
.scroll__m {
    width: 26px; height: 42px; border-radius: 14px;
    border: 1.5px solid rgba(255,255,255,.4);
    display: flex; justify-content: center; padding-top: 7px;
}
.scroll__w {
    width: 4px; height: 8px; border-radius: 9px; background: var(--orange);
    animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%,100% { transform: translateY(0); opacity: 1; }
    50%      { transform: translateY(12px); opacity: .3; }
}

/* ════════════════════════════════════════════════════
   AOS ANIMATIONS
════════════════════════════════════════════════════ */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ════════════════════════════════════════════════════
   SMART — AI SHOWCASE
════════════════════════════════════════════════════ */
.smart {
    background: var(--bg-0);
    padding: var(--sec) 0;
    position: relative;
    overflow: hidden;
}

/* Dot-grid background */
.smart__dots {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

/* Ambient glow */
.smart::before {
    content: '';
    position: absolute;
    top: -160px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(232,90,30,.07) 0%, transparent 65%);
    pointer-events: none;
}

/* Heading */
.smart__head { margin-bottom: 3.5rem; }
.smart__h2 {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 900; line-height: 1.1;
    margin: .5rem 0 1.2rem;
}
.smart__lead {
    font-size: 1rem; color: var(--t-2);
    max-width: 640px; margin: 0 auto; line-height: 1.85;
}

/* ── Feature cards ── */
.smart__cards {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1.5rem; margin-bottom: 1.5rem;
}
.scard {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--bg-1);
    border: 1px solid var(--b-1);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s;
}
.scard:hover {
    border-color: var(--b-2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 1px var(--b-2);
}

/* Corner glow */
.scard__glow {
    position: absolute; top: -50px; inset-inline-end: -50px;
    width: 180px; height: 180px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,90,30,.15), transparent 70%);
    opacity: 0; transition: opacity .5s;
    pointer-events: none;
}
.scard:hover .scard__glow { opacity: 1; }

/* Middle card highlight */
.scard--hi {
    background: linear-gradient(160deg, rgba(232,90,30,.08) 0%, var(--bg-1) 55%);
    border-color: rgba(232,90,30,.2);
}
.scard--hi .scard__icon {
    background: rgba(232,90,30,.18);
}

/* Icon */
.scard__icon {
    width: 54px; height: 54px; border-radius: 14px;
    background: rgba(232,90,30,.1);
    border: 1px solid var(--b-2);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange); margin-bottom: 1.5rem;
    transition: background .3s, box-shadow .3s;
}
.scard:hover .scard__icon {
    background: rgba(232,90,30,.18);
    box-shadow: 0 0 20px rgba(232,90,30,.2);
}

.scard__t { font-size: 1.1rem; font-weight: 800; color: var(--t-1); margin-bottom: .75rem; }
.scard__d { font-size: .87rem; color: var(--t-2); line-height: 1.8; margin-bottom: 1.5rem; }

/* KPI row */
.scard__kpi {
    display: flex; align-items: baseline; gap: .6rem;
    padding-top: 1.2rem; border-top: 1px solid var(--b-1);
}
.scard__kpi-n {
    font-size: 1.9rem; font-weight: 900; color: var(--t-1); line-height: 1;
}
.scard__kpi-u { font-size: 1rem; color: var(--orange); font-weight: 700; }
.scard__kpi-l { font-size: .78rem; color: var(--t-3); }

/* ── Live Dashboard ── */
.smart__dash {
    background: var(--bg-1);
    border: 1px solid var(--b-1);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.smart__dash-top {
    display: flex; align-items: center; justify-content: space-between;
    padding: .9rem 1.5rem;
    background: rgba(7,13,27,.7);
    border-bottom: 1px solid var(--b-1);
}
.smart__dash-status {
    display: flex; align-items: center; gap: .65rem;
    font-size: .82rem; font-weight: 700; color: var(--t-1);
}
.sdot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
    background: #00C853;
    box-shadow: 0 0 8px #00C853;
    animation: sdotPulse 1.6s ease-in-out infinite;
}
@keyframes sdotPulse {
    0%,100% { box-shadow: 0 0 6px #00C853; }
    50%      { box-shadow: 0 0 18px #00C853, 0 0 35px rgba(0,200,83,.25); }
}
.smart__dash-tag {
    font-size: .72rem; color: var(--cyan); letter-spacing: .1em;
    font-family: var(--ff-ar);
}
[dir="ltr"] .smart__dash-tag { font-family: var(--ff-en); }

/* Metric rows */
.smart__metrics {
    display: grid; grid-template-columns: repeat(2,1fr);
}
.smetric {
    display: grid; grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: .4rem .8rem;
    padding: 1.3rem 1.5rem;
    border-bottom: 1px solid var(--b-1);
    border-inline-start: 1px solid var(--b-1);
}
.smetric:nth-child(odd)  { border-inline-start: none; }
.smetric:nth-child(n+3)  { border-bottom: none; }

.smetric__l {
    font-size: .8rem; color: var(--t-2); font-weight: 600;
    grid-column: 1; grid-row: 1;
}
.smetric__v {
    font-size: .95rem; font-weight: 900; color: var(--t-1);
    grid-column: 2; grid-row: 1; text-align: end;
}
.smetric__bar {
    height: 5px; border-radius: 9px;
    background: var(--bg-3);
    overflow: hidden;
    grid-column: 1 / -1; grid-row: 2;
}
.smetric__fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, var(--c1, var(--orange)), var(--c2, var(--gold)));
    border-radius: 9px;
}
.smart__dash.aos-animate .smetric__fill {
    width: var(--w, 100%);
    transition: width 1.8s var(--ease-in-out) .35s;
}

/* ════════════════════════════════════════════════════
   ABOUT — CINEMATIC
════════════════════════════════════════════════════ */
.about {
    position: relative; min-height: 620px;
    display: flex; align-items: center;
    padding: var(--sec) 0;
    overflow: hidden;
}
.about__photo {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 20%;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.about:hover .about__photo { transform: scale(1.0); }
.about__photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to right,
        rgba(3,8,16,.2) 0%,
        rgba(3,8,16,.85) 45%,
        rgba(3,8,16,.98) 100%
    );
}
.about__body { position: relative; z-index: 2; display: flex; justify-content: flex-start; }
.about__box {
    background: rgba(7,13,27,.65);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--b-1); border-radius: var(--r-lg);
    padding: 3rem 2.5rem;
    max-width: 600px; width: 100%;
}
.about__rule {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    border-radius: 9px; margin: 1.5rem 0;
}
.about__p { color: var(--t-2); line-height: 1.8; margin-bottom: 1.2rem; font-size: .97rem; }
.about__nums {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1rem; margin: 2rem 0;
}
.anum { display: flex; flex-direction: column; align-items: center; text-align: center; }
.anum strong { font-size: 2rem; font-weight: 900; color: var(--t-1); line-height: 1; }
.anum sup { font-size: .7rem; color: var(--orange); vertical-align: super; }
.anum em { font-size: .7rem; color: var(--t-3); font-style: normal; margin-top: .2rem; }
.about__features { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.about__features li { display: flex; gap: .7rem; color: var(--t-2); font-size: .9rem; }
.about__features span { color: var(--orange); font-weight: 800; flex-shrink: 0; }

/* ════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════ */
.svcs {
    background: var(--bg-0);
    padding: var(--sec) 0;
    position: relative; overflow: hidden;
}
.svcs__grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 0; border: 1px solid var(--b-1); border-radius: var(--r-lg);
    overflow: hidden; margin-top: 3rem;
}
.svc {
    position: relative; padding: 2.5rem;
    border-right: 1px solid var(--b-1);
    border-bottom: 1px solid var(--b-1);
    background: var(--bg-0);
    transition: background .4s;
    overflow: hidden;
}
.svc:nth-child(3n) { border-right: none; }
.svc:nth-child(n+4) { border-bottom: none; }
.svc::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(232,90,30,.06), transparent);
    opacity: 0; transition: opacity .4s;
}
.svc:hover { background: var(--bg-2); }
.svc:hover::after { opacity: 1; }
.svc__n {
    font-family: var(--ff-en); font-size: 3.5rem; font-weight: 900;
    color: rgba(232,90,30,.12); line-height: 1;
    margin-bottom: .7rem; transition: color .4s;
}
.svc:hover .svc__n { color: rgba(232,90,30,.22); }
.svc__line {
    width: 36px; height: 2px;
    background: var(--orange); border-radius: 9px;
    margin-bottom: 1.2rem; transition: width .4s;
}
.svc:hover .svc__line { width: 56px; }
.svc__t { font-size: 1.1rem; font-weight: 800; color: var(--t-1); margin-bottom: .8rem; }
.svc__d { font-size: .85rem; color: var(--t-2); line-height: 1.75; }
.svc__arrow {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    color: var(--orange); font-size: 1.2rem;
    opacity: 0; transform: translate(-6px, 0);
    transition: opacity .3s, transform .3s;
}
.svc:hover .svc__arrow { opacity: 1; transform: translate(0, 0); }

/* ════════════════════════════════════════════════════
   GALLERY — EDITORIAL GRID
════════════════════════════════════════════════════ */
.gallery { background: var(--bg-1); padding: var(--sec) 0; }
.gallery__head { margin-bottom: 2.5rem; }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 260px;
    grid-auto-flow: dense;
    gap: 12px;
}
.gitem { overflow: hidden; border-radius: var(--r); position: relative; }
.gitem--tall { grid-row: span 2; }
.gitem--wide { grid-column: span 2; }
.gitem__img {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform .7s var(--ease), filter .5s;
    filter: brightness(.85) saturate(.8);
}
.gitem:hover .gitem__img {
    transform: scale(1.06);
    filter: brightness(.95) saturate(1);
}
.gitem__cap {
    position: absolute; bottom: 0; inset-inline: 0;
    padding: 1.2rem 1rem .9rem;
    background: linear-gradient(to top, rgba(3,8,16,.9), transparent);
    display: flex; align-items: center; justify-content: space-between;
    transform: translateY(100%); transition: transform .4s var(--ease);
}
.gitem:hover .gitem__cap { transform: translateY(0); }
.gitem__cap span { font-size: .82rem; font-weight: 700; color: var(--t-1); }
.gitem__cap svg { width: 18px; height: 18px; color: var(--orange); }

/* ════════════════════════════════════════════════════
   IMPACT — NUMBERS
════════════════════════════════════════════════════ */
.impact {
    position: relative; padding: var(--sec) 0; overflow: hidden;
}
.impact__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 40%;
    filter: brightness(.25) saturate(.5);
}
.impact__over {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(3,8,16,.97) 0%, rgba(0,91,112,.3) 100%);
}
.impact__body { position: relative; z-index: 2; text-align: center; }
.impact__grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 2px; margin-top: 3rem;
}
.icard {
    padding: 3rem 1.5rem; border: 1px solid var(--b-1);
    position: relative; transition: background .4s;
}
.icard:hover { background: rgba(232,90,30,.06); }
.icard::before {
    content: ''; position: absolute; bottom: 0; inset-inline: 30%;
    height: 2px; background: var(--orange);
    transform: scaleX(0); transition: transform .4s var(--ease);
}
.icard:hover::before { transform: scaleX(1); }
.icard__v {
    font-family: var(--ff-ar); font-size: clamp(2.2rem,4vw,3.2rem);
    font-weight: 900; color: var(--t-1); line-height: 1; margin-bottom: .6rem;
}
.icard__u { font-size: 1rem; color: var(--orange); font-weight: 700; }
.icard__l { font-size: .8rem; color: var(--t-3); letter-spacing: .08em; }

/* ════════════════════════════════════════════════════
   TECHNOLOGY TIMELINE
════════════════════════════════════════════════════ */
.tech { background: var(--bg-0); padding: var(--sec) 0; }
.tech__timeline {
    position: relative; margin-top: 3rem;
    padding-right: 2rem;
    border-right: 2px solid var(--b-1);
    display: flex; flex-direction: column; gap: 0;
}
.tlitem {
    position: relative; padding: 2rem 2rem 2rem 1rem;
    border-bottom: 1px solid var(--b-1);
    display: grid; grid-template-columns: 90px 1fr; gap: 2rem;
    align-items: start; transition: background .3s;
}
.tlitem:hover { background: var(--bg-2); }
.tlitem__dot {
    position: absolute; right: -9px; top: 2.2rem;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--dc, var(--orange));
    border: 3px solid var(--bg-0);
    box-shadow: 0 0 12px var(--dc, var(--orange));
}
.tlitem__yr {
    font-family: var(--ff-ar); font-size: 1.5rem; font-weight: 900;
    line-height: 1; display: block; margin-top: .25rem;
}
.tlitem__t { font-size: 1.05rem; font-weight: 800; color: var(--t-1); margin-bottom: .5rem; }
.tlitem__d { font-size: .87rem; color: var(--t-2); line-height: 1.7; }

/* ════════════════════════════════════════════════════
   TRUST / CERTS
════════════════════════════════════════════════════ */
.trust { background: var(--bg-1); padding: var(--sec) 0; }
.certs {
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
    margin: 2.5rem 0;
}
.cert {
    display: flex; flex-direction: column; align-items: center; gap: .6rem;
    padding: 1.5rem 2rem; border: 1px solid var(--b-1); border-radius: var(--r);
    min-width: 130px; background: var(--bg-2);
    transition: border-color .3s, background .3s, transform .3s;
}
.cert:hover {
    border-color: var(--cc, var(--orange));
    background: var(--bg-3); transform: translateY(-4px);
}
.cert svg { width: 36px; height: 36px; }
.cert strong { font-family: var(--ff-en); font-size: .9rem; font-weight: 800; color: var(--t-1); }
.cert em { font-size: .7rem; color: var(--t-3); font-style: normal; }

/* Marquee */
.marquee-wrap { overflow: hidden; padding: 1.5rem 0; border-top: 1px solid var(--b-1); margin-top: 2rem; }
.marquee {
    display: flex; gap: 0;
    animation: marqueeRTL 28s linear infinite;
    width: max-content;
}
@keyframes marqueeRTL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee span {
    padding: 0 2.5rem; font-size: .82rem; font-weight: 600;
    color: var(--t-3); white-space: nowrap; letter-spacing: .06em;
    border-right: 1px solid var(--b-1);
    transition: color .3s;
}
.marquee span:hover { color: var(--orange); }

/* ════════════════════════════════════════════════════
   CTA — FINAL FULL-BLEED
════════════════════════════════════════════════════ */
.cta {
    position: relative; padding: var(--sec) 0; overflow: hidden;
    min-height: 560px; display: flex; align-items: center;
}
.cta__img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 30%;
    filter: brightness(.3) saturate(.4);
}
.cta__dark {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(3,8,16,.95), rgba(0,91,112,.4) 100%);
}
.cta__noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    opacity: .4;
}
.cta__body {
    position: relative; z-index: 2; text-align: center;
    max-width: 800px; margin-inline: auto;
}
.cta__h2 {
    font-size: clamp(2.2rem,5.5vw,4.5rem); font-weight: 900;
    line-height: 1.1; margin-bottom: 1.5rem;
}
.cta__sub { font-size: 1.05rem; color: var(--t-2); line-height: 1.75; margin-bottom: 2.5rem; }
.cta__btns { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta__meta {
    display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap;
}
.cta__meta span {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .85rem; color: rgba(242,245,255,.88);
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11);
    border-radius: 100px; padding: .5rem 1.1rem;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer-accent { height: 3px; background: linear-gradient(90deg,var(--orange) 0%,var(--gold) 45%,var(--cyan) 100%); }
.site-footer { background: var(--bg-1); border-top: none; }
.footer-main { padding: 4.5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.9fr 1fr 1.3fr; gap: 3.5rem; }
.footer-logo {
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: 1.2rem;
}
.footer-logo img { width: 38px; height: 38px; object-fit: contain; }
.footer-tagline { font-size: .85rem; color: var(--t-3); line-height: 1.75; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; }
.social-link {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--b-1); display: flex; align-items: center; justify-content: center;
    color: var(--t-3); transition: color .3s, border-color .3s, background .3s;
}
.social-link:hover { color: var(--orange); border-color: var(--orange); background: rgba(232,90,30,.1); }

.footer-col-title {
    font-size: .8rem; font-family: var(--ff-ar); letter-spacing: .06em;
    color: var(--t-1); font-weight: 700;
    margin-bottom: 1.6rem; padding-bottom: .65rem;
    border-bottom: 1px solid var(--b-1); position: relative;
}
.footer-col-title::after {
    content: ''; position: absolute; bottom: -1px; right: 0;
    width: 28px; height: 2px; background: var(--orange); border-radius: 9px;
}
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a {
    font-size: .87rem; color: var(--t-3);
    transition: color .25s, padding-right .25s;
}
.footer-links a:hover { color: var(--t-1); padding-right: 6px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0; }
.footer-contact-list li {
    display: flex; align-items: flex-start; gap: .7rem;
    font-size: .85rem; color: var(--t-2);
    padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer-contact-list li:last-child { border-bottom: none; }
.fc-line { display: block; line-height: 1.6; }
.fc-zip  { display: block; font-size: .77rem; color: var(--t-3); margin-top: .2rem; font-style: italic; }
.footer-phones { display: flex; flex-direction: column; gap: .3rem; }
.footer-phones a, .footer-email {
    color: var(--t-2); transition: color .25s;
}
.footer-phones a:hover, .footer-email:hover { color: var(--orange); }

.footer-bottom {
    padding: 1.2rem 0;
    border-top: 1px solid var(--b-1);
    background: rgba(0,0,0,.25);
}
.footer-bottom-inner {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .78rem; color: var(--t-3); text-align: center; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: var(--t-3); transition: color .3s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ════════════════════════════════════════════════════
   SCROLL TOP BTN
════════════════════════════════════════════════════ */
.scroll-top {
    position: fixed; bottom: 2rem; inset-inline-end: 2rem;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--bg-3); border: 1px solid var(--b-1);
    display: flex; align-items: center; justify-content: center;
    color: var(--t-2); z-index: 800;
    opacity: 0; pointer-events: none;
    transform: translateY(20px);
    transition: opacity .35s, transform .35s, background .3s, color .3s;
}
.scroll-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .svcs__grid { grid-template-columns: repeat(2,1fr); }
    .svc:nth-child(3n) { border-right: 1px solid var(--b-1); }
    .svc:nth-child(2n) { border-right: none; }
    .svc:nth-child(n+5) { border-bottom: none; }
    .svc:nth-child(5) { border-bottom: 1px solid var(--b-1); }
    .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 220px 220px; }
    .impact__grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .smart__cards { grid-template-columns: repeat(3,1fr); gap: 1rem; }
}

@media (max-width: 768px) {
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .hero__h1 { font-size: clamp(2.8rem,10vw,4.5rem); }
    .about__photo-overlay {
        background: linear-gradient(to bottom, rgba(3,8,16,.4), rgba(3,8,16,.95));
    }
    .about__box { max-width: 100%; }
    .svcs__grid { grid-template-columns: 1fr; }
    .svc { border-right: none; }
    .svc:not(:last-child) { border-bottom: 1px solid var(--b-1); }
    .gallery__grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
    .gitem--tall, .gitem--wide { grid-row: span 1; grid-column: span 1; }
    .gitem { height: 220px; }
    .impact__grid { grid-template-columns: 1fr 1fr; }
    .tlitem { grid-template-columns: 70px 1fr; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cta__h2 { font-size: 2rem; }
    /* Smart section */
    .smart__cards { grid-template-columns: 1fr; }
    .scard--hi { order: -1; }
    .smart__metrics { grid-template-columns: 1fr; }
    .smetric { border-inline-start: none; }
    .smetric:nth-child(n+3) { border-bottom: 1px solid var(--b-1); }
    .smetric:last-child { border-bottom: none; }
    .smart__dash-status { font-size: .75rem; }
}

@media (max-width: 480px) {
    .hero__btns { flex-direction: column; align-items: flex-start; }
    .impact__grid { grid-template-columns: 1fr 1fr; }
    .certs { gap: .6rem; }
    .cert { min-width: 100px; padding: 1.2rem 1rem; }
    .cta__btns { flex-direction: column; align-items: center; }
    .smart__h2 { font-size: 1.9rem; }
    .scard { padding: 2rem 1.5rem; }
}


/* ════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
════════════════════════════════════════════════════════ */
.lang-sw {
    position: relative;
}

.lang-sw__btn {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .65rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    color: var(--text-2);
    font-family: var(--ff-ar);
    font-size: .78rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
    white-space: nowrap;
}
.lang-sw__btn:hover {
    background: rgba(232,90,30,.12);
    border-color: var(--orange);
    color: #fff;
}

.lang-sw__flag { font-size: 1.05rem; line-height: 1; }
.lang-sw__code { font-family: var(--ff-en); font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; }

.lang-sw__chev {
    transition: transform .2s;
}
.lang-sw__btn[aria-expanded="true"] .lang-sw__chev {
    transform: rotate(180deg);
}

.lang-sw__drop {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-start: 0;
    min-width: 150px;
    background: var(--bg-3);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: .4rem 0;
    list-style: none;
    margin: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 1000;
}
.lang-sw__drop.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-sw__drop li a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    color: var(--text-2);
    font-family: var(--ff-ar);
    font-size: .82rem;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.lang-sw__drop li a:hover,
.lang-sw__drop li.is-active a {
    background: rgba(232,90,30,.1);
    color: var(--orange);
}
.lang-sw__drop li.is-active a::after {
    content: '✓';
    margin-inline-start: auto;
    color: var(--orange);
    font-size: .7rem;
}


/* ════════════════════════════════════════════════════════
   LTR LAYOUT OVERRIDES  (EN · DE · FR)
   Strategy: override every physical left/right, gradient
   direction, font-family, and alignment that the base
   RTL stylesheet hardcodes.
════════════════════════════════════════════════════════ */

/* 1 · Core direction + body typography */
[dir="ltr"] body {
    direction: ltr;
    font-family: var(--ff-en), sans-serif;
}

/* 2 · Override elements that hard-code Far Yekan */
[dir="ltr"] .hero__kicker,
[dir="ltr"] .label-tag,
[dir="ltr"] .btn,
[dir="ltr"] .about__p,
[dir="ltr"] .footer-col-title,
[dir="ltr"] .footer-tagline,
[dir="ltr"] .footer-links a,
[dir="ltr"] .footer-contact-list li,
[dir="ltr"] .icard__v,
[dir="ltr"] .tlitem__yr,
[dir="ltr"] .svc__t,
[dir="ltr"] .svc__d,
[dir="ltr"] .scard__t,
[dir="ltr"] .scard__d,
[dir="ltr"] .scard__kpi-l,
[dir="ltr"] .smart__lead,
[dir="ltr"] .smart__dash-status,
[dir="ltr"] .smetric__l {
    font-family: var(--ff-en), sans-serif;
    letter-spacing: normal;
}

/* 3 · Nav — mobile drawer slides in from LEFT in LTR */
[dir="ltr"] .nav__mobile {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid var(--b-1);
    transform: translateX(-100%);
}
[dir="ltr"] .nav__mobile.open {
    transform: translateX(0);
}
[dir="ltr"] .nav__mobile a:hover {
    padding-right: .5rem;
    padding-left: 1rem;
}

/* 4 · Hero — vignette darkens LEFT side where content sits in LTR */
[dir="ltr"] .hero__vignette {
    background: radial-gradient(ellipse 80% 80% at 20% 50%, transparent 40%, rgba(3,8,16,.7) 100%);
}
[dir="ltr"] .hero__btns { justify-content: flex-start; }

/* Button arrow moves RIGHT on hover for LTR (→) */
[dir="ltr"] .btn:hover .btn__arr { transform: translateX(4px); }

/* 5 · About — text box on LEFT, overlay darkens LEFT side */
[dir="ltr"] .about__photo-overlay {
    background: linear-gradient(
        to left,
        rgba(3,8,16,.2)  0%,
        rgba(3,8,16,.85) 45%,
        rgba(3,8,16,.98) 100%
    );
}

/* 6 · Services — arrow indicator at bottom-RIGHT corner in LTR */
[dir="ltr"] .svc__arrow {
    left: auto;
    right: 1.5rem;
    transform: translate(6px, 0);
}
[dir="ltr"] .svc:hover .svc__arrow { transform: translate(0, 0); }

/* 7 · Technology timeline — vertical bar on LEFT in LTR */
[dir="ltr"] .tech__timeline {
    padding-right: 0;
    border-right: none;
    padding-left: 2rem;
    border-left: 2px solid var(--b-1);
}
[dir="ltr"] .tlitem { direction: ltr; }
[dir="ltr"] .tlitem__dot {
    right: auto;
    left: -9px;
}

/* 8 · Section headings — left-aligned for LTR */
[dir="ltr"] .section-top  { text-align: left; }
[dir="ltr"] .about__box .label-tag { display: inline-flex; }

/* Centred sections stay centred */
[dir="ltr"] .smart__head,
[dir="ltr"] .cta__body,
[dir="ltr"] .impact__body,
[dir="ltr"] .trust .section-top { text-align: center; }

/* 9 · Footer */
[dir="ltr"] .footer-grid          { direction: ltr; }
[dir="ltr"] .footer-contact-list  { direction: ltr; }
[dir="ltr"] .footer-links a:hover { padding-right: 0; padding-left: 6px; }
[dir="ltr"] .footer-bottom-inner  { flex-direction: row; }

/* 10 · Language switcher dropdown — right-aligned to button in LTR */
[dir="ltr"] .lang-sw__drop {
    inset-inline-start: auto;
    inset-inline-end: 0;
}

/* 12 · Small-screen tweaks */
@media (max-width: 480px) {
    [dir="ltr"] .hero__btns { flex-direction: column; align-items: flex-start; }
    [dir="ltr"] .cta__btns  { align-items: center; }
}


/* ════════════════════════════════════════════════════════
   STAFF PORTAL (ORG LOGIN)
════════════════════════════════════════════════════════ */
.footer-org-desc {
    font-size: .82rem;
    color: var(--t-3);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.footer-org-btn {
    display: flex;
    align-items: center;
    gap: .65rem;
    width: 100%;
    padding: .85rem 1.2rem;
    background: rgba(232,90,30,.08);
    border: 1px solid rgba(232,90,30,.25);
    border-radius: var(--r);
    color: var(--t-1);
    font-family: var(--ff-ar);
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .3s, border-color .3s, transform .25s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}
.footer-org-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(232,90,30,.12), transparent);
    opacity: 0; transition: opacity .3s;
}
.footer-org-btn:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,90,30,.2); }
.footer-org-btn:hover::before { opacity: 1; }
.footer-org-btn:disabled { opacity: .55; cursor: wait; transform: none; box-shadow: none; }

/* Lock icon */
.org-lock { color: var(--orange); flex-shrink: 0; transition: transform .3s; }
.footer-org-btn:hover .org-lock { transform: rotate(-15deg) scale(1.1); }

/* Loading spinner */
.org-spinner {
    width: 16px; height: 16px; flex-shrink: 0;
    border: 2px solid rgba(232,90,30,.25);
    border-top-color: var(--orange);
    border-radius: 50%;
    display: none;
    animation: orgSpin .7s linear infinite;
}
@keyframes orgSpin { to { transform: rotate(360deg); } }
.footer-org-btn.checking .org-spinner { display: block; }
.footer-org-btn.checking .org-lock    { display: none; }

/* LTR font override for the button */
[dir="ltr"] .footer-org-btn { font-family: var(--ff-en), sans-serif; }
[dir="ltr"] .nav__org-btn  { font-family: var(--ff-en), sans-serif; }
[dir="ltr"] .footer-col-title::after { right: auto; left: 0; }
[dir="ltr"] .footer-org-desc { font-family: var(--ff-en), sans-serif; }


/* ════════════════════════════════════════════════════════
   ORG LOGIN TOAST NOTIFICATION
════════════════════════════════════════════════════════ */
.org-toast {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    z-index: 9100;
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .95rem 1.5rem;
    background: var(--bg-3);
    border: 1px solid rgba(239,83,80,.3);
    border-inline-start: 3px solid #ef5350;
    border-radius: var(--r);
    color: var(--t-1);
    font-size: .9rem;
    font-family: var(--ff-ar);
    max-width: min(480px, 92vw);
    box-shadow: 0 12px 40px rgba(0,0,0,.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease), transform .35s var(--ease);
    white-space: normal;
    line-height: 1.55;
}
.org-toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
[dir="ltr"] .org-toast { font-family: var(--ff-en), sans-serif; }

@media (max-width: 600px) {
    .org-toast { bottom: 4.5rem; font-size: .82rem; padding: .8rem 1.1rem; }
}
