/* ========================================================
   Norton Polska Sp. z o.o. — Executive Design System v2
   Inspired by EY, PwC, Accenture, BCG
   Languages: PL / EN / DE / FR / AR (RTL) / ZH
   ======================================================== */

:root {
    /* Brand palette — Norton Polska logo */
    --brand-blue: #0E3A8A;
    --brand-blue-bright: #1B4DBA;
    --brand-blue-dark: #061f4f;
    --brand-blue-deepest: #030d24;
    --brand-black: #0B0B0E;
    --brand-silver: #9A9A9C;

    /* Accent palette */
    --gold: #c9a96e;
    --gold-dark: #a8884a;
    --gold-light: #e6c785;
    --gold-pale: #f4ead2;

    /* Surfaces */
    --bg: #ffffff;
    --bg-soft: #f4f7fc;
    --bg-soft-2: #ebf0f8;
    --bg-deep: #0a1424;
    --bg-deep-2: #122236;
    --bg-night: #030d24;

    /* Text */
    --text: #0f1620;
    --text-soft: #4a5566;
    --text-muted: #7b8694;
    --text-light: #a8b1bf;
    --text-on-dark: #e6ebf3;
    --text-on-dark-soft: rgba(230, 235, 243, 0.72);

    --border: #e1e6ee;
    --border-strong: #c8d0dc;
    --border-dark: rgba(255, 255, 255, 0.08);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(11, 20, 36, 0.04);
    --shadow-sm: 0 4px 12px rgba(11, 20, 36, 0.06);
    --shadow-md: 0 12px 32px rgba(11, 20, 36, 0.10);
    --shadow-lg: 0 24px 60px rgba(11, 20, 36, 0.14);
    --shadow-xl: 0 40px 100px rgba(11, 20, 36, 0.20);
    --shadow-blue: 0 24px 60px rgba(14, 58, 138, 0.30);
    --shadow-gold: 0 20px 40px rgba(201, 169, 110, 0.25);

    /* Layout */
    --max-w: 1280px;
    --max-w-narrow: 1080px;
    --gutter: 24px;
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 18px;
    --radius-xl: 28px;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-arabic: 'Tajawal', 'Cairo', -apple-system, sans-serif;

    /* Easings */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.65;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
    overflow-x: hidden;
}

body.rtl {
    font-family: var(--font-arabic);
    direction: rtl;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color 0.2s var(--ease-out);
}
a:hover { color: var(--brand-blue-bright); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.6em;
}
body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5 {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    letter-spacing: 0;
    line-height: 1.3;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { color: var(--text-soft); margin-bottom: 1em; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    color: var(--gold-dark);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}
body.rtl .eyebrow { letter-spacing: 1px; }
body.rtl .eyebrow::before { display: none; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.container-narrow {
    max-width: var(--max-w-narrow);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ========================================================
   HEADER + NAV
   ======================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.2s;
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    flex-shrink: 0;
}
.logo-link img.logo-img {
    height: 50px;
    width: auto;
    max-width: 220px;
    transition: transform 0.3s var(--ease-out);
    filter: drop-shadow(0 1px 2px rgba(11, 20, 36, 0.06));
}
.logo-link:hover img.logo-img { transform: translateY(-1px); }

.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.94rem;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s;
}
.main-nav a.active,
.main-nav a:hover {
    color: var(--brand-blue);
}
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}
body.rtl .main-nav a.active::after { left: auto; right: 0; }

.nav-cta {
    background: var(--brand-blue);
    color: #fff !important;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover {
    background: var(--brand-blue-bright);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--border);
    cursor: pointer;
    color: var(--brand-blue);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.menu-toggle:hover { background: var(--bg-soft); }
.menu-toggle svg { width: 20px; height: 20px; }

/* Lang switcher */
.lang-switcher {
    display: flex;
    gap: 2px;
    align-items: center;
    border-left: 1px solid var(--border);
    padding-left: 14px;
    margin-left: 6px;
    flex-wrap: wrap;
}
body.rtl .lang-switcher {
    border-left: none;
    border-right: 1px solid var(--border);
    padding-left: 0; padding-right: 14px;
    margin-left: 0; margin-right: 6px;
}

