/* ========================================
   PASSO A PASSO KIDS - OPTIMIZED STYLES
   Mobile-first, performance-focused
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #4A90E2;
    --color-primary-dark: #3A7BC8;
    --color-secondary: #F5C542;
    --color-accent: #4CAF50;
    --color-accent-dark: #45a049;
    --color-white: #FFFFFF;
    --color-bg: #F8F9FA;
    --color-text: #1a1a1a;
    --color-text-light: #333333;
    --color-text-muted: #555555;
    --color-red-soft: #DC3545;
    --color-gold: #FFD700;
    --color-gold-dark: #E6C200;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-family: 'Nunito', sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

.section-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.section-subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.highlight-green {
    color: var(--color-accent);
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.45);
}

.btn-large {
    padding: 18px 32px;
    font-size: 1.05rem;
}

/* Pulse animation - disabled on mobile for performance */
@media (min-width: 550px) {
    .pulse {
        animation: pulse 2.5s infinite;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {

    .pulse,
    .carousel-track {
        animation: none !important;
        transition: none !important;
    }
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ========================================
   BNCC BANNER
   ======================================== */
.bncc-banner {
    background: var(--color-red-soft);
    color: var(--color-white);
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bncc-banner strong {
    font-weight: 800;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(180deg, #F0F7FF 0%, #FAFBFC 100%);
    padding: 25px 0 40px;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    line-height: 1.4;
}

.hero-title .highlight {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* VSL Wrapper */
.vsl-wrapper {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-cta {
    margin-bottom: 0.5rem;
}

/* ========================================
   PAIN SECTION
   ======================================== */
.pain-section {
    padding: 40px 0;
    background: var(--color-white);
}

.pain-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pain-image {
    max-width: 200px;
}

.child-thinking {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.pain-content {
    text-align: center;
    max-width: 550px;
}

.pain-text {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pain-reasons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reason-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

.reason-icon {
    font-size: 1.2rem;
}

.reason-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

/* ========================================
   HOW WORKS SECTION - NOTEBOOK MOCKUP
   ======================================== */
.how-works-section {
    padding: 40px 0;
    background: var(--color-bg);
}

.notebook-mockup-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.notebook-mockup {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.12));
}

.how-works-text {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   HOW IT WORKS - VISUAL STEPS
   ======================================== */
.how-section {
    padding: 40px 0;
    background: var(--color-white);
}

.visual-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.visual-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 16px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
}

.step-image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.step-content h3 {
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ========================================
   WHAT CHILD LEARNS SECTION
   ======================================== */
.learns-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #E8F4FD 0%, #F0F7FF 100%);
}

.learns-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.learn-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.learn-icon {
    font-size: 1.3rem;
}

.learn-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

/* ========================================
   PRODUCT CAROUSEL SECTION
   ======================================== */
.product-carousel-section {
    padding: 40px 0;
    background: var(--color-white);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    margin: 0 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    padding: 0 5px;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.carousel-btn:hover {
    background: var(--color-primary-dark);
}

.carousel-btn-prev {
    left: -5px;
}

.carousel-btn-next {
    right: -5px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.2s ease;
}

.carousel-dot.active {
    background: var(--color-primary);
}

/* ========================================
   BONUS SECTION
   ======================================== */
.bonus-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.bonus-section .section-title {
    color: var(--color-white);
}

.bonus-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.bonus-section .section-subtitle strong {
    color: var(--color-gold);
}

.bonus-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 450px;
    margin: 0 auto;
}

.bonus-item-vertical {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 25px 20px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.25);
}

.bonus-mockup {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.bonus-mockup img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.bonus-info h3 {
    font-size: 1.05rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.bonus-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
}

.bonus-price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price-old {
    font-size: 1rem;
    color: #ff6b6b;
    text-decoration: line-through;
    font-weight: 600;
}

.price-free {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.bonus-total {
    text-align: center;
    margin-top: 30px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-total span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.bonus-total .total-value {
    font-size: 1.4rem;
    color: #ff6b6b;
    text-decoration: line-through;
    font-weight: 700;
    margin: 5px 0;
}

.bonus-total .total-free {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: 800;
}

.bonus-section .section-cta .btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #1a1a1a;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 40px 0;
    background: var(--color-white);
}

.testimonials-intro {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card.testimonial-image {
    background: transparent;
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.testimonial-card.testimonial-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* ========================================
   OFFER SECTION
   ======================================== */
.offer-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
}

.offer-section-title {
    font-size: 1.7rem;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 0.5rem;
}

.offer-section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 2rem;
}

.offer-cards-container {
    display: flex;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
}

.offer-card {
    border-radius: var(--radius-xl);
    padding: 25px 20px;
    text-align: center;
    width: 100%;
}

/* Premium Offer Card */
.offer-card-premium {
    position: relative;
    background: linear-gradient(180deg, #FFFBEB 0%, #FFF8E1 100%);
    border: 3px solid var(--color-gold);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.premium-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold) 0%, #FFA000 100%);
    color: #1a1a1a;
    padding: 8px 22px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
}

.offer-header-premium {
    margin-bottom: 1.2rem;
    padding-top: 10px;
}

.offer-header-premium .premium-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 8px;
}

.offer-header-premium h3 {
    font-size: 1.4rem;
    color: #B8860B;
    margin-bottom: 0.2rem;
}

.offer-header-premium p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.offer-includes-premium {
    text-align: left;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 12px;
    border-radius: var(--radius-md);
}

.offer-includes-premium .include-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 0.9rem;
    color: var(--color-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-includes-premium .include-item:last-child {
    border-bottom: none;
}

.offer-includes-premium .include-item.highlight {
    font-weight: 700;
    color: #B8860B;
}

.offer-price-premium {
    margin-bottom: 1.2rem;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.04) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 215, 0, 0.25);
}

.offer-price-premium .price-from {
    display: block;
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.offer-price-premium .price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0.2rem;
}

.offer-price-premium .price-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
}

.offer-price-premium .economy-badge {
    display: inline-block;
    background: #d4edda;
    color: #155724;
    padding: 5px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    margin: 8px 0;
}

.offer-price-premium .price-info {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.2rem;
}

.btn-premium-offer {
    width: 100%;
    padding: 18px 28px;
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.45);
    margin-bottom: 1.2rem;
}

.btn-premium-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(76, 175, 80, 0.55);
}

.offer-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.offer-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--color-text-light);
}

.offer-guarantee {
    margin-top: 8px;
}

.guarantee-img {
    max-width: 120px;
    height: auto;
}

/* ========================================
   DUAL CARDS LAYOUT
   ======================================== */
.offer-cards-container.dual-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    align-items: stretch;
}

