:root {
    --mw-navy: #031e69;
    --mw-navy2: #071a42;
    --mw-gold: #d4a84f;
    --mw-gold2: #f4cf79;
    --mw-cream: #fff7e6;
    --mw-ink: #15213d;
    --mw-muted: #617086;
    --mw-green: #149447;
    --mw-red: #e7433f;
    --mw-line: #d9e0ea;
    --mw-white: #fff;
    --mw-shadow: 0 18px 45px rgba(3, 30, 105, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--mw-ink);
    background: #fff;
    font-size: 18px;
    line-height: 1.7
}

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

a {
    color: inherit
}

.mw-wrap {
    width: min(1180px, calc(100% - 36px));
    margin: auto
}

.mw-top {
    background: var(--mw-navy);
    color: #fff;
    border-top: 4px solid var(--mw-gold);
    padding: 10px 0;
    font-weight: 800;
    text-align: center;
    letter-spacing: .02em
}

.mw-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e7ebf1
}

.mw-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 20px
}

.mw-brand {
    font-weight: 950;
    color: var(--mw-navy);
    font-size: 27px;
    text-decoration: none;
    letter-spacing: .03em
}

.mw-brand span {
    color: var(--mw-gold)
}

.mw-links {
    display: flex;
    align-items: center;
    gap: 24px
}

.mw-links a {
    text-decoration: none;
    font-weight: 750
}

.mw-menu {
    display: none;
    background: none;
    border: 1px solid var(--mw-line);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 24px
}

.mw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffd900;
    color: #05174f;
    text-decoration: none;
    font-weight: 950;
    border-radius: 12px;
    padding: 15px 24px;
    border: 2px solid #efc400;
    box-shadow: 0 7px 0 #d5a900;
    transition: .15s
}

.mw-btn:hover {
    transform: translateY(-2px)
}

.mw-btn.mw-btn-dark {
    background: var(--mw-navy);
    color: #fff;
    border-color: var(--mw-navy);
    box-shadow: none
}

.mw-hero {
    padding: 70px 0 48px;
    background: linear-gradient(135deg, #fff 0%, #fff8e8 60%, #eef4ff 100%)
}

.mw-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 50px
}

.mw-kicker {
    display: inline-flex;
    border: 1px solid #e3c169;
    color: #7b5d08;
    background: #fffaf0;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 850;
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.mw-hero h1 {
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.03;
    margin: 18px 0;
    color: var(--mw-navy)
}

.mw-hero p {
    font-size: 20px;
    max-width: 720px
}

.mw-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0
}

.mw-point {
    border-left: 4px solid var(--mw-gold);
    background: #fff;
    padding: 13px 15px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(3, 30, 105, .06);
    font-weight: 700
}

.mw-hero-visual {
    position: relative
}

.mw-hero-visual:before {
    content: "";
    position: absolute;
    inset: 10% 4%;
    background: radial-gradient(circle, #f5d687 0%, rgba(245, 214, 135, .2) 58%, transparent 70%);
    z-index: 0
}

.mw-hero-visual img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 25px 30px rgba(0, 0, 0, .16))
}

.mw-strip {
    background: var(--mw-navy);
    color: #fff;
    padding: 20px 0
}

.mw-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    font-weight: 800
}

.mw-section {
    padding: 72px 0
}

.mw-section.mw-soft {
    background: #f7f9fc
}

.mw-section.mw-cream {
    background: var(--mw-cream)
}

.mw-title {
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.15;
    color: var(--mw-navy);
    margin: 0 0 16px
}

.mw-lead {
    max-width: 850px;
    color: #46546a;
    font-size: 20px
}

.mw-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center
}

.mw-cardgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px
}

.mw-card {
    background: #fff;
    border: 1px solid var(--mw-line);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(3, 30, 105, .07)
}

.mw-card h3 {
    color: var(--mw-navy);
    margin-top: 0
}

.mw-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fff3ca;
    color: #8a6500;
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 950;
    margin-bottom: 14px
}

.mw-price-section {
    padding: 80px 0;
    background: #f6f8fc
}

.mw-price-head {
    text-align: center;
    margin-bottom: 34px
}

.mw-price-head .mw-title {
    max-width: 930px;
    margin: 0 auto 10px
}

.mw-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch
}

.mw-price {
    background: #fff;
    border: 1px solid #b8c4d6;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 800px;
    box-shadow: var(--mw-shadow)
}

.mw-price.pop {
    background: #fff0c8;
    border: 2px solid var(--mw-gold);
    transform: translateY(-14px)
}

