* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #16a34a;
    --green-dark: #0f7a38;
    --green-soft: #e9f8ef;
    --red: #dc2626;
    --gold: #f4b740;
    --rose: #fdf2f5;
    --mint: #eefbf3;
    --blue: #edf6ff;
    --ink: #1f2933;
    --muted: #64748b;
    --line: #e5e7eb;
    --paper: #ffffff;
    --soft: #f8fafc;
    --shadow: 0 18px 45px rgba(31, 41, 51, 0.12);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--soft);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 46px;
}

a {
    color: inherit;
}

.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

svg {
    display: block;
}

svg:not(.svg-defs) {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

symbol path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: var(--red);
    color: #ffffff;
    text-align: center;
    padding: 11px 14px;
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.26);
}

.top-bar span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-icon {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    stroke: #ffffff;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    width: min(820px, calc(100% - 32px));
}

.hero {
    background:
        linear-gradient(135deg, rgba(253, 242, 245, 0.96), rgba(238, 251, 243, 0.96)),
        radial-gradient(circle at 80% 20%, rgba(244, 183, 64, 0.28), transparent 35%);
    padding: 72px 0 56px;
}

.hero-grid {
    display: grid;
    gap: 34px;
    align-items: center;
}

.hero-copy {
    text-align: center;
}

.hero-visual-mobile {
    display: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    background: var(--green-soft);
    border: 1px solid rgba(22, 163, 74, 0.16);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 14px;
}

h1,
h2,
h3 {
    line-height: 1.13;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.42rem, 8vw, 4.9rem);
    font-weight: 900;
    color: #152033;
    margin-bottom: 18px;
}

.hero-subtitle {
    color: #42526a;
    font-size: clamp(1.04rem, 2.3vw, 1.32rem);
    max-width: 720px;
    margin: 0 auto 14px;
}

