/* ===========================
   RESET & BASE
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===========================
   DESIGN TOKENS
   Playful Geometric × Massoterapia Chinesa
   =========================== */
:root {
    --bg: #FAF6EE;
    --fg: #1C1C1E;
    --card: #FFFFFF;
    --muted: #F0E8D0;
    --muted-fg: #6B7280;

    /* Ouro Imperial — acento principal */
    --accent: #F09010;
    --accent-hover: #FFD020;
    --accent-dark: #C07810;
    --accent-fg: #1C1C1E;

    /* Jade — secundário */
    --jade: #0A8A58;
    --jade-light: #14B87A;

    /* Terracota — urgência */
    --terra: #D4300E;
    --terra-light: #F03820;

    /* Areia — quaternário */
    --sand: #D8A040;
    --sand-light: #ECC860;

    /* Hard Shadows */
    --shadow-sm: 3px 3px 0px #1C1C1E;
    --shadow-md: 5px 5px 0px #1C1C1E;
    --shadow-lg: 8px 8px 0px #1C1C1E;

    /* Borders */
    --border: 2px solid #1C1C1E;

    /* Radius */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-full: 9999px;

    /* Bounce easing */
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===========================
   GLOBAL
   =========================== */
body {
    font-family: 'Outfit', system-ui, sans-serif;
    background-color: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulseSoft {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(3deg);
    }

    75% {
        transform: rotate(-3deg);
    }
}

@keyframes badge-shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===========================
   URGENCY BANNER
   =========================== */
.urgency-banner {
    background: var(--terra);
    color: white;
    text-align: center;
    padding: 14px 0;
    border-bottom: var(--border);
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
}

.urgency-text {
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;*/
    font-size: 1.1rem; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.urgency-text .date-highlight {
    color: #FFD020;
    font-weight: 800;
}

.top-countdown {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0;
}

.top-time-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 38px;
    padding: 0 10px;
    background: white;
    color: var(--terra);
    border-radius: 8px;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 2px 2px 0 var(--fg);
}

.top-time-separator {
    color: white;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background-color: var(--bg);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: var(--border);
}

/* Dot grid */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(240, 144, 16, 0.35) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    z-index: 0;
    pointer-events: none;
}

/* Decorative circle top-right */
.hero::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    background: rgba(240, 144, 16, 0.14);
    border-radius: 50%;
    border: 2px dashed rgba(240, 144, 16, 0.55);
    top: -100px;
    right: -80px;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    color: var(--fg);
    letter-spacing: -1px;
}