/* BASIC OFFER CARD */
.offer-card-basic {
    background: var(--color-white);
    border: 2px solid #e0e0e0;
    box-shadow: var(--shadow-sm);
}

.offer-header-basic {
    margin-bottom: 1rem;
}

.offer-header-basic h3 {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.offer-header-basic p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.offer-includes-basic {
    text-align: left;
    margin-bottom: 1rem;
}

.offer-includes-basic .include-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--color-text);
}

.offer-includes-basic .include-item.muted {
    color: #999;
}

.offer-price-basic {
    margin-bottom: 1rem;
    padding: 12px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
}

.offer-price-basic .price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.offer-price-basic .price-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
}

.offer-price-basic .price-info {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.btn-basic-offer {
    width: 100%;
    padding: 14px 24px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    background: #e0e0e0;
    color: var(--color-text);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-basic-offer:hover {
    background: #d0d0d0;
}

/* ========================================
   UPSELL POPUP MODAL
   ======================================== */
.upsell-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.upsell-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.upsell-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.upsell-popup-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 25px 20px;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.popup-close:hover {
    color: #666;
}

.popup-header {
    text-align: center;
    margin-bottom: 1rem;
}

.popup-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.popup-header h3 {
    font-size: 1.3rem;
    color: var(--color-text);
}

.popup-body {
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-body p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.popup-comparison {
    text-align: left;
    background: #fff5f5;
    border-radius: var(--radius-md);
    padding: 12px 15px;
    margin-bottom: 1rem;
}

.popup-comparison-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.85rem;
}

.popup-comparison-item.negative {
    color: #dc3545;
}

.popup-highlight {
    font-size: 1.05rem !important;
    color: var(--color-accent) !important;
    font-weight: 600;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-popup-upgrade {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-xl);
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.35);
}

.btn-popup-upgrade:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.45);
}

