/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Landing page structure */
.landing-page {
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ee0979 0%, #b8075f 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    color: white;
    line-height: 1.2;
}

.hero-title::after {
    content: '✨💎✨';
    display: block;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.guarantee {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    display: inline-block;
}

/* CTA Buttons */
.cta-button-large {
    display: inline-block;
    background: #fff;
    color: #ee0979;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.cta-button-large:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: transparent;
    color: #fff;
    border: 3px solid #fff;
}

/* Story Section */
.story-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, #ee0979, #b8075f);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    font-size: 1.3rem;
}

/* Method Section */
.method-section {
    padding: 4rem 0;
    background: #fff;
}

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

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

.method-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #f0f0f0;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.method-card h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.method-card p {
    color: #718096;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.price {
    background: linear-gradient(135deg, #ee0979, #b8075f);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

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

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

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

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.testimonial-author strong {
    color: #2d3748;
    font-size: 1.1rem;
}

.testimonial-author span {
    display: block;
    color: #ee0979;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #ee0979 0%, #b8075f 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.final-cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.risk-free {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1a202c;
    color: #a0aec0;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-button-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .story-section h2,
    .method-section h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .methods-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .method-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .final-cta-section h2 {
        font-size: 2.2rem;
    }
    
    .story-content,
    .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-button-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .method-card h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }
}