:root {
    --bg-top: #2a0202;
    --bg-middle: #6b0f0f;
    --bg-bottom: #ff6a00;
    --card-bg: rgba(33, 6, 6, 0.7);
    --card-border: rgba(255, 204, 145, 0.22);
    --text-main: #fff7f0;
    --text-soft: #ffd7bf;
    --text-muted: #ffd4b0;
    --accent: #ff9a1f;
    --accent-strong: #ff6a00;
    --accent-light: #ffd37d;
    --danger: #ffdfd0;
    --benefit: #7dffad;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Archivo", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top, rgba(255, 173, 77, 0.18), transparent 28%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-middle) 48%, var(--bg-bottom) 100%);
}

.remarketing-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 18px;
}

.offer-shell {
    width: min(100%, 860px);
    display: flex;
    justify-content: center;
}

.offer-card {
    width: 100%;
    max-height: calc(100vh - 36px);
    overflow: hidden;
    display: grid;
    gap: 14px;
    text-align: center;
    padding: 24px 28px 20px;
    border: 1px solid var(--card-border);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        var(--card-bg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    position: relative;
}

.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 196, 110, 0.16), transparent 24%),
        radial-gradient(circle at 88% 100%, rgba(255, 106, 0, 0.24), transparent 22%);
    pointer-events: none;
}

.offer-card > * {
    position: relative;
    z-index: 1;
}

.badge-wrap {
    display: flex;
    justify-content: center;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fff3d8, #ffcf8b);
    color: #6a1800;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    box-shadow: 0 0 0 0 rgba(255, 207, 139, 0.55);
    animation: badgePulse 1.8s infinite;
}

.offer-kicker {
    margin: 0;
    color: var(--accent-light);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.28em;
}

.offer-header h1 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4rem, 10vw, 6rem);
    line-height: 0.9;
    letter-spacing: 0.04em;
}

.headline-support,
.subheadline,
.urgency-copy p,
.offer-footer,
.single-payment,
.trust-signals span,
.countdown-label {
    margin: 0;
}

.headline-support {
    margin-top: 6px;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--danger);
}

.subheadline {
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.45;
}

.pricing-box {
    padding: 18px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 179, 88, 0.08));
    border: 1px solid rgba(255, 211, 125, 0.18);
}

.old-price {
    margin: 0;
    color: #ffbca5;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: line-through;
    letter-spacing: 0.08em;
}

.price-label {
    margin: 8px 0 4px;
    color: var(--accent-light);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.24em;
}

.price-now {
    margin: 0;
    font-size: clamp(3rem, 8vw, 4.9rem);
    line-height: 0.95;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 8px 24px rgba(255, 106, 0, 0.45);
}

.single-payment {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.96rem;
    font-weight: 700;
}

.benefits-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    justify-items: center;
    color: var(--text-main);
    font-size: 0.96rem;
    line-height: 1.3;
}

.benefits-list li {
    color: var(--benefit);
    font-weight: 700;
}

.urgency-copy {
    display: grid;
    gap: 6px;
}

.urgency-copy p {
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.35;
}

.countdown-box {
    display: grid;
    gap: 4px;
    justify-items: center;
}

.countdown-label {
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.countdown-timer {
    font-size: clamp(2.3rem, 7vw, 3.6rem);
    line-height: 1;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.countdown-expired {
    color: #ffe1d2;
    font-size: 1rem;
    font-weight: 800;
}

.is-hidden {
    display: none;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffb02e 0%, #ff8300 54%, #ff6500 100%);
    color: #fffdf8;
    text-decoration: none;
    font-size: clamp(1rem, 2.4vw, 1.14rem);
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: 0 18px 40px rgba(255, 115, 0, 0.5);
    transform: scale(1);
    animation: ctaPulse 1.5s infinite;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cta-button:hover {
    transform: scale(1.04);
    box-shadow: 0 24px 52px rgba(255, 115, 0, 0.62);
    filter: brightness(1.04);
}

.cta-button.is-disabled {
    pointer-events: none;
    opacity: 0.58;
    animation: none;
    filter: grayscale(0.12);
}

.trust-signals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
}

.trust-signals span {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 700;
}

.offer-footer {
    color: rgba(255, 233, 218, 0.8);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

@keyframes badgePulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 207, 139, 0.48);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 18px rgba(255, 207, 139, 0);
    }
}

@keyframes ctaPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 18px 40px rgba(255, 115, 0, 0.5);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 24px 48px rgba(255, 115, 0, 0.64);
    }
}

@media (max-width: 720px) {
    .remarketing-page {
        padding: 10px;
    }

    .offer-card {
        max-height: none;
        min-height: calc(100vh - 20px);
        padding: 18px 16px 16px;
        gap: 12px;
        border-radius: 22px;
    }

    .offer-kicker {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }

    .subheadline,
    .benefits-list,
    .urgency-copy p,
    .trust-signals span,
    .single-payment {
        font-size: 0.9rem;
    }

    .benefits-list {
        gap: 7px;
    }

    .trust-signals {
        gap: 10px;
    }

    .cta-button {
        min-height: 62px;
        padding: 16px 14px;
    }
}

@media (max-width: 420px) {
    .offer-badge {
        font-size: 0.74rem;
        padding: 9px 14px;
    }

    .headline-support {
        font-size: 1.04rem;
    }

    .subheadline,
    .benefits-list,
    .urgency-copy p {
        line-height: 1.25;
    }

    .pricing-box {
        padding: 16px 14px;
    }

    .trust-signals {
        display: grid;
        gap: 8px;
    }

    .offer-footer {
        font-size: 0.74rem;
    }
}
