 :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 ===== */
        .promo {
            height: 30px;
            background: var(--promo);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            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));
            margin: 0 auto;
        }

        .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: 1;
            letter-spacing: -0.2px;
            color: #1b1b1b;
            display: flex;
            align-items: center;
        }

        .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);
        }

        /* ===== 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: var(--fw-semibold);
            line-height: var(--lh-hero);
            letter-spacing: var(--ls-tight);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        }

        .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: 1.25;
        }

        .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 86px;
            /* extra bottom space reserved for full-width CTA */
            display: flex;
            gap: 22px;
            align-items: stretch;
            position: relative;
            /* enables absolute-position CTA */
        }

        .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 12px;
            color: #111;
            font-size: 14px;
            line-height: 1.45;
        }

        .desc b {
            font-weight: 700;
        }

        .price-row {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin: 2px 0 14px;
            flex-wrap: wrap;
        }

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

        .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: nowrap;
            align-items: center;
            margin: 0 0 18px;
            padding: 0;
            list-style: none;
        }

        .pill {
            background: var(--pill);
            color: #111;
            font-size: 10px;
            padding: 6px 10px;
            border-radius: 999px;
            white-space: nowrap;
        }

        .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: 10px;
        }

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

        .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: 1.5;
            text-align: center;
            font-style: italic;
            max-width: 980px;
            margin: 0 auto;
        }

        /* ===== 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: 1.45;
            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: 1.08;
            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: 1.45;
            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 #1b1b1b;
            color: #111;
        }

        .arrow.right {
            right: -8px;
            background: #111;
            border: 1px solid #fff;
            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: 1.4;
            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: 1.45;
            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);
        }

        .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: 1;
            color: #101010;
        }

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

        .path .lead {
            margin: 14px 0 18px;
            font-size: 16px;
            line-height: 1.4;
            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: 1;
            color: var(--orange);
            letter-spacing: 0;
            margin-bottom: 6px;
        }

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

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

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

        .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: 70px;
            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;
            user-select: none;
        }

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

        .step-desc {
            margin: 0;
            font-size: 16px;
            line-height: 1.4;
            color: #2b2b2b;
            max-width: 520px;
        }

        .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;
        }

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

        .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;
            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%);
        }

        .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: 1.35;
            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: 1;
            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;
        }

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

        .solutions .sub {
            margin: 10px auto 0;
            text-align: center;
            font-size: 18px;
            color: #5a5a5a;
            line-height: 1.45;
            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;
        }

        .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: 110px;
            height: 130px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            margin-top: 50px;
        }

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

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

        .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: 1.4;
            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: 38px;
            border: none;
            border-radius: 999px;
            background: var(--green);
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            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;
        }

        .struggles h2 {
            margin: 0;
            text-align: center;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: 500;
            letter-spacing: -0.25px;
            line-height: 1.15;
            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: 1.4;
            color: #4a4a4a;
        }

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

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

        .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: 1.2;
            color: #2a2a2a;
        }

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

        .testimonials h2 {
            margin: 0;
            text-align: center;
            font-family: var(--ff-serif);
            font-size: 45px;
            font-weight: 500;
            letter-spacing: -0.4px;
            line-height: 1.12;
            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: 1.45;
            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: 1.05;
            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: 70px;
        }

        .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: rgba(0, 0, 0, 0.04);
            border-color: rgba(0, 0, 0, 0.0);
        }

        .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: 1;
        }

        .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: 1.45;
            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: 1.02;
            color: #101010;
        }

        .final-cta .lead {
            margin: 18px 0 22px;
            font-size: 18px;
            line-height: 1.55;
            color: #1f1f1f;
            max-width: 420px;
        }

        .mini-checks {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            list-style: none;
            padding: 0;
            margin: 0 0 22px;
            max-width: 460px;
        }

        .mini-check {
            display: grid;
            grid-template-columns: 26px 1fr;
            gap: 10px;
            align-items: start;
            font-size: 16px;
            line-height: 1.25;
            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: 600;
            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-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: 40px 0 36px;
            background: #fff;
        }

        .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: 1;
        }

        .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: 16px;
            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: 1.2;
            margin: 4px 0;
        }

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

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

        .badge-slot {
            width: 56px;
            height: 56px;
            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: 1.6;
        }

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

        .footer-copy {
            margin-top: 16px;
            text-align: center;
            font-size: 16px;
            color: #333;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1180px) {
            .cards {
                flex-direction: column;
                align-items: center;
            }

            .plan {
                width: min(740px, 100%);
            }
        }

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

            :root {
                --fs-hero: 46px;
                --fs-h2-xl: 46px;
                --fs-h2-lg: 44px;
                --section-gap: 72px;
            }

            .checks {
                flex-direction: column;
                gap: 16px;
                align-items: center;
            }

            .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: 700px) {
            .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: 30px 0 var(--section-gap);
            }

            .hero h1 {
                font-size: 38px;
            }

            .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: 1.2;
            }

            .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: 1.1;
            }

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

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

            .price {
                font-size: 30px;
            }

            .perday {
                font-size: 12px;
            }

            .pills {
                flex-wrap: nowrap;
                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: 1.4;
            }

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

            .results h2 {
                font-size: 34px;
                line-height: 1.1;
                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: 1.45;
            }

            .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: 1.12;
                text-align: left;
            }

            .path .lead {
                margin: 12px 0 8px;
                font-size: 14px;
                line-height: 1.4;
                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: 58px;
                height: 58px;
                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: 14px;
                margin: 0 0 4px;
            }

            .step-desc {
                font-size: 12px;
                line-height: 1.35;
            }

            .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: 1.12;
                max-width: 300px;
                margin: 0 auto;
            }

            .transform .sub {
                font-size: 13px;
                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: 16px;
            }

            .tile.card p {
                font-size: 12px;
                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: 26px;
                line-height: 1.15;
                max-width: 280px;
            }

            .solutions .sub {
                font-size: 12px;
                max-width: 320px;
            }

            .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: 64px;
                height: 76px;
                margin-top: 0;
                align-items: center;
            }

            .program-title {
                font-size: 14px;
                line-height: 1.15;
            }

            .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: 10px;
                line-height: 1.35;
            }

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

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

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

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

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

            .struggles h2 {
                font-size: 26px;
                line-height: 1.15;
                max-width: 280px;
                margin-left: auto;
                margin-right: auto;
            }

            .struggles .sub {
                font-size: 12px;
                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: 12px;
            }

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

            .testimonials h2 {
                font-size: 22px;
                line-height: 1.2;
                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: 1.45;
            }

            .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: 38px;
            }

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

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

            .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: 12px;
                line-height: 1.45;
                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: 11px;
                line-height: 1.2;
                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: 1.4;
                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: 1.55;
                max-width: 320px;
            }

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

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

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

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

            .legal-body {
                padding: 14px 16px;
                font-size: 12px;
            }

        }