:root {
    --primary: #8B5CF6; /* Violet */
    --primary-hover: #7C3AED;
    --secondary: #FDE047; /* Yellow */
    --text-main: #111827;
    --text-muted: #4B5563;
    --bg-light: #FAFAFA;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-light: #E5E7EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    background-image: url('https://instadoodle.com/images/imagesoto/banner_easter_pro2.webp');
    background-size: 105% auto;
    background-position: center -15vh;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    position: relative;
    padding: 2rem 1rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

header::before {
    display: none;
}

.header-content {
    position: relative;
    z-index: 10;
    max-width: 1320px;
    width: 100%;
}

.logo-container {
    margin-bottom: 11px;
}

.logo-container img {
    max-height: 80px;
    width: auto;
    drop-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero-pill {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    background: rgba(255, 240, 121, 1);
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    padding: 14px 23px;
    border-radius: 17px;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    box-shadow: none;
}


.hero-title {
    display: inline-block;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    line-height: 1.3;
    padding: 0.85rem 1.25rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-title strong {
    font-weight: 800;
    color: #111;
}

.text-highlight {
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    left: -2%;
    bottom: -4px;
    width: 104%;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 9 C60 2, 140 2, 198 8' fill='none' stroke='%238b3ad3' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
}

.text-gradient {
    background: linear-gradient(90deg, rgba(139, 58, 211, 1) 0%, rgba(168, 68, 218, 1) 83%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 3rem;
}

/* Nav Anchors */
.anchor-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.anchor-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.anchor-link svg {
    color: var(--primary);
}

.anchor-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.anchor-link:hover svg {
    color: white;
}

/* Urgency Banner */
.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    background: rgba(255, 240, 121, 0.71);
    border: 2px dashed rgba(133, 80, 243, 1);
    padding: 0.85rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.urgency-banner strong {
    color: #b91c1c;
}

.urgency-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    color: #fff;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    min-width: 1.8em;
    padding: 0.15em 0.45em;
    border-radius: 6px;
    font-size: 1.05em;
    margin: 0 0.15em;
}

/* Upgrades Section */
.upgrades-section {
    padding: 5px 1rem 100px;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

/* Product Cards — frosted panel on ::after so ::before glow blobs sit behind */
.product-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: visible;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
    z-index: 0;
    pointer-events: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.product-card:hover::after {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.08);
    border-color: #d1d5db;
}

/* Glow blobs behind each upgrade (different palette per section) */
#pro.product-card::before,
#wizard.product-card::before,
#color.product-card::before,
#motion.product-card::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: -14% -10% -18% -10%;
    pointer-events: none;
    filter: blur(56px);
    opacity: 0.88;
}

#pro.product-card::before {
    background:
        radial-gradient(ellipse 52% 46% at 14% 30%, rgba(139, 92, 246, 0.5), transparent 58%),
        radial-gradient(ellipse 48% 50% at 86% 72%, rgba(99, 102, 241, 0.4), transparent 60%),
        radial-gradient(ellipse 36% 38% at 52% 88%, rgba(236, 72, 153, 0.32), transparent 68%);
}

#wizard.product-card::before {
    background:
        radial-gradient(ellipse 50% 48% at 20% 28%, rgba(244, 114, 182, 0.48), transparent 58%),
        radial-gradient(ellipse 46% 44% at 78% 35%, rgba(167, 139, 250, 0.42), transparent 60%),
        radial-gradient(ellipse 42% 48% at 55% 78%, rgba(56, 189, 248, 0.36), transparent 62%);
}

#color.product-card::before {
    background:
        radial-gradient(ellipse 50% 46% at 18% 40%, rgba(251, 146, 60, 0.5), transparent 58%),
        radial-gradient(ellipse 48% 50% at 85% 65%, rgba(251, 191, 36, 0.42), transparent 60%),
        radial-gradient(ellipse 40% 42% at 45% 22%, rgba(248, 113, 113, 0.34), transparent 65%);
}

#motion.product-card::before {
    background:
        radial-gradient(ellipse 48% 46% at 22% 65%, rgba(34, 211, 238, 0.45), transparent 58%),
        radial-gradient(ellipse 50% 48% at 82% 38%, rgba(59, 130, 246, 0.4), transparent 60%),
        radial-gradient(ellipse 42% 44% at 50% 12%, rgba(139, 92, 246, 0.32), transparent 64%);
}

