/* Genesis Revival - Main Stylesheet */
/* Theme: Black & Gold (Matching Bottle Design) */
/* Optimized for GTmetrix A+ Grade */

/* CSS Variables */
:root {
    --primary-gold: #C9A227;
    --primary-gold-light: #E5C54D;
    --primary-gold-dark: #9E7B1B;
    --primary-black: #1A1A1A;
    --secondary-black: #2D2D2D;
    --bg-cream: #FDF8F0;
    --bg-cream-dark: #F5EBD9;
    --text-black: #1A1A1A;
    --text-dark: #333333;
    --text-gray: #666666;
    --white: #FFFFFF;
    --success-green: #28A745;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-gold: rgba(201, 162, 39, 0.3);
    
    /* Font Families */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lora', serif;
    
    /* Font Sizes - Desktop */
    --fs-base: 18px;
    --fs-h1: 46px;
    --fs-h2: 40px;
    --fs-subtitle: 22px;
    --fs-benefits: 19px;
    --fs-problem: 20px;
    --fs-solution: 19px;
    --fs-doctor: 17px;
    --fs-testimonial: 17px;
    --fs-faq-q: 19px;
    --fs-faq-a: 18px;
    --fs-popup: 30px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--text-black);
    background-color: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-black);
}

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

/* Purchase Notification Popup */
.purchase-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.purchase-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-content {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 10px 40px var(--shadow-medium);
    border-left: 4px solid var(--success-green);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 350px;
}

.popup-icon {
    width: 40px;
    height: 40px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    flex-shrink: 0;
}

.popup-text {
    font-size: 15px;
    margin: 0;
    color: var(--text-dark);
}

.popup-time {
    font-size: 12px;
    color: var(--text-gray);
    display: block;
    margin-top: 5px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s;
}

.popup-close:hover {
    color: var(--text-black);
}

/* Header */
.header {
    background: var(--primary-black);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-medium);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-icon {
    color: var(--primary-gold);
    font-size: 28px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.hero-image-left {
    position: relative;
    z-index: 1;
}

.hero-image-left img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

.hero-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: var(--fs-h1);
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: var(--fs-subtitle);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle strong {
    color: var(--primary-gold);
}

.hero-description {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-black);
    background: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.cta-button-secondary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.stars-gold {
    color: var(--primary-gold);
    font-size: 22px;
    letter-spacing: 2px;
}

.hero-rating span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.hero-rating strong {
    color: var(--white);
    font-size: 18px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--primary-black);
    padding: 18px 45px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px var(--shadow-gold);
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--shadow-gold);
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px var(--shadow-gold);
    }
    50% {
        box-shadow: 0 8px 50px var(--shadow-gold), 0 0 0 10px rgba(201, 162, 39, 0.1);
    }
}

.stock-warning {
    margin-top: 20px;
    color: var(--white);
    font-size: 16px;
}

.stock-warning strong {
    color: #FF6B6B;
}

/* Trust Section */
.trust-section {
    background: var(--bg-cream-dark);
    padding: 40px 0;
    border-top: 3px solid var(--primary-gold);
    border-bottom: 3px solid var(--primary-gold);
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-dark);
}

.badge-icon {
    font-size: 20px;
}

/* Section Titles */
.section-title {
    font-size: var(--fs-h2);
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-black);
}

.section-subtitle {
    font-size: var(--fs-subtitle);
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
}

/* What Is Section */
.what-is-section {
    padding: 80px 0;
    background: var(--white);
}

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

.what-is-text p {
    font-size: var(--fs-base);
    margin-bottom: 20px;
    text-align: justify;
}

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

.what-is-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow-medium);
}

/* How It Works Section */
.how-works-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream-dark) 100%);
}

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

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-black);
}

.step-text {
    font-size: var(--fs-solution);
    color: var(--text-dark);
}

.usage-box {
    background: var(--primary-black);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid var(--primary-gold);
}

.usage-box h3 {
    color: var(--primary-gold);
    font-size: 24px;
    margin-bottom: 15px;
}

.usage-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: var(--fs-base);
}

/* Ingredients Section */
.ingredients-section {
    padding: 80px 0;
    background: var(--white);
}

.ingredients-map {
    margin-bottom: 60px;
    text-align: center;
}

.ingredients-map img {
    border-radius: 20px;
    box-shadow: 0 15px 50px var(--shadow-medium);
    margin: 0 auto;
}

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

.ingredient-card {
    background: var(--bg-cream);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.ingredient-icon {
    font-size: 35px;
    margin-bottom: 15px;
    display: block;
}

.ingredient-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-black);
}

.ingredient-origin {
    font-size: 14px;
    color: var(--primary-gold-dark);
    font-style: italic;
    display: block;
    margin-bottom: 12px;
}

.ingredient-card p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--text-gray);
}

.stars {
    color: var(--primary-gold);
    font-size: 16px;
    margin-top: 5px;
}

.testimonial-text {
    font-size: var(--fs-testimonial);
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    line-height: 1.8;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.comparison-image {
    text-align: center;
}

.comparison-image img {
    max-width: 650px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow-medium);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-cream-dark) 0%, var(--bg-cream) 100%);
}

