/* Hero Section */
.wlp-hero {
    background: linear-gradient(135deg, #2d3452 0%, #1a1a2e 100%);
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wlp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(238, 101, 72, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.wlp-urgency-badge {
    display: inline-block;
    background: #ee6548;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    animation: wlp-pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(238, 101, 72, 0.4);
}

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

.wlp-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.wlp-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Product Image */
.wlp-product-showcase {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.wlp-product-image {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.wlp-product-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.wlp-product-image:hover img {
    transform: scale(1.05);
}

/* Trust Badges */
.wlp-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.wlp-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e8ecf1;
}

.wlp-badge-icon {
    font-size: 24px;
}

/* Special Offer */
.wlp-offer-section {
    background: linear-gradient(135deg, #ee6548 0%, #d64d32 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin: 40px 0;
}

.wlp-offer-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.wlp-offer-section p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.wlp-offer-note {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
    margin-top: 10px;
}

/* Comparison Table */
.wlp-comparison-section {
    padding: 60px 20px;
    background: white;
}

.wlp-comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d3452;
}

.wlp-comparison-table {
    background: white;
    border-radius: 16px;
    overflow-x: auto;
    overflow-y: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    padding-top: 20px;
}

.wlp-comparison-table table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.wlp-comparison-table th,
.wlp-comparison-table td {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
}

.wlp-comparison-table th {
    background: #2d3452;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.wlp-comparison-table th.wlp-highlight {
    background: #ee6548;
    position: relative;
}

.wlp-comparison-table th.wlp-highlight::after {
    content: '⭐ BEST VALUE';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #2d3452;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
}

.wlp-comparison-table td {
    border-bottom: 1px solid #e8ecf1;
}

.wlp-comparison-table tr:hover {
    background: #f8f9fa;
}

.wlp-comparison-table .wlp-highlight {
    background: rgba(238, 101, 72, 0.08);
    font-weight: 600;
}

/* Cost Breakdown */
.wlp-cost-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
}

.wlp-cost-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d3452;
}

.wlp-cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.wlp-cost-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.wlp-cost-card:hover {
    transform: translateY(-5px);
}

.wlp-cost-card.wlp-featured {
    border: 3px solid #ee6548;
    position: relative;
}

.wlp-cost-card.wlp-featured::before {
    content: 'BEST DEAL';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ee6548;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.wlp-cost-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3452;
}

.wlp-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ee6548;
    margin: 20px 0;
}

.wlp-price-detail {
    color: #666;
    font-size: 0.95rem;
}

/* Scientific Section */
.wlp-science-section {
    padding: 60px 20px;
    background: white;
}

.wlp-science-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3452;
}

.wlp-science-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wlp-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.wlp-study-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid #ee6548;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.wlp-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wlp-study-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3452;
    text-align: center;
}

.wlp-study-card p {
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.wlp-journal {
    margin-top: 15px;
    font-style: italic;
    color: #ee6548;
    font-weight: 600;
}

/* Info Box */
.wlp-info-box {
    background: linear-gradient(135deg, #2d3452 0%, #1a1a2e 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.wlp-info-box a {
    color: #ee6548;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #ee6548;
    transition: all 0.3s ease;
}

.wlp-info-box a:hover {
    color: #fff;
    border-color: #fff;
}

/* Disclaimer */
.wlp-disclaimer {
    background: #fff4e6;
    border: 2px solid #ee6548;
    padding: 25px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 900px;
    font-size: 0.95rem;
    color: #2d3452;
    text-align: center;
}

/* Sticky CTA */
.wlp-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ee6548 0%, #d64d32 100%);
    padding: 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.wlp-sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.wlp-sticky-cta p {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .wlp-hero h1 {
        font-size: 2rem;
    }

    .wlp-hero p {
        font-size: 1.1rem;
    }

    .wlp-offer-section h2 {
        font-size: 1.8rem;
    }

    .wlp-comparison-section h2,
    .wlp-cost-section h2,
    .wlp-science-section h2 {
        font-size: 1.8rem;
    }

    .wlp-trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .wlp-comparison-table {
        margin: 30px -20px 0;
        border-radius: 0;
        box-shadow: none;
    }

    .wlp-comparison-table table {
        min-width: 500px;
    }

    .wlp-comparison-table th,
    .wlp-comparison-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .wlp-comparison-table th.wlp-highlight::after {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .wlp-cost-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .wlp-studies-grid {
        grid-template-columns: 1fr;
    }

    .wlp-sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .wlp-sticky-cta p {
        font-size: 0.95rem;
    }
}