/* ===============================================================
 
   NOTE — .egs-service-card is defined twice in the source with two
   different designs (a 16px-radius light card w/ .egs-card-top /
   .egs-featured, and a 12px-radius card that inverts to dark green
   on hover). Both are kept below, in original order, because I
   can't tell which one you want live — tell me and I'll cut the
   other.

   NOTE — :root --egs-gray changes value later in the file
   (#f7f9f7 → #f2f6f2, plus --egs-amber/--egs-mono get added). That
   is a real change, not a duplicate, so it's kept as its own block
   further down rather than merged.
   =============================================================== */

/* ---------- SHARED / GLOBAL (was repeated across every page) ---------- */

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;

    /* Typography */
    /* font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", sans-serif; */
    /* font-family: "Inter", sans-serif; */
    font-size: 16px;
    /* font-weight: 500; */
    line-height: 1.7;
    color: #111111 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    -webkit-overflow-scrolling: touch;
}

/* Paragraphs */
p {
    /* font-size: 15px; */
    /* font-weight: 400; */
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Small Text */
small,
.small {
    /* font-size: 13px; */
    font-weight: 400;
    line-height: 1.6;
}

/* Lists */
li {
    /* font-size: 15px; */
    font-weight: 400;
    line-height: 1.8;
}

/* Links */
a {
    /* font-weight: 500; */
    text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #111827;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.9rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    -webkit-overflow-scrolling: touch;
} */

:root {
    --egs-green-dark: #0f2b1f;
    --egs-green: #4c9a4c;
    --egs-green-light: #7ec26a;
    --egs-ink: #1f3d2c;
    --egs-gray: #f7f9f7;
    --egs-border: #e6ece6;
}

.egs-eyebrow {
    color: var(--egs-green);
    font-weight: 700;
    /* font-size: 13px; */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

/* shared hero CTA arrow + rise-in animation, used by every hero */
.egs-slide-actions .btn-get-started::after {
    content: "\2192";
    transition: transform .25s ease;
}

.egs-slide-actions .btn-get-started:hover,
.egs-slide-actions .btn-get-started:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(15, 43, 31, 0.4);
}

.egs-slide-actions .btn-get-started:hover::after {
    transform: translateX(3px);
}

@keyframes egsHeroRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575px) {
    .egs-hero-v2 {
        height: auto;
    }

    .egs-slide-overlay {
        background:
            linear-gradient(180deg,
                rgba(9, 26, 18, 0.55) 0%,
                rgba(9, 26, 18, 0.88) 55%,
                rgba(9, 26, 18, 0.96) 100%);
    }

    .egs-slide-content {
        align-items: flex-end;
        padding: 0 22px 56px;
    }

    .egs-slide-inner {
        max-width: 100%;
    }

    .egs-slide-inner p {
        max-width: 100%;
    }

    .egs-slide-actions {
        width: 100%;
    }

    .egs-slide-actions .btn-get-started {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .egs-slide-inner {
        animation: none;
    }

    .egs-slide-actions .btn-get-started,
    .egs-slide-actions .btn-get-started::after {
        transition: none !important;
    }
}

/* shared industry-page eyebrow + pulsing dot (was repeated) */
.egs-ind-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--egs-green);
}

.egs-ind-eyebrow.on-dark {
    color: var(--egs-green-light);
}

.egs-ind-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--egs-green);
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(76, 154, 76, 0.55);
    animation: egsIndPulse 2.2s ease-out infinite;
}

.egs-ind-eyebrow.on-dark .egs-ind-dot {
    background: var(--egs-green-light);
    box-shadow: 0 0 0 0 rgba(126, 194, 106, 0.55);
}

@keyframes egsIndPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 154, 76, 0.5);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(76, 154, 76, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 154, 76, 0);
    }
}

.egs-ip-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* font-size: 12px; */
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--egs-green);
    margin-bottom: 14px;
}

.egs-ip-eyebrow.center {
    justify-content: center;
    width: 100%;
}

.egs-ip-eyebrow.on-dark {
    color: var(--egs-green-light);
}

/* shared "managed services" mono eyebrow + pulsing dot (was repeated many times) */
.egs-msc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    letter-spacing: 1.4px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--egs-green-light);
}

.egs-msc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--egs-green-light);
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(126, 194, 106, 0.6);
    animation: egsMscPulse 2.2s ease-out infinite;
}

@keyframes egsMscPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(126, 194, 106, 0.55);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(126, 194, 106, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(126, 194, 106, 0);
    }
}

/* shared msc button pair (was repeated in every "managed services"-style hero) */
.egs-msc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    /* font-family: var(--egs-mono, 'JetBrains Mono', 'Courier New', monospace); */
    font-weight: 600;
    /* font-size: 13.5px; */
    padding: 13px 24px;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.egs-msc-btn--solid {
    background: var(--egs-green);
    color: #fff;
}

.egs-msc-btn--solid:hover {
    background: #3f8a3f;
    color: #fff;
    transform: translateY(-2px);
}

.egs-msc-btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
}

.egs-msc-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* shared scroll-to-top button (was repeated) */
.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
    transition: all .3s ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    z-index: 9999;
}

.scroll-top i {
    font-size: 26px;
    line-height: 1;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    animation: pulse 2s infinite;
}

.scroll-top:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 16px 35px rgba(76, 175, 80, .35);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, .5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(76, 175, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

@media (max-width: 768px) {
    .scroll-top {
        width: 46px;
        height: 46px;
        right: 18px;
        bottom: 18px;
    }

    .scroll-top i {
        font-size: 22px;
    }
}

/* ---------- INDEX PAGE — Hero carousel ---------- */

.egs-hero-v2 {
    background: var(--egs-green-dark);
    padding: 0;
}

.egs-slider {
    position: relative;
    overflow: hidden;
    height: clamp(420px, 68vh, 720px);
}

.egs-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform .55s cubic-bezier(.65, .05, .36, 1);
    will-change: transform;
}

.egs-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.egs-slide-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.egs-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--egs-img-pos, 65% center);
    /* was: center */
    display: block;
}

.egs-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(15, 43, 31, 0.94) 0%,
            rgba(15, 43, 31, 0.85) 35%,
            rgba(15, 43, 31, 0.45) 65%,
            rgba(15, 43, 31, 0.10) 100%);
}

.egs-slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 24px;
}

@media (min-width: 992px) {
    .egs-slide-content {
        padding-left: 8%;
        /* was: 5% */
    }
}

.egs-slide-inner {
    /* max-width: 500px; */
    color: #fff;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 4;
}

/* @media (min-width: 992px) {
    .egs-slide-content {
        padding-left: 5%;
    }
} */

@media (max-width: 991px) {
    .egs-slider {
        height: clamp(480px, 82vh, 620px);
    }

    .egs-slide-overlay {
        background: linear-gradient(90deg,
                rgba(15, 43, 31, 0.96) 0%,
                rgba(15, 43, 31, 0.92) 28%,
                rgba(15, 43, 31, 0.60) 50%,
                rgba(15, 43, 31, 0.15) 78%,
                rgba(15, 43, 31, 0.05) 100%);
    }

    .egs-slide-content {
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .egs-slide-inner {
        max-width: 100%;
    }

    .egs-arrow {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
}

@media (max-width: 575px) {

    .egs-arrow,
    .egs-arrow-prev,
    .egs-arrow-next {
        display: none !important;
    }
}

.egs-slide-inner h1,
.egs-slide-inner h2,
.egs-slide-inner h3,
.egs-slide-inner h4,
.egs-slide-inner h5,
.egs-slide-inner h6 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #fff !important;
    margin: 0 0 18px;
}

.egs-slide-inner h1 {
    font-size: clamp(32px, 4.2vw, 52px);
}

/* .egs-slide-inner h2 {
    font-size: clamp(28px, 3.8vw, 44px);
} */

/* .egs-slide-inner h3 {
    font-size: clamp(24px, 3.4vw, 38px);
}

.egs-slide-inner h4 {
    font-size: clamp(21px, 3vw, 32px);
}

.egs-slide-inner h5 {
    font-size: clamp(19px, 2.6vw, 26px);
}

.egs-slide-inner h6 {
    font-size: clamp(17px, 2.2vw, 22px);
} */

.egs-slide-inner h1 span,
.egs-slide-inner h2 span,
.egs-slide-inner h3 span,
.egs-slide-inner h4 span,
.egs-slide-inner h5 span,
.egs-slide-inner h6 span {
    color: var(--egs-green-light);
}

/* .egs-slide-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(14.5px, 1.5vw, 17px);
    line-height: 1.65;
    margin: 0 0 26px;
    max-width: 480px;
} */

@media (max-width: 991px) {
    .egs-slide-inner p {
        max-width: 100%;
    }
}

.egs-slide-inner .egs-eyebrow {
    color: var(--egs-green-light);
    background: none;
    padding: 0;
    border-radius: 0;
    /* font-size: 13px; */
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.egs-slide-inner p strong {
    color: #fff;
    font-weight: 700;
}

.egs-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.egs-slide-badge img {
    height: 16px;
    width: auto;
    display: block;
}

.egs-slide-actions {
    display: flex;
    gap: 12px;
}

.egs-slide-actions .btn-get-started,
.egs-slide-actions .egs-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    height: 48px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: .25s ease;
}

.egs-slide-actions .btn-get-started {
    background: var(--egs-green);
    color: #fff;
    border: 1px solid var(--egs-green);
}

.egs-slide-actions .btn-get-started:hover {
    background: #3f8a3f;
}

.egs-slide-actions .egs-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .6);
}

.egs-slide-actions .egs-btn-outline:hover {
    background: rgba(255, 255, 255, .1);
}

.egs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(2px);
    transition: background .2s ease;
}

.egs-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.egs-arrow-prev {
    left: 14px;
}

.egs-arrow-next {
    right: 14px;
}

.egs-dots {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.egs-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .2s ease;
}

.egs-dot.active {
    background: var(--egs-green-light);
    width: 22px;
    border-radius: 5px;
}

@media (max-width: 575px) {
    .egs-slide-actions {
        flex-direction: column;
    }

    .egs-slide-media {
        display: none;
    }

    .egs-slide-overlay {
        background: var(--egs-green-dark);
    }

    .egs-slider {
        height: auto;
        min-height: 420px;
    }

    .egs-slide {
        height: auto;
        min-height: 420px;
    }

    .egs-slide-content {
        min-height: 420px;
        align-items: center;
        justify-content: center;
        padding: 70px 20px;
        text-align: center;
    }

    .egs-slide-inner {
        max-width: 100%;
        padding: 0;
    }

    .egs-slide-actions {
        display: flex;
        gap: 10px;
        width: 100%;
    }

    .egs-slide-actions a {
        min-width: 0;
        padding: 12px 10px;
        font-size: 13px;
        text-align: center;
        white-space: normal;
    }
}

/* ---------- INDEX PAGE — Stats bar ---------- */

.egs-stats {
    position: relative;
    z-index: 2;
    background: var(--egs-gray);
    padding: 30px 0;
    border-bottom: 1px solid var(--egs-border);
}

.egs-stats .row {
    row-gap: 20px;
}

.egs-stat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.egs-stat-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--egs-green-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.egs-stat-title {
    text-align: center;
    width: 100%;
    margin: 12px 0 0;
}

.egs-stat-item h6 {
    font-weight: 700;
    color: var(--egs-ink);
    margin-bottom: 4px;
    /* font-size: 15px; */
}

.egs-stat-item p {
    color: #6b7a70;
    /* font-size: 13.5px; */
    margin: 0;
    line-height: 1.5;
}

/* ---------- INDEX PAGE — Services grid (DESIGN A — see note at top) ---------- */

.egs-services-grid .egs-section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.egs-services-grid .egs-section-heading p {
    color: #6b7a70;
    /* font-size: 14.5px; */
    margin: 10px 0 0;
}

.egs-service-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--egs-border);
    border-radius: 16px;
    padding: 26px 26px 24px;
    height: 100%;
    background: #fff;
    transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.egs-service-card:hover {
    box-shadow: 0 14px 34px rgba(15, 43, 31, 0.1);
    transform: translateY(-3px);
}

.egs-service-card .egs-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.egs-service-card .egs-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eef6ec;
    color: var(--egs-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.egs-service-card .egs-card-top h4 {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: var(--egs-ink);
    margin: 0;
    line-height: 1.3;
}

.egs-service-card .egs-card-arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eef6ec;
    color: var(--egs-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.egs-service-card .egs-card-arrow:hover {
    background: var(--egs-green);
    color: #fff;
}

.egs-service-card p {
    color: #6b7a70;
    /* font-size: 13.5px; */
    line-height: 1.6;
    margin: 0;
}

.egs-service-card.egs-featured {
    background: var(--egs-green-dark);
    border-color: var(--egs-green-dark);
}

.egs-service-card.egs-featured .egs-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.egs-service-card.egs-featured .egs-card-top h4 {
    color: #fff;
}

.egs-service-card.egs-featured .egs-card-arrow {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.egs-service-card.egs-featured .egs-card-arrow:hover {
    background: var(--egs-green-light);
    color: var(--egs-green-dark);
}

.egs-service-card.egs-featured p {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
    .egs-service-card {
        padding: 22px 20px;
    }

    .egs-service-card .egs-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .egs-service-card .egs-card-top h4 {
        font-size: 15px;
    }
}

/* ---------- INDEX PAGE — Services grid (DESIGN B — conflicts with A above, see note at top) ---------- */

.egs-service-card {
    border: 1px solid var(--egs-border);
    border-radius: 12px;
    padding: 18px 16px;
    height: 100%;
    background: #ffffff;
    color: var(--egs-ink);
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease,
        color 0.25s ease;
}

.egs-service-card:hover {
    background: var(--egs-green-dark);
    border-color: var(--egs-green-dark);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 43, 31, 0.18);
    transform: translateY(-4px);
}

.egs-service-card .egs-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eef6ec;
    color: var(--egs-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.egs-service-card:hover .egs-icon {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    transform: scale(1.05);
}

.egs-service-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--egs-ink);
    margin-bottom: 8px;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.egs-service-card:hover h4 {
    color: #ffffff;
}

.egs-service-card p {
    color: #6b7a70;
    /* font-size: 13px; */
    line-height: 1.55;
    margin-bottom: 5px;
    transition: color 0.25s ease;
}

.egs-service-card:hover p {
    color: rgba(255, 255, 255, 0.78);
}

.egs-service-card a.egs-learn-more {
    color: var(--egs-green);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

.egs-service-card a.egs-learn-more:hover {
    text-decoration: underline;
}

/* ---------- INDEX PAGE — Industries We Serve ---------- */

.egs-industries {
    background: #eef6ec;
    padding: 44px 0;
}

.egs-industries h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--egs-ink);
    margin: 0 0 28px;
}

.egs-industries-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.egs-industry-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 26px;
    box-shadow: 0 4px 14px rgba(15, 43, 31, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
    flex: 0 0 auto;
}

.egs-industry-pill:hover {
    background: var(--egs-green-dark);
    box-shadow: 0 10px 24px rgba(15, 43, 31, 0.18);
    transform: translateY(-3px);
}

.egs-industry-pill .egs-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--egs-green-dark);
    font-size: 20px;
    transition: color 0.25s ease;
}

.egs-industry-pill:hover .egs-icon {
    color: var(--egs-green-light);
}

.egs-industry-pill span {
    /* font-size: 14.5px; */
    font-weight: 600;
    color: var(--egs-ink);
    white-space: nowrap;
    transition: color 0.25s ease;
}

.egs-industry-pill:hover span {
    color: #fff;
}

@media (max-width: 767px) {
    .egs-industries {
        padding: 36px 0;
    }

    .egs-industries h2 {
        font-size: 19px;
        margin-bottom: 22px;
    }

    .egs-industries-row {
        gap: 12px;
    }

    .egs-industry-pill {
        padding: 12px 20px;
    }

    /* .egs-industry-pill span {
        font-size: 13.5px;
    } */
}

@media (max-width: 480px) {
    .egs-industries-row {
        flex-direction: column;
        align-items: stretch;
    }

    .egs-industry-pill {
        justify-content: center;
        width: 100%;
    }
}

/* ---------- INDEX PAGE — Showcase figure ---------- */

.egs-showcase-figure {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.egs-showcase-blob {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    max-width: 525px;
    height: 88%;
    background: linear-gradient(180deg, #eef6ec 0%, #dcecd6 100%);
    border-radius: 50%;
    z-index: 0;
}

.egs-showcase-img {
    position: relative;
    z-index: 1;
    max-height: 560px;
    width: auto;
    object-fit: contain;
    height: 95%;
}

@media (max-width: 991px) {
    .egs-showcase-img {
        max-height: 380px;
    }

    .egs-showcase-blob {
        max-width: 320px;
    }

    .egs-showcase-figure {
        padding: 10px 0 0;
    }
}

@media (max-width: 575px) {
    .egs-showcase-img {
        max-height: 300px;
    }

    .egs-showcase-blob {
        max-width: 260px;
    }
}

/* ---------- INDEX PAGE — About v2 ---------- */

.egs-about-v2 {
    background: #fff;
    padding: 70px 0 100px;
}

.egs-about-v2-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    margin: 0 auto;
    padding: 0 24px;
}

.egs-about-v2-text {
    flex: 1 1 42%;
    min-width: 300px;
}

.egs-about-v2-text .egs-eyebrow {
    color: var(--egs-green);
    font-weight: 700;
    /* font-size: 12.5px; */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.egs-about-v2-text h2 {
    /* font-size: 30px; */
    font-weight: 800;
    color: var(--egs-ink);
    line-height: 1.25;
    margin: 0 0 18px;
}

.egs-about-v2-text p {
    color: #5c6b62;
    /* font-size: 14.5px; */
    line-height: 1.75;
    margin-bottom: 18px;
}

.egs-about-v2-text .egs-btn-solid {
    margin-top: 8px;
}

.egs-btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--egs-green-dark);
    color: #ffffff;
    /* font-size: 14px; */
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 1px solid var(--egs-green-dark);
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.egs-btn-solid:hover {
    background: var(--egs-ink);
    border-color: var(--egs-green);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 43, 31, 0.18);
    text-decoration: none;
}

