:root {
    --deep: #032737;
    --deep-2: #064154;
    --teal: #3DB1AA;
    --teal-light: #77d6d0;
    --mint: #eaf8f6;
    --paper: #ffffff;
    --ink: #102f3b;
    --muted: #55707a;
    --line: #d4e7e4;
    --shadow: 0 20px 55px rgba(3, 39, 55, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.75
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none
}


p {
    font-size: 1.25rem;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    background: #fff;
    padding: 12px;
    border-radius: 10px
}

.skip-link:focus {
    left: 12px;
    top: 12px
}

.topbar {
    background: var(--deep);
    color: #d7f3ef;
    padding: .55rem 0;
    font-size: .86rem
}

.navbar {
    background: rgba(255, 255, 255, .96) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.navbar-brand {
    font-weight: 900;
    color: var(--deep) !important;
    display: flex;
    align-items: center;
    gap: .55rem
}

.navbar-brand sup {
    font-size: .55em
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), #77d6d0);
    color: var(--deep);
    font-weight: 950
}

.nav-link {
    font-weight: 700;
    color: var(--ink) !important
}

.nav-link:hover {
    color: var(--teal) !important
}

.btn {
    font-weight: 800;
    border-radius: 999px;
    padding: .78rem 1.35rem
}

.btn-brand {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--deep);
    box-shadow: 0 12px 28px rgba(61, 177, 170, .22)
}

.btn-brand:hover,
.btn-brand:focus {
    background: #59c7c1;
    border-color: #59c7c1;
    color: var(--deep)
}

.btn-outline-brand {
    border: 1px solid var(--teal);
    color: var(--deep);
    background: #fff
}

.hero {
    overflow: hidden;
    padding: 6rem 0 4.5rem;
    background: radial-gradient(circle at 82% 28%, rgba(61, 177, 170, .25), transparent 30%), linear-gradient(135deg, #f7ffff 0%, #e9f8f6 55%, #d7f1ee 100%)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(61, 177, 170, .14);
    color: #16625e;
    padding: .42rem .85rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-size: .76rem;
    font-weight: 900
}

.eyebrow-dark {
    background: rgba(119, 214, 208, .14);
    color: var(--teal-light)
}

h1,
h2,
h3 {
    line-height: 1.15;
    letter-spacing: -.035em
}

h1 {
    font-size: clamp(2.5rem, 5.2vw, 5rem);
    font-weight: 950;
    margin: 1rem 0 1.25rem
}

h1 span {
    color: #177b76
}

h1 sup {
    font-size: .35em
}

.hero-sub {
    font-size: 1.25rem;
    font-weight: 750;
    color: #204a56;
    max-width: 54rem
}

.lead {
    /* font-size: 1.05rem; */
    color: var(--muted);
    max-width: 62rem;
    font-size: 1.25rem;
}

.hero-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem
}

.microcopy {
    font-size: .9rem;
    color: var(--muted);
    margin: .7rem 0 0
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1.1rem;
    margin-top: 1.6rem;
    font-size: .88rem;
    color: #24535b
}

.trust-strip span {
    display: flex;
    align-items: center
}

.product-glow {
    position: relative;
    padding: 1rem
}

.product-glow:before {
    content: "";
    position: absolute;
    width: 85%;
    aspect-ratio: 1;
    left: 8%;
    top: 6%;
    border-radius: 50%;
    background: rgba(61, 177, 170, .22);
    filter: blur(45px)
}

.product-glow img {
    position: relative;
    z-index: 1;
    margin: auto;
    width: min(100%, 500px);
    filter: drop-shadow(0 28px 30px rgba(3, 39, 55, .24))
}

.section {
    padding: 5.5rem 0
}

.section-soft {
    background: linear-gradient(180deg, #f5fcfb, #eaf8f6)
}

.section-dark,
.trust-section,
.benefits-section {
    background: var(--deep);
    color: #e8f7f5
}

.trust-section,
.benefits-section {
    padding: 5.5rem 0
}

.section-title {
    max-width: 850px;
    margin: 0 auto 2.8rem;
    text-align: center
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3.45rem);
    font-weight: 950;
    margin: 1rem 0
}

.section-title p {
    color: var(--muted)
}

.light-title h2 {
    color: #f5fffe
}

.light-title p {
    color: #bfe1dd
}

.section-footnote {
    color: #bfe1dd;
    text-align: center;
    margin: 2rem auto 0;
    font-size: .84rem
}

.trust-card,
.benefit-card,
.step-card {
    height: 100%;
    padding: 1.55rem;
    border-radius: 1.35rem;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .08)
}

