:root {
    --result-gradient: linear-gradient(86.03deg, #d8b070 1.14%, #f6ddb7 50.18%, #d8b070 99.23%);
}

/* --- Minimal modern reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: var(--font-sans, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

#app,
#root {
    isolation: isolate;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media only screen and (max-width: 950px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
}
/* CabinetGrotesk Bold */
@font-face {
    font-family: "CabinetGrotesk";
    src: url("../fonts/CabinetGrotesk/CabinetGrotesk-Bold.woff2") format("woff2"),
        url("../fonts/CabinetGrotesk/CabinetGrotesk-Bold.woff") format("woff"),
        url("../fonts/CabinetGrotesk/CabinetGrotesk-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* CabinetGrotesk Medium */
@font-face {
    font-family: "CabinetGrotesk";
    src: url("../fonts/CabinetGrotesk/CabinetGrotesk-Medium.woff2") format("woff2"),
        url("../fonts/CabinetGrotesk/CabinetGrotesk-Medium.woff") format("woff"),
        url("../fonts/CabinetGrotesk/CabinetGrotesk-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
/* CabinetGrotesk Regular */
@font-face {
    font-family: "CabinetGrotesk";
    src: url("../fonts/CabinetGrotesk/CabinetGrotesk-Regular.woff2") format("woff2"),
        url("../fonts/CabinetGrotesk/CabinetGrotesk-Regular.woff") format("woff"),
        url("../fonts/CabinetGrotesk/CabinetGrotesk-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
html,
body {
    font-family: "CabinetGrotesk";
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}

section {
    padding: 100px 0;
    background: #faf3e6;
}
section p {
    font-size: inherit;
}
section .section-title {
    font-weight: 500;
    font-size: 56px;
    line-height: 1.2;
    color: #052b4a;
}
section .section-subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #052b4a;
    margin-top: 20px;
}
@media only screen and (max-width: 950px) {
    section {
        padding: 60px 0;
    }
    section .section-title {
        font-size: 36px;
    }
    section .section-subtitle {
        font-size: 16px;
        margin-top: 12px;
    }
}

.centered {
    text-align: center;
}

.section-inner {
    max-width: 1210px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
}
@media only screen and (max-width: 950px) {
    .section-inner {
        padding: 0 16px;
    }
}

section.hero {
    height: 100vh;
    background: url("../images/hero.png") center/cover no-repeat;
    padding-top: 55px;
    color: #faf3e6;
}
section.hero .section-inner {
    height: 100%;
}
section.hero .part-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section.hero .part-top .cart-button {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
}
section.hero .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    height: 100%;
    width: 50%;
    max-width: 539px;
}
section.hero .content .title {
    font-weight: 500;
    font-size: 80px;
    line-height: 1.1;
}
section.hero .content .text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
}
@media only screen and (max-width: 950px) {
    section.hero {
        background: url("../images/hero-m.png") center bottom/cover no-repeat;
        padding: 48px 0;
    }
    section.hero .section-inner {
        padding: 0 20px;
    }
    section.hero .part-top .logo img {
        height: 25px;
    }
    section.hero .part-top .cart-button span {
        display: none;
    }
    section.hero .content {
        width: 100%;
        height: 100%;
        padding-top: 32px;
        padding-bottom: 16px;
        gap: 20px;
    }
    section.hero .content .title {
        font-size: 48px;
    }
    section.hero .content .text {
        font-size: 18px;
        flex-grow: 1;
    }
    section.hero .content .button-cta {
        width: 100%;
    }
}

.button-cta {
    padding: 12px 24px;
    border-radius: 2px;
    background: linear-gradient(86deg, #d8b070 0%, #f6ddb7 25%, #d8b070 50%, #f6ddb7 75%, #d8b070 100%);
    background-size: 200% 100%;
    background-position: left center;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
    color: #052b4a;
    display: inline-block;
    cursor: pointer;
    white-space: nowrap;
    transition: background-position 0.4s ease-in-out, transform 0.15s ease-in-out;
}
.button-cta:hover {
    background-position: right center;
}
.button-cta.loading {
    pointer-events: none;
    opacity: 0.85;
    position: relative;
}
.button-cta.loading span {
    opacity: 0;
}
.button-cta.loading:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid #052b4a;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
section.marquee-images .section-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}
section.marquee-images .marquee {
    overflow: hidden;
    position: relative;
    margin-top: 64px;
    touch-action: pan-y; /* allow vertical scroll; we handle horizontal dragging */
    user-select: none;
}
section.marquee-images .marquee .marquee-inner {
    display: flex;
    width: max-content; /* keeps content compact */
    animation: marquee 20s linear infinite;
    will-change: transform;
}
section.marquee-images .marquee .marquee-inner .item {
    flex: 0 0 auto;
    margin-right: 40px; /* adjust spacing */
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@media only screen and (max-width: 950px) {
    section.marquee-images .section-title {
        font-size: 24px;
    }
    section.marquee-images .marquee {
        margin-top: 48px;
    }
    section.marquee-images .marquee .marquee-inner .item {
        margin-right: 12px;
    }
    section.marquee-images .marquee .marquee-inner .item img {
        height: 300px;
    }
}

section.advantages .parts {
    display: flex;
    gap: 64px;
}
section.advantages .parts .part:nth-child(1) {
    width: 45%;
}
section.advantages .parts .part:nth-child(2) {
    width: 55%;
}
section.advantages .image img {
    max-width: 100%;
    border-radius: 2px;
}
section.advantages .items {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 24px;
}
section.advantages .items .item {
    display: flex;
    gap: 32px;
}
section.advantages .items .item .icon {
    height: 100px;
    width: 100px;
    flex-shrink: 0;
    background: #f0e8d7;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.advantages .items .item .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #052b4a;
}
section.advantages .items .item .text {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #052b4a;
}
section.advantages .items .item .text .text {
    margin-top: 8px;
}
@media only screen and (max-width: 950px) {
    section.advantages .parts {
        flex-direction: column-reverse;
        gap: 48px;
    }
    section.advantages .parts .part {
        width: 100% !important;
    }
    section.advantages .items .item {
        gap: 20px;
    }
    section.advantages .items .item .icon {
        height: 64px;
        width: 64px;
    }
    section.advantages .items .item .icon img {
        height: 32px;
    }
    section.advantages .items .item .title {
        font-size: 24px;
    }
    section.advantages .items .item .text {
        font-size: 16px;
    }
    section.advantages .items .item .text .text {
        margin-top: 4px;
    }
}

section.results {
    background: #052b4a;
    color: #faf3e6;
}
section.results .section-title {
    color: #faf3e6;
}
section.results .section-subtitle {
    color: #faf3e6;
}
section.results .impact-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 30px;
    margin-top: 64px;
}
section.results .card {
    border-radius: 2px;
    display: flex;
    gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    border: 1px solid #ebe2cf;
    padding: 40px 20px;
}
section.results .card.tall {
    grid-row: span 2;
    justify-content: center;
}
section.results .kicker {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #faf3e6;
}
section.results .note {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #faf3e6;
}
section.results .number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: 80px;
    line-height: 0.77;
}
section.results .number .percent {
    font-size: 0.8em;
    line-height: 1;
}
section.results .odometer-col {
    position: relative;
    overflow: hidden;
    height: 1em;
    width: 0.66em;
    display: inline-block;
}
section.results .odometer-stack {
    display: flex;
    flex-direction: column;
    will-change: transform;
    transform: translateY(0);
    transition: transform 600ms cubic-bezier(0.2, 0.7, 0, 1);
}
section.results .odometer-digit {
    display: block; /* <- key: block-level line boxes */
    height: 1em;
    line-height: 1em;
    text-align: left;
}
section.results .card:nth-of-type(2) .odometer-col {
    transition-delay: 40ms;
}
section.results .card:nth-of-type(3) .odometer-col {
    transition-delay: 80ms;
}
@media (prefers-reduced-motion: reduce) {
    section.results .number .odometer-stack {
        transition: none !important;
        transform: none !important;
    }
}
@media only screen and (max-width: 950px) {
    section.results .section-title {
        font-size: 36px;
    }
    section.results .impact-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    section.results .card {
        padding: 24px 20px;
    }
    section.results .card.tall {
        grid-row: auto;
    }
    section.results .kicker {
        font-size: 24px;
    }
    section.results .number {
        font-size: 48px;
    }
}

/* 3) Clip the gradient to the actual text glyphs */
.results .number .percent,
.results .number .val,
.results .number .odometer,
.results .number .odometer-col,
.results .number .odometer-digit {
    background-image: var(--result-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

section.get-started .section-title {
    text-align: left;
}
section.get-started .parts {
    display: flex;
    gap: 64px;
}
section.get-started .parts .part {
    flex: 1 1 0;
}
section.get-started .image {
    background: #f0e8d7;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}
section.get-started .image img {
    max-width: 100%;
    border-radius: 2px;
}
section.get-started .part-info {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #052b4a;
}
section.get-started .part-info .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    gap: 16px;
    padding: 16px 0;
}
section.get-started .part-info .list {
    padding: 24px 0;
    border-top: 1px solid #ebe2cf;
    border-bottom: 1px solid #ebe2cf;
}
section.get-started .part-info .list ul {
    list-style: none;
    padding: 0;
}
section.get-started .part-info .list ul li {
    padding-left: 35px;
    background-image: url("../images/icons/bullet.svg");
    background-repeat: no-repeat;
    background-position: left top 4px;
    margin-top: 8px;
}
section.get-started .part-info .button-cta {
    width: 100%;
}
section.get-started .part-info .part-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
}
section.get-started .part-info .part-bottom p {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #052b4a;
}
@media only screen and (max-width: 950px) {
    section.get-started .parts {
        flex-direction: column-reverse;
        gap: 24px;
    }
    section.get-started .parts .part {
        width: 100% !important;
    }
    section.get-started .image {
        height: auto;
        margin-top: 24px;
    }
    section.get-started .part-info {
        font-size: 16px;
    }
    section.get-started .part-info .row {
        margin-top: 8px;
    }
    section.get-started .part-info .row .text {
        text-align: right;
    }
    section.get-started .part-info .button-cta {
        margin-top: 16px;
    }
    section.get-started .part-info .part-bottom {
        flex-direction: column;
        gap: 10px;
        margin-top: 16px;
    }
}

section.one-drink {
    text-align: center;
}
section.one-drink .image {
    display: inline-block;
    margin: auto;
    margin-top: 48px;
}
section.one-drink .image img {
    max-width: 100%;
}
section.one-drink .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #052b4a;
    margin: auto;
    margin-top: 48px;
    max-width: 576px;
}
section.one-drink .subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: #052b4a;
    margin: auto;
    margin-top: 20px;
    max-width: 790px;
}
section.one-drink .view-more {
    display: inline-block;
    margin-top: 76px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    text-transform: uppercase;
    color: #faf3e6;
    padding: 12px 24px;
    background: #052b4a;
    border-radius: 2px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 250ms ease;
}
section.one-drink .view-more:hover {
    background: #0a3a5e;
}
section.one-drink .ingredients.boxes {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 64px;
}
section.one-drink .ingredients.boxes.more {
    margin-top: 30px;
    transition: max-height 350ms ease, opacity 250ms ease;
}
section.one-drink .ingredients.boxes.more.is-collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}
section.one-drink .ingredients.boxes.more.is-expanded {
    max-height: 700px;
    opacity: 1;
}
section.one-drink .box {
    width: calc(25% - 22.5px);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
section.one-drink .box .image {
    height: 140px;
    position: relative;
    margin: 0;
    font-size: 0;
}
section.one-drink .box .image .badge {
    position: absolute;
    right: 12px;
    top: 12px;
    background: #052b4a;
    border-radius: 2px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #faf3e6;
}
section.one-drink .box .image .badge img {
    max-width: 14px;
    max-height: 14px;
    filter: brightness(0) invert(1);
}
section.one-drink .box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.one-drink .box .text {
    padding: 20px;
    background: #f0e8d7;
    text-align: center;
    flex-grow: 1;
}
section.one-drink .box .text .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #052b4a;
    margin: 0;
}
section.one-drink .box .text .info {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #052b4a;
    margin-top: 4px;
}
section.one-drink .marquee {
    overflow: hidden;
    position: relative;
    margin-top: 64px;
    touch-action: pan-y;
    display: none;
}
section.one-drink .marquee .marquee-inner {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
    will-change: transform;
}
section.one-drink .marquee .marquee-inner .box {
    max-width: 270px;
    flex: 0 0 auto;
    margin-right: 16px;
}
@media only screen and (max-width: 950px) {
    section.one-drink .marquee {
        display: block;
    }
    section.one-drink .ingredients.boxes,
    section.one-drink .view-more {
        display: none;
    }
    section.one-drink .image {
        margin-top: 24px;
    }
    section.one-drink .title {
        font-size: 24px;
        margin-top: 24px;
    }
}

section.cost-breakdown .parts {
    display: flex;
    gap: 64px;
    margin-top: 40px;
}
section.cost-breakdown .parts .part:nth-child(1) {
    width: calc(45% - 32px);
}
section.cost-breakdown .parts .part:nth-child(2) {
    width: calc(55% - 32px);
}
section.cost-breakdown .image {
    position: relative;
    z-index: 3;
}
section.cost-breakdown .image img {
    max-width: 100%;
}
section.cost-breakdown .image-description {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.25;
    color: #052b4a;
    margin-top: 28px;
}
section.cost-breakdown .items .item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    padding-left: 35px;
    padding-right: 20px;
    background-image: url("../images/icons/bullet.svg");
    background-repeat: no-repeat;
    background-position: left top;
    margin-top: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #052b4a;
    position: relative;
}
section.cost-breakdown .items .item .cost {
    font-weight: 700;
}
section.cost-breakdown .items .item:before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
    width: 114px;
    height: 1px;
    background: #ebe2cf;
}
section.cost-breakdown .row {
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: #052b4a;
    background: #f0e8d7;
}
section.cost-breakdown .row .cost {
    font-weight: 700;
    white-space: nowrap;
}
section.cost-breakdown .row.total {
    margin-top: 24px;
}
section.cost-breakdown .row.all {
    background: #052b4a;
    color: #faf3e6;
}
@media only screen and (max-width: 950px) {
    section.cost-breakdown .parts {
        flex-direction: column;
        gap: 32px;
        margin-top: 24px;
    }
    section.cost-breakdown .parts .part {
        width: 100% !important;
    }
    section.cost-breakdown .image img {
        max-width: 190px;
        margin: auto;
    }
    section.cost-breakdown .image-description {
        font-size: 24px;
        margin-top: 32px;
        text-align: center;
    }
    section.cost-breakdown .items .item {
        font-size: 16px;
        margin-top: 16px;
    }
    section.cost-breakdown .items .item:before {
        width: 80px;
    }
    section.cost-breakdown .row {
        font-size: 16px;
        padding: 12px;
    }
    section.cost-breakdown .row.total {
        margin-top: 16px;
    }
}

