:root {
    --white: #fff;
    --off-white: #f6f7f4;
    --primary: #274c4f;
    --beetle-green: #4a7c7c;
    --lavender: #C097DA;
    --text-color: #333333;
    --black-color: #000;
    --border-color: #ccc;
    --hedading-color: #214B4B;
    --heading-font: "p22-mackinac-pro", serif;
    --pre-heading: 'Alcyone', sans-serif;
    --secondary-heading: 'Copernicus', serif;
    --body-font: "Inter", sans-serif;
}
body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--white);
}
body :is(a, button, input, select, textarea) {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
body *:last-child {
    margin-bottom: 0;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5 {
    font-family: var(--heading-font);
    color: var(--primary);
}
h1 {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 500;
}
h2 {
    font-size: 48px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--hedading-color)
}
h3 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
}
h5 {
    font-weight: 500;
    font-size: 24px;
    line-height: 2.5;
    color: var(--hedading-color);
}
h6 {
    font-family: var(--pre-heading);
    font-size: 21px;
    line-height: 30px;
    font-weight: 600;
    color: var(--beetle-green);
    margin-bottom: 16px;
}
p, p:last-child {
    margin-bottom: 0;
}
.primary-solid, .link-with-icon, .primary-transparent {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
    text-align: center;
    padding: 9px 39px;
    max-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    color: var(--white);
    background-color: var(--primary);
    border: 1px solid var(--primary);
}
a.primary-solid p {
    margin: 0;
}
.primary-solid:hover {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.link-with-icon {
    gap: 11px;
    color: var(--beetle-green);
    border-radius: initial;
    background-color: transparent;
    padding: 4px 0;
    border: none;
}
.link-with-icon i {
    font-size: 18px;
}
.link-with-icon:hover {
    color: var(--primary);
}
.primary-transparent {
    border-color: var(--primary);
    background-color: transparent;
    color: var(--primary);
}
.primary-transparent:hover {
    background-color: var(--primary);
    color: var(--white);
}
.large {
    font-size: 18px;
    line-height: 32px;
}
.off-white-bg {
    background-color: var(--off-white);
}
/* Header */
.site-header {
    position: sticky;
    z-index: 999;
    top: 0;
    left: 0;
    background: var(--white);
    transition: transform 0.3s ease;
}
.header-hide {
    transform: translateY(-101%);
}
.header-top {
    background-color: var(--white);
}
.header-top-inner {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 50px;
}
.header-top-text {
    font-size: 14px;
    line-height: 18px;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
}
.header-top-links {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 52px;
    flex-shrink: 0;
}
.header-top-link {
    font-size: 14px;
    line-height: 30px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-top-link i {
    font-size: 16px;
}
.header-top-link:hover {
    color: var(--primary);
}
.header-top-arrow {
    color: var(--text-color);
    font-size: 18px;
}
.main-header {
    position: relative;
    transition: all 0.3s;
    background-color: var(--off-white);
    border-bottom: 1px solid #ddd;
}
.drop-shadow {
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.08);
}
.header-hide .drop-shadow {
    box-shadow: none;
}
nav.navmenu {
    max-width: 100%;
    margin-left: 80px;
}
nav.navmenu > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
nav.navmenu > ul > li > a {
    color: var(--text-color);
    font-size: 16px;
    line-height: 30px;
    font-family: var(--body-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}
nav.navmenu > ul > li > a:hover {
    color: #2D7171;
}
.button-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.utility-bar {
    border-bottom: 1px solid #ddd;
    background: var(--off-white);
}
.utility-bar-inner {
    display: flex;
    padding: 3px 0 4px;
}
.utility-link {
    flex: 1;
}
.utility-link:last-child {
    padding-left: 26px;
    border-left: 1px solid #ddd;
}
.submenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 117%;
    left: 50%;
    width: 322px;
    padding-top: 24px;
    transform: translate(-50%, 0);
    transition: all 0.3s;
}
.submenu-inner {
    position: relative;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 0 50px 0 rgba(0,0,0, 0.2);
    padding: 32px 46px 60px;
}
.submenu-inner ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.submenu-inner ul li a p {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 2px;
}
.submenu-inner ul li a span {
    display: inline-block;
    font-size: 12px;
    line-height: 16px;
    color: #999;
}
.submenu-inner > ul > li > a:hover {
    color: #2D7171;
}

/* Inner Hero */
.inner-hero-section {
    background-color: var(--off-white);
}
.inner-hero-content-area {
    padding: 90px 0 80px;
}
.inner-hero-content-area h6 {
    margin-bottom: 24px;
}
.inner-hero-side-content {
    max-width: 411px;
}
.inner-hero-side-content p {
    line-height: 26px;
    margin-bottom: 32px;
}
.hero-side-content .button-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
}

