* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f0f4f8;
    color: #0b1b2b;
    line-height: 1.6;
}

.home-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.4rem;
    color: #0b1b2b;
}

.nav-brand .logo {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #1e2e3f;
    font-weight: 500;
    transition: color 0.15s;
}

.nav-link:hover {
    color: #0b1b2b;
}

.nav-btn-primary {
    padding: 0.4rem 1.5rem;
    border: none;
    border-radius: 30px;
    background: #0b1b2b;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.15s;
}

.nav-btn-primary:hover {
    background: #1a2f44;
    transform: scale(1.02);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #0b1b2b;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem;
    background: white;
    border-top: 1px solid #e2e8f0;
    gap: 0.8rem;
}

.mobile-menu a {
    text-decoration: none;
    color: #0b1b2b;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f4f8;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu.hidden {
    display: none;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0b1b2b;
    margin-bottom: 1rem;
}

.hero-content .highlight {
    background: linear-gradient(135deg, #2d7aff, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5b6e;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    padding: 0.8rem 2.5rem;
    border: none;
    border-radius: 40px;
    background: #0b1b2b;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.15s;
    display: inline-block;
}

.hero-btn-primary:hover {
    background: #1a2f44;
    transform: scale(1.02);
}

.hero-btn-secondary {
    padding: 0.8rem 2.5rem;
    border: 1.5px solid #dbe2e9;
    border-radius: 40px;
    background: transparent;
    color: #0b1b2b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.15s;
    display: inline-block;
}

.hero-btn-secondary:hover {
    background: #f0f4f8;
    border-color: #b0c4db;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0b1b2b;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5b6e;
}

.section-build,
.section-delivery,
.section-driver {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.section-build {
    background: white;
    border-radius: 40px;
    margin: 1.5rem auto;
}

.section-delivery {
    background: white;
    border-radius: 40px;
    margin: 1.5rem auto;
}

.section-driver {
    background: linear-gradient(135deg, #0b1b2b 0%, #1a2f44 100%);
    border-radius: 40px;
    margin: 1.5rem auto;
    color: white;
}

.section-driver .section-header h2 {
    color: white;
}

.section-driver .section-subtitle {
    color: #94a3b8;
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.4rem;
    color: #0b1b2b;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a5b6e;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.build-card {
    background: #fafbfc;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.build-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.build-card-icon {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.build-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: #0b1b2b;
}

.build-card p {
    color: #4a5b6e;
    font-size: 0.95rem;
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.delivery-card {
    background: #fafbfc;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.delivery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.delivery-card.highlight-card {
    border-color: #2d7aff;
    background: #f0f7ff;
}

.delivery-card-icon {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.delivery-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: #0b1b2b;
}

.delivery-card p {
    color: #4a5b6e;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.delivery-btn-primary {
    padding: 0.6rem 2rem;
    border: none;
    border-radius: 30px;
    background: #0b1b2b;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.15s;
}

.delivery-btn-primary:hover {
    background: #1a2f44;
    transform: scale(1.02);
}

.delivery-btn-secondary {
    padding: 0.6rem 2rem;
    border: 1.5px solid #0b1b2b;
    border-radius: 30px;
    background: transparent;
    color: #0b1b2b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.15s;
}

.delivery-btn-secondary:hover {
    background: #0b1b2b;
    color: white;
}

.driver-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: white;
}

.benefit-item p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.business-examples,
.delivery-examples {
    margin: 2rem 0;
    text-align: center;
}

.business-examples h4,
.delivery-examples h4 {
    font-size: 1rem;
    color: #4a5b6e;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.example-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.tag {
    background: #f0f4f8;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #1e2e3f;
    font-weight: 500;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

.cta-btn-primary {
    padding: 0.9rem 3rem;
    border: none;
    border-radius: 40px;
    background: #0b1b2b;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.15s;
}

.cta-btn-primary:hover {
    background: #1a2f44;
    transform: scale(1.02);
}

.section-driver .cta-btn-primary {
    background: #2d7aff;
}

.section-driver .cta-btn-primary:hover {
    background: #1a5fd9;
}

.home-footer {
    background: #0b1b2b;
    color: white;
    margin-top: 2rem;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand .logo {
    font-size: 1.8rem;
}

.footer-brand span {
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-brand p {
    color: #94a3b8;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: #e2e8f0;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0.3rem 0;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #1a2f44;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-menu:not(.hidden) {
        display: flex;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    .build-grid {
        grid-template-columns: 1fr;
    }
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    .driver-benefits {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero {
        padding: 2rem 1rem;
    }
    .section-build,
    .section-delivery,
    .section-driver {
        padding: 2rem 1rem;
    }
    .build-card,
    .delivery-card {
        padding: 1.2rem;
    }
    .example-tags {
        gap: 0.4rem;
    }
    .tag {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }
    .cta-btn-primary {
        padding: 0.7rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    .delivery-btn-primary,
    .delivery-btn-secondary {
        width: 100%;
        text-align: center;
    }
}