.lang-btn {
    background: transparent;
    border: 1.5px solid transparent;
    padding: 4px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.2s var(--ease-out);
    display: inline-grid;
    place-items: center;
    line-height: 0;
    opacity: 0.55;
}
.lang-btn img {
    width: 22px;
    height: 14px;
    border-radius: 2px;
    display: block;
}
.lang-btn:hover {
    opacity: 1;
    transform: translateY(-1px);
    background: var(--bg-soft);
}
.lang-btn.active {
    opacity: 1;
    border-color: var(--gold);
    background: var(--gold-pale);
}

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.25s var(--ease-out);
    font-family: var(--font-body);
    line-height: 1.2;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}
body.rtl .btn { font-family: 'Tajawal', 'Cairo', sans-serif; }

.btn::after {
    content: '→';
    transition: transform 0.25s var(--ease-out);
    font-weight: 400;
}
body.rtl .btn::after { content: '←'; }
.btn.no-arrow::after { display: none; }
.btn:hover::after { transform: translateX(4px); }
body.rtl .btn:hover::after { transform: translateX(-4px); }

.btn-primary {
    background: var(--gold);
    color: var(--brand-black);
}
.btn-primary:hover {
    background: var(--gold-light);
    color: var(--brand-black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--brand-blue);
    color: #fff;
}
.btn-blue:hover {
    background: var(--brand-blue-bright);
    color: #fff;
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    background: transparent;
}
.btn-outline:hover {
    background: #fff;
    color: var(--brand-blue);
    border-color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--brand-blue);
    border-color: var(--border-strong);
}
.btn-ghost:hover {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
}

.btn + .btn { margin-left: 12px; }
body.rtl .btn + .btn { margin-left: 0; margin-right: 12px; }

/* ========================================================
   HERO — full-bleed, dramatic, immersive (WOW)
   ======================================================== */
.hero {
    position: relative;
    background: #020817;
    color: #fff;
    overflow: hidden;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Full-bleed background image (world map) with Ken Burns zoom */
.hero-bg {
    position: absolute;
    inset: -3%;
    width: 106%;
    height: 106%;
    background-image: url('assets/hero-executive.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: kenBurns 32s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    0%   { transform: scale(1.0)  translate(0%, 0%); }
    100% { transform: scale(1.08) translate(-1.5%, -1%); }
}

/* Overlay gradient for text legibility */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(95deg, rgba(2, 8, 23, 0.88) 0%, rgba(2, 8, 23, 0.55) 35%, rgba(2, 8, 23, 0.25) 60%, rgba(2, 8, 23, 0.65) 100%),
        radial-gradient(ellipse at 25% 50%, rgba(0,0,0,0.55) 0%, transparent 65%);
}

/* Canvas particle network — floats above map, below content */
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.55;
    mix-blend-mode: screen;
}

/* Bottom gold accent line */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.45;
    z-index: 3;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero-grid {
    display: block;
}

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

.hero-illustration {
    display: none;
}