.number-500 {
    background: linear-gradient(135deg, #C07810 0%, #F09010 50%, #FFD020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.bonus-text {
    background: linear-gradient(135deg, #C07810 0%, #F09010 60%, #FFD020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.highlight-text {
    background: linear-gradient(135deg, #F09010);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.bonus-green-text {
    background: linear-gradient(135deg, var(--jade) 0%, var(--jade-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 36px;
    color: #4B4B4B;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
}

/* Video */
.video-wrapper {
    max-width: 350px;
    margin: 0 auto 30px auto;
    border-radius: var(--r-lg);
    border: var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.video-card {
    max-width: 350px;
    margin: 0 auto 40px;
    border-radius: var(--r-lg);
    border: var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.video-card-inner {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video-poster {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r-md);
}

.video-card video {
    width: 100%;
    height: auto;
    border-radius: var(--r-md);
    display: block;
    background: #000;
}

.video-card iframe {
    border-radius: var(--r-md);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-card-inner:hover .play-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.play-icon {
    width: 70px;
    height: 70px;
    background: white;
    border: var(--border);
    box-shadow: var(--shadow-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--bounce);
}

.play-icon i {
    color: var(--fg);
    font-size: 24px;
    margin-left: 4px;
}

.video-card-inner:hover .play-icon {
    transform: scale(1.12);
    box-shadow: var(--shadow-md);
}

.play-overlay.hidden {
    display: none;
}

.video-caption {
    text-align: center;
    font-size: 0.95rem;
    margin-top: 15px;
    color: var(--muted-fg);
}

/* Mockup */
.mockup-wrapper {
    max-width: 550px;
    width: 100%;
    margin: 0 auto 40px auto;
    position: relative;
    border-radius: var(--r-lg);
    border: var(--border);
    box-shadow: var(--shadow-lg);
    padding: 4px;
    background: white;
    transition: all 0.3s var(--bounce);
}

.mockup-wrapper:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px var(--fg);
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--r-lg) - 4px);
}

@media (max-width: 576px) {
    .mockup-wrapper {
        max-width: 90%;
        margin-bottom: 28px;
    }
}

/* ===========================
   CTA BUTTON — Candy Button
   =========================== */
.cta-button {
    background: var(--accent);
    color: var(--fg);
    border: var(--border);
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Outfit', system-ui, sans-serif;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all 0.22s var(--bounce);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    animation: pulseSoft 2.5s ease-in-out infinite;
}

.cta-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px var(--fg);
    background: var(--accent-hover);
    animation: none;
}

.cta-button:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--fg);
}

.hero-cta {
    margin-bottom: 40px;
}

/* Badges */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.badge {
    background: var(--card);
    color: var(--fg);
    padding: 8px 18px;
    border-radius: var(--r-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s var(--bounce);
}

.badge:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px var(--fg);
}

/* ===========================
   SECTION TITLES
   =========================== */
.section-title {
    text-align: center;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--fg);
    position: relative;
    letter-spacing: -1px;
    line-height: 1.2;
}

/* .section-title::after {
    content: '';
    width: 72px;
    height: 5px;
    background: var(--accent);
    border: 1.5px solid var(--fg);
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--r-full);
} */

/* ===========================
   WHAT YOU GET
   =========================== */
.what-you-get {
    background: var(--bg);
    padding: 100px 0;
    position: relative;
}

.what-you-get::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(240, 144, 16, 0.28) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Sticker Card */
.benefit-card {
    background: var(--card);
    padding: 36px 28px;
    border-radius: var(--r-lg);
    text-align: center;
    border: var(--border);
    box-shadow: var(--shadow-md);
    transition: all 0.22s var(--bounce);
    position: relative;
}

.benefit-card:hover {
    transform: translate(-3px, -3px) rotate(-0.5deg);
    box-shadow: 8px 8px 0px var(--fg);
}

.benefit-card:nth-child(1) .benefit-icon {
    background: var(--accent);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: var(--jade-light);
    color: white;
}

.benefit-card:nth-child(3) .benefit-icon {
    background: var(--sand);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: var(--terra-light);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--fg);
    margin: 0 auto 24px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--bounce);
    position: relative;
    line-height: 1;
}

.benefit-icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.benefit-card:hover .benefit-icon {
    transform: rotate(10deg) scale(1.12);
    box-shadow: var(--shadow-md);
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--fg);
    letter-spacing: -0.3px;
}

.benefit-card:hover h3 {
    color: var(--accent-dark);
}

.benefit-card p {
    color: var(--muted-fg);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===========================
   EXCLUSIVE BENEFITS
   =========================== */
.exclusive-benefits {
    padding: 100px 0;
    background: var(--fg);
    position: relative;
    overflow: hidden;
    border-top: var(--border);
    border-bottom: var(--border);
}

.exclusive-benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(240, 144, 16, 0.22) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

/* Large dashed circle decoration */
.exclusive-benefits::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px dashed rgba(240, 144, 16, 0.40);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    pointer-events: none;
}

.exclusive-benefits .section-title {
    color: #F0E8D0;
}

.exclusive-benefits .section-title::after {
    background: var(--accent);
    border-color: var(--accent);
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.exclusive-card {
    text-align: center;
    padding: 36px 28px;
    border-radius: var(--r-lg);
    border: 2px solid rgba(240, 144, 16, 0.50);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 5px 5px 0px rgba(240, 144, 16, 0.35);
    transition: all 0.22s var(--bounce);
    position: relative;
}

.exclusive-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0px rgba(240, 144, 16, 0.60);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(240, 144, 16, 0.80);
}

.exclusive-card:nth-child(1) .exclusive-icon {
    background: var(--accent);
}

.exclusive-card:nth-child(2) .exclusive-icon {
    background: var(--jade);
}

.exclusive-card:nth-child(3) .exclusive-icon {
    background: var(--jade-light);
}

.exclusive-card:nth-child(4) .exclusive-icon {
    background: var(--terra);
}

.exclusive-icon {
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--bounce);
    position: relative;
    line-height: 1;
}

.exclusive-icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.exclusive-card:hover .exclusive-icon {
    transform: rotate(10deg) scale(1.12);
}

