        @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);
        }

        .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;
            line-height: 1.05;
            gap: 0.2rem;
        }

        .brand-text {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.2rem;
            letter-spacing: 0.08em;
            color: var(--egp-heading);
            text-transform: uppercase;
        }

        .brand-sub {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 0.6rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--egp-muted);
        }

        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);
        }

        .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; }
            .brand-sub { display: none; }
        }

        @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.2rem; }
        }

        @media (max-width: 480px) {
            :root { --nav-height: 5rem; }
            .brand-logo-img { max-height: 44px; }
            .brand-text { font-size: 1.1rem; }
            .menu-trigger { font-size: 1.5rem; }
        }

        /* ——— SHARED ——— */
        .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-title::after {
            content: '';
            display: block;
            width: 2.75rem;
            height: 2px;
            margin-top: 0.65rem;
            background: var(--egp-accent);
        }

        .section-lead {
            font-size: var(--lead-size);
            color: var(--egp-muted);
            max-width: 38rem;
            line-height: 1.7;
            font-weight: 500;
        }

        .body-text {
            font-size: 0.98rem;
            color: var(--egp-muted);
            line-height: 1.7;
            font-weight: 500;
            margin-bottom: 1.1rem;
            max-width: 42rem;
        }

        .tagline {
            font-family: var(--font-display);
            font-size: 0.98rem;
            font-weight: 600;
            font-style: italic;
            color: var(--egp-accent);
            margin: 0.35rem 0 1rem;
        }

        /* ——— HERO ——— */
        .hero {
            position: relative;
            min-height: 78vh;
            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;
            overflow: hidden;
        }

        .hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 58%;
            transform: scale(1.12);
            transform-origin: center 58%;
            will-change: transform;
            animation: kenBurns 14s ease-in-out infinite alternate;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(90deg, rgba(15, 23, 42, 0.68) 0%, rgba(15, 23, 42, 0.42) 48%, rgba(15, 23, 42, 0.28) 100%);
            pointer-events: none;
        }

        @keyframes kenBurns {
            0% { transform: scale(1.12); }
            100% { transform: scale(1.28); }
        }

        .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: none;
            line-height: 1.08;
            margin-bottom: 1.15rem;
            opacity: 0;
            animation: heroIn 1s var(--ease) 0.3s forwards;
        }

        .hero-copy {
            color: rgba(255, 255, 255, 0.88);
            font-size: var(--lead-size);
            line-height: 1.7;
            max-width: 34rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: heroIn 1s var(--ease) 0.42s 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.55s 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-eyebrow, .hero h1, .hero-copy, .btn-hero { opacity: 1; animation: none; }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: calc(var(--nav-height) + 2.25rem) 0 3.25rem;
            }
            .hero-overlay {
                background: linear-gradient(to top, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.5) 55%, rgba(15, 23, 42, 0.38) 100%);
            }
        }

        /* ——— STORY ——— */
        .story {
            background: var(--egp-surface);
            padding: var(--section-pad-y) 0;
        }

        .story .section-title { max-width: 22ch; }

        .highlight-list {
            list-style: none;
            margin: 1.75rem 0 0;
            display: grid;
            gap: 0.85rem;
            max-width: 40rem;
        }

        .highlight-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-family: var(--font-display);
            font-size: clamp(0.98rem, 1.2vw, 1.08rem);
            font-weight: 600;
            color: var(--egp-heading);
            line-height: 1.45;
        }

        .highlight-list i {
            color: var(--egp-accent);
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        /* ——— JOURNEY ——— */
        .journey {
            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%);
            padding: var(--section-pad-y) 0;
            border-top: 1px solid rgba(15, 23, 42, 0.06);
            border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        }

        .journey-copy {
            margin-top: var(--section-head-gap);
            max-width: 52rem;
        }

        .journey-kicker {
            font-family: var(--font-display);
            font-size: clamp(1.1rem, 1.5vw, 1.3rem);
            font-weight: 800;
            color: var(--egp-heading);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.25;
        }

        .journey-copy .body-text {
            max-width: none;
        }

        /* ——— TIMELINE ——— */
        .timeline {
            background: var(--egp-surface);
            padding: var(--section-pad-y) 0;
        }

        .timeline-frame {
            margin-top: var(--section-head-gap);
            border: 1px solid var(--egp-border);
            overflow: hidden;
        }

        .timeline-frame img {
            width: 100%;
            height: auto;
        }

        /* ——— PARTNERS ——— */
        .partners {
            background:
                radial-gradient(ellipse 70% 45% at 100% 0%, rgba(5, 150, 105, 0.06), 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);
            scroll-margin-top: calc(var(--nav-height) + 0.75rem);
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: clamp(1.5rem, 3vw, 2.25rem) 1.5rem;
            margin-top: var(--section-head-gap);
            align-items: start;
        }

        .partner-item {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            padding-top: 1rem;
            border-top: 2px solid var(--egp-accent);
            transition: transform 0.25s var(--ease);
        }

        .partner-item:hover { transform: translateY(-2px); }

        .partner-item img {
            display: block;
            box-sizing: content-box;
            height: 4.25rem;
            width: auto;
            max-width: 9.5rem;
            object-fit: contain;
            object-position: center bottom;
            flex-shrink: 0;
            margin: 0 0 0.7rem;
        }

        .partner-item--cmec img {
            height: 4.25rem;
            max-width: 11rem;
        }

        .partner-item span {
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--egp-muted);
            line-height: 1.3;
            margin: 0;
            min-height: 2.4em;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: center;
        }

        @media (max-width: 900px) {
            .partners-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 480px) {
            .partners-grid { grid-template-columns: 1fr; }
        }

        /* ——— DIVISIONS ——— */
        .division {
            padding: var(--section-pad-y) 0;
            scroll-margin-top: calc(var(--nav-height) + 0.75rem);
            background: var(--egp-surface);
        }

        .division--alt {
            background:
                radial-gradient(ellipse 70% 50% at 0% 100%, rgba(5, 150, 105, 0.06), 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);
        }

        .division-header {
            margin-bottom: var(--section-head-gap);
            max-width: 40rem;
        }

        .division-header .section-title {
            max-width: 28ch;
            text-transform: none;
            margin-bottom: 0.65rem;
        }

        .division-sub {
            font-family: var(--font-display);
            font-size: clamp(0.92rem, 1.2vw, 1rem);
            font-weight: 700;
            color: var(--egp-heading);
            margin: -0.15rem 0 0.5rem;
            line-height: 1.4;
        }

        .division-split {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
            gap: clamp(1.75rem, 4vw, 3rem);
            align-items: stretch;
        }

        .division-split > div:first-child {
            display: flex;
            flex-direction: column;
            min-height: 0;
        }

        .division-content-box {
            background: #F1F4F3;
            border: 1px solid var(--egp-border);
            border-radius: 0.75rem;
            padding: 1.65rem;
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .division--alt .division-content-box {
            background: var(--egp-surface);
        }

        .entity-logo {
            max-height: 2.75rem;
            width: auto;
            margin-bottom: 1rem;
        }

        .entity-name {
            font-size: clamp(1.1rem, 1.5vw, 1.3rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.25;
            margin-bottom: 0.65rem;
        }

        .info-box {
            background: var(--egp-surface);
            border: 1px solid var(--egp-border);
            border-left: 4px solid var(--egp-accent);
            border-radius: 0.625rem;
            padding: 1.35rem;
            margin-top: 1.25rem;
        }

        .division--alt .info-box {
            background: #F1F4F3;
        }

        .info-box h4 {
            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-bottom: 0.85rem;
        }

        .info-box ul,
        .capability-block ul,
        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .info-box li,
        .capability-block li,
        .feature-list li {
            position: relative;
            padding-left: 1.1rem;
            font-size: 0.92rem;
            color: var(--egp-muted);
            font-weight: 500;
            line-height: 1.55;
        }

        .info-box li::before,
        .capability-block li::before,
        .feature-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5em;
            width: 6px;
            height: 6px;
            background: var(--egp-accent);
            border-radius: 50%;
        }

        .geo-list {
            display: grid !important;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: repeat(3, auto);
            grid-auto-flow: column;
            gap: 0.5rem 1.5rem;
        }

        .capability-block {
            margin-top: 1.5rem;
            padding-top: 1.25rem;
            border-top: 1px solid var(--egp-border);
        }

        .capability-block h4 {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: var(--eyebrow-tracking);
            text-transform: uppercase;
            color: var(--egp-accent);
            margin-bottom: 0.85rem;
        }

        .capability-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .capability-grid--3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .capability-col {
            border-top: 2px solid var(--egp-accent);
            padding-top: 1rem;
        }

        .capability-col h4 {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: var(--eyebrow-tracking);
            text-transform: uppercase;
            color: var(--egp-accent);
            margin-bottom: 0.85rem;
        }

        .dual-boxes {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.85rem;
            margin-top: 1.25rem;
        }

        .triple-boxes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.85rem;
            margin-top: 1.25rem;
        }

        .mini-box {
            background: var(--egp-surface);
            border: 1px solid var(--egp-border);
            border-radius: 0.625rem;
            padding: 1.2rem;
        }

        .division--alt .mini-box {
            background: #F1F4F3;
        }

        .mini-box h4 {
            font-size: clamp(0.98rem, 1.2vw, 1.08rem);
            font-weight: 800;
            margin-bottom: 0.65rem;
            color: var(--egp-accent);
            letter-spacing: -0.015em;
            line-height: 1.3;
        }

        .mini-box ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }

        .mini-box li {
            font-size: 0.92rem;
            color: var(--egp-muted);
            line-height: 1.55;
        }

        .division-visuals {
            position: relative;
            align-self: stretch;
            min-height: 0;
            border-radius: 0.625rem;
            overflow: hidden;
        }

        .division-visuals img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        @media (max-width: 900px) {
            .division-split { grid-template-columns: 1fr; }
            .capability-grid,
            .capability-grid--3,
            .dual-boxes,
            .triple-boxes { grid-template-columns: 1fr; }

            .division-visuals {
                min-height: clamp(16rem, 48vw, 22rem);
            }
        }

        /* ——— PRESENCE ——— */
        .presence {
            background: var(--egp-surface);
            padding: var(--section-pad-y) 0;
            scroll-margin-top: calc(var(--nav-height) + 0.75rem);
        }

        .presence-head {
            text-align: center;
            margin-bottom: var(--section-head-gap);
        }

        .presence-head .section-title {
            max-width: none;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 0.85rem;
        }

        .presence-head .section-title::after {
            display: none;
        }

        .presence-line {
            font-size: var(--lead-size);
            color: var(--egp-muted);
            font-weight: 500;
            line-height: 1.6;
            max-width: 48rem;
            margin: 0 auto;
        }

        .presence-map {
            width: 100%;
            overflow: hidden;
        }

        .presence-map img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ——— 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;
            }
        }
