

/* Prevent all sections from causing horizontal scroll */
section {
    max-width: 100%;
    overflow-x: hidden;
}

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

/* ============================================
   What Is Section - FIXED
   ============================================ */

.what-is-section {
    padding: 80px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.what-is-section .container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.what-is-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.what-is-content {
    width: 100%;
    max-width: 100%;
}

.what-is-description {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.product-highlights {
    background: white;
    padding: 25px;
    border-radius: 16px;
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.highlight-value {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.trust-seals {
    width: 100%;
    max-width: 100%;
}

.trust-seals img {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.what-is-image {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.what-is-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Before/After Section
   ============================================ */

.before-after-section {
    padding: 60px 0;
    background: var(--bg-white);
    text-align: center;
}

.before-after-img {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f7ff 0%, var(--bg-white) 100%);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(30, 58, 95, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   Ingredients Section - 3 Column Grid
   ============================================ */

.ingredients-section {
    padding: 80px 0;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.ingredients-section h2,
.ingredients-section .section-subtitle {
    color: white;
}

.ingredients-section .section-label {
    background: rgba(255,255,255,0.2);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ingredient-card {
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.ingredient-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.ingredient-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.ingredient-card h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

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

/* ============================================
   Why Section
   ============================================ */

.why-section {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    padding: 30px 20px;
    text-align: center;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   How To Use Section
   ============================================ */

.how-to-use-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   Lifestyle Section
   ============================================ */

.lifestyle-section {
    padding: 60px 0;
    background: var(--bg-white);
    text-align: center;
}

.lifestyle-img {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
}

/* ============================================
   Guarantee Section
   ============================================ */

.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef9c3, #fef3c7);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-badge {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.guarantee-days {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.guarantee-text {
    font-size: 16px;
    font-weight: 600;
}

.guarantee-info h2 {
    margin-bottom: 20px;
}

.guarantee-highlight {
    font-size: 20px;
    color: var(--primary-color);
    margin: 20px 0;
}

/* ============================================
   Reviews Section
   ============================================ */

.reviews-section {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.rating-overview {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 50px 0;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
}

.rating-bars {
    flex: 1;
    max-width: 400px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.rating-label {
    width: 140px;
    text-align: left;
    font-size: 14px;
    color: var(--text-gray);
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 4px;
}

.rating-score {
    width: 30px;
    font-weight: 600;
    color: var(--primary-color);
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stars {
    color: var(--accent-color);
    font-size: 24px;
    margin: 10px 0;
}

.review-count {
    font-size: 14px;
    color: var(--text-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    transition: var(--transition);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.review-stars {
    color: var(--accent-color);
    font-size: 14px;
}

.verified-badge {
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

.review-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.review-card p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

.review-disclaimer {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 40px;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

.free-shipping-note {
    font-size: 18px;
    color: var(--success-color);
    margin-bottom: 10px;
}

.recommendation {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.package-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.price-display {
    margin-bottom: 15px;
}

.current-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-per {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
}

.savings-badge {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 10px;
}

.total-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.supply-info {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.shipping-cost {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.shipping-cost.free {
    color: var(--success-color);
    font-weight: 600;
}

.bonus-info {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.package-image {
    max-height: 160px;
    width: auto;
    margin: 20px auto;
}

.pricing-card .cta-button {
    width: 100%;
    padding: 16px 30px;
    font-size: 16px;
}

.secure-checkout {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 15px;
    margin-bottom: 0;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-icon {
    transition: var(--transition);
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    padding-bottom: 25px;
    font-size: 16px;
    color: var(--text-gray);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand img {
    margin-bottom: 20px;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.footer-contact h4,
.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-contact p,
.footer-contact a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons img {
    height: 24px;
    width: auto;
}

/* ============================================
   Floating CTA
   ============================================ */

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: none;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
    z-index: 999;
    animation: bounce 2s infinite;
}

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

/* ============================================
   Purchase Popup
   ============================================ */

.purchase-popup {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    max-width: 320px;
    z-index: 998;
    transform: translateX(-120%);
    transition: transform 0.5s ease;
}

.purchase-popup.show {
    transform: translateX(0);
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: var(--text-gray);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

.popup-icon {
    font-size: 32px;
}

.popup-text {
    font-size: 14px;
    margin: 0;
    color: var(--text-dark);
}

.popup-time {
    font-size: 12px;
    color: var(--text-gray);
    display: block;
    margin-top: 5px;
}

/* ============================================
   Exit Intent Popup
   ============================================ */

.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.exit-popup-overlay.show {
    display: flex;
}

.exit-popup {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    position: relative;
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--text-gray);
    cursor: pointer;
    background: none;
    border: none;
}

.exit-popup h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.exit-popup p {
    font-size: 18px;
    margin-bottom: 25px;
}

.exit-popup img {
    max-width: 180px;
    margin: 0 auto 25px;
}

.exit-popup .cta-button {
    font-size: 16px;
}

.exit-popup-note {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 15px;
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE STYLES - MOBILE OPTIMIZED
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    h1 { font-size: 38px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    
    .container {
        padding: 0 20px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-benefits {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .hero-product {
        max-width: 280px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .what-is-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .what-is-content {
        order: 2;
    }
    
    .what-is-image {
        order: 1;
        max-width: 100%;
        padding: 0;
    }
    
    .what-is-image img {
        max-width: 100%;
        width: 90%;
        margin: 0 auto;
    }
    
    .product-highlights {
        padding: 20px;
    }
    
    .highlight-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .trust-seals img {
        max-width: 100%;
        width: 100%;
    }
    
    .what-is-section .container {
        grid-template-columns: 1fr;
    }
    
    .what-is-image {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rating-overview {
        flex-direction: column;
        gap: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html { 
        font-size: 15px;
        overflow-x: hidden !important;
    }
    
    body {
        overflow-x: hidden !important;
    }
    
    h1 { font-size: 30px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    p { font-size: 16.5px; }
    
    .container {
        padding: 0 15px;
    }
    
    .top-banner {
        display: none;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-product {
        max-width: 100%;
        width: 90%;
    }
    
    .discount-badge {
        width: 65px;
        height: 65px;
        top: 10px;
        right: 10px;
    }
    
    .discount-percent {
        font-size: 20px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 320px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card {
        padding: 25px;
    }
    
    .solution-intro {
        padding: 25px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* What Is Section Mobile Fixes */
    .what-is-section {
        padding: 60px 0;
    }
    
    .what-is-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .what-is-content {
        order: 2;
        padding: 0;
    }
    
    .what-is-description {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .what-is-image {
        order: 1;
        width: 100%;
        padding: 0;
    }
    
    .what-is-image img {
        max-width: 100%;
        width: 85%;
        margin: 0 auto;
        display: block;
    }
    
    .product-highlights {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .highlight-label {
        font-size: 13px;
    }
    
    .highlight-value {
        font-size: 14px;
    }
    
    .trust-seals {
        text-align: center;
    }
    
    .trust-seals img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ingredient-card {
        padding: 25px 20px;
    }
    
    .ingredient-icon {
        font-size: 36px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .verified-badge {
        margin-left: 0;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px 0;
    }
    
    /* MOBILE IMAGE FIXES - CRITICAL */
    .before-after-section {
        padding: 40px 0;
    }
    
    .before-after-img {
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
    }
    
    .lifestyle-section {
        padding: 40px 0;
    }
    
    .lifestyle-img {
        max-width: 100%;
        width: 90%;
        border-radius: 12px;
    }
    
    .what-is-image img {
        max-width: 100%;
        width: 90%;
    }
    
    /* Floating CTA - Show on mobile */
    .floating-cta {
        display: flex;
        bottom: 20px;
        right: 20px;
        left: auto;
        justify-content: center;
        padding: 14px 22px;
        font-size: 15px;
        animation: pulse-float 2s ease-in-out infinite;
        box-shadow: 0 5px 25px rgba(201, 162, 39, 0.5);
    }
    
    @keyframes pulse-float {
        0%, 100% { 
            transform: translateY(0) scale(1); 
            box-shadow: 0 5px 25px rgba(201, 162, 39, 0.5);
        }
        50% { 
            transform: translateY(-8px) scale(1.05); 
            box-shadow: 0 12px 35px rgba(201, 162, 39, 0.7);
        }
    }
    
    .purchase-popup {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 90px;
    }
    
    .exit-popup {
        padding: 35px 25px;
    }
    
    .exit-popup h2 {
        font-size: 22px;
    }
    
    .exit-popup p {
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    h1 { font-size: 26px; }
    h2 { font-size: 22px; }
    
    .container {
        padding: 0 15px;
    }
    
    .problem-section,
    .what-is-section,
    .benefits-section,
    .ingredients-section,
    .why-section,
    .how-to-use-section,
    .guarantee-section,
    .reviews-section,
    .pricing-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .current-price {
        font-size: 40px;
    }
    
    .guarantee-badge {
        width: 120px;
        height: 120px;
    }
    
    .guarantee-days {
        font-size: 40px;
    }
    
    .hero-product {
        max-width: 100%;
        width: 85%;
    }
}

/* Print Styles */
@media print {
    .header,
    .floating-cta,
    .purchase-popup,
    .exit-popup-overlay,
    .cta-button {
        display: none !important;
    }
}

/* ============================================
   Problem Section - REDESIGNED
   ============================================ */

.problem-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    overflow: hidden;
}

.problem-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.problem-section .section-label {
    display: inline-block;
    background: #fed7aa;
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.problem-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.problem-section .section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* 2x2 Grid for Desktop/Laptop */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.problem-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
    position: relative;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(234, 88, 12, 0.15);
}

.problem-number {
    font-size: 48px;
    font-weight: 900;
    color: #fed7aa;
    line-height: 1;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.problem-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Solution Bridge */
.solution-bridge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(217, 119, 6, 0.25);
}

.bridge-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.bridge-content p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.bridge-cta {
    display: inline-block;
    background: #ffffff;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bridge-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: var(--bg-light);
    color: var(--primary-dark);
}

/* Tablet - Keep 2x2 */
@media (max-width: 1024px) {
    .problem-section {
        padding: 60px 0;
    }
    
    .problem-section h2 {
        font-size: 36px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .problem-card {
        padding: 35px 25px;
    }
    
    .solution-bridge {
        padding: 40px 30px;
    }
    
    .bridge-content h3 {
        font-size: 28px;
    }
    
    .bridge-content p {
        font-size: 17px;
    }
}

/* Mobile - Single Column */
@media (max-width: 768px) {
    .problem-section {
        padding: 60px 0;
    }
    
    .problem-section h2 {
        font-size: 28px;
    }
    
    .problem-section .section-subtitle {
        font-size: 16px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .problem-card {
        padding: 30px 25px;
    }
    
    .problem-number {
        font-size: 40px;
    }
    
    .problem-card h3 {
        font-size: 20px;
    }
    
    .problem-card p {
        font-size: 15px;
    }
    
    .solution-bridge {
        padding: 35px 25px;
        border-radius: 16px;
    }
    
    .bridge-content h3 {
        font-size: 24px;
    }
    
    .bridge-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .bridge-cta {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .problem-section {
        padding: 50px 0;
    }
    
    .problem-section h2 {
        font-size: 24px;
    }
    
    .problem-card {
        padding: 25px 20px;
    }
    
    .bridge-content h3 {
        font-size: 22px;
    }
}