.egs-btn-arrow {
    font-size: 17px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.egs-btn-solid:hover .egs-btn-arrow {
    transform: translateX(4px);
}

.egs-about-v2-media {
    flex: 1 1 58%;
    position: relative;
    min-width: 320px;
    padding-bottom: 60px;
}

.egs-about-v2-media .egs-media-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(15, 43, 31, 0.14);
}

.egs-about-v2-media img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.egs-media-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 43, 31, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 8px 12px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.egs-media-badge img {
    height: 20px;
    width: auto;
}

.egs-about-v2-stats {
    position: absolute;
    left: -60px;
    right: 20px;
    bottom: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15, 43, 31, 0.14);
    display: flex;
    align-items: stretch;
    padding: 20px 10px;
}

.egs-stat-block {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border-right: 1px solid var(--egs-border);
    text-align: left;
}

.egs-stat-block:last-child {
    border-right: none;
}

.egs-stat-block .egs-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #eef6ec;
    color: var(--egs-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.egs-stat-block .num {
    font-size: 17px;
    font-weight: 800;
    color: var(--egs-ink);
    line-height: 1.2;
}

.egs-stat-block .lbl {
    font-size: 14.5px;
    color: #6b7a70;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .egs-about-v2-inner {
        flex-direction: column-reverse;
        gap: 36px;
    }

    .egs-about-v2-media {
        min-width: 0;
        width: 100%;
        padding-bottom: 90px;
    }

    .egs-about-v2-stats {
        left: 16px;
        right: 16px;
    }

    .egs-stat-block {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 0 8px;
    }
}

@media (max-width: 575px) {
    .egs-about-v2 {
        padding: 44px 0 60px;
    }

    .egs-about-v2-text h2 {
        font-size: 22px;
    }

    .egs-about-v2-media img {
        height: 220px;
    }

    .egs-about-v2-stats {
        position: static;
        margin-top: 16px;
        flex-wrap: wrap;
        row-gap: 14px;
    }

    .egs-stat-block {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid var(--egs-border);
        padding-bottom: 10px;
    }
}

/* ---------- INDEX PAGE — Partners panel ---------- */

.egs-partners-panel {
    position: relative;
    margin: 0 auto;
    border-radius: 28px;
    padding: 56px 40px 64px;
    background: #fafbfa;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 43, 31, 0.06);
}

.egs-partners-panel::before,
.egs-partners-panel::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.35;
}

.egs-partners-panel::before {
    background: var(--egs-green-light, #4c9a4c);
    top: -140px;
    left: -100px;
}

.egs-partners-panel::after {
    background: #bfe3c4;
    bottom: -140px;
    right: -100px;
}

.egs-partners-header {
    position: relative;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}

.egs-partners-header .eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--egs-green-dark, #2b7a4a);
    margin-bottom: 10px;
}

.egs-partners-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #16241c;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.egs-partners-header p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7a70;
    margin: 0;
}

/* ---------- INDEX PAGE — Trusted-by marquee ---------- */

.egs-trusted-marquee {
    background: #fff;
    padding: 44px 0;
}

.egs-trusted-marquee h2 {
    text-align: center;

    font-size: 20px;
    font-weight: 800;
    color: var(--egs-ink);
    margin: 0 0 26px;
}

.egs-marquee-panel {
    background: #fafbfa;
    border: 1px solid var(--egs-border);
    border-radius: 20px;
    padding: 28px 0;
    overflow: hidden;
    position: relative;
}

.egs-marquee-panel::before,
.egs-marquee-panel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.egs-marquee-panel::before {
    left: 0;
    background: linear-gradient(90deg, #fafbfa 0%, rgba(250, 251, 250, 0) 100%);
}

.egs-marquee-panel::after {
    right: 0;
    background: linear-gradient(270deg, #fafbfa 0%, rgba(250, 251, 250, 0) 100%);
}

.egs-marquee-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: egs-marquee-scroll 28s linear infinite;
}

.egs-marquee-panel:hover .egs-marquee-track {
    animation-play-state: paused;
}

.egs-marquee-track img {
    width: auto;
    max-width: 140px;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(0%);
    opacity: 0.9;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.egs-marquee-track img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

@keyframes egs-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .egs-trusted-marquee {
        padding: 34px 0;
    }

    .egs-trusted-marquee h2 {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .egs-marquee-panel {
        border-radius: 16px;
        padding: 22px 0;
    }

    .egs-marquee-panel::before,
    .egs-marquee-panel::after {
        width: 50px;
    }

    .egs-marquee-track {
        gap: 40px;
        animation-duration: 20s;
    }

    .egs-marquee-track img {
        max-width: 100px;
    }
}

/* ---------- SERVICES PAGE ---------- */

.egs-svc-intro {
    position: relative;
    background: #fff;
    padding: 52px 0;
    overflow: hidden;
}

.egs-svc-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 43, 31, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
    pointer-events: none;
}

.egs-svc-intro .container {
    position: relative;
    z-index: 1;
}

.egs-svc-intro p {
    color: #55655c;
    /* font-size: 15.5px; */
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.egs-services-main {
    padding: 84px 0;
    background: var(--egs-gray, #f7f9f7);
}

.egs-process {
    padding: 84px 0;
    background: var(--egs-gray);
}

.egs-why-us {
    padding: 84px 0;
    background: #fff;
}

.egs-process-track {
    margin-top: 12px;
    margin-bottom: 8px;
}

.egs-svc-cta {
    padding: 84px 0;
    background: var(--egs-gray);
}

@media (max-width: 991px) {

    .egs-services-main,
    .egs-process,
    .egs-why-us,
    .egs-svc-cta {
        padding: 60px 0;
    }

    .egs-svc-intro {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {

    .egs-services-main,
    .egs-process,
    .egs-why-us,
    .egs-svc-cta {
        padding: 48px 0;
    }

    .egs-svc-intro {
        padding: 32px 0;
    }

    .egs-process-track {
        margin-top: 8px;
    }
}

.egs-services-main .section-head {
    max-width: 640px;
    margin: 0 auto 52px;
}

.egs-services-main .section-head h2 {
    /* font-size: 34px; */
    font-weight: 800;
    color: var(--egs-ink);
    margin-top: 6px;
    letter-spacing: -0.5px;
}

.egs-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 190px;
    gap: 22px;
}

.egs-svc-card:nth-child(2),
.egs-svc-card:nth-child(3),
.egs-svc-card:nth-child(4),
.egs-svc-card:nth-child(6) {
    grid-row: span 1;
}

.egs-svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #fff;
    border: 1px solid var(--egs-border, #e6ece6);
    border-radius: 22px;
    overflow: hidden;
    padding: 8px 26px 24px;
    min-height: 190px;
    cursor: default;
    box-sizing: border-box;
}

.egs-svc-card>* {
    position: relative;
    z-index: 1;
}

.egs-svc-index {
    position: absolute;
    top: -6px;
    right: 6px;
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(15, 43, 31, 0.14);
    z-index: 0;
    pointer-events: none;
}

.egs-svc-blob {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--blob-color, #7ec26a);
    filter: blur(46px);
    opacity: .35;
    z-index: 0;
    pointer-events: none;
}

.egs-svc-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    flex: 0 0 46px;
    border-radius: 13px;
    background: #eef6ec;
    color: var(--egs-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    margin: 0 0 14px 0;
    padding: 0;
    box-sizing: border-box;
}

.egs-svc-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--egs-ink);
    margin: 0 0 8px;
}

.egs-svc-card p {
    color: #6b7a70;
    /* font-size: 13px; */
    line-height: 1.6;
    margin: 0;
    padding-right: 38px;
}

.egs-svc-arrow {
    position: absolute;
    bottom: 22px;
    right: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--egs-border, #e6ece6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--egs-ink);
    text-decoration: none;
    font-size: 15px;
    z-index: 3;
    box-sizing: border-box;
}

.egs-svc-card:nth-child(1) {
    --blob-color: #7ec26a;
}

.egs-svc-card:nth-child(2) {
    --blob-color: #4c9a4c;
}

.egs-svc-card:nth-child(3) {
    --blob-color: #2f6b46;
}

/* .egs-svc-card:nth-child(4) {
    --blob-color: #a8d98a;
} */

.egs-svc-card:nth-child(5) {
    --blob-color: #4c9a4c;
}

.egs-svc-card:nth-child(6) {
    --blob-color: #7ec26a;
}

.egs-svc-card--featured h3 {
    font-size: 22px;
}

.egs-svc-card--featured .egs-svc-index {
    font-size: 130px;
}

@media (max-width: 991px) {
    .egs-svc-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .egs-svc-card:nth-child(1) {
        grid-row: span 2;
        grid-column: span 2;
    }

    .egs-svc-card:nth-child(5) {
        grid-row: span 1;
        grid-column: span 1;
    }
}

@media (max-width: 575px) {
    .egs-svc-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .egs-svc-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 190px;
    }

    .egs-services-main .section-head h2 {
        font-size: 25px;
    }
}

.egs-process .section-head h2 {
    /* font-size: 30px; */
    font-weight: 800;
    color: var(--egs-ink);
}

.egs-process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.egs-process-track::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(12.5% + 30px);
    right: calc(12.5% + 30px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--egs-green) 0 8px, transparent 8px 16px);
    z-index: 0;
}

.egs-process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.egs-process-node {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--egs-green);
    color: var(--egs-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 14px;
    box-shadow: 0 8px 20px rgba(15, 43, 31, 0.1);
}

.egs-process-num {
    display: block;
    /* font-size: 12px; */
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--egs-green);
    margin-bottom: 6px;
}

.egs-process-step h4 {
    /* font-size: 16.5px; */
    font-weight: 700;
    color: var(--egs-ink);
    margin-bottom: 8px;
}

.egs-process-step p {
    color: var(--egs-text-muted, #6b7a70);
    /* font-size: 13.5px; */
    line-height: 1.7;
    margin: 0;
    max-width: 220px;
    margin-inline: auto;
}

@media (max-width: 767px) {
    .egs-process-track {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .egs-process-track::before {
        top: 0;
        bottom: 0;
        left: 30px;
        right: auto;
        width: 2px;
        height: auto;
        background: repeating-linear-gradient(180deg, var(--egs-green) 0 8px, transparent 8px 16px);
    }

    .egs-process-step {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        text-align: left;
    }

    .egs-process-node {
        flex-shrink: 0;
        margin: 0;
    }

    .egs-process-step p {
        max-width: none;
        margin-inline: 0;
    }
}

.egs-why-us-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.egs-why-us-head h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--egs-ink);
    margin: 14px 0 14px;
    line-height: 1.3;
}

.egs-why-us-head p {
    color: #55655c;
    /* font-size: 15.5px; */
    line-height: 1.8;
    margin: 0 auto;
}

.egs-why-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--egs-border);
}

.egs-feature-row {
    position: relative;
    display: grid;
    grid-template-columns: 140px 56px 1fr;
    align-items: center;
    gap: 28px;
    padding: 38px 0;
    border-bottom: 1px solid var(--egs-border);
    transition: padding-left .4s ease;
}

.egs-feature-row::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: var(--egs-green);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s ease;
}

.egs-feature-row:hover::before {
    transform: scaleY(1);
}

.egs-feature-row:hover {
    padding-left: 18px;
}

.egs-row-num {
    font-size: 46px;
    font-weight: 800;
    color: #d7e2da;
    line-height: 1;
    transition: color .4s ease;
    font-variant-numeric: tabular-nums;
}

.egs-feature-row:hover .egs-row-num {
    color: var(--egs-green);
}

.egs-feature-row .egs-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #eef6ec;
    color: var(--egs-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: background .4s ease, color .4s ease, transform .4s ease;
}

.egs-feature-row:hover .egs-icon {
    background: var(--egs-green-dark);
    color: #fff;
    transform: scale(1.08);
}

.egs-row-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.egs-row-text h5 {
    /* font-size: 18px; */
    font-weight: 700;
    color: var(--egs-ink);
    margin-bottom: 6px;
}

.egs-row-text p {
    /* color: #6b7a70; */
    /* font-size: 14px; */
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}

.egs-row-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--egs-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--egs-ink);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s ease, transform .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
}

.egs-feature-row:hover .egs-row-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--egs-green);
    border-color: var(--egs-green);
    color: #fff;
}

@media (max-width: 991px) {
    .egs-feature-row {
        grid-template-columns: 70px 48px 1fr;
        gap: 18px;
        padding: 30px 0;
    }

    .egs-row-num {
        font-size: 34px;
    }

    .egs-row-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .egs-row-arrow {
        display: none;
    }
}

@media (max-width: 575px) {
    .egs-why-us-head h2 {
        font-size: 23px;
    }

    .egs-feature-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 26px 0;
    }

    .egs-row-num {
        font-size: 15px;
        font-weight: 700;
        color: var(--egs-green);
    }

    .egs-feature-row .egs-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .egs-feature-row:hover {
        padding-left: 0;
    }

    .egs-feature-row::before {
        display: none;
    }
}

.egs-svc-cta-box {
    background: var(--egs-green-dark);
    border-radius: 18px;
    padding: 44px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.egs-svc-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 20%, rgba(126, 194, 106, 0.22) 0%, transparent 50%);
    pointer-events: none;
}

.egs-svc-cta-box h3 {
    color: #fff;
    font-weight: 800;
    /* font-size: 24px; */
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.egs-svc-cta-box p {
    color: rgba(255, 255, 255, 0.78);
    /* font-size: 14.5px; */
    margin: 0;
    position: relative;
    z-index: 1;
}

.egs-svc-cta-box .egs-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--egs-green);
    color: #fff;
    font-weight: 600;
    /* font-size: 14.5px; */
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s ease;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.egs-svc-cta-box .egs-btn-solid:hover {
    background: #3f8a3f;
    color: #fff !important;
}

@media (max-width: 767px) {
    .egs-svc-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .egs-feature-row {
        flex-direction: column;
        gap: 14px;
    }
}

/* ---------- MANAGED SERVICES PAGE ---------- */

.egs-msc-hero-highlights {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
}

.egs-msc-hero-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--egs-mono);
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 9px 15px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.egs-msc-hero-highlights li i {
    color: var(--egs-green-light);
    font-size: 14px;
}

@media (max-width: 575px) {
    .egs-msc-hero-highlights {
        gap: 8px;
        margin-top: 20px;
    }

    .egs-msc-hero-highlights li {
        font-size: 11.5px;
        padding: 8px 12px;
    }
}

.egs-msc-services-section {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, #f2f8f1 0%, #fbfaf7 55%, #fff 100%);
    padding: 25px 0 90px;
}

.egs-msc-rail-head {
    margin: 0 auto 56px;
    text-align: center;
}

.egs-msc-rail-head h2 {
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: clamp(24px, 3vw, 34px); */
    font-weight: 700;
    color: var(--egs-ink);
    margin: 14px 0 12px;
}

.egs-msc-rail-head p {
    color: #5c6a5f;
    /* font-size: 15px; */
    line-height: 1.75;
    margin: 0;
}

.egs-msc-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.egs-msc-service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--egs-border);
    border-radius: 18px;
    padding: 28px 24px 26px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.egs-msc-service-card:hover {
    transform: translateY(-6px);
    border-color: var(--egs-green);
    box-shadow: 0 22px 44px rgba(15, 43, 31, 0.12);
}

.egs-msc-service-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--egs-green) 0%, var(--egs-green-dark) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 18px;
    box-shadow: 0 10px 22px rgba(15, 43, 31, 0.18);
}

.egs-msc-service-num {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: var(--egs-mono);
    /* font-size: 12px; */
    font-weight: 500;
    color: var(--egs-border);
}

.egs-msc-service-card h4 {
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: 16.5px; */
    font-weight: 500;
    color: var(--egs-ink);
    margin: 0 0 10px;
    line-height: 1.35;
}

.egs-msc-service-card p {
    /* font-size: 13.5px; */
    line-height: 1.65;
    color: #7a877e;
    margin: 0;
}

@media (max-width: 1100px) {
    .egs-msc-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .egs-msc-services-section {
        padding: 56px 0;
    }

    .egs-msc-rail-head {
        margin-bottom: 36px;
    }

    .egs-msc-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .egs-msc-service-card {
        padding: 22px 20px 22px;
    }
}

.egs-msc-assess-section {
    background: var(--egs-green-dark);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.egs-msc-assess-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 85% 10%, rgba(126, 194, 106, 0.16) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 100% 100%, 42px 42px, 42px 42px;
    pointer-events: none;
}

.egs-msc-assess-section .container {
    position: relative;
    z-index: 1;
}

.egs-msc-assess-box {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
}

.egs-msc-assess-copy h2 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.22;
    margin: 14px 0 16px;
}

.egs-msc-assess-copy>p {
    color: rgba(255, 255, 255, 0.72);
    /* font-size: 15px; */
    line-height: 1.8;
    /* max-width: 480px; */
    margin: 0 0 30px;
}

.egs-msc-assess-subhead {
    /* font-family: var(--egs-mono); */
    /* font-size: 12px; */
    font-weight: 500;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 16px;
}

.egs-msc-assess-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 18px;
    padding: 0;
    margin: 0 0 34px;
}

.egs-msc-assess-checklist li {
    display: flex;
    align-items: center;
    gap: 9px;
    /* font-size: 13.5px; */
    color: rgba(255, 255, 255, 0.88);
}

.egs-msc-assess-checklist li i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(126, 194, 106, 0.18);
    color: var(--egs-green-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* font-size: 11px; */
    flex-shrink: 0;
}

.egs-msc-assess-cta {
    border-radius: 999px;
}

.egs-msc-assess-benefits {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(6px);
}

.egs-msc-assess-benefits-label {
    display: block;
    /* font-family: var(--egs-mono); */
    /* font-size: 11.5px; */
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--egs-green-light);
    margin-bottom: 20px;
}

.egs-msc-benefit-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.egs-msc-benefit-card:first-of-type {
    border-top: none;
    padding-top: 0;
}

