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

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

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

/* Typography */
h1, h2, h3 {
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    text-transform: lowercase;
}

a {
    color: #000;
    text-decoration: none;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #000;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    border: 1px solid #000;
    text-transform: lowercase;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: #000;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    text-transform: lowercase;
    font-size: 1rem;
    transition: all 0.2s;
}

.cta-button:hover {
    background: #fff;
    color: #000;
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
}

/* Problem Section */
.problem {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    text-transform: lowercase;
}

/* Solution Section */
.solution {
    padding: 6rem 0;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.feature-card {
    padding: 2rem;
    border: 1px solid #000;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #666;
}

/* Features Grid */
.features {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check {
    color: #000;
    font-size: 1.25rem;
}

/* Social Proof */
.social-proof {
    padding: 6rem 0;
}

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

.testimonial {
    padding: 1.5rem;
    border: 1px solid #000;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial cite {
    font-size: 0.875rem;
    color: #666;
    font-style: normal;
}

.stats-bar {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stats-bar span {
    text-transform: lowercase;
    font-size: 0.875rem;
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background: #fff;
    border-top: 1px solid #000;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2rem;
    border: 1px solid #000;
    position: relative;
}

.pricing-card.featured {
    border-width: 2px;
}

.badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: #000;
    color: #fff;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    text-transform: lowercase;
}

.price {
    font-size: 2rem;
    font-weight: 300;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.price-note {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;
    text-transform: lowercase;
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid #000;
}

.final-cta p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #fff;
    text-transform: lowercase;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #999;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 4rem;
        min-height: 60vh;
    }
    
    .stat-grid {
        gap: 2rem;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}