/* ==========================================================================
   FAWRN HOLDING - STYLES.CSS
   ========================================================================== */

:root {
    --color-navy: #051c2c;
    --color-navy-dark: #03121e;
    --color-navy-light: #0d2a3f;
    --color-teal: #058aa0;
    --color-soft-teal: #48b4a9;
    --color-gold: #e4da91;
    --color-gold-dark: #c5b870;
    --color-black: #0a0f14;
    --color-smoky-black: #150f09;
    --color-grey: #e8e8e8;
    --color-grey-dark: #a0aec0;
    --color-grey-light: #f7fafc;
    --color-white: #ffffff;
    --color-fawrn-red: #660000;
    --color-fawrn-red-deep: #4a0000;
    --font-ar: 'Readex Pro', sans-serif;
    --font-en: 'DM Sans', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    --box-shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.3);
    --box-shadow-glow: 0 0 30px rgba(5, 138, 160, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-bg-strong: rgba(255, 255, 255, 0.11);
    --glass-border: rgba(255, 255, 255, 0.16);
    --glass-blur: blur(22px);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    --hero-partners-height: 72px;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { background-color: var(--color-black); color: var(--color-white); overflow-x: hidden; }
html[lang="ar"] { font-family: var(--font-ar); }
html[lang="en"] { font-family: var(--font-en); }
html[lang="ar"],
html[dir="rtl"] {
    font-feature-settings: "liga" 1, "calt" 1;
    font-variant-ligatures: common-ligatures contextual;
    text-rendering: optimizeLegibility;
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
    letter-spacing: 0;
}
html[lang="ar"] .sub-title,
html[lang="ar"] .brands-subtitle,
html[dir="rtl"] .sub-title,
html[dir="rtl"] .brands-subtitle {
    text-transform: none;
    letter-spacing: 0;
}
html[lang="ar"] .hero-badge,
html[lang="ar"] .scroll-indicator span,
html[lang="ar"] .platform-hero-title,
html[lang="ar"] .ceo-showcase .founder-role,
html[dir="rtl"] .hero-badge,
html[dir="rtl"] .scroll-indicator span,
html[dir="rtl"] .platform-hero-title,
html[dir="rtl"] .ceo-showcase .founder-role {
    letter-spacing: 0;
    text-transform: none;
}
html[lang="ar"] .reveal-text,
html[dir="rtl"] .reveal-text {
    display: inline;
    letter-spacing: 0;
}
html[lang="ar"] .ar-text-unit,
html[dir="rtl"] .ar-text-unit {
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 0;
    margin-inline: 0;
    unicode-bidi: isolate;
    -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; background-color: var(--color-black); line-height: 1.6; -webkit-font-smoothing: antialiased; }
#smooth-wrapper { overflow: hidden; }
#smooth-content { overflow: visible; will-change: transform; }
::selection { background-color: var(--color-teal); color: var(--color-white); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-black); }
::-webkit-scrollbar-thumb { background: var(--color-navy-light); border-radius: var(--border-radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--color-teal); }
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.3; letter-spacing: -0.02em; }
p { font-weight: 300; color: var(--color-grey-dark); }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; }

/* Cursor */
@media (hover: hover) and (pointer: fine) {
    html:not(.native-scroll-cursor),
    html:not(.native-scroll-cursor) body,
    html:not(.native-scroll-cursor) a,
    html:not(.native-scroll-cursor) button,
    html:not(.native-scroll-cursor) .btn,
    html:not(.native-scroll-cursor) select,
    html:not(.native-scroll-cursor) input,
    html:not(.native-scroll-cursor) textarea,
    html:not(.native-scroll-cursor) label,
    html:not(.native-scroll-cursor) summary {
        cursor: none;
    }

    html.native-scroll-cursor,
    html.native-scroll-cursor body,
    html.native-scroll-cursor a,
    html.native-scroll-cursor button,
    html.native-scroll-cursor .btn,
    html.native-scroll-cursor select,
    html.native-scroll-cursor input,
    html.native-scroll-cursor textarea,
    html.native-scroll-cursor label,
    html.native-scroll-cursor summary {
        cursor: url('cursor.svg') 10 6, auto;
    }
}

.custom-cursor {
    width: 38px;
    height: 38px;
    position: fixed;
    top: 0;
    left: 0;
    direction: ltr;
    pointer-events: none;
    z-index: 9999;
    background: url('cursor.svg') no-repeat center / contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
    transform-origin: 28% 18%;
    opacity: 1;
    will-change: transform, opacity;
    transition: filter 0.25s ease, opacity 0.12s ease;
}
.custom-cursor.hover {
    filter: none;
}
.custom-cursor.native-hidden {
    opacity: 0;
}