.egs-msc-benefit-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(126, 194, 106, 0.14);
    color: var(--egs-green-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.egs-msc-benefit-card h5 {
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: 14px; */
    font-weight: 500;
    color: #fff;
    margin: 0 0 5px;
}

.egs-msc-benefit-card p {
    /* font-size: 12.5px; */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 991px) {
    .egs-msc-assess-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .egs-msc-assess-copy>p {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .egs-msc-assess-section {
        padding: 56px 0;
    }

    .egs-msc-assess-checklist {
        grid-template-columns: 1fr;
    }

    .egs-msc-assess-benefits {
        padding: 22px;
    }
}

.egs-msc-metrics-strip {
    background: var(--egs-green-dark);
    padding: 0;
}

.egs-msc-metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.egs-msc-metric-unit {
    padding: 44px 24px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.egs-msc-metric-unit:first-child {
    border-left: none;
}

.egs-msc-metric-unit .num {
    font-family: var(--egs-mono);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--egs-green-light);
    line-height: 1;
}

.egs-msc-metric-unit .lbl {
    /* font-family: var(--egs-mono); */
    /* font-size: 11px; */
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 10px;
    display: block;
}

@media (max-width: 767px) {
    .egs-msc-metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .egs-msc-metric-unit {
        padding: 28px 16px;
        border-left: 1px solid rgba(255, 255, 255, 0.09);
        border-top: 1px solid rgba(255, 255, 255, 0.09);
    }

    .egs-msc-metric-unit:nth-child(1),
    .egs-msc-metric-unit:nth-child(2) {
        border-top: none;
    }

    .egs-msc-metric-unit:nth-child(odd) {
        border-left: none;
    }
}

.egs-msc-cta {
    background: var(--egs-gray);
    padding: 90px 0;
}

.egs-msc-terminal {
    max-width: 720px;
    margin: 0 auto;
    background: #0a1f16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 43, 31, 0.22);
}

.egs-msc-terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(126, 194, 106, 0.14);
}

.egs-msc-terminal-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.6;
}

.egs-msc-terminal-bar .dot:nth-child(1) {
    background: #e05f5f;
}

.egs-msc-terminal-bar .dot:nth-child(2) {
    background: var(--egs-amber);
}

.egs-msc-terminal-bar .dot:nth-child(3) {
    background: var(--egs-green-light);
}

.egs-msc-terminal-body {
    padding: 36px 40px 40px;
    text-align: center;
}

.egs-msc-terminal-body .prompt-line {
    /* font-family: var(--egs-mono); */
    letter-spacing: 1.1px;
    font-size: 20.5px;
    color: var(--egs-green-light);
    margin-bottom: 18px;
}

.egs-msc-terminal-body .cursor {
    display: inline-block;
    width: 7px;
    height: 14px;
    background: var(--egs-green-light);
    margin-left: 4px;
    vertical-align: middle;
    animation: egsMscBlink 1.1s steps(1) infinite;
}

@keyframes egsMscBlink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.egs-msc-terminal-body h3 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 700;
    /* font-size: clamp(22px, 3vw, 30px); */
    margin-bottom: 12px;
}

.egs-msc-terminal-body p {
    color: rgba(255, 255, 255, 0.65);
    /* font-size: 14.5px; */
    line-height: 1.7;
    max-width: 460px;
    margin: 0 auto 26px;
}

@media (max-width: 575px) {
    .egs-msc-cta {
        padding: 56px 0;
    }

    .egs-msc-terminal-body {
        padding: 28px 22px 30px;
    }
}

/* ---------- MANAGED SERVICES — hero variant (dot-grid, media, panel) ---------- */
/* NOTE: .egs-msc-hero / .egs-msc-hero-media / .egs-msc-panel appear with a
   couple of slightly different background treatments across the source
   (implementation / training / integration / netsuite pages). Kept the
   fullest version below; tell me if a specific page needs its own variant
   back. */

.egs-msc-hero {
    position: relative;
    background: var(--egs-green-dark);
    overflow: hidden;
    padding: 88px 0 100px;
}

.egs-msc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: linear-gradient(115deg, #000 0%, #000 42%, transparent 62%);
    mask-image: linear-gradient(115deg, #000 0%, #000 42%, transparent 62%);
    pointer-events: none;
}

.egs-msc-hero,
.egs-msc-node-card,
.egs-msc-node-scene {
    overflow: hidden;
}

@media (max-width: 767px) {
    .egs-imp2-chip {
        backdrop-filter: none;
        background: rgba(15, 43, 31, 0.75);
    }

    .egs-msc-hero::after {
        animation: none;
        opacity: 0.4;
    }
}

.egs-msc-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.egs-msc-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% center;
    display: block;
    opacity: 0.22;
}

.egs-msc-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, var(--egs-green-dark) 0%, rgba(15, 43, 31, 0.85) 45%, rgba(15, 43, 31, 0.55) 100%);
}

.egs-msc-hero .container {
    position: relative;
    z-index: 1;
}

.egs-msc-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.egs-msc-hero h1 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin: 18px 0 18px;
}

.egs-msc-hero h1 em {
    font-style: normal;
    color: var(--egs-green-light);
}

.egs-msc-hero p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 30px;
}

.egs-msc-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.egs-msc-panel {
    background: #0a1f16;
    border: 1px solid rgba(126, 194, 106, 0.18);
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.egs-msc-panel-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 16px;
    border-bottom: 1px solid rgba(126, 194, 106, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.egs-msc-panel-bar .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    opacity: 0.55;
}

.egs-msc-panel-bar .dot:nth-child(1) {
    background: #e05f5f;
}

.egs-msc-panel-bar .dot:nth-child(2) {
    background: var(--egs-amber);
}

.egs-msc-panel-bar .dot:nth-child(3) {
    background: var(--egs-green-light);
}

.egs-msc-panel-bar span.file {
    margin-left: 8px;
    font-family: var(--egs-mono);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.4);
}

.egs-msc-panel-body {
    padding: 8px 20px 18px;
}

.egs-msc-metric-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.egs-msc-metric-row:last-child {
    border-bottom: none;
}

.egs-msc-metric-row .status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--egs-green-light);
    flex-shrink: 0;
}

.egs-msc-metric-row .label {
    font-family: var(--egs-mono);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    flex: 1;
}

.egs-msc-metric-row .value {
    font-family: var(--egs-mono);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.egs-msc-metric-row .bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 18px;
}

.egs-msc-metric-row .bars i {
    width: 3px;
    background: var(--egs-green);
    border-radius: 1px;
    opacity: 0.85;
}

@media (max-width: 991px) {
    .egs-msc-hero-grid {
        grid-template-columns: 1fr;
    }

    .egs-msc-panel {
        max-width: 460px;
    }

    .egs-msc-hero p {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .egs-msc-hero {
        padding: 48px 0 56px;
    }

    .egs-msc-hero h1 {
        font-size: 25px;
        margin: 14px 0 14px;
    }

    .egs-msc-hero p {
        font-size: 14px;
    }

    .egs-msc-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .egs-msc-panel {
        max-width: none;
    }

    .egs-msc-metric-row .label {
        font-size: 11px;
    }

    .egs-msc-metric-row .value {
        font-size: 13px;
    }
}

/* ---------- IMPLEMENTATION SERVICES PAGE ---------- */

.egs-imp2-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* font-size: 12px; */
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--egs-green-dark);
    margin-bottom: 16px;
}

.egs-imp2-section-eyebrow::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--egs-green);
}

.egs-imp2-section-eyebrow.on-dark {
    color: var(--egs-green-light);
}

.egs-imp2-section-eyebrow.on-dark::before {
    background: var(--egs-green-light);
}

.egs-imp2-hero-media {
    overflow: visible;
    max-width: 100%;
}

@media (max-width: 991px) {
    .egs-imp2-hero-media {
        overflow: hidden;
        border-radius: 24px;
    }

    .egs-imp2-chip--1,
    .egs-imp2-chip--2 {
        left: auto;
        right: auto;
    }

    .egs-imp2-chip--1 {
        top: 12px;
        left: 12px;
        transform: none;
    }

    .egs-imp2-chip--2 {
        bottom: 12px;
        right: 12px;
        transform: none;
    }
}

.egs-imp2-hero-media-frame img,
.egs-msc-hero-media img {
    max-width: 100%;
}

.egs-msc-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 45%;
    height: 200%;
    z-index: 1;
    background: linear-gradient(100deg,
            transparent 0%,
            rgba(126, 194, 106, 0.10) 45%,
            rgba(126, 194, 106, 0.16) 50%,
            rgba(126, 194, 106, 0.10) 55%,
            transparent 100%);
}

@keyframes egsMscScan {
    0% {
        transform: translateX(-40%);
    }

    50% {
        transform: translateX(160%);
    }

    100% {
        transform: translateX(-40%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .egs-msc-hero::after {
        animation: none;
        opacity: 0;
    }
}

.egs-imp2-collage {
    background: #fff;
    padding: 30px 0 90px;
}

.egs-imp2-collage-head {
    /* max-width: 640px; */
    margin: 0 auto 56px;
    text-align: center;
}

.egs-imp2-collage-head h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--egs-ink);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.egs-imp2-collage-head p {
    color: var(--egs-text-body, #55655c);
    /* font-size: 15px; */
    line-height: 1.75;
    margin: 0;
}

.egs-imp2-card-deck {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.egs-imp2-tilt-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--egs-border);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
    box-shadow: 0 20px 40px rgba(15, 43, 31, 0.08);
}

.egs-imp2-tilt-card:hover {
    transform: translateY(-6px);
    border-color: var(--egs-green);
    box-shadow: 0 30px 60px rgba(15, 43, 31, 0.16);
}

.egs-imp2-tilt-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
}

.egs-imp2-tilt-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.egs-imp2-tilt-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.94);
    color: var(--egs-green-dark);
    /* font-size: 11.5px; */
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(15, 43, 31, 0.14);
}

.egs-imp2-tilt-card-body {
    padding: 26px 26px 28px;
}

.egs-imp2-tilt-card-body h4 {
    color: var(--egs-ink);
    /* font-size: 19px; */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.egs-imp2-tilt-card-body>p {
    color: var(--egs-text-body, #55655c);
    /* font-size: 14px; */
    line-height: 1.75;
    margin: 0 0 18px;
}

.egs-imp2-tilt-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--egs-border);
    padding-top: 16px;
}

.egs-imp2-tilt-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    /* font-size: 13.5px; */
    line-height: 1.5;
    color: var(--egs-ink);
    font-weight: 600;
}

.egs-imp2-tilt-card-list li i {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #eef6ec;
    color: var(--egs-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* font-size: 10px; */
    flex-shrink: 0;
    margin-top: 2px;
}

.egs-imp2-feature-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.egs-imp2-feature-chip {
    position: relative;
    background: var(--egs-gray);
    border: 1px solid var(--egs-border);
    border-radius: 18px;
    padding: 26px 22px;
    transition: background .3s ease, transform .3s ease;
}

.egs-imp2-feature-chip:hover {
    background: var(--egs-green-dark);
    transform: translateY(-4px);
}

.egs-imp2-feature-chip .egs-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    color: var(--egs-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
    transition: background .3s ease, color .3s ease;
}

.egs-imp2-feature-chip:hover .egs-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.egs-imp2-feature-chip h5 {
    /* font-size: 15px; */
    font-weight: 700;
    color: var(--egs-ink);
    margin-bottom: 8px;
    transition: color .3s ease;
}

.egs-imp2-feature-chip:hover h5 {
    color: #fff;
}

.egs-imp2-feature-chip p {
    /* font-size: 13px; */
    line-height: 1.65;
    color: var(--egs-text-muted, #6b7a70);
    margin: 0;
    transition: color .3s ease;
}

.egs-imp2-feature-chip:hover p {
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 991px) {
    .egs-imp2-collage {
        padding: 60px 0;
    }

    .egs-imp2-card-deck,
    .egs-imp2-feature-chips {
        grid-template-columns: 1fr;
    }

    .egs-imp2-tilt-card:hover {
        transform: translateY(-4px);
    }
}

.egs-imp2-roadmap {
    background: var(--egs-gray);
    padding: 90px 0;
    overflow: hidden;
}

.egs-imp2-roadmap-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.egs-imp2-roadmap-head h2 {
    /* font-size: 30px; */
    font-weight: 700;
    color: var(--egs-ink);
    margin: 6px 0 0;
    /* max-width: 460px; */
    line-height: 1.3;
}

.egs-imp2-roadmap-hint {
    font-size: 12.5px;
    color: var(--egs-text-muted, #6b7a70);
    display: flex;
    align-items: center;
    gap: 8px;
}

.egs-imp2-roadmap-track {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.egs-imp2-step-card {
    width: 100%;
    min-width: 0;
    margin: 0;
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 14px 30px rgba(15, 43, 31, 0.08);
    position: relative;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.egs-imp2-step-card:not(:last-child) {
    margin-right: 0;
}

.egs-imp2-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(15, 43, 31, 0.16);
}

.egs-imp2-step-card .egs-imp2-step-num {
    font-size: 42px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--egs-border);
    line-height: 1;
    margin-bottom: 18px;
    transition: -webkit-text-stroke-color .3s ease;
    display: block;
}

.egs-imp2-step-card:hover .egs-imp2-step-num {
    -webkit-text-stroke-color: var(--egs-green);
}

.egs-imp2-step-card .egs-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef6ec;
    color: var(--egs-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.egs-imp2-step-card h4 {
    /* font-size: 16px; */
    font-weight: 700;
    color: var(--egs-ink);
    margin-bottom: 8px;
}

.egs-imp2-step-card p {
    /* font-size: 13px; */
    line-height: 1.65;
    color: var(--egs-text-muted, #6b7a70);
    margin: 0;
}

.egs-imp2-step-arrow {
    display: none;
}

.egs-imp2-step-card--final {
    border: 1px solid rgba(126, 194, 106, 0.3);
}

.egs-imp2-step-card--final .egs-imp2-step-num {
    -webkit-text-stroke-color: rgba(126, 194, 106, 0.4);
}

.egs-imp2-step-card--final:hover .egs-imp2-step-num {
    -webkit-text-stroke-color: var(--egs-green-light);
}

.egs-imp2-step-card--final .egs-icon {
    background: rgba(126, 194, 106, 0.16);
    color: var(--egs-green-light);
}

@media (min-width: 1400px) {
    .egs-imp2-step-card {
        padding: 28px 24px;
    }

    /* .egs-imp2-step-card p {
        font-size: 13px;
    } */
}

@media (max-width: 1199px) {
    .egs-imp2-roadmap {
        padding: 75px 0;
    }

    .egs-imp2-roadmap-track {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .egs-imp2-step-card {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .egs-imp2-step-card .egs-imp2-step-num {
        font-size: 36px;
    }

    .egs-imp2-step-card h4 {
        font-size: 15px;
    }

    .egs-imp2-step-card p {
        font-size: 12px;
        line-height: 1.55;
    }

    .egs-imp2-step-card:not(:last-child) {
        margin-right: 6px;
    }
}

@media (max-width: 991px) {
    .egs-imp2-roadmap-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .egs-imp2-step-card:not(:last-child) {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .egs-imp2-roadmap {
        padding: 56px 0;
    }

    .egs-imp2-roadmap-head {
        margin-bottom: 28px;
    }

    .egs-imp2-roadmap-head h2 {
        font-size: 26px;
    }

    .egs-imp2-roadmap-track {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .egs-imp2-step-card {
        padding: 24px 22px;
    }
}

.egs-imp2-why {
    background: #fff;
    padding: 90px 0;
}

.egs-imp2-why-bento {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    align-items: stretch;
}

.egs-imp2-stat-block {
    position: relative;
    background: var(--egs-green-dark);
    border-radius: 24px;
    padding: 40px 32px;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.egs-imp2-stat-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 15%, rgba(126, 194, 106, 0.28) 0%, transparent 50%);
    pointer-events: none;
}

.egs-imp2-stat-block .big-num {
    position: relative;
    z-index: 1;
    font-size: clamp(56px, 7vw, 84px);
    font-weight: 800;
    color: var(--egs-green-light);
    line-height: 1;
    letter-spacing: -2px;
}

.egs-imp2-stat-block .big-lbl {
    position: relative;
    z-index: 1;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 10px;
    max-width: 260px;
    line-height: 1.6;
    display: block;
}

.egs-imp2-why-list-card {
    background: var(--egs-gray);
    border-radius: 24px;
    padding: 40px 36px;
}

.egs-imp2-why-list-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--egs-ink);
    margin-bottom: 22px;
    line-height: 1.3;
}

.egs-imp2-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.egs-imp2-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.egs-imp2-why-list .num-badge {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--egs-green);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.egs-imp2-why-list span {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--egs-text-body, #55655c);
}

.egs-imp2-why-list strong {
    color: var(--egs-ink);
}

@media (max-width: 991px) {
    .egs-imp2-why {
        padding: 56px 0;
    }

    .egs-imp2-why-bento {
        grid-template-columns: 1fr;
    }
}

.egs-imp2-cta {
    position: relative;
    background: linear-gradient(120deg, #0f2b1f 0%, #1c4a30 100%);
    padding: 80px 0;
    overflow: hidden;
}

.egs-imp2-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(126, 194, 106, 0.3) 0%, transparent 55%);
    pointer-events: none;
}

.egs-imp2-cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.egs-imp2-cta h3 {
    color: #fff;
    font-weight: 700;
    /* font-size: clamp(24px, 3.4vw, 34px); */
    margin-bottom: 14px;
}

.egs-imp2-cta p {
    color: rgba(255, 255, 255, 0.78);
    /* font-size: 15px; */
    max-width: 520px;
    margin: 0 auto 30px;
}

.egs-imp2-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--egs-green-dark);
    font-weight: 700;
    /* font-size: 15px; */
    padding: 15px 32px;
    text-decoration: none;
    transition: transform .25s ease;
}

.egs-imp2-cta a:hover {
    transform: translateY(-3px);
    color: var(--egs-green-dark);
}

/* :root with amber/mono tokens + updated gray — real change vs the base :root above, kept separate */
:root {
    --egs-gray: #f2f6f2;
    --egs-amber: #d99a3d;
    --egs-mono: 'JetBrains Mono', 'Courier New', monospace;
}

/* ---------- TRAINING & SUPPORT PAGE ---------- */

.egs-tr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    /* font-size: 12px; */
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--egs-tr-coral-deep, #3f8a3f);
}

/* .egs-tr-eyebrow i {
    font-size: 14px;
} */

:root {
    --egs-tr-navy: #0f2b1f;
    --egs-tr-navy-deep: #0a1f16;
    --egs-tr-coral: #4c9a4c;
    --egs-tr-coral-deep: #3f8a3f;
    --egs-tr-cream: #f2f6f2;
    --egs-tr-paper: #ffffff;
    --egs-tr-ink: #1f3d2c;
    --egs-tr-border: #e6ece6;
    --egs-tr-gold: #7ec26a;
}

.egs-tr-hero {
    position: relative;
    background: var(--egs-tr-cream);
    overflow: hidden;
    padding: 96px 0 92px;
}

.egs-tr-hero::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 154, 76, 0.14) 0%, rgba(76, 154, 76, 0) 70%);
    pointer-events: none;
}