.mw-price-top {
    background: var(--mw-navy);
    color: #fff;
    text-align: center;
    padding: 14px 10px;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.mw-price.pop .mw-price-top {
    background: linear-gradient(90deg, #b18734, #ffd982, #b18734);
    color: var(--mw-navy);
    font-weight: 950;
    font-size: 24px
}

.mw-price-body {
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center
}

.mw-price h3 {
    font-size: 43px;
    line-height: 1;
    margin: 6px 0;
    color: var(--mw-navy)
}

.mw-supply {
    color: #6e7d8c;
    font-size: 22px
}

.mw-price-img {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0
}

.mw-price-img img {
    max-height: 270px;
    width: auto
}

.mw-unit {
    font-size: 56px;
    line-height: 1;
    color: var(--mw-navy);
    font-weight: 950;
    margin: 10px 0
}

.mw-unit small {
    font-size: 20px;
    font-weight: 500;
    color: #768397
}

.mw-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 22px;
    text-align: left
}

.mw-features li {
    padding: 6px 0;
    font-size: 17px
}

.mw-ok {
    color: #0ca94f;
    font-weight: 950
}

.mw-no {
    color: #ef3e36;
    font-weight: 950
}

.mw-warn {
    color: #f3c500;
    font-weight: 950
}

.mw-price .mw-btn {
    width: 100%;
    font-size: 26px;
    padding: 18px
}

.mw-cards {
    margin: 12px auto 0;
    max-width: 260px
}

.mw-total {
    margin-top: 12px;
    color: #637187
}

.mw-total strong {
    color: var(--mw-navy);
    font-size: 21px
}

.mw-total s {
    color: #8d929b
}

.mw-guarantee {
    background: rgb(3, 30, 105);
    border-top: 4px solid rgb(212, 168, 79);
    color: #fff;
    padding: 64px 0
}

.mw-guarantee .mw-title {
    color: #fff
}

.mw-guarantee-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: center
}

.mw-guarantee p {
    font-size: 20px;
    color: #e6ecff
}

.mw-guarantee a {
    color: #ffd86f;
    font-weight: 850
}

.mw-ingredients {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px
}

.mw-ingredient {
    padding: 19px 20px;
    border: 1px solid #dce3ee;
    border-radius: 12px;
    background: #fff
}

.mw-ingredient strong {
    display: block;
    color: var(--mw-navy);
    font-size: 19px
}

.mw-reviewgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.mw-review {
    background: #fff;
    border: 1px solid #dce3ee;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3, 30, 105, .08)
}

.mw-review img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top
}

.mw-review-copy {
    padding: 22px
}

.mw-stars {
    color: #f5b800;
    letter-spacing: .08em
}

.mw-review h3 {
    color: var(--mw-navy);
    margin: 8px 0
}

.mw-faq {
    max-width: 920px;
    margin: 28px auto 0
}

.mw-faq details {
    border: 1px solid #dbe2ed;
    border-radius: 13px;
    background: #fff;
    margin: 12px 0;
    padding: 0 20px
}

.mw-faq summary {
    cursor: pointer;
    font-weight: 850;
    color: var(--mw-navy);
    padding: 20px 0
}

.mw-faq p {
    padding: 0 0 20px;
    margin: 0;
    color: #4c5b6d
}

.mw-cta {
    background: linear-gradient(135deg, #051d62, #092b88);
    color: #fff;
    padding: 64px 0
}

.mw-cta-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 40px
}

.mw-cta .mw-title {
    color: #fff
}

.mw-cta p {
    color: #dce5ff
}

.mw-footer {
    background: #061330;
    color: #cbd5eb;
    padding: 48px 0
}

.mw-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 30px
}

.mw-footer a {
    color: #fff;
    text-decoration: none
}

.mw-footer h3 {
    color: #fff
}

.mw-small {
    font-size: 15px;
    line-height: 1.6;
    color: #8f9bb2
}

.mw-article {
    max-width: 860px;
    margin: auto
}

.mw-article h1 {
    color: var(--mw-navy);
    font-size: 46px;
    line-height: 1.1
}

.mw-article h2 {
    color: var(--mw-navy);
    margin-top: 36px
}

.mw-breadcrumb {
    font-size: 15px;
    color: #6c788a;
    margin: 20px 0
}

.mw-list {
    padding-left: 22px
}

.mw-list li {
    margin: 8px 0
}

@media(max-width:900px) {
    .mw-menu {
        display: block
    }

    .mw-links {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 18px;
        flex-direction: column;
        border-bottom: 1px solid #dfe5ef
    }

    .mw-links.open {
        display: flex
    }

    .mw-hero-grid,
    .mw-two,
    .mw-guarantee-grid,
    .mw-cta-grid {
        grid-template-columns: 1fr
    }

    .mw-price-grid,
    .mw-cardgrid,
    .mw-reviewgrid {
        grid-template-columns: 1fr
    }

    .mw-price.pop {
        transform: none
    }

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

    .mw-ingredients {
        grid-template-columns: 1fr
    }

    .mw-footer-grid {
        grid-template-columns: 1fr
    }

    .mw-price {
        min-height: auto
    }

    .mw-price-img {
        height: 220px
    }

    .mw-price-img img {
        max-height: 210px
    }

    .mw-guarantee-grid {
        text-align: center
    }

    .mw-guarantee-grid img {
        max-width: 220px;
        margin: auto
    }

    .mw-cta-grid img {
        max-width: 300px;
        margin: auto
    }

    .mw-points {
        grid-template-columns: 1fr
    }
}