.hero-emotion {
    color: #334155;
    font-size: 1.03rem;
    max-width: 690px;
    margin: 0 auto 24px;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    border-radius: 8px;
    padding: 16px 24px;
    text-decoration: none;
    text-align: center;
    font-weight: 900;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(180deg, #23c55e, var(--green));
    box-shadow: 0 14px 28px rgba(22, 163, 74, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #1fb756, var(--green-dark));
    box-shadow: 0 18px 34px rgba(22, 163, 74, 0.34);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    color: #475569;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 18px;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.mini-icon {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex: 0 0 18px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 470px;
}

.hero-visual.hero-visual-mobile {
    display: none;
}

.product-scene {
    position: relative;
    width: min(520px, 100%);
    min-height: 470px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.product-scene::before {
    content: "";
    position: absolute;
    inset: 9% 6% 6%;
    z-index: -2;
    background:
        linear-gradient(135deg, rgba(244, 183, 64, 0.18), rgba(22, 163, 74, 0.16)),
        rgba(255, 255, 255, 0.48);
    filter: blur(26px);
    transform: rotate(-4deg);
}

.product-scene::after {
    content: "";
    position: absolute;
    left: 15%;
    right: 13%;
    bottom: 28px;
    z-index: -1;
    height: 30px;
    background: rgba(15, 23, 42, 0.18);
    border-radius: 50%;
    filter: blur(18px);
    transform: perspective(260px) rotateX(58deg);
}

.cover-product-image {
    position: relative;
    z-index: 1;
    display: block;
    width: min(460px, 100%);
    height: auto;
    transform: rotate(-2deg);
    filter: drop-shadow(0 26px 24px rgba(15, 23, 42, 0.18)) drop-shadow(0 42px 60px rgba(15, 122, 56, 0.2));
    animation: productFloat 5.5s ease-in-out infinite;
}

@keyframes productFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

.section {
    padding: 64px 0;
    background: #ffffff;
}

.light-section {
    background: var(--soft);
}

.section-heading {
    text-align: center;
    margin-bottom: 34px;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 5vw, 3rem);
    font-weight: 900;
    color: #182235;
    margin-bottom: 12px;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 690px;
    margin: 0 auto;
}

.cards-grid,
.bonus-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-card,
.bonus-card,
.testimonial-card,
.proof-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(31, 41, 51, 0.07);
}

.feature-card,
.proof-card {
    padding: 24px;
}

.proof-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.proof-card h3 {
    color: #19253a;
    font-size: 1.1rem;
}

.proof-card p {
    color: var(--muted);
}

.proof-mockup,
.inside-page,
.bonus-preview-stack {
    min-height: 240px;
    border-radius: 8px;
}

.proof-cover-preview {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(16, 122, 56, 0.04), rgba(13, 84, 48, 0.86)),
        linear-gradient(135deg, #ffe29a, #1f9d63 52%, #142b20);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.proof-cover-preview span {
    width: max-content;
    color: #17391f;
    background: #ffe8a8;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.76rem;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.proof-cover-preview strong {
    max-width: 280px;
    font-size: 2rem;
    line-height: 1.02;
    font-weight: 900;
}

.proof-cover-preview small {
    margin-top: 10px;
    font-weight: 700;
}

.inside-page {
    display: grid;
    align-content: start;
    gap: 10px;
    background:
        linear-gradient(90deg, rgba(22, 163, 74, 0.08) 0 14px, transparent 14px),
        #ffffff;
    border: 1px solid var(--line);
    padding: 22px 22px 22px 34px;
}

.inside-page span {
    width: max-content;
    color: #805200;
    background: #fff4cf;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 900;
}

.inside-page strong {
    color: #172033;
    font-size: 1.22rem;
    line-height: 1.15;
}

.inside-page p {
    color: #475569;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 800;
}

.bonus-preview-stack {
    position: relative;
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #edf6ff, #eefbf3);
}

.bonus-preview-stack::before,
.bonus-preview-stack::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 170px;
    border-radius: 8px;
    background: linear-gradient(135deg, #c24172, #f5a9b8);
    opacity: 0.28;
    transform: rotate(10deg);
}

.bonus-preview-stack::before {
    right: 34px;
    top: 22px;
}

.bonus-preview-stack::after {
    right: 76px;
    bottom: -34px;
    background: linear-gradient(135deg, #2f80ed, #7ec8a4);
    transform: rotate(-8deg);
}

.bonus-preview-stack span {
    position: relative;
    z-index: 1;
    display: block;
    width: min(250px, 100%);
    color: #172033;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(31, 41, 51, 0.08);
}

.icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    background: var(--green-soft);
    border-radius: 8px;
    color: var(--green-dark);
    margin-bottom: 16px;
    box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.12);
}

.icon svg {
    width: 25px;
    height: 25px;
}

.feature-card h3,
.bonus-card h3 {
    color: #19253a;
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.feature-card p,
.bonus-card p {
    color: var(--muted);
}

.bonus-grid {
    align-items: stretch;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.bonus-card {
    overflow: hidden;
    padding-bottom: 20px;
}

.bonus-card h3,
.bonus-card p,
.bonus-card del,
.bonus-card .free-price {
    margin-left: 18px;
    margin-right: 18px;
}

.bonus-card del {
    display: block;
    color: #94a3b8;
    font-weight: 700;
    margin-top: 14px;
}

.free-price {
    display: block;
    color: var(--green);
    font-size: 1.05rem;
    margin-top: 2px;
}

.bonus-cover {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 18px;
}

.bonus-cover img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.bonus-cover span {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--green);
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.76rem;
    font-weight: 900;
}

.offer-section {
    background:
        radial-gradient(circle at 18% 18%, rgba(244, 183, 64, 0.34), transparent 30%),
        radial-gradient(circle at 88% 72%, rgba(22, 163, 74, 0.22), transparent 34%),
        linear-gradient(135deg, rgba(233, 248, 239, 0.94), rgba(255, 248, 226, 0.98)),
        #ffffff;
}

.offer-card {
    position: relative;
    overflow: hidden;
    max-width: 620px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid rgba(22, 163, 74, 0.7);
    border-radius: var(--radius);
    box-shadow: 0 24px 65px rgba(15, 122, 56, 0.22), 0 10px 28px rgba(31, 41, 51, 0.08);
    padding: clamp(24px, 5vw, 38px);
    text-align: center;
}

.offer-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 0;
    width: 9px;
    background: linear-gradient(180deg, var(--gold), #23c55e, var(--green-dark));
    box-shadow: 12px 0 28px rgba(22, 163, 74, 0.28);
}

.offer-card::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -90px;
    z-index: 0;
    width: 210px;
    height: 260px;
    background: linear-gradient(135deg, rgba(244, 183, 64, 0.34), rgba(22, 163, 74, 0.08));
    transform: rotate(18deg);
    pointer-events: none;
}

