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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F9FAFB;
    min-height: 100vh;
}

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

/* Header - Hero Section */
.header {
    background: linear-gradient(135d, #d1ecf1 0%, #bee5eb 100%);
    color: #004085;
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid #007bff;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #004085;
}

.subtitle {
    font-size: 1.2rem;
    color: #0056b3;
    margin-bottom: 20px;
    font-weight: 400;
}

.author-info {
    font-size: 1rem;
    color: #007bff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.author-info::before {
    content: "✓";
    background: #007bff;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

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

.trust-badge {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #28a745;
    position: relative;
}

.trust-badge::before {
    content: "✓";
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Main Content */
.main {
    padding: 40px 0;
}

section {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    border-bottom: 3px solid #28a745;
    padding-bottom: 15px;
    position: relative;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #FFC107;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #495057;
}

/* Warning Box - Now as Trust Box */
.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #FFC107;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

.warning-box::before {
    content: "⚠️";
    position: absolute;
    top: -15px;
    left: 30px;
    background: #FFC107;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
}

.warning-box h2 {
    color: #856404;
    border: none;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.warning-box h2::after {
    display: none;
}

/* Quick Verdict - Overall Rating */
.quick-verdict {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.2);
}

.quick-verdict::before {
    content: "★";
    position: absolute;
    top: -15px;
    left: 30px;
    background: #28a745;
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
}

.quick-verdict h3 {
    color: #155724;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.verdict-score {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.verdict-score .score {
    font-size: 3.5rem;
    font-weight: 700;
    color: #28a745;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.verdict-score .score::after {
    content: "★★★★★";
    font-size: 1.2rem;
    color: #FFC107;
    margin-top: 5px;
}

.verdict-text {
    flex: 1;
}

.verdict-text p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-image {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.product-image img {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-caption {
    font-size: 0.95rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 15px;
    font-weight: 500;
}

/* CTA Buttons */
.cta-button, .cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-large {
    padding: 25px 45px;
    font-size: 1.3rem;
    display: block;
    max-width: 450px;
    margin: 25px auto;
}

.cta-button:hover, .cta-button-large:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.cta-button-container {
    text-align: center;
    margin-top: 20px;
}

.section-cta, .profile-cta {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
    border: 2px solid #FFC107;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

.price-cta {
    text-align: center;
    margin-top: 25px;
}

.final-cta {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 15px;
    border: 3px solid #28a745;
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.2);
}

.ingredients-image {
    text-align: center;
    margin-top: 30px;
}

.ingredients-image img {
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Reality Check */
.reality-check {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    border-left: 5px solid #007bff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.reality-check h4 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.reality-check ul {
    list-style: none;
}

.reality-check li {
    padding: 8px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reality-check li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #007bff;
}

/* Experience Categories */
.experience-categories {
    display: grid;
    gap: 30px;
}

.experience-category {
    border-radius: 15px;
    padding: 35px;
    position: relative;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.experience-category.positive {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
}

.experience-category.mixed {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #FFC107;
}

.experience-category.negative {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 2px solid #dc3545;
}

.experience-category h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.testimonials {
    margin: 25px 0;
}

blockquote {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    font-style: italic;
    border-left: 4px solid #28a745;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

blockquote::before {
    content: """;
    font-size: 3rem;
    color: #28a745;
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: serif;
}

.common-benefits ul,
.common-complaints ul {
    margin-top: 15px;
}

.common-benefits li,
.common-complaints li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.common-benefits li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.common-complaints li::before {
    content: "⚠";
    color: #dc3545;
    font-weight: bold;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Timeline */
.timeline-container {
    position: relative;
    margin: 40px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #28a745, #20c997);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 90px;
}

.timeline-marker {
    position: absolute;
    left: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #28a745;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.timeline-marker.week1 { 
    background: #dc3545; 
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}
.timeline-marker.week3 { 
    background: #FFC107; 
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}
.timeline-marker.month2 { 
    background: #28a745; 
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.timeline-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #FFC107;
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

/* Ingredients Analysis */
.ingredients-analysis {
    display: grid;
    gap: 30px;
}

.ingredient-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.ingredient-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.science-rating {
    margin: 15px 0;
}

.rating {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating.excellent { 
    background: linear-gradient(135deg, #28a745, #20c997); 
}
.rating.good { 
    background: linear-gradient(135deg, #007bff, #0056b3); 
}
.rating.mixed { 
    background: linear-gradient(135deg, #FFC107, #e0a800); 
    color: #333;
}

.ingredients-verdict {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border: 2px solid #28a745;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.2);
}

/* Pricing Analysis */
.price-reality {
    display: grid;
    gap: 40px;
}

.price-breakdown {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #28a745;
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.15);
}

.price-breakdown h3 {
    color: #28a745;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.price-item {
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid #e9ecef;
    text-align: left;
}

.best-deal {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-comparison {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #FFC107;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

.pros-cons-price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
}

.pros, .cons {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pros {
    border-left: 5px solid #28a745;
}

.cons {
    border-left: 5px solid #dc3545;
}

.pros h5, .cons h5 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pros h5 {
    color: #28a745;
}

.cons h5 {
    color: #dc3545;
}

.price-recommendation {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 35px;
    border-radius: 15px;
    margin-top: 40px;
    border: 2px solid #28a745;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.2);
}

/* Side Effects */
.side-effects-content {
    display: grid;
    gap: 35px;
}

.common-effects,
.safety-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #007bff;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.1);
}

.common-effects h3,
.safety-info h3 {
    color: #007bff;
    margin-bottom: 20px;
}

/* Profile Analysis */
.profile-analysis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.good-candidates {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #28a745;
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.15);
}

.bad-candidates {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #dc3545;
    box-shadow: 0 6px 25px rgba(220, 53, 69, 0.15);
}

.good-candidates h3 {
    color: #155724;
}

.bad-candidates h3 {
    color: #721c24;
}

.good-candidates ul,
.bad-candidates ul {
    list-style: none;
    margin-top: 20px;
}

.good-candidates li,
.bad-candidates li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.good-candidates li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.bad-candidates li::before {
    content: "✗";
    color: #dc3545;
    font-weight: bold;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Buying Guide */
.buying-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.official-only {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #28a745;
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.15);
}

.fake-warning {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.guarantee-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #007bff;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.2);
}

.guarantee-info h3 {
    color: #004085;
}

.official-product {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #28a745;
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.15);
}

.official-product img {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.official-cta {
    margin-top: 20px;
}

/* Final Verdict */
.verdict-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: start;
}

.score-big {
    font-size: 3.2rem;
    font-weight: 700;
    color: #28a745;
    text-align: center;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 40px;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(40, 167, 69, 0.3);
    border: 3px solid #28a745;
    position: relative;
    line-height: 1;
}

.score-big::after {
    content: "★★★★★";
    position: absolute;
    bottom: -30px;
    font-size: 1.2rem;
    color: #FFC107;
}

.score-breakdown {
    margin-top: 30px;
}

.score-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.score-item span:first-child {
    min-width: 140px;
    font-weight: 600;
    color: #495057;
}

.score-bar {
    flex: 1;
    height: 12px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    transition: width 0.8s ease;
    border-radius: 6px;
}

.score-item span:last-child {
    min-width: 60px;
    font-weight: 700;
    color: #28a745;
}

.final-thoughts {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.final-tip {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    border: 2px solid #007bff;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.2);
}

.final-tip h4 {
    color: #004085;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

.footer p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer small {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 30px 20px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .verdict-score {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .pros-cons-price,
    .profile-analysis,
    .buying-content {
        grid-template-columns: 1fr;
    }
    
    .verdict-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .score-big {
        margin: 0 auto;
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 5px;
        width: 30px;
        height: 30px;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .price-items {
        gap: 10px;
    }
    
    .price-item {
        padding: 10px 0;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    section {
        padding: 25px 15px;
    }
    
    .score-big {
        font-size: 2.2rem;
        width: 130px;
        height: 130px;
    }
    
    .cta-button, .cta-button-large {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}