.exclusive-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #F0E8D0;
    transition: color 0.2s ease;
    letter-spacing: -0.3px;
}

.exclusive-card:hover h3 {
    color: var(--accent);
}

.exclusive-card p {
    color: #9A8F80;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===========================
   BONUS SECTION
   =========================== */
.bonus-section {
    background: var(--muted);
    border-top: var(--border);
    border-bottom: var(--border);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(240, 144, 16, 0.30) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.bonus-card {
    background: var(--card);
    padding: 34px 26px;
    border-radius: var(--r-lg);
    text-align: center;
    border: var(--border);
    box-shadow: var(--shadow-md);
    transition: all 0.22s var(--bounce);
    position: relative;
}

.bonus-card:hover {
    transform: translate(-3px, -3px) rotate(0.5deg);
    box-shadow: 8px 8px 0px var(--fg);
}

.bonus-value {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0;
    display: block;
    background: linear-gradient(135deg, #C07810, #F09010, #FFD020);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-original-price {
    text-decoration: line-through;
    -webkit-text-fill-color: var(--terra);
    color: var(--terra);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    margin-left: 4px;
}

.bonus-image {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--r-md);
    border: var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--bounce);
}

.bonus-image img:hover {
    transform: scale(1.03) rotate(1deg);
}

.bonus-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 14px;
    color: var(--fg);
}

.bonus-card p {
    color: var(--muted-fg);
    line-height: 1.6;
    font-size: 0.93rem;
}

.total-bonus {
    text-align: center;
    padding: 20px 28px;
    background: var(--fg);
    color: white;
    border-radius: var(--r-lg);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    border: var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.total-bonus h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.line-through {
    text-decoration: line-through;
    opacity: 0.8;
}

.free {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent);
    margin-left: 8px;
}

/* ===========================
   PLANS TIMER
   =========================== */
.plans-timer {
    text-align: left;
    margin-bottom: 40px;
    padding: 20px 28px 18px;
    background: var(--terra);
    border-radius: var(--r-lg);
    max-width: 435px;
    margin-left: auto;
    margin-right: auto;
    border: var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.plans-timer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
}

.plans-timer .timer-text {
    font-size: 0.9rem;
    margin: 0 auto 14px;
    max-width: 305px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.countdown-plans {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.plan-time-unit {
    width: 70px;
    height: 84px;
    background: white;
    border: 2px solid var(--fg);
    border-radius: 17px;
    box-shadow: 3px 4px 0 var(--fg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plan-time-number {
    color: var(--terra);
    font-size: 1.85rem;
    line-height: 1;
    font-weight: 900;
}

.plan-time-label {
    color: var(--fg);
    font-size: 0.62rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

/* ===========================
   PRICING PLANS
   =========================== */
.pricing-plans {
    background: var(--bg);
    border-top: var(--border);
    border-bottom: var(--border);
    position: relative;
    overflow: hidden;
}

.pricing-plans::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(240, 144, 16, 0.28) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 520px));
    justify-content: center;
    gap: 40px;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.plans-grid.single-plan {
    grid-template-columns: minmax(300px, 560px);
    max-width: 620px;
}

.plan-card {
    background: var(--card);
    padding: 32px 26px;
    border-radius: var(--r-lg);
    text-align: left;
    position: relative;
    border: var(--border);
    box-shadow: var(--shadow-md);
    transition: all 0.22s var(--bounce);
}

.plan-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px var(--fg);
}

.plan-card.popular {
    border: 2.5px solid var(--accent);
    background: #FFFDF5;
    box-shadow: none;
}

.plan-card.popular:hover {
    box-shadow: 7px 7px 0px var(--fg);
    transform: translate(-3px, -3px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #C07810, #E08510, #F09010, #FFD020, #F09010, #E08510, #C07810);
    background-size: 300% auto;
    animation: badge-shimmer 3s linear infinite;
    color: var(--fg);
    padding: 8px 22px;
    border-radius: var(--r-full);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    border: var(--border);
    box-shadow: 3px 3px 0px var(--fg);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plan-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--fg);
    text-align: center;
}

.plan-card h3 span {
    display: block;
    margin-top: 8px;
}

.price {
    margin-bottom: 12px;
    text-align: center;
}

.savings-amount {
    font-size: 0.85rem;
    color: var(--jade);
    font-weight: 600;
    text-align: center;
    margin-bottom: 18px;
    background: #D0FAE8;
    padding: 6px 14px;
    border-radius: var(--r-full);
    border: 1.5px solid var(--jade);
    display: block;
    width: 100%;
}

.old-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: #999;
    display: block;
}

.new-price {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--jade);
    display: block;
    line-height: 1.1;
}