.offer-card > * {
    position: relative;
    z-index: 1;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7a4d00;
    background: linear-gradient(180deg, #fff2bd, #ffd86b);
    border: 1px solid rgba(180, 116, 0, 0.18);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
    box-shadow: 0 10px 20px rgba(244, 183, 64, 0.24);
}

.offer-logo {
    color: var(--green-dark);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.offer-card h2 {
    font-size: clamp(1.6rem, 5vw, 2.35rem);
    font-weight: 900;
    margin-bottom: 10px;
}

.offer-title {
    margin-bottom: 10px;
}

.offer-highlight {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    color: var(--green-dark);
    background: linear-gradient(180deg, rgba(35, 197, 94, 0.14), rgba(22, 163, 74, 0.2));
    border: 1px solid rgba(22, 163, 74, 0.16);
    border-radius: 8px;
    padding: 8px 12px;
    line-height: 1.12;
    font-size: clamp(1rem, 2.6vw, 1.22rem);
    font-weight: 900;
    margin: 0 auto 15px;
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.12);
}

.old-price {
    color: var(--muted);
    font-weight: 800;
}

.value-breakdown {
    display: grid;
    gap: 8px;
    max-width: 460px;
    margin: 0 auto 14px;
    text-align: left;
}

.value-breakdown div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #334155;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 800;
}

.value-breakdown strong {
    color: var(--green-dark);
    white-space: nowrap;
}

.price {
    color: var(--green-dark);
    font-size: clamp(3.8rem, 14vw, 5.5rem);
    line-height: 1;
    font-weight: 900;
    margin: 5px 0 10px;
    text-shadow: 0 8px 20px rgba(22, 163, 74, 0.16);
}

.installment {
    max-width: 450px;
    color: #334155;
    margin: 0 auto 16px;
    font-weight: 800;
}

.offer-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.offer-chips span {
    color: var(--green-dark);
    background: var(--green-soft);
    border: 1px solid rgba(22, 163, 74, 0.18);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 0.82rem;
    font-weight: 900;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
    margin: 0 0 26px;
    color: #334155;
    font-weight: 800;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #ffffff, #f5fff8);
    border: 1px solid rgba(22, 163, 74, 0.16);
    border-radius: 8px;
    padding: 11px 13px;
    box-shadow: 0 8px 18px rgba(31, 41, 51, 0.04);
}

.list-icon {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex: 0 0 20px;
}

.btn-full {
    width: 100%;
}

