:root {
    --navy: #151a17;
    --navy2: #202722;
    --blue: #267052;
    --cyan: #d5f06b;
    --ink: #181c19;
    --muted: #626a64;
    --line: #dfe2db;
    --soft: #f3f2ec;
    --white: #fff;
    --radius: 18px;
    --shadow: 0 20px 55px rgba(22, 28, 23, .1)
}

.product-slider {
    position: relative;
    width: min(100%, 430px);
    aspect-ratio: 1/1;
    margin: 26px 0 24px;
    border-radius: 20px;
    overflow: hidden;
    background: #132338;
    box-shadow: 0 18px 50px #0006;
    touch-action: pan-y
}

.slider-track,
.slide {
    position: absolute;
    inset: 0
}

.slide {
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease
}

.slide.is-active {
    opacity: 1;
    visibility: visible
}

.slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.slider-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff4d;
    border-radius: 50%;
    background: #07111fb8;
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    display: grid;
    place-items: center
}

.slider-prev {
    left: 12px
}

.slider-next {
    right: 12px
}

.slider-dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 13px;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 100px;
    background: #07111fa8
}

.slider-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffffff70
}

.slider-dots button.is-active {
    width: 20px;
    border-radius: 10px;
    background: #fff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased
}

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

button {
    cursor: pointer
}

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

h1,
h2,
h3,
p {
    margin-top: 0
}

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

h1 {
    font-size: clamp(2.55rem, 7vw, 5.6rem);
    margin-bottom: 24px
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.65rem);
    margin-bottom: 20px
}

h3 {
    font-size: 1.2rem
}

p {
    color: var(--muted)
}

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

.narrow {
    width: min(780px, calc(100% - 36px));
    margin: auto
}

.center {
    text-align: center
}

.section {
    padding: 88px 0
}

.eyebrow {
    font-size: .76rem;
    letter-spacing: .16em;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 14px
}

.section-lead,
.lead {
    font-size: clamp(1.05rem, 2vw, 1.24rem);
    line-height: 1.65
}

.section-head {
    max-width: 760px;
    margin: 0 auto 46px
}

