/* lowest-prices-guaranteed.css — reuses the gwp-homepage design system. */


/* HERO */

.gwp-hero.lpg-hero {
    /* Navy base + soft radial-gradient glow via pseudo-elements so the
       glow stays inside the hero (no page-level bleed). */
    padding-top: 40px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background-color: #31356e;
    position: relative;
    isolation: isolate;
}

/* Ellipse 33 — main hero glow.
   Positioned so its ellipse center lands ~2/3 across, ~2/3 down the hero. */
.gwp-hero.lpg-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse 55% 45% at 50% 50%,
                                rgba(101, 106, 195, 0.75) 0%,
                                rgba(89, 93, 152, 0.35) 40%,
                                rgba(49, 53, 110, 0) 75%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 992px) {
    .gwp-hero.lpg-hero {
        padding-top: 60px;
        padding-bottom: 80px;
        min-height: 810px;
    }
}

/* ---- Row / column layout ---- */
.lpg-hero__row {
    row-gap: 40px;
}

.lpg-hero__copy {
    z-index: 2;
}

/* ---- Eyebrow pill — pill from global .gwp-eyebrow--inverse, spacing via mb-10 utility ---- */

/* ---- Title — matches homepage .gwp-hero__title scale (28/32/36),
   LPG keeps 800 weight for the italic accent line. ---- */
.lpg-hero__title {
    font-weight: 800;
    font-size: 28px !important;
    margin: 0 0 16px;
    max-width: 428px;
}

@media (min-width: 768px) { .lpg-hero__title { font-size: 32px !important; } }
@media (min-width: 992px) { .lpg-hero__title { font-size: 36px !important; } }

/* Global .gwp-hero__title-accent is normal weight; LPG uses italic 800. */
.lpg-hero__title-accent {
    font-style: italic;
    font-weight: 800;
}

/* ---- Body paragraphs ---- */
.lpg-hero__body {
    margin: 0 0 30px;
    max-width: 642px;
}

.lpg-hero__body:last-of-type {
    margin-bottom: 16px;
}

/* ---- CTA row — gap-10 utility on markup provides the 16px pill gap ---- */

/* Hero button sizing comes from global .gwp-btn (240px flex-basis, 50px, 10px radius). */

/* ---- Right column shield image ----
   PNG is 1536x1024 with transparent margin around the shield; we let those
   transparent pixels overlap onto the navy hero so the shield dominates. */
.lpg-hero__visual {
    z-index: 2;
}

.lpg-hero__image-wrap {
    width: 559px;
    height: 476px;
    pointer-events: none;
}

/* Source PNG is 1536x1024 with ~50% transparent margin around the shield.
   Render at the 1250x833 target size and center on the shield.
   !important defeats a global img rule that clamps width via max-width. */
.lpg-hero__image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1250px !important;
    height: 833px !important;
    max-width: none !important;
    transform: translate(-50%, -50%);
}


/* HERO — responsive */

/* iPad landscape / small desktop — shield wrap (559px) overflows the
   ~370–420px col-lg-5 column and the 810px min-height stretches the
   section too tall for tablet viewports. Fit the wrap to its column
   and let content size the hero. */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .gwp-hero.lpg-hero {
        min-height: 0;
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .lpg-hero__image-wrap {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 559 / 476;
    }

    .lpg-hero__image {
        width: 895px !important;
        height: 597px !important;
    }
}

@media (max-width: 991.98px) {
    .gwp-hero.lpg-hero {
        padding-top: 40px;
        padding-bottom: 60px;
        min-height: 0;
        text-align: center;
    }

    .lpg-hero__row {
        row-gap: 32px;
    }

    .lpg-hero__title {
        max-width: 100%;
    }

    /* max-width 100% is enough; parent text-align:center handles centering. */
    .lpg-hero__body {
        max-width: 100%;
    }

    /* Scale the shield down proportionally on tablet */
    .lpg-hero__image-wrap {
        width: 440px;
        height: 375px;
        margin-left: auto;
        margin-right: auto;
    }

    .lpg-hero__image {
        width: 984px !important;
        height: 656px !important;
    }
}