.period {
    font-size: 0.9rem;
    color: var(--muted-fg);
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
}

.plan-features li {
    padding: 10px 0;
    font-size: 0.97rem;
    color: var(--fg);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--muted);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--jade);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.plan-features .fa-star {
    color: var(--accent);
}

.plan-features .not-included {
    color: #e53212;
}

.plan-features .not-included i {
    color: #e53212;
}

/* Plan Buttons */
.plan-button {
    width: 100%;
    padding: 15px;
    border-radius: var(--r-full);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Outfit', system-ui, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.22s var(--bounce);
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    letter-spacing: 0.5px;
    border: var(--border);
}

.basic-button {
    background: var(--jade);
    color: white;
    box-shadow: var(--shadow-sm);
}

.basic-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--fg);
    background: var(--jade-light);
}

.premium-button {
    background: var(--accent);
    font-size: 1.1rem;
    color: var(--fg);
    box-shadow: var(--shadow-sm);
    animation: pulseSoft 2s ease-in-out infinite;
}

.premium-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--fg);
    background: #ffa31a;
    animation: none;
}

/* Premium Social Proof */
.premium-social-proof {
    background: #FFF7D8;
    padding: 10px 14px;
    border-radius: var(--r-md);
    margin-bottom: 18px;
    text-align: center;
    border: 1.5px solid var(--accent);
}

.purchase-count {
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0;
    color: var(--muted-fg);
}

/* Item states */
.bonus-item {
    color: var(--accent) !important;
}

.bonus-item i {
    color: var(--accent) !important;
}

.no-benefit {
    color: var(--terra) !important;
}

.no-benefit i {
    color: var(--terra) !important;
}

.gold-item {
    color: var(--accent-dark) !important;
    font-weight: 600;
    font-size: 1.05rem !important;
}

.gold-item i {
    color: var(--accent) !important;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
    background: var(--muted);
    border-top: var(--border);
    border-bottom: var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 26px;
}

.testimonial-card {
    background: var(--card);
    padding: 30px;
    border-radius: var(--r-lg);
    border: var(--border);
    box-shadow: var(--shadow-md);
    transition: all 0.22s var(--bounce);
}

.testimonial-card:hover {
    transform: translate(-3px, -3px) rotate(-0.5deg);
    box-shadow: 8px 8px 0px var(--fg);
}

.stars {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
    font-size: 0.97rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author i {
    font-size: 2.5rem;
    color: var(--accent);
}

.testimonial-photo {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: var(--border);
    box-shadow: 3px 3px 0px var(--fg);
    transition: transform 0.3s var(--bounce);
}

.testimonial-photo:hover {
    transform: rotate(-5deg) scale(1.1);
}

.testimonial-author strong {
    display: block;
    color: var(--fg);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.88rem;
    color: var(--muted-fg);
}

/* ===========================
   ABOUT AUTHOR
   =========================== */
.about-author {
    background: var(--fg);
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-author::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(240, 144, 16, 0.20) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.author-content {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    padding: 32px;
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    background: var(--card);
    border: var(--border);
    position: relative;
    z-index: 1;
}

.author-info {
    flex: 2;
    order: 1;
}

.author-image {
    flex: 1;
    text-align: center;
    order: 2;
}

.author-info h2 {
    font-size: 2rem;
    margin-bottom: 6px;
    color: var(--fg);
    font-weight: 700;
}

.author-info h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: var(--accent);
    font-weight: 700;
}

.author-title {
    font-size: 1rem;
    color: var(--jade);
    margin-bottom: 16px;
    font-weight: 500;
}

.author-stats {
    display: flex;
    gap: 10px;
    margin: 14px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 10px 8px;
    background: var(--muted);
    border-radius: var(--r-md);
    border: 1.5px solid var(--sand-light);
    box-shadow: 3px 3px 0px var(--fg);
    min-width: 115px;
    flex: 1;
    max-width: 160px;
    transition: all 0.22s var(--bounce);
}

.stat:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--fg);
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-dark);
    font-weight: 800;
}

