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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #1d1c1d;
    line-height: 1.6;
}

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

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: #611f69;
    letter-spacing: -1px;
}

.nav-cta {
    background: #611f69;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    background: #4a154b;
    box-shadow: 0 4px 12px rgba(97, 31, 105, 0.3);
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    color: #1d1c1d;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero h1 span {
    color: #611f69;
}

.subtitle {
    font-size: 20px;
    color: #616061;
    max-width: 600px;
    margin: 0 auto 48px;
}

.hero-cta {
    display: inline-block;
    background: #611f69;
    color: #fff;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.hero-cta:hover {
    background: #4a154b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(97, 31, 105, 0.3);
}

/* Features Section */
.features-section {
    background: #f4ede4;
    padding: 80px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 36px;
    font-weight: 900;
    color: #1d1c1d;
    margin-bottom: 16px;
}

.features-header p {
    font-size: 18px;
    color: #616061;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #f4ede4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1d1c1d;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #616061;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    color: #1d1c1d;
    margin-bottom: 60px;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #611f69;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1d1c1d;
    margin-bottom: 8px;
}

.step p {
    font-size: 15px;
    color: #616061;
}

/* CTA Section */
.cta-section {
    background: #611f69;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #611f69;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid #e8e8e8;
    text-align: center;
}

footer p {
    font-size: 14px;
    color: #616061;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        gap: 32px;
    }
}