/* WOW typography — much bigger, dramatic */
.hero h1 {
    font-size: clamp(2.6rem, 6.5vw, 5.6rem);
    line-height: 1.02;
    margin-bottom: 32px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero h1 .accent {
    color: var(--gold-light);
    font-style: italic;
    font-weight: 600;
    text-shadow: 0 0 40px rgba(230, 199, 133, 0.45);
}

.hero p.lead {
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 44px;
    max-width: 600px;
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Entrance animations (WOW effect on load) */
.hero-tag, .hero h1, .hero p.lead, .hero-content > div:last-of-type {
    opacity: 0;
    animation-fill-mode: forwards;
}
.hero-tag      { animation: heroFadeUp 0.9s 0.20s var(--ease-out) forwards; }
.hero h1       { animation: heroFadeUp 1.1s 0.40s var(--ease-out) forwards; }
.hero p.lead   { animation: heroFadeUp 1.0s 0.75s var(--ease-out) forwards; }
.hero-content > div:last-of-type { animation: heroFadeUp 1.0s 1.05s var(--ease-out) forwards; }

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

@media (prefers-reduced-motion: reduce) {
    .hero-bg { animation: none; }
    .hero-tag, .hero h1, .hero p.lead, .hero-content > div:last-of-type {
        animation: none; opacity: 1;
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 20px;
    border: 1px solid rgba(201, 169, 110, 0.55);
    background: rgba(2, 8, 23, 0.55);
    color: var(--gold-light);
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 36px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.25);
    animation: pulse 2s var(--ease-in-out) infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(201, 169, 110, 0); }
}

.hero h1 {
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.05;
    font-weight: 700;
}
.hero h1 .accent {
    color: var(--gold-light);
    font-style: italic;
    font-weight: 600;
}
.hero h1 .accent-blue {
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.lead {
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-illustration {
    position: relative;
}
.hero-illustration img {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}
body.rtl .hero-illustration img { margin-left: 0; margin-right: auto; }

/* Hero KPI strip */
.hero-kpi-strip {
    background: rgba(3, 13, 36, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.hero-kpi {
    padding: 32px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: background 0.3s;
}
.hero-kpi:last-child { border-right: none; }
.hero-kpi:hover { background: rgba(255, 255, 255, 0.03); }
body.rtl .hero-kpi { border-right: none; border-left: 1px solid rgba(255, 255, 255, 0.08); }
body.rtl .hero-kpi:last-child { border-left: none; }

.hero-kpi-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.hero-kpi-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ========================================================
   SECTIONS
   ======================================================== */
section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }

.bg-soft { background: var(--bg-soft); }
.bg-soft-2 { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%); }
.bg-deep { background: var(--bg-deep); color: var(--text-on-dark); }
.bg-deep h1, .bg-deep h2, .bg-deep h3, .bg-deep h4 { color: #fff; }
.bg-deep p { color: var(--text-on-dark-soft); }

.bg-gradient-blue {
    background:
        radial-gradient(800px 400px at 80% 0%, rgba(201, 169, 110, 0.18) 0%, transparent 60%),
        linear-gradient(135deg, #030d24 0%, #061f4f 50%, #0E3A8A 100%);
    color: #fff;
}
.bg-gradient-blue h1, .bg-gradient-blue h2, .bg-gradient-blue h3 { color: #fff; }
.bg-gradient-blue p { color: rgba(255, 255, 255, 0.78); }

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}
.section-header.left {
    text-align: left;
    margin-left: 0;
}
body.rtl .section-header.left { text-align: right; margin-right: 0; margin-left: auto; }

.section-header h2 { margin-bottom: 18px; }
.section-header p { font-size: 1.06rem; line-height: 1.7; }

/* ========================================================
   SECTORS — image-card style (à la BCG)
   ======================================================== */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sector-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    position: relative;
    cursor: pointer;
}
.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.sector-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.sector-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.sector-card:hover .sector-img img { transform: scale(1.06); }
.sector-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 20, 36, 0.4) 100%);
}

.sector-content {
    padding: 28px 24px 30px;
    position: relative;
}
.sector-content::before {
    content: '';
    position: absolute;
    top: 0; left: 24px;
    width: 36px;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}
body.rtl .sector-content::before { left: auto; right: 24px; transform-origin: right; }
.sector-card:hover .sector-content::before { transform: scaleX(1); }

.sector-card h3 { margin-bottom: 10px; color: var(--brand-blue); font-size: 1.25rem; font-family: var(--font-display); }
.sector-card p { font-size: 0.94rem; margin: 0; line-height: 1.6; color: var(--text-soft); }

/* ========================================================
   PILLARS — premium dark cards
   ======================================================== */
.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.pillar {
    background: linear-gradient(135deg, #0E3A8A 0%, #061f4f 50%, #122236 100%);
    color: #fff;
    padding: 60px 52px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    isolation: isolate;
}
.pillar.gold {
    background: linear-gradient(135deg, #2a2014 0%, #4a3a20 40%, #6b5a35 80%, #4a3a20 100%);
}
.pillar:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
}
.pillar.gold:hover { box-shadow: var(--shadow-gold); }

.pillar::before {
    content: '';
    position: absolute;
    top: -30%; right: -15%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.20) 0%, transparent 60%);
    z-index: -1;
}
body.rtl .pillar::before { right: auto; left: -15%; }

.pillar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.pillar:hover::after { opacity: 1; }

.pillar-icon {
    width: 72px;
    height: 72px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    margin-bottom: 32px;
    color: var(--gold-light);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.04);
}
.pillar-icon svg { width: 36px; height: 36px; }

