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

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
}

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

/* Animated Background Elements */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.bg-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.bg-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    animation-delay: 2s;
}

.bg-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

/* Header Styles */
.header {
    background: transparent;
    backdrop-filter: blur(0px);
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e74c3c;
}

.nav-menu a.active {
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 1px;
    animation: activeUnderline 0.3s ease;
}

@keyframes activeUnderline {
    from { 
        transform: scaleX(0);
        opacity: 0;
    }
    to { 
        transform: scaleX(1);
        opacity: 1;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    backdrop-filter: blur(10px);
    padding: 40px 0 5px;
    margin-top: 30px;
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

.hero::after {
    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="%23e74c3c" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e74c3c" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e74c3c" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e74c3c" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e74c3c" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: drift 20s linear infinite;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

.hero::after {
    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="%23e74c3c" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e74c3c" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e74c3c" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e74c3c" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e74c3c" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: drift 20s linear infinite;
    z-index: 1;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(-100px, -100px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: 800;
   
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
    white-space: nowrap;
}

.hero-highlight-text {
    background: #ff6600;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    font-size: 1.9rem;
}

@keyframes orangeBgPulse {
    from { 
        background: linear-gradient(135deg, #ff9500, #ff6200);
        box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
        transform: scale(1);
    }
    to { 
        background: linear-gradient(135deg, #ff6200, #ff9500);
        box-shadow: 0 8px 25px rgba(255, 149, 0, 0.4);
        transform: scale(1.02);
    }
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.1;
    white-space: nowrap;
}

.hero-text p {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    line-height: 1.8;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.1;
    white-space: nowrap;
}

.hero-text p {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    line-height: 1.8;
}

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

.hero-text {
    position: relative;
    z-index: 100;
    padding: 20px;
    background: rgba(44, 62, 80, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    display: block;
    z-index: 100;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero-middle-image {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hero-middle-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.hero-highlight {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.hero-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.hero-highlight h4 {
    font-size: 1.4rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
    animation: float 8s ease-in-out infinite;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(231, 76, 60, 0.2);
}

/* About Image Section */
.about-image-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.03), transparent);
    animation: shimmer-bg 8s linear infinite;
}

@keyframes shimmer-bg {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.about-image-section .about-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.about-image-section .about-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out;
}

.about-image-section .about-highlight {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.about-image-section .about-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

.about-image-section .about-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(231, 76, 60, 0.4);
}

.about-image-section .about-highlight h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-image-section .about-highlight h3 {
    font-size: 1.4rem;
    font-weight: 500;
}

.text-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

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

.image-wrapper {
    position: relative;
    display: block;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.about-middle-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 4rem;
    display: block;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.about-middle-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(231, 76, 60, 0.2);
}

.about-highlight {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
}

.about-highlight h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-highlight h3 {
    font-size: 1.4rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.03) 0%, transparent 70%);
    animation: rotate 40s linear infinite;
    z-index: 1;
}

.about-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #e74c3c;
    margin: 3rem 0 1.5rem;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-text h3::before {
    content: '🔬';
    margin-right: 10px;
    font-size: 1.5rem;
}

.how-it-works-image {
    width: 100%;
    max-width: 700px;
    margin: 3rem auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
}

.how-it-works-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    border-radius: 25px;
    z-index: -1;
    transition: all 0.3s ease;
}

.how-it-works-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(231, 76, 60, 0.2);
}

.how-it-works-image:hover::before {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(192, 57, 43, 0.2));
}

.about-text ul {
    list-style: none;
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,249,250,0.9));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(231, 76, 60, 0.1);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.about-text li {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    color: #2c3e50;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.about-text li:hover {
    color: #e74c3c;
    transform: translateX(10px);
}

.about-text li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.8rem;
    top: 50%;
    transform: translateY(-50%);
}

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

.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(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    animation: drift 30s linear infinite;
}

.ingredients h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.ingredients-grid-3x3 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ingredient-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ingredient-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
    min-height: 280px;
}

.ingredient-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.4);
}

.ingredient-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.ingredient-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    text-align: center;
}

.ingredient-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.product-item {
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(231, 76, 60, 0.3);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.5);
}

.empty-item {
    visibility: hidden;
}

.bottle-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: transparent;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.bottle-center:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
}

.bottle-center img {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.bottle-center:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(231, 76, 60, 0.3));
}

.ingredient-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.95));
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
    transform-style: preserve-3d;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e74c3c, #c0392b, #e74c3c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ingredient-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.ingredient-card:hover {
    transform: translateY(-15px) scale(1.05) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.5);
}

.ingredient-card:hover::before {
    transform: scaleX(1);
}

.ingredient-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
    border-radius: 10px;
    padding: 8px;
    background: rgba(255,255,255,0.9);
    position: relative;
    z-index: 5;
}