.trust-card .number {
    color: var(--teal);
    font-size: 1.1rem;
    font-weight: 950
}

.trust-card h3,
.benefit-card h3,
.step-card h3 {
    font-weight: 900;
    margin: .65rem 0
}

.trust-card p,
.benefit-card p,
.step-card p {
    color: #45606a;
    margin: 0
}

.rating-banner {
    max-width: 860px;
    margin: 0 auto 1.7rem;
    background: var(--deep);
    color: #fff;
    border-radius: 1.1rem;
    padding: 1rem 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    flex-wrap: wrap
}

.stars {
    color: #f6a900;
    letter-spacing: .08em;
    font-weight: 900
}

.review-card-new {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: var(--shadow)
}

.review-card-new>img {
    width: 100%;
    height: 230px;
    object-fit: cover
}

.review-content {
    padding: 1.35rem
}

.sample-label {
    display: block;
    color: #a54b2f;
    font-size: .75rem;
    font-weight: 850;
    margin-bottom: .55rem
}

.review-content p {
    font-size: 1.03rem;
    margin: .7rem 0
}

.package-image {
    width: 100%;
    max-width: 250px;
    height: 220px;
    object-fit: contain;
    margin: 0 auto 1rem
}

.price-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.3rem;
    padding: 1.7rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(3, 39, 55, .06);
    position: relative
}

.price-card.popular {
    border: 2px solid var(--teal);
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(61, 177, 170, .2)
}

.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--deep);
    padding: .38rem .9rem;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 900
}

.package-meta {
    color: #177b76;
    font-weight: 850
}

.section-image {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow)
}

.section h2 {
    font-weight: 950;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 1rem 0
}

.section h3 {
    font-weight: 900;
    font-size: 1.18rem;
    margin-top: 1.4rem
}

.section p {
    color: var(--muted);
}

.notice {
    margin-top: 1.2rem;
    border-left: 5px solid var(--teal);
    padding: 1rem 1.15rem;
    background: #fff;
    border-radius: .8rem;
    color: #38545d
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem
}

.step-card span {
    display: inline-block;
    color: #177b76;
    background: #eaf8f6;
    padding: .3rem .65rem;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 900
}

.closing-line {
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
    color: #d5f0ec !important;
    font-size: 1.08rem
}

.narrow {
    max-width: 920px
}

.ingredient-card {
    height: 100%;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    box-shadow: 0 10px 30px rgba(3, 39, 55, .06)
}

.ingredient-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: .95rem
}

.ingredient-card h3 {
    margin: .9rem 0 .55rem;
    font-size: 1.05rem
}

.ingredient-card p {
    font-size: .92rem;
    margin: 0;
    color: var(--muted)
}

.bonus-card {
    height: 100%;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: var(--shadow)
}

.bonus-card img {
    width: 100%;
    height: 230px;
    object-fit: cover
}

.bonus-card div {
    padding: 1.4rem
}

.bonus-card h3 {
    font-size: 1.15rem;
    font-weight: 900
}

.bonus-card p {
    margin: 0;
    color: var(--muted)
}

.benefit-intro {
    max-width: 960px;
    margin: 0 auto 2.2rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(119, 214, 208, .22);
    border-radius: 1.35rem;
    padding: 1.7rem
}

.benefit-intro p {
    color: #d6efec !important;
    margin-bottom: 1rem
}

.benefit-intro p:last-child {
    margin-bottom: 0
}

.advantage-card {
    height: 100%;
    background: linear-gradient(145deg, #fff, #effaf8);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    padding: 1.6rem;
    box-shadow: var(--shadow)
}

.advantage-card span {
    font-weight: 950;
    color: #177b76
}

.advantage-card h3 {
    font-weight: 900;
    margin: .75rem 0
}

.advantage-card p {
    color: var(--muted) !important;
    margin: 0
}

.guarantee-section {
    background: linear-gradient(135deg, #f5fcfb, #fff)
}

.guarantee-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: var(--deep);
    box-shadow: var(--shadow)
}

.guarantee-box h2 {
    color: #fff
}

.guarantee-box p {
    color: #c7e4e1 !important
}

.guarantee-box img {
    width: 220px;
    max-width: 100%;
    margin: auto
}

.faq-section {
    background: #fff
}

.faq-shell {
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    overflow: hidden
}

.accordion-item {
    border-color: var(--line)
}

.accordion-button {
    font-weight: 850;
    color: var(--deep)
}

.accordion-button:not(.collapsed) {
    background: #eaf8f6;
    color: var(--deep);
    box-shadow: none
}

.accordion-button:focus {
    box-shadow: 0 0 0 .2rem rgba(61, 177, 170, .25)
}

.accordion-body {
    color: var(--muted)
}

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--deep), var(--deep-2) 45%, var(--teal));
    color: #fff
}

