/* 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: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header and Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

.nav-menu a:hover {
    color: #8b5a3c;
}

.cta-button {
    background: #8b5a3c;
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #6d4530;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.primary-button {
    background: #8b5a3c;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-button:hover {
    background: #6d4530;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 90, 60, 0.3);
}

.secondary-button {
    background: transparent;
    color: #8b5a3c;
    padding: 16px 32px;
    border: 2px solid #8b5a3c;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-button:hover {
    background: #8b5a3c;
    color: white;
    transform: translateY(-2px);
}

/* Problem-Solution Section */
.problem-solution {
    padding: 100px 0;
    text-align: center;
    background: white;
}

.problem-solution h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.problem-solution p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 24px;
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
    background: #faf8f3;
}

.featured-products h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.product-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.product-card p {
    color: #666;
    font-size: 16px;
}

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

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
}

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

.testimonial {
    text-align: center;
    padding: 40px;
    border-radius: 16px;
    background: #faf8f3;
}

.testimonial p {
    font-size: 18px;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    font-style: normal;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #faf8f3;
}

.how-it-works h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}

.step {
    text-align: center;
    padding: 32px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #8b5a3c;
    color: white;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.step p {
    color: #666;
    font-size: 16px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.about h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.about p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 24px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #8b5a3c;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .primary-button {
    background: white;
    color: #8b5a3c;
}

.cta-section .primary-button:hover {
    background: #f5f1e8;
}

.cta-section .secondary-button {
    border-color: white;
    color: white;
}

.cta-section .secondary-button:hover {
    background: white;
    color: #8b5a3c;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8b5a3c;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 32px;
    text-align: center;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
} 