.ingredient-card:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 25px rgba(231, 76, 60, 0.4));
}

.ingredient-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.ingredient-card p {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    z-index: 5;
}

.ingredient-card h3::after {
    content: '✨';
    position: absolute;
    top: -25px;
    right: -10px;
    font-size: 1.2rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.ingredient-card p {
    color: #2c3e50;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
}

.ingredient-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    z-index: 10;
    animation: bounce-in 0.6s ease-out;
}

@keyframes bounce-in {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    50% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 100px;
    color: rgba(231, 76, 60, 0.1);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(231, 76, 60, 0.15);
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid #e74c3c;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.testimonial-card:hover img {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
}

.testimonial-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.location {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.verified {
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stars {
    width: 100px;
    margin: 0 auto;
}

/* Bonuses Section */
.bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.bonuses h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.bonus-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.bonus-card p {
    line-height: 1.6;
}

.shipping-info {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.shipping-info img {
    width: 80px;
    margin-bottom: 1rem;
}

.shipping-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 1rem 0.5rem;
}

.feature img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.8rem;
}

.feature h4 {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.3;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #fecfef 75%, #fecfef 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 2px 2px 4px rgba(0,0,0,0.1); }
    to { text-shadow: 2px 2px 20px rgba(255,255,255,0.5); }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.95) 0%, 
        rgba(248,249,250,0.9) 50%,
        rgba(255,255,255,0.95) 100%);
    backdrop-filter: blur(30px);
    padding: 1.8rem;
    border-radius: 35px;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 1px 0 rgba(255,255,255,0.6);
    text-align: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid rgba(231, 76, 60, 0.3);
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
}

.pricing-card:nth-child(1) { animation-delay: 0s; }
.pricing-card:nth-child(2) { animation-delay: 2s; }
.pricing-card:nth-child(3) { animation-delay: 4s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-10px) rotateX(2deg); }
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #e74c3c, #c0392b, #e74c3c, #ff6b6b, #e74c3c);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-25px) scale(1.05) rotateY(3deg) rotateX(2deg);
    box-shadow: 
        0 50px 100px rgba(231, 76, 60, 0.4),
        0 0 0 2px rgba(231, 76, 60, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border-color: rgba(231, 76, 60, 0.8);
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.98) 0%, 
        rgba(248,249,250,0.95) 50%,
        rgba(255,255,255,0.98) 100%);
}

.pricing-card.featured {
    border: 4px solid #e74c3c;
    box-shadow: 
        0 40px 80px rgba(231, 76, 60, 0.5),
        0 0 0 3px rgba(231, 76, 60, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.7);
    transform: translateY(-15px) scale(1.02);
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { 
        box-shadow: 
            0 40px 80px rgba(231, 76, 60, 0.5),
            0 0 0 3px rgba(231, 76, 60, 0.2),
            inset 0 1px 0 rgba(255,255,255,0.7);
    }
    50% { 
        box-shadow: 
            0 40px 80px rgba(231, 76, 60, 0.7),
            0 0 0 5px rgba(231, 76, 60, 0.3),
            inset 0 1px 0 rgba(255,255,255,0.7);
    }
}

.pricing-card.featured:hover {
    transform: translateY(-30px) scale(1.07) rotateY(3deg) rotateX(2deg);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e74c3c, #c0392b, #ff6b6b);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 
        0 5px 15px rgba(231, 76, 60, 0.4),
        0 0 0 1px rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgeGlow 2s ease-in-out infinite alternate;
    z-index: 10;
}

@keyframes badgeGlow {
    from { 
        box-shadow: 
            0 5px 15px rgba(231, 76, 60, 0.4),
            0 0 0 1px rgba(255,255,255,0.2);
    }
    to { 
        box-shadow: 
            0 5px 25px rgba(231, 76, 60, 0.6),
            0 0 20px rgba(231, 76, 60, 0.3),
            0 0 0 2px rgba(255,255,255,0.3);
    }
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50, #34495e, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: textShimmer 3s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.pricing-card img {
    width: 140px;
    height: auto;
    margin: 0.5rem 0;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    transition: all 0.4s ease;
}

.pricing-card:hover img {
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(0 15px 30px rgba(231, 76, 60, 0.3));
}