.final-cta h2 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    font-weight: 950;
    margin: 1rem auto
}

.final-cta p {
    max-width: 760px;
    margin: 0 auto 1.6rem;
    color: #d6f0ed;
    font-size: 1.1rem
}

footer {
    background: #021d29;
    color: #b8d5d2;
    padding: 4rem 0 2rem
}

footer h2,
footer h3 {
    color: #fff;
    font-weight: 900
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0
}

footer li {
    margin: .45rem 0
}

footer a {
    color: #b8d5d2
}

footer a:hover {
    color: var(--teal-light)
}

footer hr {
    border-color: rgba(255, 255, 255, .15)
}

.sticky-mobile-cta {
    display: none
}

@media(max-width:1199px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:991px) {
    .hero {
        padding: 4.8rem 0 3.5rem
    }

    .section,
    .trust-section,
    .benefits-section {
        padding: 4.5rem 0
    }

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

    .price-card.popular {
        transform: none
    }

    .guarantee-box {
        grid-template-columns: 1fr;
        text-align: center
    }
}

@media(max-width:767px) {
    body {
        padding-bottom: 76px
    }

    .hero {
        padding: 3.7rem 0 3rem
    }

    .hero-actions .btn {
        width: 100%
    }

    .trust-strip {
        display: grid
    }

    .section,
    .trust-section,
    .benefits-section {
        padding: 3.7rem 0
    }

    .steps-grid {
        grid-template-columns: 1fr
    }

    .product-glow img {
        width: min(86%, 420px)
    }

    .ingredient-card img {
        height: 190px
    }

    .review-card-new>img {
        height: 250px
    }

    .sticky-mobile-cta {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1035;
        background: rgba(255, 255, 255, .96);
        padding: .65rem 1rem;
        border-top: 1px solid var(--line)
    }

    .sticky-mobile-cta .btn {
        width: 100%
    }

    .topbar {
        font-size: .76rem
    }

    .guarantee-box {
        padding: 1.7rem
    }

    .guarantee-box img {
        width: 170px
    }
}


/* ========================================
   MEMO MATRIX PREMIUM PRICING SECTION
======================================== */

.memo-pricing-section {
    position: relative;
    background:
        linear-gradient(
            135deg,
            #eef4f3 0%,
            #ffffff 50%,
            #e8f3f1 100%
        );
    padding-bottom: 90px;
    overflow: hidden;
}


/* ===============================
   TOP BANNER
================================ */

.pricing-banner {
    position: relative;
    background:
        linear-gradient(
            135deg,
            #032737,
            #07515d,
            #3DB1AA
        );

    padding: 32px 20px 75px;
    text-align: center;
}


.pricing-banner::after {
    content: "";

    position: absolute;

    bottom: -1px;
    left: 0;

    width: 100%;
    height: 55px;

    background: #eef4f3;

    clip-path: polygon(
        0 0,
        35% 0,
        50% 85%,
        65% 0,
        100% 0,
        100% 100%,
        0 100%
    );
}


.pricing-banner h2 {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3.5rem);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -1px;
}


/* ===============================
   CONTAINER
================================ */

.pricing-container {
    position: relative;

    z-index: 3;

    margin-top: -10px;
}


/* ===============================
   INTRO
================================ */

.pricing-intro {
    max-width: 750px;

    margin: 0 auto 45px;

    text-align: center;
}


.pricing-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    padding: 8px 18px;

    border-radius: 50px;

    background: rgba(61, 177, 170, 0.15);

    color: #032737;

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.pricing-intro p {
    color: #52646a;

    font-size: 1rem;

    line-height: 1.7;

    margin: 0;
}


/* ===============================
   PACKAGE CARD
================================ */

.memo-package-card {
    position: relative;

    height: 100%;

    background: #ffffff;

    border: 2px solid rgba(3, 39, 55, 0.18);

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(3, 39, 55, 0.15);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.memo-package-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 55px rgba(3, 39, 55, 0.22);
}


/* ===============================
   PACKAGE TOP
================================ */

.package-top {
    background:
        linear-gradient(
            135deg,
            #032737,
            #07515d
        );

    color: #ffffff;

    text-align: center;

    padding: 13px 10px;
}


.package-top span {
    font-size: 1rem;

    font-weight: 800;

    letter-spacing: 1.2px;
}


/* ===============================
   MOST POPULAR RIBBON
================================ */