.offer-bar {
    background: linear-gradient(90deg, #1265dc, #20a8ec);
    color: white;
    text-align: center;
    padding: 9px 12px;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .04em
}

.offer-bar span {
    margin: 0 8px
}

.nav {
    height: 70px;
    padding: 0 max(18px, calc((100% - 1180px)/2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #edf0f3;
    position: relative;
    z-index: 4
}

.brand {
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -.02em
}

.brand span {
    display: inline-grid;
    place-items: center;
    background: var(--navy);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    margin-right: 8px
}

.nav-cta,
.sticky-cta button {
    border: 0;
    background: var(--navy);
    color: white;
    padding: 11px 17px;
    border-radius: 10px;
    font-weight: 800
}

.hero {
    background: radial-gradient(circle at 65% 30%, #183d66 0, #09192b 33%, #06101d 72%);
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 580px);
    gap: 55px;
    align-items: center;
    padding: 70px max(18px, calc((100% - 1180px)/2)) 86px;
    overflow: hidden
}

.hero h1 {
    max-width: 700px
}

.hero h1 em {
    color: var(--cyan);
    font-style: normal
}

.hero p {
    color: #b9c6d6
}

.hero .eyebrow {
    color: #65d9ff
}

.hero .lead {
    max-width: 660px
}

.hero-solution {
    font-size: 1.05rem
}

.hero-solution strong {
    color: #fff
}

.hero-media {
    position: relative
}

.hero-media:before {
    content: "";
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(84, 211, 255, .2);
    border-radius: 32px;
    transform: rotate(3deg)
}

.hero-media img {
    border-radius: 24px;
    position: relative;
    box-shadow: 0 28px 80px #0009
}

.floating-card {
    position: absolute;
    left: -28px;
    bottom: -28px;
    background: white;
    color: var(--ink);
    padding: 15px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column
}

.floating-card span {
    font-size: .8rem;
    color: var(--muted)
}

.btn {
    border: 0;
    border-radius: 12px;
    padding: 16px 22px;
    font-weight: 850;
    letter-spacing: .01em;
    min-height: 54px;
    transition: transform .2s, box-shadow .2s
}

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

.btn-primary {
    background: linear-gradient(135deg, #1685ff, #095bd9);
    color: #fff;
    box-shadow: 0 12px 30px #0871e85c
}

.btn-dark {
    background: var(--navy);
    color: white
}

.hero-notes {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 22px;
    color: #d7e2ee;
    font-size: .82rem
}

.problem {
    background: var(--soft)
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 42px
}

.problem-grid article {
    background: white;
    border: 1px solid var(--line);
    padding: 25px;
    border-radius: 18px
}

.problem-grid span {
    font-size: .75rem;
    font-weight: 900;
    color: var(--blue)
}

.problem-grid p {
    font-size: .92rem;
    margin: 0
}

.statement {
    text-align: center;
    font-size: clamp(1.35rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--ink);
    margin: 46px auto 0
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.compare-grid article {
    padding: 40px;
    border-radius: var(--radius)
}

.compare-grid .before {
    background: #f5f5f5;
    border: 1px solid #ddd
}

.compare-grid .after {
    background: var(--navy);
    color: #fff
}

.compare-grid .after p,
.compare-grid .after li {
    color: #c7d2df
}

.compare-label {
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .15em
}

.after .compare-label {
    color: var(--cyan)
}

.compare-grid ul {
    padding: 0;
    list-style: none;
    margin: 25px 0 0
}

.compare-grid li {
    padding: 12px 0;
    border-top: 1px solid #dfe3e7;
    color: #596574
}

.after li {
    border-color: #2b394a
}

.compare-grid li:before {
    content: "×";
    color: #b24c4c;
    font-weight: 900;
    margin-right: 10px
}

.after li:before {
    content: "✓";
    color: #55dfb2
}

.solution,
.features,
.checkout {
    background: #f6f8fb
}

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

.reverse>div:first-child {
    order: 2
}

.image-card {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: white
}

.image-card img {
    width: 100%;
    height: auto
}

.check-list p {
    display: grid;
    gap: 2px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    margin: 0
}

.check-list b {
    color: var(--ink)
}

.audience {
    background: var(--navy);
    color: white
}

.audience .eyebrow {
    color: var(--cyan)
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.audience-grid article {
    border: 1px solid #26374b;
    background: #0c1a2b;
    padding: 30px;
    border-radius: 20px
}

.audience-grid p {
    color: #aebdcd
}

.audience-grid small {
    color: #68d7ff
}

.word {
    display: inline-block;
    color: var(--cyan);
    font-weight: 900;
    letter-spacing: .13em;
    margin-bottom: 30px
}

.plain-list,
.package-list {
    padding: 0;
    list-style: none
}

.plain-list li,
.package-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line)
}

.plain-list li:before,
.package-list li:before {
    content: "✓";
    color: var(--blue);
    font-weight: 900;
    margin-right: 10px
}

.steps {
    background: #fff
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.steps-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px
}

.steps-grid b {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    margin-bottom: 24px
}

.wide-image {
    width: min(800px, 100%);
    margin: 32px auto 0;
    border-radius: 24px
}

.feature-list article {
    display: flex;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line)
}

.feature-list article>span {
    flex: 0 0 43px;
    height: 43px;
    border-radius: 12px;
    background: #e5f2ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-weight: 900
}

.feature-list h3,
.feature-list p {
    margin-bottom: 5px
}

.fine {
    font-size: .78rem
}

.package {
    background: #fff
}

.trust {
    background: #edf6ff
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px
}

.trust-row span {
    background: white;
    border-radius: 100px;
    padding: 11px 16px;
    font-size: .85rem;
    font-weight: 700
}

.offer {
    background: var(--navy);
    color: white
}

.offer-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.offer p {
    color: #b8c5d3
}

.value-stack {
    background: white;
    color: var(--ink);
    padding: 28px;
    border-radius: 22px
}

.value-stack p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
    margin: 0;
    color: var(--muted)
}

.value-stack b {
    color: var(--ink)
}

.price-pending {
    text-align: center;
    background: #f0f5fa;
    padding: 16px;
    border-radius: 12px;
    margin: 18px 0;
    font-weight: 850
}

.value-stack .btn {
    width: 100%
}

.accordion details {
    border-bottom: 1px solid var(--line)
}

.accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-weight: 800;
    display: flex;
    justify-content: space-between
}

.accordion summary::-webkit-details-marker {
    display: none
}

.accordion summary span {
    font-size: 1.35rem;
    color: var(--blue)
}

.accordion details p {
    padding-right: 25px
}

.risk {
    background: #f6f8fb
}

.shield {
    margin: 0 auto 18px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #dff8ee;
    color: #0b9870;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    font-weight: 900
}

.checkout-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: start
}

.checkout-copy {
    position: sticky;
    top: 20px
}

