/* ============================================
   MetaTrim BHB - Main Stylesheet
   Version: 1.0
   Optimized for Performance & Conversion
   ============================================ */

/* CSS Variables */
:root {
    --primary: #1E88E5;
    --primary-dark: #1565C0;
    --primary-light: #42A5F5;
    --accent: #FF6B35;
    --accent-dark: #E55A2B;
    --accent-light: #FF8A5C;
    --dark: #1A1A2E;
    --dark-light: #2D2D44;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-primary); font-size: 1rem; line-height: 1.6; color: var(--gray-800); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

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

/* Typography - Exact Specifications */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: #1a1a4e; }
h1 { font-size: 46px; font-weight: 700; color: #1a1a4e; }
h2 { font-size: 36px; font-weight: 600; color: #1a1a4e; }
h3 { font-size: 28px; font-weight: 600; color: #1a1a4e; }
h4 { font-size: 22px; font-weight: 600; color: #1a1a4e; }

p, li, span, div { color: #000000; }
p { font-size: 18px; line-height: 1.8; color: #000000; }

/* Mobile Typography */
@media (max-width: 768px) {
    h1 { font-size: 30px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    h4 { font-size: 18px; }
    p { font-size: 16.5px; line-height: 1.75; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.75rem; font-family: var(--font-primary); font-size: 1rem; font-weight: 600; border: none; border-radius: var(--radius-md); cursor: pointer; transition: all var(--transition-normal); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: var(--white); box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5); color: var(--white); }
.btn-secondary { background: var(--gray-100); color: var(--dark); border: 2px solid var(--gray-300); }
.btn-secondary:hover { background: var(--gray-200); border-color: var(--gray-400); color: var(--dark); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--gray-100); color: var(--primary-dark); }
.btn-large { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-block { width: 100%; }
.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); } 50% { box-shadow: 0 4px 30px rgba(255, 107, 53, 0.6); } }

.section-badge { display: inline-block; padding: 0.5rem 1rem; background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(66, 165, 245, 0.1) 100%); color: var(--primary); font-size: 0.875rem; font-weight: 600; border-radius: var(--radius-full); margin-bottom: 1rem; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 1rem; color: #1a1a4e; }
.section-header p { color: #000000; font-size: 18px; line-height: 1.8; }

/* Announcement Bar */
.announcement-bar { background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); padding: 0.75rem 0; text-align: center; font-size: 0.875rem; }
.announcement-bar p { margin: 0; }
.announcement-bar strong { font-weight: 700; }
@media (max-width: 768px) { .announcement-bar { display: none; } }

/* Header */
.header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: var(--shadow-sm); transition: all var(--transition-normal); }
.header.scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.logo img { height: 45px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--gray-700); font-weight: 500; font-size: 0.9375rem; }
.nav-links a:hover { color: var(--primary); }
.btn-nav { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; background: none; border: none; cursor: pointer; }
.mobile-menu-btn span { width: 25px; height: 2px; background: var(--dark); transition: all var(--transition-fast); }
@media (max-width: 992px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1.5rem; gap: 1rem; box-shadow: var(--shadow-lg); }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: flex; }
    .btn-nav { display: none; }
}

/* Hero Section */
.hero { position: relative; padding: 4rem 0 5rem; background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%); overflow: hidden; }
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: 0.5; }
.shape-1 { width: 400px; height: 400px; background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(66, 165, 245, 0.05) 100%); top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 138, 92, 0.05) 100%); bottom: -50px; left: -100px; }
.shape-3 { width: 200px; height: 200px; background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-block; padding: 0.5rem 1rem; background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 138, 92, 0.1) 100%); color: var(--accent); font-size: 0.875rem; font-weight: 600; border-radius: var(--radius-full); margin-bottom: 1.5rem; }
.hero-text h1 { margin-bottom: 1.5rem; color: #1a1a4e; }
.hero-subtitle { font-size: 18px; color: #000000; margin-bottom: 2rem; line-height: 1.8; }
.hero-features { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
.feature-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; color: var(--gray-700); }
.feature-icon { font-size: 1.25rem; }
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.hero-guarantee { font-size: 0.875rem; color: var(--gray-600); }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image-wrapper { position: relative; }
.hero-image img { max-width: 100%; height: auto; border-radius: var(--radius-lg); }
.floating-badge { position: absolute; background: var(--white); padding: 1rem 1.25rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); text-align: center; animation: float 3s ease-in-out infinite; }
.badge-1 { bottom: 20px; right: -20px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.badge-number { display: block; font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.badge-stars { display: block; color: #ffc107; font-size: 0.875rem; letter-spacing: 2px; }
.badge-text { display: block; font-size: 0.75rem; color: var(--gray-600); margin-top: 0.25rem; }

@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-features { justify-content: center; }
    .hero-cta { align-items: center; }
    .hero-image { order: -1; }
    .hero-image img { max-width: 400px; }
    .floating-badge { display: none; }
}
@media (max-width: 576px) {
    .hero { padding: 2rem 0 3rem; }
    .hero-image img { max-width: 280px; }
}

/* Trust Badges */
.trust-badges { padding: 2rem 0; background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.badges-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem; }
.badge-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-700); font-weight: 500; }
.badge-icon { font-size: 1.25rem; }
@media (max-width: 768px) { .badges-wrapper { gap: 1rem 1.5rem; } .badge-item { font-size: 0.8125rem; } }

/* What Is Section */
.what-is { padding: 5rem 0; background: var(--white); }
.what-is-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.what-is-image { position: relative; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border-radius: var(--radius-lg); padding: 2rem; }
.what-is-image img { border-radius: var(--radius-lg); }
.image-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: var(--white); padding: 1rem 1.5rem; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-lg); }
.image-badge span { display: block; font-size: 0.875rem; }
.image-badge span:first-child { font-weight: 700; font-size: 1.125rem; }
.what-is-text h2 { margin-bottom: 1.5rem; color: #1a1a4e; }
.what-is-text p { color: #000000; margin-bottom: 1rem; line-height: 1.8; font-size: 18px; }
.what-is-features { display: grid; gap: 1.5rem; margin-top: 2rem; }
.wis-feature { display: flex; gap: 1rem; align-items: flex-start; }
.wis-icon { font-size: 1.5rem; flex-shrink: 0; }
.wis-feature strong { display: block; color: var(--dark); margin-bottom: 0.25rem; }
.wis-feature p { margin: 0; font-size: 0.9375rem; }
@media (max-width: 992px) {
    .what-is-content { grid-template-columns: 1fr; gap: 2rem; }
    .what-is-image { max-width: 350px; margin: 0 auto; }
    .image-badge { right: 0; }
}

/* How It Works */
.how-it-works { padding: 5rem 0; background: var(--gray-100); }
.steps-wrapper { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.step-card { flex: 1; min-width: 280px; max-width: 350px; background: var(--white); padding: 2.5rem 2rem; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-md); transition: all var(--transition-normal); }
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.step-number { display: inline-block; width: 50px; height: 50px; line-height: 50px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); font-size: 1.25rem; font-weight: 700; border-radius: var(--radius-full); margin-bottom: 1.5rem; }
.step-icon { margin-bottom: 1.5rem; color: var(--primary); }
.step-card h3 { margin-bottom: 1rem; color: #1a1a4e; }
.step-card p { color: #000000; font-size: 16px; line-height: 1.8; }
.step-connector { color: var(--gray-400); }
.how-cta { text-align: center; margin-top: 3rem; }
@media (max-width: 992px) { .step-connector { display: none; } .steps-wrapper { gap: 1.5rem; } }

/* Benefits Section */
.benefits { padding: 5rem 0; background: var(--white); }
.benefits-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.benefits-text h2 { margin-bottom: 1rem; color: #1a1a4e; }
.benefits-text > p { color: #000000; margin-bottom: 2rem; font-size: 18px; line-height: 1.8; }
.benefits-list { display: grid; gap: 1.5rem; }
.benefit-item { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-icon { width: 28px; height: 28px; line-height: 28px; text-align: center; background: linear-gradient(135deg, var(--success) 0%, #34ce57 100%); color: var(--white); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 700; flex-shrink: 0; }
.benefit-content h4 { margin-bottom: 0.5rem; font-size: 20px; color: #1a1a4e; }
.benefit-content p { color: #000000; font-size: 16px; line-height: 1.8; }
.benefits-image { position: relative; }
.benefits-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.benefits-badge { position: absolute; bottom: 30px; left: -30px; background: var(--white); padding: 1.25rem 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); max-width: 200px; }
.bb-title { display: block; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.bb-text { display: block; font-size: 0.8125rem; color: var(--gray-600); }
@media (max-width: 992px) {
    .benefits-content { grid-template-columns: 1fr; }
    .benefits-image { max-width: 450px; margin: 0 auto; }
    .benefits-badge { left: 0; }
}

/* Ingredients Section */
.ingredients { padding: 5rem 0; background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%); }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.ingredient-card { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all var(--transition-normal); }
.ingredient-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.ing-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.ingredient-card h3 { font-size: 22px; margin-bottom: 0.5rem; color: #1a1a4e; }
.ing-source { font-size: 14px; color: var(--primary); margin-bottom: 0.75rem; font-style: italic; }
.ingredient-card p:last-child { color: #000000; font-size: 16px; line-height: 1.7; }
.ingredients-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.ing-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; background: var(--white); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; color: var(--gray-700); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
@media (max-width: 992px) { .ingredients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .ingredients-grid { grid-template-columns: 1fr; } }

/* Shipping Banner */
.shipping-banner { padding: 2rem 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); }
.shipping-content { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; text-align: center; }
.shipping-icon { font-size: 2.5rem; }
.shipping-text h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.25rem; }
.shipping-text p { font-size: 0.9375rem; opacity: 0.9; }

/* Testimonials Section */
.testimonials { padding: 5rem 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.testimonial-card { background: var(--gray-100); padding: 2rem; border-radius: var(--radius-lg); transition: all var(--transition-normal); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.testimonial-header img { width: 60px; height: 60px; border-radius: var(--radius-full); object-fit: cover; }
.testimonial-info h4 { font-size: 18px; margin-bottom: 0.125rem; color: #1a1a4e; }
.testimonial-package { font-size: 14px; color: var(--primary); display: block; margin-bottom: 0.25rem; }
.testimonial-stars { color: #ffc107; font-size: 16px; letter-spacing: 1px; }
.testimonial-text { color: #000000; font-size: 16px; line-height: 1.8; font-style: italic; }
.testimonial-disclaimer { text-align: center; font-size: 0.8125rem; color: var(--gray-500); font-style: italic; max-width: 800px; margin: 0 auto; }
@media (max-width: 992px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; } }

/* Guarantee Section */
.guarantee { padding: 4rem 0; background: var(--gray-100); }
.guarantee-content { display: flex; align-items: center; gap: 3rem; max-width: 900px; margin: 0 auto; text-align: center; flex-direction: column; }
.guarantee-icon { color: var(--success); flex-shrink: 0; }
.guarantee-text h2 { margin-bottom: 1rem; font-size: 36px; color: #1a1a4e; }
.guarantee-text p { color: #000000; line-height: 1.8; margin-bottom: 1.5rem; font-size: 18px; }
.guarantee-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.guarantee-features span { font-weight: 600; color: var(--success); }

/* Pricing Section */
.pricing { padding: 5rem 0; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.pricing-card { position: relative; background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem; text-align: center; transition: all var(--transition-normal); }
.pricing-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--accent); transform: scale(1.05); box-shadow: var(--shadow-xl); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: var(--white); padding: 0.375rem 1.25rem; font-size: 0.8125rem; font-weight: 700; border-radius: var(--radius-full); white-space: nowrap; }
.pricing-header h3 { font-size: 24px; margin-bottom: 0.25rem; color: #1a1a4e; }
.pricing-supply { color: #000000; font-size: 16px; }
.pricing-image { padding: 1.5rem 0; }
.pricing-image img { max-width: 180px; height: auto; margin: 0 auto; background: linear-gradient(135deg, #1a1a2e 0%, #0d0d15 100%); border-radius: var(--radius-md); padding: 1rem; }
.pricing-details { margin-bottom: 1.5rem; }
.pricing-bottles { display: block; font-size: 20px; font-weight: 600; color: #1a1a4e; margin-bottom: 0.75rem; }
.pricing-price { margin-bottom: 0.5rem; }
.price-old { display: inline-block; text-decoration: line-through; color: var(--gray-500); font-size: 1rem; margin-right: 0.5rem; }
.price-amount { font-size: 48px; font-weight: 800; color: #1a1a4e; }
.price-per { display: block; font-size: 16px; color: #000000; }
.pricing-shipping { display: block; font-size: 16px; color: #000000; margin-bottom: 0.5rem; }
.pricing-shipping.free { color: var(--success); font-weight: 600; }
.pricing-total { display: block; font-size: 18px; font-weight: 600; color: #1a1a4e; }
.pricing-save { display: inline-block; margin-top: 0.5rem; padding: 0.375rem 0.75rem; background: rgba(40, 167, 69, 0.1); color: var(--success); font-size: 0.8125rem; font-weight: 600; border-radius: var(--radius-sm); }
.pricing-card .btn { margin-bottom: 1rem; }
.pricing-payment img { margin: 0 auto; opacity: 0.7; }
.pricing-note { text-align: center; margin-top: 2rem; color: var(--gray-600); font-size: 0.9375rem; }
@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .pricing-card.featured { transform: none; }
}

/* FAQ Section */
.faq { padding: 5rem 0; background: var(--gray-100); }
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius-md); margin-bottom: 1rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; background: none; border: none; font-family: var(--font-primary); font-size: 18px; font-weight: 600; color: #1a1a4e; text-align: left; cursor: pointer; transition: all var(--transition-fast); }
.faq-question:hover { color: var(--primary); }
.faq-question svg { flex-shrink: 0; transition: transform var(--transition-normal); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-normal); }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 1.5rem 1.25rem; color: #000000; line-height: 1.8; font-size: 16px; }

/* Final CTA Section */
.final-cta { padding: 5rem 0; background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%); color: var(--white); }
.final-cta-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.final-cta-image { background: linear-gradient(135deg, #0d0d15 0%, #1a1a2e 100%); border-radius: var(--radius-lg); padding: 2rem; }
.final-cta-image img { max-width: 350px; margin: 0 auto; }
.final-cta-text h2 { color: var(--white); margin-bottom: 1rem; font-size: 36px; }
.final-cta-text > p { color: #cccccc; margin-bottom: 1.5rem; line-height: 1.8; font-size: 18px; }
.final-cta-list { margin-bottom: 2rem; }
.final-cta-list li { color: #ffffff; margin-bottom: 0.75rem; font-size: 18px; }
.final-cta-note { font-size: 0.875rem; color: var(--gray-500); margin-top: 1rem; }
@media (max-width: 992px) {
    .final-cta-content { grid-template-columns: 1fr; text-align: center; }
    .final-cta-image { order: -1; }
    .final-cta-list { display: inline-block; text-align: left; }
}

/* Footer */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { margin-bottom: 1rem; }
.footer-brand p { font-size: 16px; line-height: 1.8; color: #ffffff; }
.footer-links h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.25rem; }
.footer-links ul li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--gray-400); font-size: 0.9375rem; }
.footer-links a:hover { color: var(--white); }
.footer-certifications { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid var(--gray-800); border-bottom: 1px solid var(--gray-800); margin-bottom: 2rem; }
.footer-certifications span { font-size: 15px; color: #ffffff; font-weight: 500; }
.footer-bottom { text-align: center; }
.footer-disclaimer { max-width: 900px; margin: 0 auto 1.5rem; }
.footer-disclaimer p { font-size: 0.75rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-copyright { font-size: 0.8125rem; color: var(--gray-500); }
@media (max-width: 992px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 576px) { .footer-top { grid-template-columns: 1fr; text-align: center; } .footer-brand img { margin: 0 auto 1rem; } }

/* Floating Order Button */
.floating-order-btn { display: none; position: fixed; bottom: 20px; right: 20px; z-index: 999; padding: 1rem 1.5rem; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: var(--white); border-radius: var(--radius-full); font-weight: 600; font-size: 0.9375rem; box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5); animation: floatBtn 2s ease-in-out infinite; align-items: center; gap: 0.5rem; }
.floating-order-btn:hover { color: var(--white); transform: scale(1.05); }
@keyframes floatBtn { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@media (max-width: 992px) { .floating-order-btn { display: flex; } }

/* Exit Intent Popup */
.exit-popup { display: none; position: fixed; inset: 0; z-index: 10000; align-items: center; justify-content: center; padding: 1rem; }
.exit-popup.active { display: flex; }
.exit-popup-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); }
.exit-popup-content { position: relative; background: var(--white); border-radius: var(--radius-lg); max-width: 450px; width: 100%; padding: 2.5rem; text-align: center; animation: popupIn 0.3s ease; }
@keyframes popupIn { from { opacity: 0; transform: scale(0.9) translateY(-20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.exit-popup-close { position: absolute; top: 10px; right: 15px; width: 30px; height: 30px; background: var(--gray-200); border: none; border-radius: var(--radius-full); font-size: 1.5rem; color: var(--gray-600); cursor: pointer; line-height: 1; }
.exit-popup-close:hover { background: var(--gray-300); color: var(--dark); }
.exit-popup-inner h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--dark); }
.exit-popup-inner > p { color: var(--gray-600); margin-bottom: 1.5rem; }
.exit-popup-inner img { max-width: 200px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, #1a1a2e 0%, #0d0d15 100%); border-radius: var(--radius-md); padding: 1rem; }
.exit-popup-note { font-size: 0.8125rem; color: var(--gray-500); margin-top: 1rem; }

/* Purchase Notification */
.purchase-notification { position: fixed; bottom: 20px; left: 20px; z-index: 998; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-xl); padding: 1rem 1.25rem; max-width: 320px; opacity: 0; visibility: hidden; transform: translateX(-100%); transition: all var(--transition-normal); }
.purchase-notification.active { opacity: 1; visibility: visible; transform: translateX(0); }
.notification-content { display: flex; align-items: center; gap: 1rem; }
.notification-icon { font-size: 1.5rem; flex-shrink: 0; }
.notification-text { display: flex; flex-direction: column; gap: 0.125rem; }
.notification-name { font-size: 0.875rem; color: var(--gray-700); }
.notification-action { font-size: 0.8125rem; color: var(--gray-600); }
.notification-time { font-size: 0.75rem; color: var(--gray-500); }
@media (max-width: 768px) { .purchase-notification { left: 10px; right: 10px; bottom: 80px; max-width: none; } }

/* 200% Zoom Support */
@media screen and (max-width: 320px) {
    html { font-size: 14px; }
    .container { padding: 0 1rem; }
    .hero { padding: 1.5rem 0 2rem; }
    .btn { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
    .pricing-card { padding: 1.5rem; }
    .price-amount { font-size: 2rem; }
}

@media print {
    .header, .floating-order-btn, .exit-popup, .purchase-notification, .shipping-banner { display: none !important; }
    body { font-size: 12pt; color: #000; }
    a { text-decoration: underline; }
}