/* Card Layout: Title spans full width, then two-column body */
.product-name {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
    width: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.card-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #faf5ff 0%, #f0ebff 50%, #ede9fe 100%);
    border-radius: 16px;
    padding: 2rem;
}

.card-visual img,
.card-visual video {
    max-width: 100%;
    height: auto;
    width: 280px;
    filter: none;
}

/* Zoomed crop — subject centered in the frame */
.card-visual--zoom-left,
.card-visual--zoom-right {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-visual--zoom-left img,
.card-visual--zoom-right img {
    width: 280px;
    height: 226px;
    max-width: 100%;
    display: block;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.18);
    transform-origin: center center;
}

.card-offer {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .card-body {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }
    .card-visual {
        flex: 0 0 40%;
        border-radius: 16px;
        padding: 2.5rem;
    }
    .card-visual img,
    .card-visual video {
        width: 100%;
        max-width: 340px;
    }

    .card-visual--zoom-left img,
    .card-visual--zoom-right img {
        width: 100%;
        max-width: 340px;
        height: 226px;
    }
    .card-offer {
        flex: 1;
        padding-left: 2.5rem;
        justify-content: center;
    }

    /* Wizard: copy left, product image right (Pro stays image left) */
    #wizard .card-body {
        flex-direction: row-reverse;
    }

    #wizard .card-offer {
        padding-left: 0;
        padding-right: 2.5rem;
    }

    /* In Motion: copy left, image right (same row order as Wizard) */
    #motion .card-body {
        flex-direction: row-reverse;
    }

    #motion .card-offer {
        padding-left: 0;
        padding-right: 2.5rem;
    }

    /* In Motion: visual column matches row height; video fills padded area */
    #motion .card-visual.card-visual--addon-motion {
        align-self: stretch;
        min-height: 100%;
    }
}

/* AI Wizard: full product art — no zoom-crop on box image */
#wizard .card-visual--wizard-easter {
    overflow: visible;
}

#wizard .card-visual--wizard-easter img {
    width: 100%;
    max-width: min(100%, 401px);
    height: auto;
    object-fit: contain;
    object-position: center center;
    transform: none;
}

/* InstaDoodle Pro: full product art — same treatment as Wizard (no zoom-crop) */
#pro .card-visual--pro-easter {
    overflow: visible;
}

#pro .card-visual--pro-easter img {
    width: 100%;
    max-width: min(100%, 401px);
    height: auto;
    object-fit: contain;
    object-position: center center;
    transform: none;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

.feature-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
    stroke: #10b981;
    stroke-width: 3;
}

.features-list--checkout {
    text-align: left;
    margin: 0 0 1.5rem;
    padding: 0;
    border-top: none;
    width: 100%;
}

/* Pricing */
.price-block {
    margin-bottom: 1.25rem;
    width: 100%;
}

.easter-badge {
    display: inline-block;
    background-color: rgba(255, 240, 121, 0.9);
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    border: 1px dashed rgba(133, 80, 243, 0.5);
    width: fit-content;
    align-self: flex-start;
}

.price-original {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    margin: 0 0 0.5rem;
    color: #9ca3af;
}

.price-original-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-original-value {
    position: relative;
    display: flex;
    align-items: flex-start;
    font-weight: 700;
    color: #9ca3af;
    font-size: 3.25rem;
    line-height: 1;
    margin-top: 0.75rem;
}

.price-original-value::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    top: 50%;
    height: 2px;
    background: #dc2626;
    transform: rotate(8deg);
    pointer-events: none;
}

.price-currency-sm {
    font-size: 0.55em;
    font-weight: 700;
    margin-right: 0.1em;
    margin-top: 0.15em;
}

.price-label {
    display: inline-block;
    background: #fdf4ff;
    color: #9333ea;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.price-value {
    font-size: 4.25rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    letter-spacing: -0.04em;
}

.price-only {
    font-size: 1.125rem;
    font-weight: 600;
    color: #6b7280;
    margin-right: 0.4rem;
    align-self: flex-end;
    margin-bottom: 0.75rem;
    letter-spacing: 0;
}

.price-currency {
    font-size: 2rem;
    margin-top: 0.35rem;
    margin-right: 0.25rem;
    font-weight: 800;
    color: #111827;
}