.egs-tr-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -140px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 43, 31, 0.07) 0%, rgba(15, 43, 31, 0) 70%);
    pointer-events: none;
}

.egs-tr-hero .container {
    position: relative;
    z-index: 1;
}

.egs-tr-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.egs-tr-hero h1 {
    font-family: 'Poppins', sans-serif;
    color: var(--egs-tr-cream);
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.18;
    letter-spacing: -0.4px;
    margin: 18px 0 18px;
}

.egs-tr-hero h1 em {
    font-style: normal;
    color: var(--egs-tr-coral);
    position: relative;
    white-space: nowrap;
}

.egs-tr-hero h1 em svg {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 10px;
}

.egs-tr-hero p {
    font-family: 'Raleway', sans-serif;
    color: var(--egs-tr-paper);
    opacity: 0.78;
    font-size: 15.5px;
    line-height: 1.9;
    max-width: 480px;
    margin-bottom: 30px;
}

.egs-tr-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.egs-tr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* font-size: 13.5px; */
    padding: 14px 26px;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.egs-tr-btn--solid {
    background: var(--egs-tr-coral);
    color: #fff;
    box-shadow: 0 14px 26px rgba(76, 154, 76, 0.28);
}

.egs-tr-btn--solid:hover {
    background: var(--egs-tr-coral-deep);
    color: #fff;
    transform: translateY(-2px);
}

.egs-tr-btn--outline {
    background-color: #5252;
    border: 1.5px solid var(--egs-tr-cream);
    color: var(--egs-tr-paper);
}

.egs-tr-btn--outline:hover {
    background: var(--egs-tr-navy);
    color: #fff;
    transform: translateY(-2px);
}

.egs-tr-syllabus {
    background: var(--egs-tr-paper);
    border: 1px solid var(--egs-tr-border);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(15, 43, 31, 0.14);
    overflow: hidden;
}

.egs-tr-syllabus-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: var(--egs-tr-navy);
    color: #fff;
}

.egs-tr-syllabus-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
}

.egs-tr-syllabus-brand i {
    font-size: 16px;
    color: var(--egs-tr-gold);
}

.egs-tr-syllabus-pill {
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    padding: 5px 11px;
    border-radius: 999px;
}

.egs-tr-syllabus-body {
    padding: 22px 24px 6px;
}

.egs-tr-syllabus-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--egs-tr-navy);
    margin-bottom: 14px;
}

.egs-tr-progress {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.egs-tr-progress i {
    flex: 1;
    height: 7px;
    border-radius: 4px;
    background: var(--egs-tr-coral);
    opacity: 0.9;
}

.egs-tr-syllabus-list {
    margin-bottom: 6px;
}

.egs-tr-syllabus-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--egs-tr-border);
}

.egs-tr-syllabus-row:last-child {
    border-bottom: none;
}

.egs-tr-syllabus-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--egs-tr-cream);
    color: var(--egs-tr-coral-deep);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.egs-tr-syllabus-row span.lbl {
    font-family: 'Raleway', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--egs-tr-ink);
    flex: 1;
}

.egs-tr-syllabus-row i.bi-check2-circle {
    color: var(--egs-tr-coral);
    font-size: 16px;
}

.egs-tr-syllabus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 18px 24px 22px;
    border-top: 1px solid var(--egs-tr-border);
    margin-top: 8px;
}

.egs-tr-tape {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--egs-tr-navy);
    background: #fff;
    border: 1px dashed var(--egs-tr-coral);
    padding: 5px 11px;
    border-radius: 6px;
}

.egs-tr-tape:nth-child(2n) {
    transform: rotate(-1.5deg);
}

.egs-tr-tape:nth-child(2n+1) {
    transform: rotate(1.2deg);
}

@media (max-width: 991px) {
    .egs-tr-hero-grid {
        grid-template-columns: 1fr;
    }

    .egs-tr-syllabus {
        max-width: 460px;
    }

    .egs-tr-hero p {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .egs-tr-hero {
        padding: 52px 0 56px;
    }

    .egs-tr-hero h1 {
        font-size: 25px;
    }

    .egs-tr-hero p {
        font-size: 14px;
    }

    .egs-tr-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .egs-tr-syllabus {
        max-width: none;
    }
}

.egs-tr-curriculum {
    position: relative;
    background: var(--egs-tr-paper);
    padding: 20px 0 40px;
}

.egs-tr-curriculum-head {
    /* max-width: 620px; */
    margin: 0 auto 70px;
    text-align: center;
}

.egs-tr-curriculum-head h2 {
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: clamp(24px, 3vw, 34px); */
    font-weight: 700;
    color: var(--egs-tr-navy);
    margin: 14px 0 12px;
}

.egs-tr-curriculum-head p {
    /* font-family: 'Raleway', sans-serif; */
    color: #6b6558;
    /* font-size: 15px; */
    line-height: 1.75;
    margin: 0;
}

.egs-tr-timeline {
    position: relative;
    /* max-width: 1080px; */
    margin: 0 auto;
}

.egs-tr-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 60px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background-image: linear-gradient(var(--egs-tr-border) 60%, transparent 40%);
    background-size: 2px 14px;
    background-repeat: repeat-y;
}

.egs-tr-module {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 110px;
}

.egs-tr-module:last-child {
    margin-bottom: 60px;
}

.egs-tr-module--reverse .egs-tr-module-copy {
    order: 2;
}

.egs-tr-module--reverse .egs-tr-module-visual {
    order: 1;
}

.egs-tr-module-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--egs-tr-navy);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px var(--egs-tr-paper), 0 10px 24px rgba(15, 43, 31, 0.25);
    z-index: 2;
}

.egs-tr-module-copy {
    background: #fff;
    border: 1px solid var(--egs-tr-border);
    border-radius: 22px;
    padding: 32px 36px;
    box-shadow: 0 18px 40px rgba(15, 43, 31, 0.06);
}

.egs-tr-module-tag {
    display: inline-block;
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: 10.5px; */
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--egs-tr-coral-deep);
    background: rgba(76, 154, 76, 0.1);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.egs-tr-module-copy h3 {
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: 21px; */
    font-weight: 700;
    color: var(--egs-tr-navy);
    margin-bottom: 12px;
}

.egs-tr-module-copy p {
    font-family: 'Raleway', sans-serif;
    /* font-size: 14px; */
    line-height: 1.8;
    color: var(--egs-tr-ink);
    opacity: 0.8;
    margin: 0;
    text-align: justify;
}

.egs-tr-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.egs-tr-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Raleway', sans-serif;
    /* font-size: 14px; */
    /* line-height: 1.6; */
    color: var(--egs-tr-ink);
    opacity: 0.85;
    margin-bottom: 11px;
}

.egs-tr-checklist li:last-child {
    margin-bottom: 0;
}

.egs-tr-checklist li i {
    color: var(--egs-tr-coral);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.egs-tr-module-visual {
    position: relative;
}

.egs-tr-visual-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 26px 50px rgba(15, 43, 31, 0.2);
}

.egs-tr-visual-frame::before {
    content: '';
    position: absolute;
    inset: -14px;
    border: 2px dashed var(--egs-tr-coral);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.55;
}

.egs-tr-visual-frame img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.egs-tr-sticker {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--egs-tr-navy);
    font-family: 'Raleway', sans-serif;
    /* font-size: 11.5px; */
    font-weight: 700;
    padding: 7px 13px;
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(15, 43, 31, 0.2);
    z-index: 3;
}

.egs-tr-sticker i {
    color: var(--egs-tr-coral);
    /* font-size: 13px; */
}

.egs-tr-sticker--tl {
    top: 16px;
    left: -14px;
    transform: rotate(-4deg);
}

.egs-tr-sticker--br {
    bottom: 16px;
    right: -14px;
    transform: rotate(3deg);
}

@media (max-width: 900px) {
    .egs-tr-timeline::before {
        display: none;
    }

    .egs-tr-module {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 64px;
    }

    .egs-tr-module--reverse .egs-tr-module-copy,
    .egs-tr-module--reverse .egs-tr-module-visual {
        order: initial;
    }

    .egs-tr-module-marker {
        position: static;
        transform: none;
        margin-bottom: 6px;
        box-shadow: 0 8px 18px rgba(15, 43, 31, 0.2);
    }

    .egs-tr-module-copy {
        padding: 26px 24px;
    }

    .egs-tr-visual-frame img {
        height: 240px;
    }

    .egs-tr-sticker--tl {
        left: 12px;
    }

    .egs-tr-sticker--br {
        right: 12px;
    }
}

.egs-tr-cta {
    position: relative;
    background: var(--egs-tr-navy);
    padding: 100px 0;
    overflow: hidden;
}

.egs-tr-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.egs-tr-certificate {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    background: var(--egs-tr-paper);
    border-radius: 20px;
    padding: 52px 48px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.egs-tr-certificate::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1.5px dashed var(--egs-tr-gold);
    border-radius: 12px;
    pointer-events: none;
}

.egs-tr-seal {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--egs-tr-gold), #3f8a3f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 12px 24px rgba(126, 194, 106, 0.4);
}

.egs-tr-certificate h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    /* font-size: clamp(22px, 3vw, 29px); */
    color: var(--egs-tr-navy);
    margin-bottom: 14px;
}

.egs-tr-certificate p {
    font-family: 'Raleway', sans-serif;
    color: var(--egs-tr-ink);
    opacity: 0.75;
    /* font-size: 14.5px; */
    line-height: 1.8;
    /* max-width: 480px; */
    margin: 0 auto 28px;
}

@media (max-width: 575px) {
    .egs-tr-cta {
        padding: 60px 0;
    }

    .egs-tr-certificate {
        padding: 38px 24px;
    }
}

/* ---------- "UNLOCKING" PAGE — blueprint tokens + intro/punch/rack/scale/cta ---------- */

:root {
    --egs-text-muted: #6b7a70;
    --egs-text-body: #55655c;
    --egs-deep: color-mix(in srgb, var(--egs-green-dark) 80%, black 20%);
    --egs-fern: color-mix(in srgb, var(--egs-green-dark) 38%, var(--egs-green) 62%);
    --egs-moss: color-mix(in srgb, var(--egs-ink) 55%, var(--egs-green) 45%);
    --egs-sage: color-mix(in srgb, var(--egs-green) 16%, white 84%);
    --egs-mint: color-mix(in srgb, var(--egs-green-light) 22%, white 78%);
    --egs-glow: color-mix(in srgb, var(--egs-green-light) 38%, transparent 62%);
    --egs-lume: color-mix(in srgb, var(--egs-green-light) 55%, white 45%);
    --bp-paper: color-mix(in srgb, var(--egs-green) 4%, var(--egs-gray) 96%);
    --bp-line: color-mix(in srgb, var(--egs-ink) 8%, transparent 92%);
    --bp-line-strong: color-mix(in srgb, var(--egs-green) 45%, transparent 55%);
    --bp-ink-on-dark: rgba(255, 255, 255, 0.82);
}

.egs-bp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* font-family: var(--egs-mono); */
    /* font-size: 12px; */
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--egs-green);
    margin-bottom: 14px;
}

.egs-bp-eyebrow::before {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--egs-green);
}

.egs-bp-eyebrow--dark {
    color: var(--egs-green-light);
}

.egs-bp-intro {
    position: relative;
    background:
        linear-gradient(var(--bp-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--bp-line) 1px, transparent 1px),
        var(--bp-paper);
    background-size: 34px 34px, 34px 34px, auto;
    padding: 42px 0 80px;
    overflow: hidden;
}

.egs-bp-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.egs-bp-intro-copy h2 {
    font-family: 'Poppins', sans-serif;
    /* font-size: clamp(26px, 3vw, 36px); */
    font-weight: 600;
    color: var(--egs-ink);
    line-height: 1.28;
    /* margin-bottom: 18px; */
    letter-spacing: -0.3px;
}

.egs-bp-intro-copy p {
    /* font-family: 'Raleway', sans-serif;
    font-size: 15px; */
    line-height: 1.85;
    color: var(--egs-text-body);
    margin-bottom: 16px;
}

.egs-bp-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.egs-bp-spec-tag {
    font-family: var(--egs-mono);
    /* font-size: 11.5px; */
    font-weight: 600;
    color: var(--egs-green-dark);
    background: #fff;
    border: 1px dashed var(--egs-green);
    padding: 6px 12px;
    border-radius: 6px;
}

.egs-bp-tag-row .egs-bp-spec-tag:nth-child(5n+1),
.egs-bp-scale-tips .egs-bp-spec-tag:nth-child(5n+1) {
    border-color: var(--egs-green);
    color: var(--egs-green-dark);
}

.egs-bp-tag-row .egs-bp-spec-tag:nth-child(5n+2),
.egs-bp-scale-tips .egs-bp-spec-tag:nth-child(5n+2) {
    border-color: var(--egs-fern);
    color: var(--egs-fern);
}

.egs-bp-tag-row .egs-bp-spec-tag:nth-child(5n+3),
.egs-bp-scale-tips .egs-bp-spec-tag:nth-child(5n+3) {
    border-color: var(--egs-moss);
    color: var(--egs-moss);
}

.egs-bp-tag-row .egs-bp-spec-tag:nth-child(5n+4),
.egs-bp-scale-tips .egs-bp-spec-tag:nth-child(5n+4) {
    border-color: var(--egs-green-light);
    color: var(--egs-green-dark);
}

.egs-bp-tag-row .egs-bp-spec-tag:nth-child(5n+5),
.egs-bp-scale-tips .egs-bp-spec-tag:nth-child(5n+5) {
    border-color: var(--egs-ink);
    color: var(--egs-ink);
}

.egs-bp-diagram {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: 600 / 440;
}

.egs-bp-diagram svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.egs-bp-diagram-hub {
    position: absolute;
    left: 50%;
    top: 47.5%;
    transform: translate(-50%, -50%);
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--egs-fern) 0%, var(--egs-green-dark) 55%, var(--egs-deep) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 0 0 8px var(--egs-glow), 0 20px 40px rgba(15, 43, 31, 0.28);
    z-index: 2;
    text-align: center;
}

.egs-bp-diagram-hub i {
    font-size: 22px;
    color: var(--egs-green-light);
}

.egs-bp-diagram-hub span {
    font-family: var(--egs-mono);
    /* font-size: 9.5px; */
    letter-spacing: .4px;
    color: rgba(255, 255, 255, 0.7);
}

.egs-bp-node {
    position: absolute;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--egs-border);
    border-radius: 10px;
    padding: 9px 13px;
    box-shadow: 0 10px 22px rgba(15, 43, 31, 0.09);
    z-index: 2;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.egs-bp-node:hover {
    transform: translate(-50%, -50%) translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 43, 31, 0.16);
    border-color: var(--egs-green);
}

.egs-bp-node i {
    font-size: 15px;
    color: var(--egs-green-dark);
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--egs-sage);
    flex-shrink: 0;
}

.egs-bp-node span {
    /* font-size: 12.5px; */
    font-weight: 600;
    color: var(--egs-ink);
    font-family: 'Raleway', sans-serif;
}

.egs-bp-node-1 {
    left: 12%;
    top: 12%;
}

.egs-bp-node-1 i {
    color: var(--egs-green-dark);
    background: var(--egs-sage);
}

.egs-bp-node-2 {
    left: 90%;
    top: 10%;
}

.egs-bp-node-2 i {
    color: #fff;
    background: var(--egs-fern);
}

.egs-bp-node-3 {
    left: 90%;
    top: 62%;
}

.egs-bp-node-3 i {
    color: var(--egs-moss);
    background: var(--egs-mint);
}

.egs-bp-node-4 {
    left: 62%;
    top: 92%;
}

.egs-bp-node-4 i {
    color: #fff;
    background: var(--egs-green);
}

.egs-bp-node-5 {
    left: 8%;
    top: 74%;
}

.egs-bp-node-5 i {
    color: var(--egs-ink);
    background: var(--egs-border);
}

@media (max-width: 991px) {
    .egs-bp-intro-grid {
        grid-template-columns: 1fr;
    }

    .egs-bp-diagram {
        display: none;
    }

    .egs-bp-mobile-nodes {
        display: flex !important;
    }
}