@media (hover: none), (pointer: coarse) {
    .custom-cursor {
        display: none;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-black);
    perspective: 1500px;
}
.wallet-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transform-style: preserve-3d;
}
.wallet-flap {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, #051c2c 0%, var(--color-navy-dark) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    overflow: visible;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}
.left-flap {
    left: 0;
    transform-origin: left center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2;
}
.right-flap {
    right: 0;
    transform-origin: right center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}
.wallet-stitching {
    position: absolute;
    pointer-events: none;
}
.left-flap .wallet-stitching {
    inset: 16px;
    border: 1.5px dashed rgba(228, 218, 145, 0.25);
    border-radius: 16px;
}
.right-flap .wallet-stitching {
    inset: 16px;
    border: 1.5px dashed rgba(228, 218, 145, 0.25);
    border-radius: 16px;
}
.wallet-inner-shadow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.left-flap .wallet-inner-shadow {
    box-shadow: inset -30px 0 60px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(0, 0, 0, 0.5);
}
.right-flap .wallet-inner-shadow {
    box-shadow: inset 30px 0 60px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(0, 0, 0, 0.5);
}
.wallet-center {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transform-style: preserve-3d;
    overflow: visible;
}
.wallet-pocket {
    position: absolute;
    top: 50%;
    width: 330px;
    height: 212px;
    background: linear-gradient(135deg, #051a2a 0%, #020f1a 100%);
    border-radius: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    z-index: 5;
    transform: translateY(-50%);
}
.left-pocket {
    right: 160px;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
.left-pocket::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1.5px dashed rgba(228, 218, 145, 0.25);
    border-right: none;
    border-radius: 12px;
    pointer-events: none;
}
.wallet-clasp {
    position: relative;
    width: 320px;
    height: 202px;
    border-radius: 20px;
    background: linear-gradient(135deg, #058aa0 0%, #2d9a9e 35%, #8fb88a 68%, #e4da91 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.credit-card-pattern {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(ellipse 120% 80% at 100% 0%, rgba(255, 255, 255, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 80% 60% at 0% 100%, rgba(0, 0, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.credit-card-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        115deg,
        transparent 38%,
        rgba(255, 255, 255, 0.06) 44%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0.06) 56%,
        transparent 62%
    );
    pointer-events: none;
}
.credit-card-chip {
    position: absolute;
    top: 32px;
    left: 28px;
    width: 46px;
    height: 36px;
    border-radius: 7px;
    background: linear-gradient(145deg, #c9a84c 0%, #f0e4a8 45%, #b8942e 100%);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5), inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 0 8px;
    z-index: 1;
}
.credit-card-chip-line {
    display: block;
    height: 2px;
    border-radius: 1px;
    background: rgba(80, 60, 20, 0.35);
}
.credit-card-chip-line:nth-child(1) { width: 100%; }
.credit-card-chip-line:nth-child(2) { width: 75%; }
.credit-card-chip-line:nth-child(3) { width: 55%; }
.credit-card-contactless {
    position: absolute;
    top: 30px;
    right: 24px;
    width: 34px;
    height: 34px;
    transform: rotate(90deg);
    z-index: 3;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
.contactless-loader {
    width: 100%;
    height: 100%;
    overflow: visible;
    color: rgba(255, 255, 255, 0.9);
}
.contactless-dot {
    fill: currentColor;
    opacity: 0.25;
    transition: opacity 0.35s ease;
}
.contactless-wave {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    opacity: 0.2;
    transition: opacity 0.35s ease;
}
.wallet-center.loaded .contactless-dot,
.wallet-center.loaded .contactless-wave {
    opacity: 1;
}
.wallet-center.loaded .contactless-loader {
    animation: contactlessEmit 1.4s ease-in-out infinite;
}
@keyframes contactlessEmit {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}
.preloader-logo-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: block;
    max-width: 150px;
    max-height: 78px;
    width: auto;
    height: auto;
    opacity: 1;
    filter: none;
}
/* Loaded State Styles */
.wallet-center.loaded .wallet-clasp {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.overflow-hidden { overflow: hidden; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; font-size: 0.95rem; font-weight: 500; border-radius: var(--border-radius-full); cursor: pointer; transition: var(--transition-smooth); border: none; }
html[lang="ar"] .btn { font-family: var(--font-ar); }
html[lang="en"] .btn { font-family: var(--font-en); }
.btn-primary { background-color: var(--color-teal); color: var(--color-white); border: 1px solid var(--color-teal); box-shadow: var(--box-shadow-glow); }
.btn-primary:hover { background-color: var(--color-soft-teal); border-color: var(--color-soft-teal); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(5,138,160,0.4); }
.btn-outline { background-color: transparent; color: var(--color-white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background-color: var(--color-white); color: var(--color-black); border-color: var(--color-white); transform: translateY(-3px); }
.btn-block { display: flex; width: 100%; }

/* Header CTA — flat */
.site-header .btn-primary.btn-header {
    background-color: var(--color-teal);
    color: var(--color-white);
    border: 1px solid var(--color-teal);
    box-shadow: var(--box-shadow-glow);
    transform: none;
    transition: var(--transition-smooth);
}
.site-header .btn-primary.btn-header:hover {
    background-color: var(--color-soft-teal);
    border-color: var(--color-soft-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(5, 138, 160, 0.4);
}
body.b2b-page .site-header .btn-primary.btn-header {
    background-color: #233269;
    border: 1px solid #233269;
    box-shadow: none;
    transform: none;
    transition: var(--transition-smooth);
}
body.b2b-page .site-header .btn-primary.btn-header:hover {
    background-color: #31457f;
    border-color: #31457f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(35, 50, 105, 0.35);
}

/* 3D Buttons — B2B page CTA */
body.b2b-page .b2b-content .btn-primary {
    position: relative;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.2s ease, color 0.2s ease;
}
.hero-ctas .btn-primary {
    background-color: var(--color-teal);
    color: var(--color-white);
    border: 1px solid var(--color-teal);
    box-shadow: var(--box-shadow-glow);
    transform: none;
    transition: var(--transition-smooth);
}
.hero-ctas .btn-primary:hover {
    background-color: var(--color-soft-teal);
    border-color: var(--color-soft-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(5, 138, 160, 0.4);
}
.hero-ctas .btn-outline {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--color-white);
    box-shadow: none;
    transform: none;
    transition: var(--transition-smooth);
}
.hero-ctas .btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: none;
}
body.b2b-page .b2b-content .btn-primary {
    background: linear-gradient(180deg, #31457f 0%, #233269 52%, #1a2754 100%);
    color: var(--color-white);
    box-shadow:
        0 6px 0 #121c3d,
        0 12px 28px rgba(18, 28, 61, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
body.b2b-page .b2b-content .btn-primary:hover {
    background: linear-gradient(180deg, #3a508f 0%, #283a75 52%, #1f2f60 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 #121c3d,
        0 16px 32px rgba(18, 28, 61, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
body.b2b-page .b2b-content .btn-primary:active {
    transform: translateY(5px);
    box-shadow:
        0 1px 0 #121c3d,
        0 4px 14px rgba(18, 28, 61, 0.32),
        inset 0 2px 6px rgba(0, 0, 0, 0.22);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1400px;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-smooth);
    background: rgba(5, 28, 44, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.site-header.scrolled {
    padding: 10px 0;
    background: rgba(5, 28, 44, 0.55);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.header-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}
.logo-img {
    display: block;
    height: clamp(34px, 4.5vw, 44px);
    width: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
}
.site-header.scrolled .logo-img {
    height: clamp(30px, 4vw, 38px);
}
.nav-menu ul { display: flex; list-style: none; gap: 10px; align-items: center; }
.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    position: relative;
    padding: 9px 15px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.16s ease,
        transform 0.12s ease,
        text-shadow 0.22s ease;
    -webkit-tap-highlight-color: transparent;
}
.nav-link::after { display: none; }
.nav-link:hover {
    color: var(--color-white);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 4px 10px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.14);
    transform: translateY(-1px);
}
.nav-link:active {
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.22);
    transform: translateY(2px) scale(0.98);
    box-shadow:
        inset 0 3px 7px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition-duration: 0.08s;
}
.nav-link.active,
.nav-link.active-page {
    color: var(--color-white);
    background: linear-gradient(180deg, rgba(5, 138, 160, 0.38) 0%, rgba(5, 138, 160, 0.16) 100%);
    border-color: rgba(72, 180, 169, 0.38);
    transform: translateY(1px);
    box-shadow:
        inset 0 3px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 1px 0 rgba(72, 180, 169, 0.28);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.nav-link.active:hover,
.nav-link.active-page:hover {
    color: var(--color-white);
    transform: translateY(1px);
    background: linear-gradient(180deg, rgba(5, 138, 160, 0.42) 0%, rgba(5, 138, 160, 0.18) 100%);
    box-shadow:
        inset 0 3px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 1px 0 rgba(72, 180, 169, 0.32);
}
.nav-link.active:active,
.nav-link.active-page:active {
    transform: translateY(2px) scale(0.98);
    box-shadow:
        inset 0 4px 10px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Subpages */
body.subpage {
    background-color: var(--color-navy-dark);
}
.subpage .page-main {
    min-height: 100vh;
    padding-top: 0;
}
.subpage .leadership-section,
.subpage .contact-section,
.subpage .b2b-section {
    padding-top: clamp(108px, 11vw, 140px);
}
.subpage .contact-section {
    background-color: var(--color-black);
}
.subpage .site-header:not(.scrolled) {
    background: rgba(5, 28, 44, 0.22);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-actions .btn-header,
.header-actions .lang-switcher,
.header-actions .mobile-menu-toggle {
    min-height: 40px;
    box-sizing: border-box;
}
.header-actions .btn-header,
.header-actions .lang-switcher {
    padding: 0 22px;
    font-size: 0.85rem;
    line-height: 1.2;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lang-switcher {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--color-white);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition-fast);
}
.lang-switcher:hover { border-color: rgba(255,255,255,0.35); background: var(--glass-bg-strong); }
.btn-header {
    text-align: center;
}
.site-header .btn-primary.btn-header {
    padding: 0 22px;
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    padding: 0;
    z-index: 1001;
}
.mobile-menu-toggle span { display: block; width: 100%; height: 2px; background-color: var(--color-white); transition: var(--transition-smooth); }

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 28, 44, 0.75);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}
.mobile-nav.active { right: 0; }
.mobile-nav-list { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 30px; }
.mobile-nav-link {
    font-size: 1.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 24px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.16s ease,
        transform 0.12s ease;
}
.mobile-nav-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.mobile-nav-link:active,
.mobile-nav-link.active-page {
    color: var(--color-white);
    background: rgba(5, 138, 160, 0.28);
    border-color: rgba(72, 180, 169, 0.35);
    transform: translateY(2px) scale(0.98);
    box-shadow:
        inset 0 3px 8px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero-section { position: relative; width: 100%; height: 100vh; display: flex; align-items: stretch; justify-content: center; overflow: hidden; }
.hero-gradient-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(315deg, var(--color-navy-dark) 0%, var(--color-teal) 35%, var(--color-soft-teal) 65%, #7ec8a0 100%);
}
.hero-curve {
    position: absolute;
    top: -20%;
    left: -15%;
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}
.hero-geo-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        radial-gradient(circle at 25% 45%, transparent 38%, rgba(255,255,255,0.35) 38.5%, transparent 39%),
        radial-gradient(circle at 25% 45%, transparent 58%, rgba(255,255,255,0.2) 58.5%, transparent 59%),
        radial-gradient(circle at 20% 75%, transparent 42%, rgba(255,255,255,0.15) 42.5%, transparent 43%);
    pointer-events: none;
}
.hero-gradient-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(3, 18, 30, 0.55) 100%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    flex: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 0;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: flex-end;
    gap: 32px;
    min-height: 100vh;
    padding-bottom: var(--hero-partners-height);
}
.hero-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 2;
    opacity: 0;
    transform: translateX(-60px);
}
html[lang="en"] .hero-visual { transform: translateX(60px); }
.hero-model-img {
    width: auto;
    max-width: 420px;
    height: calc(100vh - var(--hero-partners-height));
    min-height: unset;
    max-height: calc(100vh - var(--hero-partners-height));
    object-fit: contain;
    object-position: bottom center;
    transform: scaleX(-1);
    mix-blend-mode: darken;
    filter: contrast(1.06) saturate(1.05);
    pointer-events: none;
    display: block;
    margin: 0;
    vertical-align: bottom;
}
html[lang="en"] .hero-model-img { transform: scaleX(1); }
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 5;
    align-self: center;
    padding: 24px 0;
    margin-bottom: 24px;
}
.badge-wrapper { margin-bottom: 18px; }
.hero-badge {
    display: inline-block;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
}
.hero-title { font-size: 2.85rem; font-weight: 700; line-height: 1.3; margin-bottom: 18px; color: var(--color-white); }
.title-line { display: block; padding: 0.08em 0; overflow: visible; }
.reveal-text { display: inline-block; opacity: 0; transform: translateY(24px); color: var(--color-white); }
.reveal-text.highlight { color: var(--color-gold); }
.hero-description { font-size: 0.98rem; font-weight: 300; line-height: 1.7; margin-bottom: 28px; max-width: 520px; opacity: 0; transform: translateY(20px); color: rgba(255, 255, 255, 0.85); }
.hero-ctas { display: flex; gap: 14px; }
.hero-ctas .btn {
    padding: 11px 24px;
    font-size: 0.88rem;
    opacity: 0;
    transform: scale(0.82) translateY(16px);
    will-change: transform, opacity;
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 6;
    opacity: 0;
    padding: 8px 16px;
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.scroll-indicator:hover { transform: translateX(-50%) translateY(-3px); }
.scroll-indicator:hover span { color: rgba(255, 255, 255, 0.85); }
.scroll-indicator:active { transform: translateX(-50%) translateY(2px); }
.scroll-indicator:focus-visible {
    outline: 2px solid var(--color-teal);
    outline-offset: 6px;
    border-radius: var(--border-radius-full);
}

/* Hero partners marquee */
.hero-partners-strip {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: calc(100% - 32px);
    max-width: 1400px;
    z-index: 6;
    height: var(--hero-partners-height);
    padding: 10px 0;
    display: flex;
    align-items: center;
    background: rgba(3, 18, 30, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(40px);
}
.hero-partners-strip .partners-marquee { flex: 1; }
.partners-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.partners-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 80px;
    padding: 0 24px;
    animation: partnersSlide 22s linear infinite;
}
html[lang="ar"] .partners-marquee-track,
html[dir="rtl"] .partners-marquee-track {
    animation-name: partnersSlideRtl;
}
.partner-logo-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.partner-logo-slide img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.92;
    filter: brightness(1.05);
}
.partner-logo-vision,
.partner-logo-dar,
.partner-logo-sky {
    mix-blend-mode: lighten;
    filter: brightness(1.1);
}
.partner-logo-besher {
    height: 46px !important;
    max-width: 200px !important;
    filter: brightness(1.05);
}
.partner-logo-vision { height: 48px !important; }
.partner-logo-dar { height: 44px !important; max-width: 220px !important; }
.partner-logo-sky { height: 40px !important; }
.scroll-indicator span { font-size: 0.75rem; letter-spacing: 1px; color: rgba(255,255,255,0.5); transition: color 0.3s ease; }
.mouse-icon { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.3); border-radius: var(--border-radius-full); position: relative; }
.mouse-icon .wheel { width: 4px; height: 8px; background-color: var(--color-teal); border-radius: var(--border-radius-full); position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollWheel 1.5s infinite; }

/* Sections */
.leadership-section, .contact-section { padding: 140px 0; position: relative; background-color: var(--color-black); }
.sub-title { display: inline-block; font-size: 0.85rem; font-weight: 600; color: var(--color-teal); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.section-title {
    font-size: clamp(1.5rem, 4vw + 0.35rem, 2.8rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.25;
}
.section-header { margin-bottom: 60px; }

/* About */
.about-section {
    position: relative;
    padding: 140px 0 0;
    overflow: hidden;
    min-height: 100vh;
}
.about-bg-image {
    position: absolute;
    inset: -24px;
    background-image: url('Fawrn/Investment/Assets/Artboard 1 copy 2_١.png');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-y;
    filter: blur(2px);
    z-index: 0;
}
.about-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(3, 18, 30, 0.72) 0%, rgba(3, 18, 30, 0.55) 45%, rgba(3, 18, 30, 0.82) 100%);
    pointer-events: none;
}
.about-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
    perspective: 1400px;
}
.about-glass-header {
    text-align: center;
    margin-bottom: 16px;
    padding: 36px 40px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    transform-style: preserve-3d;
    transform-origin: center top;
    will-change: transform, opacity;
    opacity: 0;
    transform: translateY(50px) scale(0.96) rotateX(10deg);
}
.about-label {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
}
.about-label { color: var(--color-gold); }
.about-main-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.35;
}
.title-char-line { display: block; overflow: hidden; padding: 0.15em 0; }
.about-title-text { display: inline; }
.about-title-text .title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(1.1em);
    filter: blur(10px);
    margin-inline: 0.12em;
}
html[lang="ar"] .about-title-text .title-word.ar-text-unit,
html[dir="rtl"] .about-title-text .title-word.ar-text-unit {
    margin-inline: 0;
}
.about-glass-panel {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    padding: 36px 40px;
    opacity: 0;
    transform: translateY(70px) scale(0.94) rotateX(12deg);
    transform-origin: center bottom;
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
}
.card-shine {
    position: absolute;
    inset: -20% 0;
    background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.14) 50%, transparent 62%);
    transform: translateX(-130%) skewX(-18deg);
    pointer-events: none;
    z-index: 2;
}
.about-glass-panel > *:not(.card-shine) {
    position: relative;
    z-index: 1;
}
.about-intro-panel { max-width: 960px; margin: 0 auto; width: 100%; }
.about-word-text {
    font-size: 1.08rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 300;
    text-align: justify;
    text-justify: inter-word;
}
.about-word-text .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
    margin-inline: 0.1em;
}
.about-word-text .word:first-child { margin-inline-start: 0; }
html[lang="ar"] .about-word-text .word.ar-text-unit,
html[dir="rtl"] .about-word-text .word.ar-text-unit,
html[lang="ar"] .about-typewriter .tw-word.ar-text-unit,
html[dir="rtl"] .about-typewriter .tw-word.ar-text-unit {
    margin-inline: 0;
}
.about-typewriter {
    text-align: justify;
    text-justify: inter-word;
    unicode-bidi: plaintext;
}
html[lang="ar"] .about-typewriter,
html[dir="rtl"] .about-typewriter {
    direction: rtl;
    text-align: justify;
    text-justify: inter-word;
    unicode-bidi: embed;
}
.about-typewriter .tw-word {
    opacity: 0;
}
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.about-pillar { display: flex; flex-direction: column; gap: 16px; }
html[lang="ar"] .about-intro-panel,
html[dir="rtl"] .about-intro-panel,
html[lang="ar"] .about-word-text,
html[dir="rtl"] .about-word-text {
    direction: rtl;
    text-align: justify;
    text-justify: inter-word;
}
html[lang="ar"] .about-pillar,
html[dir="rtl"] .about-pillar,
html[lang="ar"] .vision2030-impact,
html[dir="rtl"] .vision2030-impact,
html[lang="ar"] .vision2030-invest,
html[dir="rtl"] .vision2030-invest,
html[lang="ar"] .vision2030-intro,
html[dir="rtl"] .vision2030-intro {
    direction: rtl;
    align-items: flex-start;
    text-align: start;
}
html[lang="ar"] .about-pillar .pillar-heading,
html[dir="rtl"] .about-pillar .pillar-heading,
html[lang="ar"] .vision2030-impact .pillar-heading,
html[dir="rtl"] .vision2030-impact .pillar-heading,
html[lang="ar"] .vision2030-invest .pillar-heading,
html[dir="rtl"] .vision2030-invest .pillar-heading {
    width: 100%;
    text-align: start;
}
html[lang="ar"] .about-pillar .about-word-text,
html[dir="rtl"] .about-pillar .about-word-text,
html[lang="ar"] .vision2030-impact .about-word-text,
html[dir="rtl"] .vision2030-impact .about-word-text,
html[lang="ar"] .vision2030-invest .about-word-text,
html[dir="rtl"] .vision2030-invest .about-word-text,
html[lang="ar"] .vision2030-intro .about-word-text,
html[dir="rtl"] .vision2030-intro .about-word-text {
    width: 100%;
    text-align: justify;
    text-justify: inter-word;
}
.pillar-icon,
.value-icon {
    opacity: 0;
    transform: scale(0) rotate(-25deg);
}
.pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--border-radius-sm);
    background: rgba(5, 138, 160, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--color-soft-teal);
}
.pillar-heading {
    font-size: 1.5rem;
    color: var(--color-gold);
    opacity: 0;
    transform: translateY(20px);
}
.values-area { margin-top: 24px; }
.values-heading {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(24px);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 16px;
    }
    .value-card {
        min-width: 0;
        padding: 28px 14px;
    }
    .value-card p {
        font-size: 0.84rem;
        line-height: 1.55;
    }
}
.value-card {
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    opacity: 0;
    transform: translateY(60px) scale(0.88) rotateX(10deg);
    transform-origin: center bottom;
}
.value-card.is-revealed:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(72, 180, 169, 0.15);
    background: rgba(255, 255, 255, 0.1);
}
.value-icon { font-size: 2.2rem; color: var(--color-teal); margin-bottom: 24px; display: inline-block; }
.value-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(14px);
}
.value-card p {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(12px);
    text-align: justify;
    text-justify: inter-word;
}