.pillar h3 {
    color: #fff;
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    margin-bottom: 16px;
    line-height: 1.2;
}
.pillar p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 1.02rem;
}
.pillar-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light) !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(230, 199, 133, 0.4);
    padding-bottom: 6px;
    transition: all 0.25s;
}
.pillar-cta:hover { color: #fff !important; border-color: #fff; }
.pillar-cta::after { content: '→'; transition: transform 0.2s; }
.pillar-cta:hover::after { transform: translateX(4px); }
body.rtl .pillar-cta::after { content: '←'; }
body.rtl .pillar-cta:hover::after { transform: translateX(-4px); }

/* ========================================================
   PROCESS / TIMELINE
   ======================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 80px;
    right: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}
.process-step {
    text-align: center;
    position: relative;
    padding: 0 12px;
}
.process-num {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gold);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--brand-blue);
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.3s var(--ease-out);
}
.process-step:hover .process-num {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
    transform: scale(1.05);
}
.process-step h3 { margin-bottom: 8px; font-size: 1.1rem; color: var(--brand-blue); }
.process-step p { font-size: 0.92rem; margin: 0; color: var(--text-soft); }

/* ========================================================
   EXEC SERVICE GRID (20 services)
   ======================================================== */
.exec-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 22px;
}

.exec-service {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    position: relative;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
    overflow: hidden;
}
.exec-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue);
}
.exec-service::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s var(--ease-out);
}
body.rtl .exec-service::before { left: auto; right: 0; }
.exec-service:hover::before { transform: scaleY(1); }

.exec-service-num {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--gold-dark);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
    opacity: 0.6;
}
.exec-service h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 10px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}
.exec-service p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
}