.price-period {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 600;
    margin-left: 0.25rem;
    align-self: flex-end;
    margin-bottom: 0.75rem;
    letter-spacing: 0;
}

.price-savings {
    background: #ecfdf5;
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    margin: 1.25rem 0 0 0;
    display: inline-block;
}

.price-savings strong {
    font-weight: 800;
}

.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.75rem;
    background: linear-gradient(180deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    border-bottom: 3px solid #6d28d9;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(124, 58, 237, 0.25);
}

.btn-buy:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(124, 58, 237, 0.3);
    background: linear-gradient(180deg, #9333ea 0%, #8b5cf6 100%);
}

.btn-buy:active {
    transform: translateY(1px);
    border-bottom-width: 1px;
    margin-bottom: 2px;
}

.payment-banner {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 1.25rem auto 0;
    display: block;
}

.checkout-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
    width: 100%;
    flex-wrap: wrap;
}

.guarantee-block {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
}

.guarantee-block svg {
    color: #6b7280;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-icons img, .payment-icons svg {
    height: 22px;
    width: auto;
    opacity: 0.6;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Footer / Empty areas for future sections */
.placeholder-section {
    padding: 4rem 1rem;
    text-align: center;
    border-top: 1px dashed var(--border-light);
    margin-top: 2rem;
}

.placeholder-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ColorSplash (left-aligned) & In Motion (right-aligned) promos */
.addon-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.65rem;
    line-height: 1.35;
}

/* AI Wizard: keep headline on one line where space allows */
.addon-lead--single-line {
    white-space: nowrap;
    font-size: clamp(0.85rem, 1.65vw + 0.55rem, 1.2rem);
}

@media (max-width: 540px) {
    .addon-lead--single-line {
        white-space: normal;
    }
}

.addon-sub {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.55;
    margin: 0 0 1rem;
}

.addon-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin: 0 0 0.65rem;
}

.addon-crossroad {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1.5;
    margin: 0 0 0.5rem;
}

.addon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.addon-link:hover {
    color: #7c3aed;
    gap: 0.55rem;
}

.addon-link svg {
    flex-shrink: 0;
}

.card-visual--addon-color {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 45%, #fed7aa 100%);
}