.egs-bp-mobile-nodes {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.egs-bp-mobile-nodes .egs-bp-node {
    position: static;
    transform: none;
}

.egs-bp-mobile-nodes .egs-bp-node:hover {
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .egs-bp-intro {
        padding: 56px 0 48px;
    }

    .egs-bp-intro-copy h2 {
        font-size: 22px;
    }
}

.egs-bp-punch {
    background: #fff;
    padding: 88px 0;
}

.egs-bp-punch-head {
    /* max-width: 640px; */
    margin: 0 auto 46px;
    text-align: center;
}

.egs-bp-punch-head h2 {
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: clamp(24px, 3vw, 32px); */
    font-weight: 700;
    color: var(--egs-ink);
    margin: 6px 0 12px;
}

.egs-bp-punch-head p {
    font-family: 'Raleway', sans-serif;
    color: var(--egs-text-body);
    /* font-size: 15px; */
    line-height: 1.8;
    margin: 0;
}

.egs-bp-punch-sheet {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--egs-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(15, 43, 31, 0.06);
}

.egs-bp-punch-row {
    display: grid;
    grid-template-columns: 64px 1fr 26px;
    align-items: center;
    gap: 18px;
    padding: 18px 26px;
    border-bottom: 1px solid var(--egs-border);
    background: #fff;
    transition: background .2s ease;
}

.egs-bp-punch-row:last-child {
    border-bottom: none;
}

.egs-bp-punch-row:nth-child(even) {
    background: var(--egs-mint);
}

.egs-bp-punch-row:hover {
    background: var(--egs-sage);
}

.egs-bp-punch-num {
    font-family: var(--egs-mono);
    /* font-size: 13px; */
    font-weight: 700;
    color: var(--egs-green-dark);
    background: var(--egs-sage);
    border: 1.5px solid var(--egs-green);
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease;
}

.egs-bp-punch-row:nth-child(7n+2) .egs-bp-punch-num {
    border-color: var(--egs-fern);
}

.egs-bp-punch-row:nth-child(7n+4) .egs-bp-punch-num {
    border-color: var(--egs-moss);
}

.egs-bp-punch-row:nth-child(7n+6) .egs-bp-punch-num {
    border-color: var(--egs-ink);
}

.egs-bp-punch-row:hover .egs-bp-punch-num {
    background: #fff;
}

.egs-bp-punch-text {
    font-family: 'Raleway', sans-serif;
    /* font-size: 14.5px; */
    font-weight: 600;
    color: var(--egs-ink);
    line-height: 1.5;
}

.egs-bp-punch-text small {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    /* font-size: 13px; */
    color: var(--egs-text-muted);
    margin-top: 3px;
}

.egs-bp-punch-check {
    color: var(--egs-green);
    font-size: 19px;
    justify-self: end;
}

@media (max-width: 575px) {
    .egs-bp-punch {
        padding: 56px 0;
    }

    .egs-bp-punch-row {
        grid-template-columns: 40px 1fr 20px;
        padding: 15px 16px;
        gap: 12px;
    }

    .egs-bp-punch-num {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .egs-bp-punch-text {
        font-size: 13.5px;
    }
}

.egs-bp-rack {
    position: relative;
    background: linear-gradient(165deg, var(--egs-fern) 0%, var(--egs-green-dark) 45%, var(--egs-deep) 100%);
    padding: 92px 0;
    overflow: hidden;
}

.egs-bp-rack::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}

.egs-bp-rack .container {
    position: relative;
    z-index: 1;
}

.egs-bp-rack-head {
    /* max-width: 640px; */
    margin: 0 auto 50px;
    text-align: center;
}

.egs-bp-rack-head h2 {
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: clamp(24px, 3vw, 32px); */
    font-weight: 700;
    color: #fff;
    margin: 6px 0 12px;
}

.egs-bp-rack-head p {
    font-family: 'Raleway', sans-serif;
    color: var(--bp-ink-on-dark);
    /* font-size: 15px; */
    line-height: 1.8;
    margin: 0;
}

.egs-bp-module-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.egs-bp-module {
    position: relative;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(126, 194, 106, 0.22);
    border-radius: 14px;
    padding: 26px 18px 22px;
    text-align: center;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.egs-bp-module::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 7px;
    background: var(--egs-green-light);
    border-radius: 3px 3px 0 0;
    opacity: 0.35;
    transition: opacity .3s ease;
}

.egs-bp-module:hover {
    transform: translateY(-6px);
    background: rgba(126, 194, 106, 0.1);
    border-color: var(--egs-green-light);
}

.egs-bp-module:hover::before {
    opacity: 1;
}

.egs-bp-module .egs-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
    border-radius: 12px;
    background: rgba(126, 194, 106, 0.14);
    color: var(--egs-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    transition: background .3s ease, color .3s ease;
}

.egs-bp-module:nth-child(1) .egs-icon {
    background: color-mix(in srgb, var(--egs-lume) 22%, transparent 78%);
    color: var(--egs-lume);
}

.egs-bp-module:nth-child(2) .egs-icon {
    background: color-mix(in srgb, var(--egs-green-light) 20%, transparent 80%);
    color: var(--egs-green-light);
}

.egs-bp-module:nth-child(3) .egs-icon {
    background: color-mix(in srgb, var(--egs-green) 26%, transparent 74%);
    color: color-mix(in srgb, var(--egs-green) 70%, white 30%);
}

.egs-bp-module:nth-child(4) .egs-icon {
    background: color-mix(in srgb, var(--egs-green) 26%, transparent 74%);
}

.egs-bp-module:nth-child(1)::before {
    background: var(--egs-lume);
}

.egs-bp-module:nth-child(2)::before {
    background: var(--egs-green-light);
}

.egs-bp-module:nth-child(3)::before {
    background: var(--egs-green);
}

.egs-bp-module:nth-child(4)::before {
    background: var(--egs-mint);
}

.egs-bp-module:nth-child(5)::before {
    background: #fff;
}

.egs-bp-module h5 {
    font-family: 'Raleway', sans-serif;
    /* font-size: 14px; */
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.35;
}

.egs-bp-module p {
    font-family: 'Raleway', sans-serif;
    /* font-size: 12px; */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.egs-bp-rack-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 900px;
    margin: 34px auto 0;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(126, 194, 106, 0.2);
    border-radius: 14px;
}

.egs-bp-rack-note i {
    color: var(--egs-green-light);
    /* font-size: 20px; */
    flex-shrink: 0;
    margin-top: 2px;
}

.egs-bp-rack-note p {
    font-family: 'Raleway', sans-serif;
    /* font-size: 13.5px; */
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

@media (max-width: 991px) {
    .egs-bp-module-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .egs-bp-rack {
        padding: 56px 0;
    }

    .egs-bp-module-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .egs-bp-module {
        padding: 20px 14px 18px;
    }

    .egs-bp-rack-note {
        flex-direction: column;
        gap: 10px;
        padding: 18px;
    }
}

.egs-bp-scale {
    background: var(--bp-paper);
    padding: 92px 0 80px;
}

.egs-bp-scale-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.egs-bp-scale-copy h2 {
    font-family: 'Poppins', sans-serif;
    /* font-size: clamp(24px, 3vw, 32px); */
    font-weight: 700;
    color: var(--egs-ink);
    margin: 6px 0 16px;
    line-height: 1.3;
}

.egs-bp-scale-copy p {
    font-family: 'Raleway', sans-serif;
    /* font-size: 15px; */
    line-height: 1.85;
    color: var(--egs-text-body);
    margin-bottom: 14px;
}

.egs-bp-ruler {
    position: relative;
    background: #fff;
    border: 1px solid var(--egs-border);
    border-radius: 18px;
    padding: 40px 30px 30px;
    box-shadow: 0 20px 44px rgba(15, 43, 31, 0.07);
}

.egs-bp-ruler-track {
    position: relative;
    height: 3px;
    background: var(--egs-border);
    border-radius: 2px;
    margin: 0 6px 0;
}

.egs-bp-ruler-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--egs-green-light), var(--egs-green));
    border-radius: 2px;
}

.egs-bp-ruler-stops {
    display: flex;
    justify-content: space-between;
    margin-top: -2px;
}

.egs-bp-ruler-stop {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.egs-bp-ruler-stop:first-child {
    align-items: flex-start;
    text-align: left;
}

.egs-bp-ruler-stop:last-child {
    align-items: flex-end;
    text-align: right;
}

.egs-bp-ruler-tick {
    width: 3px;
    height: 16px;
    background: var(--egs-green-dark);
    border-radius: 2px;
    margin-top: -1px;
}

.egs-bp-ruler-stop h6 {
    font-family: 'Poppins', sans-serif;
    /* font-size: 14px; */
    font-weight: 700;
    color: var(--egs-ink);
    margin: 12px 0 4px;
}

.egs-bp-ruler-stop span {
    font-family: var(--egs-mono);
    /* font-size: 11px; */
    color: var(--egs-text-muted);
    /* max-width: 130px; */
    line-height: 1.5;
    display: block;
}

.egs-bp-scale-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

@media (max-width: 991px) {
    .egs-bp-scale-grid {
        grid-template-columns: 1fr;
    }

    .egs-bp-ruler-stop span {
        max-width: 100px;
        font-size: 10px;
    }
}

@media (max-width: 575px) {
    .egs-bp-scale {
        padding: 56px 0;
    }

    .egs-bp-ruler {
        padding: 30px 18px 22px;
    }

    .egs-bp-ruler-stops {
        gap: 4px;
    }

    .egs-bp-ruler-stop span {
        display: none;
    }

    .egs-bp-ruler-stop h6 {
        font-size: 11.5px;
    }
}

.egs-bp-cta {
    position: relative;
    background: var(--egs-green-dark);
    padding: 76px 0;
    overflow: hidden;
}

.egs-bp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 15%, rgba(126, 194, 106, 0.24) 0%, transparent 55%);
    pointer-events: none;
}

.egs-bp-cta-box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    flex-wrap: wrap;
}

.egs-bp-cta-stamp {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2px dashed var(--egs-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--egs-green-light);
    font-size: 26px;
    transform: rotate(-8deg);
}

.egs-bp-cta-box h3 {
    /* font-family: 'Poppins', sans-serif; */
    color: #fff;
    font-weight: 700;
    /* font-size: clamp(20px, 2.6vw, 27px); */
    margin-bottom: 8px;
}

.egs-bp-cta-box p {
    /* font-family: 'Raleway', sans-serif; */
    color: rgba(255, 255, 255, 0.72);
    /* font-size: 14.5px; */
    margin: 0;
    /* max-width: 480px; */
}

@media (max-width: 767px) {
    .egs-bp-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .egs-bp-cta-box p {
        max-width: none;
    }
}

/* ---------- INTEGRATION SERVICES PAGE ---------- */

.egs-isc-section {
    background: #fff;
    padding: 34px 0 80px;
}

.egs-isc-head {
    text-align: center;
    /* max-width: 680px; */
    margin: 0 auto 50px;
}

.egs-isc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* font-size: 12px; */
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--egs-green);
    margin-bottom: 14px;
}

.egs-isc-eyebrow::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--egs-green);
}

.egs-isc-head h2 {
    /* font-size: 30px; */
    font-weight: 700;
    color: var(--egs-ink);
    margin-bottom: 12px;
}

.egs-isc-head p {
    color: #55655c;
    /* font-size: 15px; */
    line-height: 1.75;
    margin: 0;
}

.egs-isc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.egs-isc-card {
    background: var(--egs-gray);
    border: 1px solid var(--egs-border);
    border-radius: 18px;
    padding: 2px 26px;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.egs-isc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(15, 43, 31, 0.12);
    background: #fff;
}

.egs-isc-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e4efe1;
    color: var(--egs-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 22px; */
    margin-bottom: 10px;
    margin-top: 10px;
}

.egs-isc-card h5 {
    /* font-size: 16px; */
    font-weight: 700;
    color: var(--egs-ink);
    margin-bottom: 10px;
    line-height: 1.3;
}

.egs-isc-card p {
    /* font-size: 13px; */
    line-height: 1.65;
    color: #6b7a70;
    margin-bottom: 18px;
}

.egs-isc-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--egs-green);
    color: var(--egs-green);
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 14px; */
    text-decoration: none;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.egs-isc-arrow:hover {
    background: var(--egs-green);
    color: #fff;
    transform: translateX(3px);
}

.egs-isc-cta {
    position: relative;
    background: var(--egs-green-dark);
    border-radius: 20px;
    padding: 30px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.egs-isc-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(126, 194, 106, 0.35) 1.2px, transparent 1.2px);
    background-size: 16px 16px;
    -webkit-mask-image: linear-gradient(120deg, #000 0%, transparent 40%);
    mask-image: linear-gradient(120deg, #000 0%, transparent 40%);
    opacity: .5;
    pointer-events: none;
}

.egs-isc-cta-left {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.egs-isc-cta-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    color: var(--egs-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.egs-isc-cta-left h4 {
    color: #fff;
    /* font-size: 19px; */
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    /* max-width: 420px; */
}

.egs-isc-cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--egs-green);
    color: #fff;
    font-weight: 700;
    /* font-size: 14px; */
    padding: 13px 26px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
    flex-shrink: 0;
}

.egs-isc-cta-btn:hover {
    background: #3f8a3f;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .egs-isc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .egs-isc-section {
        padding: 56px 0;
    }

    .egs-isc-grid {
        grid-template-columns: 1fr;
    }

    .egs-isc-cta {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .egs-isc-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- NETSUITE CRM PAGE ---------- */

:root {
    --egs2-dark: #0f2b1f;
    --egs2-dark-2: #123626;
    --egs2-green: #4c9a4c;
    --egs2-green-light: #8fd177;
    --egs2-ink: #16241b;
    --egs2-muted: #5c6a5f;
    --egs2-cream: #f7f9f4;
    --egs2-border: #e3ebe1;
    --egs2-mono: 'JetBrains Mono', 'Courier New', monospace;
    --egs2-head: 'Poppins', sans-serif;
}

.egs-crm2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--egs2-mono);
    /* font-size: 11.5px; */
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--egs2-green);
}

.egs-crm2-eyebrow.on-dark {
    color: var(--egs2-green-light);
}

.egs-crm2-eyebrow::before {
    content: '';
    width: 26px;
    height: 1px;
    background: currentColor;
    opacity: .7;
}

.egs-crm2-hero {
    position: relative;
    background: var(--egs2-dark);
    overflow: hidden;
    padding: 96px 0 0;
}

.egs-crm2-hero::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -160px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(143, 209, 119, 0.16), transparent 70%);
    pointer-events: none;
}

.egs-crm2-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: end;
}

.egs-crm2-hero-copy {
    max-width: 600px;
    padding-bottom: 70px;
}

.egs-crm2-hero h1 {
    font-family: var(--egs2-head);
    color: #fff;
    font-weight: 700;
    font-size: clamp(32px, 4.4vw, 54px);
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin: 20px 0 22px;
}

.egs-crm2-hero h1 em {
    font-style: normal;
    color: var(--egs2-green-light);
    position: relative;
    white-space: nowrap;
}

.egs-crm2-hero h1 em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 10px;
    background: rgba(143, 209, 119, 0.18);
    z-index: -1;
}

.egs-crm2-hero p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 32px;
}

.egs-crm2-hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.egs-crm2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* font-family: var(--egs2-mono); */
    font-weight: 600;
    /* font-size: 13.5px; */
    padding: 15px 26px;
    text-decoration: none;
    background: var(--egs2-green-light);
    color: var(--egs2-dark);
    border-radius: 3px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.egs-crm2-btn:hover {
    color: var(--egs2-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(143, 209, 119, 0.25);
}

.egs-crm2-hero-actions .egs-crm2-note {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--egs2-mono);
}

.egs-crm2-hero-visual {
    position: relative;
}

.egs-crm2-hero-visual .frame {
    position: relative;
    clip-path: polygon(6% 0, 100% 0, 100% 92%, 94% 100%, 0 100%, 0 8%);
    overflow: hidden;
    height: 480px;
    background: var(--egs2-dark-2);
}

.egs-crm2-hero-visual .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .82;
    display: block;
}

.egs-crm2-hero-visual .frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(15, 43, 31, 0) 40%, rgba(15, 43, 31, 0.75) 100%);
}

.egs-crm2-hero-floatcard {
    position: absolute;
    left: -34px;
    bottom: 38px;
    z-index: 2;
    width: 250px;
    background: #fff;
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 24px 50px rgba(15, 43, 31, 0.28);
}

.egs-crm2-hero-floatcard .row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.egs-crm2-hero-floatcard .row+.row {
    border-top: 1px dashed var(--egs2-border);
}

.egs-crm2-hero-floatcard .ic {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(76, 154, 76, 0.1);
    color: var(--egs2-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.egs-crm2-hero-floatcard .tx {
    font-size: 12px;
    line-height: 1.4;
    color: var(--egs2-muted);
}

.egs-crm2-hero-floatcard .tx strong {
    display: block;
    font-size: 12.5px;
    color: var(--egs2-ink);
    font-family: var(--egs2-head);
}

@media (max-width: 991px) {
    .egs-crm2-hero-grid {
        grid-template-columns: 1fr;
    }

    .egs-crm2-hero-copy {
        padding-bottom: 40px;
    }

    .egs-crm2-hero-visual .frame {
        height: 340px;
    }

    .egs-crm2-hero-floatcard {
        left: 16px;
        width: 220px;
    }
}

@media (max-width: 575px) {
    .egs-crm2-hero {
        padding: 56px 0 0;
    }

    .egs-crm2-hero-visual .frame {
        height: 260px;
        clip-path: polygon(4% 0, 100% 0, 100% 95%, 96% 100%, 0 100%, 0 5%);
    }

    .egs-crm2-hero-floatcard {
        position: static;
        width: auto;
        margin-top: 16px;
    }
}

.egs-crm2-timeline {
    position: relative;
    background: #fff;
    padding: 40px 0 90px;
}

.egs-crm2-timeline-head {
    /* max-width: 620px; */
    margin: 0 auto 84px;
    text-align: center;
}

.egs-crm2-timeline-head .egs-crm2-eyebrow {
    justify-content: center;
}

.egs-crm2-timeline-head .egs-crm2-eyebrow::before {
    display: none;
}

.egs-crm2-timeline-head h2 {
    font-family: var(--egs2-head);
    font-weight: 700;
    /* font-size: clamp(24px, 3vw, 34px); */
    color: var(--egs2-ink);
    margin: 16px 0 0;
}

.egs-crm2-rail {
    position: relative;
}

.egs-crm2-rail::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: repeating-linear-gradient(to bottom, var(--egs2-border) 0, var(--egs2-border) 6px, transparent 6px, transparent 12px);
    transform: translateX(-50%);
}

.egs-crm2-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 40px 0;
}

.egs-crm2-item-node {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--egs2-dark);
    color: var(--egs2-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--egs2-mono);
    font-weight: 600;
    font-size: 13px;
    z-index: 2;
    box-shadow: 0 0 0 6px #fff;
}

.egs-crm2-item-copy {
    padding: 8px 0;
}

.egs-crm2-item:nth-child(odd) .egs-crm2-item-copy {
    text-align: right;
    padding-right: 30px;
}

.egs-crm2-item:nth-child(even) .egs-crm2-item-copy {
    grid-column: 2;
    grid-row: 1;
    padding-left: 30px;
}

.egs-crm2-item:nth-child(even) .egs-crm2-item-visual {
    grid-column: 1;
    grid-row: 1;
}