/* Full Width BG Image Section  */
.inner-hero-image-area img {
    object-fit: cover;
    object-position: center;
    max-height: 608px;
    width: 100%;
    min-height: 230px;
    aspect-ratio: 396/194;
}

/* features Bar Section  */
section.features-bar-section {
    padding: 80px 0;
    background-color: var(--primary);
}
.feature-item {
    max-width: 300px;
}
.feature-icon {
    color: var(--lavender);
    font-size: 30px;
    line-height: 1;
    display: inline-block;
    margin-bottom: 24px;
}
.feature-item h5 {
    font-family: var(--body-font);
    color: #F6F7F4;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}
.feature-item p {
    line-height: 26px;
    color: #F6F7F4;
}


/* System Section */
.system-section {
    padding: 127px 0 48px;
    background-color: var(--white);
}
.system-intro {
    max-width: 630px;
    margin: 0px auto 64px;
}
.system-intro h2 {
    margin-bottom: 24px;
}
.system-intro p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
}
.benefits-accordion-area h3 {
    margin-bottom: 52px;
}
.benefit-item {
    border-bottom: 1px solid var(--border-color);
}
.benefit-item:first-child {
    border-top: 1px solid var(--border-color);
}
.benefit-item button {
    border: none;
    background: no-repeat;
    padding: 24px 22px 18px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    position: relative;
}
.benefit-item button.collapsed {
    padding: 24px 22px 23px 0;
}
.benefit-item h5 {
    line-height: 1;
    padding: 0;
    margin: 0;
    text-align: left;
}
.faq-item:has(button:not(.collapsed)) {
    padding-bottom: 31px;
}
.benefit-body {
    max-width: 100%;
    padding-right: 87px;
    padding-bottom: 34px;
}
.benefit-body p {
    line-height: 30px;
}
.accordion-icon {
    font-size: 18px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Video Section */
.video-section {
    background-color: var(--primary);
    padding: 148px 0 166px;
}
.video-content {
    max-width: 900px;
    margin: 0 auto;
}
.video-section .system-intro {
    max-width: 630px;
    margin: 0px auto 48px;
}
.video-section .system-intro h2 {
    color: var(--off-white);
}
.video-section .video-intro p {
    color: var(--off-white);
    margin-bottom: 0;
}
.video-placeholder {
    border-radius: 25px;
    overflow: hidden;
}
.video-placeholder video, .video-placeholder img{
    aspect-ratio: 900 / 550;
    object-fit: cover;
    object-position: center;
}


/* Hero Section style */
section.hero-section {
    background-color: var(--off-white);
    padding: 40px 0 106px;
}
.hero-content {
    max-width: 684px;
}
.hero-content h6 {
    margin-bottom: 25px;
}
.hero-content h1 {
    margin-bottom: 21px;
    font-size: 64px;
    line-height: 1.12;
}
.hero-content p.large {
    margin-bottom: 34px;
}
.hero-content .button-group {
    justify-content: flex-start;
    margin-bottom: 90px;
}
.hero-bottom-content {
    display: flex;
    align-items: end;
    gap: 18px;
    flex-wrap: wrap;
}
.hero-small-image {
    max-width: 281px;
    border-radius: 25px;
    overflow: hidden;
}
.hero-small-image img {
    aspect-ratio: 281 / 220;
}
.hero-bottom-btn {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
a.btn-employer {
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 5px 5px 5px 27px;
    background-color: #D8EEEA;
    border-radius: 50px;
}
a.btn-employer span {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    border-radius: 50%;
    color: var(--off-white);
}
a.btn-employer.pink {
    background-color: #D4C6DD;
}
.hero-right-image {
    position: relative;
}
.hero-image {
    text-align: center;
}
.play-icon-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.play-icon {
    height: 122px;
    width: 122px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lavender);
    border-radius: 50%;
}
.play-icon:hover{
    background-color: var(--primary);
}
a.play-icon img {
    margin-left: 14px;
    margin-top: 2px;
}
.play-icon-area p {
    background-color: var(--lavender);
    max-width: max-content;
    border-radius: 30px;
    color: var(--white);
    line-height: 30px;
    font-weight: 600;
    padding: 10px 60px;
}
.learn-more-modal .modal-dialog {
    max-width: 900px;
}
.learn-more-modal .modal-content {
    border-radius: 50px;
    border: none;
}
.learn-more-modal-content-area {
    display: flex;
    gap: 0;
}
.learn-more-modal-image {
    border-radius: 50px 0 0 50px;
    overflow: hidden;
    max-width: 310px;
}
.learn-more-modal-image img {
    aspect-ratio: 310 / 438;
    object-fit: cover;
    object-position: left;
    min-height: 100%;
}
.learn-more-modal-content {
    flex: 1;
    padding: 27px 51px 28px 56px;
}
button.modal-close-btn {
    border: none;
    background: no-repeat;
    padding: 0;
    margin: 0;
    position: relative;
    margin-left: auto;
    width: 100%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: end;
    max-width: 15px;
    min-width: 15px;
    height: 18px;
    margin-bottom: 24px;
    margin-right: 6px;
}
button.modal-close-btn::before, button.modal-close-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-50deg);
    height: 2px;
    width: 24px;
    background-color: var(--text-color);
    border-radius: 2px;
}
button.modal-close-btn::after {
    transform: translate(-50%, -50%) rotate(50deg);
}
.learn-more-modal-content h5 {
    font-size: 21px;
    line-height: 24px;
    margin-bottom: 18px;
    color: var(--text-color);
}
.learn-more-modal-content ul li {
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color);
}
ul.check-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
}
ul.check-list li{
    padding-left: 35px;
    position: relative;
}
ul.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--lavender);
    height: 25px;
    width: 25px;
    border-radius: 50%;
}
ul.check-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 7px;
    transform: rotate(-45deg);
    border-left: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    height: 7px;
    width: 13px;
}

