
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f4ff 0%, #f9fafb 100%);
    min-height: 100vh;
}

.container {
    min-height: 100vh;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #f3e8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9333ea;
    font-size: 1.25rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.purple {
    color: #9333ea;
}

/* Hero Section */
.hero {
    padding: 6rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 100%);
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-icon {
    width: 6rem;
    height: 6rem;
    background: #f3e8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #9333ea;
    font-size: 2.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 3rem;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #9333ea;
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(147, 51, 234, 0.25);
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(147, 51, 234, 0.35);
}

/* Inspiration Section */
.inspiration {
    padding: 5rem 1rem;
    background: white;
}

.inspiration-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.inspiration-icon {
    width: 4rem;
    height: 4rem;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #f59e0b;
    font-size: 1.5rem;
}

.inspiration-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

.inspiration-text {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Values Section */
.values {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f8f4ff 0%, #f9fafb 100%);
}

.values-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.values-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 3rem;
}

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

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: #f3e8ff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #9333ea;
    font-size: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 5rem 1rem;
    background: #9333ea;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
}

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

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #9333ea;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 1rem;
}

.footer-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.quote {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .inspiration-content h2,
    .values-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .inspiration,
    .values,
    .cta {
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
}
