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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f7fafc;
    color: #2d3748;
    line-height: 1.6;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #d4e5f7 0%, #e8f1fa 100%);
    padding: 60px 20px 80px;
    text-align: center;
    margin: 0 -20px;
    margin-bottom: 60px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.logo-icon {
    width: 60px;
    height: 60px;
}

.logo-text {
    font-size: 42px;
    font-weight: 700;
    color: #e85d2d;
    letter-spacing: 2px;
}

.tagline {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.coming-soon-badge {
    display: inline-block;
    background: #e85d2d;
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Signup Form */
.signup-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.input-wrapper {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
}

.signup-form input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.signup-form input:focus {
    outline: none;
    border-color: #e85d2d;
    box-shadow: 0 0 0 3px rgba(232, 93, 45, 0.1);
}

.signup-form input::placeholder {
    color: #a0aec0;
}

.cta-button {
    background: #e85d2d;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.cta-button:hover {
    background: #d54a1a;
    transform: translateY(-1px);
}

.cta-button:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    background: #c6f6d5;
    color: #276749;
    padding: 16px 24px;
    border-radius: 12px;
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.success-message.show {
    display: block;
}

/* Vehicles Section */
.vehicles {
    text-align: center;
    margin-bottom: 60px;
}

.vehicles h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #1a202c;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.vehicle-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.vehicle-card:hover {
    border-color: #e85d2d;
    box-shadow: 0 4px 12px rgba(232, 93, 45, 0.15);
}

.vehicle-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.vehicle-card span {
    font-weight: 600;
    color: #2d3748;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #d4e5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #e85d2d;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a202c;
}

.feature p {
    color: #718096;
    font-size: 14px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .tagline {
        font-size: 24px;
    }

    .logo-text {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .signup-form {
        flex-direction: column;
        padding: 0 20px;
    }

    .input-wrapper {
        min-width: 100%;
    }

    .cta-button {
        width: 100%;
    }
}