section.cost-savings {
    background: #f0e8d7;
}
section.cost-savings .parts {
    display: flex;
    gap: 64px;
    margin-top: 40px;
}
section.cost-savings .parts .part:nth-child(1) {
    width: calc(45% - 32px);
}
section.cost-savings .parts .part:nth-child(2) {
    width: calc(55% - 32px);
}
section.cost-savings .image {
    position: relative;
    z-index: 3;
}
section.cost-savings .image img {
    max-width: 100%;
    border-radius: 2px;
}
section.cost-savings .items {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
section.cost-savings .items .item {
    display: flex;
    gap: 24px;
}
section.cost-savings .items .item .icon {
    height: 40px;
    width: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.cost-savings .items .item .icon img {
    max-width: 100%;
    max-height: 32px;
}
section.cost-savings .items .item .text {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.25;
    color: #052b4a;
}
@media only screen and (max-width: 950px) {
    section.cost-savings .section-title {
        font-size: 36px;
        text-align: center;
    }
    section.cost-savings .parts {
        flex-direction: column-reverse;
        gap: 32px;
        margin-top: 0;
    }
    section.cost-savings .parts .part {
        width: 100% !important;
    }
    section.cost-savings .items {
        margin-top: 32px;
    }
    section.cost-savings .items .item {
        font-size: 16px;
        gap: 16px;
    }
    section.cost-savings .items .item .text {
        font-size: 16px;
    }
    section.cost-savings .items .item .icon {
        height: 32px;
        width: 32px;
    }
}

section.difference .show-more {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #052b4a;
    text-align: center;
    padding: 20px;
    border: 1px solid #ebe2cf;
    border-top: none;
    cursor: pointer;
    transition: background 250ms ease;
}
section.difference .show-more:hover {
    background: #f0e8d7;
}
section.difference .wrapper-collapse {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease;
}
section.difference .wrapper-collapse.open {
    max-height: 650px;
    opacity: 1;
}
section.difference .compare {
    text-align: left;
    margin-top: 64px;
    width: 100%;
    border-collapse: collapse;
    /* tweak to taste */
}
section.difference .compare.collapse {
    margin-top: 0;
}
section.difference .compare.collapse td,
section.difference .compare.collapse th {
    border-top: none !important;
}
section.difference .compare .col-feature {
    width: 26%;
}
section.difference .compare .col-prod {
    width: 37%;
}
section.difference .compare td,
section.difference .compare th {
    padding: 20px;
    border: 1px solid #faf3e6;
}
section.difference .compare thead .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
section.difference .compare thead .row .image {
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    margin-right: 20px;
}
section.difference .compare thead th {
    background: #f0e8d7;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #052b4a;
}
section.difference .compare thead th.legend {
    color: #4b352a;
}
section.difference .compare tbody td {
    border: 1px solid #ebe2cf;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: #052b4a;
}
section.difference .compare tbody td.first {
    font-weight: 700;
    background: rgba(5, 43, 74, 0.1019607843);
    border: 1px solid #faf3e6;
}
section.difference .compare tbody td .yes {
    padding-left: 26px;
    background: url("../images/icons/check-2.svg") no-repeat left top 1px;
    background-size: 20px 20px;
}
section.difference .compare tbody td .no {
    padding-left: 26px;
    background: url("../images/icons/x.svg") no-repeat left top 1px;
    background-size: 20px 20px;
}
@media only screen and (max-width: 950px) {
    section.difference .compare {
        display: block;
    }
    section.difference .compare colgroup {
        display: none;
    }
    section.difference .compare td,
    section.difference .compare th {
        padding: 12px;
        display: block;
    }
    section.difference .compare thead tr {
        display: flex;
    }
    section.difference .compare thead tr th {
        width: 50%;
        /*
    display: flex;
    justify-content: center;
    align-items: center;
    */
    }
    section.difference .compare thead tr .row {
        flex-direction: column-reverse;
        gap: 16px;
    }
    section.difference .compare thead tr .row .image {
        margin-right: 0;
    }
    section.difference .compare thead tr .row .image img {
        max-height: 80px;
    }
    section.difference .compare thead th {
        font-size: 16px;
        text-align: center;
        line-height: 1.3;
    }
    section.difference .compare thead th.legend {
        display: none;
    }
    section.difference .compare tbody tr {
        display: flex;
        flex-wrap: wrap;
    }
    section.difference .compare tbody td {
        width: 50%;
        font-size: 14px;
    }
    section.difference .compare tbody td.first {
        width: 100%;
        text-align: center;
    }
    section.difference .compare tbody td .yes {
        padding-left: 0;
        padding-top: 20px;
        background: url("../images/icons/check-2.svg") no-repeat left top 1px;
        background-size: 15px 15px;
    }
    section.difference .compare tbody td .no {
        padding-left: 0;
        padding-top: 20px;
        background: url("../images/icons/x.svg") no-repeat left top 1px;
        background-size: 15px 15px;
    }
}

section.reviews {
    background: #052b4a;
}
section.reviews .section-title,
section.reviews .section-subtitle {
    color: #faf3e6;
}
section.reviews .marquee {
    overflow: hidden;
    position: relative;
    margin-top: 64px;
    touch-action: pan-y; /* allow vertical scroll; we handle horizontal dragging */
    user-select: none;
}
section.reviews .marquee .marquee-inner {
    display: flex;
    width: max-content; /* keeps content compact */
    animation: marquee 30s linear infinite;
    will-change: transform;
}
section.reviews .marquee .marquee-inner .item {
    flex: 0 0 auto;
    margin-right: 40px;
    max-width: 370px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #ebe2cf;
    border-radius: 2px;
}
section.reviews .marquee .marquee-inner .item .text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    color: #faf3e6;
    flex-grow: 1;
}
section.reviews .marquee .marquee-inner .item .author .name {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #faf3e6;
}
section.reviews .marquee .marquee-inner .item .author .about {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #faf3e6;
    margin-top: 4px;
}
section.reviews .stars {
    width: 108px;
    height: 20px;
    overflow: hidden;
}
section.reviews .stars img {
    width: 108px;
    height: 20px;
    max-width: none;
}
@media only screen and (max-width: 950px) {
    section.reviews .marquee {
        margin-top: 48px;
    }
    section.reviews .marquee .marquee-inner .item {
        padding: 24px;
        margin-right: 16px;
    }
    section.reviews .marquee .marquee-inner .item .text {
        font-size: 16px;
    }
    section.reviews .marquee .marquee-inner .item .author .name {
        font-size: 16px;
    }
    section.reviews .marquee .marquee-inner .item .author .about {
        font-size: 14px;
    }
}

section.simplicity .items {
    display: flex;
    gap: 36px;
    margin-top: 64px;
}
section.simplicity .items .item {
    flex: 1 1 0;
}
section.simplicity .items .item .image {
    height: 370px;
}
section.simplicity .items .item .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 2px;
}
section.simplicity .items .item .info {
    margin-top: 24px;
}
section.simplicity .items .item .info .title {
    display: flex;
    align-items: center;
    gap: 16px;
}
section.simplicity .items .item .info .title .number {
    font-weight: 700;
    font-size: 20px;
    line-height: 36px;
    color: #faf3e6;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #4b352a;
    border-radius: 2px;
}
section.simplicity .items .item .info .title .text {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #052b4a;
}
section.simplicity .items .item .info .content {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #052b4a;
    margin-top: 12px;
}
@media only screen and (max-width: 950px) {
    section.simplicity .items {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 48px;
    }
    section.simplicity .items .item {
        flex: 1 1 100%;
        max-width: 400px;
    }
    section.simplicity .items .item .image {
        height: 320px;
    }
    section.simplicity .items .item .info {
        margin-top: 16px;
    }
    section.simplicity .items .item .info .title .text {
        font-size: 24px;
    }
    section.simplicity .items .item .info .content {
        font-size: 16px;
        line-height: 1.5;
    }
}