.checkout-copy img {
    margin-top: 28px;
    border-radius: 22px
}

.checkout form {
    background: #fff;
    padding: 32px;
    border-radius: 22px;
    box-shadow: var(--shadow)
}

.form-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
    margin-bottom: 20px
}

.form-top span {
    font-size: .75rem;
    color: var(--blue);
    font-weight: 900;
    letter-spacing: .12em
}

label {
    display: block;
    font-weight: 700;
    font-size: .9rem;
    margin: 15px 0
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

input,
select,
textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    padding: 13px 14px;
    border: 1px solid #cad2dc;
    border-radius: 10px;
    background: white;
    color: var(--ink)
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #d7ebff;
    border-color: var(--blue)
}

label small {
    display: none;
    color: #b12626;
    margin-top: 5px
}

.form-notice {
    font-size: .78rem;
    background: #f3f6f9;
    color: #5d6878;
    padding: 12px;
    border-radius: 10px;
    margin: 18px 0
}

.submit {
    width: 100%
}

.privacy {
    text-align: center;
    font-size: .73rem;
    margin: 10px 0 0
}

footer {
    background: #050b13;
    color: white;
    padding: 44px 18px;
    text-align: center
}

footer .brand {
    color: white
}

footer p {
    margin: 14px 0;
    color: #9dabbc
}

footer small {
    color: #718094
}

.sticky-cta {
    position: fixed;
    z-index: 20;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-top: 1px solid var(--line);
    padding: 9px 14px;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -8px 30px #07111f1a;
    transform: translateY(110%);
    transition: transform .25s
}

.sticky-cta div {
    display: flex;
    flex-direction: column
}

.sticky-cta span {
    font-size: .72rem;
    color: var(--muted)
}

.visual-showcase {
    background: #fbfbf8
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .75fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px
}

.showcase-grid figure {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #202722
}

.showcase-grid .showcase-large {
    grid-row: 1/3
}

.showcase-grid .showcase-wide {
    grid-row: 1/3
}

.showcase-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.showcase-grid figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 55px 18px 16px;
    background: linear-gradient(transparent, #101511e8);
    color: #fff;
    display: flex;
    flex-direction: column
}

.showcase-grid figcaption span {
    font-size: .76rem;
    color: #c9d0ca
}

.hero-offer {
    width: min(100%, 430px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: -8px 0 14px;
    padding: 13px 16px;
    border: 1px solid #d5f06b52;
    border-radius: 10px;
    background: #d5f06b0d
}

.hero-offer span {
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    color: #d7ddd8
}

.hero-offer strong {
    font-size: 1.35rem;
    color: #fff;
    white-space: nowrap
}

.offer .section-head {
    margin-bottom: 38px
}

.offer-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 920px;
    margin: auto
}

.offer-card {
    position: relative;
    background: #fafaf7;
    color: var(--ink);
    padding: 32px;
    border: 1px solid #ffffff1f;
    border-radius: 16px
}

.offer-card.featured {
    border: 2px solid var(--cyan)
}

.popular {
    position: absolute;
    right: 20px;
    top: -14px;
    padding: 7px 12px;
    border-radius: 100px;
    background: var(--cyan);
    color: var(--navy);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .1em
}

.offer-name {
    color: var(--blue) !important;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .14em
}

.offer-card h3 {
    font-size: 1.45rem
}

.offer-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    margin: 14px 0 22px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    object-fit: contain;
    object-position: center
}

.offer-card ul {
    padding: 0;
    list-style: none;
    margin: 24px 0
}

.offer-card li {
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted)
}

.offer-card li:before {
    content: "✓";
    color: var(--blue);
    font-weight: 900;
    margin-right: 9px
}

.delivery-perks {
    display: flex;
    gap: 7px;
    flex-wrap: wrap
}

.delivery-perks span {
    padding: 6px 9px;
    border-radius: 6px;
    background: #e8eee8;
    color: #315b47;
    font-size: .68rem;
    font-weight: 800
}

.offer-price {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 22px 0 18px
}

.offer-price small {
    font-size: .65rem;
    font-weight: 850;
    color: var(--muted)
}

.offer-price strong {
    font-size: 2rem
}

.offer-card .btn {
    width: 100%
}

.package-options {
    border: 0;
    padding: 0;
    margin: 0 0 22px
}

.package-options legend {
    font-weight: 800;
    margin-bottom: 8px
}

.package-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin: 10px 0;
    cursor: pointer
}

.package-option.selected {
    border-color: var(--blue);
    background: #edf3ee
}

