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

:root {
    --amber: #FFA726;
    --amber-dark: #F29B1E;
    --charcoal: #2D2D2D;
    --cream: #F6EFE1;
    --soft-grey: #E7E2DA;
    --green: #6FCF97;
    --green-dark: #5DBE86;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
}

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

header {
    background: #e5e3df;
    padding: 16px 28px;
    border-radius: 18px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--charcoal);
}

nav {
    display: flex;
    gap: 26px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}

nav a:hover {
    color: var(--amber);
}

.hero {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 80px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.hero p {
    font-size: 20px;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #4d4d4d;
}

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

.cta-button {
    background: var(--amber);
    color: var(--charcoal);
    padding: 16px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}

.cta-button:hover {
    background: var(--amber-dark);
    transform: translateY(-3px);
}

.cta-secondary {
    background: var(--green);
    color: var(--charcoal);
    padding: 16px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}

.cta-secondary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

.cta-premium {
    background: #5D6D7E;
    color: white;
    padding: 16px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}

.cta-premium:hover {
    background: #4A5A6A;
    transform: translateY(-3px);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--amber);
}

.feature-card p {
    font-size: 16px;
    color: #555;
}

.how-it-works {
    text-align: center;
    margin-bottom: 80px;
}

.how-it-works h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    color: white;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    color: #555;
}

.demo-section {
    background: white;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 80px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.demo-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: #666;
    border-top: 2px solid var(--soft-grey);
    margin-top: 100px;
}

footer a {
    color: #666;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.email-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
}

.email-modal>div {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    max-width: 320px;
    text-align: center;
}

.email-modal button {
    margin-top: 16px;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    background: var(--amber);
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

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

    .hero p {
        font-size: 16px;
    }

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

    .demo-section {
        padding: 30px 20px;
    }
}