.hyundai-hero-d24532d2 {
    position: relative;
    width: 100%;
    min-height: 580px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}

.hyundai-hero-container-d24532d2 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    box-sizing: border-box;
}

.hyundai-hero-content-d24532d2 {
    max-width: 650px;
    margin-bottom: 40px;
}

.hyundai-hero-title-d24532d2 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.hyundai-hero-desc-d24532d2 {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6;
    margin: 0 0 35px 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hyundai-hero-buttons-d24532d2 {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hyundai-btn-primary-d24532d2,
.hyundai-btn-secondary-d24532d2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hyundai-btn-primary-d24532d2 {
    background-color: #002c5f; /* Deep Hyundai Blue */
    color: #ffffff;
    border: 2px solid #002c5f;
}

.hyundai-btn-primary-d24532d2:hover {
    background-color: #001a3a;
    border-color: #001a3a;
    transform: translateY(-2px);
}

.hyundai-btn-secondary-d24532d2 {
    background-color: #ffffff;
    color: #002c5f;
    border: 2px solid #ffffff;
}

.hyundai-btn-secondary-d24532d2:hover {
    background-color: #f3f3f3;
    border-color: #f3f3f3;
    transform: translateY(-2px);
}

/* Progress Tracker Bar at Bottom */
.hyundai-progress-bar-d24532d2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 44, 95, 0.95); /* Deep translucent blue match */
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 15px 40px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.progress-step-d24532d2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.step-icon {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.step-arrow {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.4);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hyundai-progress-bar-d24532d2 {
        padding: 15px 25px;
    }
    .step-label {
        font-size: 12px;
    }
    .step-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .hyundai-hero-d24532d2 {
        min-height: auto;
    }
    .hyundai-hero-container-d24532d2 {
        padding-bottom: 40px;
    }
    .hyundai-progress-bar-d24532d2 {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 16px;
        gap: 15px;
        padding: 25px;
    }
    .step-arrow {
        display: none; /* Hide horizontal arrows on vertical stack */
    }
    .progress-step-d24532d2 {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
    }
    .progress-step-d24532d2:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
