/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #2d3436, #636e72);
    box-shadow: 0 8px 25px rgba(45, 52, 54, 0.3);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Testimonial Section */
.testimonial {
    padding: 60px 40px;
    background: #f8f9fc;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-text blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.testimonial-text blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #667eea;
    opacity: 0.3;
}

.customer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.customer-info .name {
    font-weight: 600;
    color: #333;
}

.customer-info .result {
    color: #27ae60;
    font-weight: 500;
}

.before-after-container {
    text-align: center;
}

.before-after-container h3 {
    color: #2d3436;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.transformation-card {
    text-align: center;
}

.transformation-card .label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transformation-card.before .label {
    color: #e74c3c;
}

.transformation-card.after .label {
    color: #27ae60;
}

.image-placeholder {
    width: 140px;
    height: 160px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px 15px;
    position: relative;
    overflow: hidden;
}

.image-placeholder.before {
    background: linear-gradient(135deg, #ff7675, #fd79a8);
    color: white;
}

.image-placeholder.after {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
}

.body-silhouette {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body-silhouette i {
    font-size: 4rem;
    opacity: 0.8;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.transformation-arrow {
    color: #667eea;
    font-size: 1.5rem;
    margin: 0 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.transformation-metrics {
    display: flex;
    justify-content: space-around;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.metric {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.metric .unit {
    font-size: 0.9rem;
    color: #636e72;
    font-weight: 500;
    margin-top: 2px;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 40px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3436;
}

.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mechanism-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mechanism-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.mechanism-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3436;
}

.mechanism-item p {
    color: #636e72;
    line-height: 1.6;
}

/* Product Details */
.product-details {
    padding: 60px 40px;
    background: #f8f9fc;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.product-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2d3436;
}

.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ingredient {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ingredient i {
    color: #27ae60;
    font-size: 1.2rem;
}

.bottle-placeholder {
    width: 250px;
    height: 350px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.bottle-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
}

/* Social Proof */
.social-proof {
    padding: 60px 40px;
    text-align: center;
}

.social-proof h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d3436;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat .label {
    color: #636e72;
    font-weight: 500;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.review {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review p {
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.reviewer {
    color: #667eea;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 60px 40px;
    background: #f8f9fc;
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3436;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #2d3436;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: #667eea;
}

.faq-item p {
    color: #636e72;
    line-height: 1.6;
}

/* Order Section */
.order {
    padding: 60px 40px;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.order h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.order-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.simple-subscription {
    margin-bottom: 40px;
}

.subscription-offer {
    background: white;
    color: #333;
    border-radius: 25px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.subscription-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.product-highlight {
    text-align: center;
    margin-bottom: 30px;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.product-highlight h3 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 8px;
}

.product-highlight p {
    color: #636e72;
    font-size: 1rem;
}

.pricing {
    text-align: center;
    margin-bottom: 30px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: #636e72;
    margin-left: 8px;
}

.savings {
    color: #27ae60;
    font-weight: 600;
    font-size: 1rem;
}

.subscribe-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    text-decoration: none;
}

.subscribe-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 0.85rem;
    color: #636e72;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    text-align: center;
}

.trust-badges i {
    color: #27ae60;
    font-size: 1rem;
}

.guarantee-note {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.guarantee-note p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.guarantee-note i {
    color: #27ae60;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.final-cta {
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 15px;
    line-height: 1.4;
}

/* Footer */
footer {
    background: #2d3436;
    color: white;
    padding: 30px 40px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .testimonial-content,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .subscription-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .subscription-card {
        padding: 30px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .before-after {
        flex-direction: column;
        gap: 20px;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .transformation-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .metric {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .mechanism-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero,
    .testimonial,
    .how-it-works,
    .product-details,
    .social-proof,
    .faq,
    .order {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
    }
    
    .subscription-card {
        padding: 25px;
    }
    
    .subscription-header h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .subscription-features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .image-placeholder {
        width: 120px;
        height: 140px;
        padding: 15px 10px 10px;
    }
    
    .body-silhouette i {
        font-size: 3rem;
    }
    
    .stats {
        font-size: 0.8rem;
    }
    
    .transformation-metrics {
        padding: 15px;
    }
    
    .metric .number {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews {
        grid-template-columns: 1fr;
    }
}