.stat span {
    font-size: 0.7rem;
    color: var(--muted-fg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: block;
    word-break: keep-all;
    overflow-wrap: normal;
}

.author-image img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: var(--border);
    box-shadow: 5px 5px 0px var(--accent);
    transition: all 0.3s var(--bounce);
}

.author-image img:hover {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 7px 7px 0px var(--accent);
}

.author-info p {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 14px;
}

/* ===========================
   FAQ
   =========================== */
.faq {
    background: var(--bg);
    border-top: var(--border);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 151, 58, 0.15) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--card);
    margin-bottom: 14px;
    border-radius: var(--r-md);
    border: var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.2s var(--bounce);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translate(-1px, -1px);
}

.faq-question {
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--muted);
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--fg);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s var(--bounce);
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-answer {
    padding: 0 26px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 0 0 22px 0;
    color: var(--muted-fg);
    line-height: 1.7;
    font-size: 0.96rem;
}

.faq-item.active .faq-question {
    background: var(--muted);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 20px 26px;
}

/* ===========================
   GUARANTEE
   =========================== */
.guarantee {
    background: var(--muted);
    text-align: center;
    border-top: var(--border);
    border-bottom: var(--border);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 151, 58, 0.18) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.guarantee-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 44px;
    border-radius: var(--r-lg);
    background: var(--card);
    border: var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.guarantee-badge {
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
    width: 180px;
    height: 180px;
}

.guarantee-badge i {
    font-size: 180px;
    color: var(--accent);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(4px 4px 0px var(--fg));
}

.badge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    margin-top: -5px;
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.badge-label {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    margin-top: 4px;
}

.guarantee-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.guarantee h2 {
    font-size: 2.4rem;
    margin-bottom: 18px;
    color: var(--fg);
    font-weight: 800;
}

.guarantee p {
    font-size: 1.2rem;
    margin-bottom: 36px;
    color: #555;
    line-height: 1.6;
}

.guarantee-cta {
    background: var(--accent);
    color: var(--fg);
    border: var(--border);
    box-shadow: var(--shadow-md);
    font-weight: 700;
    animation: pulseSoft 2s ease-in-out infinite;
}

.guarantee-cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px var(--fg);
    background: var(--accent-hover);
    animation: none;
}

/* ===========================
   FINAL URGENCY (legacy)
   =========================== */
.final-urgency {
    background: var(--card);
    color: var(--fg);
    text-align: center;
    border-top: var(--border);
}

.final-urgency h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-weight: 800;
    color: var(--terra);
}

.final-urgency p {
    font-size: 1.3rem;
    margin-bottom: 36px;
    color: #555;
    font-weight: 500;
}

.urgency-timer {
    margin: 0 auto 40px auto;
    padding: 28px;
    background: var(--muted);
    border-radius: var(--r-lg);
    max-width: 600px;
    border: var(--border);
    box-shadow: var(--shadow-sm);
}

.timer-text {
    font-size: 1.2rem;
    margin-bottom: 22px;
    font-weight: 700;
    color: var(--terra);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    background: var(--card);
    padding: 22px 18px;
    border-radius: var(--r-md);
    min-width: 90px;
    border: var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.22s var(--bounce);
}

.time-unit:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-md);
}

.time-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--terra);
    line-height: 1;
}

.time-label {
    font-size: 0.9rem;
    color: var(--muted-fg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta {
    background: var(--accent);
    color: var(--fg);
    font-size: 1.3rem;
    padding: 20px 56px;
    border-radius: var(--r-full);
    border: var(--border);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.22s var(--bounce);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.final-cta:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px var(--fg);
    background: var(--accent-hover);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--fg);
    color: white;
    text-align: center;
    padding: 40px 0;
    border-top: var(--border);
}

.footer p {
    margin-bottom: 8px;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===========================
   NOTIFICATIONS
   =========================== */
.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 200px;
    pointer-events: none;
}

.notification {
    background: var(--card);
    padding: 10px 12px;
    border-radius: var(--r-md);
    border: var(--border);
    box-shadow: 4px 4px 0px var(--fg);
    display: flex;
    align-items: flex-start;
    pointer-events: all;
    animation: slideInRight 0.4s ease, fadeOut 0.4s ease 4.6s;
    position: relative;
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--fg);
    line-height: 1.2;
}

