.hero-section {
    background-color: #0d0d0d;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    font-family: 'Manrope', sans-serif;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    gap: 50px;
}

.hero-content {
    flex: 1;
    padding-top: 40px; 
}

.sub-heading {
    color: #4ade80;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 40px;
}

.hero-content h1 span {
    color: #a1a1aa;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05); 
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 450px;
}

.stat-item i {
    color: #4ade80;
    font-size: 20px;
}

.stat-item p {
    font-size: 15px;
    color: #e5e7eb;
}

.hero-form-container {
    flex: 0 0 420px;
}

.lead-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lead-form h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 12px;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-options label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 0;
    text-transform: none; 
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.submit-btn {
    width: 100%;
    background: #ff6933;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #e55a2b;
}

.form-footer {
    font-size: 10px;
    text-align: center;
    color: #999;
    margin-top: 15px;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .stat-item {
        max-width: 100%; 
        text-align: left;
    }

    .hero-form-container {
        flex: none;
        width: 100%;
        max-width: 500px; 
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .sub-heading {
        font-size: 12px;
    }

    .lead-form {
        padding: 25px 20px; 
    }

    .lead-form h3 {
        font-size: 18px;
    }

    .stat-item {
        padding: 15px;
        gap: 10px;
    }

    .stat-item p {
        font-size: 13px;
    }

    .radio-options {
        gap: 8px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 350px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .lead-form {
        padding: 20px 15px;
    }
}