.price {
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(192, 57, 43, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.price::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #e74c3c, #ff6b6b, #e74c3c);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.pricing-card:hover .price::before {
    opacity: 0.3;
}

.currency {
    font-size: 2rem;
    color: #e74c3c;
    font-weight: 700;
    animation: currencyPulse 2s ease-in-out infinite;
}

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

.amount {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e74c3c, #c0392b, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(231, 76, 60, 0.2);
    animation: amountGlow 3s ease-in-out infinite alternate;
    display: inline-block;
}

@keyframes amountGlow {
    from { 
        filter: drop-shadow(0 2px 10px rgba(231, 76, 60, 0.2));
        transform: scale(1);
    }
    to { 
        filter: drop-shadow(0 4px 20px rgba(231, 76, 60, 0.4));
        transform: scale(1.02);
    }
}

.period {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.benefits {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.benefits li {
    padding: 0.5rem 0.8rem;
    margin: 0.3rem 0;
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(248,249,250,0.8));
    border-radius: 15px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefits li::before {
    content: '✨';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.benefits li:hover {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.05));
    border-color: rgba(231, 76, 60, 0.3);
    transform: translateX(10px);
    padding-left: 2rem;
}

.benefits li:hover::before {
    left: 10px;
    opacity: 1;
}

.payment-methods {
    width: 160px;
    margin: 1rem auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.pricing-card:hover .payment-methods {
    transform: scale(1.1) rotateY(5deg);
    filter: drop-shadow(0 8px 25px rgba(231, 76, 60, 0.3));
}

.total {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef, #f8f9fa);
    padding: 1rem;
    border-radius: 20px;
    margin: 1rem 0;
    border: 2px solid rgba(231, 76, 60, 0.2);
    position: relative;
    overflow: hidden;
    animation: totalPulse 4s ease-in-out infinite;
}

.total::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transform: rotate(45deg);
    animation: totalShimmer 3s linear infinite;
}

@keyframes totalShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.total strong {
    color: #e74c3c;
    font-size: 1.3rem;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    animation: totalGlow 2s ease-in-out infinite alternate;
}

.original-price {
    text-decoration: line-through;
    color: #e74c3c;
    font-weight: 600;
    margin-right: 0.5rem;
    font-size: 1.1rem;
    position: relative;
    opacity: 0.8;
}

.original-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e74c3c;
    animation: strikethroughGlow 2s ease-in-out infinite alternate;
}

@keyframes strikethroughGlow {
    from { 
        box-shadow: 0 0 5px rgba(231, 76, 60, 0.5);
        opacity: 0.8;
    }
    to { 
        box-shadow: 0 0 10px rgba(231, 76, 60, 0.8);
        opacity: 1;
    }
}

@keyframes totalGlow {
    from { text-shadow: 0 1px 2px rgba(0,0,0,0.1); }
    to { text-shadow: 0 2px 8px rgba(231, 76, 60, 0.3); }
}

.btn-buy {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60, #229954, #2ecc71, #27ae60);
    background-size: 300% 300%;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 260px;
    position: relative;
    overflow: hidden;
    box-shadow: 15px 5px 30px rgba(39, 174, 96, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: buttonGradient 3s ease infinite;
    border: 2px solid rgba(255,255,255,0.2);
}

@keyframes buttonGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.btn-buy::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
}

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

.btn-buy:hover::after {
    width: 300px;
    height: 300px;
}

.btn-buy:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 25px 8px 50px rgba(39, 174, 96, 0.6);
    background-position: 100% 50%;
}

.btn-buy:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 20px 6px 35px rgba(39, 174, 96, 0.5);
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.guarantee-badge {
    width: 150px;
    margin-bottom: 2rem;
}

.guarantee h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.guarantee p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: rgba(231, 76, 60, 0.2);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,249,250,0.98));
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(192, 57, 43, 0.02));
}

.faq-question h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #e74c3c;
}

.faq-toggle {
    font-size: 2rem;
    color: #e74c3c;
    font-weight: 300;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(231, 76, 60, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    background: rgba(248, 249, 250, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem 2rem 2rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Green Mission Section */
.green-mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    text-align: center;
}

.green-mission h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.trees-icon {
    width: 100px;
    margin-bottom: 2rem;
}

.trees-image {
    width: 300px;
    margin: 2rem auto;
    border-radius: 15px;
}

.green-mission h3 {
    font-size: 1.5rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.green-mission p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.final-cta h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.final-cta p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

/* Supplement Facts Section */
.supplement-facts {
    padding: 60px 0;
    background: #fff;
}

.supplement-facts h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.label-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.label-small {
    width: 200px;
}

.label-large {
    width: 400px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c3c;
}

.disclaimer {
    max-width: 800px;
    margin: 2rem auto;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.disclaimer h3 {
    margin-bottom: 1rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    width: 200px;
    margin-bottom: 1rem;
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    z-index: 10001;
    transition: width 0.1s ease;
}

/* Enhanced Typography */
.gradient-text {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow Effects */
.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(231, 76, 60, 0.5); }
    to { box-shadow: 0 0 20px rgba(231, 76, 60, 0.8), 0 0 30px rgba(231, 76, 60, 0.6); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .label-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}