/* Home page features section Style */
section.features-bar-section.home-page {
    padding: 120px 0 166px;
}
.features-bar-intro {
    display: flex;
    flex-direction: column;
    gap: 11px;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 926px;
    margin: 0 auto 57px;
}
.features-bar-intro * {
    margin: 0;
}
.features-bar-intro h2, .features-bar-intro p {
    color: var(--off-white);
}
.features-bar-intro h6 {
    color: var(--lavender);
}
.home-page .feature-item {
    max-width: 366px;
    text-align: center;
}
.home-page .feature-item .feature-icon {
    color: var(--off-white);
    margin-bottom: 18px;
}

/* Health to wealth section style */
.health-to-wealth-section {
    padding: 230px 0 83px;
}
.health-to-wealth-intro {
    max-width: 926px;
    margin: 0 auto;
    text-align: center;
}
.health-to-wealth-intro h2 {
    margin-bottom: 37px;
}
.health-to-wealth-intro p.large {
    line-height: 24px;
    max-width: 620px;
    margin: 0 auto 65px;
}
.health-to-wealth-media {
    border-radius: 25px;
    overflow: hidden;
}
.health-to-wealth-media img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* How It Works Section Style */
.how-it-works-section {
    padding: 80px 0;
}
.how-it-works-intro {
    max-width: 576px;
    margin: 0 auto 66px;
    text-align: center;
}
.how-it-works-intro h2 {
    margin-bottom: 17px;
}
.how-it-works-intro p.large {
    margin-bottom: 0;
    line-height: 24px;
}
.gutter-work {
    --bs-gutter-y: 30px;
    --bs-gutter-x: 28px;
}
.how-it-works-card {
    background-color: var(--off-white);
    border-radius: 20px;
    padding: 59px 43px 47px 49px;
    height: 100%;
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #2D7171;
    color: var(--off-white);
    font-family: var(--secondary-heading);
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 29px;
}
.step-tag {
    display: inline-block;
    background-color: #2D7171;
    color: var(--off-white);
    font-size: 12px;
    font-weight: 500;
    padding: 7px 10px;
    border-radius: 15px;
    margin-bottom: 21px;
}
.how-it-works-card h5 {
    font-size: 21px;
    line-height: 26px;
    margin-bottom: 22px;
    color: #17234F;
    font-family: var(--secondary-heading);
    font-weight: 600;
}
.how-it-works-card p {
    font-size: 14px;
    line-height: 18px;
    color: #17234F;
    margin-bottom: 0;
}

/* .compliance Section style */
.compliance-section {
    padding: 90px 0;
}
.compliance-content {
    max-width: 592px;
}
.compliance-content h2 {
    margin-bottom: 24px;
}
.compliance-content p {
    margin-bottom: 31px;
    color: #27444F;
}
.compliance-media {
    border-radius: 24px;
    overflow: hidden;
}
.compliance-media img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.compliance-content .primary-solid {
    background-color: var(--beetle-green);
    border-color: var(--beetle-green);
}
.compliance-content .primary-solid:hover {
    color: var(--beetle-green);
    background-color: transparent;
}
.compliance-content .primary-transparent {
    border-color: var(--beetle-green);
    color: var(--beetle-green);
}
.compliance-content .primary-transparent:hover {
    border-color: var(--beetle-green);
    background-color: var(--beetle-green);
    color: var(--white);
}