/* category accents */
.exec-service[data-cat="strategy"]::before { background: linear-gradient(180deg, #c9a96e, #a8884a); }
.exec-service[data-cat="security"]::before { background: linear-gradient(180deg, #d35d5d, #a04848); }
.exec-service[data-cat="ops"]::before { background: linear-gradient(180deg, #5d8dd3, #3a6cb0); }
.exec-service[data-cat="data"]::before { background: linear-gradient(180deg, #5dbe9e, #3a9978); }
.exec-service[data-cat="valuation"]::before { background: linear-gradient(180deg, #c9a96e, #a8884a); }
.exec-service[data-cat="funding"]::before { background: linear-gradient(180deg, #5dbe9e, #3a9978); }
.exec-service[data-cat="restruct"]::before { background: linear-gradient(180deg, #d35d5d, #a04848); }
.exec-service[data-cat="advisory"]::before { background: linear-gradient(180deg, #5d8dd3, #3a6cb0); }

.domain-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    color: var(--brand-blue);
    margin: 60px 0 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.domain-title::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--gold);
}
body.rtl .domain-title { flex-direction: row-reverse; }

/* ========================================================
   GLOBAL PRESENCE SECTION
   ======================================================== */
.global-section {
    background: var(--bg-deep);
    color: #fff;
    overflow: hidden;
    position: relative;
}
.global-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 400px at 50% 50%, rgba(27, 77, 186, 0.25) 0%, transparent 60%);
    pointer-events: none;
}
.global-section h2 { color: #fff; }
.global-section p { color: rgba(255, 255, 255, 0.78); }

.global-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 32px;
}
.global-stat {
    border-left: 2px solid var(--gold);
    padding-left: 18px;
}
body.rtl .global-stat { border-left: none; border-right: 2px solid var(--gold); padding-left: 0; padding-right: 18px; }

.global-stat-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.global-stat-label {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.world-map-wrapper {
    position: relative;
}
.world-map-wrapper img {
    width: 100%;
    filter: drop-shadow(0 10px 40px rgba(27, 77, 186, 0.4));
}

/* ========================================================
   ABOUT (two-col)
   ======================================================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-blue);
}
.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(201, 169, 110, 0.25) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(27, 77, 186, 0.45) 0%, transparent 55%);
}
.about-visual::after {
    content: '';
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.about-visual img.about-logo {
    position: relative;
    width: 80%;
    max-width: 480px;
    z-index: 1;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.8vw, 2.6rem);
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ========================================================
   CTA BANNER
   ======================================================== */
.cta-banner {
    background:
        radial-gradient(1000px 400px at 80% 50%, rgba(201, 169, 110, 0.22) 0%, transparent 60%),
        linear-gradient(135deg, #030d24 0%, #061f4f 50%, #0E3A8A 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%; left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
}
.cta-banner h2 { color: #fff; margin-bottom: 18px; }
.cta-banner p { color: rgba(255, 255, 255, 0.78); max-width: 600px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ========================================================
   PAGE HEADER
   ======================================================== */
.page-header {
    background:
        radial-gradient(1000px 400px at 90% 0%, rgba(201, 169, 110, 0.18) 0%, transparent 60%),
        linear-gradient(135deg, #030d24 0%, #061f4f 50%, #0E3A8A 100%);
    color: #fff;
    padding: 130px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}
.page-header h1 { color: #fff; margin-bottom: 14px; }
.page-header p.subtitle {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    max-width: 660px;
    margin: 0 auto 22px;
    line-height: 1.65;
}
.page-header .breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.page-header .breadcrumb a { color: var(--gold-light); }

/* ========================================================
   VALUES grid
   ======================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.value-card {
    text-align: center;
    padding: 48px 32px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.value-card:hover::before { transform: scaleX(1); }

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow-gold);
}
.value-icon svg { width: 32px; height: 32px; }

.value-card h3 { margin-bottom: 12px; color: var(--brand-blue); }
.value-card p { color: var(--text-soft); }

/* ========================================================
   REGISTRY
   ======================================================== */
.registry {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}
.registry::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
}
.registry h3 {
    margin-bottom: 32px;
    color: var(--brand-blue);
    font-family: var(--font-display);
}
.registry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.registry-item .label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}
.registry-item .value {
    font-weight: 600;
    color: var(--text);
    font-size: 0.98rem;
}

.registry-court {
    grid-column: 1 / -1;
    padding: 18px 22px;
    background: #fff;
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    margin-top: 16px;
}
body.rtl .registry-court { border-left: none; border-right: 3px solid var(--gold); }

/* ========================================================
   CONTACT
   ======================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info-card {
    background: linear-gradient(135deg, #0E3A8A 0%, #061f4f 100%);
    color: #fff;
    padding: 48px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.2) 0%, transparent 60%);
}
body.rtl .contact-info-card::before { right: auto; left: -30%; }

.contact-info-card h3 {
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-size: 1.45rem;
}

.info-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
}
.info-row:last-child { border-bottom: none; }

.info-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-sm);
    color: var(--gold-light);
}
.info-icon svg { width: 18px; height: 18px; }

.info-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    margin-bottom: 4px;
}
.info-value {
    color: #fff;
    font-weight: 500;
    font-size: 0.96rem;
    line-height: 1.5;
}
.info-value a { color: #fff; }
.info-value a:hover { color: var(--gold-light); }

.contact-form {
    background: #fff;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}
.contact-form h3 {
    margin-bottom: 30px;
    color: var(--brand-blue);
    font-family: var(--font-display);
    font-size: 1.45rem;
}

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

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg-soft);
    transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(14, 58, 138, 0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 14px;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    background: var(--brand-blue);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    font-family: inherit;
    letter-spacing: 0.3px;
}
.btn-submit:hover {
    background: var(--brand-blue-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* ========================================================
   GENERATIVE PATTERNS (procedural decorative SVG)
   ======================================================== */
.generative-strip {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(244, 234, 210, 0.4), transparent);
}
.generative-strip svg,
.generative-strip canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.generative-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
    mix-blend-mode: screen;
}
.generative-bg svg,
.generative-bg canvas {
    width: 100%;
    height: 100%;
}

/* Form success state */
.form-success {
    background: #fff;
    padding: 56px 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: successFadeIn 0.4s var(--ease-out);
}
@keyframes successFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5dbe9e, #3a9978);
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 12px 30px rgba(58, 153, 120, 0.3);
}
.form-success-icon svg { width: 40px; height: 40px; }
.form-success h3 {
    margin-bottom: 14px;
    color: var(--brand-blue);
    font-family: var(--font-display);
    font-size: 1.4rem;
}
.form-success p {
    color: var(--text-soft);
    margin-bottom: 16px;
    line-height: 1.65;
}
.form-success-fallback {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.92rem;
}
.form-success-back {
    margin-top: 28px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-soft);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
}
.form-success-back:hover {
    background: var(--bg-soft);
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-top: 24px;
}
.map-container iframe {
    width: 100%;
    height: 480px;
    border: 0;
    display: block;
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
    background: var(--bg-night);
    color: rgba(255, 255, 255, 0.72);
    padding: 80px 0 28px;
    font-size: 0.92rem;
    border-top: 4px solid var(--gold);
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
    transform: translateY(-2px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

.site-footer h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
    font-weight: 600;
}

.site-footer a, .site-footer .footer-line {
    color: rgba(255, 255, 255, 0.65);
    display: block;
    padding: 5px 0;
    font-size: 0.91rem;
    transition: color 0.2s;
}
.site-footer a:hover { color: var(--gold-light); }

.footer-brand img.footer-logo {
    height: 70px;
    width: auto;
    max-width: 280px;
    margin-bottom: 22px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.65;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================================
   SCROLL REVEAL
   ======================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-tag::before { animation: none; }
}

/* ========================================================
   RESPONSIVE — Mobile-first refinements
   ======================================================== */
@media (max-width: 1100px) {
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .global-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .process-grid::before { display: none; }
    .two-col { gap: 50px; }
}

@media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .pillars { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-kpi { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .hero-kpi:nth-child(2) { border-right: none; }
    body.rtl .hero-kpi:nth-child(2) { border-left: none; border-right: 1px solid rgba(255,255,255,0.08); }
    .values-grid { grid-template-columns: 1fr; }
    .global-stats { grid-template-columns: 1fr; }
    .pillar { padding: 48px 36px; }
    .registry { padding: 36px 28px; }
}

@media (max-width: 720px) {
    :root { --gutter: 18px; }

    .site-header .container { padding-top: 12px; padding-bottom: 12px; }
    .logo-link img.logo-img { height: 40px; max-width: 170px; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 18px 24px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .main-nav.is-open { display: flex; }
    .main-nav a {
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
    }
    .main-nav a:last-of-type { border-bottom: none; }
    .nav-cta { margin-top: 8px; text-align: center; }
    .menu-toggle { display: grid; place-items: center; }
    .lang-switcher {
        border: none !important;
        padding: 14px 0 0 !important;
        margin: 0 !important;
        justify-content: flex-start;
        gap: 6px !important;
    }
    .lang-btn {
        padding: 6px !important;
        border: 1.5px solid var(--border) !important;
    }
    .lang-btn img {
        width: 28px !important;
        height: 18px !important;
    }
    .lang-btn.active {
        border-color: var(--gold) !important;
        background: var(--gold-pale) !important;
    }

    .hero { min-height: 92vh; }
    .hero .container { padding-top: 24px; padding-bottom: 50px; }
    .hero h1 { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 22px; }
    .hero p.lead { font-size: 1rem; margin-bottom: 32px; }
    .hero-tag { font-size: 0.72rem; padding: 7px 16px; margin-bottom: 24px; letter-spacing: 1.8px; }
    .hero-bg { background-position: 60% center; }
    .hero-bg::after {
        background:
            linear-gradient(180deg, rgba(2,8,23,0.92) 0%, rgba(2,8,23,0.55) 30%, rgba(2,8,23,0.55) 70%, rgba(2,8,23,0.92) 100%);
    }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-info-card, .contact-form { padding: 28px 24px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .btn { padding: 14px 24px; font-size: 0.92rem; }
    .btn + .btn { margin-left: 0; margin-top: 12px; display: flex; justify-content: center; width: 100%; }
    body.rtl .btn + .btn { margin-right: 0; }

    .pillar { padding: 36px 24px; }
    .sectors-grid { grid-template-columns: 1fr; gap: 16px; }
    .process-grid { grid-template-columns: 1fr; gap: 28px; }
    section { padding: 60px 0; }
    .section-header { margin-bottom: 44px; }
    .map-container iframe { height: 360px; }
    .registry-grid { grid-template-columns: 1fr; gap: 18px; }

    .hero-kpi { padding: 22px 16px; }
    .hero-kpi-num { font-size: 1.7rem; }
    .hero-kpi-label { font-size: 0.7rem; letter-spacing: 1px; }
}

/* ========================================================
   RTL fine tuning
   ======================================================== */
body.rtl .info-row { flex-direction: row-reverse; }
body.rtl .info-label,
body.rtl .info-value { text-align: right; }
body.rtl .breadcrumb { direction: rtl; }
body.rtl .nav-cta { font-family: 'Tajawal', 'Cairo', sans-serif; }
body.rtl .hero-illustration img { transform: scaleX(-1); }

/* Print */
@media print {
    .site-header, .site-footer, .cta-banner, .map-container, .menu-toggle, .lang-switcher { display: none; }
    .hero { background: #fff; color: #000; }
    .hero h1, .pillar h3 { color: #000; }
}