.btn-popup-basic {
    width: 100%;
    padding: 12px 20px;
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 600;
    background: transparent;
    color: #999;
    text-decoration: underline;
    border: none;
    text-align: center;
    cursor: pointer;
}

.btn-popup-basic:hover {
    color: #666;
}

/* Popup Subtitle */
.popup-subtitle {
    font-size: 1.1rem !important;
    font-weight: 700;
    color: var(--color-text) !important;
    margin-bottom: 0.8rem !important;
}

/* Popup Simple Link for Basic Option */
.popup-link-basic {
    display: block;
    width: 100%;
    padding: 10px 20px;
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 500;
    background: transparent;
    color: #999;
    text-decoration: underline;
    border: none;
    text-align: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.popup-link-basic:hover {
    color: #666;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 40px 0;
    background: var(--color-bg);
}

.faq-list {
    max-width: 500px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}

.faq-toggle {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 700;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 16px 16px;
    color: var(--color-text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 25px 0;
    background: #1a1a1a;
    text-align: center;
}

.footer-text {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 0.4rem;
}

.footer-disclaimer {
    font-size: 0.7rem;
    color: #666;
}

/* ========================================
   SPECIAL OFFER PAGE STYLES
   ======================================== */
.special-offer-hero {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    padding: 40px 0;
    text-align: center;
    color: white;
}

.special-offer-hero h1 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: white;
}

.special-offer-hero .subtitle {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.timer-block {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    min-width: 65px;
}

.timer-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.timer-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.discount-badge {
    display: inline-block;
    background: var(--color-secondary);
    color: #333;
    padding: 8px 25px;
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.offer-comparison {
    background: var(--color-white);
    padding: 40px 0;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.old-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
}

.savings {
    background: #d4edda;
    color: #155724;
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
}

.urgency-text {
    text-align: center;
    padding: 15px;
    background: #fff3cd;
    color: #856404;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
}

.offer-comparison .offer-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 380px;
}

.offer-comparison .offer-header h2 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.offer-comparison .offer-header p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1.2rem;
}

.offer-comparison .offer-includes {
    text-align: left;
    margin-bottom: 1.2rem;
}

.offer-comparison .include-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text);
    border-bottom: 1px solid #f0f0f0;
}

.offer-comparison .include-item:last-child {
    border-bottom: none;
}

.offer-comparison .offer-btn {
    width: 100%;
    margin-bottom: 1.2rem;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (min-width: 550px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .pain-grid {
        flex-direction: row;
        text-align: left;
    }

    .pain-content {
        text-align: left;
    }

    .pain-content .section-title {
        text-align: left;
    }

    .visual-steps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .visual-step {
        flex: 1;
        min-width: 160px;
        max-width: 180px;
    }

    .learns-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 480px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Dual cards side by side on tablet */
    .offer-cards-container.dual-cards {
        flex-direction: row;
        align-items: flex-start;
    }

    .offer-cards-container.dual-cards .offer-card {
        flex: 1;
        max-width: 380px;
    }

    .offer-card-premium {
        order: -1;
        /* Premium card first on left for desktop */
    }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */
@media (min-width: 900px) {
    .hero {
        padding: 35px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .bonus-mockup {
        height: 180px;
    }

    .bonus-list-vertical {
        max-width: 500px;
    }

    .offer-section-title {
        font-size: 2rem;
    }
}

/* ========================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ======================================== */
@media (max-width: 549px) {

    /* Reduce section padding on mobile */
    .pain-section,
    .how-works-section,
    .how-section,
    .learns-section,
    .product-carousel-section,
    .testimonials-section,
    .faq-section {
        padding: 30px 0;
    }

    .bonus-section,
    .offer-section {
        padding: 35px 0;
    }

    /* Optimize button sizes for touch */
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 1rem;
    }

    /* Reduce section CTA margins */
    .section-cta {
        margin-top: 1.5rem;
    }

    /* Smaller guarantee image on mobile */
    .guarantee-img {
        max-width: 100px;
    }

    /* Optimize VSL for mobile */
    .vsl-wrapper {
        margin-bottom: 1rem;
    }

    /* Reduce hero padding */
    .hero {
        padding: 20px 0 30px;
    }
}