/* Trust Quote Section Style */
.trust-quote-section {
    padding: 80px 0;
    background-color: #d9efe9;
}
section.trust-quote-section h2 {
    max-width: 572px;
    margin: 0 auto 71px;
}
.trust-quote-image {
    max-width: 252px;
    border-radius: 10px;
    overflow: hidden;
}
.trust-quote-image img {
    width: 100%;
}
.trust-quote-content {
    margin-left: 87px;
    max-width: 697px;
}
.quote-icon {
    display: block;
    margin-bottom: 10px;
}
.quote-text {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 30px;
    line-height: 42px;
    color: #000;
    margin-bottom: 36px;
}
.quote-author {
    display: flex;
    flex-direction: column;
    line-height: 26px;
    color: var(--black-color);
    margin-bottom: 20px;
}
.quote-badges {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.badge-item-image {
    background-color: #FEFFFE;
    border-radius: 5px;
    padding: 0 22px 0 15px;
    max-height: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 18px;
}
.badge-item div {
    background-color: #FEFFFE;
    max-height: 50px;
    min-height: 50px;
    padding: 0 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.badge-item div img{
    max-width: 100%;
}
.badge-item span {
    max-width: 210px;
    font-size: 14px;
    color: var(--black-color);
}


/* FAQ Section Style */
section.faq-section {
    padding: 0 0 90px;
}
.faq-intro {
    background-color: var(--off-white);
    padding: 90px 0 48px;
}
.faq-intro h6 {
    margin-bottom: 15px;
}
.faq-intro h2 {
    margin-bottom: 0;
}
.faq-tabs-wrap {
    padding-top: 48px;
}
.faq-tabs-wrapper-inner {
    overflow: scroll;
    margin-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.faq-tabs-wrapper-inner::-webkit-scrollbar {
    display: none;
}
.faq-tabs {
    border-bottom: 1px solid var(--border-color);
    gap: 32px;
    flex-wrap: nowrap;
    min-width: 500px;
}
.faq-tabs-wrap .benefit-item:first-child { 
    border-top: none;
}
.faq-tabs li button {
    border: none;
    border-bottom: 3px solid transparent;
    background: no-repeat;
    padding: 0;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    color: #999;
}
.faq-tabs li button.active {
    color: var(--beetle-green);
    border-bottom-color: var(--beetle-green);
    font-weight: 600;
    background-color: transparent;
}


/* how it works app section style  */
.how-it-works-app-section {
    padding: 80px 0;
}
.how-it-works-app-content {
    max-width: 400px;
}
section.how-it-works-app-section h2 {
    max-width: 850px;
    margin: 0 auto 56px;
    text-align: center;
}
.how-it-works-app-content h3 {
    margin-bottom: 42px;
    font-weight: 500;
}
.app-step-item {
    margin-bottom: 54px;
}
.app-step-item h6 {
    margin: 0;
}
.app-step-item p {
    line-height: 26px;
    color: var(--text-color);
    margin-bottom: 0;
}
.how-it-works-app-media {
    text-align: center;
}
.how-it-works-app-media img {
    max-width: 100%;
    height: auto;
}


/* Comparison Section Style */
.comparison-section {
    padding: 80px 0;
}
.comparison-wrap {
    background-color: var(--off-white);
    border-radius: 20px;
    padding: 60px 70px 42px;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}
.comparison-table tr {
    display: flex;
    height: 100%;
}
.comparison-table tbody tr td {
    transition: all 0.3s ease;
    position: relative;
    z-index: 0;
}
.comparison-table tbody tr:hover td::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: -1;
    pointer-events: none;
}
.comparison-table .feature-col {
    width: 254px;
    vertical-align: top;
    position: sticky;
    left: 0;
    z-index: 2;
    height: auto;
    background-color: var(--off-white);
}
.comparison-table .feature-col > div {
    display: flex;
    min-height: 100%;
    align-items: end;
    padding-bottom: 48px;
}
.comparison-table th h5 {
    line-height: 26px;
    margin: 0;
}
.comparison-table tr th:not(:first-child) {
    padding: 38px 54px 48px;
}
.comparison-table .wellthcare-col {
    flex: 1;
    background-color: #D8EEEA;
}
.comparison-table .typical-col {
    flex: 1;
    background-color: #EEEEEE;
}
.comparison-table thead .wellthcare-col {
    border-radius: 15px 0 0 0;
}
.comparison-table thead .typical-col {
    border-radius: 0 15px 0 0;
}
.comparison-table tbody tr:last-child .wellthcare-col {
    border-radius: 0 0 0 15px;
}
.comparison-table tbody tr:last-child .typical-col {
    border-radius: 0 0 15px 0;
}
.comparison-table thead .wellthcare-col > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 13px;
}
.comparison-table thead .typical-col > div {
    display: flex;
    align-items: end;
    text-align: center;
    height: 100%;
}
.comparison-table tbody tr td:first-child {
    font-size: 13px;
    line-height: 18px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}
.comparison-table tbody tr td:not(:first-child) {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: var(--text-color);
    padding: 6px 58px 6px 72px;
    min-height: 53px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.status-icon {
    flex: 0 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    font-size: 10px;
}
.status-icon--yes {
    background-color: var(--lavender);
    color: var(--white);
}
.status-icon--no {
    background-color: var(--border-color);
    color: var(--white);
}




/* Shared Site Footer */
.footer-tagline-bar {
    background-color: var(--lavender);
    padding: 27px 0;
}
.footer-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: max-content;
    margin: 0 auto;
}
.footer-tagline-bar p {
    text-align: center;
    font-family: var(--pre-heading);
    color: var(--text-color);
    font-weight: 500;
    font-size: 21px;
    line-height: 30px;
    margin: 0;
}
.footer-tagline-bar span {
    color: var(--text-color);
    font-weight: 600;
}
.site-footer {
    background-color: var(--primary);
    color: var(--off-white);
}
.footer-main {
    padding: 92px 0 100px;
}

/* Footer CTA */
.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px 40px;
    flex-wrap: wrap;
    margin-bottom: 139px;
}
.footer-cta-text {
    max-width: 750px;
}
.footer-cta-text h2 {
    color: var(--off-white);
    margin-bottom: 22px;
}
.footer-cta-text p {
    color: var(--off-white);
    font-size: 18px;
    margin-bottom: 0;
}
.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}
.footer-cta-actions .primary-solid, .cta-align-actions .primary-solid {
    color: var(--white);
    border-color: var(--lavender);
    background-color: var(--lavender);
}
.footer-cta-actions .primary-solid:hover, .cta-align-actions .primary-solid:hover {
    background-color: transparent;
    color: #ADD0CA;
    border-color: #ADD0CA;
}
.footer-cta-actions .primary-transparent {
    color: #ADD0CA;
    border-color: #ADD0CA;
}
.footer-cta-actions .primary-transparent:hover {
    background-color: var(--lavender);
    color: var(--white);
    border-color: var(--lavender);
}

