/* ========================================
   VERSION B - A/B TESTING LANDING PAGE
   Focus: Minimalist + Green CTAs + FOMO
   ======================================== */

/* === VARIABLES === */
:root {
    --navy: #1E3A5F;
    --turquoise: #5DBECD;
    --green: #28a745;
    --green-dark: #218838;
    --gold: #F4D03F;
    --white: #FFFFFF;
    --red: #FF4444;
    --gray-light: #F8F9FA;
    --gray-medium: #6C757D;
    --gray-dark: #343A40;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === URGENCY BAR === */
.urgency-bar {
    background: linear-gradient(135deg, var(--red) 0%, #CC0000 100%);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.urgency-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 24px;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.urgency-text {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 8px;
}

.time-unit {
    min-width: 45px;
    text-align: center;
}

/* === HERO SECTION B === */
.hero-section-b {
    background: linear-gradient(135deg, var(--navy) 0%, #2C5F8D 100%);
    color: var(--white);
    padding: 80px 20px;
    position: relative;
}

.hero-content-b {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-headline-b {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-green {
    color: var(--green);
    text-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
}

.hero-subheadline-b {
    font-size: 24px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

/* === GUARANTEE BADGE HERO === */
.guarantee-badge-hero {
    background: rgba(40, 167, 69, 0.2);
    border: 2px solid var(--green);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.shield-icon {
    font-size: 48px;
}

.guarantee-text-hero strong {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}

.guarantee-text-hero p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* === PRICE BOX HERO === */
.price-box-hero {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.price-label-b {
    font-size: 18px;
}

.price-old-b {
    text-decoration: line-through;
    color: var(--red);
    font-size: 28px;
    font-weight: 700;
}

.price-current-b {
    font-size: 64px;
    font-weight: 900;
    color: var(--green);
    text-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
}

.price-discount-b {
    background: var(--red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
}

/* === GREEN CTA BUTTONS === */
.btn-mega-green {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    padding: 28px 48px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.btn-mega-green:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(40, 167, 69, 0.6);
}

.btn-text-mega {
    font-size: 26px;
    line-height: 1.2;
}

.btn-subtext-mega {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    opacity: 0.9;
}

.btn-secondary-green {
    background: var(--green);
    color: var(--white);
    padding: 22px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.pulse-b {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* === TRUST BADGES HERO === */
.trust-badges-hero {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
}

/* === HERO IMAGE B === */
.hero-image-b {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manual-image-b {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--green);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.4);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

/* === LIVE COUNTER B === */
.live-counter-section-b {
    background: var(--gray-light);
    padding: 20px;
    border-bottom: 3px solid var(--green);
}

.live-counter-b {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
}

.pulse-dot-b {
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.counter-text-b strong {
    color: var(--green);
    font-size: 24px;
}

/* === NOTIFICATION B === */
.notification-popup-b {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    display: none;
    z-index: 999;
    animation: slideIn 0.5s ease;
    max-width: 320px;
    border-left: 4px solid var(--green);
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.notification-popup-b.show {
    display: flex;
}

.notification-content-b {
    display: flex;
    gap: 12px;
    align-items: center;
}

.notification-avatar-b {
    font-size: 32px;
    background: var(--green);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-text-b strong {
    color: var(--navy);
    font-size: 16px;
}

.notification-text-b p {
    font-size: 14px;
    color: var(--gray-medium);
    margin: 0;
}

/* === COMPARISON SECTION B === */
.comparison-section-b {
    padding: 80px 20px;
    background: var(--white);
}

.section-title-b {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: var(--navy);
}

.section-title-b.white-text {
    color: var(--white);
}

.highlight-red-b {
    color: var(--red);
}

.comparison-visual-b {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.comparison-card-b {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.comparison-card-b.loss-card {
    border: 3px solid var(--red);
}

.comparison-card-b.gain-card {
    border: 3px solid var(--green);
    background: rgba(40, 167, 69, 0.05);
}

.card-icon-b {
    font-size: 64px;
    margin-bottom: 20px;
}

.comparison-card-b h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--navy);
}

.comparison-points-b {
    text-align: left;
    margin-bottom: 30px;
}

.comparison-points-b p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.result-box-b {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
}

.result-label-b {
    display: block;
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 10px;
}

.result-value-b {
    display: block;
    font-size: 36px;
    font-weight: 900;
}

.loss-result .result-value-b {
    color: var(--red);
}

.gain-result .result-value-b {
    color: var(--green);
}

.vs-arrow-b {
    font-size: 48px;
    font-weight: 900;
    color: var(--turquoise);
}

.loss-highlight-b {
    background: linear-gradient(135deg, var(--red) 0%, #CC0000 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
}

.loss-highlight-b p {
    font-size: 24px;
    margin: 0;
}

.loss-highlight-b strong {
    font-size: 32px;
    color: var(--gold);
}

.cta-container-b {
    text-align: center;
    margin: 40px 0;
}

/* === TESTIMONIALS B === */
.testimonials-section-b {
    padding: 80px 20px;
    background: var(--gray-light);
}

.testimonials-grid-b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card-b {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card-b:hover {
    transform: translateY(-8px);
}

.testimonial-photo-b {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--green);
}

.stars-b {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-quote-b {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-dark);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author-b {
    font-size: 14px;
    color: var(--gray-medium);
}

.testimonial-author-b strong {
    color: var(--navy);
    font-size: 16px;
}

/* === OFFER SECTION B === */
.offer-section-b {
    padding: 80px 20px;
    background: var(--white);
}

.offer-grid-b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.offer-main-b, .offer-bonus-b {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 40px;
}

.offer-main-b {
    border: 3px solid var(--navy);
}

.offer-bonus-b {
    border: 3px solid var(--green);
}

.offer-main-b h3, .offer-bonus-b h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--navy);
}

.offer-list-b, .bonus-list-b {
    list-style: none;
    margin-bottom: 20px;
}

.offer-list-b li, .bonus-list-b li {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.value-badge-b {
    background: var(--navy);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.value-badge-b.bonus {
    background: var(--green);
}

.total-value-b {
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, #2C5F8D 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.total-label-b {
    font-size: 20px;
}

.total-old-b {
    font-size: 36px;
    text-decoration: line-through;
    color: var(--red);
}

.total-arrow-b {
    font-size: 36px;
    color: var(--turquoise);
}

.total-new-b {
    font-size: 72px;
    font-weight: 900;
    color: var(--green);
    text-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
}

/* === ABOUT SECTION B === */
.about-section-b {
    padding: 80px 20px;
    background: var(--gray-light);
}

.about-content-b {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.about-photo-b {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.about-text-b h3 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 10px;
}

.about-title-b {
    font-size: 18px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 30px;
}

.credentials-b {
    margin-bottom: 30px;
}

.credential-b {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.about-description-b {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* === FAQ B === */
.faq-section-b {
    padding: 80px 20px;
    background: var(--white);
}

.faq-accordion-b {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item-b {
    background: var(--gray-light);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question-b {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    transition: background 0.3s ease;
}

.faq-question-b:hover {
    background: rgba(0,0,0,0.05);
}

.faq-icon-b {
    font-size: 28px;
    font-weight: 700;
    color: var(--green);
    transition: transform 0.3s ease;
}

.faq-item-b.active .faq-icon-b {
    transform: rotate(45deg);
}

.faq-answer-b {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-b.active .faq-answer-b {
    max-height: 500px;
}

.faq-answer-b p {
    padding: 0 25px 25px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* === FINAL CTA B === */
.final-cta-section-b {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, #2C5F8D 100%);
    color: var(--white);
}

.highlight-yellow-b {
    color: var(--gold);
}

.final-offer-b {
    max-width: 700px;
    margin: 50px auto;
    background: rgba(255,255,255,0.1);
    border: 3px solid var(--green);
    border-radius: 20px;
    padding: 40px;
}

.offer-timer-b {
    background: var(--red);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
}

.timer-icon-b {
    font-size: 24px;
    margin-right: 10px;
}

.final-price-b {
    text-align: center;
    margin: 30px 0;
}

.final-label-b {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.final-value-b {
    display: block;
    font-size: 80px;
    font-weight: 900;
    color: var(--green);
    text-shadow: 0 0 30px rgba(40, 167, 69, 0.7);
    margin-bottom: 10px;
}

.final-installment-b {
    display: block;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.btn-final-green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    font-size: 24px;
    display: block;
    text-align: center;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-final-green:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(40, 167, 69, 0.6);
}

.btn-text-final {
    display: block;
}

.final-guarantee-b {
    text-align: center;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.shield-icon-b {
    font-size: 24px;
}

.urgency-text-b {
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
    color: var(--gold);
}

.urgency-text-b strong {
    font-size: 24px;
}

/* === FOOTER B === */
.footer-b {
    background: var(--navy);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer-links-b {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.footer-links-b a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-b a:hover {
    color: var(--gold);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-content-b {
        grid-template-columns: 1fr;
    }
    
    .hero-headline-b {
        font-size: 36px;
    }
    
    .comparison-visual-b {
        grid-template-columns: 1fr;
    }
    
    .vs-arrow-b {
        transform: rotate(90deg);
    }
    
    .offer-grid-b {
        grid-template-columns: 1fr;
    }
    
    .about-content-b {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid-b {
        grid-template-columns: 1fr;
    }
    
    .notification-popup-b {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}