/* Vision 2030: Organic Food */
.vision2030-area {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 80px;
    margin-bottom: 0;
    overflow: hidden;
}
.vision2030-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.vision2030-bg-overlay {
    display: none;
}
.vision2030-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 0 24px 28px;
}
.vision2030-top-space {
    flex: 0 0 clamp(120px, 22vw, 200px);
}
.vision2030-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.vision2030-area .about-glass-panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(3, 18, 30, 0.62);
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.vision2030-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
}
.vision2030-titles { flex: 1; }
.vision2030-label {
    display: inline-block;
    color: var(--color-gold);
    margin-bottom: 4px;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateY(12px);
}
.vision2030-heading {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
    opacity: 0;
    transform: translateY(20px);
}
.vision2030-intro { width: 100%; }
.vision2030-intro .about-word-text {
    font-size: 0.88rem;
    line-height: 1.65;
}
.vision2030-tagline {
    text-align: center;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1.5;
    padding: 0 12px;
    opacity: 0;
    transform: translateY(20px);
}
.vision2030-ages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.vision2030-ages > .vision2030-age-card {
    min-width: 0;
}
.vision2030-age-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 22px 10px 14px;
}
.vision2030-age-card .value-icon {
    font-size: 2.4rem;
    margin-top: 6px;
    margin-bottom: 2px;
}
.vision2030-age-card h4 {
    font-size: 0.9rem;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(14px);
}
.vision2030-age-card .about-word-text {
    font-size: 0.78rem;
    line-height: 1.5;
    width: 100%;
    text-align: justify;
    text-justify: inter-word;
}
.vision2030-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.vision2030-impact,
.vision2030-invest {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vision2030-impact .pillar-heading,
.vision2030-invest .pillar-heading {
    font-size: 0.95rem;
    margin-bottom: 0;
}
.vision2030-impact .about-word-text,
.vision2030-invest .about-word-text {
    font-size: 0.8rem;
    line-height: 1.55;
}
.vision2030-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}
.vision2030-list li {
    position: relative;
    padding-inline-start: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    opacity: 0;
    transform: translateX(-16px);
    text-align: start;
}
html[lang="ar"] .vision2030-list,
html[dir="rtl"] .vision2030-list {
    direction: rtl;
}
html[lang="ar"] .vision2030-list li,
html[dir="rtl"] .vision2030-list li {
    transform: translateX(16px);
}
.vision2030-list li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-teal), var(--color-soft-teal));
    box-shadow: 0 0 12px rgba(72, 180, 169, 0.5);
}

