/* =========================================
   MetaFlow Review - High Conversion CSS
   ========================================= */

/* CSS Variables */
:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #d1fae5;
    --secondary: #f59e0b;
    --danger: #ef4444;
    --dark: #1f2937;
    --light: #f9fafb;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-hover: linear-gradient(135deg, #059669 0%, #047857 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
    --radius-lg: 20px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary-light);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button.outline:hover {
    background: var(--primary);
    color: var(--white);
}

.cta-button.outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-button.outline-light:hover {
    background: var(--white);
    color: var(--dark);
}

.cta-center {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Quick CTA Banner */
.quick-cta-banner {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    padding: 20px 0;
}

.quick-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.quick-cta-text {
    display: flex;
    flex-direction: column;
}

.quick-cta-label {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
}

.quick-cta-desc {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
}

.quick-cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-primary.large,
.btn-secondary.large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Quick Buy Bar */
.quick-buy-bar {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.quick-buy-text {
    display: flex;
    flex-direction: column;
}

.quick-buy-text strong {
    color: var(--white);
    font-size: 1rem;
}

.quick-buy-text span {
    color: var(--gray);
    font-size: 0.875rem;
}

.quick-buy-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-buy-btn:hover {
    background: var(--gradient-hover);
    transform: scale(1.05);
}

/* Offer Button Secondary */
.offer-btn-secondary {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
    color: var(--gray);
    background: transparent;
    text-align: center;
    margin-top: 10px;
}

.offer-btn-secondary:hover {
    border-color: var(--dark);
    color: var(--dark);
}

/* Bottom CTA */
.bottom-cta {
    margin-top: 40px;
}

/* Final CTA Section */
.final-cta {
    background: var(--primary-light);
    padding: 60px 0;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.final-cta-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.lead {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

/* =========================================
   TOP HEADER
   ========================================= */

.top-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    padding: 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.top-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.75rem;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    gap: 0;
}

.logo-main {
    color: #ffffff;
}

.logo-accent {
    color: #10b981;
}

.logo-hub {
    color: #10b981;
    font-weight: 400;
}

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #6b7280;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 52px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #ffffff;
}

.header-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .top-header-container {
        flex-direction: column;
        gap: 15px;
        padding: 12px 15px;
    }
    
    .logo-tagline {
        margin-left: 0;
        text-align: center;
    }
    
    .header-nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
}

/* =========================================
   COOKIE BANNER
   ========================================= */

.cookie-banner {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 20px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 280px;
}

.cookie-icon {
    font-size: 1.5rem;
}

.cookie-text p {
    color: var(--white);
    font-size: 0.875rem;
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.cookie-btn.decline {
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--gray);
}

.cookie-btn.decline:hover {
    border-color: var(--white);
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
    }
}

/* Cookie banner updated styles */
.cookie-banner {
    top: 52px;
}

.cookie-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-info p {
    margin: 0;
    color: var(--white);
}

.cookie-info p:first-child {
    font-weight: 600;
}

.cookie-info p strong {
    color: var(--primary);
}

/* =========================================
   MODAL
   ========================================= */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--dark);
}

#modalBody h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--dark);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-light);
}

#modalBody h3 {
    font-size: 1.125rem;
    margin: 24px 0 12px;
    color: var(--dark);
}

#modalBody p {
    margin-bottom: 12px;
    color: var(--gray);
    line-height: 1.7;
}

#modalBody ul,
#modalBody ol {
    margin: 12px 0;
    padding-left: 24px;
}

#modalBody li {
    margin-bottom: 8px;
    color: var(--gray);
    line-height: 1.6;
}

#modalBody ul li {
    list-style: disc;
}

#modalBody ol li {
    list-style: decimal;
}

#modalBody strong {
    color: var(--dark);
}

#modalBody a {
    color: var(--primary);
    text-decoration: underline;
}

#modalBody em {
    color: var(--secondary);
    font-style: italic;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% 15px;
        padding: 25px;
        max-height: 85vh;
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 1.75rem;
    }
    
    #modalBody h2 {
        font-size: 1.5rem;
    }
}

/* =========================================
   FOOTER WITH LOGO
   ========================================= */