/* Footer Nav: brand + link columns */
.footer-nav {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 90px;
}
.footer-brand {
    flex-shrink: 0;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 67px;
}
.footer-logo img {
    max-width: 216px;
    filter: brightness(0) invert(1);
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 26px;
}
.footer-social a {
    font-size: 18px;
    color: var(--off-white);
    line-height: 1;
}
.footer-social a:hover {
    color: var(--lavender);
}
.footer-cols {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}
.footer-col {
    min-width: 150px;
}
.footer-col-title {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--off-white);
    margin-bottom: 24px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-links a {
    font-size: 14px;
    line-height: 20px;
    color: rgba(246, 247, 244, 0.8);
}
.footer-links a:hover {
    color: var(--lavender);
}

/* Disclaimer */
.footer-disclaimer {
    font-size: 12px;
    line-height: 20px;
    color: rgba(246, 247, 244, 0.7);
    margin-bottom: 56px;
}
.footer-disclaimer strong {
    color: var(--off-white);
    font-weight: 700;
}

/* Addresses (single line) */
.footer-addresses {
    display: flex;
    flex-wrap: wrap;
    gap: 48px 54px;
}
.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.footer-address i {
    font-size: 26px;
    flex-shrink: 0;
}
.footer-address div {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 13px;
    line-height: 30px;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    gap: 67px;
    flex-wrap: wrap;
}
.footer-bottom .footer-disclaimer{
    font-size: 14px;
    color: var(--white);
    margin: 0;
}
.footer-bottom a:hover {
    color: var(--lavender);
}
.footer-copyright {
    display: flex;
    align-items: center;
    gap: 42px 128px;
    flex-wrap: wrap;
}
.footer-copyright * {
    color: var(--white);
    font-size: 16px;
    line-height: 21px;
}


/* Content with Bullets Style */
.compliance-content h6 {
    margin-bottom: 10px;
}
.compliance-content ul li {
    font-size: 18px;
    color: var(--primary);
    padding-left: 40px;
}