/* Ecosystem Horizontal Scroll */
.ecosystem-section { position: relative; width: 100%; overflow: hidden; background-color: var(--color-navy-dark); }
.horizontal-scroll-container { display: flex; width: 500vw; height: 100vh; }
.scroll-panel { width: 100vw; height: 100vh; flex-shrink: 0; display: flex; align-items: center; position: relative; overflow: hidden; background-size: cover; background-position: center; background-repeat: no-repeat; }
.panel-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(3,18,30,0.88); z-index: 1; }
.panel-transport { background-position: 22% center; }
.panel-bakery { background-position: 32% center; }
.panel-financial { background-position: center; }
.panel-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding: 0 60px; width: 100%; }

.panel-intro { background-color: var(--color-navy-dark); }
.panel-agricultural { background-color: #011d1a; }

.sector-panel-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.sector-text-full { max-width: 800px; }
.sector-text-full .sector-badge,
.sector-text-full h2,
.sector-text-full h3,
.sector-text-full .campaign-box,
.sector-text-full .sector-features li {
    opacity: 0;
    transform: translateY(24px);
}
.sector-text-full .sector-word { opacity: 0; }
.sector-svg-art {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.sector-svg-art svg {
    width: min(260px, 78%);
    height: auto;
    filter: drop-shadow(0 0 22px rgba(72, 180, 169, 0.2));
}
.sector-svg-art .draw-path {
    fill: none;
    stroke: #5ec4b8;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sector-svg-art .draw-accent {
    stroke: #d4a853;
}
.sector-svg-transport svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 26px rgba(72, 180, 169, 0.26));
}
.transport-vehicle-stage {
    position: relative;
    width: min(290px, 82%);
}
.transport-vehicle-logo {
    position: absolute;
    left: 26%;
    top: 41%;
    width: 28%;
    max-height: 22%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.9);
    mix-blend-mode: screen;
    filter:
        drop-shadow(0 0 12px rgba(94, 196, 184, 0.22))
        brightness(1.05)
        contrast(0.9)
        sepia(0.22)
        hue-rotate(128deg)
        saturate(1.35);
    pointer-events: none;
}
.sector-svg-transport .draw-route {
    stroke-width: 3;
    stroke-dasharray: 8 6;
}
.sector-svg-transport .draw-motion {
    stroke-width: 2;
    opacity: 0.7;
}

.intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.intro-text .panel-title {
    font-size: clamp(1.55rem, 4.5vw + 0.4rem, 3.2rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.25;
}
.intro-text p { font-size: 1.1rem; margin-bottom: 40px; }
.scroll-hint { display: flex; align-items: center; gap: 16px; color: var(--color-teal); font-size: 0.9rem; font-weight: 500; }
.animate-arrow { font-size: 1.2rem; animation: arrowBounce 1.5s infinite; }

.visual-circle { width: 320px; height: 320px; border: 1px dashed rgba(255,255,255,0.1); border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; animation: rotateOrbit 40s linear infinite; }
.intro-visual { display: flex; justify-content: center; }
.circle-core { width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--box-shadow-glow); animation: counterRotate 40s linear infinite; overflow: hidden; }
.circle-core-logo { width: 100%; height: 100%; object-fit: cover; }
.orbit-item { position: absolute; background-color: var(--color-navy-light); border: 1px solid rgba(255,255,255,0.1); padding: 8px 16px; border-radius: var(--border-radius-full); font-size: 0.75rem; font-weight: 500; white-space: nowrap; animation: counterRotate 40s linear infinite; }
.sector-1 { top: -15px; left: 50%; transform: translateX(-50%); }
.sector-2 { right: -30px; top: 35%; }
.sector-3 { right: 10px; bottom: -10px; }
.sector-4 { left: 10px; bottom: -10px; }
.sector-5 { left: -30px; top: 35%; }

.sector-badge { display: inline-flex; align-items: center; gap: 8px; background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 6px 16px; border-radius: var(--border-radius-full); font-size: 0.8rem; font-weight: 500; color: var(--color-soft-teal); margin-bottom: 20px; }
.sector-text-full h2 {
    font-size: clamp(1.6rem, 5vw + 0.35rem, 3.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-white);
    line-height: 1.2;
}
.sector-text-full h3 {
    font-size: clamp(1rem, 2.5vw + 0.35rem, 1.4rem);
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 24px;
    line-height: 1.35;
}
.sector-text-full p { font-size: 1.05rem; margin-bottom: 30px; }
.sector-features { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.sector-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--color-grey-dark); text-align: start; }
.sector-features i { color: var(--color-teal); margin-top: 4px; flex-shrink: 0; }
html[lang="ar"] .sector-features,
html[dir="rtl"] .sector-features {
    direction: rtl;
}
html[lang="ar"] .sector-features li,
html[dir="rtl"] .sector-features li {
    flex-direction: row;
    justify-content: flex-start;
}

.campaign-box { background-color: rgba(5,138,160,0.1); padding: 24px; border-radius: var(--border-radius-sm); margin-top: 30px; }
html[lang="en"] .campaign-box { border-left: 4px solid var(--color-teal); }
.campaign-box h4 { font-size: 1.15rem; color: var(--color-gold); margin-bottom: 8px; }
.campaign-box p { font-size: 0.9rem; margin-bottom: 0; }

/* High-Impact Sections */
.hi-section {
    padding: 120px 0;
    position: relative;
    background-color: var(--color-black);
}
.supervision-section { background-color: var(--color-black); }
.partners-success-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-navy-dark);
    padding-top: 100px;
    padding-bottom: 72px;
}
.partners-success-section .about-bg-image { z-index: 0; }
.partners-success-section .about-bg-overlay {
    z-index: 1;
    background: linear-gradient(180deg, rgba(3, 18, 30, 0.42) 0%, rgba(3, 18, 30, 0.28) 45%, rgba(3, 18, 30, 0.48) 100%);
}
.partners-success-inner {
    position: relative;
    z-index: 2;
}
.partners-success-visual {
    max-width: min(1140px, 100%);
    margin: 0 auto;
    padding: 8px 0 0;
    opacity: 0;
    transform: translateY(40px);
}
.partners-success-img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    mix-blend-mode: lighten;
    opacity: 0.92;
}

/* Shared trademarks + platform portfolio block */
.fawrn-portfolio-block {
    position: relative;
    overflow: hidden;
    background-color: var(--color-black);
}
.fawrn-portfolio-bg {
    display: none;
}
.fawrn-portfolio-block .brands-section,
.fawrn-portfolio-block .platform-section {
    position: relative;
    z-index: 1;
    background: transparent;
}
.fawrn-portfolio-block .brands-section {
    padding-bottom: 56px;
}
.fawrn-portfolio-block .platform-section {
    padding-top: 0;
    padding-bottom: 120px;
}
.fawrn-portfolio-block .platform-section::before {
    content: '';
    display: block;
    width: min(280px, 72%);
    height: 1px;
    margin: 0 auto 44px;
    background: rgba(255, 255, 255, 0.1);
}
.brands-container {
    position: relative;
    z-index: 1;
}
.brands-header { margin-bottom: 64px; max-width: 860px; }
.brands-subtitle {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    background: rgba(72, 180, 169, 0.12);
    border: 1px solid rgba(72, 180, 169, 0.28);
    letter-spacing: 1.5px;
}
.brands-title {
    margin-top: 18px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.brands-lead { max-width: 720px; margin-inline: auto; }
.hi-section-header { margin-bottom: 56px; max-width: 820px; }
.hi-section-header.text-center { margin-inline: auto; }
.hi-section-lead {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    margin-top: 16px;
}
.hi-glass-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 32px 28px;
}
.brands-grid > .hi-brand-card,
.supervision-grid > .hi-supervision-card {
    opacity: 1;
    transform: none;
}
.hi-card-icon {
    font-size: 1.6rem;
    color: var(--color-soft-teal);
    margin-bottom: 16px;
    display: inline-block;
}
.hi-brand-logo {
    height: 64px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), filter 0.45s ease;
}
.hi-brand-logo--wide {
    height: 52px;
    width: min(100%, 200px);
}
.hi-brand-logo--lighten {
    mix-blend-mode: lighten;
    filter: brightness(1.05);
}
.hi-brand-card h3,
.hi-supervision-card h3 {
    font-size: 1.05rem;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.4;
}
.hi-brand-card p,
.hi-supervision-card p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
}