.card-visual--addon-motion {
    background: #f4f2ff;
    overflow: hidden;
    align-items: stretch;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* WebM promo: fill the entire card-visual content box (same footprint as the panel) */
.card-visual--addon-motion video {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: none;
    flex-shrink: 0;
    filter: none;
}

.card-visual--pro-easter {
    background: linear-gradient(135deg, rgba(247, 247, 247, 1) 0%, rgba(230, 230, 230, 1) 43%, rgba(163, 163, 163, 1) 100%);
}

.card-visual--wizard-easter {
    background: linear-gradient(135deg, rgba(248, 232, 230, 1) 0%, rgba(206, 212, 244, 1) 82%);
}

.addon-quote {
    margin: 0 0 1.15rem;
    padding: 1rem 1.15rem;
    border-left: 4px solid var(--primary);
    background: rgba(147, 51, 234, 0.06);
    border-radius: 0 12px 12px 0;
}

.addon-quote p {
    margin: 0 0 0.5rem;
    font-size: 0.98rem;
    font-style: italic;
    color: #374151;
    line-height: 1.5;
}

.addon-quote-by {
    font-size: 0.85rem;
    font-weight: 600;
    font-style: normal;
    color: #6b7280;
}

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

/* --- Tablet / landscape phones (≤ 767px) --- */
@media (max-width: 767px) {

    body {
        background-size: 180% auto;
        background-position: center top;
    }

    header {
        padding: 1.5rem 1rem 3.5rem;
    }

    .hero-pill {
        font-size: 1.1rem;
        padding: 10px 18px;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 0.35rem;
    }

    .anchor-menu {
        gap: 0.6rem;
        margin-top: 1.25rem;
    }

    .anchor-link {
        padding: 0.6rem 1.1rem;
        font-size: 0.88rem;
    }

    .urgency-banner {
        font-size: 14px;
        padding: 0.65rem 1.25rem;
        margin-top: 20px;
        text-align: center;
        line-height: 1.5;
    }

    .upgrades-section {
        padding: 3rem 0.75rem;
    }

    .product-card {
        padding: 1.5rem 1.15rem;
        margin-bottom: 2rem;
        border-radius: 16px;
    }

    /* Disable expensive blur effects on mobile for smooth scrolling */
    #pro.product-card::before,
    #wizard.product-card::before,
    #color.product-card::before,
    #motion.product-card::before {
        inset: -8% -4% -12% -4%;
        filter: blur(40px);
        opacity: 0.5;
        will-change: transform;
    }

    .product-card::after {
        border-radius: 16px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.92);
    }

    .hero-title {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.25);
    }

    .anchor-link {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .easter-badge {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .card-body {
        gap: 1.25rem;
    }

    .card-visual {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .card-visual img,
    .card-visual video {
        width: 100%;
        max-width: 320px;
    }

    .card-visual--zoom-left img,
    .card-visual--zoom-right img {
        width: 100%;
        max-width: 320px;
        height: auto;
        object-fit: contain;
        transform: none;
    }

    #pro .card-visual--pro-easter img,
    #wizard .card-visual--wizard-easter img {
        max-width: 300px;
    }

    .product-name {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .price-original-value {
        font-size: 2.5rem;
    }

    .price-value {
        font-size: 3.25rem;
    }

    .price-only,
    .price-period {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .price-currency {
        font-size: 1.65rem;
    }

    .addon-lead {
        font-size: 1.05rem;
    }

    .btn-buy {
        font-size: 1rem;
        padding: 1.1rem 1.5rem;
        border-radius: 10px;
    }

    .feature-item {
        font-size: 0.92rem;
    }

    .features-list {
        gap: 0.6rem;
    }

    .features-list--checkout {
        margin-bottom: 1.15rem;
    }

    /* In Motion video: give it a sensible height when stacked */
    .card-visual--addon-motion {
        min-height: 220px;
        max-height: 280px;
    }

    .card-visual--addon-motion video {
        max-height: 280px;
    }

    .payment-banner {
        max-width: 180px;
    }
}

/* --- Small phones (≤ 480px) --- */
@media (max-width: 480px) {

    body {
        background-size: 260% auto;
    }

    header {
        padding: 1.25rem 0.75rem 2.5rem;
    }

    .hero-pill {
        font-size: 0.95rem;
        padding: 8px 14px;
        border-radius: 12px;
    }

    .hero-title {
        font-size: 1.45rem;
    }

    .anchor-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .anchor-link {
        justify-content: center;
        padding: 0.55rem 0.75rem;
        font-size: 0.82rem;
    }

    .urgency-banner {
        font-size: 13px;
        padding: 0.55rem 1rem;
    }

    .upgrades-section {
        padding: 2rem 0.5rem;
    }

    .product-card {
        padding: 1.15rem 0.85rem;
        margin-bottom: 1.5rem;
        border-radius: 14px;
    }

    .product-card::after {
        border-radius: 14px;
    }

    #pro.product-card::before,
    #wizard.product-card::before,
    #color.product-card::before,
    #motion.product-card::before {
        display: none;
    }

    .card-visual {
        padding: 1rem;
    }

    .product-name {
        font-size: 1.35rem;
    }

    .price-original-value {
        font-size: 2rem;
        margin-top: 0.5rem;
    }

    .price-value {
        font-size: 2.65rem;
    }

    .price-only,
    .price-period {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .price-currency {
        font-size: 1.4rem;
        margin-top: 0.2rem;
    }

    .price-block {
        margin-bottom: 1rem;
    }

    .easter-badge {
        font-size: 0.82rem;
        padding: 0.4rem 0.85rem;
        margin-bottom: 1rem;
    }

    .addon-lead {
        font-size: 0.95rem;
    }

    .btn-buy {
        font-size: 0.9rem;
        padding: 1rem 1.15rem;
        gap: 0.5rem;
    }

    .btn-buy svg {
        width: 20px;
        height: 20px;
    }

    .feature-item {
        font-size: 0.85rem;
        gap: 0.55rem;
    }

    .feature-item svg {
        width: 18px;
        height: 18px;
    }

    .card-visual--addon-motion {
        min-height: 180px;
        max-height: 240px;
    }

    .card-visual--addon-motion video {
        max-height: 240px;
    }

    .payment-banner {
        max-width: 160px;
        margin-top: 1rem;
    }

    .checkout-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-container img {
        max-height: 60px;
    }
}