/* Retirement Stats Section */
.gutter-x-36 {
    --bs-gutter-x: 36px;
}
.gutter-y-22 {
    --bs-gutter-y: 22px;
}
.retirement-stats-section {
    padding: 121px 0 139px;
    background-color: var(--off-white);
}
.retirement-stats-intro {
    max-width: 850px;
    margin-bottom: 54px;
}
.retirement-stats-intro h2 {
    margin-bottom: 16px;
}
.retirement-stats-intro p {
    line-height: 26px;
    margin-bottom: 0;
    max-width: 635px;
}
.stat-card {
    background-color: #D8EEEA;
    border-radius: 20px;
    padding: 46px 46px 55px;
    height: 100%;
}
.stat-tag {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    color: var(--beetle-green);
    margin-bottom: 20px;
    font-family: var(--pre-heading);
}
.stat-value {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 14px;
}
.stat-card p {
    color: var(--primary);
    margin-bottom: 0;
}




/* Shared CTA Align Band (Are you ready...) */
.cta-align-section {
    background-color: var(--primary);
    padding: 92px 0 102px;
}
.cta-align-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-align-text {
    max-width: 800px;
}
.cta-align-text h2 {
    color: var(--off-white);
    margin-bottom: 16px;
}
.cta-align-text p {
    color: var(--off-white);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
}
.cta-align-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}
.cta-align-actions .link-with-icon {
    color: var(--off-white);
}
.cta-align-actions .link-with-icon:hover {
    color: var(--lavender);
}


/* Benefits Grid Section */
.gutter-y-43 {
    --bs-gutter-y: 43px;
}
.benefits-grid-section {
    padding: 100px 0;
}
.benefits-grid-intro {
    max-width: 900px;
    margin: 0 auto 86px;
    text-align: center;
}
.benefits-grid-intro h6 {
    margin-bottom: 25px;
}
.benefits-grid-intro h2 {
    margin-bottom: 20px;
}
.benefits-grid-intro p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary);
}
.benefit-card {
    height: 100%;
}
.benefit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--lavender);
    color: var(--off-white);
    font-family: var(--secondary-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 38px;
}
.benefit-card h5 {
    font-family: var(--body-font);
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}
.benefit-card p {
    line-height: 26px;
    color: var(--beetle-green);
    margin-bottom: 14px;
}
.benefit-card .link-with-icon {
    font-size: 14px;
    padding: 0;
    line-height: 26px;
    color: var(--lavender);
    font-family: var(--body-font);
    font-weight: 700;
}


/* Urgent Care Hero Section */
.centered-hero-section {
    background-color: var(--off-white);
    padding: 91px 0 94px;
}
.centered-hero-content {
    max-width: 850px;
    margin: 0 auto 56px;
    text-align: center;
}
.centered-hero-content h6 {
    margin-bottom: 15px;
}
.centered-hero-content h1 {
    margin-bottom: 20px;
}
.centered-hero-content p.large {
    max-width: 700px;
    margin: 0 auto 64px;
}
.centered-hero-content .button-group {
    justify-content: center;
}



