* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #141827;
    background: #ffffff;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.site-header {
    position: sticky;
    top: 0;
    background: #ffffffcc;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eee;
    z-index: 10;
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
}

.brand img {
    width: 42px;
    height: 42px;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    color: #141827;
    text-decoration: none;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 10px;
    background: #6842e8;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid #6842e8;
}

.btn.small {
    padding: 10px 16px;
}

.btn.light {
    background: #fff;
    color: #6842e8;
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fbfaff, #f3f0ff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 54px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    color: #6842e8;
    background: #eee9ff;
    font-weight: 800;
}

h1 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    margin: 22px 0;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #565f73;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.hero-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(65, 45, 130, 0.18);
}

.hero-card img {
    max-height: 220px;
    text-align: center;
    margin: auto
}

.eta-box {
    margin-top: 18px;
    padding: 18px;
    border-radius: 14px;
    background: #ecfff3;
    display: grid;
    gap: 6px;
}

.zip-box {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.zip-box input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.zip-box button {
    background: #6842e8;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    font-weight: 800;
}

.success {
    color: #198754 !important;
    font-weight: 700;
}

.stats {
    padding: 28px 0;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stats-grid div {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.stats-grid strong {
    display: block;
    margin-bottom: 6px;
}

.stats-grid span {
    color: #667085;
}

.section {
    padding: 74px 0;
}

.soft {
    background: #faf8ff;
}

.section-title {
    text-align: center;
    margin-bottom: 36px;
}

.section-title h2 {
    font-size: 36px;
    margin: 0 0 10px;
}

.section-title p {
    color: #667085;
}

.feature-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card,
.price-card,
.steps div {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 36px rgba(20, 24, 39, 0.06);
}

.card h3,
.price-card h3,
.steps h3 {
    margin-bottom: 8px;
}

.card p,
.price-card p,
.steps p {
    color: #667085;
    line-height: 1.6;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.steps span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6842e8;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.pricing-grid {
    grid-template-columns: repeat(4, 1fr);
}

.price-card strong {
    display: block;
    font-size: 32px;
    margin: 12px 0;
}

.price-card.popular {
    border-color: #6842e8;
    box-shadow: 0 16px 48px rgba(104, 66, 232, 0.16);
}

.price-card.popular span {
    display: inline-block;
    background: #6842e8;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.cta {
    padding: 50px 0;
}

.cta-box {
    background: linear-gradient(135deg, #6842e8, #8a62ff);
    color: #fff;
    border-radius: 24px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta h2 {
    margin: 0;
    font-size: 34px;
}

footer {
    border-top: 1px solid #eee;
    padding: 24px 0;
}

.footer {
    display: flex;
    justify-content: space-between;
    color: #667085;
}

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

    .hero-grid,
    .stats-grid,
    .feature-grid,
    .steps,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-actions,
    .cta-box,
    .footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-box {
        gap: 22px;
    }
}