.btn-offer-main {
    position: relative;
    min-height: 66px;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(180deg, #28d466, #10863d);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: clamp(1rem, 3.4vw, 1.18rem);
    box-shadow: 0 18px 35px rgba(16, 134, 61, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    animation: ctaPulse 2.4s ease-in-out infinite;
}

.btn-offer-main::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -35%;
    z-index: 0;
    width: 32%;
    height: 180%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: rotate(18deg);
    animation: ctaShine 2.8s ease-in-out infinite;
}

.btn-offer-main span,
.btn-offer-main svg {
    position: relative;
    z-index: 1;
}

.btn-offer-main:hover {
    transform: translateY(-3px) scale(1.01);
    background: linear-gradient(180deg, #32df70, #0f7a38);
}

.secure-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #475569;
    font-size: 0.88rem;
    font-weight: 800;
    margin-top: 13px;
}

.secure-note .mini-icon {
    color: var(--green-dark);
}

@keyframes ctaPulse {
    0%,
    100% {
        box-shadow: 0 18px 35px rgba(16, 134, 61, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    }

    50% {
        box-shadow: 0 24px 46px rgba(16, 134, 61, 0.46), 0 0 0 6px rgba(35, 197, 94, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
}

@keyframes ctaShine {
    0% {
        left: -38%;
    }

    48%,
    100% {
        left: 112%;
    }
}

.after-buy-box {
    max-width: 520px;
    margin: 18px auto 0;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 10px 28px rgba(31, 41, 51, 0.06);
}

.after-buy-box strong {
    display: block;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.social-proof {
    background: #ffffff;
}

.social-rating {
    margin-top: 14px;
}

.rating-stars {
    color: #f4b740;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-shadow: 0 1px 0 rgba(122, 77, 0, 0.15), 0 0 14px rgba(244, 183, 64, 0.22);
}

.rating-score {
    margin-bottom: 6px;
}

.rating-score strong {
    color: #172033;
    font-size: 1.08rem;
    font-weight: 900;
}

.social-rating p:last-child {
    max-width: 640px;
    margin: 0 auto;
}

.testimonials-marquee {
    overflow: hidden;
    padding-bottom: 14px;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testimonials-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: testimonialsScroll 58s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonials-group {
    display: flex;
    gap: 18px;
}

.testimonial-card {
    flex: 0 0 clamp(280px, 30vw, 360px);
    position: relative;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fffb);
}

.testimonial-card::after {
    content: "";
    position: absolute;
    left: 36px;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background: #f8fffb;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transform: rotate(45deg);
}

.chat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.chat-head span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: var(--green);
    border-radius: 999px;
    font-weight: 900;
}

.chat-head img {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    object-fit: cover;
    flex: 0 0 42px;
}

.chat-head strong,
.chat-head small {
    display: block;
}

.chat-head small {
    color: var(--muted);
    font-size: 0.78rem;
}

.testimonial-card p {
    color: #334155;
    font-weight: 600;
}

@keyframes testimonialsScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

.faq-section {
    background: var(--soft);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #ffffff;
    color: #172033;
    border: 0;
    padding: 18px;
    cursor: pointer;
    text-align: left;
    font: inherit;
    font-weight: 900;
}

.faq-question span {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    height: 28px;
    color: #ffffff;
    background: var(--green);
    border-radius: 999px;
    font-weight: 900;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    color: var(--muted);
    padding: 0 18px 18px;
}

.faq-item.open .faq-answer {
    max-height: 160px;
}

.faq-item.open .faq-question span {
    background: #334155;
}

.final-cta {
    color: #ffffff;
    text-align: center;
    background: linear-gradient(135deg, #0f7a38, #132d20);
    padding: 58px 0;
}

.final-cta h2 {
    font-size: clamp(1.9rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.final-cta p {
    max-width: 680px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
}

.help-section {
    padding: 42px 0 80px;
    text-align: center;
    background: #ffffff;
}

.help-section h2 {
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.help-section p {
    color: var(--muted);
}

.help-section a {
    color: var(--green-dark);
    font-weight: 900;
}

.exit-offer {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 18px;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 214, 0, 0.36), transparent 30%),
        radial-gradient(circle at 82% 78%, rgba(22, 163, 74, 0.3), transparent 32%),
        rgba(15, 23, 42, 0.82);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    backdrop-filter: blur(8px);
}

.exit-offer.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.exit-offer-card {
    position: relative;
    overflow: hidden;
    width: min(520px, 100%);
    color: #ffffff;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255, 204, 0, 0.22), transparent 28%),
        linear-gradient(155deg, #b91c1c 0%, #dc2626 42%, #102f1e 100%);
    border: 2px solid rgba(255, 232, 120, 0.82);
    border-radius: 8px;
    padding: clamp(26px, 6vw, 42px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), 0 0 0 8px rgba(255, 214, 0, 0.1);
    transform: translateY(18px) scale(0.96);
    transition: transform 0.25s ease;
}

.exit-offer.show .exit-offer-card {
    transform: translateY(0) scale(1);
}

.exit-offer-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 10px;
    background: linear-gradient(180deg, #ffe45c, #22c55e);
    box-shadow: 18px 0 34px rgba(255, 228, 92, 0.35);
}

.exit-offer-card::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -80px;
    width: 210px;
    height: 230px;
    background: rgba(255, 228, 92, 0.2);
    border-radius: 50%;
}

.exit-offer-card > * {
    position: relative;
    z-index: 1;
}

.exit-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}

.exit-alert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4a3200;
    background: linear-gradient(180deg, #fff4a8, #ffc400);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: 0 12px 26px rgba(255, 196, 0, 0.24);
}

.exit-alert svg {
    width: 17px;
    height: 17px;
}

.exit-offer h2 {
    max-width: 390px;
    margin: 0 auto 8px;
    font-size: clamp(1.55rem, 6vw, 2.5rem);
    font-weight: 900;
}

.exit-price {
    color: #fff06a;
    font-size: clamp(4.2rem, 18vw, 6.4rem);
    line-height: 0.96;
    font-weight: 900;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    margin-bottom: 12px;
}

.exit-offer p {
    max-width: 390px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

.exit-cta {
    position: relative;
    width: 100%;
    min-height: 68px;
    overflow: hidden;
    color: #102515;
    background: linear-gradient(180deg, #fff36f, #ffc400);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 18px 36px rgba(255, 196, 0, 0.34), 0 0 0 6px rgba(255, 255, 255, 0.12);
    font-size: clamp(0.96rem, 3.7vw, 1.15rem);
    animation: exitCtaPulse 1.7s ease-in-out infinite;
}

.exit-cta::before {
    content: "";
    position: absolute;
    top: -45%;
    left: -36%;
    width: 30%;
    height: 190%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: rotate(18deg);
    animation: ctaShine 2.2s ease-in-out infinite;
}

.exit-cta span,
.exit-cta svg {
    position: relative;
    z-index: 1;
}

.exit-cta:hover {
    transform: translateY(-3px) scale(1.01);
    background: linear-gradient(180deg, #fff986, #ffd21f);
}

.exit-decline {
    display: inline-block;
    color: rgba(255, 255, 255, 0.76);
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    margin-top: 16px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

body.exit-offer-open {
    overflow: hidden;
}

@keyframes exitCtaPulse {
    0%,
    100% {
        box-shadow: 0 18px 36px rgba(255, 196, 0, 0.34), 0 0 0 6px rgba(255, 255, 255, 0.12);
    }

    50% {
        box-shadow: 0 24px 48px rgba(255, 196, 0, 0.48), 0 0 0 10px rgba(255, 243, 111, 0.18);
    }
}

.sales-toast {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(330px, calc(100% - 32px));
    color: #ffffff;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 18px 34px rgba(15, 122, 56, 0.28);
    transform: translateY(110px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.sales-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-check {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    height: 34px;
    color: var(--green-dark);
    background: #ffffff;
    border-radius: 999px;
    font-weight: 900;
}

.toast-check svg {
    width: 20px;
    height: 20px;
}

.sales-toast strong,
.sales-toast p {
    display: block;
}

.sales-toast p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.86rem;
}

@media (min-width: 680px) {
    .cards-grid,
    .testimonials-grid,
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 920px) {
    body {
        padding-top: 48px;
    }

    .hero {
        padding: 86px 0 70px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
        gap: 56px;
    }

    .hero-copy {
        text-align: left;
    }

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-emotion {
        margin-left: 0;
        margin-right: 0;
    }

    .trust-row {
        justify-content: flex-start;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .proof-grid {
        grid-template-columns: 1.15fr 0.92fr 0.92fr;
    }

    .bonus-card h3 {
        min-height: 58px;
    }
}

@media (min-width: 920px) {
    .bonus-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 440px) {
    .top-bar {
        font-size: 0.82rem;
        padding: 10px 10px;
    }

    body {
        padding-top: 54px;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-visual.hero-visual-mobile {
        display: flex;
        min-height: auto;
        margin: 8px 0 18px;
    }

    .hero-visual-mobile .product-scene {
        width: min(350px, 92vw);
        min-height: auto;
    }

    .hero-visual-mobile .cover-product-image {
        width: 100%;
    }

    .hero-visual-desktop {
        display: none;
    }

    .hero-visual {
        min-height: 380px;
    }

    .btn {
        width: 100%;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 0.92rem;
    }

    .product-scene {
        min-height: 380px;
    }

    .cover-product-image {
        width: min(350px, 92vw);
    }
}