section.guarantee .section-inner {
    background: #052b4a;
    padding: 64px;
}
section.guarantee .section-title,
section.guarantee .section-subtitle {
    color: #faf3e6;
}
section.guarantee .button-cta {
    margin-top: 50px;
}
@media only screen and (max-width: 950px) {
    section.guarantee .section-inner {
        padding: 60px 24px;
    }
    section.guarantee .button-cta {
        margin-top: 40px;
    }
}

section.faq .parts {
    display: flex;
    gap: 64px;
}
section.faq .parts .part:nth-child(1) {
    width: calc(50% - 32px);
}
section.faq .parts .part:nth-child(2) {
    width: calc(50% - 32px);
}
section.faq .items .item {
    padding: 24px 0;
    border-top: 1px solid #ebe2cf;
}
section.faq .items .item .title {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #052b4a;
    cursor: pointer;
}
section.faq .items .item .title .icon {
    height: 36px;
    width: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0e8d7;
    border-radius: 2px;
    transition: 0.5s;
}
section.faq .items .item .title .icon img {
    transition: transform 0.4s ease, filter 0.4s ease;
}
section.faq .items .item .text {
    padding-top: 0px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #052b4a;
    padding-right: 40px;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s;
    opacity: 0;
}
section.faq .items .item.open .title .icon {
    background: #052b4a;
}
section.faq .items .item.open .title .icon img {
    transform: rotate(45deg);
    filter: brightness(0) invert(1);
}
section.faq .items .item.open .text {
    padding-top: 8px;
    max-height: 200px;
    opacity: 1;
}
@media only screen and (max-width: 950px) {
    section.faq .parts {
        flex-direction: column;
        gap: 32px;
    }
    section.faq .parts .part {
        width: 100% !important;
    }
    section.faq .items .item {
        padding: 20px 0px;
    }
    section.faq .items .item .title {
        font-size: 18px;
    }
    section.faq .items .item .title .icon {
        height: 32px;
        width: 32px;
    }
    section.faq .items .item .title .icon img {
        max-width: 16px;
    }
    section.faq .items .item .text {
        font-size: 14px;
        padding-right: 0;
    }
}

