/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #E88A2A;
    --orange-dark: #D4721A;
    --gold: #F5C842;
    --brown: #3D2B1A;
    --brown-light: #6B4D30;
    --cream: #FFF8F0;
    --cream-dark: #F5E6D0;
    --white: #FFFFFF;
    --text: #2D1F10;
    --text-secondary: #8B7355;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.app-icon-wrapper {
    margin-bottom: 24px;
}

.app-icon {
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(232, 138, 42, 0.3);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 440px;
}

.app-store-badge img {
    transition: transform 0.2s ease;
}

.app-store-badge:hover img {
    transform: scale(1.05);
}

.hero-phone {
    flex: 0 0 300px;
}

.phone-screenshot {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

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

.feature-card {
    padding: 32px;
    border-radius: 20px;
    background: var(--cream);
    border: 1px solid rgba(232, 138, 42, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--brown);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.how-it-works h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.steps {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: white;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(232, 138, 42, 0.3);
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--brown);
}

.step p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* CTA */
.cta {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Footer */
footer {
    padding: 40px 0;
    background: var(--brown);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 38px;
    }

    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-phone {
        flex: 0 0 auto;
        width: 240px;
    }

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

    .features h2,
    .how-it-works h2,
    .cta h2 {
        font-size: 28px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }
}