/* App Love Section */
.app-love-section {
    padding: 124px 0 145px;
    background-color: var(--off-white);
}
.app-love-intro {
    max-width: 926px;
    margin: 0 auto 68px;
}
.app-love-intro h2 {
    margin-bottom: 13px;
}
.app-love-intro p {
    font-size: 18px;
    line-height: 30px;
    max-width: 650px;
    margin: 0 auto;
}
.app-feature-list {
    max-width: 460px;
}
.app-feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    border-top: 1px solid var(--border-color);
    padding: 22px 0;
    cursor: pointer;
}
.app-feature-item:last-child {
    border-bottom: 1px solid var(--border-color);
}
.app-feature-item h5 {
    font-size: 24px;
    line-height: 1.1;
    margin: 0;
    color: var(--primary);
    transition: color 0.3s ease;
}
.app-feature-item i {
    font-size: 18px;
    color: var(--lavender);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.app-feature-item:hover h5 {
    color: var(--beetle-green);
}
.app-feature-item.active h5 {
    color: var(--lavender);
}
.app-feature-item.active i, .app-feature-item:hover i {
    opacity: 1;
    transform: translateX(0);
}
.app-phone {
    position: relative;
    text-align: center;
}
.app-phone img {
    max-width: 294px;
    margin: 0 auto;
}
.play-button-area {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}
.app-play-btn {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    background-color: var(--lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.app-play-btn:hover {
    background-color: var(--primary);
}
.app-play-btn img {
    max-width: 22px;
    margin-left: 24px;
}
.app-play-label {
    background-color: var(--lavender);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 4px 67px;
    border-radius: 30px;
    white-space: nowrap;
    line-height: 30px;
}
.app-feature-desc {
    max-width: 413px;
}
.app-feature-desc h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 0;
}
.app-feature-desc p {
    line-height: 30px;
    color: var(--text-color);
    margin-bottom: 0;
}


/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--primary);
    overflow: hidden;
}
.testimonials-intro {
    max-width: 674px;
    margin: 0 auto 72px;
}
.testimonials-intro h2 {
    color: var(--off-white);
    margin-bottom: 24px;
    line-height: 1;
}
.testimonials-intro p {
    line-height: 1;
    color: var(--off-white);
    margin-bottom: 0;
}
.testimonials-slider.owl-carousel .owl-stage-outer {
    overflow: visible;
}
.testimonials-slider.owl-carousel .item {
    width: 319px;
}
.testimonials-slider.owl-carousel .testimonial-card {
    width: 100%;
    min-height: 358px;
    background-color: var(--off-white);
    border-radius: 20px;
    padding: 26px 30px 31px 32px;
    display: flex;
    flex-direction: column;
}
.testimonial-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    margin-bottom: 33px;
}
.testimonial-quote-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--lavender);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.owl-carousel .owl-item span.testimonial-quote-icon img {
    width: auto;
}
.is-employer .testimonial-quote-icon {
    background-color: var(--primary);
}
.testimonial-tag {
    font-size: 12px;
    font-weight: 500;
    line-height: 21px;
    padding: 3px 14px;
    border-radius: 25px;
    color: var(--white);
}
.tag-participant {
    background-color: var(--lavender);
}
.tag-employer {
    background-color: var(--primary);
}
.testimonial-text {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: var(--primary);
    margin-bottom: 30px;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
    line-height: 18px;
    font-weight: 600;
}
.testimonial-author span {
    font-size: 12px;
    color: var(--primary);
}
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 31px;
    margin-top: 44px;
}
.testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--white);
    color: var(--primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-arrow:hover {
    background-color: var(--lavender);
    color: var(--white);
}


/* Primary Care Benefits Section */
.primary-care-benefits-section {
    padding: 115px 0 138px;
    background-color: var(--white);
}
.primary-care-intro-row {
    --bs-gutter-x: 72px;
    margin-bottom: 58px;
}
.primary-care-intro {
    max-width: 610px;
}
.primary-care-intro h6 {
    margin-bottom: 18px;
}
.primary-care-intro h2 {
    margin-bottom: 25px;
}
.primary-care-intro p {
    max-width: 600px;
    line-height: 1.55;
}
.primary-care-image {
    margin-left: auto;
    max-width: 600px;
    border-radius: 24px;
    overflow: hidden;
}
.primary-care-image img {
    display: block;
    width: 100%;
}
.primary-care-benefits-grid {
    --bs-gutter-x: 66px;
    --bs-gutter-y: 55px;
}
.primary-care-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
}
.primary-care-benefit-check {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    flex: 0 0 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    color: var(--white);
    background-color: #438b8b;
    font-size: 13px;
}
.primary-care-benefit h3 {
    font-family: var(--body-font);
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 10px;
}
.primary-care-benefit sup {
    font-size: 8px;
    top: -0.8em;
}
.primary-care-benefit p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-color);
}


/* Member Quote Section */
.member-quote-section {
    padding: 88px 0 82px;
    background-color: var(--off-white);
}
.member-quote {
    display: flex;
    align-items: flex-start;
    gap: 54px;
    margin: 0;
}
.member-quote-mark {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
}
.member-quote-body {
    flex: 1;
    padding-top: 2px;
}
.member-quote blockquote {
    font-family: var(--secondary-heading);
    font-style: italic;
    font-size: 37px;
    line-height: 1.27;
    font-weight: 500;
    color: var(--primary);
    width: 100%;
    max-width: none;
    white-space: normal;
    text-wrap: pretty;
    margin: 0 0 30px;
}
.member-quote figcaption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--beetle-green);
    font-size: 15px;
}
.member-quote figcaption strong {
    font-weight: 700;
}


/* Primary Care How It Works Section */
.primary-care-how-section {
    padding: 135px 0 104px;
    background-color: var(--white);
}
.primary-care-how-row {
    --bs-gutter-x: 108px;
}
.primary-care-how-media {
    text-align: center;
}
.primary-care-how-media img {
    display: block;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}
.primary-care-how-content {
    max-width: 590px;
}
.primary-care-how-content h2 {
    color: var(--primary);
    margin-bottom: 17px;
}
.primary-care-how-lead {
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 33px;
    max-width: 540px;
}
.primary-care-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: primary-care-step;
}
.primary-care-steps li {
    counter-increment: primary-care-step;
    margin-bottom: 32px;
}
.primary-care-steps h3 {
    font-family: var(--body-font);
    color: var(--beetle-green);
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 6px;
}
.primary-care-steps h3::before {
    content: counter(primary-care-step) ". ";
}
.primary-care-steps p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-color);
    max-width: 540px;
}
.primary-care-how-content .primary-solid {
    width: 225px;
    max-width: 100%;
    margin-top: 9px;
}


