/*
 * Landing V2 experiment styles.
 * Scoped to body.landing-v2 to avoid affecting existing pages.
 */

body.landing-v2 {
    background: #ffffff;
    position: relative;
}

/* Header in normal flow — floating pill look from border-radius, not from absolute position */
body.landing-v2 #oms_header,
body.landing-v2 .site-header {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    position: relative !important;
}

body.landing-v2 #main_navigation_container {
    display: none;
}

/* ─── Nav wrapper ─────────────────────────────────────────── */
body.landing-v2 .landing-v2-nav {
    margin: 0 auto;
    max-width: 1440px;
    padding: 15px 20px;
}

/* Frosted-glass pill — matches Figma rgba(249,249,249,0.9) + blur(7.5px) */
body.landing-v2 .landing-v2-nav__frame {
    align-items: center;
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    background: rgba(249, 249, 249, 0.9);
    border-radius: 10px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    min-height: 68px;
    padding: 5px 20px;
}

/* ─── Logo ────────────────────────────────────────────────── */
body.landing-v2 .landing-v2-nav__brand {
    display: inline-flex;
    flex-shrink: 0;
    line-height: 1;
}

body.landing-v2 .landing-v2-nav__brand img {
    display: block;
    height: auto;
    max-width: 194px;
    width: 100%;
}

/* ─── Menu list ───────────────────────────────────────────── */
body.landing-v2 .landing-v2-nav__menu {
    flex: 1 1 auto;
    min-width: 0;
}

