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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    padding: 18px 32px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.cta-microtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    text-align: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-headline {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.primary-cta {
    font-size: 20px;
    padding: 20px 40px;
    margin-bottom: 15px;
}

/* Value Section */
.value-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 50px 20px;
    text-align: center;
}

.section-headline {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
}

.social-proof {
    margin-bottom: 30px;
}

.social-proof p {
    font-size: 18px;
    color: #e74c3c;
    font-weight: 600;
}

.features-list {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    text-align: left;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
}

.secondary-cta {
    background: linear-gradient(135deg, #ff626d, #ff9a00);
    box-shadow: 0 8px 25px rgba(255, 98, 109, 0.3);
}

.secondary-cta:hover {
    box-shadow: 0 12px 35px rgba(255, 98, 109, 0.4);
}

/* Curiosity Section */
.curiosity-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1505253758473-96b7015fcd40?w=1200&h=600&fit=crop&auto=format') center/cover;
    padding: 60px 20px;
}

.curiosity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(160, 82, 45, 0.6));
    z-index: 1;
}

.curiosity-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.curiosity-text {
    color: white;
}

.curiosity-text .section-headline {
    color: white;
    margin-bottom: 20px;
}

.curiosity-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.curiosity-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.curiosity-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tertiary-cta {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.tertiary-cta:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.final-cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.final-cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8), rgba(255, 152, 0, 0.6));
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.final-headline {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.final-subheadline {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.final-cta {
    font-size: 22px;
    padding: 22px 45px;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.final-cta:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 60px 15px;
        min-height: 90vh;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-subheadline {
        font-size: 18px;
    }
    
    .primary-cta {
        font-size: 18px;
        padding: 18px 30px;
        width: 100%;
        max-width: 350px;
    }
    
    .value-section {
        padding: 40px 15px;
    }
    
    .features-list {
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 28px;
    }
    
    .curiosity-section {
        padding: 50px 15px;
    }
    
    .curiosity-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .curiosity-text {
        order: 1;
    }
    
    .curiosity-image {
        order: 2;
    }
    
    .final-cta-section {
        padding: 60px 15px;
    }
    
    .final-cta {
        font-size: 20px;
        padding: 20px 35px;
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }
    
    .hero-subheadline {
        font-size: 16px;
    }
    
    .section-headline {
        font-size: 24px;
    }
    
    .feature-text {
        font-size: 15px;
    }
    
    .curiosity-description {
        font-size: 16px;
    }
    
    .final-headline {
        font-size: 28px;
    }
    
    .final-subheadline {
        font-size: 16px;
    }
}

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

.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

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