/* 
  Upsell — Simulados SAEB do 1º ao 9º Ano
  Design System: Teal & Coral (autoral)
*/
:root {
    --primary-color: #0a3d3a;
    --primary-light: #135e57;
    --secondary-color: #ff7a45;
    --secondary-hover: #ff8f63;

    --accent-purple: #ff7a45;
    --accent-teal: #0a3d3a;

    --text-dark: #1a202c;
    --text-light: #4a5568;
    --text-white: #ffffff;
    --text-gray: #a0aec0;

    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-dark: #0a3d3a;
    --bg-darker: #062a27;

    --border-color: #e2e8f0;

    --font-heading: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   CONFIRMATION BANNER (TOP)
   ========================================== */
.confirmation-banner {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: white;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.confirmation-banner i {
    font-size: 1.1rem;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {

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

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

/* ==========================================
   PROGRESS BAR
   ========================================== */
.progress-section {
    background: var(--bg-white);
    padding: 20px 0 16px;
    border-bottom: 1px solid var(--border-color);
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
    white-space: nowrap;
}

.progress-step.completed {
    color: var(--secondary-color);
}

.progress-step.active {
    color: var(--primary-color);
}

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.completed .step-circle {
    background-color: var(--secondary-color);
    color: white;
}

.active .step-circle {
    background-color: var(--primary-color);
    color: white;
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(11, 30, 66, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(11, 30, 66, 0);
    }
}

.pending .step-circle {
    background-color: #e2e8f0;
    color: var(--text-gray);
}

.progress-line {
    width: 40px;
    height: 2px;
    background-color: #e2e8f0;
    flex-shrink: 0;
    margin: 0 6px;
}

.progress-line.completed-line {
    background-color: var(--secondary-color);
}

/* ==========================================
   HERO / HEADLINE SECTION
   ========================================== */
.upsell-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #041e1c 100%);
    color: var(--text-white);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.upsell-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 69, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(10, 61, 58, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.upsell-hero .container {
    position: relative;
    z-index: 1;
}

.upsell-eyebrow {
    display: inline-block;
    background: rgba(255, 122, 69, 0.15);
    color: #c4b5fd;
    padding: 6px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.6s ease-out;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.upsell-hero h1 {
    color: var(--text-white);
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    animation: fadeSlideUp 0.6s ease-out 0.1s both;
}

.upsell-hero h1 .highlight {
    color: #4fc3f7;
}

.upsell-hero img {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.upsell-hero .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeSlideUp 0.6s ease-out 0.2s both;
}

/* Animated Down Arrow */
.animated-arrow {
    margin: 0.5rem auto 1.5rem;
    display: flex;
    justify-content: center;
    animation: arrowBounce 1.8s ease-in-out infinite;
}

.animated-arrow svg {
    filter: drop-shadow(0 0 8px rgba(10, 61, 58, 0.4));
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* Inline CTA Button (hero & features) */
.btn-cta-inline {
    display: inline-block;
    margin-top: 1.75rem;
    padding: 16px 36px;
    background: linear-gradient(135deg, #ffb020 0%, #ff7a45 100%);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(255, 122, 69, 0.3);
}

.btn-cta-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 122, 69, 0.4);
    color: white;
}

.btn-cta-inline.dark {
    margin-top: 2rem;
    display: block;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Stack CTA Area */
.stack-cta-area {
    text-align: center;
    margin-top: 2rem;
}

.stack-cta-area .btn-accept {
    max-width: 500px;
}

.stack-cta-area .btn-accept-sub {
    color: var(--text-light);
}

.stack-cta-area .btn-deny {
    color: var(--text-light);
    text-decoration: underline;
}

.stack-cta-area .btn-deny:hover {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.04);
}

.stack-cta-area .cta-trust {
    color: var(--text-light);
}

.stack-sub {
    display: block;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.stack-sub i {
    margin-right: 4px;
}

.stack-deny {
    display: inline-block;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: none;
    font-family: var(--font-body);
    text-decoration: underline;
    padding: 8px 16px;
    border-radius: 8px;
}

.stack-deny:hover {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.04);
}

.stack-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.8rem;
}

.stack-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================
   PROBLEM / OPPORTUNITY SECTION
   ========================================== */
.opportunity-section {
    padding: 3.5rem 0;
    background: var(--bg-white);
}

.opportunity-section .section-tag,
.section-tag {
    display: table;
    background-color: #e3f2fd;
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 auto 1rem;
}

.opportunity-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 1rem;
}

.opportunity-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.problem-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.problem-card .emoji {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.problem-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.solution-callout {
    background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid #c7d2fe;
}

.solution-callout .callout-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.solution-callout h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.solution-callout p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ==========================================
   METHOD SECTION — COMO FUNCIONA
   ========================================== */
.method-section {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #f0f4ff 0%, var(--bg-white) 100%);
}

.method-section .section-tag.light-tag {
    display: table;
    background-color: rgba(255, 122, 69, 0.08);
    color: var(--accent-purple);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 auto 1rem;
}

.method-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 2.5rem;
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.method-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), #4fc3f7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.method-card:hover::before {
    opacity: 1;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 122, 69, 0.1), rgba(10, 61, 58, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.35rem;
    color: var(--accent-purple);
}

.method-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.method-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* ==========================================
   O QUE VOCE RECEBE — FEATURES LIST
   ========================================== */
.features-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #041e1c 100%);
    color: white;
}

.features-section .section-tag {
    display: table;
    background-color: rgba(255, 255, 255, 0.1);
    color: #81d4fa;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 auto 1rem;
}

.features-section h2 {
    text-align: center;
    color: white;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 2.5rem;
}

.features-list {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.feature-item:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-item:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feature-check {
    width: 32px;
    height: 32px;
    background: rgba(255, 122, 69, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check i {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.feature-text {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.feature-text strong {
    color: white;
    font-weight: 700;
}

/* ==========================================
   AUDIENCE SECTION — PARA QUEM É
   ========================================== */
.audience-section {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #e0f7fa 0%, var(--bg-white) 100%);
}

.audience-section .section-tag {
    display: table;
    background-color: #e3f2fd;
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 auto 1rem;
}

.audience-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 2.5rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.audience-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.audience-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0a3d3a, #135e57);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: white;
}

.audience-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.55;
}

.audience-card p strong {
    color: var(--text-dark);
}

/* ==========================================
   STACK / VALUE SECTION
   ========================================== */
.stack-section {
    padding: 3.5rem 0;
    background: var(--bg-light);
}

.stack-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 2.5rem;
}

.stack-table {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.stack-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.stack-row:last-child {
    border-bottom: none;
}

.stack-row .item-name {
    color: var(--text-dark);
    font-weight: 500;
}

.stack-row .item-value {
    color: var(--text-light);
    font-weight: 600;
    text-decoration: line-through;
}

.stack-total {
    background: var(--bg-light);
    padding: 16px 24px;
    border-top: 2px solid var(--border-color);
}

.stack-total .item-name {
    font-weight: 700;
    color: var(--text-dark);
}

.stack-total .item-value {
    text-decoration: line-through;
    color: #f44336;
    font-weight: 700;
    font-size: 1.1rem;
}

.stack-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, #041e1c 100%);
    padding: 24px;
    text-align: center;
}

.stack-final .final-label {
    color: #81d4fa;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.stack-final .final-price {
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.stack-final .final-currency {
    font-size: 1.5rem;
}

.stack-final .final-amount {
    font-size: 3.5rem;
    line-height: 1;
}

.stack-final .final-cents {
    font-size: 1.5rem;
}

.stack-final .final-sub {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 4px;
}

.stack-savings {
    text-align: center;
    margin-top: 1rem;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    padding: 8px 20px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #2e7d32;
}

.stack-savings-wrap {
    text-align: center;
    margin-top: 1rem;
}

/* ==========================================
   GUARANTEE SECTION
   ========================================== */
.guarantee-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.guarantee-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    border: 1px solid #bbdefb;
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
}

.guarantee-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.guarantee-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.guarantee-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 3.5rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #041e1c 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 122, 69, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 0.75rem;
}

.cta-section .cta-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Accept Button */
.btn-accept,
#wiapy_upsell button {
    display: block !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto 1.25rem !important;
    padding: 20px 32px !important;
    background: linear-gradient(135deg, #ffb020 0%, #ff7a45 100%) !important;
    color: #1a202c !important;
    font-family: var(--font-heading) !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    border: none !important;
    border-radius: 14px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 24px rgba(255, 122, 69, 0.35) !important;
    text-align: center !important;
    letter-spacing: 0.3px !important;
    line-height: 1.4 !important;
    position: relative !important;
    overflow: hidden !important;
    animation: ctaPulse 2.5s ease-in-out infinite !important;
}

.btn-accept::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-accept:hover,
#wiapy_upsell button:hover {
    transform: translateY(-3px) scale(1.01) !important;
    background: linear-gradient(135deg, #ff7a45 0%, #ff5f2e 100%) !important;
    box-shadow: 0 10px 32px rgba(255, 122, 69, 0.5) !important;
}

.btn-accept:hover::after {
    left: 100%;
}

.btn-accept-pulse {
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(255, 122, 69, 0.35);
    }

    50% {
        box-shadow: 0 6px 24px rgba(255, 122, 69, 0.35), 0 0 0 12px rgba(255, 122, 69, 0.15);
    }
}

.btn-accept-sub {
    display: block;
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2rem;
    font-size: 0.8rem;
    color: rgba(26, 26, 26, 0.5);
}

.btn-accept-sub i {
    margin-right: 4px;
}

/* Deny Button */
.btn-deny,
#wiapy_upsell a {
    display: inline-block !important;
    color: rgba(0, 0, 0, 0.603) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: none !important;
    background: none !important;
    font-family: var(--font-body) !important;
    text-decoration: underline !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    margin-top: 0 !important;
}

.btn-deny:hover,
#wiapy_upsell a:hover {
    color: var(--text-dark) !important;
    background: rgba(0, 0, 0, 0.04) !important;
}

