/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    user-select: none;
}

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

/* Colors */
:root {
    --primary-green: #2a7f62;
    --light-green: #4ade80;
    --dark-green: #1a5c47;
    --blue: #0066cc;
    --yellow: #ffcc00;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
}

/* Navigation */
.navbar {
    background: var(--primary-green);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--light-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

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

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.btn-order {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: var(--white);
    width: 100%;
    margin: 15px 0;
    font-size: 20px;
    padding: 18px;
}

.btn-order:hover {
    background: linear-gradient(45deg, #e55a2b, #e6821a);
    transform: translateY(-2px);
}

.btn-popular {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    background: var(--primary-green);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 80px;
}

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

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin: -90px 0 20px 0;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

.video-container {
    border: 3px solid var(--white);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
}



/* Testimonials */
.testimonial-mini {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid var(--light-green);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-content {
    flex: 1;
}

.rating {
    color: var(--yellow);
    font-weight: bold;
    margin-bottom: 5px;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="30" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    margin: 10px 0 20px 0;
    color: var(--white);
    line-height: 1.3;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes titleGlow {
    0% { 
        filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(3px 3px 12px rgba(255, 255, 255, 0.3));
        transform: scale(1.02);
    }
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffcc00, transparent);
    border-radius: 2px;
    animation: slideLine 2s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
    animation: slideLine 2s ease-in-out infinite 0.5s;
}

@keyframes slideLine {
    0%, 100% { 
        opacity: 0.3;
        transform: translateX(-50%) scaleX(0.5);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    color: var(--dark-gray);
    line-height: 1.3;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.pricing-card:hover::before {
    animation: shimmer 0.6s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.pricing-card.popular {
    border: 3px solid var(--primary-green);
    transform: scale(1.08);
    background: linear-gradient(145deg, #ffffff, #f0fff4);
    box-shadow: 0 25px 50px rgba(42, 127, 98, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}



.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.1; }
    100% { opacity: 0.2; }
}

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

.package-label {
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(42, 127, 98, 0.3);
    position: relative;
    overflow: hidden;
}

.package-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.pricing-card:hover .package-label::before {
    left: 100%;
}

.popular-label {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    animation: glow 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); }
    100% { box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6), 0 0 20px rgba(255, 107, 53, 0.2); }
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 102, 204, 0.1);
    position: relative;
}

.pricing-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--light-green));
    border-radius: 2px;
}

.pricing-card p {
    color: #666;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 4px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.pricing-card:hover .package-image {
    transform: scale(1.05) rotate(2deg);
}

.price {
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--blue);
    margin: 5px auto 3px auto;
    text-shadow: 3px 3px 6px rgba(0, 102, 204, 0.15);
    position: relative;
    display: block;
    text-align: center;
}

.price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 102, 204, 0.1), transparent);
    border-radius: 8px;
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.bonuses {
    background: linear-gradient(135deg, rgba(42, 127, 98, 0.05), rgba(74, 222, 128, 0.05));
    padding: 15px;
    border-radius: 12px;
    margin: 10px 0;
    border: 1px solid rgba(42, 127, 98, 0.2);
    backdrop-filter: blur(5px);
}

/* Ensure no blue background in pricing bonuses */
.pricing-card .bonuses {
    background: linear-gradient(135deg, rgba(42, 127, 98, 0.05), rgba(74, 222, 128, 0.05)) !important;
}

.pricing-card .bonus-item {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
}

.bonus-item {
    color: var(--primary-green);
    font-weight: bold;
    margin: 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8) !important;
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 2px 8px rgba(42, 127, 98, 0.1);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: rgba(42, 127, 98, 0.1) !important;
    transform: translateX(5px);
}

/* Remove any blue background from bonus items */
.pricing-card .bonus-item,
.pricing-card .bonuses .bonus-item,
.pricing-card .bonuses {
    background: linear-gradient(135deg, rgba(42, 127, 98, 0.05), rgba(74, 222, 128, 0.05)) !important;
    background-color: transparent !important;
}

.pricing-card .bonus-item {
    background: rgba(255, 255, 255, 0.8) !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
}

.btn-order {
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(42, 127, 98, 0.3);
    position: relative;
    overflow: hidden;
    margin: 0;
    display: inline-block;
}

.btn-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-order:hover::before {
    left: 100%;
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(42, 127, 98, 0.4);
    background: linear-gradient(45deg, var(--dark-green), var(--primary-green));
}

.btn-popular {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    animation: buttonPulse 2s ease-in-out infinite;
}

.btn-popular:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

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

.payment-methods {
    width: 180px;
    height: auto;
    margin-top: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.pricing-card:hover .payment-methods {
    opacity: 1;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: var(--white);
}

.guarantee-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.3;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.guarantee-image {
    width: 200px;
    height: auto;
}

.fda-logos {
    width: 300px;
    height: auto;
    margin: 20px auto;
    display: block;
}

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

/* Additional override to ensure blue background */
#bonuses.bonuses {
    background: var(--blue) !important;
}