.notification-product {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.2;
}

.notification-location {
    font-size: 0.72rem;
    color: #999;
    line-height: 1.2;
}

.notification-icon {
    width: 34px;
    height: 34px;
    background: var(--accent);
    border-radius: 50%;
    border: 1.5px solid var(--fg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 10px;
    box-shadow: 2px 2px 0px var(--fg);
}

/* ===========================
   POPUP
   =========================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 28, 30, 0.82);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow-y: auto;
    padding: 16px 10px;
    -webkit-overflow-scrolling: touch;
}

.popup-overlay.active {
    display: flex;
}

.popup-card {
    background: var(--card);
    border-radius: var(--r-lg);
    border: var(--border);
    padding: 30px 26px 26px;
    max-width: 380px;
    width: 94%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin: auto;
    position: relative;
    animation: slideUp 0.35s var(--bounce);
}

/* Interactive close button badge */
.popup-close-btn {
    position: absolute;
    width: 38px;
    height: 38px;
    background: var(--accent);
    border: var(--border);
    border-radius: 50%;
    top: -16px;
    right: -16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--fg);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 2px 2px 0px var(--fg);
    transition: all 0.2s var(--bounce);
}

.popup-close-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--fg);
    background: var(--accent-hover);
}

.popup-close-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px var(--fg);
}

.popup-content {
    background: var(--card);
    border-radius: var(--r-lg);
    border: var(--border);
    padding: 22px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.35s var(--bounce);
    position: relative;
}

.popup-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: bounce 1s ease infinite;
}

.popup-title {
    font-size: 1.5rem;
    color: var(--fg);
    margin-bottom: 8px;
    font-weight: 800;
}

.popup-subtitle {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.5;
}

.popup-subtitle strong {
    color: var(--accent);
    font-weight: 700;
}

.popup-price {
    background: var(--muted);
    border-radius: var(--r-md);
    border: 1.5px solid var(--sand-light);
    padding: 14px;
    margin-bottom: 14px;
}

.popup-old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.popup-new-price {
    font-size: 2.2rem;
    color: var(--accent) !important;
    font-weight: 800;
    margin-bottom: 5px;
}

.popup-save {
    font-size: 0.85rem;
    color: var(--terra);
    font-weight: 600;
}

.popup-benefits {
    text-align: left;
    margin-bottom: 14px;
    list-style: none;
    padding: 0;
}

.popup-benefit {
    font-size: 0.9rem;
    color: var(--fg);
    padding: 4px 0;
    border-bottom: 1px solid var(--muted);
}

.popup-benefit:last-child {
    border-bottom: none;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* popup-card overrides */
.popup-card .popup-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--fg);
    margin-bottom: 8px;
}

.popup-card .popup-subtitle {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.45;
}

.popup-card .popup-price {
    margin-bottom: 14px;
    padding: 12px 14px;
}

.popup-card .popup-old-price {
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.popup-card .popup-new-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.popup-card .popup-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    text-align: left;
}

.popup-card .popup-benefits li {
    padding: 5px 0;
    color: var(--fg);
    font-weight: 500;
    font-size: 0.93rem;
    border-bottom: 1px solid var(--muted);
}

.popup-card .popup-benefits li:last-child {
    border-bottom: none;
}

.popup-card .popup-benefits li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 800;
    margin-right: 8px;
}

.popup-card .popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup-btn {
    padding: 14px 20px;
    border: var(--border);
    border-radius: var(--r-full);
    font-size: 0.93rem;
    font-weight: 700;
    font-family: 'Outfit', system-ui, sans-serif;
    cursor: pointer;
    transition: all 0.22s var(--bounce);
    text-decoration: none;
    text-align: center;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-btn-accept {
    background: #F09010;
    color: black;
    box-shadow: var(--shadow-sm);
}

.popup-btn-accept:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--fg);
    background: var(--accent-hover);
}

.popup-btn-decline {
    background: transparent;
    color: var(--muted-fg);
    font-size: 0.88rem;
    font-weight: 500;
    border: 1.5px solid #ddd;
    box-shadow: none;
    text-transform: none;
    letter-spacing: 0;
}

.popup-btn-decline:hover {
    color: var(--fg);
    background: var(--muted);
    border-color: var(--fg);
}

/* ===========================
   SCROLL SMOOTH
   =========================== */
html {
    scroll-behavior: smooth;
}