.sticky-cta {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 900;
    padding: 12px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

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

/* Adjust for cookie banner */
body.cookies-accepted .sticky-cta,
body.cookies-declined .sticky-cta {
    bottom: auto;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stock-warning {
    color: var(--danger);
    font-weight: 600;
    font-size: 0.875rem;
}

.sticky-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--gradient-hover);
    transform: scale(1.05);
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-rating {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.trust-stars {
    color: var(--secondary);
    font-size: 1.25rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.trust-divider {
    width: 1px;
    height: 60px;
    background: var(--gray-light);
}

/* Verdict Box */
.verdict-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}

.verdict-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.verdict-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.verdict-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.verdict-text {
    color: var(--gray);
    font-size: 0.95rem;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-lg); }
    50% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0.2); }
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    position: relative;
    max-width: 400px;
}

.product-showcase img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow);
}

/* =========================================
   TABLE OF CONTENTS
   ========================================= */

.toc {
    background: var(--dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.toc-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.toc-list a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    position: relative;
}

.toc-list a:hover {
    color: var(--primary);
}

.toc-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.toc-list a:hover::after {
    width: 100%;
}

/* =========================================
   SECTIONS
   ========================================= */

.section {
    padding: 80px 0;
}

.section.bg-light {
    background: var(--light);
}

.section.bg-warning {
    background: #fef2f2;
}

/* =========================================
   CONTENT GRID
   ========================================= */

.content-grid {
    display: grid;
    gap: 40px;
}

.feature-box {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}

.feature-box h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--dark);
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.pros, .cons {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.pros h3, .cons h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.pros h4 {
    color: var(--primary);
}

.cons h4 {
    color: var(--danger);
}

.pros ul li, .cons ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.pros ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.cons ul li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: bold;
}