body.landing-v2 .landing-v2-menu {
    align-items: center;
    display: flex;
    gap: 0;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.landing-v2 .landing-v2-menu__item {
    margin: 0;
    padding: 0;
}

/* Nav link — DM Sans Medium 16px, color #1152cc */
body.landing-v2 .landing-v2-menu__link {
    align-items: center;
    color: #1152cc;
    display: inline-flex;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
    line-height: 80px;
    padding: 0 20px;
    text-decoration: none;
    transition: opacity 0.15s ease;
    white-space: nowrap;
}

body.landing-v2 .landing-v2-menu__link:hover,
body.landing-v2 .landing-v2-menu__link:focus {
    opacity: 0.75;
    color: #1152cc;
}

/* Chevron — small rotated triangle matching Figma */
body.landing-v2 .landing-v2-menu__chevron {
    border-right: 1.5px solid #1152cc;
    border-bottom: 1.5px solid #1152cc;
    display: inline-block;
    flex-shrink: 0;
    height: 5px;
    margin-top: -3px;
    transform: rotate(45deg);
    width: 5px;
}

/* ─── CTA pill — dark blue #0c2863 ───────────────────────── */
body.landing-v2 .landing-v2-nav__cta {
    align-items: center;
    background: #0c2863;
    border-radius: 43px;
    color: #f9f9f9;
    display: inline-flex;
    flex-shrink: 0;
    gap: 20px;
    padding: 5px 5px 5px 20px;
    text-decoration: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

body.landing-v2 .landing-v2-nav__cta:hover,
body.landing-v2 .landing-v2-nav__cta:focus {
    color: #f9f9f9;
    opacity: 0.9;
    transform: translateY(-1px);
}

/* CTA label — DM Sans SemiBold 16px */
body.landing-v2 .landing-v2-nav__cta-text {
    color: #f9f9f9;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap;
}

/* Arrow circle icon */
body.landing-v2 .landing-v2-nav__cta-icon {
    align-items: center;
    background: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    flex-shrink: 0;
    height: 31px;
    justify-content: center;
    width: 31px;
}

body.landing-v2 .landing-v2-nav__cta-icon svg {
    display: block;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1199.98px) {
    body.landing-v2 .landing-v2-nav {
        padding: 10px 14px;
    }

    body.landing-v2 .landing-v2-nav__frame {
        min-height: 58px;
        padding: 5px 14px;
    }

    body.landing-v2 .landing-v2-nav__brand img {
        max-width: 160px;
    }

    body.landing-v2 .landing-v2-nav__menu {
        display: none;
    }

    body.landing-v2 .landing-v2-nav__cta {
        gap: 14px;
        padding: 5px 5px 5px 16px;
    }

    body.landing-v2 .landing-v2-nav__cta-text {
        font-size: 14px;
    }

    body.landing-v2 .landing-v2-nav__cta-icon {
        height: 28px;
        width: 28px;
    }
}

body.landing-v2 .gutenblock {
    position: relative;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS CAROUSEL — Figma node 231:795
   ═══════════════════════════════════════════════════════════ */

body.landing-v2 .gutenblock--oms-lv2-testimonials {
    background: #f9f9f9;
    padding: 90px 0 140px;
}

body.landing-v2 .lv2-testi {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ─── Scrollable track ─── */
body.landing-v2 .lv2-testi__track {
    -ms-overflow-style: none;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 40px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

body.landing-v2 .lv2-testi__track::-webkit-scrollbar {
    display: none;
}

/* ─── Card ─── */
body.landing-v2 .lv2-testi__card {
    background: #f2f2f0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    justify-content: space-between;
    min-height: 261px;
    padding: 40px;
    scroll-snap-align: start;
    width: 555px;
}

body.landing-v2 .lv2-testi__quote {
    margin: 0 0 24px;
}

body.landing-v2 .lv2-testi__quote p {
    color: #202122;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

/* ─── Author ─── */
body.landing-v2 .lv2-testi__author {
    align-items: center;
    display: flex;
    gap: 20px;
}

body.landing-v2 .lv2-testi__avatar {
    border-radius: 50%;
    flex-shrink: 0;
    height: 43px;
    overflow: hidden;
    width: 43px;
}

body.landing-v2 .lv2-testi__avatar-img {
    border-radius: 50%;
    display: block;
    height: 43px;
    object-fit: cover;
    width: 43px;
}

body.landing-v2 .lv2-testi__avatar--placeholder {
    background: #d4d4d0;
}

body.landing-v2 .lv2-testi__author-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.landing-v2 .lv2-testi__author-name {
    color: #464646;
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

body.landing-v2 .lv2-testi__author-role {
    color: #464646;
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* ─── Dots ─── */
body.landing-v2 .lv2-testi__dots {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 0 40px;
}

body.landing-v2 .lv2-testi__dot {
    background: #d4d4d0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    height: 10px;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
    width: 10px;
}

body.landing-v2 .lv2-testi__dot.is-active {
    background: #1152cc;
    transform: scale(1.2);
}

body.landing-v2 .lv2-testi__dot:hover {
    background: #6b8fd4;
}

/* ─── Responsive ─── */
@media (max-width: 767px) {
    body.landing-v2 .lv2-testi__card {
        min-height: auto;
        width: calc(100vw - 80px);
    }

    body.landing-v2 .gutenblock--oms-lv2-testimonials {
        padding: 60px 0 80px;
    }
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS — Figma node 228:613
   ═══════════════════════════════════════════════════════════ */

body.landing-v2 .gutenblock--oms-lv2-how-it-works {
    background: #f9f9f9;
    padding: 90px 40px 140px;
}

body.landing-v2 .lv2-hiw {
    align-items: flex-start;
    display: flex;
    gap: 142px;
    margin: 0 auto;
    max-width: 1360px;
}

/* ─── Left column ─── */
body.landing-v2 .lv2-hiw__lead {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 30px;
    width: 460px;
}

body.landing-v2 .lv2-hiw__headline {
    color: #1152cc;
    font-family: 'DM Sans', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
}

body.landing-v2 .lv2-hiw__subtext {
    color: #464646;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

body.landing-v2 .lv2-hiw__cta {
    align-items: center;
    color: #1152cc;
    display: inline-flex;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    gap: 10px;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-color: #1152cc;
    text-underline-offset: 3px;
    transition: opacity 0.15s ease;
}

body.landing-v2 .lv2-hiw__cta:hover,
body.landing-v2 .lv2-hiw__cta:focus {
    color: #1152cc;
    opacity: 0.75;
}

body.landing-v2 .lv2-hiw__cta svg {
    flex-shrink: 0;
}

/* ─── Steps list ─── */
body.landing-v2 .lv2-hiw__steps {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.landing-v2 .lv2-hiw__step {
    border-top: 1px solid #d4d4d0;
    padding: 30px 0;
}

body.landing-v2 .lv2-hiw__step:last-child {
    border-bottom: 1px solid #d4d4d0;
}

body.landing-v2 .lv2-hiw__step-row {
    align-items: flex-start;
    display: flex;
    gap: 150px;
}

body.landing-v2 .lv2-hiw__step-number {
    color: #1152cc;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    min-width: 80px;
}

body.landing-v2 .lv2-hiw__step-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.landing-v2 .lv2-hiw__step-title {
    color: #464646;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
}

body.landing-v2 .lv2-hiw__step-desc {
    color: #464646;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

/* ─── Responsive ─── */
@media (max-width: 1199.98px) {
    body.landing-v2 .gutenblock--oms-lv2-how-it-works {
        padding: 60px 24px 80px;
    }

    body.landing-v2 .lv2-hiw {
        gap: 60px;
    }

    body.landing-v2 .lv2-hiw__lead {
        width: 320px;
    }

    body.landing-v2 .lv2-hiw__headline {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    body.landing-v2 .lv2-hiw {
        flex-direction: column;
        gap: 32px;
    }

    body.landing-v2 .lv2-hiw__lead {
        padding-top: 0;
        width: 100%;
    }

    body.landing-v2 .lv2-hiw__step-row {
        gap: 24px;
    }
}

/* ═══════════════════════════════════════════════════════════
   IS THIS RIGHT FOR YOU — Figma node 228:303
   ═══════════════════════════════════════════════════════════ */

body.landing-v2 .gutenblock--oms-lv2-is-right {
    background: #f9f9f9;
    padding: 90px 40px 140px;
}

body.landing-v2 .lv2-is-right {
    align-items: center;
    display: flex;
    gap: 80px;
    margin: 0 auto;
    max-width: 1360px;
}

body.landing-v2 .lv2-is-right__image {
    border-radius: 10px;
    flex-shrink: 0;
    height: 544px;
    overflow: hidden;
    width: 555px;
}

body.landing-v2 .lv2-is-right__image img,
body.landing-v2 .lv2-is-right__image-placeholder {
    border-radius: 10px;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

body.landing-v2 .lv2-is-right__image-placeholder {
    background: #e7e7e7;
}

body.landing-v2 .lv2-is-right__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 531px;
    padding: 15px 0;
}

body.landing-v2 .lv2-is-right__top {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

body.landing-v2 .lv2-is-right__heading-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Headline: DM Sans Medium 45px, color #1152cc; <em> → Bitter Italic 42px */
body.landing-v2 .lv2-is-right__headline {
    color: #1152cc;
    font-family: 'DM Sans', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
}

body.landing-v2 .lv2-is-right__headline em,
body.landing-v2 .lv2-is-right__headline i {
    font-family: 'Bitter', serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 500;
}

body.landing-v2 .lv2-is-right__subtext {
    color: #464646;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    max-width: 405px;
}

/* Checklist */
body.landing-v2 .lv2-is-right__checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.landing-v2 .lv2-is-right__check-item {
    align-items: flex-start;
    color: #464646;
    display: flex;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    gap: 20px;
    line-height: 24px;
}

body.landing-v2 .lv2-is-right__check-item svg {
    flex-shrink: 0;
    margin-top: 0;
}

/* Treatment chips */
body.landing-v2 .lv2-is-right__programs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.landing-v2 .lv2-is-right__programs-label {
    color: #464646;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

body.landing-v2 .lv2-is-right__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.landing-v2 .lv2-is-right__chip {
    background: #f2f2f0;
    border-radius: 5px;
    color: #202122;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding: 7px 10px;
    white-space: nowrap;
}

/* ─── Responsive ─── */
@media (max-width: 1199.98px) {
    body.landing-v2 .gutenblock--oms-lv2-is-right {
        padding: 60px 24px 80px;
    }

    body.landing-v2 .lv2-is-right {
        gap: 40px;
    }

    body.landing-v2 .lv2-is-right__image {
        height: 400px;
        width: 42%;
    }

    body.landing-v2 .lv2-is-right__headline {
        font-size: 36px;
    }

    body.landing-v2 .lv2-is-right__headline em,
    body.landing-v2 .lv2-is-right__headline i {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    body.landing-v2 .gutenblock--oms-lv2-is-right {
        padding: 48px 20px 60px;
    }

    body.landing-v2 .lv2-is-right {
        flex-direction: column;
        gap: 32px;
    }

    body.landing-v2 .lv2-is-right__image {
        height: 300px;
        width: 100%;
    }

    body.landing-v2 .lv2-is-right__content {
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════
   PROOF POINTS — Figma node 228:181
   ═══════════════════════════════════════════════════════════ */

body.landing-v2 .gutenblock--oms-lv2-proof-points {
    background: #f2f2f0;
    padding: 70px 40px;
}

body.landing-v2 .lv2-proof-points {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1360px;
}

body.landing-v2 .lv2-proof-points__lead {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 10px;
    max-width: 355px;
}

body.landing-v2 .lv2-proof-points__tagline {
    color: #202122;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

body.landing-v2 .lv2-proof-points__cta {
    align-items: center;
    color: #1152cc;
    display: inline-flex;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    gap: 8px;
    line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.15s ease;
}

body.landing-v2 .lv2-proof-points__cta:hover,
body.landing-v2 .lv2-proof-points__cta:focus {
    color: #1152cc;
    opacity: 0.75;
}

body.landing-v2 .lv2-proof-points__cta svg {
    flex-shrink: 0;
}

body.landing-v2 .lv2-proof-points__badges {
    align-items: center;
    display: flex;
    gap: 19px;
    justify-content: flex-end;
}

body.landing-v2 .lv2-proof-points__badge {
    align-items: center;
    background: #e7e7e7;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    min-height: 88px;
    padding: 20px 0;
    text-align: center;
    width: 210px;
}

body.landing-v2 .lv2-proof-points__badge p {
    color: #202122;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    width: 203px;
}

body.landing-v2 .lv2-proof-points__badge strong {
    display: block;
    font-weight: 600;
}

/* ─── Responsive ─── */
@media (max-width: 1199.98px) {
    body.landing-v2 .gutenblock--oms-lv2-proof-points {
        padding: 50px 24px;
    }

    body.landing-v2 .lv2-proof-points {
        flex-wrap: wrap;
        gap: 32px;
    }

    body.landing-v2 .lv2-proof-points__badges {
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
    }

    body.landing-v2 .lv2-proof-points__badge {
        flex: 1 1 calc(50% - 10px);
        width: auto;
    }
}

@media (max-width: 575px) {
    body.landing-v2 .lv2-proof-points__badge {
        flex: 1 1 100%;
    }
}

/* ═══════════════════════════════════════════════════════════
   HERO — OMS Header Block overrides for landing-v2
   Matches Figma node 228:166
   ═══════════════════════════════════════════════════════════ */

body.landing-v2 .gutenblock--oms-header {
    background: #1152cc !important;
    border: 0;
    margin: 0;
    padding: 60px 40px 80px;
}

body.landing-v2 .gutenblock--oms-header .gutenblock__inner {
    padding: 0;
}

body.landing-v2 .gutenblock--oms-header .container-fluid {
    max-width: 1360px;
    padding: 0;
}

body.landing-v2 .gutenblock--oms-header .content-row {
    align-items: center;
    min-height: 426px;
}

/* ─── Text column ─── */
body.landing-v2 .gutenblock--oms-header .text-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
    text-align: left !important;
}

body.landing-v2 .gutenblock--oms-header .pre-title {
    color: rgba(249, 249, 249, 0.75);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.landing-v2 .gutenblock--oms-header h1 {
    color: #f9f9f9;
    font-family: 'DM Sans', sans-serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 30px;
    max-width: 515px;
}

/* "Colorado" — wrap in <em> in the ACF h1 field to get Bitter italic */
body.landing-v2 .gutenblock--oms-header h1 em,
body.landing-v2 .gutenblock--oms-header h1 i {
    font-family: 'Bitter', serif;
    font-size: 52px;
    font-style: italic;
    font-weight: 500;
}

body.landing-v2 .gutenblock--oms-header .text-column p {
    color: #f9f9f9;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 30px;
    max-width: 340px;
}

/* Links in the text column → "Verify Insurance" style */
body.landing-v2 .gutenblock--oms-header .text-column a {
    align-items: center;
    color: #f9f9f9;
    display: inline-flex;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    gap: 8px;
    line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.15s ease;
}

body.landing-v2 .gutenblock--oms-header .text-column a:hover,
body.landing-v2 .gutenblock--oms-header .text-column a:focus {
    color: #f9f9f9;
    opacity: 0.8;
}

/* ─── Image / media column ─── */
body.landing-v2 .gutenblock--oms-header .image-column {
    padding: 0;
}

body.landing-v2 .gutenblock--oms-header .image-column .image-sliders-container,
body.landing-v2 .gutenblock--oms-header .image-column .image-slider,
body.landing-v2 .gutenblock--oms-header .image-column .static-image {
    border-radius: 10px;
    height: 426px;
    overflow: hidden;
}

body.landing-v2 .gutenblock--oms-header .image-column img,
body.landing-v2 .gutenblock--oms-header .image-column .slider-image {
    border-radius: 10px;
    display: block;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
    width: 100% !important;
}

/* Hide breadcrumbs in the hero */
body.landing-v2 .gutenblock--oms-header #breadcrumbs {
    display: none;
}

/* ─── Responsive ─── */
@media (max-width: 1199.98px) {
    body.landing-v2 .gutenblock--oms-header {
        padding: 40px 24px 60px;
    }

    body.landing-v2 .gutenblock--oms-header h1 {
        font-size: 42px;
    }

    body.landing-v2 .gutenblock--oms-header h1 em,
    body.landing-v2 .gutenblock--oms-header h1 i {
        font-size: 40px;
    }

    body.landing-v2 .gutenblock--oms-header .image-column .image-sliders-container,
    body.landing-v2 .gutenblock--oms-header .image-column .image-slider,
    body.landing-v2 .gutenblock--oms-header .image-column .static-image {
        height: 320px;
    }
}

@media (max-width: 767px) {
    body.landing-v2 .gutenblock--oms-header h1 {
        font-size: 36px;
    }

    body.landing-v2 .gutenblock--oms-header h1 em,
    body.landing-v2 .gutenblock--oms-header h1 i {
        font-size: 34px;
    }

    body.landing-v2 .gutenblock--oms-header .image-column .image-sliders-container,
    body.landing-v2 .gutenblock--oms-header .image-column .image-slider,
    body.landing-v2 .gutenblock--oms-header .image-column .static-image {
        height: 260px;
        margin-top: 24px;
    }
}

/* ════════════════════════════════════════════════════
   LV2 — Outcomes Section
   ════════════════════════════════════════════════════ */
body.landing-v2 .gutenblock--oms-lv2-outcomes {
    background: transparent;
    padding: 0 0 80px;
}

body.landing-v2 .lv2-outcomes {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

body.landing-v2 .lv2-outcomes__card {
    background: #ebf4fb;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 191px;
    padding: 68px 115px 67px 58px;
}

/* Left column */
body.landing-v2 .lv2-outcomes__left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-shrink: 0;
    width: 441px;
}

body.landing-v2 .lv2-outcomes__heading-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.landing-v2 .lv2-outcomes__headline {
    font-family: 'DM Sans', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.2;
    color: #1152CC;
    margin: 0;
}

body.landing-v2 .lv2-outcomes__headline em {
    font-family: 'Bitter', Georgia, serif;
    font-style: italic;
    font-size: 42px;
    font-weight: 500;
    color: #1152CC;
}

body.landing-v2 .lv2-outcomes__subtext {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: #464646;
    margin: 0;
    max-width: 395px;
}

body.landing-v2 .lv2-outcomes__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1152CC;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: #1152CC;
    transition: opacity 0.2s;
}

body.landing-v2 .lv2-outcomes__cta:hover {
    opacity: 0.8;
    text-decoration: underline;
    color: #1152CC;
}

body.landing-v2 .lv2-outcomes__cta svg {
    flex-shrink: 0;
}

/* Right column */
body.landing-v2 .lv2-outcomes__right {
    display: flex;
    flex-direction: column;
    gap: 35px;
    flex: 1;
}

body.landing-v2 .lv2-outcomes__divider {
    height: 1px;
    background: #c7dff0;
    width: 100%;
}

body.landing-v2 .lv2-outcomes__point {
    display: flex;
    align-items: flex-start;
    gap: 35px;
}

body.landing-v2 .lv2-outcomes__value {
    font-family: 'DM Sans', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.1;
    color: #1152CC;
    flex-shrink: 0;
    width: 150px;
}

body.landing-v2 .lv2-outcomes__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: #464646;
    margin: 0;
    padding-top: 6px;
}

/* ─── Responsive ─── */
@media (max-width: 1199.98px) {
    body.landing-v2 .lv2-outcomes__card {
        gap: 60px;
        padding: 60px 48px;
    }

    body.landing-v2 .lv2-outcomes__left {
        width: 360px;
    }
}

@media (max-width: 767px) {
    body.landing-v2 .lv2-outcomes__card {
        flex-direction: column;
        gap: 40px;
        padding: 40px 28px;
    }

    body.landing-v2 .lv2-outcomes__left {
        width: 100%;
    }

    body.landing-v2 .lv2-outcomes__headline {
        font-size: 36px;
    }

    body.landing-v2 .lv2-outcomes__headline em {
        font-size: 34px;
    }

    body.landing-v2 .lv2-outcomes__value {
        font-size: 36px;
        width: 100px;
    }
}

/* ════════════════════════════════════════════════════
   LV2 — Program Details Section
   ════════════════════════════════════════════════════ */
body.landing-v2 .gutenblock--oms-lv2-program-details {
    background: transparent;
    padding: 0 0 100px;
}

body.landing-v2 .lv2-pd {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px 0 115px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

/* Left column */
body.landing-v2 .lv2-pd__left {
    flex-shrink: 0;
    width: 565px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-top: 15px;
}

/* Top group: headline + rows together */
body.landing-v2 .lv2-pd__top-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

body.landing-v2 .lv2-pd__headline {
    font-family: 'DM Sans', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.1;
    color: #1152CC;
    margin: 0;
}

body.landing-v2 .lv2-pd__headline em {
    font-family: 'Bitter', Georgia, serif;
    font-style: italic;
    font-size: 42px;
    font-weight: 500;
    color: #1152CC;
}

/* Detail rows */
body.landing-v2 .lv2-pd__rows {
    display: flex;
    flex-direction: column;
    width: 325px;
}

body.landing-v2 .lv2-pd__row-divider {
    height: 1px;
    background: #d5dde8;
    width: 100%;
}

body.landing-v2 .lv2-pd__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 16px;
    line-height: 1.5;
}

body.landing-v2 .lv2-pd__row-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: #0C2863;
    flex-shrink: 0;
}

body.landing-v2 .lv2-pd__row-value {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: #464646;
    text-align: right;
}

/* Treatment type chips */
body.landing-v2 .lv2-pd__types {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 325px;
}

body.landing-v2 .lv2-pd__types-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #464646;
    margin: 0;
}

body.landing-v2 .lv2-pd__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.landing-v2 .lv2-pd__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    background: #f2f2f0;
    border-radius: 5px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #202122;
    line-height: 1.5;
}

/* Right column — photo gallery */
body.landing-v2 .lv2-pd__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

body.landing-v2 .lv2-pd__gallery {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 671 / 530;
    background: #dce8f2;
}

body.landing-v2 .lv2-pd__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

body.landing-v2 .lv2-pd__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

body.landing-v2 .lv2-pd__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

body.landing-v2 .lv2-pd__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}

/* Navigation dots overlay */
body.landing-v2 .lv2-pd__dots {
    position: absolute;
    bottom: 18px;
    right: 18px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

body.landing-v2 .lv2-pd__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}

body.landing-v2 .lv2-pd__dot.is-active {
    background: #fff;
}

/* Carousel controls below image */
body.landing-v2 .lv2-pd__controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

body.landing-v2 .lv2-pd__btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

body.landing-v2 .lv2-pd__btn:hover {
    opacity: 0.7;
}

body.landing-v2 .lv2-pd__counter {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #464646;
}

/* ─── Responsive ─── */
@media (max-width: 1399.98px) {
    body.landing-v2 .lv2-pd {
        padding-left: 60px;
        gap: 20px;
    }

    body.landing-v2 .lv2-pd__left {
        width: 460px;
    }
}

@media (max-width: 1199.98px) {
    body.landing-v2 .lv2-pd {
        padding-left: 40px;
        gap: 30px;
    }

    body.landing-v2 .lv2-pd__left {
        width: 380px;
    }
}

@media (max-width: 767px) {
    body.landing-v2 .lv2-pd {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }

    body.landing-v2 .lv2-pd__left {
        width: 100%;
    }

    body.landing-v2 .lv2-pd__rows,
    body.landing-v2 .lv2-pd__types {
        width: 100%;
    }

    body.landing-v2 .lv2-pd__headline {
        font-size: 36px;
    }

    body.landing-v2 .lv2-pd__headline em {
        font-size: 34px;
    }

    body.landing-v2 .lv2-pd__gallery {
        aspect-ratio: 4 / 3;
    }
}

body.landing-v2 .gutenblock--oms-lv2-insurance {
    background: #f7f7f7;
    padding: 100px 40px;
}

body.landing-v2 .lv2-ins {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 0 auto;
    max-width: 1360px;
}

body.landing-v2 .lv2-ins__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

body.landing-v2 .lv2-ins__headline {
    color: #1152cc;
    font-family: 'DM Sans', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    max-width: 668px;
}

body.landing-v2 .lv2-ins__headline em,
body.landing-v2 .lv2-ins__headline i {
    color: #1152cc;
    font-family: 'Bitter', serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 500;
}

body.landing-v2 .lv2-ins__subtext {
    color: #202122;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    max-width: 466px;
}

body.landing-v2 .lv2-ins__cta {
    align-items: center;
    color: #1152cc;
    display: inline-flex;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    gap: 15px;
    line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.15s ease;
}

body.landing-v2 .lv2-ins__cta:hover,
body.landing-v2 .lv2-ins__cta:focus {
    color: #1152cc;
    opacity: 0.75;
}

body.landing-v2 .lv2-ins__cta svg {
    flex-shrink: 0;
}

body.landing-v2 .lv2-ins__logos {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 28px 40px;
    justify-content: center;
    max-width: 1000px;
    width: 100%;
}

body.landing-v2 .lv2-ins__logo-item {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 41px;
}

body.landing-v2 .lv2-ins__logo-img {
    display: block;
    height: 41px;
    max-width: 170px;
    object-fit: contain;
    width: auto;
}

@media (max-width: 1199.98px) {
    body.landing-v2 .gutenblock--oms-lv2-insurance {
        padding: 70px 24px;
    }

    body.landing-v2 .lv2-ins {
        gap: 48px;
    }
}

@media (max-width: 767px) {
    body.landing-v2 .gutenblock--oms-lv2-insurance {
        padding: 56px 20px;
    }

    body.landing-v2 .lv2-ins__headline {
        font-size: 28px;
    }

    body.landing-v2 .lv2-ins__headline em,
    body.landing-v2 .lv2-ins__headline i {
        font-size: 28px;
    }

    body.landing-v2 .lv2-ins__cta {
        font-size: 20px;
    }

    body.landing-v2 .lv2-ins__logos {
        gap: 20px 28px;
    }

    body.landing-v2 .lv2-ins__logo-img {
        height: 32px;
        max-width: 140px;
    }
}

body.landing-v2 .gutenblock--oms-lv2-care-team {
    background: #f9f9f9;
    padding: 140px 40px 0;
}

body.landing-v2 .lv2-team {
    align-items: flex-start;
    display: flex;
    gap: 60px;
    margin: 0 auto;
    max-width: 1360px;
}

body.landing-v2 .lv2-team__lead {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 15px 0;
    width: 441px;
}

body.landing-v2 .lv2-team__headline {
    color: #1152cc;
    font-family: 'DM Sans', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
}

body.landing-v2 .lv2-team__headline em,
body.landing-v2 .lv2-team__headline i {
    color: #1152cc;
    display: block;
    font-family: 'Bitter', serif;
    font-size: 45px;
    font-style: italic;
    font-weight: 500;
}

body.landing-v2 .lv2-team__subtext {
    color: #464646;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    max-width: 398px;
}

body.landing-v2 .lv2-team__right {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

body.landing-v2 .lv2-team__track {
    -ms-overflow-style: none;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

body.landing-v2 .lv2-team__track::-webkit-scrollbar {
    display: none;
}

body.landing-v2 .lv2-team__card {
    background: #f2f2f0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-height: 416px;
    width: 325px;
}

body.landing-v2 .lv2-team__photo-wrap {
    border-radius: 10px 10px 0 0;
    height: 300px;
    overflow: hidden;
    width: 100%;
}

body.landing-v2 .lv2-team__photo {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

body.landing-v2 .lv2-team__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 116px;
    padding: 20px 25px 30px;
}

body.landing-v2 .lv2-team__name {
    color: #464646;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
}

body.landing-v2 .lv2-team__role {
    color: #464646;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

body.landing-v2 .lv2-team__controls {
    align-items: center;
    display: flex;
    gap: 20px;
}

body.landing-v2 .lv2-team__btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    padding: 0;
}

body.landing-v2 .lv2-team__btn:hover {
    opacity: 0.8;
}

@media (max-width: 1199.98px) {
    body.landing-v2 .gutenblock--oms-lv2-care-team {
        padding: 80px 24px 0;
    }

    body.landing-v2 .lv2-team {
        gap: 32px;
    }

    body.landing-v2 .lv2-team__lead {
        width: 360px;
    }

    body.landing-v2 .lv2-team__headline {
        font-size: 38px;
    }

    body.landing-v2 .lv2-team__headline em,
    body.landing-v2 .lv2-team__headline i {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    body.landing-v2 .gutenblock--oms-lv2-care-team {
        padding: 56px 20px 0;
    }

    body.landing-v2 .lv2-team {
        flex-direction: column;
    }

    body.landing-v2 .lv2-team__lead {
        padding: 0;
        width: 100%;
    }

    body.landing-v2 .lv2-team__headline {
        font-size: 34px;
    }

    body.landing-v2 .lv2-team__headline em,
    body.landing-v2 .lv2-team__headline i {
        font-size: 34px;
    }

    body.landing-v2 .lv2-team__card {
        width: calc(100vw - 40px);
    }
}

body.landing-v2 .gutenblock--oms-lv2-faq {
    background: #f7f7f7;
    padding: 140px 40px;
}

body.landing-v2 .lv2-faq-wrap {
    align-items: flex-start;
    display: flex;
    gap: 123px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1360px;
}

body.landing-v2 .lv2-faq__lead {
    padding-top: 20px;
    width: 334px;
}

body.landing-v2 .lv2-faq__headline {
    max-width: 334px;
}

body.landing-v2 .lv2-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 670px;
}

body.landing-v2 .lv2-faq__item {
    border-top: 1px solid #dbdbdb;
}

body.landing-v2 .lv2-faq__item:last-child {
    border-bottom: 1px solid #dbdbdb;
}

body.landing-v2 .lv2-faq__button {
    align-items: center;
    background: transparent;
    border: 0;
    color: #464646;
    cursor: pointer;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 16px 0;
    text-align: left;
    width: 100%;
}

body.landing-v2 .lv2-faq__question {
    color: #464646;
    flex: 1 1 auto;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

body.landing-v2 .lv2-faq__icon {
    align-items: center;
    display: inline-flex;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

body.landing-v2 .lv2-faq__button[aria-expanded="true"] .lv2-faq__icon {
    transform: rotate(180deg);
}

body.landing-v2 .lv2-faq__answer {
    color: #464646;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 0 0 18px;
}

body.landing-v2 .lv2-faq__answer p {
    margin: 0;
}

@media (max-width: 1199.98px) {
    body.landing-v2 .gutenblock--oms-lv2-faq {
        padding: 80px 24px;
    }

    body.landing-v2 .lv2-faq-wrap {
        gap: 48px;
    }

    body.landing-v2 .lv2-faq__lead {
        width: 280px;
    }

    body.landing-v2 .lv2-faq__headline {
        font-size: 38px;
        max-width: 280px;
    }
}

@media (max-width: 767px) {
    body.landing-v2 .gutenblock--oms-lv2-faq {
        padding: 56px 20px;
    }

    body.landing-v2 .lv2-faq-wrap {
        flex-direction: column;
        gap: 28px;
    }

    body.landing-v2 .lv2-faq__lead {
        padding-top: 0;
        width: 100%;
    }

    body.landing-v2 .lv2-faq__headline {
        font-size: 34px;
        max-width: 100%;
    }

    body.landing-v2 .lv2-faq__list {
        width: 100%;
    }

    body.landing-v2 .lv2-faq__question {
        font-size: 18px;
    }
}

body.landing-v2 .gutenblock--oms-lv2-cta-panel {
    background: #f7f7f7;
    padding: 0 40px 180px;
}

body.landing-v2 .lv2-ctap {
    align-items: flex-start;
    display: flex;
    gap: 137px;
    margin: 0 auto;
    max-width: 1132px;
}

body.landing-v2 .lv2-ctap__image-wrap {
    border-radius: 10px;
    flex-shrink: 0;
    height: 391px;
    overflow: hidden;
    width: 555px;
}

body.landing-v2 .lv2-ctap__image {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

body.landing-v2 .lv2-ctap__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 492px;
    padding: 15px 0;
}

body.landing-v2 .lv2-ctap__headline {
    color: #1152cc;
    font-family: 'DM Sans', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    max-width: 441px;
}

body.landing-v2 .lv2-ctap__copy {
    color: #464646;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

body.landing-v2 .lv2-ctap__phone {
    color: #1152cc;
    text-decoration: none;
}

body.landing-v2 .lv2-ctap__actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

body.landing-v2 .lv2-ctap__verify {
    align-items: center;
    color: #1152cc;
    display: inline-flex;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    gap: 15px;
    line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.landing-v2 .lv2-ctap__verify:hover,
body.landing-v2 .lv2-ctap__verify:focus {
    color: #1152cc;
    opacity: 0.75;
}

body.landing-v2 .lv2-ctap__primary {
    align-items: center;
    align-self: flex-start;
    background: #1152cc;
    border-radius: 43px;
    color: #f9f9f9;
    display: inline-flex;
    gap: 20px;
    padding: 5px 5px 5px 20px;
    text-decoration: none;
}

body.landing-v2 .lv2-ctap__primary:hover,
body.landing-v2 .lv2-ctap__primary:focus {
    color: #f9f9f9;
    opacity: 0.9;
}

body.landing-v2 .lv2-ctap__primary-text {
    color: #f9f9f9;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

body.landing-v2 .lv2-ctap__primary-icon {
    align-items: center;
    display: inline-flex;
}

@media (max-width: 1199.98px) {
    body.landing-v2 .gutenblock--oms-lv2-cta-panel {
        padding: 0 24px 100px;
    }

    body.landing-v2 .lv2-ctap {
        gap: 48px;
    }

    body.landing-v2 .lv2-ctap__image-wrap {
        width: 46%;
    }

    body.landing-v2 .lv2-ctap__content {
        max-width: 46%;
    }

    body.landing-v2 .lv2-ctap__headline {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    body.landing-v2 .gutenblock--oms-lv2-cta-panel {
        padding: 0 20px 64px;
    }

    body.landing-v2 .lv2-ctap {
        flex-direction: column;
        gap: 28px;
    }

    body.landing-v2 .lv2-ctap__image-wrap {
        height: 280px;
        width: 100%;
    }

    body.landing-v2 .lv2-ctap__content {
        max-width: 100%;
    }

    body.landing-v2 .lv2-ctap__headline {
        font-size: 34px;
        max-width: 100%;
    }

    body.landing-v2 .lv2-ctap__primary-text {
        font-size: 16px;
    }
}

body.landing-v2.page-id-40639 .lv2-test-footer {
    background: #1152cc;
    margin-top: 0;
    padding: 40px 40px 100px;
}

body.landing-v2.page-id-40639 .lv2-test-footer__inner {
    margin: 0 auto;
    max-width: 1360px;
}

body.landing-v2.page-id-40639 .lv2-test-footer__top {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

body.landing-v2.page-id-40639 .lv2-test-footer__brand img {
    display: block;
    max-width: 321px;
    width: 100%;
}

body.landing-v2.page-id-40639 .lv2-test-footer__badges {
    align-items: center;
    display: flex;
    gap: 20px;
}

body.landing-v2.page-id-40639 .lv2-test-footer__badge {
    align-items: center;
    display: flex;
}

body.landing-v2.page-id-40639 .lv2-test-footer__badge--joint {
    gap: 8px;
}

body.landing-v2.page-id-40639 .lv2-test-footer__badge--joint img {
    display: block;
    height: 34px;
    width: 34px;
}

body.landing-v2.page-id-40639 .lv2-test-footer__badge--joint span {
    color: #f9f9f9;
    font-family: 'DM Mono', monospace;
    font-size: 7px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 72px;
}

body.landing-v2.page-id-40639 .lv2-test-footer__badge-img {
    display: block;
    height: 44px;
    object-fit: contain;
    width: auto;
}

body.landing-v2.page-id-40639 .lv2-test-footer__divider {
    border-top: 1px solid rgba(249, 249, 249, 0.35);
    margin: 42px 0 40px;
}

body.landing-v2.page-id-40639 .lv2-test-footer__links {
    display: flex;
    gap: 20px;
}

body.landing-v2.page-id-40639 .lv2-test-footer__col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc((100% - 40px) / 3);
}

body.landing-v2.page-id-40639 .lv2-test-footer__col h3 {
    color: #8ac5fa;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 7px;
}

body.landing-v2.page-id-40639 .lv2-test-footer__col a,
body.landing-v2.page-id-40639 .lv2-test-footer__col span {
    color: #f9f9f9;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    text-decoration: none;
}

body.landing-v2.page-id-40639 .lv2-test-footer__col a:hover,
body.landing-v2.page-id-40639 .lv2-test-footer__col a:focus {
    color: #f9f9f9;
    opacity: 0.8;
}

@media (max-width: 1199.98px) {
    body.landing-v2.page-id-40639 .lv2-test-footer {
        padding: 32px 24px 64px;
    }

    body.landing-v2.page-id-40639 .lv2-test-footer__top {
        align-items: flex-start;
        flex-direction: column;
    }

    body.landing-v2.page-id-40639 .lv2-test-footer__links {
        flex-wrap: wrap;
        row-gap: 32px;
    }

    body.landing-v2.page-id-40639 .lv2-test-footer__col {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 767px) {
    body.landing-v2.page-id-40639 .lv2-test-footer {
        padding: 28px 20px 48px;
    }

    body.landing-v2.page-id-40639 .lv2-test-footer__badges {
        flex-wrap: wrap;
        gap: 14px;
    }

    body.landing-v2.page-id-40639 .lv2-test-footer__col {
        width: 100%;
    }
}
