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

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* HERO HEADER */
header {
    min-height: 100vh;
    background: linear-gradient(135deg, #ff9800 0%, #ffb333 50%, #ffc947 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header h1 {
    font-size: 64px;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header p {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.start-btn {
    margin-top: 20px;
    padding: 16px 40px;
    background: white;
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 18px;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #fff;
}

/* FEATURES SECTION */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f3ff 0%, #fef3f8 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ff9800;
    font-weight: 700;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #ff9800 0%, #ffb333 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
    margin-top: 20px;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-customer,
.btn-owner {
    padding: 14px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
    display: inline-block;
    border: 2px solid white;
}

.btn-customer {
    background: white;
    color: #ff9800;
}

.btn-customer:hover {
    background: transparent;
    color: white;
}

.btn-owner {
    background: transparent;
    color: white;
}

.btn-owner:hover {
    background: white;
    color: #ff9800;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        min-height: 80vh;
        padding: 30px 15px;
    }

    header h1 {
        font-size: 48px;
        margin-bottom: 12px;
    }

    header p {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .start-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .features {
        gap: 20px;
        padding: 45px 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .cta-section {
        padding: 60px 25px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-buttons {
        gap: 15px;
    }

    .btn-customer,
    .btn-owner {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    header {
        min-height: 70vh;
        padding: 20px 12px;
    }

    header h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    header p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .start-btn {
        padding: 11px 25px;
        font-size: 14px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 15px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .cta-section {
        padding: 40px 15px;
        margin-top: 15px;
    }

    .cta-section h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cta-section p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-customer,
    .btn-owner {
        padding: 11px 20px;
        font-size: 13px;
        width: 100%;
    }
}
