/* ============================================
   MAKE AMERICA SLIM AGAIN - MAIN STYLESHEET
   GTmetrix A+ Optimized | Mobile First Design
   ============================================ */

/* CSS Custom Properties - Performance Optimized */
:root {
    /* Brand Colors */
    --primary-red: #8B0000;
    --primary-red-dark: #6B0000;
    --primary-gold: #C9A227;
    --primary-gold-light: #D4AF37;
    --navy-blue: #1a2744;
    --navy-blue-light: #2a3754;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #111111;
    
    /* Accent Colors */
    --success-green: #28a745;
    --warning-orange: #fd7e14;
    --star-yellow: #ffc107;
    
    /* Typography */
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--black);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy-blue);
}

p {
    color: var(--black);
    margin-bottom: 1rem;
}

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

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
}

.announcement-bar p {
    color: var(--white);
    margin: 0;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }
}

/* ============================================
   HEADER NAVIGATION
   ============================================ */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-red);
}

.logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--dark-gray);
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-cta {
    background: var(--primary-red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 50%, #fff5f5 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-text {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: var(--navy-blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: var(--navy-blue);
}

.hero h1 .highlight {
    color: var(--primary-red);
    display: block;
}

.hero-benefits {
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.stars {
    color: var(--star-yellow);
    letter-spacing: 2px;
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.5);
}

.btn-secondary {
    background: var(--navy-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--navy-blue-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ============================================
   TRUST BADGES SECTION
   ============================================ */
.trust-badges {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.trust-badges .container {
    text-align: center;
}

.trust-badges img {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-gold) 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   WHAT IS SECTION
   ============================================ */
.what-is-section {
    padding: 80px 0;
    background: var(--white);
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.what-is-image {
    text-align: center;
}

.what-is-image img {
    max-width: 350px;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.what-is-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--black);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-normal);
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.step-icon {
    margin: 20px 0;
    color: var(--primary-gold);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.step-card p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */
.ingredients-section {
    padding: 80px 0;
    background: var(--white);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.ingredient-card {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all var(--transition-normal);
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

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

.ingredient-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.ingredient-card p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.ingredient-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--navy-blue);
}

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

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    color: var(--white);
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.results-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.results-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.results-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--off-white);
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-display .stars {
    font-size: 1.3rem;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--navy-blue);
}

.testimonial-info .location {
    display: block;
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 5px;
}

.testimonial-info .stars {
    font-size: 1rem;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.verified {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--success-green);
    font-weight: 600;
}

/* ============================================
   SCIENCE SECTION
   ============================================ */
.science-section {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.science-logos {
    margin: 30px 0;
}

.science-logos img {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.7;
}

.science-text {
    font-size: 1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BONUSES SECTION
   ============================================ */
.bonuses-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

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

.bonus-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.bonus-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bonus-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.bonus-card img {
    max-width: 180px;
    margin: 0 auto 20px;
}

.bonus-card h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.bonus-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.bonus-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bonus-price .original {
    color: var(--medium-gray);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.bonus-price .free {
    color: var(--success-green);
    font-size: 1.2rem;
    font-weight: 700;
}

.bonus-shipping {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.bonus-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--medium-gray);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section,
.final-cta-section {
    padding: 80px 0;
    background: var(--white);
}

.final-cta-section {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-red);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.featured-badge,
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.popular-badge {
    background: var(--navy-blue);
}

.package-name {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 5px;
    font-weight: 600;
}

.bottle-count {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.supply-duration {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.pricing-card img {
    max-width: 180px;
    margin: 0 auto 20px;
}

.pricing-card.featured img {
    max-width: 220px;
}

.shipping-info {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

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

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

.original-price {
    font-size: 1.1rem;
    color: var(--medium-gray);
    text-decoration: line-through;
    margin-right: 10px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-red);
}

.per-bottle {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.bonuses-included {
    font-size: 0.95rem;
    color: var(--success-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-card .btn {
    width: 100%;
}

.trust-section {
    text-align: center;
}

.trust-section p {
    color: var(--medium-gray);
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffbf0 0%, var(--white) 100%);
}

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

.guarantee-badge {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

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

.guarantee-days {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--navy-blue);
    line-height: 1;
}

.guarantee-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1.2;
}

.guarantee-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.guarantee-info p {
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

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

.faq-item {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--off-white);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-blue);
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-red);
    transition: transform var(--transition-fast);
}

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

.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: 20px 25px;
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    background: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.footer-support {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-support p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-support a {
    color: var(--primary-gold);
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 30px;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   MOBILE FLOATING CTA
   ============================================ */
.mobile-floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 25px rgba(139, 0, 0, 0.5);
    animation: bounce 2s ease-in-out infinite;
}

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

.fire-icon {
    font-size: 1.2rem;
}

/* ============================================
   PURCHASE POPUP - COMPACT DESIGN
   ============================================ */
.purchase-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    border-radius: 10px;
    padding: 12px 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform var(--transition-normal);
    max-width: 280px;
    border-left: 3px solid var(--success-green);
}

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

.popup-content {
    position: relative;
}

.popup-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--light-gray);
    border-radius: 50%;
    font-size: 14px;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1;
}

.popup-close:hover {
    background: var(--dark-gray);
    color: var(--white);
}

.popup-body {
    display: flex;
    align-items: center;
    gap: 12px;
}

.popup-bottle {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.popup-info {
    flex: 1;
    min-width: 0;
}

.popup-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 4px;
}

.popup-text {
    font-size: 12px;
    color: var(--dark-gray);
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.popup-package {
    font-size: 11px;
    color: var(--success-green);
    margin: 0 0 3px 0;
}

.popup-time {
    font-size: 10px;
    color: var(--medium-gray);
}

/* ============================================
   RESPONSIVE STYLES - TABLET
   ============================================ */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-benefits {
        display: inline-block;
        text-align: left;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .what-is-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .what-is-image {
        order: 0;
    }
    
    .what-is-text {
        order: 1;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .result-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE STYLES - MOBILE
   ============================================ */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ingredient-card {
        padding: 20px 15px;
    }
    
    .ingredient-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .result-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .guarantee-badge {
        width: 150px;
        height: 150px;
    }
    
    .guarantee-days {
        font-size: 2.5rem;
    }
    
    .guarantee-info h2 {
        font-size: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    /* Show mobile floating CTA */
    .mobile-floating-cta {
        display: block;
    }
    
    /* Adjust popup for mobile - smaller and compact */
    .purchase-popup {
        left: 10px;
        right: auto;
        bottom: 80px;
        max-width: 240px;
        padding: 10px 12px;
    }
    
    .popup-bottle {
        width: 40px;
        height: 40px;
    }
    
    .popup-body {
        gap: 10px;
    }
    
    .popup-text {
        font-size: 11px;
    }
    
    .popup-package {
        font-size: 10px;
    }
    
    .popup-time {
        font-size: 9px;
    }
    
    .popup-icon {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }
    
    /* Add padding at bottom for floating button */
    .footer {
        padding-bottom: 100px;
    }
}

/* ============================================
   RESPONSIVE STYLES - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .step-card {
        padding: 35px 20px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .floating-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .announcement-bar,
    .mobile-floating-cta,
    .purchase-popup {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .hero,
    section {
        page-break-inside: avoid;
    }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-red: #b00000;
        --navy-blue: #000033;
    }
    
    .btn-primary {
        border: 2px solid var(--white);
    }
}