/* Brands */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    perspective: 1200px;
}
.brands-grid > .hi-brand-card {
    min-width: 0;
    max-width: 100%;
    will-change: transform, opacity;
}
.brands-grid .brand-card-body {
    will-change: transform, opacity;
}
.hi-brand-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    transform-style: preserve-3d;
    transform-origin: center bottom;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.hi-brand-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    border-radius: var(--border-radius-full);
    background: linear-gradient(90deg, transparent, var(--color-soft-teal), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.hi-brand-card:hover {
    border-color: rgba(72, 180, 169, 0.42);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34), 0 0 32px rgba(5, 138, 160, 0.1);
}
.hi-brand-card:hover::after { opacity: 1; }
.hi-brand-card:hover .hi-brand-logo { transform: scale(1.07); }
.hi-brand-card:hover .brand-logo-stage { background: rgba(255, 255, 255, 0.08); }
.brand-card-shine {
    position: absolute;
    inset: -20% 0;
    background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.12) 50%, transparent 62%);
    transform: translateX(-130%) skewX(-18deg);
    pointer-events: none;
    z-index: 3;
    transition: transform 0.75s ease;
}
.hi-brand-card:hover .brand-card-shine { transform: translateX(130%) skewX(-18deg); }
.brand-logo-stage {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 26px 18px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.4s ease;
}
.brand-card-body {
    position: relative;
    z-index: 1;
    padding: 18px 18px 22px;
    flex: 1;
}

/* Platform */
.platform-container {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.platform-hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.platform-one-tap-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(228, 218, 145, 0.22) 0%, rgba(5, 138, 160, 0.18) 100%);
    border: 1px solid rgba(228, 218, 145, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), 0 0 24px rgba(72, 180, 169, 0.15);
}
.platform-tap-icon {
    font-size: 1.65rem;
    color: var(--color-soft-teal);
    transform: rotate(-12deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
    animation: platform-tap-pulse 2s ease-in-out infinite;
}
@keyframes platform-tap-pulse {
    0%, 100% { transform: rotate(-12deg) scale(1); opacity: 1; }
    50% { transform: rotate(-12deg) scale(1.12); opacity: 0.88; }
}
@media (prefers-reduced-motion: reduce) {
    .platform-tap-icon { animation: none; }
}
.platform-hero-title {
    text-align: center;
    font-size: clamp(1.5rem, 4.5vw + 0.25rem, 3.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gold);
    margin: 0;
    letter-spacing: 0.02em;
}
.platform-journey {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}
.platform-journey-scene {
    position: relative;
    height: clamp(64px, 10vw, 84px);
    margin-bottom: 12px;
}
.platform-journey-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.platform-journey-path-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 2;
    stroke-linecap: round;
}
.platform-journey-path-line {
    fill: none;
    stroke: var(--color-teal);
    stroke-width: 2.5;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(72, 180, 169, 0.45));
}
.platform-journey-meal {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: auto;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
    z-index: 3;
    pointer-events: none;
    transform-origin: center center;
    will-change: transform, left, top;
}
.platform-journey-meal-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: lighten;
}
.platform-journey-endpoint {
    position: absolute;
    bottom: 4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-soft-teal);
    background: rgba(5, 138, 160, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}
.platform-journey-ground {
    left: 0;
}
.platform-journey-table {
    right: 0;
    color: var(--color-gold);
    background: rgba(228, 218, 145, 0.1);
}
html[dir="rtl"] .platform-journey-ground {
    left: auto;
    right: 0;
}
html[dir="rtl"] .platform-journey-table {
    right: auto;
    left: 0;
}
.platform-journey-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0 4px;
}
.platform-journey-from,
.platform-journey-to {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}
.platform-journey-from {
    color: var(--color-soft-teal);
}
.platform-journey-to {
    color: var(--color-gold);
}
.platform-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding: 0 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.platform-logo-wrap {
    animation: platform-float-hero 7s ease-in-out infinite alternate;
}
.platform-logo {
    display: block;
    width: min(120px, 26vw);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
}
.platform-main {
    padding: 40px 0 0;
    overflow: hidden;
}
.platform-content-block {
    margin-top: 0;
    padding: 28px 44px 40px;
    background: linear-gradient(160deg, var(--color-fawrn-red-deep) 0%, var(--color-fawrn-red) 55%, #7a0000 100%);
    border-radius: 0 0 calc(var(--border-radius-lg) - 1px) calc(var(--border-radius-lg) - 1px);
    text-align: start;
}
html[lang="ar"] .platform-content-block,
html[dir="rtl"] .platform-content-block {
    direction: rtl;
}
html[lang="en"] .platform-content-block,
html[dir="ltr"] .platform-content-block {
    direction: ltr;
}
.platform-desc {
    font-size: 1.02rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 0;
    text-align: inherit;
}
.platform-desc .platform-word {
    display: inline;
    opacity: 0;
}
html[lang="ar"] .platform-desc .platform-word.ar-text-unit,
html[dir="rtl"] .platform-desc .platform-word.ar-text-unit {
    display: inline-block;
}
.platform-body {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: center;
}
.platform-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.platform-mockups {
    position: relative;
    min-height: clamp(380px, 42vw, 520px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(48px) scale(0.96);
}
.platform-mockups-glow {
    position: absolute;
    inset: 10% 5%;
    background: radial-gradient(ellipse at center, rgba(72, 180, 169, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.platform-mockup {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.45));
    pointer-events: none;
}
.platform-mockup-hero {
    position: relative;
    width: min(100%, 520px);
    z-index: 2;
    animation: platform-float-hero 7s ease-in-out infinite alternate;
}
@keyframes platform-float-hero {
    0% { transform: translateY(0); }
    100% { transform: translateY(-14px); }
}
.platform-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
    padding: 0;
}
.platform-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    opacity: 0;
    text-align: start;
}
html[lang="ar"] .platform-features,
html[dir="rtl"] .platform-features {
    direction: rtl;
}
html[lang="ar"] .platform-features li,
html[dir="rtl"] .platform-features li {
    flex-direction: row;
    justify-content: flex-start;
}
html[lang="en"] .platform-features,
html[dir="ltr"] .platform-features {
    direction: ltr;
}
html[lang="en"] .platform-features li,
html[dir="ltr"] .platform-features li {
    flex-direction: row;
}
.platform-features li span {
    flex: 1;
    min-width: 0;
}
.platform-features i {
    color: var(--color-gold);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 0.85rem;
}
/* Supervision */
.supervision-layout { display: flex; flex-direction: column; gap: 40px; }
.supervision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.supervision-quote {
    padding: 36px 44px;
    text-align: center;
}
.supervision-partner-logo {
    display: block;
    height: 88px;
    width: auto;
    max-width: min(100%, 240px);
    margin: 0 auto 20px;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: brightness(1.05);
}
.supervision-partner-tagline {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    margin-bottom: 12px;
}
.supervision-partner-name {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gold);
    font-style: normal;
}

/* Fawrn Magazine */
.magazine-section {
    position: relative;
    overflow: hidden;
    background: var(--color-black);
    padding-top: 88px;
    padding-bottom: 120px;
}
.magazine-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
.magazine-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 340px;
    position: relative;
}
.magazine-visual::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(100%, 360px);
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse 68% 62% at 50% 50%, rgba(102, 0, 0, 0.22) 0%, rgba(74, 0, 0, 0.1) 42%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}
.magazine-svg-wrap {
    width: min(100%, 420px);
    perspective: 1200px;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    position: relative;
    z-index: 1;
}
.magazine-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
}
.magazine-svg .mag-cover-logo {
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4));
}
.magazine-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.magazine-header {
    margin-bottom: 0;
}
.magazine-subtitle {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--border-radius-full);
    background: rgba(102, 0, 0, 0.22);
    border: 1px solid rgba(102, 0, 0, 0.42);
    color: var(--color-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.magazine-title {
    margin-top: 16px;
    color: var(--color-gold);
}
.magazine-lead,
.magazine-mission {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.86);
}
.magazine-mission {
    padding: 18px 22px;
    border-radius: var(--border-radius-md);
    background: linear-gradient(160deg, rgba(74, 0, 0, 0.55) 0%, rgba(102, 0, 0, 0.42) 55%, rgba(122, 0, 0, 0.35) 100%);
    border-top: 1px solid rgba(228, 218, 145, 0.18);
    border-bottom: 1px solid rgba(228, 218, 145, 0.18);
    border-left: 1px solid rgba(228, 218, 145, 0.18);
    border-right: none;
}
.magazine-team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.magazine-team-card {
    padding: 22px 20px;
}
.magazine-team-role {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--color-gold);
    margin-bottom: 8px;
}
.magazine-team-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.55;
}
.magazine-audience-title {
    font-size: 1.05rem;
    color: var(--color-gold);
    margin-bottom: 14px;
}
.magazine-audience-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.magazine-audience-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.magazine-audience-item i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.95rem;
    color: var(--color-gold);
}
.magazine-audience-item:hover {
    background: rgba(102, 0, 0, 0.18);
    border-color: rgba(228, 218, 145, 0.32);
    transform: translateY(-2px);
}
.magazine-audience-item:nth-child(5) {
    grid-column: 1 / -1;
}