.pricing-subtext {
    text-align: center;
    max-width: 600px;
    margin: -30px auto 50px;
    color: var(--text-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow-light);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    transform: scale(1.05);
    z-index: 2;
    border: 3px solid var(--primary-gold);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.pricing-card.featured .pricing-header h3 {
    color: var(--primary-gold);
}

.supply-text {
    font-size: 15px;
    color: var(--text-gray);
}

.pricing-card.featured .supply-text {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-image {
    padding: 25px 0;
}

.pricing-image img {
    max-height: 180px;
    margin: 0 auto;
}

.price-per-bottle {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-black);
}

.pricing-card.featured .price-per-bottle {
    color: var(--primary-gold);
}

.price-per-bottle span {
    font-size: 18px;
    font-weight: 400;
}

.price-total {
    font-size: 18px;
    margin: 10px 0;
}

.price-total s {
    color: var(--text-gray);
    margin-right: 10px;
}

.price-total strong {
    color: var(--success-green);
    font-size: 24px;
}

.pricing-card.featured .price-total {
    color: var(--white);
}

.shipping-info {
    font-size: 14px;
    color: var(--text-gray);
    display: block;
    margin-bottom: 20px;
}

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

.pricing-card.featured .shipping-info {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card.featured .shipping-info.free {
    color: var(--primary-gold);
}

.pricing-cta {
    display: block;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 15px 30px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.pricing-cta:hover {
    background: var(--primary-gold-light);
    transform: translateY(-2px);
}

.pricing-cta.featured-cta {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    padding: 18px 35px;
    font-size: 17px;
    animation: pulse 2s infinite;
}

.guarantee-badge {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-card.featured .guarantee-badge {
    color: rgba(255, 255, 255, 0.7);
}

.recommended-note {
    text-align: center;
    margin-top: 30px;
    font-size: 15px;
    color: var(--text-gray);
}

/* Bonuses Section */
.bonuses-section {
    padding: 80px 0;
    background: var(--white);
}

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

.bonus-card {
    background: var(--bg-cream);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-light);
}

.bonus-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.bonus-card img {
    max-height: 220px;
    margin: 20px auto;
}

.bonus-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.bonus-value {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.bonus-value strong {
    color: var(--success-green);
}

.bonus-description {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

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

.guarantee-badge-large {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow-gold);
}

.guarantee-days {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1;
}

.guarantee-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-info h2 {
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.guarantee-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-base);
}

/* Why Six Section */
.why-six-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.reason-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.reason-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.reason-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

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

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: var(--fs-faq-q);
    font-weight: 600;
    color: var(--text-black);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-gold-dark);
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-answer p {
    font-size: var(--fs-faq-a);
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    text-align: center;
}

.final-cta-section .section-title {
    color: var(--primary-gold);
}

.final-cta-text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: var(--fs-base);
}

.final-cta-image {
    max-width: 500px;
    margin: 0 auto 40px;
}

.final-cta-image img {
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.final-cta-section .stock-warning {
    margin-top: 25px;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 50px 0 30px;
    text-align: center;
    border-top: 3px solid var(--primary-gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    font-size: 24px;
}

.footer-logo .logo-text {
    font-size: 20px;
}

.footer-disclaimer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

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

.footer-links a {
    color: var(--primary-gold);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Mobile Floating CTA */
.mobile-floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 15px;
    background: linear-gradient(180deg, transparent 0%, var(--primary-black) 30%);
}

.mobile-cta-btn {
    display: block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--primary-black);
    padding: 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 5px 25px var(--shadow-gold);
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Mobile Responsive - Font Sizes */
@media (max-width: 768px) {
    :root {
        --fs-base: 18px;
        --fs-h1: 36px;
        --fs-h2: 32px;
        --fs-subtitle: 20px;
        --fs-benefits: 18px;
        --fs-problem: 18px;
        --fs-solution: 19px;
        --fs-doctor: 17px;
        --fs-testimonial: 17px;
        --fs-faq-q: 18px;
        --fs-faq-a: 38px;
        --fs-popup: 30px;
    }
    
    /* Actually FAQ answers should be readable, fixing the 38px from specs */
    .faq-answer p {
        font-size: 17px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .logo-text {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    /* Hero */
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-image-left {
        order: -1;
    }
    
    .hero-image-left img {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 18px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-rating {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 15px;
    }
    
    /* Trust Badges */
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        font-size: 13px;
    }
    
    /* What Is Section */
    .what-is-section {
        padding: 60px 0;
    }
    
    .what-is-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .what-is-text p {
        text-align: left;
    }
    
    /* How It Works */
    .how-works-section {
        padding: 60px 0;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-card {
        padding: 30px 25px;
    }
    
    .usage-box {
        padding: 30px 20px;
    }
    
    /* Ingredients */
    .ingredients-section {
        padding: 60px 0;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ingredient-card {
        padding: 25px;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    /* Comparison */
    .comparison-section {
        padding: 60px 0;
    }
    
    .comparison-image img {
        max-width: 100%;
    }
    
    /* Pricing */
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    /* Bonuses */
    .bonuses-section {
        padding: 60px 0;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .bonus-card {
        padding: 30px 25px;
    }
    
    /* Guarantee */
    .guarantee-section {
        padding: 60px 0;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .guarantee-badge-large {
        width: 150px;
        height: 150px;
    }
    
    .guarantee-days {
        font-size: 44px;
    }
    
    .guarantee-info h2 {
        font-size: 26px;
    }
    
    /* Why Six */
    .why-six-section {
        padding: 60px 0;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .reason-card {
        padding: 25px 15px;
    }
    
    .reason-icon {
        font-size: 32px;
    }
    
    .reason-card h3 {
        font-size: 15px;
    }
    
    /* FAQ */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px 0;
        font-size: 17px;
    }
    
    /* Final CTA */
    .final-cta-section {
        padding: 60px 0 100px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 100px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Mobile Floating CTA */
    .mobile-floating-cta {
        display: block;
    }
    
    /* Purchase Popup */
    .purchase-popup {
        left: 15px;
        right: 15px;
        bottom: 90px;
    }
    
    .popup-content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .price-per-bottle {
        font-size: 42px;
    }
}

/* Print Styles */
@media print {
    .mobile-floating-cta,
    .purchase-popup,
    .cta-button {
        display: none !important;
    }
}
