/* Global Styles & Reset */
:root {
    --primary: #4ade80;
    /* Green-400 */
    --primary-dark: #16a34a;
    /* Green-600 */
    --secondary: #facc15;
    /* Yellow-400 */
    --secondary-dark: #eab308;
    /* Yellow-500 */
    --dark: #0f172a;
    /* Slate-900 */
    --gray: #64748b;
    /* Slate-500 */
    --light-bg: #f0fdf4;
    /* Green-50 */
    --white: #ffffff;
    --radius: 16px;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-highlight: 0 0 0 4px rgba(74, 222, 128, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: radial-gradient(circle at top left, #f7fee7, #fff);
    color: var(--dark);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Background Decor */
.background-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    background-image:
        radial-gradient(at 10% 10%, #dcfce7 0px, transparent 50%),
        radial-gradient(at 90% 90%, #fef9c3 0px, transparent 50%);
    animation: pulse-bg 10s ease-in-out infinite alternate;
}

@keyframes pulse-bg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* App Container */
.app-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Header */
.quiz-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.brand-logo {
    max-width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
}

.progress-wrapper {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 99px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    border-radius: 99px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
}

/* Main Content Area */
.quiz-step-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

/* Typography & ElementsCommon */
.question-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-align: center;
    line-height: 1.2;
}

.intro-copy {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Options Grid */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.options-grid.multi-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Buttons and Interactions */
.option-btn {
    background: var(--white);
    border: 2px solid transparent;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.option-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.option-btn:active {
    transform: scale(0.98);
}

.option-btn.selected {
    background: var(--light-bg);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.option-btn .emoji-icon {
    font-size: 1.5rem;
}

.option-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.option-btn-text {
    flex: 1;
}

/* Image Buttons (Optional use) */
.option-btn-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.option-btn-image-wrapper img {
    margin-bottom: 10px;
}

/* Input Styles */
.input-wrapper {
    margin-bottom: 20px;
}

input[type="text"] {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    font-family: inherit;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    outline: none;
}

input[type="text"]:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-highlight);
}

/* Slider Styles */
.slider-container {
    padding: 20px 0;
    text-align: center;
}

.slider-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    margin: 10px 0;
    background: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 12px;
    cursor: pointer;
    background: #e2e8f0;
    border-radius: 99px;
}

input[type=range]::-webkit-slider-thumb {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--white);
    transition: transform 0.2s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #cbd5e1;
}

/* Navigation Buttons */
.nav-btn {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(22, 163, 74, 0.5);
}

.nav-btn:active {
    transform: scale(0.98);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-out {
    animation: fadeOut 0.3s ease-in forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Specialized Steps */
.infographic {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    background: white;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.info-icon {
    font-size: 2rem;
    background: var(--light-bg);
    padding: 12px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--gray);
}

.testimonial-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: left;
    border: 1px solid #f0f0f0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    background-color: #9ca3af;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--gray);
}

.testimonial-img-top {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    object-fit: cover;
    display: block;
}

.stars {
    color: var(--secondary-dark);
    font-size: 1.25rem;
    margin-top: 16px;
}

.testimonial-text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

/* Processing Screen */
.processing-container {
    text-align: center;
    padding: 40px 0;
}

.processing-loader {
    width: 80px;
    height: 80px;
    border: 6px solid var(--light-bg);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.processing-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.processing-sub {
    color: var(--gray);
}

.carousel-container {
    margin-top: 30px;
    position: relative;
    height: 500px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.result-img {
    width: 100%;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.plan-info-card {
    background: white;
    border: 1px solid #22c55e;
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.plan-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.plan-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
}

.plan-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.highlight-green {
    color: #22c55e;
    font-weight: 700;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

.bonus-text {
    color: #22c55e;
    font-weight: 800;
    margin-top: 16px;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Enhanced Bonus Section */
.bonus-section-wrapper {
    background: #fdfce7;
    /* Light yellow tint */
    border: 2px dashed #eab308;
    border-radius: 20px;
    padding: 24px 20px;
    margin-top: 50px;
    margin-bottom: 40px;
    position: relative;
}

.bonus-header {
    text-align: center;
    margin-bottom: 30px;
}

.bonus-tag {
    background: #eab308;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 10px;
}

.bonus-header-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
}

.bonus-header-highlight {
    color: #ca8a04;
    display: block;
    font-size: 1rem;
    margin-top: 4px;
    font-weight: 600;
}

.new-bonus-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(234, 179, 8, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.new-bonus-card:last-child {
    margin-bottom: 0;
}

.bonus-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bonus-icon-wrapper {
    width: 50px;
    height: 50px;
    background: #fef08a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #854d0e;
}

.bonus-info {
    flex: 1;
    text-align: left;
}

.bonus-name {
    font-weight: 800;
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 4px;
}

.bonus-val {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.bonus-strike {
    text-decoration: line-through;
}

.bonus-free {
    color: #16a34a;
    font-weight: 800;
    background: #dcfce7;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

.bonus-desc {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    text-align: left;
    background: #f9fafb;
    padding: 10px;
    border-radius: 8px;
}

.total-value-box {
    margin-top: 24px;
    background: #fff;
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.15);
}

.total-val-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.total-val-amount {
    font-weight: 800;
    font-size: 1.2rem;
    color: #16a34a;
}

/* Special Premium Bonus Style */
.new-bonus-card.special-bonus {
    border: 2px solid #f59e0b;
    background: linear-gradient(to bottom right, #fff, #fffbeb);
    position: relative;
    overflow: visible;
}

.new-bonus-card.special-bonus::before {
    content: "O MAIS DESEJADO ⭐";
    position: absolute;
    top: -10px;
    right: 16px;
    background: #f59e0b;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
}

/* Premium Offer Card */
/* Ultra Persuasive Offer Section */
.offer-card {
    background: #ffffff;
    border: 3px solid #22c55e;
    border-radius: 28px;
    padding: 30px 20px;
    margin-top: 50px;
    margin-bottom: 30px;
    box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.25);
    text-align: center;
    position: relative;
    overflow: visible;
}

.urgency-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    /* Red for urgency */
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 99px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.offer-main-content {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-bottom: 2px dashed #e2e8f0;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.offer-product-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    margin: 0;
}

.price-container-new {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discount-highlight {
    color: #ef4444;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.price-old-striked {
    font-size: 1.1rem;
    color: #94a3b8;
    text-decoration: line-through;
    opacity: 0.8;
}

.price-main-bold {
    font-size: 4rem;
    font-weight: 950;
    color: #166534;
    line-height: 1;
    margin: 10px 0;
    letter-spacing: -2px;
}

.price-main-bold small {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
}

.price-sub-info {
    font-size: 1rem;
    font-weight: 700;
    color: #15803d;
}

.offer-features-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.offer-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #334155;
    font-weight: 500;
}

.offer-features-list svg {
    flex-shrink: 0;
    color: #22c55e;
    margin-top: 4px;
}

/* Master CTA Button */
.cta-button-master {
    width: 100%;
    padding: 24px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 15px 30px -5px rgba(22, 163, 74, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cta-button-master:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0 20px 40px -5px rgba(22, 163, 74, 0.6);
}



.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: none;
    animation: shine-btn 3s infinite;
}

@keyframes shine-btn {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.guarantee-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
}

.guarantee-section {
    margin-top: 40px;
    text-align: center;
}

.guarantee-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.guarantee-badge-placeholder {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #fcd34d 0%, #d97706 100%);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 3rem;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #d97706, 0 10px 20px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}

.guarantee-badge-placeholder small {
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: -5px;
}

.guarantee-text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

.reviews-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    border: 1px solid #f3f4f6;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #6b7280;
    font-size: 1.1rem;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--dark);
}

.review-info span {
    font-size: 0.8rem;
    color: #6b7280;
    display: block;
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 10px;
    font-size: 1rem;
}

.review-text {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

.footer-quote {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.comparison-container {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-top: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-header {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}

.comp-col-header {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--dark);
    text-transform: uppercase;
    background: #f9fafb;
}

.comp-col-header:first-child {
    border-right: 1px solid #e5e7eb;
}

.comparison-body {
    display: flex;
}

.comp-col {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comp-col:first-child {
    border-right: 1px solid #e5e7eb;
}

.comp-img {
    width: 100%;
    max-width: 140px;
    height: auto;
    margin-bottom: 16px;
    border-radius: 8px;
    object-fit: cover;
}

.comp-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--dark);
    min-height: 40px;
    /* Align text blocks */
}

.text-red {
    color: #ef4444;
}

.text-green {
    color: #22c55e;
}

.status-bar-container {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 16px;
    position: relative;
    display: flex;
    align-items: center;
}

.status-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.fill-orange {
    background: #f97316;
    width: 25%;
}

.fill-green {
    background: #22c55e;
    width: 95%;
}

/* Slider thumb simulation */
.status-bar-thumb {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.thumb-orange {
    left: 25%;
    border: 3px solid #f97316;
}

.thumb-green {
    left: 95%;
    border: 3px solid #22c55e;
    margin-left: -16px;
}

.info-box-comp {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    text-align: left;
    display: flex;
    gap: 6px;
    line-height: 1.4;
    align-items: flex-start;
}

.bg-gray-box {
    background: #f3f4f6;
    color: #4b5563;
}

.bg-green-box {
    background: #d1fae5;
    color: #065f46;
}

/* Step 2 Image Header */
.step-image-header {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    display: block;
}

/* Completed State */
.completed-container {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsiveness & Width Optimization */
@media (max-width: 480px) {
    .app-container {
        padding: 12px 10px;
    }

    .quiz-step-container {
        padding: 20px 14px;
        min-height: auto;
    }

    .question-title {
        font-size: 1.5rem;
    }

    .intro-copy {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .option-btn {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .option-img {
        width: 60px;
        height: 60px;
    }

    /* Results Page Adjustments */
    .comp-col {
        padding: 12px 8px;
    }

    .comp-title {
        font-size: 0.75rem;
        min-height: 34px;
    }

    .info-box-comp {
        padding: 8px;
        font-size: 0.65rem;
    }

    .plan-info-card {
        padding: 20px 16px;
    }

    .bonus-section-wrapper {
        padding: 24px 12px;
    }

    .new-bonus-card {
        padding: 16px 12px;
    }

    .bonus-name {
        font-size: 0.95rem;
    }

    .bonus-desc {
        font-size: 0.85rem;
        padding: 8px;
    }

    .offer-card {
        padding: 30px 14px;
        border-radius: 20px;
    }

    .price-main-bold {
        font-size: 3.5rem;
    }

    .cta-button-master {
        padding: 20px 12px;
        font-size: 1.1rem;
    }



    .guarantee-badge-placeholder {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
}

@media (max-width: 360px) {
    .app-container {
        padding: 8px 6px;
    }

    .quiz-step-container {
        padding: 16px 10px;
    }

    .comp-col {
        padding: 10px 5px;
    }

    .comp-title {
        font-size: 0.7rem;
    }
}