/* Health-to-Wealth System Flow Section */
.health-system-flow-section {
    padding: 100px 0 92px;
    background-color: var(--white);
}
.health-system-flow-intro {
    max-width: 1100px;
    margin: 0 auto 72px;
    text-align: center;
}
.health-system-flow-intro h2 {
    margin-bottom: 31px;
    text-wrap: balance;
}
.health-system-flow-intro h2 sup {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 700;
    top: -1.5em;
}
.health-system-flow-intro p {
    max-width: 690px;
    margin: 0 auto;
    line-height: 1.45;
}
.health-system-flow-panel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 82px 124px 84px;
    border-radius: 24px;
    background-color: #d8eeea;
}
.health-system-flow-row {
    --bs-gutter-x: 74px;
    --bs-gutter-y: 54px;
    justify-content: center;
}
.health-system-step {
    max-width: 310px;
    margin: 0 auto;
}
.health-system-step-image-placeholder {
    width: 132px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 10px;
    background-color: #c4dbd7;
    color: var(--primary);
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 700;
}
.health-system-step h3 {
    font-family: var(--body-font);
    color: var(--primary);
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 21px;
}
.health-system-step p {
    color: var(--primary);
    font-size: 16px;
    line-height: 1.55;
}


/* Full WellthCare System Comparison Section */
.full-system-comparison-section {
    padding: 92px 0 110px;
    background-color: var(--white);
}
.full-system-comparison-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 84px 118px 92px;
    border-radius: 24px;
    background-color: var(--off-white);
}
.full-system-comparison-intro {
    max-width: 980px;
    margin: 0 auto 58px;
    text-align: center;
}
.full-system-comparison-intro h6 {
    margin-bottom: 13px;
}
.full-system-comparison-intro h2 {
    margin-bottom: 12px;
    text-wrap: balance;
}
.full-system-comparison-intro p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.45;
}
.full-system-comparison-scroller {
    scrollbar-color: var(--beetle-green) #dfe4e2;
    scrollbar-width: thin;
}
.full-system-comparison-table .feature-col {
    width: 31%;
    flex: 0 0 31%;
}
.full-system-comparison-table .wellthcare-col {
    width: 25%;
    flex: 0 0 25%;
}
.full-system-comparison-table .typical-col {
    width: 22%;
    flex: 0 0 22%;
}
.full-system-comparison-table tr th:not(:first-child) {
    min-height: 138px;
    padding: 34px 16px 35px;
}
.full-system-comparison-table thead .wellthcare-col > div,
.full-system-comparison-table thead .typical-col > div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.full-system-comparison-table thead .wellthcare-col > div {
    gap: 0;
}
.full-system-comparison-table .full-system-comparison-logo {
    width: 156px;
    max-width: 88%;
}
.full-system-comparison-table th h5 {
    font-family: var(--heading-font);
    color: #234B4B;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;
}
.full-system-comparison-table tbody tr td:not(:first-child) {
    min-height: 50px;
    padding: 10px 16px;
    justify-content: center;
}
.full-system-comparison-table tbody tr td:first-child {
    padding-right: 22px;
}
.full-system-comparison-table .feature-label {
    min-width: 0;
}
.feature-info {
    position: relative;
    flex: 0 0 auto;
    margin-left: 7px;
}
.feature-info-trigger {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #234B4B;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
}
.feature-info-trigger:hover,
.feature-info-trigger:focus-visible {
    color: var(--beetle-green);
}
.feature-info-trigger:focus-visible {
    outline: 2px solid var(--beetle-green);
    outline-offset: 2px;
    border-radius: 3px;
}
.feature-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 9px);
    z-index: 20;
    width: 150px;
    padding: 10px;
    border-radius: 6px;
    background-color: #234B4B;
    color: var(--white);
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2rem;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 5px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.feature-tooltip::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #234B4B;
}
.feature-info.is-active .feature-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.full-system-comparison-table td.feature-col.has-active-tooltip {
    z-index: 10;
}
@media (hover: hover) and (pointer: fine) {
    .feature-info:hover .feature-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }
    .full-system-comparison-table td.feature-col:hover,
    .full-system-comparison-table td.feature-col:focus-within {
        z-index: 10;
    }
}
.full-system-comparison-table .status-icon {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    font-size: 11px;
}
.full-system-comparison-table thead .typical-col:nth-child(3) {
    border-radius: 0;
}
.full-system-comparison-table tbody tr:last-child .typical-col:nth-child(3) {
    border-radius: 0;
}