footer {
    background: #f0e8d7;
    padding: 100px 0;
}
footer .row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
footer .menu .link {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #052b4a;
    padding-left: 30px;
    background: url("../images/icons/arrow-right.svg") no-repeat left top 1px;
    margin-top: 16px;
}
footer .menu .link:first-child {
    margin-top: 0;
}
footer .menu .copy {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #052b4a;
    margin-top: 24px;
}
@media only screen and (max-width: 950px) {
    footer {
        padding: 60px 0;
    }
    footer .row {
        flex-direction: column;
        gap: 36px;
    }
}

section.product {
    padding: 0;
}
section.product .parts {
    display: flex;
}
section.product .parts .part {
    width: 50%;
}
section.product .image {
    height: 100%;
    overflow: hidden;
    position: relative;
}
section.product .image img {
    height: 100%;
    width: auto;
    max-width: none;
    position: absolute;
    left: 0;
    bottom: 0;
}
section.product .part-info {
    padding: 86px 64px;
}
section.product .product-selection {
    margin-top: 32px;
}
section.product .product-selection .items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
section.product .product-selection .items .item {
    padding: 24px;
    padding-left: 56px;
    border: 1px solid #ebe2cf;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}
section.product .product-selection .items .item.selected {
    border-color: #052b4a;
}
section.product .product-selection .items .item.selected .mark {
    border: 6px solid #052b4a;
}
section.product .product-selection .items .item .mark {
    position: absolute;
    height: 20px;
    width: 20px;
    border: 2px solid #ebe2cf;
    border-radius: 100%;
    top: 30px;
    left: 24px;
}
section.product .product-selection .items .item .part-top .row {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}
section.product .product-selection .items .item .part-top .title {
    display: flex;
    align-items: center;
    gap: 12px;
}
section.product .product-selection .items .item .part-top .title .txt {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #052b4a;
}
section.product .product-selection .items .item .part-top .title .badge {
    background: #4b352a;
    color: #faf3e6;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.25;
    padding: 4px 8px;
    border-radius: 2px;
    white-space: nowrap;
}
section.product .product-selection .items .item .part-top .price {
    display: flex;
    align-items: center;
    gap: 8px;
}
section.product .product-selection .items .item .part-top .price .current {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #052b4a;
}
section.product .product-selection .items .item .part-top .price .del {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.5;
    text-decoration-line: line-through;
    color: #052b4a;
    opacity: 0.5;
}
section.product .product-selection .items .item .part-top .description {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
    color: #052b4a;
}
section.product .product-selection .items .item .part-top .serving {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #052b4a;
    white-space: nowrap;
}
section.product .product-selection .items .item .content {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #ebe2cf;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #052b4a;
}
section.product .product-selection .items .item .content ul {
    list-style: none;
    padding-left: 0;
}
section.product .product-selection .items .item .content ul li {
    padding-left: 30px;
    background-image: url("../images/icons/bullet.svg");
    background-repeat: no-repeat;
    background-position: left top 2px;
    margin-top: 8px;
}
section.product .product-selection .items .item .content ul li:first-child {
    margin-top: 0;
}
section.product .button-cta {
    width: 100%;
    margin-top: 32px;
}
section.product .part-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
}
section.product .part-bottom p {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #052b4a;
}
@media only screen and (max-width: 950px) {
    section.product .parts {
        flex-wrap: wrap;
    }
    section.product .parts .part {
        width: 100%;
    }
    section.product .part-info {
        padding: 50px 20px;
    }
    section.product .product-selection {
        margin-top: 24px;
    }
    section.product .product-selection .items .item {
        padding: 16px;
        padding-left: 38px;
    }
    section.product .product-selection .items .item .mark {
        height: 16px;
        width: 16px;
        left: 12px;
        top: 21px;
    }
    section.product .product-selection .items .item.selected .mark {
        border: 5px solid #052b4a;
    }
    section.product .product-selection .items .item .part-top .row {
        gap: 12px;
    }
    section.product .product-selection .items .item .part-top .title {
        gap: 8px;
    }
    section.product .product-selection .items .item .part-top .title .txt {
        font-size: 18px;
    }
    section.product .product-selection .items .item .part-top .title .badge {
        font-size: 12px;
        padding: 2px 6px;
    }
    section.product .product-selection .items .item .part-top .price {
        gap: 4px;
    }
    section.product .product-selection .items .item .part-top .price .current {
        font-size: 18px;
    }
    section.product .product-selection .items .item .part-top .price .del {
        font-size: 16px;
    }
    section.product .product-selection .items .item .part-top .description {
        font-size: 14px;
    }
    section.product .product-selection .items .item .part-top .serving {
        font-size: 14px;
    }
    section.product .product-selection .items .item .content {
        padding-top: 12px;
        margin-top: 12px;
        font-size: 14px;
    }
    section.product .product-selection .items .item .content ul li {
        padding-left: 22px;
        margin-top: 6px;
        background-position: left top 1px;
        background-size: 16px 16px;
    }
    section.product .part-bottom {
        flex-direction: column;
        gap: 10px;
        margin-top: 16px;
    }
}

.life-drive-sticky-header {
    background: #052b4a;
    padding: 10px 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}
.life-drive-sticky-header.visible {
    transform: translateY(0);
}
.life-drive-sticky-header .section-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}
.life-drive-sticky-header .text {
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
}
@media only screen and (max-width: 950px) {
    .life-drive-sticky-header {
        padding: 5px 0;
    }
    .life-drive-sticky-header .section-inner {
        gap: 16px;
        padding: 0 10px;
    }
    .life-drive-sticky-header .text {
        font-size: 12px;
    }
    .life-drive-sticky-header .button-cta {
        padding: 8px 8px;
        font-size: 14px;
        line-height: 1;
    }
}