/* Wiapy Container Override */
#wiapy_upsell {
    max-width: 520px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

.btn-deny:hover {
    color: rgba(0, 0, 0, 0.65);
    background: rgba(255, 255, 255, 0.05);
}

.cta-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
    color: rgba(22, 22, 22, 0.45);
    font-size: 0.8rem;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================
   FLOATING BOTTOM CTA (Mobile)
   ========================================== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 30, 66, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 20px;
    z-index: 1000;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-cta.visible {
    transform: translateY(0);
}

.floating-cta-inner {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.floating-cta .btn-accept {
    margin: 0;
    padding: 14px 24px;
    font-size: 0.95rem;
    border-radius: 8px;
    max-width: 100%;
    width: 100%;
}

.floating-cta .floating-price {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 600;
}

.floating-cta .floating-price strong {
    color: var(--secondary-color);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (min-width: 769px) {
    .floating-cta {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .floating-cta {
        display: block;
    }

    .upsell-hero {
        padding: 2.5rem 0 2rem;
    }

    .upsell-hero h1 {
        font-size: 1.6rem;
    }

    .progress-step span {
        display: none;
    }

    .progress-step.active span {
        display: inline;
    }

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

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

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

    .stack-row {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .stack-final .final-amount {
        font-size: 3rem;
    }

    .cta-section {
        padding-bottom: 6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .upsell-hero {
        padding: 2rem 0 1.5rem;
    }

    .upsell-hero h1 {
        font-size: 1.4rem;
    }

    .upsell-hero .hero-subtitle {
        font-size: 0.95rem;
    }

    .confirmation-banner {
        font-size: 0.82rem;
        padding: 12px 16px;
    }

    section,
    .opportunity-section,
    .features-section,
    .method-section,
    .audience-section,
    .stack-section,
    .guarantee-section {
        padding: 2.5rem 0;
    }

    .problem-card {
        padding: 1.25rem;
    }

    .method-card {
        padding: 1.25rem;
    }

    .feature-item {
        padding: 14px 16px;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .audience-card {
        padding: 1.25rem;
    }

    .guarantee-box {
        padding: 2rem 1.5rem;
    }

    .btn-accept {
        font-size: 1rem;
        padding: 18px 24px;
    }

    .cta-section {
        padding-bottom: 7rem;
    }
}