/* B2B */
.b2b-section {
    background: #00b8e8;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.b2b-layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(260px, 32vw, 400px);
    align-items: center;
    width: 100%;
}
.b2b-man-holder {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
    line-height: 0;
}
.b2b-man-img {
    display: block;
    width: auto;
    height: min(96vh, 1080px);
    max-width: none;
    object-fit: contain;
    object-position: bottom center;
    transform: scaleX(-1);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.18));
}
html[lang="en"] .b2b-man-img {
    transform: scaleX(1);
}
.b2b-label { color: var(--color-gold); }
.b2b-content .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 12px 0 20px;
    background: linear-gradient(135deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.b2b-content > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    margin-bottom: 28px;
}
.b2b-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.b2b-chip {
    padding: 8px 16px;
    border-radius: var(--border-radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.b2b-highlight { padding: 36px 32px; }
.b2b-highlight h3 {
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}
.b2b-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.b2b-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    text-align: start;
}
html[lang="ar"] .b2b-benefits,
html[dir="rtl"] .b2b-benefits {
    direction: rtl;
}
html[lang="ar"] .b2b-benefits li,
html[dir="rtl"] .b2b-benefits li {
    flex-direction: row;
    justify-content: flex-start;
}
.b2b-benefits i { color: var(--color-gold); margin-top: 3px; flex-shrink: 0; font-size: 0.75rem; }

.hi-section-header:not(.brands-header):not(.magazine-header),
.b2b-content,
.b2b-highlight {
    opacity: 0;
    transform: translateY(40px);
}
.brands-header {
    opacity: 1;
    transform: none;
}
.b2b-man-holder {
    opacity: 0;
}

/* B2B Page with Brand Colors and #00b8e8 Background */
body.b2b-page {
    background-color: #00b8e8;
}
body.b2b-page .b2b-section {
    background: #00b8e8;
    padding-bottom: clamp(56px, 7vw, 80px);
}
body.b2b-page .b2b-content .btn-lg {
    margin-bottom: clamp(24px, 4vw, 40px);
}
body.b2b-page .b2b-content .section-title {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #233269;
    font-weight: 700;
}
body.b2b-page .b2b-label {
    color: #233269;
    font-weight: 600;
}
body.b2b-page .b2b-content > p {
    color: rgba(35, 50, 105, 0.95);
    font-weight: 400;
}
body.b2b-page .b2b-chip {
    background: #233269;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}
body.b2b-page .b2b-highlight {
    background: #233269;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-lg);
}
body.b2b-page .b2b-highlight h3 {
    color: var(--color-gold);
    font-weight: 600;
}
body.b2b-page .b2b-benefits li {
    color: rgba(255, 255, 255, 0.9);
}
body.b2b-page .b2b-benefits i {
    color: var(--color-gold);
}

/* Header style for B2B page to look extremely clean and premium on cyan background */
body.b2b-page .site-header {
    background: rgba(0, 184, 232, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(35, 50, 105, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}
body.b2b-page .nav-link {
    color: rgba(35, 50, 105, 0.82);
}
body.b2b-page .nav-link:hover {
    color: #233269;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.28) 100%);
    border-color: rgba(35, 50, 105, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 4px 10px rgba(35, 50, 105, 0.12);
}
body.b2b-page .nav-link:active {
    color: #1a2654;
    background: rgba(35, 50, 105, 0.14);
    border-color: rgba(35, 50, 105, 0.2);
    box-shadow:
        inset 0 3px 7px rgba(35, 50, 105, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
body.b2b-page .nav-link.active,
body.b2b-page .nav-link.active-page {
    color: #1a2654;
    background: linear-gradient(180deg, rgba(35, 50, 105, 0.22) 0%, rgba(35, 50, 105, 0.1) 100%);
    border-color: rgba(35, 50, 105, 0.28);
    box-shadow:
        inset 0 3px 8px rgba(35, 50, 105, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
body.b2b-page .nav-link::after {
    display: none;
}
body.b2b-page .lang-text {
    color: #233269;
}
body.b2b-page .lang-switcher i {
    color: #233269;
}
body.b2b-page .lang-switcher {
    border-color: rgba(35, 50, 105, 0.2);
    background: rgba(255, 255, 255, 0.2);
}
body.b2b-page .mobile-menu-toggle span {
    background-color: #233269;
}

/* Leadership */
.leadership-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-navy-dark);
    color: var(--color-white);
}
.leadership-map-bg {
    position: absolute;
    inset: -24px;
    background-image: url('Fawrn/Investment/Assets/Artboard 1 copy 2_١.png');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-y;
    filter: blur(2px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}
.leadership-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 18, 30, 0.82) 0%, rgba(3, 18, 30, 0.9) 50%, rgba(3, 18, 30, 0.88) 100%);
    pointer-events: none;
    z-index: 1;
}
.leadership-container {
    position: relative;
    z-index: 2;
}
.leadership-section .section-header .sub-title { color: var(--color-teal); }
.leadership-section .section-title { color: var(--color-white); }
.ceo-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 1.25fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
    margin-bottom: 56px;
    padding: clamp(32px, 4vw, 48px);
    padding-top: clamp(28px, 4vw, 40px);
    border-radius: var(--border-radius-lg);
    background: linear-gradient(145deg, rgba(5, 28, 44, 0.92) 0%, rgba(3, 18, 30, 0.75) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}
.ceo-badge-hanger {
    position: absolute;
    top: clamp(-36px, -4vw, -14px);
    left: clamp(28px, 4vw, 44px);
    width: min(36%, 400px);
    z-index: 2;
    pointer-events: none;
}
.ceo-badge-swing {
    position: relative;
    transform-origin: 50% 11%;
    animation: ceo-badge-swing 5.5s ease-in-out infinite;
    will-change: transform;
}
.ceo-badge-img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.55));
    mix-blend-mode: lighten;
}
.ceo-showcase-content {
    grid-column: 2;
    grid-row: 1;
    padding: clamp(8px, 1.5vw, 16px) 0;
}
html[dir="rtl"] .ceo-showcase {
    direction: ltr;
}
html[dir="rtl"] .ceo-showcase-content {
    direction: rtl;
}
.ceo-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    background: var(--color-navy-light);
    border: 1px solid rgba(72, 180, 169, 0.45);
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.founders-map-wrap {
    position: relative;
    margin-top: 12px;
    padding-bottom: 72px;
}
.founders-map {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 270px) minmax(0, 1fr);
    grid-template-rows: repeat(4, auto) auto;
    gap: 22px 36px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}
.founders-hub {
    position: relative;
    z-index: 3;
    grid-column: 2;
    grid-row: 2 / span 2;
    align-self: center;
    justify-self: center;
    width: 100%;
    padding: 28px 22px;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.founders-hub-bulb {
    display: block;
    width: clamp(72px, 10vw, 92px);
    height: auto;
    margin: 0 auto 14px;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 8px 24px rgba(72, 180, 169, 0.28));
    animation: founders-hub-bulb-glow 4.5s ease-in-out infinite;
}
.founders-hub-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
    line-height: 1.3;
}
.founders-hub-subtitle {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}
.founder-node {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 16px 18px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.founder-node:hover {
    transform: translateY(-3px);
    border-color: rgba(72, 180, 169, 0.35);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32), 0 0 24px rgba(5, 138, 160, 0.1);
}
.founder-node-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 12px;
}
.founder-avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(72, 180, 169, 0.45);
    background: rgba(5, 138, 160, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--color-soft-teal);
    overflow: hidden;
}
.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.founder-node-titles { flex: 1; min-width: 0; }
.founder-node-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 4px;
}
.founder-node .founder-name {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
    line-height: 1.35;
}
.founder-node .founder-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-soft-teal);
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.45;
}
.founder-node .founder-bio {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
}
.founder-node--tawfiq { grid-column: 1; grid-row: 1; justify-self: stretch; }
.founder-node--rashoud { grid-column: 1; grid-row: 2; justify-self: stretch; }
.founder-node--wasfi { grid-column: 3; grid-row: 2; justify-self: stretch; }
.founder-node--sultan { grid-column: 3; grid-row: 1; justify-self: stretch; }
.founder-node--omar { grid-column: 1; grid-row: 3; justify-self: stretch; }
.founder-node--ahmed { grid-column: 3; grid-row: 3; justify-self: stretch; }
.founder-node--naji {
    grid-column: 1 / -1;
    grid-row: 5;
    justify-self: center;
    width: min(100%, 560px);
    margin-top: 6px;
}
.founders-map-logo {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
    height: 42px;
    opacity: 0.75;
    z-index: 2;
    filter: brightness(1.05);
}
.ceo-showcase .founder-name { color: var(--color-white); }
.ceo-showcase .founder-role { color: var(--color-teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.ceo-showcase .founder-bio { color: var(--color-grey-dark); font-size: 0.9rem; line-height: 1.6; }
.founder-name { font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }
.founder-role { font-size: 0.85rem; font-weight: 500; margin-bottom: 20px; }
.founder-bio { font-size: 0.9rem; line-height: 1.6; }

@keyframes ceo-badge-swing {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(6px); }
}
@keyframes founders-hub-bulb-glow {
    0%, 100% { filter: drop-shadow(0 8px 24px rgba(72, 180, 169, 0.28)); }
    50% { filter: drop-shadow(0 10px 32px rgba(72, 180, 169, 0.42)); }
}

@media (prefers-reduced-motion: reduce) {
    .ceo-badge-swing { animation: none; }
    .founders-hub-bulb { animation: none; }
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.contact-info-area h1,
.contact-info-area h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; }
.contact-info-area > p { font-size: 1.05rem; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 30px; margin-bottom: 50px; }
.contact-detail-item { display: flex; gap: 20px; align-items: flex-start; }
.detail-icon { font-size: 1.5rem; color: var(--color-teal); background-color: rgba(5,138,160,0.1); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: var(--border-radius-sm); flex-shrink: 0; }
.detail-3d-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.contact-detail-item:hover .detail-3d-icon {
    transform: scale(1.1) rotate(4deg);
}
.contact-detail-item h4 { font-size: 1.1rem; margin-bottom: 4px; }
.contact-detail-item p { font-size: 0.95rem; margin-bottom: 0; }
.contact-email {
    margin-top: 10px;
    color: var(--color-teal);
}
.contact-email a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-email a:hover {
    color: var(--color-gold);
}
.partners-logos h4 { font-size: 1.1rem; margin-bottom: 12px; color: var(--color-gold); }
.partners-contact-intro {
    font-size: 0.9rem;
    color: var(--color-grey-dark);
    margin-bottom: 16px;
}
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.partner-logo-item {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius-md);
    padding: 20px;
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition-smooth);
}
html[lang="ar"] .partner-logo-item {
    direction: rtl;
}
.partner-logo-item:hover { border-color: rgba(5,138,160,0.3); }
.partner-card-logo-wrap {
    background: #fff;
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    margin-bottom: 4px;
}
.partner-card-logo {
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.partner-card-logo--sky { height: 44px; }
.partner-card-logo--dar { height: 52px; }
.partner-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.45;
    margin: 0;
}
.partner-contact-row {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-grey-dark);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.partner-contact-row a {
    color: var(--color-soft-teal);
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-all;
}
.partner-contact-row a:hover {
    color: var(--color-gold);
}
.partner-contact-row span:last-child:not(:first-child) {
    color: var(--color-grey-dark);
    opacity: 0.75;
}