.egs-crm2-item-copy .tag {
    display: inline-block;
    font-family: var(--egs2-mono);
    /* font-size: 11px; */
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--egs2-green);
    background: rgba(76, 154, 76, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.egs-crm2-item-copy h5 {
    font-family: var(--egs2-head);
    /* font-size: 22px; */
    font-weight: 700;
    color: var(--egs2-ink);
    line-height: 1.32;
    margin-bottom: 12px;
}

.egs-crm2-item-copy p {
    /* font-size: 14.5px; */
    line-height: 1.8;
    color: var(--egs2-muted);
    margin: 0;
}

.egs-crm2-item-visual {
    position: relative;
}

.egs-crm2-item-visual .ph {
    position: relative;
    overflow: hidden;
    height: 440px;
    border-radius: 4px;
    clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 6% 100%, 0 88%);
}

.egs-crm2-item:nth-child(even) .egs-crm2-item-visual .ph {
    clip-path: polygon(6% 0, 100% 0, 100% 88%, 94% 100%, 0 100%, 0 12%);
}

.egs-crm2-item-visual .ph img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.egs-crm2-item:hover .ph img {
    transform: scale(1.06);
}

.egs-crm2-item-visual .badge {
    position: absolute;
    top: -16px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--egs2-dark);
    color: var(--egs2-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: 0 12px 24px rgba(15, 43, 31, 0.22);
    z-index: 2;
}

.egs-crm2-item:nth-child(odd) .egs-crm2-item-visual .badge {
    right: 14px;
}

.egs-crm2-item:nth-child(even) .egs-crm2-item-visual .badge {
    left: 14px;
}

@media (max-width: 900px) {
    .egs-crm2-rail::before {
        left: 22px;
    }

    .egs-crm2-item,
    .egs-crm2-item:nth-child(even) .egs-crm2-item-copy,
    .egs-crm2-item:nth-child(even) .egs-crm2-item-visual {
        grid-column: 1;
        grid-row: auto;
    }

    .egs-crm2-item {
        grid-template-columns: 1fr;
        padding-left: 56px;
        gap: 18px;
    }

    .egs-crm2-item-node {
        left: 22px;
        top: 0;
    }

    .egs-crm2-item:nth-child(odd) .egs-crm2-item-copy,
    .egs-crm2-item:nth-child(even) .egs-crm2-item-copy {
        text-align: left;
        padding: 0;
    }

    .egs-crm2-item-visual .ph,
    .egs-crm2-item:nth-child(even) .egs-crm2-item-visual .ph {
        clip-path: polygon(0 0, 96% 0, 100% 10%, 100% 100%, 4% 100%, 0 90%);
        height: 190px;
    }

    .egs-crm2-item:nth-child(odd) .egs-crm2-item-visual .badge,
    .egs-crm2-item:nth-child(even) .egs-crm2-item-visual .badge {
        right: -10px;
        left: auto;
    }
}

.egs-crm2-stats {
    padding: 0 0 100px;
    background: #fff;
}

.egs-crm2-stats-card {
    background: var(--egs2-dark);
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
}

.egs-crm2-stat {
    padding: 46px 30px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.egs-crm2-stat:first-child {
    border-left: none;
}

.egs-crm2-stat .num {
    font-family: var(--egs2-mono);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--egs2-green-light);
    line-height: 1;
}

.egs-crm2-stat .lbl {
    font-family: var(--egs2-mono);
    /* font-size: 10.5px; */
    letter-spacing: .7px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    display: block;
}

@media (max-width: 700px) {
    .egs-crm2-stats-card {
        grid-template-columns: 1fr;
    }

    .egs-crm2-stat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .egs-crm2-stat:first-child {
        border-top: none;
    }
}

.egs-crm2-cta {
    background: var(--egs2-cream);
    padding: 0 0 100px;
}

.egs-crm2-cta-card {
    position: relative;
    background: var(--egs2-dark);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 54px 60px;
}

.egs-crm2-cta-card::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(143, 209, 119, 0.1);
}

.egs-crm2-cta-card h3 {
    position: relative;
    z-index: 1;
    font-family: var(--egs2-head);
    color: #fff;
    font-weight: 700;
    /* font-size: clamp(20px, 2.6vw, 28px); */
    margin-bottom: 10px;
}

.egs-crm2-cta-card p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.62);
    /* font-size: 14.5px; */
    /* max-width: 480px; */
    margin: 0;
    line-height: 1.7;
}

.egs-crm2-cta-card .egs-crm2-btn {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .egs-crm2-cta-card {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        text-align: left;
    }
}

/* ---------- INDUSTRIES PAGE ---------- */

body {
    margin: 0;
    background: #EEF1EA;
}

.egs-ip-switcher {
    background: #fff;
    border-bottom: 1px solid var(--egs-border);
    padding: 20px 0;
}

.egs-ip-switcher-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: space-between;
}

.egs-ip-switcher-track::-webkit-scrollbar {
    display: none;
}

.egs-ip-switcher-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 6px 14px 12px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color .2s ease;
}

.egs-ip-switcher-item i {
    /* font-size: 22px; */
    color: var(--egs-ink);
    opacity: .45;
    transition: opacity .2s ease, color .2s ease;
}

.egs-ip-switcher-item span {
    /* font-size: 12.5px; */
    font-weight: 600;
    color: var(--egs-ink);
    opacity: .55;
    white-space: nowrap;
    transition: opacity .2s ease;
}

.egs-ip-switcher-item:hover i,
.egs-ip-switcher-item:hover span {
    opacity: .85;
}

.egs-ip-switcher-item.active {
    border-color: var(--egs-green);
}

.egs-ip-switcher-item.active i,
.egs-ip-switcher-item.active span {
    color: var(--egs-green);
    opacity: 1;
}

.egs-ip-overview {
    background: #fff;
    padding: 90px 0;
}

.egs-ip-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.egs-ip-overview-media {
    position: relative;
}

