        @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;
            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;
        }

        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; }
        }

        @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; }
        }

        /* ——— 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-lead {
            font-size: var(--lead-size);
            color: var(--egp-muted);
            max-width: 38rem;
            line-height: 1.7;
            font-weight: 500;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 2.75rem;
            height: 2px;
            margin-top: 0.65rem;
            background: var(--egp-accent);
        }

        /* ——— 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;
            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%);
            }
        }

        /* ——— JUMP ——— */
        .products-jump {
            background: var(--egp-surface);
            border-bottom: 1px solid var(--egp-border);
            padding: 1rem 0;
        }

        .products-jump-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.25rem 2rem;
        }

        .products-jump-label {
            font-family: var(--font-display);
            font-size: var(--eyebrow-size);
            font-weight: 700;
            letter-spacing: var(--eyebrow-tracking);
            text-transform: uppercase;
            color: var(--egp-muted);
        }

        .products-jump a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--egp-heading);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            border-bottom: 2px solid transparent;
            padding-bottom: 0.2rem;
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        .products-jump a i { color: var(--egp-accent); font-size: 0.85rem; }
        .products-jump a:hover {
            color: var(--egp-accent);
            border-bottom-color: var(--egp-accent);
        }

        /* ——— CATALOG SECTIONS ——— */
        .catalog {
            padding: var(--section-pad-y) 0;
            scroll-margin-top: calc(var(--nav-height) + 0.75rem);
        }

        .catalog--commodities {
            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);
        }

        .catalog--fertilizers {
            background: var(--egp-surface);
        }

        .catalog-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
            gap: clamp(2rem, 4vw, 3.25rem);
            align-items: start;
        }

        .catalog-copy {
            position: sticky;
            top: calc(var(--nav-height) + 1.5rem);
        }

        .catalog-copy .section-title {
            max-width: 14ch;
            text-transform: uppercase;
        }

        .catalog-copy .section-lead {
            margin-bottom: 1.5rem;
            max-width: 28rem;
        }

        .catalog-features {
            list-style: none;
            display: grid;
            gap: 0.75rem;
            margin: 0 0 1.75rem;
            padding: 0;
            max-width: 22rem;
        }

        .catalog-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--egp-heading);
        }

        .catalog-features i {
            color: var(--egp-accent);
            font-size: 0.85rem;
            width: 1rem;
            flex-shrink: 0;
        }

        .btn-quote {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
            background: var(--egp-accent);
            color: var(--pure-white);
            padding: 0.95rem 1.75rem;
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            transition: background 0.25s ease, transform 0.25s ease;
        }

        .btn-quote:hover {
            background: var(--egp-accent-deep);
            transform: translateY(-2px);
        }

        .btn-quote i { transition: transform 0.25s ease; }
        .btn-quote:hover i { transform: translateX(4px); }

        .product-grid {
            display: grid;
            gap: 1px;
            /* background: var(--egp-border); */
            /* border: 1px solid var(--egp-border); */
        }

        .product-grid--commodities {
            grid-template-columns: repeat(6, 1fr);
            grid-auto-rows: minmax(11rem, 1fr);
        }

        .product-grid--commodities .product-tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
        .product-grid--commodities .product-tile:nth-child(2) { grid-column: 3 / 5; grid-row: 1 / 2; }
        .product-grid--commodities .product-tile:nth-child(3) { grid-column: 5 / 7; grid-row: 1 / 2; }
        .product-grid--commodities .product-tile:nth-child(4) { grid-column: 3 / 5; grid-row: 2 / 3; }
        .product-grid--commodities .product-tile:nth-child(5) { grid-column: 5 / 7; grid-row: 2 / 3; }

        .product-grid--fertilizers {
            grid-template-columns: repeat(2, 1fr);
        }

        .product-tile {
            position: relative;
            display: block;
            min-height: 12rem;
            overflow: hidden;
            text-decoration: none;
            color: var(--pure-white);
            isolation: isolate;
            background: var(--egp-heading);
        }

        .product-tile img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s var(--ease);
            z-index: -2;
        }

        .product-tile::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 20%, rgba(15, 23, 42, 0.78) 100%);
        }

        .product-tile:hover img { transform: scale(1.06); }

        .product-tile-body {
            position: absolute;
            inset: auto 0 0 0;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.35rem 1.25rem;
        }

        .product-tile h3 {
            color: var(--pure-white);
            font-size: clamp(1.05rem, 1.4vw, 1.2rem);
            font-weight: 800;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            margin-bottom: 0.35rem;
        }

        .product-tile span:not(.product-tile-arrow) {
            display: block;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.88rem;
            line-height: 1.45;
            font-weight: 500;
            max-width: 18rem;
        }

        .product-tile-arrow {
            flex-shrink: 0;
            width: 2.25rem;
            height: 2.25rem;
            display: grid;
            place-items: center;
            border: 1.5px solid rgba(255, 255, 255, 0.45);
            color: var(--pure-white);
            font-size: 0.85rem;
            transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        .product-tile:hover .product-tile-arrow {
            background: var(--egp-accent);
            border-color: var(--egp-accent);
            transform: translateX(3px);
        }

        @media (max-width: 960px) {
            .catalog-layout { grid-template-columns: 1fr; }
            .catalog-copy { position: static; }
        }

        @media (max-width: 768px) {
            .product-grid--commodities {
                grid-template-columns: 1fr 1fr;
                grid-auto-rows: minmax(10rem, auto);
            }
            .product-grid--commodities .product-tile:nth-child(n) {
                grid-column: auto;
                grid-row: auto;
            }
            .product-grid--commodities .product-tile:first-child {
                grid-column: 1 / -1;
                min-height: 14rem;
            }
        }

        @media (max-width: 560px) {
            .product-grid--fertilizers { grid-template-columns: 1fr; }
            .product-tile { min-height: 11.5rem; }
        }

        /* ——— WHY PARTNER ——— */
        .partner {
            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);
        }

        .partner-head {
            text-align: center;
            max-width: 40rem;
            margin: 0 auto var(--section-head-gap);
        }

        .partner-head .eyebrow { display: block; margin-bottom: 1rem; }

        .partner-head h2 {
            font-size: var(--heading-size);
            font-weight: 800;
            letter-spacing: -0.025em;
            line-height: 1.15;
            color: var(--egp-heading);
            margin: 0;
        }

        .partner-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;
        }

        .partner-item {
            border-top: 2px solid var(--egp-accent);
            padding-top: 1.15rem;
            min-width: 0;
            transition: transform 0.25s var(--ease);
        }

        .partner-item:hover { transform: translateY(-2px); }

        .partner-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);
        }

        .partner-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;
        }

        .partner-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) {
            .partner-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 560px) {
            .partner-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .partner-item p { max-width: none; }
        }

        /* ——— 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;
            }
        }