.contact-form-area { background-color: var(--color-navy); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--border-radius-lg); padding: 48px; box-shadow: var(--box-shadow-premium); }
.form-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}
.form-3d-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    animation: float-question 5s ease-in-out infinite alternate;
}
@keyframes float-question {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-6px) rotate(8deg); }
}
.contact-form-area h3 { font-size: 1.8rem; margin-bottom: 0; color: var(--color-white); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--color-grey-dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background-color: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--border-radius-sm); padding: 12px 16px; color: var(--color-white); font-size: 0.95rem; transition: var(--transition-fast); }
html[lang="ar"] .form-group input, html[lang="ar"] .form-group select, html[lang="ar"] .form-group textarea { font-family: var(--font-ar); }
html[lang="en"] .form-group input, html[lang="en"] .form-group select, html[lang="en"] .form-group textarea { font-family: var(--font-en); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-teal); background-color: rgba(255,255,255,0.05); }
.form-group select option { background-color: var(--color-navy); color: var(--color-white); }

.phone-input-group {
    display: flex;
    direction: ltr;
    unicode-bidi: isolate;
}
.phone-country-select,
.phone-number-input {
    direction: ltr;
    text-align: left;
    font-family: var(--font-en);
    unicode-bidi: plaintext;
}
.phone-country-select {
    flex: 0 1 auto;
    width: auto;
    min-width: 140px;
    max-width: 48%;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    border-right: none;
    padding-inline: 12px 10px;
}
.phone-number-input {
    flex: 1;
    min-width: 0;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}
.phone-input-group:focus-within .phone-country-select,
.phone-input-group:focus-within .phone-number-input {
    border-color: var(--color-teal);
    background-color: rgba(255, 255, 255, 0.05);
}
.contact-form .btn-contact-submit {
    box-shadow: none;
    transform: none;
}
.contact-form .btn-contact-submit:hover {
    box-shadow: none;
    transform: translateY(-2px);
}
.contact-form .btn-contact-submit:active {
    transform: translateY(0);
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    background-color: #233269;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 40px 0;
}
.site-footer > .container,
.site-footer > .footer-bottom {
    position: relative;
    z-index: 1;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr; gap: 60px; margin-bottom: 60px; }
.footer-logo-area { margin-bottom: 20px; }
.footer-logo-img {
    display: block;
    height: clamp(40px, 5vw, 50px);
    width: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
}
.footer-desc { font-size: 0.9rem; margin-bottom: 24px; line-height: 1.6; }
.social-links { display: flex; gap: 16px; }
.social-link { width: 40px; height: 40px; background-color: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--color-white); transition: var(--transition-fast); }
.social-link:hover { background-color: var(--color-teal); transform: translateY(-3px); }
.footer-top h4 { font-size: 1.1rem; color: var(--color-white); margin-bottom: 24px; position: relative; padding-bottom: 10px; }
.footer-top h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background-color: var(--color-teal); }
html[lang="ar"] .footer-top h4::after { left: auto; right: 0; }
.footer-top ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-top ul a, .footer-top ul li { font-size: 0.9rem; color: var(--color-grey-dark); }
.footer-top ul a:hover { color: var(--color-teal); }
.footer-legal p { font-size: 0.85rem; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 40px; }
.footer-bottom p { font-size: 0.8rem; }