.package-option input {
    width: auto;
    margin: 0;
    accent-color: var(--blue)
}

.package-option span {
    display: flex;
    flex-direction: column
}

.package-option small {
    display: block !important;
    color: var(--muted);
    font-weight: 500
}

.package-option>strong {
    white-space: nowrap
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    background: var(--navy);
    color: white
}

.order-total strong {
    font-size: 1.35rem
}

.offer-bar {
    background: #d5f06b;
    color: #151a17;
    letter-spacing: .055em
}

.nav-cta,
.sticky-cta button {
    background: #1d2922
}

.hero {
    background: radial-gradient(circle at 70% 30%, #33473b 0, #202923 32%, #121714 74%)
}

.hero .eyebrow {
    color: var(--cyan)
}

.hero h1 em {
    color: var(--cyan)
}

.btn {
    border-radius: 9px
}

.btn-primary {
    background: var(--cyan);
    color: #171c18;
    box-shadow: none
}

.btn-dark {
    background: #1d2922
}

.product-slider {
    background: #202722;
    border-radius: 14px;
    box-shadow: 0 18px 45px #0005
}

.slider-arrow {
    background: #151a17c7
}

.hero-media img {
    border-radius: 14px
}

.floating-card {
    border-radius: 10px;
    box-shadow: 0 16px 40px #0003
}

.problem,
.solution,
.features,
.checkout,
.risk {
    background: #f3f2ec
}

.problem-grid article,
.checkout form {
    border: 1px solid var(--line);
    box-shadow: none
}

.comparison,
.steps,
.package,
.faq {
    background: #fbfbf8
}

.audience,
.offer {
    background: #171c19
}

.audience-grid article {
    padding: 0;
    background: #202722;
    border-color: #354039;
    border-radius: 14px;
    overflow: hidden
}

.audience-grid article img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.audience-grid article>div {
    padding: 22px
}

.audience-grid .word {
    margin-bottom: 16px
}

.audience-grid small,
.audience .eyebrow {
    color: var(--cyan)
}

.compare-grid .after {
    background: #1c231f
}

.feature-list article>span {
    background: #e4ece5
}

.trust {
    background: #e9eee9
}

.trust-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.trust-visual>img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 14px
}

.trust-row {
    justify-content: flex-start
}

.trust-row span {
    border: 1px solid #d8ded8
}

.image-card {
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(22, 28, 23, .11)
}

.wide-image {
    border-radius: 14px
}

.shield {
    background: #e1eadf;
    color: var(--blue)
}

.form-notice {
    background: #ecefe9
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #dbe8de;
    border-color: var(--blue)
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 55px
    }

    .hero-media {
        max-width: 620px;
        width: 100%
    }

    .hero-media:before {
        display: none
    }

    .hero-media>img,
    .wide-image,
    .checkout-copy img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover
    }

    .image-card {
        width: 100%;
        aspect-ratio: 1/1
    }

    .image-card img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1/1;
        object-fit: cover
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .showcase-grid .showcase-large,
    .showcase-grid .showcase-wide {
        grid-row: auto
    }

    .showcase-grid figure {
        aspect-ratio: 1/1
    }

    .trust-visual {
        grid-template-columns: 1fr;
        gap: 30px
    }

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

    .split,
    .offer-box,
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .reverse>div:first-child {
        order: 0
    }

    .checkout-copy {
        position: static
    }

    .section {
        padding: 68px 0
    }
}

.whatsapp-support {
    padding: 34px 18px;
    background: #d5f06b;
    text-align: center
}

.whatsapp-support .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.whatsapp-support p {
    margin: 0;
    color: #151a17;
    font-weight: 650
}

.whatsapp-support a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 9px;
    background: #111;
    color: #d5f06b;
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none
}

@media(max-width:620px) {
    .whatsapp-support .container {
        flex-direction: column;
        gap: 12px
    }

    .whatsapp-support a {
        width: 100%
    }
}

