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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #2d5016;
}

.nav-desktop {
    display: flex;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #6b9b37;
}

.nav-mobile {
    display: none;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.btn-cta-header {
    background: linear-gradient(135deg, #6b9b37, #8bc34a);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 155, 55, 0.3);
}

.btn-cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 155, 55, 0.4);
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fdf4, #e8f5d8);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/wallpaper.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.hero-headline {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2d5016;
}

.highlight-burnjaro {
    color: #d32f2f;
    text-decoration: line-through;
}

.highlight-slimjaro {
    color: #6b9b37;
    background: linear-gradient(135deg, #6b9b37, #8bc34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #6b9b37, #8bc34a);
    color: white;
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(107, 155, 55, 0.3);
    margin-bottom: 15px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 155, 55, 0.4);
}

.guarantee-text {
    color: #6b9b37;
    font-weight: 500;
    margin-top: 10px;
}

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

/* Why Switching Section */
.why-switching {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #2d5016;
}

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

.switching-reasons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reason-icon {
    flex-shrink: 0;
}

.icon {
    width: 30px;
    height: 30px;
    filter: hue-rotate(90deg);
}

.reason-text h3 {
    font-size: 22px;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 10px;
}

.reason-text p {
    color: #666;
    line-height: 1.6;
}

.comparison-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Ingredients Section */
.ingredients {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdf4, #e8f5d8);
}

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

.ingredients-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ingredients-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ingredients-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: #6b9b37;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #666;
    line-height: 1.5;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, #2d5016, #6b9b37);
    color: white;
    font-weight: bold;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature {
    text-align: left !important;
    justify-content: flex-start !important;
    font-weight: 500;
}

.burnjaro-col {
    background: #ffebee;
    color: #d32f2f;
}

.slimjaro-col {
    background: #e8f5e8;
    color: #2e7d32;
    font-weight: bold;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdf4, #e8f5d8);
}

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

.testimonial-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.before-after-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.testimonial-content h4 {
    font-size: 20px;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-rating {
    font-size: 18px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

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

.faq-question:hover {
    color: #6b9b37;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #6b9b37;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* Guarantee Section */
.guarantee {
    padding: 60px 0;
    background: linear-gradient(135deg, #6b9b37, #8bc34a);
    color: white;
}

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

.guarantee-img {
    width: 120px;
    height: auto;
}

.guarantee-text h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}
    color: #333;ction */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdf4, #e8f5d8);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 20px;
}

.final-cta-content > p {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

.pricing-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.urgency-text {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    color: #856404;
}

.btn-cta-final {
    display: inline-block;
    background: linear-gradient(135deg, #d32f2f, #f44336);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(211, 47, 47, 0.3);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

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

.btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.4);
}

.security-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #2d5016;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Sticky CTA Mobile */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.btn-sticky-mobile {
    display: block;
    background: linear-gradient(135deg, #d32f2f, #f44336);
    color: white;
    padding: 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet specific styles */
    .header-content {
        padding: 12px 0;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .btn-cta-header {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-img {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .switching-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ingredients-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .table-cell {
        text-align: left !important;
        justify-content: flex-start !important;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .final-cta-content h2 {
        font-size: 28px;
    }
    
    .final-cta-content > p {
        font-size: 18px;
    }
    
    .sticky-cta-mobile {
        display: block;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-headline {
        font-size: 28px;
    }
    
    .hero-subheadline {
        font-size: 16px;
    }
    
    .btn-cta-primary {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .final-cta-content h2 {
        font-size: 24px;
    }
    
    .btn-cta-final {
        padding: 18px 35px;
        font-size: 18px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}



.guarantee-text p {
    color: #333;
}

