 :root {
            --promo: #F28F26;
            --green: #00B68B;
            --text: #111;
            --muted: #6E6E6E;
            --line: #E7E7E7;
            --pill: #ECECEC;
            --card: #fff;
            --shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 10px 30px rgba(0, 0, 0, 0.05);
            --warm: #f4f2ef;
            --stage: #efedea;
            --orange: #f08a2b;
            --section-gap: 80px;

            /* Typography tokens (match Figma) */
            --ff-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
            --ff-serif: "Merriweather", Georgia, "Times New Roman", serif;

            --fw-regular: 400;
            --fw-medium: 500;
            --fw-semibold: 600;
            --fw-bold: 700;

            --ls-tight: -0.8px;
            --ls-tight-2: -0.6px;
            --ls-tight-3: -0.4px;
            --ls-normal: -0.2px;

            /* Desktop type scale */
            --fs-hero: 50px;
            --lh-hero: 1.05;

            --fs-h2-xl: 45px;
            --lh-h2-xl: 1.05;

            --fs-h2-lg: 45px;
            --lh-h2-lg: 1.03;

            --fs-h2-md: 40px;
            --lh-h2-md: 1.12;

            --fs-body: 16px;
            --lh-body: 1.55;

            --fs-body-lg: 18px;
            --lh-body-lg: 1.45;

            --fs-body-sm: 14px;
            --lh-body-sm: 1.45;

            --fs-caption: 14px;
            --lh-caption: 1.5;

            --fs-micro: 11px;
            --lh-micro: 1.4;

            --fs-pill: 12px;
            --fs-nav: 14px;
            --fs-btn: 16px;
        }

        /* ===== Top Promo Bar ===== */

        .nav-link:focus-visible {
            outline: 0;
            box-shadow: none !important;
        }
        .promo {
            height: 40px;
            background: var(--promo);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            letter-spacing: .2px;
        }

        /* ===== Header ===== */
        header {
            height: 77px;
            border-bottom: 1px solid var(--line);
            display: flex;
            align-items: center;
            background: #fff;
        }

        .container {
            width: min(1170px, calc(100% - 80px));
            /* width: 1170px; */
            margin: 0 auto;
        }
        .site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  width: 100%;
  z-index: 9;
}
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            height: 100%;
        }

        .brand {
            font-family: var(--ff-serif);
            font-size: 40px;
            font-weight: var(--fw-medium);
            line-height: normal;
            letter-spacing: -0.2px;
            color: #1b1b1b;
            display: flex;
            align-items: center;
        }
        a.phone-pill img {
            width: 18px;
        }
        a.phone-pill span {
            font-size: 18px;
            font-weight: 600;
            position: relative;
            top: -1px;
        }
        .logo {
            display: block;
            height: 37px;
            width: auto;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 25px;
            font-size: var(--fs-nav);
            color: #222;
        }

        .nav a {
            color: #222;
            text-decoration: none;
        }

        .nav a:hover {
            text-decoration: underline;
        }

        .nav .cta {
            background: var(--green);
            color: #fff;
            border: none;
            border-radius: 999px;
            height: 37px;
            padding: 0 24px;
            font-weight: var(--fw-regular);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: var(--fs-nav);
            max-height: 37px;
        }

        /* ===== Hero + Plans ===== */
        .hero {
            position: relative;
            padding: 60px 0 var(--section-gap);
            overflow: hidden;
            background:
                radial-gradient(700px 420px at 15% 38%, rgba(164, 237, 210, .55) 0%, rgba(164, 237, 210, 0) 55%),
                radial-gradient(800px 480px at 58% 35%, rgba(189, 215, 255, .55) 0%, rgba(189, 215, 255, 0) 58%),
                radial-gradient(520px 360px at 88% 34%, rgba(235, 240, 255, .55) 0%, rgba(235, 240, 255, 0) 60%),
                linear-gradient(#ffffff, #ffffff);
        }

        .hero h1 {
            margin: 0;
            color: #111;
            text-align: center;
            font-family: var(--ff-serif);
            font-size: var(--fs-hero);
            font-weight: 400;
            line-height: normal;
            letter-spacing: var(--ls-tight);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        }
        .hero h1 span {
            font-weight: 600;
            color: var(--green);
        }

        .hero .sub {
            margin: 14px 0 22px;
            text-align: center;
            font-size: 20px;
            line-height: 28px;
            color: #111;
        }

        .checks {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 52px;
            margin: 0 auto 26px;
            padding: 0;
            list-style: none;
            max-width: 980px;
        }

        .check {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
            color: #111;
            font-size: 13px;
            font-weight: 500;
            line-height: normal;
        }

        .check svg {
            width: 22px;
            height: 22px;
            flex: 0 0 22px;
        }

        .cards {
            display: flex;
            justify-content: center;
            gap: 26px;
            margin: 18px auto 0;
            padding-bottom: 18px;
        }

        .plan {
           width: 540px;
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 28px 28px 28px;
    display: flex;
    gap: 22px;
    align-items: stretch;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
        }

        .articleInnerWrap {
    display: flex;
    width: 100%;
    position: relative;
}

        .plan-left {
            flex: 1 1 auto;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .plan-title {
            font-family: var(--ff-serif);
            font-size: 30px;
            font-weight: var(--fw-bold);
            letter-spacing: -0.4px;
            margin: 0 0 10px;
            color: #111;
        }

        .plus {
            font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
            font-weight: 700;
            font-size: 30px;
            margin-left: 6px;
            position: relative;
            top: -1px;
        }

        .plan.tirz .plus {
            color: var(--green);
        }

        .plan.sema .plus {
            color: var(--orange);
        }

        .desc {
            margin: 0 0 0px;
            color: #111;
            font-size: 14px;
            line-height: normal;
        }

        .desc b {
            font-weight: 700;
        }

        .price-row {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin: 2px 0 14px;
            flex-wrap: wrap;
            margin-bottom: 0 !important;
            padding-bottom: 0px !important;
            
        }

        .price {
            font-family: var(--ff-serif);
            font-size: 40px;
            font-weight: var(--fw-bold);
            letter-spacing: -0.4px;
            color: #1c1c1c;
            margin-bottom: 0 !important;
            padding-bottom: 0px !important;
            font-weight: 600;
            position: relative;
            padding-left: 14px;
        }

        span.topupPrice {
            position: absolute;
            font-size: 16px;
            top: 8px;
            right: -22px;
            color: #00b68b;
        }
        span.dollerPriceAbsolute {
            position: absolute;
            font-size: 16px;
            top: 10px;
            left: 0px;
            color: #1c1c1c;
        }
        .perday {
            color: #111;
            font-size: 13px;
            font-style: italic;
            white-space: nowrap;
        }

        .transparent {
            margin: 6px 0 10px;
            font-size: 12px;
            color: #111;
            font-weight: 600;
        }

        .pills {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
            margin: 0 0 0px;
            padding: 0;
            list-style: none;
        }

        .pill {
            /* background: #00b68b1f; */
            background: var(--pill);
            color: #111;
            font-size: 12px;
            padding: 6px 10px;
            border-radius: 999px;
            white-space: nowrap;
            border: 1px solid #DCDCDC;
        }

        .pill.active {
            background: #DCDCDC;
            font-weight: 600;
        }

        .big-btn {
            height: 54px;
            border: none;
            border-radius: 999px;
            background: var(--green);
            color: #fff;
            font-size: var(--fs-btn);
            font-weight: var(--fw-bold);
            cursor: pointer;

            /* full-width bottom row within the card */
            position: absolute;
            left: 30px;
            right: 30px;
            bottom: 24px;
            width: auto;
        }

        .big-btn:active {
            transform: translateY(1px);
        }

        .plan-right {
            width: 190px;
            height: auto;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            padding-top: 0px;
        }

        .plan-right img {
            width: 120px;
            height: auto;
            display: block;
            /* filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.16)); */
        }

        .customHomeArticle .plan-right img {
            width: 100%;
            max-height: 300px;
            object-fit: contain;
            /* height: auto;
            display: block;
            filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.16)); */
        }

        .customHomeArticle .plan-left {
            max-width: max-content;
        }

        .img-slot {
            width: 170px;
            height: 230px;
            border-radius: 10px;
            border: 1px dashed #CFCFCF;
            background:
                linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.00)),
                repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 10px, rgba(0, 0, 0, 0.00) 10px, rgba(0, 0, 0, 0.00) 20px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            user-select: none;
        }

        .disclaimer {
            padding: 18px 0 12px;
            color: #8A8A8A;
            font-size: 14px;
            line-height: normal;
            text-align: center;
            font-style: italic;
            max-width: 980px;
            margin: 0 auto;
        }



         .mobile-review-card {
            display: none;
        }

        .mobile-benefits {
            display: none;
        }

        /* Desktop Benefits Section */
        .desktop-benefits-wrapper {
            position: relative;
            border-top: 1px solid rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .desktop-benefits-wrapper::after {
            content: '';
            position: absolute;
            width: 225px;
            height: 223px;
            right: -50px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 183, 137, 0.4);
            filter: blur(171px);
            pointer-events: none;
        }

        .desktop-benefits {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            padding: 40px 127px;
            gap: 15px;
            max-width: 1500px;
            margin: 0 auto;
            background: #fff;
            position: relative;
        }

        .desktop-benefit {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 0;
            gap: 20px;
            width: 275px;
            flex-shrink: 0;
        }

        .desktop-benefit-icon {
            width: 45px;
            height: 45px;
        }

        .desktop-benefit-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .desktop-benefit-content h4 {
            font-family: var(--ff-serif);
            font-weight: 900;
            font-size: 18px;
            line-height: 23px;
            color: #000;
            margin: 0;
        }

        .desktop-benefit-content p {
            font-family: var(--ff-sans);
            font-weight: 400;
            font-size: 16px;
            line-height: 140%;
            color: #000;
            margin: 0;
        }

        .desktop-benefit-divider {
            width: 1px;
            height: 170px;
            background: rgba(0, 0, 0, 0.2);
            flex-shrink: 0;
            align-self: center;
        }

        .gotoProductsPage {
            max-height: 50px !important;
        }
        /* ===== Value Props ===== */
        .value-props {
            margin: 42px auto 0;
            width: min(1120px, 100%);
        }

        .vp-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            align-items: start;
        }

        .vp {
            position: relative;
            padding: 6px 34px 0 34px;
        }

        .vp:first-child {
            padding-left: 0;
        }

        .vp:last-child {
            padding-right: 0;
        }

        .vp.sep::before {
            content: "";
            position: absolute;
            left: 0;
            top: 16px;
            height: 92px;
            border-left: 1px solid #D8D8D8;
            opacity: .9;
        }

        .vp-icon {
            width: 40px;
            height: 40px;
            margin: 0 0 12px;
            display: block;
        }

        .vp-title {
            margin: 0 0 12px;
            font-family: var(--ff-serif);
            font-weight: 700;
            font-size: 18px;
            letter-spacing: -0.2px;
            color: #111;
        }

        .vp-text {
            margin: 0;
            font-size: 16px;
            line-height: normal;
            color: #1d1d1d;
            max-width: 240px;
        }

        /* ===== Results Carousel ===== */
        .results {
            padding: var(--section-gap) 0;
            background: var(--warm);
        }

        .results .container {
            width: min(1120px, calc(100% - 80px));
        }

        .results h2 {
            margin: 0 auto;
            max-width: 820px;
            text-align: center;
            font-size: 42px;
            font-weight: var(--fw-regular);
            letter-spacing: -0.35px;
            line-height: normal;
            color: #101010;
        }

        .results h2 .em {
            font-weight: var(--fw-bold);
        }

        .results .sub {
            margin: 12px auto 0;
            max-width: 620px;
            text-align: center;
            font-size: 16px;
            line-height: normal;
            color: #2a2a2a;
        }

        .stage {
            position: relative;
            margin: 40px auto 0;
            width: 100%;
            padding: 0;
            background: transparent;
            border-radius: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            user-select: none;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
            transition: transform .08s ease, opacity .2s ease;
        }

        .arrow:active {
            transform: translateY(calc(-50% + 1px));
        }

        .arrow svg {
            width: 18px;
            height: 18px;
        }

        .arrow.left {
            left: -8px;
            background: #fff;
            border: 1px solid var(--green);
            color: var(--green);
        }

        .arrow.right {
            right: -8px;
            background: var(--green);
            border: 1px solid var(--green);
            color: #fff;
        }

        .viewport {
            overflow: hidden;
            width: 1008px;
            max-width: 100%;
            margin: 0 auto;
        }

        .track {
            display: flex;
            gap: 24px;
            transition: transform .45s cubic-bezier(.2, .8, .2, 1);
            will-change: transform;
        }

        .r-card {
            flex: 0 0 auto;
            width: 320px;
            background: #fff;
            border-radius: 12px;
            padding: 18px 18px 22px;
            min-height: 350px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02), 0 10px 22px rgba(0, 0, 0, 0.08);
        }

        .r-photo-wrap {
            background: transparent;
            border-radius: 0;
            padding: 0;
        }

        .r-photos {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .r-photo {
            position: relative;
            height: 176px;
            border-radius: 12px;
            background: #f1f1f1;
            border: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0, 0, 0, 0.55);
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            overflow: hidden;
        }

        .r-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            display: block;
        }

        .badge {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: var(--orange);
            color: #fff;
            font-size: 10px;
            padding: 4px 10px;
            border-radius: 999px;
            letter-spacing: 0.2px;
            line-height: normal;
            font-weight: 600;
            text-transform: uppercase;
            white-space: nowrap;
            z-index: 1;
        }

        .r-quote {
            margin: 16px auto 0;
            max-width: 280px;
            text-align: center;
            font-size: 14px;
            line-height: normal;
            color: #1f1f1f;
        }

        .r-name {
            margin: 16px 0 0;
            text-align: center;
            font-style: italic;
            font-weight: 500;
            color: #111;
            font-size: 13px;
        }

        /* ===== Path Section ===== */
        .path {
            padding: var(--section-gap) 0;
            background:
                radial-gradient(760px 420px at 12% 40%, rgba(164, 237, 210, .55) 0%, rgba(164, 237, 210, 0) 56%),
                radial-gradient(820px 500px at 68% 35%, rgba(189, 215, 255, .50) 0%, rgba(189, 215, 255, 0) 58%),
                linear-gradient(#ffffff, #ffffff);
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        }

        .path-grid {
            display: grid;
            grid-template-columns: 365px 1fr;
            gap: 56px;
            align-items: start;
        }

        .path-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .path h2 {
            margin: 0;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: 400;
            letter-spacing: -0.35px;
            line-height: normal;
            color: #101010;
        }

        .path h2 .em {
            font-weight: 700;
        }

        .path .lead {
            margin: 14px 0 18px;
            font-size: 16px;
            line-height: normal;
            color: #1f1f1f;
            max-width: 365px;
        }

        .path-cta {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .consult-btn {
            height: 56px;
            border: none;
            border-radius: 999px;
            background: var(--green);
            color: #fff;
            font-size: 18px;
            font-weight: var(--fw-semibold);
            cursor: pointer;
            padding: 0 34px;
            min-width: 340px;
        }

        .rating {
            margin-top: 16px;
            text-align: center;
            max-width: 380px;
        }

        .stars {
            display: inline-flex;
            gap: 2px;
            font-size: 14px;
            line-height: normal;
            color: var(--orange);
            letter-spacing: 0;
            margin-bottom: 6px;
        }

        .rating p {
            margin: 0;
            font-size: 14px;
            color: #2b2b2b;
            line-height: normal;
        }

        .rating b {
            font-weight: 700;
            color: #111;
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .startingAtHd {
            font-size: 16px;
        }

        .step {
            display: grid;
            grid-template-columns: 86px 1fr 58px;
            align-items: center;
            gap: 22px;
            background: #f6f6f6;
            border: 1px solid rgba(0, 0, 0, 0.10);
            border-radius: 12px;
            padding: 18px;
            box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
        }

        .step-img {
            width: 86px;
            height: auto;
            border-radius: 12px;
            /* border: 1px dashed rgba(0, 0, 0, 0.18); */
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.00)), repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05) 0px, rgba(0, 0, 0, 0.05) 10px, rgba(0, 0, 0, 0.00) 10px, rgba(0, 0, 0, 0.00) 20px);
            display: flex;
            align-items: center;
            justify-content: center;
            /* color: rgba(0, 0, 0, 0.55); */
            font-size: 11px;
            text-transform: uppercase;
            /* letter-spacing: 1px; */
            border-radius: 4px;
            overflow: hidden;
        }

        .step-title {
            margin: 0 0 6px;
            font-size: 18px;
            font-weight: 700;
            color: #111;
                text-align: left;
        }

        .step-desc {
            margin: 0;
            font-size: 16px;
            line-height: normal;
            color: #2b2b2b;
            max-width: 520px;
            text-align: left;
            margin-top: 8px;
        }

        .step-num {
            width: 46px;
            height: 86px;
            border-radius: 10px;
            background: var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 26px;
        }

        /* ===== Transform Section ===== */
        .transform {
            padding: var(--section-gap) 0;
            /* background: #fff; */
            background: #eaf0f8;
        }

        .transform h2 {
            margin: 0;
            text-align: center;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: 500;
            letter-spacing: -0.35px;
            line-height: normal;
            color: #101010;
            max-width: 800px;
            margin: 0 auto 8px;
        }

        .transform h2 .em {
            font-weight: 700;
        }

        .transform .sub {
            margin: 10px 0 0;
            text-align: center;
            font-size: 18px;
            color: #4a4a4a;
        }

        .mosaic {
            margin: 34px auto 0;
            width: min(920px, 100%);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .tile {
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 1.4 / 1;
        }

        .tile.card {
            /* background: #f4f2ef; */
            background: #e0e7f1;
            padding: 30px 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
        }

        .tile.card:first-child {
            /* background: linear-gradient(160deg, rgba(200, 235, 220, 0.5) 0%, rgba(230, 240, 235, 0.3) 40%, #f4f2ef 100%); */
            background: #e0e7f1;
        }

        .tile.card h3 {
            margin: 0 0 10px;
            font-family: var(--ff-serif);
            font-size: 30px;
            font-weight: 500;
            letter-spacing: -0.15px;
            color: #111;
        }

        .tile.card p {
            margin: 0 0 14px;
            font-size: 20px;
            line-height: normal;
            color: #4a4a4a;
            max-width: 320px;
        }

        .pill-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 28px;
            padding: 0 14px;
            border-radius: 999px;
            border: 1px solid rgba(0, 0, 0, 0.35);
            background: transparent;
            color: #111;
            font-size: 18px;
            line-height: normal;
            cursor: default;
            user-select: none;
        }

        .tile.photo {
            position: relative;
        }

        .tile.photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
        }

        /* ===== Solutions Section ===== */
        .solutions {
            padding: var(--section-gap) 0;
            background: #fff;
            overflow: hidden;
                background: radial-gradient(700px 420px at 18% 56%, rgba(164, 237, 210, .55) 0%, rgba(164, 237, 210, 0) 55%), radial-gradient(800px 480px at 89% 41%, rgba(189, 215, 255, .55) 0%, rgba(189, 215, 255, 0) 58%), radial-gradient(520px 360px at 88% 34%, rgba(235, 240, 255, .55) 0%, rgba(235, 240, 255, 0) 60%), linear-gradient(#ffffff, #ffffff);
            /* background-color: #f4f9ff; */
        }

        .solutions h2 {
            margin: 0;
            text-align: center;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: 500;
            letter-spacing: -0.25px;
            line-height: normal;
            color: #101010;
        }

        .solutions .sub {
            margin: 10px auto 0;
            text-align: center;
            font-size: 18px;
            color: #5a5a5a;
            line-height: normal;
            max-width: 520px;
        }

        .program-grid {
            margin: 50px auto 0;
            width: min(920px, 100%);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .program {
            background: #fff;
            border-radius: 10px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02), 0 18px 40px rgba(0, 0, 0, 0.06);
            overflow: visible;
            position: relative;
            margin-top: 24px;
        }

        .program-top {
            display: grid;
            grid-template-columns: 110px 1fr;
            gap: 16px;
            align-items: center;
            padding: 20px 24px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .bottle-slot {
          width: 175px;
            height: 130px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            margin-top: 0px;
            position: relative;
                top: -16px;
    margin-bottom: -24px;
    left: -12px;
        }

        .bottle-slot img {
                max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 170px;
        }

        .program-title {
            margin: 0;
    font-family: var(--ff-serif);
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -0.2px;
    line-height: normal;
    color: #111;
    padding-left: 10px;
        }

        .program-body {
            padding: 0 24px 12px;
        }

        .program-item {
            display: grid;
            grid-template-columns: 20px 1fr;
            gap: 8px;
            align-items: start;
            padding: 10px 0;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .program-item:first-child {
            border-top: none;
        }

        .check-dot {
            width: 18px;
            height: 18px;
            border-radius: 999px;
            border: 1.5px solid rgba(0, 0, 0, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1px;
            color: #111;
        }

        .check-dot svg {
            width: 10px;
            height: 10px;
        }

        .program-text {
            margin: 0;
            font-size: 16px;
            line-height: normal;
            color: #444;
        }

        .program-foot {
            padding: 12px 24px 16px;
            font-size: 14px;
            color: #888;
            font-style: italic;
        }

        .solutions-cta {
            margin-top: 26px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .solutions-cta .cta-btn {
            height: 60px;
            border: none;
            border-radius: 999px;
            background: var(--green);
            color: #fff;
            font-size: 18px;
            font-weight: 400;
            padding: 0 22px;
            cursor: pointer;
        }

        .solutions-cta .ratingline {
            font-size: 14px;
            color: #4a4a4a;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .solutions-cta .ratingline .stars {
            font-size: 14px;
            margin: 0;
        }

        /* ===== Struggles Section ===== */
        .struggles {
            padding: var(--section-gap) 0;
            background: #fff;
                /* background: #f4f9ff9e; */
        }
/* .struggles {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
} */
        .struggles h2 {
            margin: 0;
            text-align: center;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: 500;
            letter-spacing: -0.25px;
            line-height: normal;
            color: #101010;
        }

        .struggles h2 .em {
            font-weight: 700;
        }

        .struggles .sub {
            margin: 12px auto 0;
            max-width: 640px;
            text-align: center;
            font-size: 16px;
            line-height: normal;
            color: #4a4a4a;
        }

        .pain-grid {
            margin: 28px auto 0;
            width: min(900px, 100%);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .pain {
            background: #ebf1f9;
            border-radius: 14px;
            min-height: 94px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 14px 12px;
        }
.pulsCustombtn {
   

    animation: pulseScale 1.8s infinite;
    transition: all 0.3s ease;
}
.text-primarygreen {
    color: var(--green);
}
/* Pulse Animation */
@keyframes pulseScale {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2,159,119,0.6);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 4px rgba(2,159,119,0.2);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2,159,119,0);
    }
}
        .pain img {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

        .pain .ico {
            width: 22px;
            height: 22px;
            border-radius: 6px;
            border: 1px solid rgba(0, 0, 0, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0, 0, 0, 0.65);
            font-size: 12px;
            user-select: none;
        }

        .pain .lbl {
            font-size: 14px;
            line-height: normal;
            color: #2a2a2a;
        }

        /* ===== Testimonials Section ===== */
        .testimonials {
            padding: var(--section-gap) 0;
            background: #fff;
                overflow: hidden;
    background: radial-gradient(700px 420px at 15% 38%, rgba(164, 237, 210, .55) 0%, rgba(164, 237, 210, 0) 55%), radial-gradient(800px 480px at 58% 35%, rgba(189, 215, 255, .55) 0%, rgba(189, 215, 255, 0) 58%), radial-gradient(520px 360px at 88% 34%, rgba(235, 240, 255, .55) 0%, rgba(235, 240, 255, 0) 60%), linear-gradient(#ffffff, #ffffff);
        }

        .testimonials h2 {
            margin: 0;
            text-align: center;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: 500;
            letter-spacing: -0.4px;
            line-height: normal;
            color: #101010;
        }

        .testimonials .sub {
            margin: 12px 0 0;
            text-align: center;
            font-size: 18px;
            color: #4a4a4a;
        }

        .testi-grid-wrap {
            margin: 32px auto 0;
            width: min(1040px, 100%);
            overflow: hidden;
            border-radius: 12px;
        }

        .testi-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .t-card {
            background: #f6f6f6;
            border: 1px solid #efefef;
            border-radius: 12px;
            padding: 14px 16px 14px;
            min-height: 130px;
        }

        .t-head {
            display: grid;
            grid-template-columns: 36px 1fr;
            gap: 10px;
            align-items: center;
            margin-bottom: 8px;
        }

        .t-avatar {
            width: 36px;
            height: 36px;
            border-radius: 999px;
            border: 1px solid #e2e2e2;
            background: #efefef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: transparent;
            font-size: 0;
            user-select: none;
            overflow: hidden;
        }

        .t-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .t-meta {
            display: flex;
            align-items: baseline;
            gap: 10px;
            flex-wrap: wrap;
        }

        .t-name {
            font-size: 13px;
            font-weight: 700;
            color: #111;
        }

        .t-verified {
            font-size: 12px;
            color: #7a7a7a;
        }

        .t-quote {
            margin: 0;
            font-size: 16px;
            line-height: normal;
            color: #333;
        }

        .t-stars {
            margin-top: 10px;
            color: var(--orange);
            font-size: 14px;
            letter-spacing: 1px;
        }

        /* ===== FAQ Section ===== */
        .faq {
            padding: var(--section-gap) 0;
            background: #fff;
        }

        .faq h2 {
            margin: 0;
            text-align: center;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: 500;
            letter-spacing: -0.6px;
            line-height: normal;
            color: #101010;
        }

        .faq .sub {
            margin: 16px 0 0;
            text-align: center;
            font-size: 18px;
            color: #2b2b2b;
        }

        .accordion {
            margin: 44px auto 0;
            width: min(880px, 100%);
            padding-bottom: 0px;
        }

        .acc-item {
            border-radius: 10px;
            border: 1px solid rgba(0, 0, 0, 0.25);
            background: #fff;
            overflow: hidden;
            margin-bottom: 14px;
        }

        .acc-item.open {
            background: rgb(235 241 249 / 79%);
            border-color: rgb(224 233 245);
        }

        .acc-btn {
            width: 100%;
            text-align: left;
            border: 0;
            background: transparent;
            padding: 18px 18px;
            display: grid;
            grid-template-columns: 1fr 44px;
            align-items: center;
            gap: 14px;
            cursor: pointer;
        }

        .acc-q {
            font-size: 20px;
            font-weight: 500;
            color: #111;
        }

        .acc-item.open .acc-q {
            font-size: 22px;
        }

        .acc-icon {
            width: 34px;
            height: 34px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            user-select: none;
            font-size: 18px;
            line-height: normal;
        }

        .acc-item.open .acc-icon {
            background: #111;
            color: #fff;
        }

        .acc-item:not(.open) .acc-icon {
            border: 1.5px solid rgba(0, 0, 0, 0.35);
            color: #111;
            background: #fff;
        }

        .acc-a {
            padding: 0 18px 18px;
            margin-top: -6px;
            color: #2b2b2b;
            font-size: 16px;
            line-height: normal;
            display: none;
        }

        .acc-item.open .acc-a {
            display: block;
        }

        /* ===== Bottom Ticker ===== */
        .ticker {
            height: 44px;
            background: var(--promo);
            overflow: hidden;
        }

        .ticker-track {
            height: 44px;
            display: flex;
            align-items: center;
            gap: 28px;
            width: max-content;
            animation: tickerMove 20s linear infinite;
            padding: 0 18px;
        }

        .tick {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.95);
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
        }

        .tick svg {
            width: 18px;
            height: 18px;
            opacity: 0.95;
        }

        @keyframes tickerMove {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* ===== Final CTA Section ===== */
        .final-cta {
            padding: var(--section-gap) 0;
            background: #fff;
        }

        .final-cta-grid {
            display: grid;
            grid-template-columns: 520px 1fr;
            gap: 70px;
            align-items: center;
        }

        .final-cta h2 {
            margin: 0;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: 500;
            letter-spacing: -0.8px;
            line-height: normal;
            color: #101010;
        }

        .final-cta .lead {
            margin: 18px 0 22px;
            font-size: 18px;
            line-height: normal;
            color: #1f1f1f;
            max-width: 420px;
        }
        section.tickerSection {
            padding-bottom: 20px;
        }
        .mini-checks {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            list-style: none;
            padding: 0;
            margin: 0 0 22px;
            max-width: 460px;
                display: flex;
    flex-direction: column;
    justify-content: center;
        }

        .mini-check {
            display: grid;
            grid-template-columns: 26px 1fr;
            gap: 10px;
            align-items: center;
            font-size: 16px;
            line-height: normal;
            color: #1b1b1b;
        }

        .mini-check svg {
            width: 24px;
            height: 24px;
            margin-top: 1px;
        }

        .final-cta .cta-btn {
            height: 56px;
            border: none;
            border-radius: 999px;
            background: var(--green);
            color: #fff;
            font-size: 18px;
            font-weight: 400;
            cursor: pointer;
            padding: 0 34px;
            min-width: 340px;
        }

        .final-cta .ratingline {
            margin-top: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #2b2b2b;
        }

        .final-cta .ratingline .stars {
            font-size: 14px;
            margin: 0;
        }

        .final-cta .ratingline b {
            color: #111;
        }

        .bottle-pair {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 26px;
            align-items: center;
        }

        .bottle-card {
            background: rgba(189, 226, 246, 0.55);
            border-radius: 14px;
            padding: 26px;
            min-height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .bottle-card.homefinalctaImageWrap img {
            max-height: 400px;
        }

        .bottle-hero {
            width: 210px;
            height: 292px;
            border-radius: 14px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.0)),
                repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.06) 0px, rgba(0, 0, 0, 0.06) 10px, rgba(0, 0, 0, 0.00) 10px, rgba(0, 0, 0, 0.00) 20px);
            border: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0, 0, 0, 0.55);
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
            user-select: none;
        }

        /* ===== Footer ===== */
        .site-footer {
            padding: 0px 0 40px;
            background: #fff;
            margin-top: 0px;
        }

        .footer-rule {
            border-top: 1px solid rgba(0, 0, 0, 0.12);
            margin: 0 0 24px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .footer-logo {
            font-family: var(--ff-serif);
            font-size: 24px;
            font-weight: 600;
            letter-spacing: -0.3px;
            color: #111;
            line-height: normal;
        }

        .footer-logo small {
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-left: 4px;
            position: relative;
            top: -7px;
        }

        .footer-social {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            color: #111;
        }

        .footer-social a {
            color: #111;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
        }

        .footer-social svg {
            width: 16px;
            height: 16px;
        }

        .footer-links {
            margin: 14px auto 14px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0;
            font-size: 15px;
            color: #333;
        }

        .footer-links a {
            color: #333;
            text-decoration: none;
            padding: 0 8px;
            border-left: 1px solid rgba(0, 0, 0, 0.15);
            line-height: normal;
            margin: 4px 0;
            display: flex;
    align-items: center;
        }

        .footer-links a:first-child {
            border-left: 0;
        }

        .footer-badges {
            margin: 18px auto 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .badge-slot {
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .badge-slot img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .footer-fineprint {
            max-width: 820px;
            margin: 0 auto;
            text-align: center;
            color: #555;
            font-size: 14px;
            line-height: normal;
        }

        .footer-fineprint p {
            margin: 0 0 10px;
        }

        .footer-copy {
            margin-top: 16px;
            text-align: center;
            font-size: 16px;
            color: #333;
        }
        .nav {
            flex-direction: row;
            justify-content: flex-end;
        }
        .navbar-nav .nav-item .nav-link {
            color: #222;
        }
        .navbar-nav .nav-item a.nav-link.cta {
            color: #fff;
        }
        button.navbar-toggler1 {
            display: none;
        }

        .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
            line-height: normal;
        }

        .menucrossButton {
            display: none;
        }

        .widthCustom {
                    max-width: 175px;
                    text-align: center;
                }
        @media(min-width:1300px) {
            .plan-right {
                width: 100%;
                height: auto;
                display: flex;
                align-items: flex-start;
                justify-content: flex-end;
                padding-top: 0px;
                position: relative;
                top: 0;
                margin-bottom: 0;
                max-width: 160px;
            }
        }
        /* ===== Responsive ===== */
        @media (max-width: 1180px) {
            

            .plan {
                width: min(740px, 100%);
                max-width: 480px;
                width: 100%;
            }
            .program {
                margin: 16px auto 8px;
                max-width: 480px;
            }
            .program-title {
                padding-left: 50px;
            }
        }

    
        @media (max-width: 991px) {
            .container {
                width: calc(100% - 32px);
            }

            :root {
                --fs-hero: 46px;
                --fs-h2-xl: 46px;
                --fs-h2-lg: 44px;
                --section-gap: 72px;
            }
            .cards {
                flex-direction: column;
                align-items: center;
            }
            .program {
                margin: 20px auto 8px;
                max-width: 400px;
                width: 100%;
            }
            .bottle-slot img {
                object-fit: contain;
                max-height: 150px;
            }
            .bottle-slot {
                top: -24px;
            }
            .checks {
                flex-direction: row;
                gap: 16px;
                align-items: center;
            }
            .articleInnerWrap {
                justify-content: center;
            }
            .program-title {
                padding-left: 50px;
            }
            .bottle-card img {
                max-width: 170px;
            }
            .check {
                min-width: unset;
            }

            .vp-grid {
                grid-template-columns: repeat(2, 1fr);
                row-gap: 34px;
            }

            .vp {
                padding: 0 18px;
            }

            .vp.sep::before {
                display: none;
            }

            .vp:first-child {
                padding-left: 18px;
            }

            .vp:last-child {
                padding-right: 18px;
            }

            .results h2 {
                font-size: 38px;
                max-width: 520px;
            }

            .results .sub {
                font-size: 15px;
            }

            .stage {
                padding: 0;
            }

            .arrow {
                display: none;
            }

            .viewport {
                max-width: 100%;
                width: 100%;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
            }

            .track {
                width: max-content;
                padding-bottom: 6px;
            }

            .r-card {
                scroll-snap-align: start;
                width: 300px;
            }

            .path-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .path h2 {
                font-size: 44px;
                text-align: center;
            }

            .path .lead {
                max-width: unset;
                text-align: center;
            }

            .path-left {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .consult-btn {
                min-width: 320px;
            }

            .step {
                grid-template-columns: 86px 1fr 54px;
            }

            .mosaic {
                grid-template-columns: 1fr;
                width: 100%;
            }

            .tile {
                aspect-ratio: 4 / 3;
            }

            .tile.card {
                justify-content: center;
                align-items: center;
                text-align: center;
            }

            .program-grid {
                grid-template-columns: 1fr;
                width: 100%;
            }

            .program-top {
                grid-template-columns: 80px 1fr;
            }

            .final-cta-grid {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .final-cta h2 {
                font-size: 48px;
                text-align: center;
            }

            .final-cta .lead {
                text-align: center;
                max-width: unset;
            }

            .mini-checks {
                grid-template-columns: 1fr;
                max-width: 520px;
                margin-left: auto;
                margin-right: auto;
            }

            .final-cta-left {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .bottle-pair {
                grid-template-columns: 1fr;
            }

            .pain-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            .testimonials h2,
            .faq h2 {
                font-size: 42px;
            }

            .testi-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:1360px){
            .desktop-benefits {
                padding: 40px 20px;
                gap: 15px;
                max-width: 100%;
                flex-wrap: wrap;
            }
            .desktop-benefit {
                gap: 20px;
                width: 100%;
                flex-shrink: 0;
                max-width: 47%;
                border-bottom: 1px solid #00000014;
                padding-bottom: 16px;
            }
            .desktop-benefit-divider {
                    display: none;
                }
        }

        @media (max-width: 991px) {
            .customBenifitStyle .mobile-benefits {
                display: flex;
                flex-direction: column;
                color: #1c1c1c;
                order: 4;
            }
            .desktop-benefits {
                display: none;
            }
            .customBenifitStyle .mobile-benefit {
                display: flex;
                gap: 16px;
                align-items: flex-start;
                /* border-bottom: 1px solid #1c1c1c; */
                margin-bottom: 16px;
                border-top: 1px solid var(--line);
                padding-top: 24px;
            }
            .customBenifitStyle .mobile-benefit-content h4 {
                font-family: var(--ff-serif);
                font-size: 15px;
                font-weight: 900;
                line-height: normal;
                margin: 0px;
            }
                .customBenifitStyle .mobile-benefit-content p {
                    font-size: 12px;
                    line-height: 140%;
                    color: rgb(0, 0, 0);
                    margin-bottom: 16px;
                }
                .widthCustom {
                    max-width: fit-content;
                }
        }

        @media (max-width: 767px) {
            .container {
                width: calc(100% - 40px);
            }

            :root {
                --fs-hero: 38px;
                --fs-h2-xl: 34px;
                --fs-h2-lg: 28px;
                --fs-btn: 14px;
                --section-gap: 56px;
            }

            header {
                height: auto;
                padding: 12px 0;
            }

            header .container.header-inner {
                width: calc(100% - 32px);
                margin: 0 20px 0 12px;
            }

            .header-inner {
                gap: 12px;
            }

            .brand {
                font-size: 20px;
                white-space: nowrap;
            }

            /* .nav {
                gap: 8px;
                font-size: 12px;
                white-space: nowrap;
            } */

            .nav .cta {
                padding: 8px 12px;
                font-size: 12px;
                white-space: nowrap;
            }

            .hero {
                padding: 32px 0 32px;
            }

                .hero h1 {
                    font-size: 36px;
                    max-height: 100px;
                    height: 100%;
                    min-height: 90px;
                    max-width: 300px;
                    margin-left: auto;
                    margin-right: auto;
                }

            .hero .sub {
                margin: 8px 0 8px;
                text-align: center;
                font-size: 18px;
                line-height: 28px;
                color: #111;
            }

            .hero .container {
                display: flex;
                flex-direction: column;
            }

            .hero h1 {
                order: 1;
            }

            .hero .sub {
                order: 2;
            }

            .hero .cards {
                order: 3;
            }

            .hero .checks {
                order: 4;
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 12px;
                margin: 18px auto 22px;
                width: 100%;
                justify-items: center;
            }

            .hero .check {
                flex-direction: column;
                align-items: center;
                gap: 8px;
                min-width: 0;
                text-align: center;
                font-size: 12px;
                line-height: normal;
            }

            .hero .check svg {
                width: 22px;
                height: 22px;
            }

            .hero .disclaimer {
                order: 5;
                display: none;
            }

            .hero .value-props {
                order: 6;
                margin: 18px auto 0;
            }

            .plan {
                padding: 20px;
                flex-direction: row;
                position: relative;
                padding-bottom: 80px;
            }

            .plan-left {
                flex: 1;
            }

            .plan-title,
            .desc,
            .price-row,
            .transparent {
                padding-right: 110px;
            }

            .plan-right {
                width: 90px;
                flex-shrink: 0;
                position: absolute;
                right: 12px;
                top: 16px;
            }

            .plan-right img {
                width: 90px;
            }

            .plan-title {
                font-size: 26px;
                line-height: normal;
            }

            .desc {
                max-width: none;
                font-size: 14px;
            }

            .price-row {
                flex-direction: row;
                align-items: baseline;
            }

            .price {
                font-size: 40px;
            }

            .perday {
                font-size: 12px;
            }

            .pills {
                flex-wrap: wrap;
                gap: 6px;
            }

            .pill {
                padding: 5px 8px;
                font-size: 10px;
            }

            .img-slot {
                width: 100%;
                height: 220px;
            }

            .vp-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .vp {
                display: grid;
                grid-template-columns: 36px 1fr;
                column-gap: 12px;
                align-items: start;
                padding: 16px 0;
                border-bottom: 1px solid #E3E3E3;
            }

            .vp:first-child,
            .vp:last-child {
                padding-left: 0;
                padding-right: 0;
            }

            .vp:last-child {
                border-bottom: none;
            }

            .vp-icon {
                width: 28px;
                height: 28px;
                margin: 2px 0 0;
            }

            .vp-title {
                grid-column: 2;
                margin: 0 0 6px;
                font-size: 18px;
            }

            .vp-text {
                grid-column: 2;
                max-width: unset;
                margin: 0;
                font-size: 13px;
                line-height: normal;
            }

            .results {
                padding: var(--section-gap) 0;
            }

            .results h2 {
                font-size: 34px;
                line-height: normal;
                max-width: 320px;
            }

            .results .sub {
                font-size: 13px;
                margin: 12px 0 0;
            }

            .stage {
                margin: 26px auto 0;
                padding: 0;
                border-radius: 0;
            }

            .arrow {
                display: flex;
                width: 34px;
                height: 34px;
                z-index: 2;
            }

            .arrow.left {
                left: 6px;
            }

            .arrow.right {
                right: 6px;
            }

            .viewport {
                overflow: hidden;
                scroll-snap-type: none;
            }

            .track {
                gap: 16px;
                padding-bottom: 0;
            }

            .r-card {
                width: 250px;
                padding: 14px 14px 18px;
                border-radius: 12px;
            }

            .r-photo-wrap {
                padding: 0;
                border-radius: 0;
            }

            .r-photos {
                gap: 10px;
            }

            .r-photo {
                height: 150px;
                border-radius: 10px;
            }

            .r-photo img {
                border-radius: 10px;
            }

            .badge {
                top: 0;
                font-size: 9px;
                padding: 4px 8px;
            }

            .r-quote {
                margin: 12px 4px 0;
                font-size: 12px;
                line-height: normal;
            }

            .r-name {
                margin: 12px 0 0;
                font-size: 12px;
            }

            .path {
                padding: var(--section-gap) 0;
            }

            .path-grid {
                display: flex;
                flex-direction: column;
                gap: 18px;
            }

            .path-left {
                display: contents;
            }

            .path-intro {
                order: 1;
            }

            .steps {
                order: 2;
                gap: 12px;
            }

            .path-cta {
                order: 3;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .path h2 {
                font-size: 28px;
                line-height: normal;
                text-align: left;
            }

            .path .lead {
                margin: 12px 0 8px;
                font-size: 14px;
                line-height: normal;
                text-align: left;
            }

            .consult-btn {
                width: 100%;
                min-width: 0;
                height: 48px;
                font-size: 14px;
            }

            .path .rating {
                margin-top: 0;
            }

            .path .stars {
                font-size: 14px;
                margin-bottom: 4px;
            }

            .path .rating p {
                font-size: 12px;
            }

            .step {
                grid-template-columns: 58px 1fr 26px;
                gap: 12px;
                padding: 12px;
                background: #fff;
                border: 1px solid #e6e6e6;
                border-radius: 12px;
                box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
            }

            .step-img {
                width: 60px;
                height: 60px;
                border-radius: 10px;
                background: #fff;
                /* border: 1px solid #e1e1e1;
                box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08); */
                overflow: hidden;
            }

            .step-img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .step-title {
                font-size: 16px;
                margin: 0 0 0px;
            }

            .step-desc {
                font-size: 14px;
                line-height: normal;
            }

            .step-num {
                width: 26px;
                height: auto;
                min-height: 54px;
                align-self: stretch;
                border-radius: 8px;
                font-size: 14px;
            }

            .transform {
                padding: var(--section-gap) 0;
                
            }

            .transform h2 {
                font-size: 30px;
                line-height: normal;
                max-width: 300px;
                margin: 0 auto;
            }

            .transform .sub {
                font-size: 14px;
                margin: 8px auto 0;
                max-width: 320px;
            }

            .mosaic {
                margin: 22px auto 0;
                gap: 16px;
            }

            .tile {
                border-radius: 12px;
                aspect-ratio: auto;
            }

            .tile.card {
                /* background: #fff; */
                border: 1px solid #e6e6e6;
                box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
                padding: 16px 18px;
                align-items: flex-start;
                text-align: left;
                min-height: 140px;
            }

            /* .tile.card:first-child {
                background: #fff;
            } */

            .tile.card h3 {
                font-size: 20px;
            }

            .tile.card p {
                font-size: 14px;
                margin: 0 0 10px;
            }

            .pill-btn {
                height: 26px;
                padding: 0 12px;
                font-size: 10px;
                align-self: flex-start;
            }

            .tile.photo {
                height: 220px;
            }

            .tile.photo img {
                object-position: center 25%;
            }

            .mosaic .tile:nth-child(1) {
                order: 2;
            }

            .mosaic .tile:nth-child(2) {
                order: 1;
            }

            .mosaic .tile:nth-child(3) {
                order: 3;
            }

            .mosaic .tile:nth-child(4) {
                order: 4;
            }

            .mosaic .tile:nth-child(5) {
                order: 6;
            }

            .mosaic .tile:nth-child(6) {
                order: 5;
            }

            .solutions {
                padding: var(--section-gap) 0;
            }

            .solutions h2 {
                font-size: 30px;
                line-height: normal;
                max-width: 100%;
            }
            .solutions h2 br {
                display: none;
            }

            h3.program-title br {
                display: none;
            }

            .solutions .sub {
                font-size: 14px;
                max-width: 320px;
                margin-bottom: 48px;
            }

            .program-grid {
                margin: 26px auto 0;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }

            .program {
                border-radius: 12px;
                box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
            }

            .program-top {
                grid-template-columns: 64px 1fr;
                gap: 10px;
                padding: 12px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            }

            .bottle-slot {
                width: 70px;
                height: 76px;
                margin-top: 0;
                align-items: center;
                left: 0;
            }

            /* .program-title {
                font-size: 14px;
                line-height: normal;
            } */

            .program-body {
                padding: 0 12px 8px;
            }

            .program-item {
                grid-template-columns: 16px 1fr;
                gap: 6px;
                padding: 8px 0;
            }

            .check-dot {
                width: 14px;
                height: 14px;
                border-width: 1px;
            }

            .check-dot svg {
                width: 8px;
                height: 8px;
            }

            .program-text {
                font-size: 14px;
                line-height: normal;
            }

            .program-foot {
                padding: 8px 12px 12px;
                font-size: 12px;
                line-height: normal;
            }

            .solutions-cta {
                margin-top: 20px;
            }

            .solutions-cta .cta-btn {
                height: 36px;
                font-size: 20px;
            }

            .solutions-cta .ratingline {
                font-size: 10px;
                text-align: center;
            }

            .struggles {
                padding: var(--section-gap) 0;
            }

            .struggles h2 {
                font-size: 30px;
                line-height: normal;
                max-width: 280px;
                margin-left: auto;
                margin-right: auto;
            }
            .struggles h2 br {
                display: none;
            }
            .struggles .sub {
                font-size: 14px;
                max-width: 300px;
                margin: 10px auto 0;
            }

            .pain-grid {
                margin-top: 22px;
                gap: 12px;
            }

            .pain {
                height: auto;
                min-height: 88px;
                padding: 12px 10px;
                gap: 10px;
                border-radius: 12px;
                /* background: #f6f6f6; */
            }

            .pain img {
                width: 28px;
                height: 28px;
            }

            .pain .lbl {
                font-size: 14px;
            }

            .testimonials {
                padding: var(--section-gap) 0;
            }

            .testimonials h2 {
                font-size: 22px;
                line-height: normal;
                max-width: 260px;
                margin: 0 auto;
            }

            .testimonials .sub {
                margin: 8px auto 0;
                font-size: 10px;
                max-width: 260px;
            }

            .testi-grid-wrap {
                margin-top: 18px;
                width: 100%;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                padding: 4px 16px 8px;
            }

            .testi-grid {
                display: grid;
                grid-auto-flow: column;
                grid-auto-columns: 250px;
                grid-template-rows: repeat(2, auto);
                gap: 12px;
                width: max-content;
                padding-bottom: 4px;
            }

            .t-card {
                width: 250px;
                max-width: 250px;
                margin: 0;
                padding: 12px 14px 12px;
                min-height: 0;
                scroll-snap-align: start;
            }

            .t-head {
                grid-template-columns: 28px 1fr;
                gap: 8px;
                margin-bottom: 6px;
            }

            .t-avatar {
                width: 28px;
                height: 28px;
            }

            .t-name {
                font-size: 11px;
            }

            .t-verified {
                font-size: 9px;
            }

            .t-quote {
                font-size: 11px;
                line-height: normal;
            }

            .t-stars {
                margin-top: 8px;
                font-size: 11px;
            }

            .testi-grid-wrap {
                scrollbar-width: none;
            }

            .testi-grid-wrap::-webkit-scrollbar {
                display: none;
            }

            .faq h2 {
                font-size: 30px;
            }

            .final-cta h2 {
                font-size: 26px;
                line-height: normal;
                text-align: center;
            }

            .final-cta .cta-btn {
                min-width: 0;
                width: 100%;
                height: 44px;
                font-size: 20px;
            }

            .bottle-card {
                min-height: 140px;
                padding: 14px;
                border-radius: 12px;
            }

            .final-cta-grid {
                display: flex;
                flex-direction: column;
                gap: 22px;
            }

            .final-cta-right {
                order: 1;
                width: 100%;
            }

            .final-cta-left {
                order: 2;
                align-items: center;
                text-align: center;
            }

            .final-cta .lead {
                font-size: 14px;
                line-height: normal;
                margin: 12px 0 16px;
                text-align: center;
            }

            .bottle-pair {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }

            .bottle-card img {
                width: 90px;
                height: auto;
            }

            .mini-checks {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 12px;
                max-width: 100%;
                margin: 0 0 18px;
            }

            .mini-check {
                grid-template-columns: 1fr;
                justify-items: center;
                text-align: center;
                font-size: 14px;
                line-height: normal;
                gap: 6px;
            }

            .mini-check svg {
                width: 20px;
                height: 20px;
                margin-top: 0;
            }

            .final-cta .ratingline {
                flex-direction: column;
                align-items: center;
                gap: 6px;
                font-size: 11px;
                text-align: center;
            }

            .footer-links a {
                padding: 0 8px;
            }

            .acc-q {
                font-size: 16px;
            }

            .site-footer {
                padding: 36px 0 30px;
            }

            .footer-rule {
                margin: 0 0 16px;
            }

            .footer-brand {
                gap: 6px;
                margin-bottom: 10px;
            }

            .footer-logo {
                font-size: 18px;
            }

            .footer-logo small {
                font-size: 7px;
                top: -6px;
            }

            .footer-social a {
                width: 16px;
                height: 16px;
            }

            .footer-social svg {
                width: 14px;
                height: 14px;
            }

            .footer-links {
                margin: 10px auto 12px;
                font-size: 10px;
                line-height: normal;
                max-width: 280px;
            }

            .footer-links a {
                padding: 0 6px;
                margin: 3px 0;
            }

            .footer-badges {
                margin: 12px auto 14px;
                gap: 10px;
            }

            .badge-slot {
                width: 44px;
                height: 44px;
            }

            .footer-fineprint {
                font-size: 9px;
                line-height: normal;
                max-width: 320px;
            }

            .footer-copy {
                font-size: 10px;
                margin-top: 12px;
            }

            .legal-panel {
                width: 94vw;
                max-height: 80vh;
                border-radius: 14px;
            }

            .legal-header {
                padding: 14px 16px;
            }

            .legal-header h2 {
                font-size: 20px;
            }

            .legal-body {
                padding: 14px 16px;
                font-size: 12px;
            }
            .final-cta {
                padding: var(--section-gap) 0 30px;
            }

        }
        @media (max-width: 767px) {
            .nav {
                gap: 8px;
                font-size: 12px;
                white-space: nowrap;
                flex-direction: column;
                
            }
            .menucollapsed {
                position: absolute;
                left: 0;
                z-index: 9;
                background: #0000002b;
                width: 100%;
                align-items: baseline;
                padding: 0px;
                top: 0;
                height: 100vh;
                justify-content: flex-start;
                left: -100%;
                transition: all ease-in-out 0.5s;
            }
            .menucollapsed.showMenu {
                left: 0;
                transition: all ease-in-out 0.5s;
            }
            ul.navbar-nav.ms-auto.nav {
                background: #ffffff;
                height: 100vh;
                justify-content: flex-start;
                align-items: baseline;
                padding: 16px;
                max-width: 85%;
                margin-left: 0px !important;
            }

            .navbar-nav .nav-item .nav-link {
                color: #222;
                font-size: 16px;
            }
            .menucrossButton {
                display: block;
            }
            button.menucrossButton {
                position: absolute;
                right: 16px;
                background: #ffffff;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                top: 16px;
                border-radius: 4px;
            }
            button.menucrossButton svg {
                width: 24px;
                height: 24px;
            }
            .scrollhide {
                overflow-y: hidden;
            }
            button.navbar-toggler1 {
                display: block;
                        width: 20px;
            }

            .commonBtnstyle {
                font-size: 18px !important;
            }

            button.navbar-toggler1 span.navbar-toggler1-icon {
                position: relative;
                height: 2px;
                width: 100%;
                background-color: #00b68b !important;
                display: block;
                border-radius: 4px;
            }

            button.navbar-toggler1 span.navbar-toggler1-icon:before {
                content: "";
                width: 100%;
                height: 2px;
                display: block;
                position: relative;
                top: -5px;
                background: #00b68b;
                border-radius: 4px;
            }
            button.navbar-toggler1 span.navbar-toggler1-icon:after {
                content: "";
                width: 100%;
                height: 2px;
                display: block;
                position: relative;
                top: 3px;
                background: #00b68b;
                border-radius: 4px;
            }

                .bottle-slot img {
                    object-fit: contain;
                    max-height: 150px;
                }
        }

        @media (max-width: 370px) {
            .program-grid {
                margin: 32px auto 0;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
                display: flex;
                flex-direction: column;
            }
            .hero .cards {
                display: flex;
                justify-content: center;
                gap: 26px;
                margin: 18px 0px 0;
                padding-bottom: 18px;
            }
            .bottle-slot img {
                max-width: 54px;
                height: auto;
                object-fit: contain;
                
            }
                .hero .plan-right img {
                    width: 70px;
                    top: 30px;
                    position: relative;
                }
                .hero .pills {
                    flex-wrap: wrap;
                    gap: 6px;
                }
        }



        .commonBtnstyle {
            width: 511px;
            height: 60px;

            background: var(--green);
            border: 0.5px solid rgba(0, 0, 0, 0.1);
            border-radius: 100px;

            color: #fff;
            font-family: var(--ff-sans);
            font-size: 20px;
            font-weight: 400;

            cursor: pointer;
            position: relative;
            overflow: hidden;

            /* transition: all 0.3s ease; */
            left: 0;
            top: 0;
            max-width: 100%;
            min-height: 60px;
            transition: all 0.3s ease-in-out  !important;
            /* border: 4px solid #06a17a !important; */
        }

        /* 
        .commonBtnstyle::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;

            width: 100%;
            height: 100%;

            background: #029f77; 

            transition: all 0.4s ease;
            z-index: 0;
        } */

        /* Text on Top */
        .commonBtnstyle span {
            position: relative;
            z-index: 1;
        }

        /* Hover Effect */
        /* .commonBtnstyle:hover::before {
            left: 0;
        } */

        .commonBtnstyle:hover {
            color: #ffffff;
            transform: translateY(-3px);

            box-shadow:
                0 8px 20px rgba(0,0,0,0.15),
                0 0 12px rgba(47,191,113,0.5);

                background-color: #00a37a !important;
        }

        /* Click Effect */
        .commonBtnstyle:active {
            transform: translateY(1px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .reviews-wrapper {
            padding-top: 32px;
        }
        @media(max-width:767px) {
            .customHomeArticleWrap {
                width: 100%;
            }
            .customHomeArticle {
                flex-direction: column;
                max-width: 100%;
                min-width: 100% !important;
                padding: 16px;
            }
            .customHomeArticle .plan-right {
                width: 90px;
                flex-shrink: 0;
                position: relative;
                right: 0;
                top: 0;
            }
            .customHomeArticle .plan-title {
                font-size: 26px;
                line-height: normal;
                padding-right: 0;
                letter-spacing: 0;
            }

            section.desktop-benefits {
                    display: none;
                }
            .customBenifitStyle .mobile-benefits {
                display: flex;
                flex-direction: column;
                color: #1c1c1c;
                        order: 4;
            }
            .customBenifitStyle .mobile-benefit {
                display: flex;
                gap: 16px;
                align-items: flex-start;
                /* border-bottom: 1px solid #1c1c1c; */
                margin-bottom: 16px;
                border-top: 1px solid var(--line);
                padding-top: 24px;
            }
            .customBenifitStyle .mobile-benefit-content h4 {
                font-family: var(--ff-serif);
                font-size: 15px;
                font-weight: 900;
                line-height: normal;
                margin: 0px;
            }
            .customBenifitStyle .mobile-benefit-content p {
                font-size: 12px;
                line-height: 140%;
                color: rgb(0, 0, 0);
                margin-bottom: 16px;
            }

            .customHomeArticle .plan-title, .customHomeArticle .desc, .customHomeArticle .price-row, .customHomeArticle .transparent {
                padding-right: 0;
            }
            .program-title {
                font-size: 24px;
                line-height: normal;
                padding-left: 0px;
            }
            section.solutions .program-grid {
                display: flex;
                flex-direction: column;
            }
        }

        @media(max-width:480px) {
            .bottle-slot img {
                    max-width: 50px;
                    height: auto;
                    object-fit: contain;
                    max-height: 100px;
                }
                    .program {
                        margin: 32px auto 8px;
                        width: 100%;
                    }
                    .bottle-slot {
                        top: -28px;
                    }
        }


        @media(max-width:380px) {
            .promo {
                height: auto;
                background: var(--promo);
                color: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                letter-spacing: .2px;
                text-align: center;
                padding: 8px 0px;
            }
        }

        @media(max-width:480px){
                .articleInnerWrap {
                    justify-content: center;
                    flex-direction: column-reverse;
                }
                .customHomeArticle .plan-right {
                    width: 100px;
                    flex-shrink: 0;
                    position: relative;
                    right: 0;
                    top: 0;
                    width: 100%;
                    background-color: #e1eefc96;
                    padding: 16px;
                    border-radius: 6px;
                    margin-bottom: 16px;
                    max-height: 300px;
                    height: 100%;
                    min-height: 250px;
                }
                .hero .plan-right img {
                    width: 100px;
                    top: 0;
                    position: relative;
                    margin: 0 auto;
                }
        }



        @media(max-width:767px) {
            .commonBtnstyle {
                max-height: 48px !important;
                min-height: 30px !important;
                padding: 14px 16px !important;
                height: 100% !important;
                line-height: 18px !important;
            }
            .mini-check {
                display: flex;
            }
        }


        /* .pageLoadercustom{
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.pageLoadercustom.active{
    opacity: 1;
    visibility: visible;
}

.loaderSpinnercustom{
    width: 50px;
    height: 50px;
    border: 4px solid #ddd;
    border-top: 4px solid #16a34a;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin{
    to{
        transform: rotate(360deg);
    }
} */

.text-primarycustomNew {
        color: var(--green) !important;
}

.loading-active{
    pointer-events: none;
    opacity: .7;
    cursor: not-allowed;
}















.welcomeHero {
    background: #f3f3f3;
    padding: 60px 20px;
    text-align: center;
}

.welcomeHero__wrapper {
    max-width: 800px;
    margin: 20px auto 0px;
    text-align: center;
}

.welcomeHero__image img {
    max-width: 160px;
    width: 100%;
    margin: 0px auto 20px;
}

.welcomeHero__title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.welcomeHero__desc {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.welcomeHero__note {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .welcomeHero {
        padding: 40px 15px;
    }

    .welcomeHero__title {
        font-size: 26px;
    }

    .welcomeHero__desc {
        font-size: 16px;
    }

    .welcomeHero__note {
        font-size: 16px;
    }

    .welcomeHero__image img {
        max-width: 120px;
    }
}