        @font-face {
            font-family: 'Manrope';
            src: url('../assets/font/static/Manrope-Regular.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Manrope';
            src: url('../assets/font/static/Manrope-Medium.ttf') format('truetype');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Manrope';
            src: url('../assets/font/static/Manrope-SemiBold.ttf') format('truetype');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Manrope';
            src: url('../assets/font/static/Manrope-Bold.ttf') format('truetype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Manrope';
            src: url('../assets/font/static/Manrope-ExtraBold.ttf') format('truetype');
            font-weight: 800;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --egp-bg: #F7F8FB;
            --egp-surface: #FFFFFF;
            --egp-accent: #059669;
            --egp-accent-deep: #047857;
            --egp-blue: #2563EB;
            --egp-heading: #0F172A;
            --egp-text: #334155;
            --egp-muted: #64748B;
            --egp-border: rgba(15, 23, 42, 0.1);
            --pure-white: #FFFFFF;
            --nav-height: 5.5rem;
            --container: 84rem;
            --gutter: 2.75rem;
            --radius: 0;
            --font-display: 'Manrope';
            --font-body: 'Manrope';
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
            --section-pad-y: clamp(3.5rem, 7vw, 5.5rem);
            --section-head-gap: clamp(2rem, 4vw, 2.75rem);
            --eyebrow-size: 0.72rem;
            --eyebrow-tracking: 0.2em;
            --heading-size: clamp(1.5rem, 2.8vw, 2.15rem);
            --lead-size: clamp(1.02rem, 1.5vw, 1.12rem);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html {
            scroll-behavior: smooth;
            background: var(--egp-surface);
            color: var(--egp-text);
            font-family: var(--font-body);
        }

        body { overflow-x: hidden; line-height: 1.7; }

        img { display: block; max-width: 100%; height: auto; }

        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: 700;
            letter-spacing: -0.025em;
            color: var(--egp-heading);
            line-height: 1.15;
        }

        a { color: inherit; }

        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 var(--gutter);
        }

        @media (max-width: 768px) {
            .container { padding: 0 1.25rem; }
        }

        /* ——— HEADER ——— */
        header {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 1000;
            height: var(--nav-height);
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid transparent;
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
        }

        header.scrolled {
            border-bottom-color: var(--egp-border);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
        }

        header .container {
            padding-inline: clamp(0.5rem, 1vw, 0.75rem);
        }

        @media (max-width: 768px) {
            header .container { padding-inline: 0.65rem; }
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: clamp(1.25rem, 2.5vw, 2rem);
            height: var(--nav-height);
        }

        /* 1 — Logo + brand text (tight as one unit) */
        .brand-link {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            text-decoration: none;
            flex: 0 1 auto;
            min-width: 0;
        }

        .brand-logo-img {
            max-height: 80px;
            width: auto;
            object-fit: contain;
            flex-shrink: 0;
        }

        .brand-lockup {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: stretch;
            line-height: 1;
            gap: 0.22rem;
            min-width: 0;
        }

        .brand-text {
            font-family: "Times New Roman", Times, Georgia, serif;
            font-weight: 700;
            font-size: 1.55rem;
            letter-spacing: 0.04em;
            color: #0a0a0a;
            line-height: 1;
            white-space: nowrap;
        }

        .brand-rule {
            display: block;
            width: 100%;
            height: 1.5px;
            background: #1a752c;
        }

        .brand-sub {
            font-family: "Times New Roman", Times, Georgia, serif;
            font-weight: 700;
            font-size: 0.68rem;
            letter-spacing: 0.01em;
            color: #0a0a0a;
            white-space: nowrap;
            line-height: 1.15;
        }

        .brand-tagline {
            font-family: "Times New Roman", Times, Georgia, serif;
            font-weight: 700;
            font-size: 0.62rem;
            letter-spacing: 0.02em;
            color: #1a752c;
            white-space: nowrap;
            line-height: 1.1;
        }

        /* 2 — Nav links (centered group) */
        nav {
            flex: 0 1 auto;
            display: flex;
            justify-content: center;
            min-width: 0;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.35rem;
            align-items: center;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--egp-heading);
            font-size: 1.05rem;
            font-weight: 600;
            transition: color 0.2s ease;
            white-space: nowrap;
        }

        nav ul li a:hover,
        nav ul li a.nav-active { color: var(--egp-accent); }

        nav ul li a.nav-active {
            position: relative;
        }

        nav ul li a.nav-active::after {
            content: '';
            position: absolute;
            left: 0; right: 0; bottom: -0.5rem;
            height: 2px;
            background: var(--egp-accent);
        }

        nav .fa-chevron-down {
            font-size: 0.75rem;
            margin-left: 4px;
        }

        .nav-dropdown { position: relative; }

        .dropdown-box {
            position: absolute;
            top: calc(100% + 0.9rem);
            left: 50%;
            transform: translateX(-50%);
            min-width: 14rem;
            background: var(--egp-surface);
            border: 1px solid var(--egp-border);
            padding: 0.45rem 0;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
            display: none;
            z-index: 20;
        }

        /* Invisible bridge so the cursor can reach the menu without leaving :hover */
        .dropdown-box::before {
            content: '';
            position: absolute;
            top: -0.9rem;
            left: 0;
            right: 0;
            height: 0.9rem;
        }

        .nav-dropdown:hover .dropdown-box,
        .nav-dropdown:focus-within .dropdown-box { display: block; }

        .dropdown-box a {
            display: block;
            padding: 0.75rem 1.35rem;
            font-size: 1rem;
            font-weight: 500;
            color: var(--egp-heading);
            text-decoration: none;
        }

        .dropdown-box a:hover {
            background: rgba(5, 150, 105, 0.07);
            color: var(--egp-accent);
        }

        /* 3 — Get In Touch (right) */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex: 0 0 auto;
        }

        .btn-nav {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            background: var(--egp-accent);
            color: var(--pure-white) !important;
            padding: 0.75rem 1.45rem;
            font-family: var(--font-display);
            font-size: 0.88rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border: 0;
            transition: background 0.25s ease;
            white-space: nowrap;
        }

        .btn-nav:hover { background: var(--egp-accent-deep); }

        .menu-trigger {
            display: none;
            border: 0;
            background: none;
            font-size: 1.6rem;
            color: var(--egp-heading);
            cursor: pointer;
        }

        .mobile-pane {
            position: fixed;
            inset: 0;
            z-index: 1100;
            background: var(--egp-surface);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 1.35rem;
            transform: translateX(100%);
            transition: transform 0.45s var(--ease);
        }

        .mobile-pane.active { transform: none; }

        .mobile-pane a {
            text-decoration: none;
            color: var(--egp-heading);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.4rem;
        }

        .close-pane {
            position: absolute;
            top: 1.35rem;
            right: 1.35rem;
            border: 0;
            background: none;
            font-size: 1.85rem;
            cursor: pointer;
            color: var(--egp-heading);
        }

        @media (max-width: 1100px) {
            .nav-wrapper { gap: 1.25rem; }
            nav ul { gap: 1.5rem; }
        }

        @media (max-width: 960px) {
            .nav-wrapper { gap: 1rem; }
            nav { display: none; }
            .nav-actions .btn-nav { display: none; }
            .menu-trigger { display: block; }
            .brand-logo-img { max-height: 50px; }
            .brand-text { font-size: 1.3rem; }
            .brand-sub { font-size: 0.58rem; }
            .brand-tagline { font-size: 0.52rem; }
        }

        @media (max-width: 480px) {
            :root { --nav-height: 5rem; }
            .brand-logo-img { max-height: 44px; }
            .brand-text { font-size: 1.15rem; }
            .brand-sub { font-size: 0.5rem; }
            .brand-tagline { font-size: 0.46rem; }
            .menu-trigger { font-size: 1.5rem; }
        }

        /* ——— HERO: eyebrow + H1 + CTA ——— */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            text-align: left;
            padding: calc(var(--nav-height) + 2rem) 0 4rem;
            overflow: hidden;
            isolation: isolate;
        }

        .hero-media {
            position: absolute;
            inset: 0;
            z-index: -2;
            background: #0B1220;
        }

        .hero-media video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(90deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.45) 48%, rgba(15, 23, 42, 0.28) 100%);
        }

        .hero-inner {
            max-width: 42rem;
            margin: 0;
            width: 100%;
        }

        .hero-eyebrow {
            display: block;
            font-family: var(--font-display);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.86);
            margin-bottom: 1.15rem;
            opacity: 0;
            animation: heroIn 0.9s var(--ease) 0.15s forwards;
        }

        .hero h1 {
            color: var(--pure-white);
            font-size: clamp(1.85rem, 4vw, 2.85rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            line-height: 1.08;
            margin-bottom: 1.75rem;
            opacity: 0;
            animation: heroIn 1s var(--ease) 0.3s forwards;
        }

        .btn-hero {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            text-decoration: none;
            background: var(--egp-accent);
            color: var(--pure-white);
            padding: 1rem 2rem;
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            transition: background 0.25s ease, transform 0.25s ease;
            opacity: 0;
            animation: heroIn 1s var(--ease) 0.5s forwards;
        }

        .btn-hero:hover {
            background: var(--egp-accent-deep);
            transform: translateY(-2px);
        }

        @keyframes heroIn {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: none; }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-media video { display: none; }
            .hero-eyebrow, .hero h1, .btn-hero { opacity: 1; animation: none; }
        }

        /* ——— WHAT WE DO ——— */
        .what-we-do {
            background: var(--egp-surface);
            padding: var(--section-pad-y) 0;
        }

        .what-we-do-head {
            text-align: center;
            max-width: 42rem;
            margin: 0 auto var(--section-head-gap);
            padding: 0 var(--gutter);
        }

        .what-we-do-eyebrow {
            display: block;
            font-family: var(--font-display);
            font-size: var(--eyebrow-size);
            font-weight: 700;
            letter-spacing: var(--eyebrow-tracking);
            text-transform: uppercase;
            color: var(--egp-accent);
            margin-bottom: 1rem;
        }

        .what-we-do-title {
            font-size: var(--heading-size);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.025em;
            color: var(--egp-heading);
            margin-bottom: 0.85rem;
        }

        .what-we-do-sub {
            font-size: var(--lead-size);
            font-weight: 400;
            color: var(--egp-muted);
            line-height: 1.65;
        }

        /* ——— INTERNATIONAL TRADING — text column + image column ——— */
        .trading {
            margin-top: var(--section-head-gap);
            padding: clamp(2rem, 4vw, 3rem) 0;
            background:
                radial-gradient(ellipse 70% 50% at 0% 0%, rgba(5, 150, 105, 0.07), transparent 55%),
                linear-gradient(180deg, #F4F7F5 0%, var(--egp-surface) 100%);
            border-top: 1px solid rgba(15, 23, 42, 0.06);
            border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        }

        .trading-inner {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 var(--gutter);
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
            gap: clamp(1.5rem, 3.5vw, 2.75rem);
            align-items: stretch;
        }

        .trading-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: clamp(1.25rem, 2.5vw, 1.75rem);
            min-width: 0;
        }

        .trading-head {
            margin: 0;
            max-width: 28rem;
        }

        .trading-head .trading-eyebrow {
            display: block;
            font-family: var(--font-display);
            font-size: var(--eyebrow-size);
            font-weight: 700;
            letter-spacing: var(--eyebrow-tracking);
            text-transform: uppercase;
            color: var(--egp-accent);
            margin-bottom: 1rem;
        }

        .trading-head h2 {
            font-size: var(--heading-size);
            font-weight: 800;
            letter-spacing: -0.025em;
            text-transform: uppercase;
            color: var(--egp-heading);
            line-height: 1.15;
            margin-bottom: 0.85rem;
        }

        .trading-head h2::after {
            content: '';
            display: block;
            width: 2.75rem;
            height: 2px;
            margin-top: 0.65rem;
            background: var(--egp-accent);
        }

        .trading-head p {
            font-size: var(--lead-size);
            font-weight: 500;
            color: var(--egp-muted);
            line-height: 1.65;
            margin: 0;
            max-width: 26rem;
        }

        .trading-tablist {
            display: flex;
            flex-direction: column;
            list-style: none;
            margin: 0;
            padding: 0;
            border-top: 1px solid var(--egp-border);
            max-width: 26rem;
        }

        .trading-tab {
            display: block;
            width: 100%;
            text-align: left;
            background: none;
            border: 0;
            border-bottom: 1px solid var(--egp-border);
            padding: 0.85rem 0.65rem 0.85rem 0;
            font-family: var(--font-display);
            font-size: clamp(0.82rem, 1.15vw, 0.95rem);
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--egp-muted);
            cursor: pointer;
            transition: color 0.25s ease, padding-left 0.25s var(--ease);
            position: relative;
        }

        .trading-tab:hover {
            color: var(--egp-heading);
        }

        .trading-tab[aria-selected="true"] {
            color: var(--egp-heading);
            font-weight: 800;
            padding-left: 0.85rem;
        }

        .trading-tab[aria-selected="true"]::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 42%;
            background: var(--egp-accent);
        }

        .trading-panels {
            position: relative;
            overflow: hidden;
            background: #0B1220;
            min-height: clamp(16rem, 32vw, 24rem);
            height: 100%;
        }

        .trading-panel {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
        }

        .trading-panel.is-active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }

        .trading-panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.03);
            transition: transform 0.8s var(--ease);
        }

        .trading-panel.is-active img {
            transform: scale(1);
        }

        .trading-panel::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(5, 150, 105, 0.12), transparent 45%),
                linear-gradient(180deg, transparent 55%, rgba(7, 18, 28, 0.35));
            pointer-events: none;
        }

        /* Image-only trading layout (full client banner, no crop) */
        .trading--image-only .trading-inner {
            grid-template-columns: 1fr;
            gap: 0;
            padding: 0 var(--gutter);
        }

        .trading--image-only .trading-panels {
            position: relative;
            min-height: 0;
            height: auto;
            aspect-ratio: auto;
            background: var(--egp-surface);
            overflow: visible;
        }

        .trading--image-only .trading-panel {
            position: relative;
            inset: auto;
            opacity: 1;
            visibility: visible;
        }

        .trading--image-only .trading-panel img {
            width: 100%;
            height: auto;
            object-fit: contain;
            transform: none;
        }

        .trading--image-only .trading-panel::after {
            display: none;
        }

        @media (max-width: 768px) {
            .trading--image-only .trading-inner {
                padding: 0 1.25rem;
            }
        }

        .what-we-do-caps {
            max-width: var(--container);
            margin: 0 auto;
            padding: var(--section-pad-y) var(--gutter) 0;
        }

        .caps-label {
            display: block;
            text-align: center;
            font-family: var(--font-display);
            font-size: var(--eyebrow-size);
            font-weight: 700;
            letter-spacing: var(--eyebrow-tracking);
            text-transform: uppercase;
            color: var(--egp-accent);
            margin-bottom: var(--section-head-gap);
        }

        .cap-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2.25rem);
        }

        .cap-card {
            display: flex;
            flex-direction: column;
            padding: 0;
            background: transparent;
            border: 0;
            min-width: 0;
            border-top: 2px solid var(--egp-accent);
            padding-top: 1.15rem;
            transition: transform 0.25s var(--ease);
        }

        .cap-card:hover {
            transform: translateY(-2px);
        }

        .cap-card h3 {
            font-size: clamp(1.1rem, 1.5vw, 1.3rem);
            font-weight: 800;
            margin: 0 0 0.75rem;
            color: var(--egp-heading);
            letter-spacing: -0.02em;
            line-height: 1.25;
        }

        .cap-card p {
            font-size: 0.98rem;
            color: #5B6575;
            line-height: 1.7;
            font-weight: 500;
            margin: 0;
            max-width: 36ch;
        }

        @media (max-width: 820px) {
            .trading-inner {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .trading-copy {
                gap: 1.15rem;
            }

            .trading-tablist {
                max-width: none;
                flex-direction: row;
                flex-wrap: nowrap;
                overflow-x: auto;
                border-top: 0;
                border-bottom: 1px solid var(--egp-border);
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
            }

            .trading-tab {
                flex: 0 0 auto;
                border-bottom: 0;
                border-right: 1px solid var(--egp-border);
                padding: 0.8rem 1rem;
                white-space: nowrap;
            }

            .trading-tab:last-child {
                border-right: 0;
            }

            .trading-tab[aria-selected="true"] {
                padding-left: 1rem;
            }

            .trading-tab[aria-selected="true"]::before {
                left: 0;
                right: 0;
                top: auto;
                bottom: 0;
                width: 100%;
                height: 2px;
                transform: none;
            }

            .trading-panels {
                min-height: clamp(14rem, 48vw, 18rem);
                aspect-ratio: 16 / 10;
                height: auto;
            }

            .cap-list { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.5rem; }
        }

        @media (max-width: 560px) {
            .cap-list { grid-template-columns: 1fr; gap: 1.75rem; }
            .cap-card p { max-width: none; font-size: 1rem; }
        }

        /* ——— SHARED ——— */
        .section { padding: var(--section-pad-y) 0; }

        .eyebrow {
            display: inline-block;
            font-family: var(--font-display);
            font-size: var(--eyebrow-size);
            font-weight: 700;
            letter-spacing: var(--eyebrow-tracking);
            text-transform: uppercase;
            color: var(--egp-accent);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: var(--heading-size);
            font-weight: 800;
            letter-spacing: -0.025em;
            line-height: 1.15;
            max-width: 18ch;
            margin-bottom: 1rem;
        }

        .section-lead {
            font-size: var(--lead-size);
            color: var(--egp-muted);
            max-width: 38rem;
            line-height: 1.7;
            font-weight: 500;
        }

        .section-head-center {
            text-align: center;
            margin-bottom: var(--section-head-gap);
        }

        .section-head-center .section-title,
        .section-head-center .section-lead {
            margin-left: auto;
            margin-right: auto;
        }

        .section-head-center .section-title { max-width: 18ch; }

        /* ——— PRODUCTS ——— */
        .products {
            background: var(--egp-surface);
            padding: 0 0 var(--section-pad-y);
        }

        .products-intro {
            padding: var(--section-pad-y) 0 clamp(2rem, 4vw, 2.75rem);
        }

        .products-intro .section-title {
            max-width: none;
            font-size: clamp(1.35rem, 2.4vw, 1.85rem);
        }

        .products-intro .section-head-center .section-title {
            max-width: none;
        }

        .products-intro .section-lead {
            max-width: 40rem;
        }

        .products-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(1.25rem, 2.5vw, 2rem);
            width: 100%;
            height: auto;
            min-height: 0;
        }

        .product-panel {
            position: relative;
            display: block;
            height: clamp(16rem, 36vh, 22rem);
            overflow: hidden;
            text-decoration: none;
            color: var(--pure-white);
            isolation: isolate;
            border: 1px solid var(--egp-border);
        }

        .product-panel img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.9s var(--ease);
            z-index: -2;
        }

        .product-panel::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 30%, rgba(15, 23, 42, 0.75) 100%);
        }

        .product-panel:hover img { transform: scale(1.05); }

        .product-panel-body {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.85rem);
            max-width: 24rem;
        }

        .product-panel h3 {
            color: var(--pure-white);
            font-size: clamp(1.05rem, 1.6vw, 1.25rem);
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 0.55rem;
        }

        .product-panel h3::after {
            content: '';
            display: block;
            width: 2rem;
            height: 2px;
            background: var(--pure-white);
            margin-top: 0.7rem;
        }

        .product-panel p {
            color: rgba(255, 255, 255, 0.9);
            font-size: clamp(0.88rem, 1.15vw, 0.98rem);
            line-height: 1.55;
            max-width: 22rem;
            margin-bottom: 1rem;
        }

        .product-panel-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-family: var(--font-display);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #A7F3D0;
        }

        .product-panel-cta i {
            transition: transform 0.25s ease;
            font-size: 0.75rem;
        }

        .product-panel:hover .product-panel-cta i {
            transform: translateX(4px);
        }

        @media (max-width: 900px) {
            .products-split {
                grid-template-columns: 1fr;
                gap: 1.15rem;
            }
            .product-panel { height: clamp(14rem, 42vw, 18rem); }
        }

        /* ——— WHY CHOOSE US ——— */
        .why {
            background:
                radial-gradient(ellipse 70% 45% at 0% 100%, rgba(5, 150, 105, 0.07), transparent 55%),
                linear-gradient(180deg, var(--egp-surface) 0%, #F4F7F5 100%);
            padding: var(--section-pad-y) 0;
            border-top: 1px solid rgba(15, 23, 42, 0.06);
        }

        .why-head {
            text-align: center;
            max-width: 40rem;
            margin: 0 auto var(--section-head-gap);
        }

        .why-head .eyebrow {
            display: block;
            margin-bottom: 1rem;
        }

        .why-head h2 {
            font-size: var(--heading-size);
            font-weight: 800;
            letter-spacing: -0.025em;
            line-height: 1.15;
            color: var(--egp-heading);
            margin: 0;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.25rem, 2.5vw, 1.75rem);
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .why-item {
            border-top: 2px solid var(--egp-accent);
            padding-top: 1.15rem;
            min-width: 0;
            transition: transform 0.25s var(--ease);
        }

        .why-item:hover {
            transform: translateY(-2px);
        }

        .why-icon {
            display: grid;
            place-items: center;
            width: 2.5rem;
            height: 2.5rem;
            margin-bottom: 0.95rem;
            color: var(--egp-accent);
            font-size: 1.15rem;
            border: 1.5px solid rgba(5, 150, 105, 0.3);
        }

        .why-item h3 {
            font-size: clamp(0.98rem, 1.2vw, 1.08rem);
            font-weight: 800;
            color: var(--egp-heading);
            letter-spacing: -0.015em;
            line-height: 1.3;
            margin: 0 0 0.45rem;
        }

        .why-item p {
            font-size: 0.92rem;
            color: var(--egp-muted);
            line-height: 1.55;
            font-weight: 500;
            margin: 0;
            max-width: 28ch;
        }

        @media (max-width: 960px) {
            .why-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 560px) {
            .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .why-item p { max-width: none; }
        }

        /* ——— NETWORK / GROUP COMPANIES ——— */
        .network {
            background: var(--egp-surface);
            padding: var(--section-pad-y) 0;
        }

        .network-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: clamp(2rem, 4vw, 2.75rem) 1.75rem;
            align-items: start;
        }

        .network-item {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .network-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: clamp(7.5rem, 14vw, 9.5rem);
            margin-bottom: 0;
            padding: 0.5rem;
        }

        .network-logo img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
        }

        /* Client logos: Al Madina & Onyx larger; TUG marks smaller */
        .network-logo--tug img {
            max-height: 58%;
            max-width: 78%;
        }

        .network-logo--madina {
            height: clamp(8.5rem, 16vw, 11rem);
            overflow: visible;
        }

        .network-logo--madina img {
            max-height: 100%;
            max-width: 100%;
            transform: scale(1.42);
        }

        .network-logo--onyx img {
            max-height: 100%;
            max-width: 100%;
            transform: scale(1.22);
        }

        .network-item h3 {
            font-size: clamp(0.95rem, 1.2vw, 1.05rem);
            font-weight: 800;
            margin: 0;
            color: var(--egp-heading);
            letter-spacing: -0.015em;
            line-height: 1.3;
        }

        .network .section-title {
            font-weight: 800;
            max-width: 18ch;
        }

        @media (max-width: 900px) {
            .network-grid { grid-template-columns: 1fr 1fr; }
            .network-logo { height: 7.5rem; }
            .network-logo--madina img { transform: scale(1.32); }
            .network-logo--onyx img { transform: scale(1.15); }
        }

        @media (max-width: 560px) {
            .network-grid { grid-template-columns: 1fr; }
            .network-logo { height: 8rem; max-width: 16rem; }
        }

        /* ——— FAQ ——— */
        .faq {
            background:
                radial-gradient(ellipse 60% 50% at 50% 0%, rgba(5, 150, 105, 0.06), transparent 55%),
                linear-gradient(180deg, #F4F7F5 0%, var(--egp-surface) 100%);
            padding: var(--section-pad-y) 0;
        }

        .faq-kicker {
            text-align: left;
            margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
            max-width: none;
        }

        .faq-kicker .eyebrow {
            display: block;
            margin: 0;
            letter-spacing: var(--eyebrow-tracking);
            line-height: 1.55;
            font-size: var(--eyebrow-size);
        }

        .faq-row {
            display: grid;
            grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
            gap: clamp(1.5rem, 4vw, 3rem);
            align-items: start;
        }

        .faq-intro {
            max-width: 18rem;
            padding-top: 0.35rem;
        }

        .faq-intro h2 {
            font-size: var(--heading-size);
            font-weight: 800;
            letter-spacing: -0.025em;
            text-transform: uppercase;
            line-height: 1.15;
            color: var(--egp-heading);
            margin: 0 0 0.85rem;
        }

        .faq-intro p {
            font-size: var(--lead-size);
            color: var(--egp-muted);
            line-height: 1.65;
            font-weight: 500;
            margin: 0;
        }

        .faq-list {
            max-width: none;
            margin: 0;
            border-top: 1px solid var(--egp-border);
        }

        .faq-item {
            border-bottom: 1px solid var(--egp-border);
        }

        .faq-item summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.25rem;
            padding: 1.35rem 0;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: clamp(1rem, 1.3vw, 1.1rem);
            color: var(--egp-heading);
            line-height: 1.4;
            transition: color 0.2s ease;
        }

        .faq-item summary:hover {
            color: var(--egp-accent-deep);
        }

        .faq-item summary::-webkit-details-marker { display: none; }

        .faq-item summary i {
            color: var(--egp-accent);
            font-size: 0.85rem;
            flex-shrink: 0;
            transition: transform 0.25s ease;
        }

        .faq-item[open] summary {
            color: var(--egp-accent-deep);
            font-weight: 700;
        }

        .faq-item[open] summary i { transform: rotate(45deg); }

        .faq-item p {
            padding: 0 2rem 1.4rem 0;
            color: var(--egp-muted);
            font-size: 1rem;
            line-height: 1.75;
            max-width: 42rem;
            margin: 0;
        }

        @media (max-width: 900px) {
            .faq-row {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .faq-intro {
                max-width: none;
                text-align: center;
                padding-top: 0;
            }

            .faq-intro h2 {
                max-width: 16ch;
                margin-left: auto;
                margin-right: auto;
            }

            .faq-intro p {
                max-width: 36rem;
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* ——— CLOSING CTA ——— */
        .close-cta {
            background: var(--egp-accent-deep);
            padding: clamp(2.25rem, 5vw, 3.5rem) 0;
        }

        .close-cta-panel {
            max-width: 34rem;
            margin: 0 auto;
            background: var(--egp-surface);
            text-align: center;
            padding: clamp(1.85rem, 4vw, 2.5rem) clamp(1.5rem, 3.5vw, 2.25rem);
        }

        .close-cta-panel h2 {
            font-size: clamp(1.45rem, 2.8vw, 2rem);
            font-weight: 800;
            letter-spacing: -0.025em;
            line-height: 1.2;
            color: var(--egp-heading);
            margin: 0 0 0.85rem;
        }

        .close-cta-panel p {
            max-width: 28rem;
            margin: 0 auto 1.5rem;
            font-size: clamp(0.95rem, 1.2vw, 1.05rem);
            color: var(--egp-muted);
            font-weight: 500;
            line-height: 1.6;
        }

        .close-cta-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .btn-close {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            text-decoration: none;
            padding: 0.85rem 1.35rem;
            font-family: var(--font-display);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        .btn-close i {
            font-size: 0.95rem;
        }

        .btn-close--primary {
            background: var(--egp-accent);
            color: var(--pure-white);
        }

        .btn-close--primary:hover {
            background: var(--egp-accent-deep);
            transform: translateY(-2px);
        }

        .btn-close--whatsapp {
            background: var(--pure-white);
            color: var(--egp-heading);
            border: 1px solid var(--egp-border);
        }

        .btn-close--whatsapp:hover {
            background: #F8FAFC;
            border-color: rgba(15, 23, 42, 0.12);
            transform: translateY(-2px);
        }

        @media (max-width: 480px) {
            .close-cta-actions {
                flex-direction: column;
                width: 100%;
            }

            .btn-close {
                width: 100%;
            }
        }

        /* ——— FOOTER ——— */
        footer {
            background: #0B1220;
            color: rgba(255, 255, 255, 0.72);
            padding: 4rem 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding-bottom: 3rem;
        }

        .footer-col h4 {
            color: var(--pure-white);
            font-size: 0.9rem;
            margin-bottom: 1.15rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .footer-links {
            list-style: none;
            display: grid;
            gap: 0.65rem;
        }

        .footer-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .footer-links a:hover { color: #34D399; }

        .footer-contact {
            display: grid;
            gap: 0.75rem;
        }

        .footer-contact a,
        .footer-contact span {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.95rem;
        }

        .footer-contact a:hover { color: #34D399; }

        .footer-contact i {
            color: #34D399;
            margin-top: 0.2rem;
            width: 1rem;
        }

        .footer-base {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.25rem 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0.75rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 800px) {
            .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
        }

        .wa-float {
            position: fixed;
            right: 1.25rem;
            bottom: 1.25rem;
            z-index: 900;
            width: 3.25rem;
            height: 3.25rem;
            border-radius: 50%;
            background: #25D366;
            color: var(--pure-white);
            display: grid;
            place-items: center;
            font-size: 1.55rem;
            text-decoration: none;
            box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
            transition: transform 0.25s ease;
        }

        .wa-float:hover { transform: scale(1.06); }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.98);
            transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
        }

        .reveal.is-visible,
        .reveal-scale.is-visible {
            opacity: 1;
            transform: none;
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal, .reveal-scale {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }
