/*font-face link*/
<link rel="preconnect" href="https://fonts.googleapis.com" >
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin >
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet" >
body {
    font-family: "Montserrat", sans-serif;
}
/* Jen by HPE — home index checkerboard (screenshot reference) */
:root {
    --jen-home-teal-deep: #056578;
    --jen-home-charcoal: #1e1f28;
    --jen-home-btn: #00b388;
    --jen-home-btn-hover: #009975;
    --jen-home-yellow: #ffd000;
    --jen-home-text: #1c1e26;
    --jen-home-text-muted: #3d4550;
    --jen-home-hero-bg: #1a1a1a;
    --jen-home-hero-bg-alt: #121619;
}

/* Home index: hero replaces top bar (logo lives inside hero) */
.jen-home-page--hero .jen-topbar {
    display: none;
}

/* —— Dark hero: copy left, circular JEN right, teal waves —— */
:root {
    --jen-home-hero-bg: #1a1e23; /* Fallback dark background */
}

.jen-home-hero {
    position: relative;
    background-color: var(--jen-home-hero-bg);
    color: #fff;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% -100px;
    /* Change 1: Remove horizontal padding from the parent wrapper */
    padding: 100px 0;
    box-sizing: border-box;
}

/* Change 2: Bind the header to the exact same 1200px boundary as the text */
.jen-home-header {
    position: absolute;
    top: 2rem; /* Distance from top */
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1200px; /* Matches inner max-width */
    margin: 0 auto; /* Centers it exactly over the text */
    padding: 0 3%; /* Shared fluid padding for smaller screens */
    box-sizing: border-box;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Change 3: Apply that exact same 5% padding here so they lock together */
.jen-home-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3%; /* Matches the header padding perfectly */
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

.jen-home-header__logo img {
    height: 32px;
    width: auto;
    display: block;
}

.jen-home-header__logo:hover {
    opacity: 0.92;
}

@media (min-width: 992px) {
    .jen-home-hero__inner {
        grid-template-columns: 1.1fr 0.9fr; /* Adjusted for better proportion */
        gap: 2rem 3rem;
    }
}

@media (max-width: 767px) {
    .jen-home-hero__inner {
        flex-direction: column-reverse;
        gap: 30px;
        padding: 0 21px;
    }
}

.jen-home-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.jen-home-hero__title {
    margin: 0 0 0.25rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    /* Fluid typography to prevent breaking at 125% zoom */
    font-size: clamp(2.5rem, 4vw + 1rem, 3.4rem);
}

.jen-home-hero__tagline {
    margin: 0 0 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.20rem);
}

.jen-home-hero__lead {
    margin: 0;
    max-width: 30rem;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem);
}

.jen-home-hero__cta {
    padding: 0 1.5rem;
    height: 44px;
    line-height: 44px;
    background-color: #00b493;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    border: none;
    outline: none;
    text-decoration: none;
    margin-top: 24px;
    border-radius: 2px;
    transition: background-color 0.2s ease, filter 0.2s ease;
    transition: background-color 0.2s ease, filter 0.2s ease;
}

    .jen-home-hero__cta:hover {
        color: #fff !important;
        background: #009975;
        filter: brightness(1.05);
    }

.jen-start-btn {
    padding: 0 3.8rem;
}

.jen-home__logo {
    width: 60px;
}

.jen-home__logo1 {
    width: 100px;
}

.jen-home-hero__aside {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .jen-home-hero__aside {
        justify-content: flex-end;
    }
}

.jen-home-hero__avatar-ring {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    max-width: 420px;
    line-height: 0;
    /* Boosted the brightness and spread of the drop-shadow to match the target design exactly */
    filter: drop-shadow(0 0 25px rgba(0, 212, 180, 0.55));
}

.jen-home-hero__avatar-img {
    display: block;
    vertical-align: middle;
    border-radius: 50%;
}

/* Responsive adjustments for Tablets/Mobile */
@media (max-width: 991px) {
    .jen-home-hero {
        padding-top: 100px; /* Leaves room for the absolute header */
        padding-bottom: 3rem;
        min-height: auto;
    }

    .jen-home-hero__copy {
        max-width: 36rem;
        margin: 0 auto;
    }

    .jen-home-hero__lead {
        max-width: none;
    }

    .jen-home-hero__avatar-ring {
        max-width: 320px; /* Ensures the avatar scales down nicely on small screens */
    }
}

.jen-home {
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    color: var(--jen-home-text);
}

.jen-home__row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
}

@media (min-width: 992px) {
    .jen-home__row {
        grid-template-columns: 1fr 1fr;
        min-height: min(88vh, 640px);
    }
}

.jen-home__cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: clamp(2rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
    box-sizing: border-box;
}

.jen-home__cell--img {
    position: relative;
    padding: 0;
    min-height: 300px;
}

@media (min-width: 992px) {
    .jen-home__cell--img {
        min-height: 0;
    }
}

.jen-home__cell--img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Row 1 — Jen: focal point toward face / upper body */
.jen-home__row--r1 .jen-home__cell--img img {
    object-position: 45% 28%;
}

/* Row 3 — server room portrait */
.jen-home__row--r3 .jen-home__cell--img img {
    object-position: center 22%;
}

.jen-home__cell--white {
    background: #fff;
    color: var(--jen-home-text);
}

.jen-home__cell--teal {
    background: var(--jen-home-teal-deep);
    color: #fff;
}

.jen-home__cell--charcoal {
    background: var(--jen-home-charcoal);
    color: rgba(255, 255, 255, 0.95);
    align-items: center;
}

.jen-home__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    color: var(--jen-home-teal-deep);
}

.jen-home__cell--teal .jen-home__icon {
    color: #fff;
}