@media (max-width: 767.98px) {
    .lpg-hero__row {
        row-gap: 24px;
    }

    .lpg-hero__title {
        font-size: 29px !important;
    }

    .lpg-hero__body {
        font-size: 16px;
        line-height: 1.6;
    }

    .lpg-hero__image-wrap {
        width: 340px;
        max-width: 100%;
        height: 290px;
    }

    .lpg-hero__image {
        width: 760px !important;
        height: 507px !important;
    }
}

@media (max-width: 575.98px) {
    .gwp-hero.lpg-hero {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .lpg-hero__body {
        margin-bottom: 20px;
    }

    /* Below the design's 340px shield width, ratio-scale the wrap
       against viewport so it never causes horizontal overflow. */
    .lpg-hero__image-wrap {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 340 / 290;
    }
}


/* CONTINUOUSLY BENCHMARKS — 3-card grid + purple stat bar + disclaimer. */

.lpg-benchmark {
    background-color: #ffffff;
}

/* ---- Header title ---- */
.lpg-benchmark__header {
    max-width: 842px;
    margin-left: auto;
    margin-right: auto;
}

.lpg-benchmark__title {
    font-family: var(--gwp-font-title);
    font-weight: 700;
    font-size: 24px !important;
    line-height: 1.4;
    color: #302e2b;
    text-transform: capitalize;
    text-align: center;
}

/* ---- 3-card grid ---- */
.lpg-benchmark__grid {
    margin-top: 60px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.lpg-benchmark__col {
    flex: 1 1 0;
    min-width: 0;
    padding: 0;
    max-width: none;
}

.lpg-benchmark__card {
    height: 100%;
    padding: 20px;
    border: 0.6px solid #d2d2d2;
    border-radius: 12px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
                border-color 0.35s ease;
    will-change: transform;
}

/* Card lift + yellow accent border + soft navy shadow on hover.
   Icon slides forward, rotates a hair, and swaps to the primary gold. */
.lpg-benchmark__card:hover {
    transform: translateY(-6px);
    border-color: #f5b209;
    box-shadow: 0 14px 32px -6px rgba(49, 53, 110, 0.18),
                0 4px 10px -2px rgba(49, 53, 110, 0.08);
}

.lpg-benchmark__card:hover .lpg-benchmark__icon {
    color: #f5b209;
    transform: translateY(-2px) rotate(-6deg) scale(1.08);
}

.lpg-benchmark__card:hover .lpg-benchmark__card-title {
    color: #585fbe;
}

/* ---- Icon ---- */
.lpg-benchmark__icon {
    width: 32px;
    height: 32px;
    color: #31356e;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
                color 0.35s ease;
    transform-origin: center;
}

.lpg-benchmark__icon svg {
    display: block;
    width: 32px;
    height: 32px;
}

/* ---- Card title + body ---- */
.lpg-benchmark__card-title {
    font-family: var(--gwp-font-title);
    font-weight: 700;
    font-size: 18px !important;
    line-height: 25px;
    color: #31356e;
    margin: 4px 0 0;
    transition: color 0.35s ease;
}

.lpg-benchmark__card-body {
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #302e2b;
    margin: 0;
}

/* ---- Stat bar — display/align/justify from utilities on markup ---- */
.lpg-benchmark__stats {
    margin-top: 40px;
    background-color: #585fbe;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    height: 100px;
    gap: 30px;
    /* Horizontal padding via .px-lg-5 utility on the markup. */
}

.lpg-benchmark__stat {
    flex: 1 1 0;
    max-width: 350px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
}

.lpg-benchmark__stat-text {
    font-family: var(--gwp-font-title);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.4974px;
    color: #ffffff;
    margin: 0;
}

.lpg-benchmark__stat-divider {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    align-self: center;
}

/* ---- Disclaimer — text-center + m-0 mt-30 utilities on markup ---- */
.lpg-benchmark__disclaimer {
    max-width: 1253px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 500;
    font-style: italic;
    font-size: 16px;
    line-height: 25px;
    color: #302e2b;
}

.lpg-benchmark__disclaimer em {
    font-style: italic;
}


/* SECTION 2 — responsive */

@media (max-width: 991.98px) {
    .lpg-benchmark__grid {
        margin-top: 40px;
    }

    /* Cards stay 3-col on tablet — plenty of room for three 300px cards
       between 768–991px. Only stack below 768px. */

    /* Stat bar stacks earlier: three 220px stat blocks at ≤991
       feel cramped, so switch to vertical layout with center-aligned text. */
    .lpg-benchmark__stats {
        height: auto;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .lpg-benchmark__stat {
        max-width: 100%;
        width: 100%;
        padding: 0;
        text-align: center;
        justify-content: center;
    }

    .lpg-benchmark__stat-divider {
        width: 80%;
        height: 1px;
    }
}

@media (max-width: 767.98px) {
    .lpg-benchmark__title {
        font-size: 22px !important;
    }

    /* Add horizontal breathing room around the stacked cards so they
       don't sit flush against the container edges on phones. */
    .lpg-benchmark__grid {
        margin-top: 32px;
        flex-direction: column;
        padding-left: 12px;
        padding-right: 12px;
    }

    .lpg-benchmark__card-body {
        font-size: 15px;
        line-height: 24px;
    }

    .lpg-benchmark__stat-text {
        font-size: 16px;
        line-height: 24px;
    }

    .lpg-benchmark__disclaimer {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 575.98px) {
    .lpg-benchmark__title { font-size: 20px !important; }

    .lpg-benchmark__grid { margin-top: 24px; }

    .lpg-benchmark__card {
        padding: 18px;
        gap: 10px;
    }

    .lpg-benchmark__card-title { font-size: 17px !important; }

    .lpg-benchmark__card-body,
    .lpg-benchmark__stat-text,
    .lpg-benchmark__disclaimer {
        font-size: 14px;
        line-height: 22px;
    }

    .lpg-benchmark__stats {
        padding: 16px;
        gap: 12px;
        border-radius: 12px;
    }

    /* Override the mt-30 utility on the disclaimer for a tighter mobile
       stack — 48px is too much visual break at this width. */
    .lpg-benchmark__disclaimer.mt-30 {
        margin-top: 24px !important;
    }
}


/* HOW GWP PROTECTS VALUE ACROSS CATEGORIES — dark navy, two 585×700
   side-by-side cards + light "Difference Is Ownership" strip below. */

.lpg-protect {
    background-color: #31356e;
}

/* ---- Header block ---- */
.lpg-protect__header {
    max-width: 989px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Eyebrow pill — styling from global .gwp-eyebrow--inverse ---- */

/* ---- Title — typography from global .gwp-section-title--inverse ---- */

.lpg-protect__title-accent {
    display: inline;
    font-family: var(--gwp-font-title);
    font-style: italic;
    font-weight: 700;
    color: #f5b209;
}

.lpg-protect__title-white {
    display: inline;
    font-family: var(--gwp-font-title);
    font-weight: 700;
    color: #ffffff;
}

/* ---- Subtitle — typography from global .gwp-section-lead--inverse ---- */
.lpg-protect__subtitle {
    max-width: 983px;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ---- Grid — 2 cards ---- */
.lpg-protect__grid {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: center;
    align-items: stretch;
}

.lpg-protect__col {
    flex: 0 0 585px;
    max-width: 585px;
    padding: 0;
}

/* ---- Card base — layout via d-flex flex-column gap-20 utilities ---- */
.lpg-protect__card {
    height: 100%;
    min-height: 700px;
    padding: 40px 25px 25px;
    border-radius: 16px;
    color: #ffffff;
    border: 1px solid transparent;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
                border-color 0.4s ease,
                background-color 0.4s ease;
    will-change: transform;
}

.lpg-protect__card--left {
    background-color: #585fbe;
}

.lpg-protect__card--right {
    background-color: #31356e;
    border-color: #ffffff;
}

/* Stacked variant — 3 smaller cards fill the right column together. */
.lpg-protect__col--stack {
    align-self: stretch;
}

.lpg-protect__card--stacked {
    min-height: 0;
    height: auto;
    flex: 1 1 auto;
    padding: 30px 25px;
}

/* Card lift + gold border glow on hover. Both cards share the same
   motion; only the background subtly brightens on the periwinkle
   left card, since the right card already contrasts against navy. */
.lpg-protect__card:hover {
    transform: translateY(-8px);
    border-color: #f5b209;
    box-shadow: 0 24px 48px -12px rgba(245, 178, 9, 0.28),
                0 8px 20px -6px rgba(0, 0, 0, 0.35);
}

.lpg-protect__card--left:hover {
    background-color: #6870d1;
}

.lpg-protect__card--right:hover {
    background-color: #383e7f;
}

/* Bullet check icons pop forward on card hover — staggered subtly
   via transition-delay so they cascade rather than fire together. */
.lpg-protect__card:hover .lpg-protect__bullet-icon {
    transform: scale(1.15);
    color: #ffd254;
}

/* ---- Card title ---- */
.lpg-protect__card-title {
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 700;
    font-size: 24px !important;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

/* ---- Card blocks — layout via d-flex flex-column gap-10 utilities ---- */

/* ---- Block bold heading ---- */
.lpg-protect__card-lede {
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

/* ---- Block body text ---- */
.lpg-protect__card-body {
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

/* Right card uses medium weight for its body paragraphs */
.lpg-protect__card--right .lpg-protect__card-body {
    font-weight: 500;
}

/* Left card's "Savings Across..." block also uses medium weight body */
.lpg-protect__card--left .lpg-protect__card-block:last-of-type .lpg-protect__card-body {
    font-weight: 500;
}

/* ---- Bullets list — layout via d-flex flex-column gap-10 utilities ---- */

.lpg-protect__bullet {
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
}

.lpg-protect__bullet-icon {
    color: #f5b209;
    font-size: 20px;
    line-height: 1.4;
    flex-shrink: 0;
    margin-top: 1px;
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
                color 0.35s ease;
    transform-origin: center;
}

/* SECTION 3 — responsive */

@media (max-width: 1279.98px) {
    .lpg-protect__col {
        flex: 0 0 calc(50% - 13px);
        max-width: calc(50% - 13px);
    }
}

@media (max-width: 991.98px) {
    .lpg-protect__grid {
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .lpg-protect__col {
        flex: 1 1 100%;
        max-width: 585px;
        width: 100%;
    }

    .lpg-protect__card {
        min-height: 0;
    }
}

@media (max-width: 767.98px) {
    .lpg-protect__title { font-size: 30px !important; }

    .lpg-protect__subtitle { font-size: 15px; }

    /* Add horizontal breathing room around the stacked cards so they
       don't sit flush against the container edges on phones. */
    .lpg-protect__grid {
        margin-top: 32px;
        gap: 20px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .lpg-protect__card {
        padding: 32px 22px 22px;
        gap: 26px;
    }

    .lpg-protect__card-title { font-size: 22px !important; }

    .lpg-protect__card-lede,
    .lpg-protect__card-body,
    .lpg-protect__bullet {
        font-size: 15px;
    }

    .lpg-protect__bullet-icon {
        font-size: 18px;
    }

    /* mt-40 utility (64px) is heavy after a stacked card — tighten. */
    .lpg-protect__cta.mt-40 {
        margin-top: 32px !important;
    }
}

@media (max-width: 575.98px) {
    .lpg-protect__title { font-size: 28px !important; }

    .lpg-protect__subtitle { font-size: 14px; }

    .lpg-protect__grid {
        margin-top: 24px;
        gap: 16px;
    }

    .lpg-protect__card {
        padding: 24px 18px 18px;
        gap: 20px;
        border-radius: 14px;
    }

    .lpg-protect__card-title { font-size: 20px !important; }

    .lpg-protect__card-lede,
    .lpg-protect__card-body,
    .lpg-protect__bullet {
        font-size: 14px;
    }

    .lpg-protect__bullet-icon {
        font-size: 16px;
    }

    .lpg-protect__cta.mt-40 {
        margin-top: 24px !important;
    }
}


/* HOW TO REQUEST A PRICE REVIEW — 485×432 illustration left, 632 text right. */

.lpg-request {
    background-color: #ffffff;
}

/* ---- Row layout — 156px gap; display/align/justify/flex-wrap from utilities ---- */
.lpg-request__row {
    gap: 156px;
}

/* ---- Left: illustration ---- */
.lpg-request__visual {
    flex: 0 0 485px;
    width: 485px;
    max-width: 100%;
    height: 432px;
    position: relative;
}

.lpg-request__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
}

/* ---- Right: text column — display/flex-column/mw-100 from utilities ---- */
.lpg-request__copy {
    flex: 0 0 632px;
    width: 632px;
    gap: 14px;
}

/* Eyebrow pill styling comes from global .gwp-eyebrow; align-self-start utility handles positioning. */

/* ---- Title — typography from global .gwp-section-title, LPG tightens line-height ---- */
.lpg-request__title {
    line-height: 1.2;
    max-width: 658px;
}

/* ---- Body copy — display/flex-column from utilities, gap 22px kept ---- */
.lpg-request__body {
    gap: 22px;
}

.lpg-request__body p {
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #31356e;
    margin: 0;
}


/* SECTION 4 — responsive */

/* Row order (copy on top / image below when stacked, image left / copy
   right when side-by-side) is handled by Bootstrap .order-* utilities
   on the markup. Breakpoint aligns with Bootstrap xl (1200) so the
   .align-self-xl-start badge utility hands off cleanly. */
@media (max-width: 1199.98px) {
    .lpg-request__row {
        gap: 40px;
    }

    .lpg-request__visual {
        flex: 1 1 100%;
        width: 100%;
        max-width: 640px;
        height: auto;
        aspect-ratio: 485 / 432;
    }

    .lpg-request__copy {
        flex: 1 1 100%;
        width: 100%;
        max-width: 832px;
        text-align: center;
        align-items: center;
        gap: 12px;
    }

    .lpg-request__title { max-width: 100%; }

    .lpg-request__body { gap: 18px; }
}

@media (max-width: 991.98px) {
    /* Tighten the illustration cap on narrower tablets/phones. */
    .lpg-request__visual { max-width: 485px; }
}

@media (max-width: 767.98px) {
    .lpg-request__row {
        gap: 32px;
    }

    .lpg-request__visual {
        max-width: 420px;
    }

    .lpg-request__body p {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .lpg-request__title { font-size: 28px !important; }

    .lpg-request__row {
        gap: 24px;
    }

    .lpg-request__visual {
        max-width: 320px;
    }

    .lpg-request__copy { gap: 10px; }

    .lpg-request__body { gap: 16px; }

    .lpg-request__body p {
        font-size: 14px;
        line-height: 22px;
    }
}


/* SIMPLE ELIGIBILITY CRITERIA — dark navy. Layered table: cream panel
   behind, white "floating" card overlays starting 329px from the left,
   horizontal hairlines cross both panels between the 4 rows. */

.lpg-eligibility {
    background-color: #31356e;
}

/* ---- Header — layout/centering via utilities ---- */
.lpg-eligibility__header {
    max-width: 989px;
    gap: 12px;
}

/* ---- Eyebrow pill — styling from global .gwp-eyebrow--inverse ---- */

/* ---- Title — typography from global .gwp-section-title--inverse ---- */

/* ---- Subtitle — typography from global .gwp-section-lead--inverse ---- */
.lpg-eligibility__subtitle {
    /* Nudge +4 so the subtitle gap totals 16px (matches inner Tagline gap). */
    margin: 4px 0 0 !important;
}

/* ---- Table — layered cream + white ----
   Container is transparent; the cream (Rectangle 172) and white
   (Rectangle 173) panels are drawn as pseudo-elements so the rows
   can flow on top with a single border-bottom hairline that spans
   BOTH panels. */
.lpg-eligibility__table {
    margin-top: 60px;
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-top: 14px;
    padding-bottom: 17px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

/* Cream background layer */
.lpg-eligibility__table::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    bottom: 17px;
    background-color: #fefaec;
    border: 0.6px solid #cfcaba;
    border-radius: 16px;
    z-index: 0;
    pointer-events: none;
}

/* White foreground layer,
   sits on top of cream, extending 14px above and 17px below it. */
.lpg-eligibility__table::after {
    content: '';
    position: absolute;
    top: 0;
    left: 329px;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    border: 0.6px solid #cfcaba;
    border-radius: 16px;
    box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.14);
    z-index: 1;
    pointer-events: none;
}

/* ---- Table row (2-column split) ---- */
.lpg-eligibility__row {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 2;
    border-bottom: 0.6px solid #cfcaba;
}

.lpg-eligibility__row:last-child {
    border-bottom: none;
}

/* ---- Left column: title (cream shows through from ::before) ---- */
/* WCAG 1.4.3 — axe's contrast checker only inspects element bg, not sibling
   pseudo-elements, so a transparent bg over a cream ::before is reported as
   1:1. Paint the same cream directly on the element to satisfy the checker
   without a visual change (bg colour matches ::before at line 946). */
.lpg-eligibility__row-title {
    flex: 0 0 329px;
    max-width: 329px;
    padding: 30px 30px 30px 50px;
    background-color: #fefaec;
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #31356e;
    display: flex;
    align-items: center;
}

/* ---- Right column: body (white shows through from ::after) ---- */
/* WCAG 1.4.3 — see row-title above; paint the same white directly to satisfy
   axe's contrast checker (matches ::after at line 962). */
.lpg-eligibility__row-body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 30px 40px 30px 24px;
    background-color: #ffffff;
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 400;
    font-size: var(--gwp-fs-base);
    line-height: 20px;
    color: #000000;
    display: flex;
    align-items: center;
}

.lpg-eligibility__row-body p {
    margin: 0;
}

/* Match ::before / ::after rounded corners on the first/last rows so the
   newly-solid row backgrounds don't peek past the rounded pseudo-elements. */
.lpg-eligibility__row:first-child .lpg-eligibility__row-title { border-top-left-radius: 16px; }
.lpg-eligibility__row:first-child .lpg-eligibility__row-body  { border-top-right-radius: 16px; }
.lpg-eligibility__row:last-child .lpg-eligibility__row-title { border-bottom-left-radius: 16px; }
.lpg-eligibility__row:last-child .lpg-eligibility__row-body  { border-bottom-right-radius: 16px; }


/* SECTION 5 — responsive */

@media (max-width: 991.98px) {
    .lpg-eligibility__table { margin-top: 40px; }

    .lpg-eligibility__table::after {
        left: 240px;
    }

    .lpg-eligibility__row-title {
        flex: 0 0 240px;
        max-width: 240px;
        padding: 24px 20px 24px 30px;
        font-size: 15px;
    }

    .lpg-eligibility__row-body {
        padding: 24px 30px 24px 20px;
        line-height: 22px;
    }
}

@media (max-width: 767.98px) {
    /* Collapse the layered layout at mobile — one solid card with
       cream title band + white body band per row. */
    .lpg-eligibility__table {
        margin-top: 32px;
        padding-top: 0;
        padding-bottom: 0;
        border-radius: 14px;
        overflow: hidden;
        border: 0.6px solid #cfcaba;
        background-color: #ffffff;
        box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.14);
    }

    .lpg-eligibility__table::before,
    .lpg-eligibility__table::after {
        display: none;
    }

    .lpg-eligibility__row {
        flex-direction: column;
    }

    .lpg-eligibility__row-title,
    .lpg-eligibility__row-body {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 18px 22px;
    }

    .lpg-eligibility__row-title {
        background-color: #fefaec;
        font-size: 15px;
    }

    .lpg-eligibility__row-body {
        border-top: 0.6px solid #cfcaba;
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 575.98px) {
    .lpg-eligibility__title { font-size: 26px !important; }

    .lpg-eligibility__subtitle { font-size: 14px; }

    .lpg-eligibility__header { gap: 10px; }

    .lpg-eligibility__table {
        margin-top: 24px;
        border-radius: 12px;
    }

    .lpg-eligibility__row-title,
    .lpg-eligibility__row-body {
        padding: 14px 18px;
    }

    .lpg-eligibility__row-title { font-size: 14px; }

    .lpg-eligibility__row-body {
        font-size: 13px;
        line-height: 20px;
    }
}


/* FAQ. Styling from the shared `.gwp-faq--redesign` variant. Answers here
   are multi-paragraph, so restore <p> rhythm (shared rule zeros p margin). */
.gwp-faq--redesign .gwp-faq__answer p + p {
    margin-top: 12px !important;
}


/* HELP EMPLOYEES BOOK WITH CONFIDENCE — 24px rounded card, navy→periwinkle
   gradient. Left: copy + CTAs; right: white form card. Trust markers below. */

.lpg-cta {
    background-color: #ffffff;
}

/* ---- Big rounded gradient card ---- */
.lpg-cta__card {
    background: linear-gradient(131.57deg, #31356e 0%, #585fbe 100%);
    border-radius: 24px;
    box-shadow: 0 4px 12px -2px rgba(18, 19, 44, 0.08),
                0 24px 48px -16px rgba(18, 19, 44, 0.12);
    overflow: hidden;
    padding: 40px;
    color: #ffffff;
}

.lpg-cta__inner {
    max-width: 1138px;
    gap: 25px;
}

/* ---- Row: text column on left, form on right — layout via utilities ---- */
.lpg-cta__row {
    gap: 138px;
}

/* ---- Left column — display/flex-column from utilities ---- */
.lpg-cta__left {
    flex: 0 0 558px;
    max-width: 558px;
    gap: 26px;
}

.lpg-cta__left > .lpg-cta__eyebrow + .lpg-cta__title {
    margin-top: -14px;
}

.lpg-cta__left > .lpg-cta__desc {
    margin-top: -14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ---- Eyebrow pill — styling from global .gwp-eyebrow--inverse ---- */
.lpg-cta__eyebrow {
    align-self: flex-start;
}

/* ---- Title — typography from global .gwp-section-title--inverse ---- */

.lpg-cta__title-accent {
    display: inline;
    font-family: var(--gwp-font-title);
    font-style: italic;
    font-weight: 700;
    color: #f5b209;
}

/* ---- Description block ---- */
.lpg-cta__lede {
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: rgba(252, 252, 252, 0.9);
    margin: 0;
}

.lpg-cta__body {
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 400;
    font-size: var(--gwp-fs-md);
    line-height: 26px;
    color: #ffffff;
    margin: 0;
}

/* CTA button 16px gap via gap-10 utility on markup. Sizing from global .gwp-btn. */

/* ---- Right column: white form card — display/justify from utilities ---- */
.lpg-cta__right {
    flex: 0 0 auto;
}

.lpg-cta__form-wrap {
    width: 442px;
    max-width: 100%;
}

.lpg-form {
    background-color: #ffffff;
    border: 2px solid #4a7ae5;
    border-radius: 16px;
    padding: 20px;
    gap: 20px;
}

.lpg-form__title {
    font-family: var(--gwp-font-title);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    color: #31356e;
    opacity: 0.9;
    margin: 0;
}

.lpg-form__fields {
    gap: 20px;
}

/* Row uses d-flex flex-wrap gap-10 utilities on markup. */

.lpg-form__row .lpg-form__field {
    flex: 1 1 0;
    min-width: 140px;
}

.lpg-form__field {
    gap: 4px;
}

/* ---- Field label ---- */
.lpg-form__label {
    font-family: var(--gwp-font-title);
    font-weight: 600;
    font-size: var(--gwp-fs-base);
    line-height: 1.2;
    color: #0f2c6e;
    margin: 0;
}

.lpg-form__label .req {
    color: #0f2c6e;
    margin-left: 2px;
}

/* ---- Field input — bottom border only ---- */
.lpg-form__input {
    height: 38px;
    padding: 10px 12px;
    background-color: transparent;
    border: none;
    border-bottom: 0.6px solid #666666;
    border-radius: 0;
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 300;
    font-size: var(--gwp-fs-base);
    line-height: 1.2;
    color: #302e2b;
    outline: none;
    box-shadow: none;
    width: 100%;
}

.lpg-form__input::placeholder {
    color: #666666;
    font-weight: 300;
}

.lpg-form__input:focus {
    border-bottom-color: #4a7ae5;
}

/* ---- Submit + phone stack — layout via utilities ---- */
.lpg-form__submit {
    gap: 10px;
}

/* Form CTA styling comes from global .gwp-btn--primary + .gwp-form__cta-btn. */

.lpg-form__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #31356e;
}

.lpg-form__phone .bi {
    font-size: 16px;
    color: #31356e;
}

.lpg-form__phone-text {
    font-family: var(--gwp-font-title);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.33;
    color: #31356e;
    text-decoration: underline;
}

/* ---- Trust markers strip — layout via utilities ---- */
.lpg-cta__trust {
    max-width: 1112px;
    gap: 19px;
}

.lpg-cta__trust-divider {
    display: block;
    width: 100%;
    height: 0.6px;
    background-color: rgba(255, 255, 255, 0.35);
}

.lpg-cta__trust-list {
    gap: 103px;
}

.lpg-cta__trust-item {
    gap: 10px;
}

/* ---- Trust icon container — 28x28 rounded 10px; display/align/justify via utilities ---- */
.lpg-cta__trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background-color: rgba(252, 252, 252, 0.15);
    color: #fcfcfc;
    flex-shrink: 0;
}

.lpg-cta__trust-icon .bi {
    font-size: 16px;
    line-height: 1;
}

/* ---- Trust label ---- */
.lpg-cta__trust-label {
    font-family: 'Inter', var(--gwp-font-body);
    font-weight: 400;
    font-size: var(--gwp-fs-base);
    line-height: 20px;
    color: rgba(252, 252, 252, 0.85);
    white-space: nowrap;
}


/* SECTION 7 — responsive */

@media (max-width: 1279.98px) {
    /* Card content (558 + gap + 442) can't fit side-by-side in the
       tablet/small-desktop card inner — stack the row and let both
       columns span the card's full width. */
    .lpg-cta__row {
        flex-direction: column;
        gap: 40px;
    }

    .lpg-cta__left,
    .lpg-cta__right {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }

    .lpg-cta__form-wrap { width: 100%; max-width: 100%; }

    .lpg-cta__trust-list { gap: 40px; }
}

@media (max-width: 991.98px) {
    .lpg-cta__card { padding: 30px; }
    .lpg-cta__trust-list { gap: 30px; }
}

@media (max-width: 767.98px) {
    .lpg-cta__card {
        padding: 28px 24px;
        border-radius: 22px;
    }

    .lpg-cta__row { gap: 32px; }

    .lpg-cta__left { gap: 22px; }

    .lpg-cta__title { font-size: 30px !important; }

    .lpg-cta__lede { font-size: 17px; line-height: 26px; }
    .lpg-cta__body { font-size: 15px; line-height: 24px; }

    .lpg-form {
        padding: 18px;
        gap: 16px;
    }

    .lpg-form__title { font-size: 20px; }

    .lpg-form__fields { gap: 16px; }

    .lpg-cta__trust { gap: 16px; }

    .lpg-cta__trust-list { gap: 24px; }
}

@media (max-width: 575.98px) {
    .lpg-cta__card { padding: 20px 18px; border-radius: 18px; }

    .lpg-cta__row { gap: 24px; }

    .lpg-cta__left { gap: 18px; }

    .lpg-cta__title { font-size: 28px !important; }

    .lpg-cta__lede { font-size: 16px; line-height: 24px; }
    .lpg-cta__body { font-size: 14px; line-height: 22px; }

    .lpg-form { padding: 14px; }
    .lpg-form__title { font-size: 17px; }
    .lpg-form__fields { gap: 14px; }
    .lpg-form__row { flex-direction: column; gap: 12px; }

    .lpg-cta__trust { gap: 14px; }

    /* Size the list to its widest child, then center that block within
       the trust wrapper. `align-items: flex-start !important` overrides
       the `align-items-center` utility on the markup so all icons stack
       in a clean vertical column instead of jagging left/right with
       each pair's intrinsic width. */
    .lpg-cta__trust-list {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
        width: max-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .lpg-cta__trust-icon {
        width: 24px;
        height: 24px;
    }

    .lpg-cta__trust-icon .bi { font-size: 14px; }

    .lpg-cta__trust-label { font-size: 13px; }

    .lpg-form__phone-text { font-size: 14px; }
    .lpg-form__phone .bi { font-size: 14px; }
}