.popular-package {
    border: 3px solid #3DB1AA;

    transform: translateY(-15px);
}


.popular-package:hover {
    transform: translateY(-25px);
}


.popular-ribbon {
    background:
        linear-gradient(
            90deg,
            #032737,
            #07515d
        );

    color: #ffffff;

    text-align: center;

    padding: 13px;

    font-size: 1rem;

    font-weight: 900;

    letter-spacing: 1px;
}


/* ===============================
   PACKAGE CONTENT
================================ */

.package-content {
    padding:
        28px
        30px
        32px;

    text-align: center;
}


/* ===============================
   PACKAGE HEADINGS
================================ */

.package-content h3 {
    margin-bottom: 5px;

    color: #032737;

    font-size: clamp(2rem, 4vw, 3.3rem);

    font-weight: 900;

    letter-spacing: 1px;
}


.supply-text {
    margin-bottom: 20px;

    color: #263c45;

    font-size: 1.25rem;

    font-weight: 700;
}


/* ===============================
   PRODUCT IMAGE
================================ */

.package-image-wrapper {
    height: 220px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 15px;
}


.package-image-wrapper img {
    max-width: 100%;

    max-height: 210px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 18px 18px rgba(3, 39, 55, 0.2)
        );
}


.popular-image img {
    transform: scale(1.08);
}


/* ===============================
   PRICE AREA
================================ */

.price-placeholder {
    display: flex;

    flex-direction: column;

    gap: 6px;

    margin:
        10px 0
        20px;
}


.price-label {
    color: #597078;

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 1px;
}


.price-placeholder strong {
    color: #032737;

    font-size: 1.3rem;

    font-weight: 900;
}


.highlight-price strong {
    color: #168d88;
}


/* ===============================
   PACKAGE BENEFITS
================================ */

.package-benefits {
    min-height: 125px;

    margin-bottom: 22px;

    text-align: left;
}


.benefit-item {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 10px;
}


.benefit-item span {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 24px;

    height: 24px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #3DB1AA;

    color: #ffffff;

    font-weight: 900;
}


.benefit-item p {
    margin: 0;

    color: #3d4f56;

    font-size: 0.95rem;

    font-weight: 600;
}


/* ===============================
   BUY BUTTON
================================ */

.package-buy-button {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    width: 100%;

    padding: 16px 20px;

    border: 2px solid #c69200;

    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            #fff49a 0%,
            #ffd21c 45%,
            #ffbd00 100%
        );

    color: #032737;

    text-decoration: none;

    font-size: 1.7rem;

    font-weight: 900;

    letter-spacing: 1px;

    box-shadow:
        0 8px 0 #d89d00,
        0 15px 25px rgba(3, 39, 55, 0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.package-buy-button:hover {
    color: #032737;

    transform: translateY(-3px);

    box-shadow:
        0 11px 0 #d89d00,
        0 20px 30px rgba(3, 39, 55, 0.2);
}


.package-buy-button:active {
    transform: translateY(4px);

    box-shadow:
        0 4px 0 #d89d00;
}


/* ===============================
   CART ICON
================================ */

.cart-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: #3DB1AA;

    color: #ffffff;

    font-size: 1.4rem;
}


/* ===============================
   SECURE TEXT
================================ */

.secure-text {
    margin:
        18px 0
        0;

    color: #73858b;

    font-size: 0.8rem;

    font-weight: 600;
}


/* ===============================
   FOOTER NOTE
================================ */

.pricing-footer-note {
    max-width: 750px;

    margin:
        55px auto 0;

    padding: 25px;

    text-align: center;

    background: rgba(255, 255, 255, 0.75);

    border:
        1px solid
        rgba(61, 177, 170, 0.25);

    border-radius: 18px;

    box-shadow:
        0 10px 30px
        rgba(3, 39, 55, 0.08);
}


.pricing-footer-note strong {
    display: block;

    margin-bottom: 8px;

    color: #032737;

    font-size: 1.1rem;
}


.pricing-footer-note p {
    margin: 0;

    color: #607278;

    line-height: 1.7;
}


/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 991px) {

    .popular-package {
        transform: none;
    }

    .popular-package:hover {
        transform: translateY(-10px);
    }

}


@media (max-width: 767px) {

    .pricing-banner {
        padding:
            30px 15px
            65px;
    }

    .pricing-banner h2 {
        font-size: 2rem;
    }

    .package-content {
        padding: 25px 20px;
    }

    .package-image-wrapper {
        height: 190px;
    }

    .package-image-wrapper img {
        max-height: 180px;
    }

    .package-buy-button {
        font-size: 1.4rem;
    }

}