/* Animations */
@keyframes scrollWheel { 0% { opacity: 1; top: 6px; } 50% { opacity: 0.3; top: 18px; } 100% { opacity: 1; top: 6px; } }
@keyframes rotateOrbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes counterRotate { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes arrowBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes partnersSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes partnersSlideRtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* GSAP initial states (set via CSS to avoid FOUC) */
.anim-fade-up { opacity: 0; transform: translateY(40px); }

/* Responsive */
@media (max-width: 1400px) {
    .brands-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1200px) {
    .hero-title { font-size: 2.5rem; }
    .hero-model-img { height: calc(100vh - var(--hero-partners-height)); max-width: 360px; }
}
@media (max-width: 991px) {
    .site-header {
        width: calc(100% - 16px);
        padding: 12px 0;
    }
    .header-container {
        padding: 0 12px;
        gap: 8px;
        min-width: 0;
    }
    .logo-area {
        flex: 0 1 auto;
        min-width: 0;
        max-width: min(104px, 30vw);
    }
    .logo-img {
        height: 28px;
        width: auto;
        max-width: 100%;
    }
    .site-header.scrolled .logo-img {
        height: 26px;
    }
    .header-actions {
        flex: 0 0 auto;
        gap: 8px;
    }
    .header-actions .btn-header,
    .header-actions .lang-switcher,
    .header-actions .mobile-menu-toggle {
        min-height: 36px;
    }
    .header-actions .btn-header,
    .header-actions .lang-switcher {
        padding: 0 10px;
        font-size: 0.75rem;
    }
    .site-header .btn-primary.btn-header {
        padding: 0 10px;
    }
    .mobile-menu-toggle {
        flex-shrink: 0;
    }
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }
    .mobile-nav {
        padding-top: clamp(88px, 14vh, 112px);
        padding-bottom: 32px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 80px;
        min-height: auto;
    }
    .hero-visual { display: none; }
    .scroll-indicator { bottom: 90px; }
    .partners-marquee {
        mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
    }
    .partner-logo-slide img { height: 40px; max-width: 140px; }
    .partner-logo-besher { height: 38px !important; max-width: 160px !important; }
    .partners-marquee-track {
        gap: 36px;
        padding: 0 12px;
        animation-duration: 14s;
    }
    .hero-content { align-items: center; }
    .hero-description { margin: 0 auto 30px auto; }
    .hero-ctas { justify-content: center; }
    .about-pillars { grid-template-columns: 1fr; }
    .about-glass-panel,
    .about-glass-header { padding: 28px 24px; }
    .about-section { padding: 100px 0 0; }
    .vision2030-top-space { flex-basis: clamp(130px, 34vw, 200px); }
    .vision2030-ages {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }
    .vision2030-age-card {
        padding: 14px 6px 10px;
        gap: 6px;
    }
    .vision2030-age-card .value-icon {
        font-size: 1.65rem;
        margin-top: 2px;
    }
    .vision2030-age-card h4 {
        font-size: 0.78rem;
    }
    .vision2030-age-card .about-word-text {
        font-size: 0.68rem;
        line-height: 1.45;
        text-align: center;
    }
    .vision2030-bottom-row { grid-template-columns: 1fr; }
    .vision2030-content { padding: 0 16px 24px; }
    .sector-panel-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        min-width: 0;
    }
    .sector-svg-art { order: -1; }
    .sector-text-full {
        width: 100%;
        min-width: 0;
        max-width: none;
    }
    .scroll-panel {
        align-items: flex-start;
        padding-top: clamp(76px, 10vh, 92px);
    }
    .ecosystem-section.ecosystem-mobile-stack {
        overflow: visible;
    }
    .horizontal-scroll-container.ecosystem-mobile-stack {
        width: 100% !important;
        height: auto;
        flex-direction: column;
        transform: none !important;
    }
    .ecosystem-mobile-stack .scroll-panel {
        width: 100%;
        height: auto;
        min-height: 100svh;
        min-height: 100dvh;
        flex-shrink: 0;
    }
    .ecosystem-mobile-stack .panel-overlay {
        background: rgba(3, 18, 30, 0.72);
    }
    .ecosystem-mobile-stack .panel-transport { background-position: 16% center; }
    .ecosystem-mobile-stack .panel-bakery { background-position: 28% center; }
    .transport-vehicle-stage { width: min(290px, 82%); }
    .panel-content { padding: 0 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .partners-grid { grid-template-columns: 1fr; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .scroll-hint { justify-content: center; }
    .platform-body { grid-template-columns: 1fr; gap: 32px; }
    .platform-brand { padding: 0 0 20px; }
    .platform-content-block { padding: 24px 24px 32px; }
    .platform-logo { width: min(100px, 30vw); }
    .platform-mockups {
        order: -1;
        min-height: clamp(280px, 70vw, 400px);
        margin-bottom: 8px;
    }
    .platform-mockup-hero { width: min(95%, 420px); }
    .b2b-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        position: relative;
        padding-bottom: 0;
    }
    .b2b-man-holder {
        display: none;
    }
    .b2b-content,
    .b2b-highlight {
        position: relative;
        z-index: 2;
    }
    .ceo-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: clamp(24px, 4vw, 32px);
    }
    .ceo-showcase-content {
        grid-column: 1;
        grid-row: auto;
        padding-top: clamp(160px, 34vw, 210px);
        text-align: start;
    }
    .ceo-badge-hanger {
        left: 50%;
        width: min(68%, 340px);
        transform: translateX(-50%);
        top: clamp(-24px, -3vw, -8px);
    }
    .ceo-badge-img {
        max-width: 340px;
    }
    .founders-map {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 18px;
    }
    .founders-hub {
        grid-column: 1;
        grid-row: auto;
        order: -1;
        max-width: 320px;
        margin: 0 auto 8px;
    }
    .founder-node--tawfiq { order: 1; }
    .founder-node--sultan { order: 2; }
    .founder-node--rashoud { order: 3; }
    .founder-node--wasfi { order: 4; }
    .founder-node--omar { order: 5; }
    .founder-node--ahmed { order: 6; }
    .founder-node--naji { order: 7; }
    .founder-node--tawfiq,
    .founder-node--rashoud,
    .founder-node--wasfi,
    .founder-node--sultan,
    .founder-node--omar,
    .founder-node--naji,
    .founder-node--ahmed {
        grid-column: 1;
        grid-row: auto;
        justify-self: stretch;
        width: 100%;
        margin-top: 0;
    }
    .founders-map-logo {
        position: static;
        display: block;
        margin: 24px auto 0;
    }
    .supervision-grid { grid-template-columns: 1fr 1fr; }
    .magazine-layout { grid-template-columns: 1fr; }
    .magazine-visual { order: -1; min-height: 280px; }
    .magazine-team { grid-template-columns: 1fr; }
    .hi-section { padding: 90px 0; }
    .fawrn-portfolio-block .brands-section { padding-bottom: 40px; }
    .fawrn-portfolio-block .platform-section {
        padding-top: 0;
        padding-bottom: 90px;
    }
    .fawrn-portfolio-block .platform-section::before { margin-bottom: 32px; }
    .brands-container.container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .brand-logo-stage {
        min-height: 72px;
        padding: 14px 10px 12px;
    }
    .hi-brand-logo {
        height: 44px;
    }
    .hi-brand-logo--wide {
        height: 36px;
        width: min(100%, 120px);
    }
    .brand-card-body {
        padding: 12px 10px 14px;
    }
    .hi-brand-card h3 {
        font-size: 0.82rem;
        margin-bottom: 6px;
    }
    .hi-brand-card p {
        font-size: 0.72rem;
        line-height: 1.5;
    }
}
@media (max-width: 1100px) {
    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767px) {
    .hero-title { font-size: 2.1rem; }
    .about-main-title { font-size: clamp(1.45rem, 6.5vw, 2rem); }
    .intro-text .panel-title { font-size: clamp(1.35rem, 6.2vw, 1.85rem); }
    .sector-text-full h2 { font-size: clamp(1.4rem, 6.8vw, 1.9rem); }
    .sector-text-full h3 { font-size: clamp(0.95rem, 3.8vw, 1.15rem); }
    .section-title { font-size: clamp(1.35rem, 6vw, 1.85rem); }
    .platform-hero-title { font-size: clamp(1.35rem, 6.2vw, 1.9rem); }
    .pillar-heading { font-size: 1.25rem; }
    .values-heading { font-size: 1.5rem; }
    .panel-content { padding: 0 16px; }
    .vision2030-top-space { flex-basis: clamp(150px, 38vw, 210px); }
    .vision2030-ages { gap: 6px; }
    .vision2030-age-card { padding: 12px 4px 8px; }
    .vision2030-age-card .value-icon { font-size: 1.45rem; }
    .vision2030-age-card h4 { font-size: 0.72rem; }
    .vision2030-age-card .about-word-text { font-size: 0.64rem; }
    .footer-top { grid-template-columns: 1fr; }
    .supervision-grid { grid-template-columns: 1fr; }
    .magazine-audience-grid { grid-template-columns: 1fr; }
    .magazine-audience-item:nth-child(5) { grid-column: auto; }
    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .brands-container.container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .brands-header { margin-bottom: 40px; }
    .brand-logo-stage {
        min-height: 72px;
        padding: 14px 10px 12px;
    }
    .hi-brand-logo {
        height: 44px;
    }
    .hi-brand-logo--wide {
        height: 36px;
        width: min(100%, 120px);
    }
    .brand-card-body {
        padding: 12px 10px 14px;
    }
    .hi-brand-card h3 {
        font-size: 0.82rem;
        margin-bottom: 6px;
    }
    .hi-brand-card p {
        font-size: 0.72rem;
        line-height: 1.5;
    }
}
@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
        gap: 6px;
    }
    .logo-area {
        max-width: min(88px, 28vw);
    }
    .logo-img {
        height: 24px;
    }
    .site-header.scrolled .logo-img {
        height: 22px;
    }
    .header-actions {
        gap: 6px;
    }
    .header-actions .btn-header,
    .header-actions .lang-switcher {
        padding: 0 8px;
        font-size: 0.72rem;
    }
    .site-header .btn-primary.btn-header {
        padding: 0 8px;
    }
    .intro-text .panel-title { font-size: 1.3rem; }
    .sector-text-full h2 { font-size: 1.35rem; }
    .section-title { font-size: 1.3rem; }
    .platform-hero-title { font-size: 1.35rem; }
    .platform-journey-scene { height: clamp(52px, 14vw, 68px); }
    .platform-journey-meal { width: 52px; }
    .platform-journey-endpoint { width: 24px; height: 24px; font-size: 0.85rem; }
    .vision2030-top-space { flex-basis: clamp(160px, 42vw, 220px); }
    .vision2030-ages { gap: 5px; }
    .vision2030-age-card { padding: 10px 3px 8px; }
    .vision2030-age-card .value-icon { font-size: 1.3rem; }
    .vision2030-age-card h4 { font-size: 0.68rem; }
    .vision2030-age-card .about-word-text { font-size: 0.6rem; line-height: 1.4; }
    .brands-grid { gap: 10px; }
    .brand-logo-stage {
        min-height: 64px;
        padding: 12px 8px 10px;
    }
    .hi-brand-logo { height: 38px; }
    .hi-brand-logo--wide {
        height: 32px;
        width: min(100%, 100px);
    }
    .brand-card-body { padding: 10px 8px 12px; }
    .hi-brand-card h3 { font-size: 0.76rem; }
    .hi-brand-card p { font-size: 0.68rem; }
}

/* =========================================================================
   Page-transition overlay (SPA-like feel between pages)
   ========================================================================= */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(135deg, #0b3d2e 0%, #1a5d48 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-transition.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
}
.page-transition__logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.18);
    border-top-color: #ffffff;
    animation: page-transition-spin 0.9s linear infinite;
}
@keyframes page-transition-spin {
    to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    .page-transition { transition: opacity 0.15s ease; }
    .page-transition__logo { animation: none; }
}

/* =========================================================================
   reCAPTCHA v3 — hide the floating badge & show required attribution inline
   Google's Branding ToS allows hiding the badge IF the attribution text is
   visible somewhere on the form/page.
   ========================================================================= */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.recaptcha-notice {
    margin: 0.75rem auto 0;
    max-width: 36ch;
    font-size: 0.62rem;
    line-height: 1.5;
    color: #8a8f99;
    text-align: center;
    opacity: 0.8;
    unicode-bidi: isolate;
}
.recaptcha-notice__text {
    display: block;
}
.recaptcha-notice__links {
    display: block;
    margin-top: 0.2rem;
    unicode-bidi: isolate;
    direction: ltr;
}
.recaptcha-notice__links a {
    color: #6b7280;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin: 0 0.25rem;
}
.recaptcha-notice__links a:hover {
    color: #1a5d48;
}