/* =========================================
   INGREDIENTS
   ========================================= */

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.ingredient-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.ingredient-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.ingredient-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.ingredient-rating {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.ingredient-rating.promising {
    background: #d1fae5;
    color: #065f46;
}

.ingredient-rating.limited,
.ingredient-rating.support {
    background: #fef3c7;
    color: #92400e;
}

.ingredient-rating.weak,
.ingredient-rating.inconclusive {
    background: #fee2e2;
    color: #991b1b;
}

.ingredient-evidence {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
}

.science-note {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.note-icon {
    font-size: 1.5rem;
}

.note-content {
    color: var(--white);
    font-size: 0.95rem;
}

.note-content strong {
    color: var(--secondary);
}

/* =========================================
   BENEFITS
   ========================================= */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.benefit-frequency {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.expectation-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
}

.expectation-box h3 {
    color: var(--primary);
    margin-bottom: 16px;
}

.expectation-box ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.expectation-box ul li {
    padding: 8px 0;
    list-style: disc;
}

.expectation-box .disclaimer {
    background: #fef3c7;
    padding: 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #92400e;
    margin-top: 16px;
}

/* =========================================
   RISKS
   ========================================= */

.risks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.risk-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.risk-level {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.risk-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.risk-card p {
    color: var(--gray);
    font-size: 0.875rem;
}

.contraindications {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.contraindications h3 {
    color: var(--danger);
    margin-bottom: 16px;
}

.contraindications ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.contraindications ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: bold;
}

.doctor-warning {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.warning-icon {
    font-size: 2rem;
}

.warning-text {
    color: var(--white);
    font-size: 0.95rem;
}

.warning-text strong {
    color: var(--secondary);
}

/* =========================================
   REVIEWS
   ========================================= */

.reviews-summary {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.big-rating {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.rating-box .stars {
    color: var(--secondary);
    font-size: 1.5rem;
    margin: 10px 0;
}

.rating-bars {
    min-width: 250px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
}

.bar-row span:first-child,
.bar-row span:last-child {
    font-size: 0.875rem;
    color: var(--gray);
    width: 40px;
}

.bar-row .bar {
    flex: 1;
    height: 12px;
    background: var(--gray-light);
    border-radius: 6px;
    overflow: hidden;
}

.bar-row .fill {
    height: 100%;
    background: var(--secondary);
    border-radius: 6px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gray-light);
}

.review-card.positive {
    border-left-color: var(--primary);
}

.review-card.negative {
    border-left-color: var(--danger);
}

.review-card.neutral {
    border-left-color: var(--secondary);
}

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

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.review-verified {
    display: block;
    font-size: 0.75rem;
    color: var(--primary);
}

.review-stars {
    color: var(--secondary);
}

.review-text {
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-style: italic;
}

.review-date {
    font-size: 0.75rem;
    color: var(--gray);
}

.recommendation-stat {
    text-align: center;
    background: var(--primary-light);
    padding: 24px;
    border-radius: var(--radius);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-text {
    color: var(--dark);
}

/* =========================================
   COMPARISON TABLE
   ========================================= */

.comparison-table {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    padding: 20px 24px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-light);
}

.comparison-row:last-child {
    border-bottom: none;
}

.col-product {
    font-weight: 500;
}

.col-metaflow, .col-others {
    text-align: center;
    font-size: 0.875rem;
}

.col-metaflow.winning {
    color: var(--primary);
    font-weight: 600;
}

/* =========================================
   GUARANTEE
   ========================================= */

.guarantee-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.guarantee-box h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.guarantee-box > p {
    color: var(--gray);
    margin-bottom: 24px;
}

.guarantee-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
    margin-top: 30px;
}

.guarantee-pro h4, .guarantee-con h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.guarantee-pro h4 {
    color: var(--primary);
}

.guarantee-con h4 {
    color: var(--secondary);
}

.guarantee-pro ul li, .guarantee-con ul li {
    padding: 6px 0;
    font-size: 0.875rem;
}

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

.faq-grid {
    display: grid;
    gap: 24px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* =========================================
   OFFERS
   ========================================= */

.offer-section {
    background: linear-gradient(180deg, var(--dark) 0%, #111827 100%);
    padding: 80px 0;
}

.offer-header {
    text-align: center;
    margin-bottom: 50px;
}

.offer-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.offer-header h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.offer-header .stock-warning {
    color: var(--danger);
    font-size: 1rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.offer-card.best-value {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.offer-card.best-value:hover {
    transform: scale(1.08);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.offer-badge-small {
    display: inline-block;
    background: var(--gray-light);
    color: var(--gray);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.offer-card .supply {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 16px;
}

.price .old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1rem;
}

.price .new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.price .per-bottle {
    font-size: 0.875rem;
    color: var(--gray);
}

.savings {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.offer-features {
    margin-bottom: 24px;
}

.offer-features li {
    padding: 8px 0;
    color: var(--dark);
    font-size: 0.875rem;
}

.offer-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.offer-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.offer-btn.primary {
    background: var(--gradient);
    border: none;
    color: var(--white);
}

.offer-btn.primary:hover {
    background: var(--gradient-hover);
}

.trust-seals {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.seal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.875rem;
}

.seal span:first-child {
    font-size: 1.5rem;
}

/* =========================================
   DISCLAIMER
   ========================================= */

.disclaimer-section {
    padding: 40px 0;
}

.disclaimer {
    background: #fef3c7;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.disclaimer h3 {
    color: #92400e;
    margin-bottom: 12px;
}

.disclaimer p {
    color: #78350f;
    font-size: 0.875rem;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    background: var(--dark);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    gap: 0;
}

.footer-logo .logo-main {
    color: #ffffff;
}

.footer-logo .logo-accent {
    color: #10b981;
}

.footer-logo .logo-hub {
    color: #10b981;
    font-weight: 400;
}

.footer p {
    color: var(--gray);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .trust-badges {
        justify-content: center;
    }

    .verdict-box {
        text-align: left;
    }

    .hero-image {
        order: -1;
    }

    .product-showcase {
        max-width: 280px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 0.875rem;
    }

    .guarantee-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .toc-list {
        gap: 16px;
    }

    .toc-list a {
        font-size: 0.75rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .comparison-header {
        display: none;
    }

    .comparison-row {
        display: flex;
        flex-direction: column;
        gap: 8px;
        border-bottom: 1px dashed var(--gray-light);
    }

    .col-metaflow, .col-others {
        text-align: left;
    }

    .offer-card.best-value {
        transform: none;
    }

    .offer-card.best-value:hover {
        transform: translateY(-8px);
    }

    .reviews-summary {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .sticky-cta {
        padding: 8px 0;
    }

    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }

    .trust-divider {
        display: none;
    }
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease forwards;
}

.ingredient-card,
.benefit-card,
.risk-card,
.review-card,
.offer-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.ingredient-card:nth-child(1) { animation-delay: 0.1s; }
.ingredient-card:nth-child(2) { animation-delay: 0.2s; }
.ingredient-card:nth-child(3) { animation-delay: 0.3s; }
.ingredient-card:nth-child(4) { animation-delay: 0.4s; }
.ingredient-card:nth-child(5) { animation-delay: 0.5s; }
.ingredient-card:nth-child(6) { animation-delay: 0.6s; }

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}