/* Force blue background on bonuses section */
.bonuses {
    background: var(--blue) !important;
    background-color: var(--blue) !important;
    background-image: none !important;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.bonus-book {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.bonus-number {
    color: var(--light-green);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

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

.bonus-price {
    color: var(--yellow);
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

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

.date {
    color: var(--primary-green);
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

.about-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-header h3 {
    font-size: 2rem;
    color: #666;
    font-style: italic;
}

.underline {
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-decoration-thickness: 3px;
}

.mitochondria-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.mitochondria-image {
    width: 100%;
    border-radius: 12px;
}

/* Product Introduction */
.product-intro {
    background: var(--blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.intro-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.intro-logo {
    width: 400px;
    height: auto;
    margin: 30px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.intro-product {
    width: 100%;
    max-width: 400px;
}

.intro-text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--light-green);
}

/* Ingredients Section */
.ingredients {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f5e8 100%);
    position: relative;
}

.ingredients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(42, 127, 98, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.ingredients .section-title {
    color: var(--primary-green);
    text-shadow: 2px 2px 4px rgba(42, 127, 98, 0.2);
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.ingredients .section-subtitle {
    color: var(--dark-gray);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 127, 98, 0.1);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #666;
}

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

.ingredient-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

.ingredient-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.ingredient-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.ingredient-description {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.ingredient-benefits {
    list-style: none;
    text-align: left;
}

.ingredient-benefits li {
    margin: 8px 0;
    color: #333;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--white);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    background: var(--light-gray);
}

.feature-icon {
    width: 40px;
    height: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #f0f8ff 50%, #fff5f5 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20,10 L22,16 L28,16 L23,20 L25,26 L20,22 L15,26 L17,20 L12,16 L18,16 Z" fill="rgba(255, 107, 53, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    pointer-events: none;
}

.testimonials .section-title {
    color: var(--primary-green);
    text-shadow: 2px 2px 4px rgba(42, 127, 98, 0.2);
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.testimonials .underline {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 2px 8px;
    border-radius: 8px;
    animation: textGlow 2s ease-in-out infinite alternate;
    font-weight: bold;
}

.testimonials .underline::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1), rgba(255, 204, 0, 0.1));
    border-radius: 12px;
    z-index: -1;
    animation: bgGlow 3s ease-in-out infinite alternate;
}

.testimonials .underline::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { 
        filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.3));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.5));
        transform: scale(1.05);
    }
}

@keyframes bgGlow {
    0% { opacity: 0.1; }
    100% { opacity: 0.2; }
}

@keyframes underlineGlow {
    0% { opacity: 0.7; transform: translateX(-50%) scaleX(0.6); }
    100% { opacity: 1; transform: translateX(-50%) scaleX(1); }
}

.customer-photos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

/* First row of customer photos */
.customer-photos .customer-photo:nth-child(1),
.customer-photos .customer-photo:nth-child(2) {
    margin-right: 0;
}

.customer-photos .customer-photo:nth-child(3),
.customer-photos .customer-photo:nth-child(4) {
    margin-right: 0;
}

.customer-photos .customer-photo:nth-child(5) {
    margin-right: 0;
}

.customer-photos .customer-photo:nth-child(6) {
    margin-right: 0;
}

.customer-photos .customer-photo:nth-child(7) {
    margin-right: 0;
}

/* Second row of customer photos */
.customer-photos .customer-photo:nth-child(8),
.customer-photos .customer-photo:nth-child(9) {
    margin-right: 0;
}

.customer-photos .customer-photo:nth-child(10),
.customer-photos .customer-photo:nth-child(11) {
    margin-right: 0;
}

.customer-photos .customer-photo:nth-child(12),
.customer-photos .customer-photo:nth-child(13) {
    margin-right: 0;
}

.customer-photos .customer-photo:nth-child(14) {
    margin-right: 0;
}

.customer-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid #00e8fe;
    position: relative;
    overflow: hidden;
}

.customer-photo::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid rgba(0, 232, 254, 0.3);
    animation: photoGlow 2s ease-in-out infinite alternate;
    z-index: -1;
}

.customer-photo:hover {
    transform: scale(1.1);
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.customer-photo:hover::before {
    border-color: rgba(255, 107, 53, 0.5);
    animation: photoGlowHover 1s ease-in-out infinite alternate;
}

@keyframes photoGlow {
    0% { 
        transform: scale(1);
        opacity: 0.3;
    }
    100% { 
        transform: scale(1.05);
        opacity: 0.6;
    }
}

@keyframes photoGlowHover {
    0% { 
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.customer-photo:hover {
    transform: scale(1.05);
}

.testimonial-detailed {
    margin: 60px 0;
}

.testimonial-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 50px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
}

.testimonial-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.testimonial-content-large h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.package-icon {
    width: 90px;
    height: auto;
}

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

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: bold;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

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

    .faq-columns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 50px;
    }
    
    .faq-column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    


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

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 40px 0 20px;
    position: relative;
}





/* Disable print */
@media print {
    body::before,
    body::after {
        display: none !important;
    }
    
    * {
        display: none !important;
    }
}



/* Hide developer tools */
body {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

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

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--light-green);
}

.footer-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Video Responsive Design */
@media (max-width: 768px) {
    .video-options {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px;
    }
    
    .video-option-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .video-text {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .video-options {
        gap: 5px;
        padding: 8px;
    }
    
    .video-option-btn {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .video-text {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
        margin: 0 -10px;
    }
    
    .pricing-card h3 {
        font-size: 1.6rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
    }
    
    .mitochondria-info {
        grid-template-columns: 1fr;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .customer-info {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .ingredient-card {
        padding: 20px;
    }
    
    .ingredient-image {
        width: 150px;
        height: 150px;
    }
}