.egs-ip-overview-media img {
    width: 100%;
    height: 200%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.egs-ip-outcomes-card {
    position: absolute;
    right: -28px;
    bottom: -36px;
    width: 250px;
    background: var(--egs-green-dark);
    color: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 24px 48px rgba(20, 38, 28, .28);
}

.egs-ip-outcomes-title {
    display: flex;
    align-items: center;
    gap: 8px;
    /* font-size: 13px; */
    font-weight: 700;
    color: var(--egs-green-light);
    margin-bottom: 16px;
}

.egs-ip-outcome-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.egs-ip-outcome-row:first-of-type {
    border-top: none;
}

.egs-ip-outcome-row span {
    /* font-size: 12.5px; */
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
}

.egs-ip-outcome-row strong {
    /* font-size: 16px; */
    color: var(--egs-green-light);
    white-space: nowrap;
}

.egs-ip-overview-copy h2 {
    font-weight: 700;
    /* font-size: clamp(26px, 3vw, 34px); */
    color: var(--egs-ink);
    margin: 0 0 16px;
    line-height: 1.2;
}

.egs-ip-overview-copy>p {
    color: #55655c;
    /* font-size: 15px; */
    line-height: 1.75;
    margin: 0 0 32px;
}

.egs-ip-feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.egs-ip-feature-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.egs-ip-feature-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #eaf3e6;
    color: var(--egs-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.egs-ip-feature-row h4 {
    /* font-size: 15.5px; */
    font-weight: 600;
    color: var(--egs-ink);
    margin: 0 0 4px;
}

.egs-ip-feature-row p {
    /* font-size: 13.5px; */
    font-weight: 500;
    color: #6b7a70;
    margin: 0;
    line-height: 1.6;
}

.egs-ip-challenges {
    background: #F4F6F2;
    padding: 90px 0;
}

.egs-ip-section-head {
    text-align: center;
    /* max-width: 640px; */
    margin: 0 auto 48px;
}

.egs-ip-section-head h2 {
    font-weight: 700;
    /* font-size: clamp(24px, 3vw, 32px); */
    color: var(--egs-ink);
    margin: 0;
    line-height: 1.25;
}

.egs-ip-challenge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.egs-ip-challenge-card {
    background: #fff;
    border: 1px solid var(--egs-border);
    border-radius: 14px;
    padding: 30px 26px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.egs-ip-challenge-card:hover {
    transform: translateY(-6px);
    border-color: var(--egs-green);
    box-shadow: 0 20px 40px rgba(20, 38, 28, .1);
}

.egs-ip-challenge-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #eaf3e6;
    color: var(--egs-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.egs-ip-challenge-card h4 {
    /* font-size: 15.5px; */
    font-weight: 700;
    color: var(--egs-ink);
    margin: 0 0 10px;
}

.egs-ip-challenge-card p {
    /* font-size: 13.5px; */
    color: #6b7a70;
    line-height: 1.65;
    margin: 0;
}

.egs-ip-solutions {
    background: #fff;
    padding: 90px 0;
}

.egs-ip-solutions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.egs-ip-solution {
    padding: 8px 10px;
    text-align: center;
}

.egs-ip-solution-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: #eaf3e6;
    color: var(--egs-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background .2s ease, color .2s ease;
}

.egs-ip-solution:hover .egs-ip-solution-icon {
    background: var(--egs-green-dark);
    color: #fff;
}

.egs-ip-solution h5 {
    /* font-size: 14px; */
    font-weight: 700;
    color: var(--egs-ink);
    margin: 0 0 8px;
    line-height: 1.3;
}

.egs-ip-solution p {
    /* font-size: 12.5px; */
    color: #6b7a70;
    line-height: 1.55;
    margin: 0;
}

.egs-ip-story {
    background: #F4F6F2;
    padding: 80px 0 70px;
}

.egs-ip-story-box {
    background: var(--egs-green-dark);
    border-radius: 18px;
    padding: 44px 46px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.egs-ip-story-left h3 {
    color: #fff;
    font-weight: 800;
    font-size: 26px;
    margin: 0 0 24px;
}

.egs-ip-story-client {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.egs-ip-story-logo {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: var(--egs-ink);
    line-height: 1.2;
    text-align: center;
    padding: 4px;
}

.egs-ip-story-client p {
    color: rgba(255, 255, 255, 0.75);
    /* font-size: 14px; */
    line-height: 1.7;
    margin: 0 0 10px;
}

.egs-ip-story-link {
    color: var(--egs-green-light);
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.egs-ip-story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 40px;
}

.egs-ip-story-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.egs-ip-story-stat strong {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
}

.egs-ip-story-stat span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.5;
}

.egs-ip-cta {
    background: #fff;
    padding: 40px 0 90px;
}

.egs-ip-cta-box {
    background: #0a3a1e;
    border-radius: 16px;
    padding: 34px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.egs-ip-cta-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.egs-ip-cta-copy {
    flex: 1;
}

.egs-ip-cta-copy h3 {
    color: #fff;
    font-weight: 600;
    /* font-size: 20px; */
    margin: 0 0 4px;
}

.egs-ip-cta-copy p {
    color: rgba(255, 255, 255, 0.85);
    /* font-size: 14px; */
    margin: 0;
}

.egs-ip-cta-btn {
    background: #fff;
    color: var(--egs-green-dark) !important;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    /* font-size: 14.5px; */
    padding: 14px 26px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.egs-ip-cta-btn:hover {
    background: var(--egs-green-dark);
    color: #fff !important;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .egs-ip-overview-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .egs-ip-outcomes-card {
        right: 16px;
    }

    .egs-ip-challenge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .egs-ip-solutions-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 34px;
    }

    .egs-ip-story-box {
        grid-template-columns: 1fr;
    }

    .egs-ip-story-stats {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 24px;
    }
}

@media (max-width: 767px) {
    .egs-ip-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .egs-ip-story-client {
        flex-direction: column;
    }
}

@media (max-width: 575px) {

    .egs-ip-overview,
    .egs-ip-challenges,
    .egs-ip-solutions {
        padding: 56px 0;
    }

    .egs-ip-challenge-grid {
        grid-template-columns: 1fr;
    }

    .egs-ip-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .egs-ip-story-box,
    .egs-ip-cta-box {
        padding: 28px 24px;
    }

    .egs-ip-story-stats {
        grid-template-columns: 1fr;
    }

    .egs-ip-outcomes-card {
        position: static;
        width: auto;
        margin-top: 20px;
    }
}

/* ---------- BLOG LIST PAGE ---------- */

.egs-bl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* font-size: 12px; */
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--egs-green, #4c9a4c);
    margin-bottom: 12px;
}

.egs-bl-header {
    padding: 56px 0 30px;
    border-bottom: 1px solid var(--egs-border, #e7ebe6);
}

.egs-bl-header h1 {
    /* font-size: clamp(26px, 3vw, 36px) !important; */
    font-weight: 700 !important;
    line-height: 1.15 !important;
    color: var(--egs-ink, #14231b) !important;
    margin: 0 0 10px !important;
}

.egs-bl-header p {
    color: var(--egs-text-muted, #6b7a70) !important;
    /* font-size: 15px !important; */
    line-height: 1.75 !important;
    /* max-width: 600px; */
    margin: 0 0 28px !important;
}

.egs-bl-catnav {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
}

.egs-bl-catnav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    /* font-size: 13px !important; */
    font-weight: 600 !important;
    color: var(--egs-text-muted, #6b7a70) !important;
    background: #fff;
    border: 1px solid var(--egs-border, #e7ebe6);
    padding: 9px 17px;
    border-radius: 999px;
    text-decoration: none !important;
    transition: all .2s ease;
}

.egs-bl-catnav a i {
    font-size: 13px;
}

.egs-bl-catnav a:hover {
    color: var(--egs-ink, #14231b) !important;
    border-color: var(--egs-green, #4c9a4c);
}

.egs-bl-catnav a.active {
    background: var(--egs-green-dark, #0f2b1f);
    border-color: var(--egs-green-dark, #0f2b1f);
    color: #fff !important;
}

@media (max-width: 575px) {
    .egs-bl-catnav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -18px;
        padding: 0 18px 4px;
    }

    .egs-bl-catnav::-webkit-scrollbar {
        display: none;
    }

    .egs-bl-catnav a {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

.egs-bl-layout {
    padding: 46px 0 64px;
}

.egs-bl-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    /* font-size: 16px !important; */
    font-weight: 700 !important;
    color: var(--egs-ink, #14231b) !important;
    margin: 5px 8px 26px 8px !important;
}

.egs-bl-section-title::before {
    content: '';
    width: 4px;
    height: 18px;
    border-radius: 3px;
    background: var(--egs-green, #4c9a4c);
}

.egs-bl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.egs-bl-card {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--egs-border, #e7ebe6);
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.egs-bl-card:hover {
    transform: translateY(-5px);
    border-color: var(--egs-green, #4c9a4c);
    box-shadow: 0 20px 40px rgba(15, 43, 31, .1);
}

.egs-bl-card-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.egs-bl-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.egs-bl-card:hover .egs-bl-card-media img {
    transform: scale(1.06);
}

.egs-bl-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: #fff !important;
    background: var(--egs-green-dark, #0f2b1f);
    padding: 6px 13px;
    border-radius: 999px;
}

.egs-bl-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.egs-bl-card-body h2 {
    font-size: 16.5px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    color: var(--egs-ink, #14231b) !important;
    margin: 0 0 12px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.egs-bl-card-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.egs-bl-card-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--egs-text-muted, #6b7a70) !important;
}

.egs-bl-card-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--egs-gray, #f2f4f1);
    color: var(--egs-ink, #14231b);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.egs-bl-card:hover .egs-bl-card-arrow {
    background: var(--egs-green, #4c9a4c);
    color: #fff;
    transform: rotate(-40deg);
}

.egs-bl-card.is-featured {
    grid-column: 1 / -1;
    flex-direction: row;
}

.egs-bl-card.is-featured .egs-bl-card-media {
    width: 46%;
    height: auto;
    flex-shrink: 0;
}

.egs-bl-card.is-featured .egs-bl-card-body {
    justify-content: center;
    padding: 30px 34px;
}

.egs-bl-card.is-featured .egs-bl-card-body h2 {
    /* font-size: 22px !important; */
    -webkit-line-clamp: 3;
    margin-bottom: 16px !important;
}

@media (max-width: 767px) {
    .egs-bl-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 5%;
    }

    .egs-bl-card.is-featured {
        flex-direction: column;
    }

    .egs-bl-card.is-featured .egs-bl-card-media {
        width: 100%;
        height: 200px;
    }

    .egs-bl-card.is-featured .egs-bl-card-body h2 {
        font-size: 18px !important;
    }
}

.egs-bl-pagination {
    margin-top: 34px;
}

.egs-bl-pagination ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 4%;
    margin: 0;
}

.egs-bl-pagination a,
.egs-bl-pagination li:not(:has(a)) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 6px;
    border-radius: 999px;
    border: 1px solid var(--egs-border, #e7ebe6);
    color: var(--egs-ink, #14231b);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    background: #fff;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.egs-bl-pagination a:hover {
    border-color: var(--egs-green-dark, #0f2b1f);
    color: var(--egs-green-dark, #0f2b1f);
}

.egs-bl-pagination a.active {
    background: var(--egs-green-dark, #0f2b1f);
    border-color: var(--egs-green-dark, #0f2b1f);
    color: #fff;
}

.egs-bl-sidebar {
    padding-left: 22px;
}

.egs-bl-widget {
    background: var(--egs-gray, #f2f4f1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.egs-bl-widget:last-child {
    margin-bottom: 0;
}

.egs-bl-widget-title {
    /* font-size: 14.5px !important; */
    font-weight: 700 !important;
    color: var(--egs-ink, #14231b) !important;
    margin: 0 0 16px !important;
}

.egs-bl-search form {
    display: flex;
    gap: 8px;
}

.egs-bl-search input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--egs-border, #e7ebe6);
    background: #fff;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13.5px;
    line-height: 1.3;
    outline: none;
}

.egs-bl-search button {
    border: none;
    background: var(--egs-green-dark, #0f2b1f);
    color: #fff;
    width: 42px;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}

.egs-bl-search button:hover {
    background: var(--egs-green, #4c9a4c);
}

.egs-bl-recent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--egs-border, #e7ebe6);
}

.egs-bl-recent-item:first-child {
    padding-top: 0;
}

.egs-bl-recent-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.egs-bl-recent-item .thumb {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.egs-bl-recent-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.egs-bl-recent-item h4 {
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin: 0 0 4px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.egs-bl-recent-item h4 a {
    color: var(--egs-ink, #14231b) !important;
    text-decoration: none !important;
}

.egs-bl-recent-item h4 a:hover {
    color: var(--egs-green-dark, #0f2b1f) !important;
}

.egs-bl-recent-item time {
    font-size: 11px !important;
    color: var(--egs-text-muted, #6b7a70) !important;
}

.egs-bl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.egs-bl-tags a {
    /* font-size: 11.5px !important; */
    font-weight: 600 !important;
    line-height: 1 !important;
    color: var(--egs-ink, #14231b) !important;
    background: #fff;
    border: 1px solid var(--egs-border, #e7ebe6);
    padding: 7px 13px;
    border-radius: 999px;
    text-decoration: none !important;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.egs-bl-tags a:hover {
    background: var(--egs-green-dark, #0f2b1f);
    border-color: var(--egs-green-dark, #0f2b1f);
    color: #fff !important;
}

@media (max-width: 991px) {
    .egs-bl-sidebar {
        padding-left: 0;
        margin-top: 44px;
    }
}

/* ---------- BLOG DETAIL PAGE ---------- */

.egs-post-header {
    padding: 44px 0 0;
    background: #fff;
}

.egs-post-header .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.egs-post-header .breadcrumbs a {
    color: var(--egs-text-muted, #6b7a70);
    text-decoration: none;
}

.egs-post-header .breadcrumbs a:hover {
    color: var(--egs-green-dark);
}

.egs-post-header .breadcrumbs li+li::before {
    content: '/';
    margin: 0 8px;
    color: #c3cec7;
}

.egs-post-header .breadcrumbs .current {
    color: var(--egs-green);
    font-weight: 600;
}

.egs-post-article {
    padding: 30px 0 60px;
}

.egs-post-cat {
    display: inline-block;
    /* font-size: 11.5px; */
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--egs-green-dark);
    background: #eef6ec;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    text-decoration: none;
}

.egs-post-article .title {
    /* font-size: clamp(26px, 3.4vw, 38px); */
    font-weight: 700;
    line-height: 1.25;
    color: var(--egs-ink);
    margin-bottom: 20px;
    word-break: break-word;
}

.egs-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--egs-border);
}

.egs-post-meta .item {
    display: flex;
    align-items: center;
    gap: 7px;
    /* font-size: 13px; */
    color: var(--egs-text-muted, #6b7a70);
}

.egs-post-meta .item i {
    color: var(--egs-green);
    /* font-size: 14px; */
}

.egs-post-meta .item a {
    color: inherit;
    text-decoration: none;
}

.egs-post-meta .item a:hover {
    color: var(--egs-green-dark);
}

.egs-post-cover {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 34px;
    box-shadow: 0 20px 44px rgba(15, 43, 31, 0.08);
}

.egs-post-cover img {
    width: 100%;
    display: block;
}

.egs-post-toc {
    background: var(--egs-gray);
    border: 1px solid var(--egs-border);
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 32px;
}

.egs-post-toc h4 {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    color: var(--egs-ink);
    margin: 0 0 14px;
}

.egs-post-toc h4 i {
    color: var(--egs-green);
}

.egs-post-toc .toggle-toc {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--egs-green-dark);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 0;
    cursor: pointer;
}

.egs-post-toc .toggle-toc i.bi-chevron-down {
    transition: transform .2s ease;
}

.egs-post-toc .toggle-toc.open i.bi-chevron-down {
    transform: rotate(180deg);
}

.egs-post-toc .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.egs-post-toc .toc-list li {
    margin-bottom: 2px;
}

.egs-post-toc .toc-list li.toc-h3 {
    padding-left: 16px;
}

.egs-post-toc .toc-list li.toc-h4 {
    padding-left: 32px;
}

.egs-post-toc .toc-list li.toc-h5 {
    padding-left: 48px;
}

.egs-post-toc .toc-list li.toc-h6 {
    padding-left: 64px;
}

.egs-post-toc .toc-list a {
    display: block;
    color: var(--egs-text-body, #55655c);
    font-size: 13.5px;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 7px;
    transition: background .2s ease, color .2s ease;
}

.egs-post-toc .toc-list a:hover {
    background: #fff;
    color: var(--egs-green-dark);
}

.egs-post-toc .toc-list a.active {
    background: #fff;
    color: var(--egs-green-dark);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(15, 43, 31, 0.08);
}

@media (max-width: 768px) {
    .egs-post-toc {
        padding: 16px 18px;
    }

    .egs-post-toc .toggle-toc {
        display: flex;
    }

    .egs-post-toc h4 {
        display: none;
    }

    .egs-post-toc .toc-content {
        display: none;
        margin-top: 14px;
    }

    .egs-post-toc .toc-content.show {
        display: block;
    }
}

.egs-post-content {
    color: var(--egs-text-body, #55655c);
    /* font-size: 15.5px; */
    line-height: 1.85;
    overflow-wrap: break-word;
}

.egs-post-content h1,
.egs-post-content h2,
.egs-post-content h3,
.egs-post-content h4,
.egs-post-content h5,
.egs-post-content h6 {
    scroll-margin-top: 100px;
    color: var(--egs-ink);
    font-weight: 700;
    margin: 34px 0 16px;
}

/* .egs-post-content h2 {
    font-size: 24px;
}

.egs-post-content h3 {
    font-size: 20px;
} */

/* .egs-post-content p {
    margin-bottom: 18px;
} */

.egs-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 10px 0;
}

.egs-post-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.egs-post-content a {
    color: var(--egs-green-dark);
    text-decoration: underline;
    word-break: break-word;
}

.egs-post-content blockquote {
    border-left: 3px solid var(--egs-green);
    background: var(--egs-gray);
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--egs-ink);
}

.egs-post-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-top: 30px;
    margin-top: 36px;
    border-top: 1px solid var(--egs-border);
}

.egs-post-bottom .lbl {
    /* font-size: 12.5px; */
    font-weight: 700;
    color: var(--egs-text-muted, #6b7a70);
    display: flex;
    align-items: center;
    gap: 6px;
}

.egs-post-bottom ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.egs-post-bottom a {
    display: inline-block;
    /* font-size: 12.5px; */
    font-weight: 600;
    color: var(--egs-ink);
    background: var(--egs-gray);
    border: 1px solid var(--egs-border);
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.egs-post-bottom a:hover {
    background: var(--egs-green-dark);
    border-color: var(--egs-green-dark);
    color: #fff;
}

.egs-post-comments {
    padding: 40px 0;
    border-top: 1px solid var(--egs-border);
}

.egs-post-comments .comments-count {
    /* font-size: 19px; */
    font-weight: 800;
    color: var(--egs-ink);
    margin-bottom: 26px;
}

.egs-post-comments .comment {
    margin-bottom: 24px;
}

.egs-post-comments .comment-reply {
    margin-left: 56px;
    margin-top: 18px;
    margin-bottom: 0;
}

.egs-post-comments .comment-img img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    flex-shrink: 0;
}

.egs-post-comments h5 {
    /* font-size: 14.5px; */
    margin: 0 0 3px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.egs-post-comments h5 a:first-child {
    color: var(--egs-ink);
    text-decoration: none;
    font-weight: 700;
}

.egs-post-comments .reply {
    margin-left: 12px;
    /* font-size: 12px; */
    color: var(--egs-green);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.egs-post-comments .reply:hover {
    color: var(--egs-green-dark);
}

.egs-post-comments time {
    /* font-size: 12px; */
    color: var(--egs-text-muted, #6b7a70);
    display: block;
    margin-bottom: 6px;
}

.egs-post-comments p {
    /* font-size: 14px; */
    color: var(--egs-text-body, #55655c);
    line-height: 1.7;
    margin: 0;
    overflow-wrap: break-word;
}

.egs-post-comment-form {
    background: var(--egs-gray);
    border-radius: 20px;
    padding: 36px;
}

.egs-post-comment-form h4 {
    /* font-size: 19px; */
    font-weight: 800;
    color: var(--egs-ink);
    margin-bottom: 6px;
}

.egs-post-comment-form>p {
    /* font-size: 13.5px; */
    color: var(--egs-text-muted, #6b7a70);
    margin-bottom: 22px;
}

.egs-post-comment-form .form-control {
    border: 1px solid var(--egs-border);
    border-radius: 10px;
    padding: 12px 16px;
    /* font-size: 14px; */
    background: #fff;
    margin-bottom: 16px;
    width: 100%;
}

.egs-post-comment-form .form-control:focus {
    border-color: var(--egs-green);
    box-shadow: 0 0 0 4px rgba(76, 154, 76, 0.1);
    outline: none;
}

.egs-post-comment-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.egs-post-comment-form button[type="submit"] {
    background: var(--egs-green-dark);
    color: #fff;
    font-weight: 700;
    /* font-size: 14px; */
    padding: 12px 30px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background .25s ease;
}

.egs-post-comment-form button[type="submit"]:hover {
    background: var(--egs-green);
}

.egs-post-sidebar .widget-item {
    background: #fff;
    border: 1px solid var(--egs-border);
    border-radius: 16px;
    padding: 24px 24px 26px;
    margin-bottom: 24px;
}

.egs-post-sidebar .widget-title {
    /* font-size: 15px; */
    font-weight: 700;
    color: var(--egs-ink);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--egs-border);
    position: relative;
}

.egs-post-sidebar .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 34px;
    height: 2px;
    background: var(--egs-green);
}

.egs-post-sidebar .search-widget form {
    display: flex !important;
    align-items: stretch;
    width: 100%;
    border: 1px solid var(--egs-border);
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.egs-post-sidebar .search-widget input[type="text"] {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    border: none !important;
    box-shadow: none !important;
    background: #fff !important;
    padding: 11px 14px !important;
    margin: 0 !important;
    /* font-size: 13.5px !important; */
    line-height: 1.4 !important;
    color: var(--egs-ink, #14231b) !important;
    outline: none !important;
    box-sizing: border-box;
}

.egs-post-sidebar .search-widget input[type="text"]::placeholder {
    color: var(--egs-text-muted, #6b7a70);
    opacity: 1;
}

.egs-post-sidebar .search-widget button {
    flex: 0 0 auto !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    background: var(--egs-green-dark);
    color: #fff !important;
    padding: 0 16px !important;
    margin: 0 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}

.egs-post-sidebar .search-widget button:hover {
    background: var(--egs-green);
}

.egs-post-sidebar .categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.egs-post-sidebar .categories-widget a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 0;
    /* font-size: 13.5px; */
    color: var(--egs-text-body, #55655c);
    text-decoration: none;
    border-bottom: 1px dashed var(--egs-border);
}

.egs-post-sidebar .categories-widget li:last-child a {
    border-bottom: none;
}

.egs-post-sidebar .categories-widget a:hover {
    color: var(--egs-green-dark);
}

.egs-post-sidebar .categories-widget span {
    /* font-size: 11.5px; */
    font-weight: 700;
    color: var(--egs-green-dark);
    background: #eef6ec;
    padding: 2px 8px;
    border-radius: 999px;
    flex-shrink: 0;
}

.egs-post-sidebar .recent-posts-widget .post-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--egs-border);
}

.egs-post-sidebar .recent-posts-widget .post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.egs-post-sidebar .recent-posts-widget img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.egs-post-sidebar .recent-posts-widget h4 {
    font-size: 13.5px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.4;
}

.egs-post-sidebar .recent-posts-widget h4 a {
    color: var(--egs-ink);
    text-decoration: none;
}

.egs-post-sidebar .recent-posts-widget h4 a:hover {
    color: var(--egs-green-dark);
}

.egs-post-sidebar .recent-posts-widget time {
    font-size: 11.5px;
    color: var(--egs-text-muted, #6b7a70);
}

.egs-post-sidebar .tags-widget ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.egs-post-sidebar .tags-widget a {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--egs-ink);
    background: var(--egs-gray);
    border: 1px solid var(--egs-border);
    padding: 6px 13px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.egs-post-sidebar .tags-widget a:hover {
    background: var(--egs-green-dark);
    border-color: var(--egs-green-dark);
    color: #fff;
}

@media (max-width: 991px) {
    .egs-post-sidebar {
        margin-top: 40px;
    }

    .egs-post-comment-form {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .egs-post-article {
        padding: 22px 0 40px;
    }

    .egs-post-article .title {
        margin-bottom: 16px;
    }

    .egs-post-meta {
        gap: 14px 18px;
        padding-bottom: 18px;
        margin-bottom: 20px;
    }

    .egs-post-cover {
        border-radius: 14px;
        margin-bottom: 24px;
    }

    .egs-post-content {
        font-size: 15px;
        line-height: 1.75;
    }

    .egs-post-content h2 {
        font-size: 20px;
        margin: 26px 0 12px;
    }

    .egs-post-content h3 {
        font-size: 17.5px;
        margin: 22px 0 10px;
    }

    .egs-post-content blockquote {
        padding: 14px 16px;
        margin: 18px 0;
    }

    .egs-post-bottom {
        padding-top: 22px;
        margin-top: 26px;
    }

    .egs-post-bottom .lbl.ms-md-3 {
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
    }

    .egs-post-comments {
        padding: 30px 0;
    }

    .egs-post-comments .comment-reply {
        margin-left: 24px;
    }

    .egs-post-comments .comment-img img {
        width: 38px;
        height: 38px;
        margin-right: 12px;
    }

    .egs-post-comments h5 {
        font-size: 14px;
    }

    .egs-post-comment-form {
        padding: 22px;
        border-radius: 16px;
    }

    .egs-post-comment-form h4 {
        font-size: 17px;
    }

    .egs-post-comment-form button[type="submit"] {
        width: 100%;
    }

    .egs-post-comment-form .text-end {
        text-align: center !important;
    }
}

@media (max-width: 575px) {
    .egs-post-cat {
        font-size: 11px;
        padding: 5px 12px;
    }

    .egs-post-meta {
        gap: 10px 16px;
    }

    .egs-post-meta .item {
        font-size: 12px;
    }

    .egs-post-toc {
        padding: 14px 16px;
        margin-bottom: 24px;
    }

    .egs-post-content img {
        border-radius: 10px;
    }

    .egs-post-sidebar .widget-item {
        padding: 20px;
        border-radius: 14px;
    }

    .egs-post-comments .comment-reply {
        margin-left: 14px;
    }
}

/* ---------- CONTACT PAGE ---------- */

.egs-contact-section {
    background: #fff;
    padding: 40px 0 70px;
}

.egs-contact-container {
    background: var(--egs-gray);
    border-radius: 32px;
    padding: 56px;
}

.egs-contact-container .breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    font-size: 13px;
}

.egs-contact-container .breadcrumbs a {
    color: var(--egs-text-muted);
    text-decoration: none;
}

.egs-contact-container .breadcrumbs a:hover {
    color: var(--egs-green-dark);
}

.egs-contact-container .breadcrumbs li+li::before {
    content: '/';
    margin: 0 8px;
    color: #b9c4bc;
}

.egs-contact-container .breadcrumbs .current {
    color: var(--egs-green);
    font-weight: 600;
}

.egs-contact-copy h1 {
    font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 800;
    color: var(--egs-ink);
    line-height: 1.08;
    margin-bottom: 22px;
}

.egs-contact-copy h1 .dash {
    color: var(--egs-green);
    font-weight: 400;
}

.egs-contact-copy>p {
    color: var(--egs-text-body);
    /* font-size: 15.5px; */
    line-height: 1.75;
    max-width: 400px;
    margin-bottom: 34px;
}

.egs-contact-field-group {
    margin-bottom: 22px;
}

.egs-contact-field-group .label {
    display: block;
    font-size: 13.5px;
    color: var(--egs-text-muted);
    margin-bottom: 4px;
}

.egs-contact-field-group .value {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--egs-ink);
}

.egs-contact-field-group .value a {
    color: var(--egs-ink);
    text-decoration: none;
}

.egs-contact-live-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--egs-green-dark);
    color: #fff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 13px 22px 13px 24px;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.25s ease;
}

.egs-contact-live-cta:hover {
    background: var(--egs-ink);
    color: #fff;
}

.egs-contact-live-cta .arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.egs-contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(15, 43, 31, 0.06);
}

.egs-contact-section .php-email-form label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--egs-text-muted);
    margin-bottom: 6px;
}

.egs-contact-section .php-email-form .form-control {
    border: 1px solid var(--egs-border);
    border-radius: 12px;
    padding: 13px 18px;
    font-size: 14.5px;
    color: var(--egs-ink);
    background: var(--egs-gray);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.egs-contact-section .php-email-form .form-control::placeholder {
    color: #9aa89f;
}

.egs-contact-section .php-email-form .form-control:focus {
    border-color: var(--egs-green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(76, 154, 76, 0.1);
    outline: none;
}

.egs-contact-section .php-email-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
    border-radius: 18px;
}

.egs-contact-section .php-email-form .form-row-tight {
    margin-bottom: 20px;
}

.egs-contact-section .php-email-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--egs-green-dark);
    color: #fff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 13px 22px 13px 24px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease;
}

.egs-contact-section .php-email-form button[type="submit"]:hover {
    background: var(--egs-ink);
}

.egs-contact-section .php-email-form button[type="submit"] .arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@media (max-width: 991px) {
    .egs-contact-container {
        padding: 40px 28px;
    }

    .egs-contact-copy>p {
        max-width: 100%;
    }

    .egs-contact-card {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .egs-contact-container {
        padding: 30px 18px;
        border-radius: 24px;
    }

    .egs-contact-card {
        padding: 24px;
    }

    .egs-contact-section .php-email-form button[type="submit"] {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- CONTACT PAGE — custom country-code dropdown ---------- */

.egs-cc {
    position: relative;
}

.egs-cc-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #fff;
    border: 1px solid var(--egs-border, #e7ebe6);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--egs-text-muted, #6b7a70);
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.egs-cc-trigger.has-value {
    color: var(--egs-ink, #14231b);
}

.egs-cc-trigger:hover {
    border-color: var(--egs-green, #4c9a4c);
}

.egs-cc.open .egs-cc-trigger {
    border-color: var(--egs-green, #4c9a4c);
    box-shadow: 0 0 0 4px rgba(76, 154, 76, 0.12);
}

.egs-cc-trigger i {
    font-size: 13px;
    color: var(--egs-text-muted, #6b7a70);
    transition: transform .2s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.egs-cc.open .egs-cc-trigger i {
    transform: rotate(180deg);
}

.egs-cc.is-invalid .egs-cc-trigger {
    border-color: #dc3545;
}

.egs-cc-panel {
    position: fixed;
    z-index: 2000;
    background: #fff;
    border: 1px solid var(--egs-border, #e7ebe6);
    border-radius: 14px;
    box-shadow: 0 20px 48px rgba(15, 43, 31, 0.22), 0 2px 8px rgba(15, 43, 31, 0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
    transform-origin: top center;
}

.egs-cc-panel.egs-cc-panel-up {
    transform-origin: bottom center;
    transform: translateY(6px) scale(0.98);
}

.egs-cc-panel.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.egs-cc-panel::before {
    content: '';
    position: absolute;
    left: 22px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid var(--egs-border, #e7ebe6);
    transform: rotate(45deg);
}

.egs-cc-panel-down::before {
    top: -7px;
    border-right: none;
    border-bottom: none;
}

.egs-cc-panel-up::before {
    bottom: -7px;
    border-left: none;
    border-top: none;
}

.egs-cc-search {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--egs-border, #e7ebe6);
    background: #fafbfa;
    position: relative;
    z-index: 1;
}

.egs-cc-search i {
    color: var(--egs-text-muted, #6b7a70);
    font-size: 13px;
    flex-shrink: 0;
}

.egs-cc-search input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 13.5px;
    padding: 4px 0;
    color: var(--egs-ink, #14231b);
}

.egs-cc-list {
    list-style: none;
    margin: 0;
    padding: 6px;
    max-height: 252px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.egs-cc-list::-webkit-scrollbar {
    width: 6px;
}

.egs-cc-list::-webkit-scrollbar-thumb {
    background: var(--egs-border, #e7ebe6);
    border-radius: 6px;
}

.egs-cc-list li {
    padding: 10px 12px;
    font-size: 13.5px;
    color: var(--egs-ink, #14231b);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: background .12s ease;
}

.egs-cc-list li:hover,
.egs-cc-list li.egs-cc-active {
    background: var(--egs-gray, #f2f4f1);
}

.egs-cc-list li.egs-cc-selected {
    background: #eef6ec;
    color: var(--egs-green-dark, #0f2b1f);
    font-weight: 700;
}

.egs-cc-list li .egs-cc-name {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.egs-cc-list li .egs-cc-name span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.egs-cc-list li .egs-cc-check {
    font-size: 13px;
    color: var(--egs-green, #4c9a4c);
    flex-shrink: 0;
    width: 14px;
}

.egs-cc-list li .code {
    color: var(--egs-text-muted, #6b7a70);
    font-weight: 600;
    flex-shrink: 0;
    font-size: 12.5px;
}

.egs-cc-list li.egs-cc-selected .code {
    color: var(--egs-green-dark, #0f2b1f);
}

.egs-cc-list .egs-cc-empty {
    padding: 20px 12px;
    text-align: center;
    color: var(--egs-text-muted, #6b7a70);
    font-size: 13px;
    cursor: default;
}

.egs-cc-list .egs-cc-empty:hover {
    background: none;
}

.egs-cc-group-label {
    padding: 10px 12px 4px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--egs-text-muted, #6b7a70);
    cursor: default;
}

.egs-cc-group-label:hover {
    background: none !important;
}

.egs-cc.is-invalid~.invalid-feedback,
.egs-cc .invalid-feedback.show {
    display: block;
}

@media (max-width: 575px) {
    .egs-cc-panel {
        left: 16px !important;
        right: 16px !important;
        width: auto !important;
    }
}

.egs-hero-v2 {
    background: var(--egs-green-dark);
    padding: 0;
}

.egs-slider {
    position: relative;
    overflow: hidden;
    height: clamp(420px, 68vh, 720px);
}

.egs-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform .55s cubic-bezier(.65, .05, .36, 1);
    will-change: transform;
}

.egs-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.egs-slide-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* .egs-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
} */

.egs-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(15, 43, 31, 0.94) 0%,
            rgba(15, 43, 31, 0.88) 42%,
            rgba(15, 43, 31, 0.55) 72%,
            rgba(15, 43, 31, 0.15) 100%);
}

.egs-slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 24px;
}

.egs-slide-inner {
    /* max-width: 460px; */
    color: #fff;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 4;
}

@media (min-width: 992px) {
    .egs-slide-content {
        padding-left: 5%;
    }
}

@media (max-width: 991px) {
    .egs-slider {
        height: clamp(480px, 82vh, 620px);
    }

    .egs-slide-overlay {
        background: linear-gradient(90deg,
                rgba(15, 43, 31, 0.96) 0%,
                rgba(15, 43, 31, 0.92) 28%,
                rgba(15, 43, 31, 0.60) 50%,
                rgba(15, 43, 31, 0.15) 78%,
                rgba(15, 43, 31, 0.05) 100%);
    }

    .egs-slide-content {
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .egs-slide-inner {
        max-width: 100%;
    }

    .egs-arrow {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
}

@media (max-width: 575px) {

    .egs-arrow,
    .egs-arrow-prev,
    .egs-arrow-next {
        display: none !important;
    }
}

.egs-slide-inner h1,
.egs-slide-inner h2,
.egs-slide-inner h3,
.egs-slide-inner h4,
.egs-slide-inner h5,
.egs-slide-inner h6 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #fff !important;
    margin: 0 0 18px;
}

.egs-slide-inner h1 {
    font-size: clamp(32px, 4.2vw, 52px);
}

/* .egs-slide-inner h2 {
    font-size: clamp(28px, 3.8vw, 44px);
} */

/* .egs-slide-inner h3 {
    font-size: clamp(24px, 3.4vw, 38px);
} */

/* .egs-slide-inner h4 {
    font-size: clamp(21px, 3vw, 32px);
}

.egs-slide-inner h5 {
    font-size: clamp(19px, 2.6vw, 26px);
}

.egs-slide-inner h6 {
    font-size: clamp(17px, 2.2vw, 22px);
} */

.egs-slide-inner h1 span,
.egs-slide-inner h2 span,
.egs-slide-inner h3 span,
.egs-slide-inner h4 span,
.egs-slide-inner h5 span,
.egs-slide-inner h6 span {
    color: var(--egs-green-light);
}

.egs-slide-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(14.5px, 1.5vw, 20px);
    line-height: 1.65;
    margin: 0 0 26px;
    max-width: 800px;
}

@media (max-width: 991px) {
    .egs-slide-inner p {
        max-width: 100%;
    }
}

.egs-slide-inner .egs-eyebrow {
    color: var(--egs-green-light);
    background: none;
    padding: 0;
    border-radius: 0;
    /* font-size: 13px; */
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.egs-slide-inner p strong {
    color: #fff;
    font-weight: 700;
}

.egs-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.egs-slide-badge img {
    height: 16px;
    width: auto;
    display: block;
}

.egs-slide-actions {
    display: flex;
    gap: 12px;
}

.egs-slide-actions .btn-get-started,
.egs-slide-actions .egs-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    height: 48px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: .25s ease;
}

.egs-slide-actions .btn-get-started {
    background: var(--egs-green);
    color: #fff;
    border: 1px solid var(--egs-green);
}

.egs-slide-actions .btn-get-started:hover {
    background: #3f8a3f;
}

.egs-slide-actions .egs-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .6);
}

.egs-slide-actions .egs-btn-outline:hover {
    background: rgba(255, 255, 255, .1);
}

.egs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(2px);
    transition: background .2s ease;
}

.egs-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.egs-arrow-prev {
    left: 14px;
}

.egs-arrow-next {
    right: 14px;
}

.egs-dots {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.egs-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .2s ease;
}

.egs-dot.active {
    background: var(--egs-green-light);
    width: 22px;
    border-radius: 5px;
}

@media (max-width: 575px) {
    .egs-slide-actions {
        flex-direction: column;
    }

    .egs-slide-media {
        display: none;
    }

    .egs-slide-overlay {
        background: var(--egs-green-dark);
    }

    .egs-slider {
        height: auto;
        min-height: 420px;
    }

    .egs-slide {
        height: auto;
        min-height: 420px;
    }

    .egs-slide-content {
        min-height: 420px;
        align-items: center;
        justify-content: center;
        padding: 70px 20px;
        text-align: center;
    }

    .egs-slide-inner {
        max-width: 100%;
        padding: 0;
    }

    .egs-slide-actions {
        display: flex;
        gap: 10px;
        width: 100%;
    }

    .egs-slide-actions a {
        min-width: 0;
        padding: 12px 10px;
        font-size: 13px;
        text-align: center;
        white-space: normal;
    }
}

/* ==========================================================================
   INDEX-PAGE-ONLY HERO ENTRANCE ANIMATION
   Every rule below is scoped under .egs-home-hero, a class that should
   ONLY be added to the <section id="hero"> markup on index.php. Any other
   page reusing the shared .egs-hero-v2 / .egs-slide / .egs-eyebrow markup
   (without the .egs-home-hero class) is completely unaffected by this
   block — same shared component, no animation.

     <section id="hero" class="egs-hero-v2 egs-home-hero">   <- index.php only
     <section id="hero" class="egs-hero-v2">                  <- every other page

   Sequence:
     1. Background image  -> fade + gentle scale-settle   0.00s – 1.10s
     2. Eyebrow label       -> fade + rise                  1.10s – 1.60s
     3. Headline (h2)       -> fade + rise                  1.25s – 1.90s
     4. Paragraph            -> fade + rise                  1.55s – 2.15s
     5. CTA buttons          -> fade + rise (staggered pair) 1.75s – 2.35s
   Retiming: adjust the custom properties on .egs-home-hero .egs-slide
   below — nothing else needs to change.
   ========================================================================== */

.egs-home-hero .egs-slide {
    --egs-img-duration: 1100ms;
    --egs-img-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    --egs-text-duration: 650ms;
    --egs-text-ease: cubic-bezier(0.16, 1, 0.3, 1);

    --egs-eyebrow-delay: 1100ms;
    --egs-headline-delay: 1250ms;
    --egs-para-delay: 1550ms;
    --egs-cta1-delay: 1750ms;
    --egs-cta2-delay: 1830ms;
}

/* Base hidden states so content doesn't flash before animating.
   This is the default ("fade") look — the four extra image styles
   further down override this per-slide via [data-home-image-anim]. */
.egs-home-hero .egs-slide-media img {
    opacity: 0;
    transform: scale(1.12);
    filter: blur(2px);
}

.egs-home-hero .egs-slide-inner .egs-eyebrow,
.egs-home-hero .egs-slide-inner h2,
.egs-home-hero .egs-slide-inner p,
.egs-home-hero .egs-slide-actions .btn-get-started,
.egs-home-hero .egs-slide-actions .egs-btn-outline {
    opacity: 0;
    transform: translateY(28px);
}

@keyframes egsHomeImageReveal {
    from {
        opacity: 0;
        transform: scale(1.12);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes egsHomeTextRise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trigger class — toggled by JS every time a slide becomes active.
   Named egs-home-animate-in (not egs-animate-in) so it can never
   accidentally match/trigger anything outside this component. */
.egs-home-hero .egs-slide.egs-home-animate-in .egs-slide-media img {
    animation: egsHomeImageReveal var(--egs-img-duration) var(--egs-img-ease) forwards;
}

.egs-home-hero .egs-slide.egs-home-animate-in .egs-eyebrow {
    animation: egsHomeTextRise var(--egs-text-duration) var(--egs-text-ease) forwards;
    animation-delay: var(--egs-eyebrow-delay);
}

.egs-home-hero .egs-slide.egs-home-animate-in h2 {
    animation: egsHomeTextRise var(--egs-text-duration) var(--egs-text-ease) forwards;
    animation-delay: var(--egs-headline-delay);
}

.egs-home-hero .egs-slide.egs-home-animate-in p {
    animation: egsHomeTextRise var(--egs-text-duration) var(--egs-text-ease) forwards;
    animation-delay: var(--egs-para-delay);
}

.egs-home-hero .egs-slide.egs-home-animate-in .egs-slide-actions .btn-get-started {
    animation: egsHomeTextRise var(--egs-text-duration) var(--egs-text-ease) forwards;
    animation-delay: var(--egs-cta1-delay);
}

.egs-home-hero .egs-slide.egs-home-animate-in .egs-slide-actions .egs-btn-outline {
    animation: egsHomeTextRise var(--egs-text-duration) var(--egs-text-ease) forwards;
    animation-delay: var(--egs-cta2-delay);
}

/* Accessibility: reduced motion gets an instant, static reveal */
@media (prefers-reduced-motion: reduce) {

    .egs-home-hero .egs-slide-media img,
    .egs-home-hero .egs-slide-inner .egs-eyebrow,
    .egs-home-hero .egs-slide-inner h2,
    .egs-home-hero .egs-slide-inner p,
    .egs-home-hero .egs-slide-actions .btn-get-started,
    .egs-home-hero .egs-slide-actions .egs-btn-outline {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
    }
}

/* Mobile: tighten the sequence slightly so the CTA isn't a long wait */
@media (max-width: 575px) {
    .egs-home-hero .egs-slide {
        --egs-img-duration: 900ms;
        --egs-eyebrow-delay: 850ms;
        --egs-headline-delay: 980ms;
        --egs-para-delay: 1200ms;
        --egs-cta1-delay: 1380ms;
        --egs-cta2-delay: 1450ms;
    }
}

/* ==========================================================================
   IMAGE-ONLY ANIMATION VARIANTS (index page only)
   Pick a look per slide by adding data-home-image-anim="..." to the
   .egs-slide element — still inside .egs-home-hero, so still index-page
   scoped. No attribute = the default "fade" style above.

     <div class="egs-slide" data-home-image-anim="kenburns"> ... </div>

   Options: kenburns | wipe | blur | curtain
   ========================================================================== */

/* ---- 1) KEN BURNS — slow continuous pan+zoom that keeps drifting the
   whole time the slide is on screen. Editorial/premium; best for
   landscape or product shots with room to breathe. ---- */
.egs-home-hero .egs-slide[data-home-image-anim="kenburns"] .egs-slide-media img {
    opacity: 0;
    transform: scale(1.15) translate3d(0, 0, 0);
    filter: none;
}

@keyframes egsHomeKenBurnsFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes egsHomeKenBurnsPan {
    0% {
        transform: scale(1.15) translate3d(1.5%, -1%, 0);
    }

    100% {
        transform: scale(1.04) translate3d(-1.5%, 1%, 0);
    }
}

.egs-home-hero .egs-slide[data-home-image-anim="kenburns"].egs-home-animate-in .egs-slide-media img {
    animation:
        egsHomeKenBurnsFadeIn 900ms ease-out forwards,
        egsHomeKenBurnsPan 9000ms ease-in-out forwards;
}

/* ---- 2) CLIP-PATH WIPE — the image reveals along a diagonal sweeping
   edge instead of fading. Confident, modern, "product launch" feel. ---- */
.egs-home-hero .egs-slide[data-home-image-anim="wipe"] .egs-slide-media img {
    opacity: 1;
    transform: scale(1.06);
    filter: none;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

@keyframes egsHomeWipeReveal {
    from {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        transform: scale(1.06);
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: scale(1);
    }
}

.egs-home-hero .egs-slide[data-home-image-anim="wipe"].egs-home-animate-in .egs-slide-media img {
    animation: egsHomeWipeReveal 1000ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* ---- 3) BLUR-TO-FOCUS — heavy depth-of-field blur resolves into sharp
   focus as the image fades/scales in. More dramatic than the default;
   works especially well on people/team photography. ---- */
.egs-home-hero .egs-slide[data-home-image-anim="blur"] .egs-slide-media img {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(22px);
}

@keyframes egsHomeBlurFocus {
    0% {
        opacity: 0;
        transform: scale(1.08);
        filter: blur(22px);
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.egs-home-hero .egs-slide[data-home-image-anim="blur"].egs-home-animate-in .egs-slide-media img {
    animation: egsHomeBlurFocus 1300ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* ---- 4) CURTAIN — two brand-green panels sit over the image and slide
   apart like curtains opening, revealing the photo already in place
   underneath. Most theatrical of the set — good as slide 1's opener. ---- */
.egs-home-hero .egs-slide[data-home-image-anim="curtain"] .egs-slide-media img {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
}

.egs-home-hero .egs-slide[data-home-image-anim="curtain"] .egs-slide-media {
    overflow: hidden;
}

.egs-home-hero .egs-slide[data-home-image-anim="curtain"] .egs-slide-media::before,
.egs-home-hero .egs-slide[data-home-image-anim="curtain"] .egs-slide-media::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 2;
    background: var(--egs-green-dark);
    transform: translateX(0);
}

.egs-home-hero .egs-slide[data-home-image-anim="curtain"] .egs-slide-media::before {
    left: 0;
}

.egs-home-hero .egs-slide[data-home-image-anim="curtain"] .egs-slide-media::after {
    right: 0;
}

@keyframes egsHomeCurtainLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes egsHomeCurtainRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

.egs-home-hero .egs-slide[data-home-image-anim="curtain"].egs-home-animate-in .egs-slide-media::before {
    animation: egsHomeCurtainLeft 900ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
    animation-delay: 150ms;
}

.egs-home-hero .egs-slide[data-home-image-anim="curtain"].egs-home-animate-in .egs-slide-media::after {
    animation: egsHomeCurtainRight 900ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
    animation-delay: 150ms;
}

/* Reduced motion: every variant collapses to the same instant, static
   reveal — panels included. */
@media (prefers-reduced-motion: reduce) {

    .egs-home-hero .egs-slide[data-home-image-anim] .egs-slide-media img {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
        animation: none !important;
    }

    .egs-home-hero .egs-slide[data-home-image-anim="curtain"] .egs-slide-media::before,
    .egs-home-hero .egs-slide[data-home-image-anim="curtain"] .egs-slide-media::after {
        display: none !important;
    }
}