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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Header - New Design */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
}

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

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #8b5cf6;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section - Completely New */
.hero-new {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
    padding: 6rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

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

.hero-content-new {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.btn-hero {
    display: inline-block;
    background: white;
    color: #8b5cf6;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
}

/* Product Showcase - New Design */
.product-showcase {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.showcase-images {
    position: sticky;
    top: 100px;
}

.main-product-image {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.main-product-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.main-product-image:hover img {
    transform: scale(1.05);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: #8b5cf6;
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.showcase-info {
    padding: 2rem 0;
}

.product-tag {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.showcase-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-intro {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.key-benefits {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
    border-color: #8b5cf6;
}

.benefit-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 12px;
}

.benefit-text {
    flex: 1;
}

.benefit-text strong {
    display: block;
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.benefit-text span {
    font-size: 0.9rem;
    color: #6b7280;
}

.ingredients-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
}

.ingredients-section h3 {
    font-size: 1.3rem;
    color: #78350f;
    margin-bottom: 1rem;
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ingredient-tag {
    background: white;
    color: #78350f;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-buy {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.5);
}

/* Benefits Section - New */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-new {
    font-size: 3rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-box {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-box:hover::before {
    transform: scaleX(1);
}

.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
}

.benefit-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.benefit-box h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-box p {
    color: #6b7280;
    line-height: 1.7;
}

/* Steps Section - New */
.steps-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.steps-container {
    display: grid;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section - New */
.testimonials-section {
    padding: 6rem 0;
    background: white;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
    border-color: #8b5cf6;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Comparison Section - New */
.comparison-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.comparison-table {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 1.5rem 2rem;
    font-weight: 700;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s ease;
}

.comparison-row:hover {
    background: #f9fafb;
}

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

.comparison-feature {
    font-weight: 600;
    color: #1f2937;
}

.comparison-product {
    text-align: center;
    font-weight: 600;
}

.comparison-value {
    text-align: center;
    color: #6b7280;
}

.our-product {
    color: #8b5cf6;
    font-weight: 700;
}

/* Guarantee Section - New */
.guarantee-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.guarantee-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* FAQ Section - Accordion */
.faq-new {
    padding: 6rem 0;
    background: white;
}

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

.faq-item-new {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-new.active {
    border-color: #8b5cf6;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s ease;
}

.faq-item-new.active .faq-question {
    color: #8b5cf6;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #8b5cf6;
}

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

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

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

.faq-answer p {
    color: #6b7280;
    line-height: 1.8;
}

/* CTA Section - New */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: #fff;
    padding: 4rem 0 1.5rem;
}

.footer-legal {
    margin-bottom: 2.5rem;
}

.footer-legal h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.legal-info {
    margin-bottom: 2rem;
}

.legal-info p {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.legal-info strong {
    color: #fff;
    font-weight: 600;
}

.health-notice {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.health-notice h4 {
    color: #fff;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.health-notice p {
    color: #cbd5e1;
    line-height: 1.9;
}

.contact-info-footer {
    margin-bottom: 2rem;
}

.contact-info-footer p {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.contact-info-footer strong {
    color: #fff;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.footer-bottom p {
    color: #94a3b8;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 0;
    min-height: 60vh;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #1f2937;
    font-weight: 800;
    letter-spacing: -1px;
}

.legal-page section {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.legal-page section:last-child {
    border-bottom: none;
}

.legal-page h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: #1f2937;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1f2937;
    font-weight: 700;
}

.legal-page p {
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.8;
}

.legal-page a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #ec4899;
    text-decoration: underline;
}

.withdrawal-form {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2.5rem 0;
    border: 1px solid #e5e7eb;
}

.withdrawal-form p {
    margin-bottom: 1.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-images {
        position: static;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title-new {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-icon {
        margin: 0 auto 1rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-feature,
    .comparison-product,
    .comparison-value {
        text-align: left;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Image Placeholders */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure images don't break layout if missing */
.product-image img,
.comparison-image img,
.step-image img {
    background-color: #f0f0f0;
    min-height: 200px;
    display: block;
}