.jen-home__cell--charcoal .jen-home__icon {
    color: #fff;
}

.jen-home__cell--white .jen-home__icon {
    color: var(--jen-home-teal-deep);
}

.jen-home__title {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.jen-home__cell--teal .jen-home__title {
    color: #fff;
}

.jen-home__cell--charcoal .jen-home__title {
    color: #fff;
}

.jen-home__cell--white .jen-home__title {
    color: var(--jen-home-text);
}

.jen-home__body {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--jen-home-text-muted);
}

.jen-home__cell--teal .jen-home__body {
    color: rgba(255, 255, 255, 0.92);
}

.jen-home__cell--charcoal .jen-home__body {
    color: #fff;
}

.jen-home__list {
    margin: 0 0 1.5rem;
    padding: 0.25rem 0 0 1.15rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--jen-home-text-muted);
}

    .jen-home__list li {
        margin-bottom: 0.4rem;
    }

.jen-home__cell--teal .jen-home__list {
    color: rgba(255, 255, 255, 0.92);
}

.jen-home__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: var(--jen-home-btn);
    border: none;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, filter 0.15s ease;
    box-shadow: 0 4px 14px rgba(0, 179, 136, 0.35);
}

    .jen-home__btn:hover {
        color: #fff;
        background: var(--jen-home-btn-hover);
        filter: brightness(1.02);
    }

.jen-home__quote-frame {
    padding: 80px 50px;
    border: 24px solid var(--jen-home-yellow);
}
@media (max-width: 767px) {
    .jen-home__quote-frame {
        padding: 60px 30px;
    }
}

.jen-home__quote {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.50rem);
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
}

.jen-home__steps {
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

    .jen-home__steps li {
        counter-increment: step;
        position: relative;
        margin-bottom: 0.65rem;
        font-size: 0.98rem;
        font-weight: 700;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.95);
    }

/* Mobile column order */
@media (max-width: 991px) {
    .jen-home__row--r2 .jen-home__cell--teal {
        order: 1;
    }

    .jen-home__row--r3 .jen-home__cell--img {
        order: -1;
    }

    .jen-home__row--r4 .jen-home__cell--charcoal {
        order: -1;
    }
}

/* Language strip (optional) */
.jen-home-lang {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.65rem 1.5rem;
    background: #f0f3f5;
    border-bottom: 1px solid #ddd;
    font-size: 0.8125rem;
}

    .jen-home-lang select {
        padding: 0.35rem 1.75rem 0.35rem 0.5rem;
        border: 1px solid #b8c4ce;
        border-radius: 4px;
        background: #fff;
        font-size: 0.8125rem;
    }

.jen-home-lang__google-btn {
    border: 1px solid #b8c4ce;
    background: #fff;
    border-radius: 4px;
    padding: 0.35rem 0.65rem;
    font-size: 0.8125rem;
    cursor: pointer;
}

/* Footer — white bar */
.jen-home-footer {
    background: #fff;
    border-top: 1px solid #e5e8eb;
    color: #212121;
    padding: 1.5rem 1.5rem 3rem;
}

.jen-home-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 2rem;
}

.jen-home-footer__brand {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-direction: column;
}

.jen-home-footer__mark {
    flex-shrink: 0;
}

.jen-home-footer__company {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.jen-home-footer__copy {
    font-size: 0.75rem;
    max-width: 28rem;
    line-height: 1.45;
    color: #000;
}

.jen-home-footer__legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
}

    .jen-home-footer__legal a {
        color: #000 !important;
        text-decoration: none;
        text-underline-offset: 3px;
    }

        .jen-home-footer__legal a:hover {
            text-decoration: underline;
        }

/* =========================
   JEN HOME FINAL FIX LAYER
   ========================= */

/* GRID FIX (replace flex issue) */
.jen-home__row {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .jen-home__row {
        grid-template-columns: 1fr 1fr;
        min-height: 480px;
    }
}

/* CELL NORMALIZATION */
.jen-home__cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jen-partners {
    padding: 40px 40px 60px 12%;
}

    .jen-partners .jen-home__body {
        max-width: 510px;
    }
    @media(max-width: 991px) {
        .jen-partners {
            padding: clamp(2rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
        }
    }
/* IMAGE FIX */
.jen-home__cell--img {
    padding: 0;
}

    .jen-home__cell--img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* WHITE CARD */
.jen-home__cell--white {
    background: #f5f7f9;
    color: #111;
}

/* TEAL CARD */
.jen-home__cell--teal {
    color: #fff;
}

/* TYPOGRAPHY */
.jen-home__title {
    font-weight: 700;
    margin: 15px 0;
}

.jen-home__body {
    font-size: 17px;
    line-height: 1.6;
    max-width: 505px;
}

    /* LIST FIX */
    .jen-home__body ul {
        margin: 10px 0 15px;
        padding-left: 18px;
    }

    .jen-home__body li {
        margin-bottom: 6px;
    }

    .jen-home__body ul li::marker {
        color: #00b188;
    }
/* BUTTON */
.jen-home__btn {
    background: #00b388;
    padding: 12px 22px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    width: fit-content;
}

.desk-visible {
    display: block;
}

@media (max-width: 1024px) {
    .desk-visible {
        display: none;
    }
}

/* HERO IMPROVEMENT */
.jen-home-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.jen-home-hero__avatar-ring {
    border-radius: 50%;
    padding: 10px;
    background: radial-gradient(circle, #00b388 0%, transparent 70%);
}

.jen-home-hero__avatar-img {
    border-radius: 50%;
    width: 260px;
    height: 260px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .jen-home-hero__avatar-img {
        width: 180px;
        height: 180px;
    }
    .jen-home__logo {
        width: 50px;
    }
}

/* ICON SIZE */
.jen-home__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
}