/* ===========================
   REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===========================
   RESPONSIVE — 768px
   =========================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 44px;
    }

    .what-you-get,
    .exclusive-benefits {
        padding: 70px 0;
    }

    .benefits-grid,
    .exclusive-grid {
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .benefit-card,
    .exclusive-card {
        padding: 30px 22px;
    }

    .benefit-icon,
    .exclusive-icon {
        width: 65px;
        height: 65px;
        font-size: 1.9rem;
        margin: 0 auto 18px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.popular {
        transform: none;
    }

    .author-content {
        flex-direction: column;
        gap: 22px;
        padding: 24px;
    }

    .author-info {
        order: 2;
    }

    .author-image {
        order: 1;
    }

    .author-info h2 {
        font-size: 1.7rem;
    }

    .author-info h3 {
        font-size: 1.4rem;
    }

    .author-stats {
        justify-content: center;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 14px;
    }

    .time-unit {
        min-width: 70px;
        padding: 14px;
    }

    .time-number {
        font-size: 2rem;
    }

    .plans-timer {
        padding: 18px 14px;
        margin-bottom: 28px;
    }

    .countdown-plans {
        gap: 10px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-photo {
        width: 48px;
        height: 48px;
    }

    .urgency-text {
        font-size: 0.95rem;
        gap: 8px;
        letter-spacing: 0.8px;
    }

    .top-time-box {
        min-width: 42px;
        height: 34px;
        padding: 0 8px;
        font-size: 1.18rem;
    }

    .top-time-separator {
        font-size: 1.35rem;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 0.97rem;
    }

    .final-cta {
        font-size: 1.05rem;
        padding: 17px 36px;
    }

    .hero::after {
        width: 200px;
        height: 200px;
        top: -60px;
        right: -50px;
        display: none;
    }

    .exclusive-benefits::after {
        display: none;
    }

    .notification-container {
        top: 10px;
        right: 10px;
        max-width: 200px;
    }

    .notification {
        padding: 8px 10px;
        box-shadow: 3px 3px 0px var(--fg);
    }

    .notification-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        margin-right: 8px;
    }

    .notification-name {
        font-size: 0.82rem;
    }

    .notification-product {
        font-size: 0.73rem;
    }

    .notification-location {
        font-size: 0.68rem;
    }

    .guarantee-content {
        padding: 30px 22px;
    }

    .guarantee h2 {
        font-size: 2rem;
    }

    .guarantee p {
        font-size: 1.05rem;
    }
}

/* ===========================
   RESPONSIVE — 480px
   =========================== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 55px 0;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        margin-bottom: 24px;
    }

    section {
        padding: 60px 0;
    }

    .what-you-get,
    .exclusive-benefits {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 34px;
    }

    .benefits-grid,
    .exclusive-grid,
    .bonus-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card,
    .exclusive-card {
        padding: 30px 20px;
        border-radius: var(--r-lg);
    }

    .benefit-icon,
    .exclusive-icon {
        width: 62px;
        height: 62px;
        font-size: 1.7rem;
        margin: 0 auto 16px;
    }

    .bonus-card,
    .testimonial-card {
        padding: 26px 18px;
    }

    .author-image img {
        width: 90px;
        height: 90px;
    }

    .author-info h2 {
        font-size: 1.5rem;
    }

    .author-info h3 {
        font-size: 1.3rem;
    }

    .stat {
        min-width: 110px;
        max-width: 150px;
    }

    .stat strong {
        font-size: 1.3rem;
    }

    .plan-card h3 {
        font-size: 1.4rem;
    }

    .new-price {
        font-size: 2.6rem;
    }

    .old-price {
        font-size: 1rem;
    }

    .cta-button {
        padding: 14px 22px;
        font-size: 0.9rem;
    }

    .popup-card {
        padding: 22px 18px 20px;
        width: 96%;
    }

    .popup-card .popup-title {
        font-size: 1.25rem;
    }

    .popup-card .popup-subtitle {
        font-size: 0.88rem;
    }

    .popup-card .popup-new-price {
        font-size: 1.8rem;
    }

    .popup-btn {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .popup-btn-decline {
        padding: 10px 14px;
        font-size: 0.84rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .bonus-card h3 {
        font-size: 1.05rem;
    }

    .bonus-card p {
        font-size: 0.88rem;
    }
}