@media(max-width:620px) {
    body {
        padding-bottom: 66px
    }

    .nav {
        height: 62px
    }

    .nav-cta {
        display: none
    }

    .hero {
        padding-bottom: 64px
    }

    .hero h1 br {
        display: none
    }

    .product-slider {
        width: 100%;
        margin: 24px 0
    }

    .floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -18px 14px 0
    }

    .hero-notes {
        display: grid;
        gap: 6px
    }

    .showcase-grid,
    .problem-grid,
    .compare-grid,
    .audience-grid,
    .steps-grid,
    .offer-cards {
        grid-template-columns: 1fr
    }

    .compare-grid article {
        padding: 28px
    }

    .audience-grid article {
        padding: 0
    }

    .offer-card {
        padding: 24px
    }

    .section {
        padding: 58px 0
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .package-option {
        grid-template-columns: auto 1fr
    }

    .package-option>strong {
        grid-column: 2
    }

    .checkout form {
        padding: 22px 18px
    }

    .sticky-cta {
        display: flex
    }

    .offer-box {
        gap: 30px
    }

    .trust-row {
        align-items: stretch;
        flex-direction: column;
        text-align: center
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .btn,
    .sticky-cta {
        transition: none
    }
}

.showcase-grid .showcase-large {
    grid-column: 1
}

.showcase-grid .showcase-wide {
    grid-column: 3
}

@media(max-width:900px) {

    .showcase-grid .showcase-large,
    .showcase-grid .showcase-wide {
        grid-column: auto
    }
}

.audience-grid article img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    flex: none
}

.hero .lead {
    color: #f5f6f2;
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    font-weight: 550;
    line-height: 1.65;
    text-shadow: 0 1px 2px #0006
}

.hero .hero-solution {
    max-width: 660px;
    color: #e8ede8;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.65
}

.hero .hero-solution strong {
    color: var(--cyan);
    font-weight: 800
}

.hero-copy {
    text-align: center
}

.hero-copy .lead,
.hero-copy .hero-solution {
    margin-left: auto;
    margin-right: auto
}

.hero-copy .product-slider,
.hero-copy .hero-offer {
    margin-left: auto;
    margin-right: auto
}

.hero-copy .hero-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    width: min(100%, 430px);
    margin-left: auto;
    margin-right: auto;
    text-align: left
}

.hero h1 span,
.hero h1 em {
    display: block
}

@media(max-width:620px) {
    .hero-copy .hero-notes {
        grid-template-columns: repeat(2, max-content);
        justify-content: center;
        column-gap: 12px;
        font-size: .66rem;
        white-space: nowrap
    }
}

.hero-action {
    display: block;
    margin-top: 7px;
    color: #fff;
    font-weight: 750;
    line-height: 1.6;
    text-shadow: 0 1px 2px #0008
}

.hero-copy .hero-notes {
    grid-template-columns: 1fr;
    width: max-content;
    max-width: 100%;
    gap: 10px;
    margin-top: 22px;
    color: #f5f6f2;
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    text-shadow: 0 1px 2px #0008
}

.hero-video {
    position: relative;
    width: min(100%, 430px);
    aspect-ratio: 1/1;
    margin: 26px auto 24px;
    overflow: hidden;
    border-radius: 14px;
    background: #202722;
    box-shadow: 0 18px 45px #0005
}

.hero-video video {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.video-play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    padding: 0;
    border: 2px solid #ffffffd9;
    border-radius: 50%;
    background: #151a17dc;
    box-shadow: 0 10px 35px #0008;
    transition: transform .2s, opacity .2s
}

.video-play:hover {
    transform: translate(-50%, -50%) scale(1.06)
}

.video-play span {
    display: block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 21px solid #d5f06b
}

.video-play.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.checkout .submit {
    background: #000;
    color: var(--cyan);
    box-shadow: none
}

.hero-price {
    display: flex;
    align-items: center;
    gap: 9px
}

.hero-price del {
    color: #aeb8b0;
    font-size: .83rem
}

.tutorial-bonus {
    background: #ecebe4
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.bonus-grid>img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
    background: #000;
    box-shadow: 0 20px 50px rgba(22, 28, 23, .13)
}

.bonus-copy>p:not(.eyebrow) {
    font-size: 1.05rem
}

.bonus-copy ul {
    margin: 24px 0;
    padding: 0;
    list-style: none
}

.bonus-copy li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted)
}

.bonus-copy li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--blue);
    font-weight: 900
}

.bonus-for {
    margin-bottom: 24px;
    padding: 13px 15px;
    border-left: 3px solid var(--blue);
    background: #fff;
    color: var(--ink);
    font-size: .84rem;
    font-weight: 650
}

.offer-price small {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.offer-price small del {
    color: #8b918c;
    font-size: .9rem
}

.offer-price small b {
    color: var(--blue);
    font-size: .68rem;
    letter-spacing: .08em
}

.package-option>strong {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.25
}

.package-option>strong del {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 500
}

.package-option>strong b {
    color: var(--ink)
}

@media(max-width:900px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .bonus-grid>img {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        object-fit: contain
    }
}
