body {
    font-family: 'Parkinsans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

h1 {
    text-align: center;
}

/* Step 1: New Design Styles */
.step1-body {
    background-color: #fff8f0;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.step1-main {
    min-height: calc(100vh - 80px);
    padding: 0;
    position: relative;
}

/* Step 1 container - only visible when step 1 is active */
.step1-wrapper.active .step1-container {
    background: white;
    border-radius: 80px 80px 0 0;
    box-shadow: 0px 0px 80px 0px rgba(216, 116, 12, 0.12);
    padding: 80px 120px;
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    display: block;
}

.step1-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.step1-text-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.step1-title {
    font-family: 'Parkinsans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #000000;
    margin: 0;
    letter-spacing: -2px;
}

.step1-subtitle {
    font-family: 'Parkinsans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #343640;
    margin: 0;
}

.step1-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
    max-width: 480px;
}

.step1-input-wrapper {
    width: 100%;
    position: relative;
    background: white;
    border: 1px solid rgba(52, 54, 64, 0.16);
    border-radius: 12px;
    padding: 20px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step1-input-label {
    display: none;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #343640;
}

.step1-input-wrapper.has-value {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.step1-input-wrapper.has-value .step1-input-label {
    display: block;
}

.step1-input {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: transparent;
    font-family: 'Parkinsans', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    transition: all 0.3s ease;
}

.step1-input-wrapper.has-value .step1-input {
    font-size: 18px;
    line-height: 24px;
    color: #343640;
    font-weight: 400;
}

.step1-input::placeholder {
    color: rgba(52, 54, 64, 0.64);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.step1-input:focus {
    outline: none;
}

.step1-input-wrapper:focus-within {
    border-color: rgba(52, 54, 64, 0.4);
    box-shadow: 0 0 0 3px rgba(52, 54, 64, 0.1);
}

.step1-continue-button {
    background-color: #f7d141;
    color: #000000;
    padding: 16px 40px;
    border-radius: 999px;
    border: none;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 55px;
}

.step1-continue-button:hover:not(:disabled) {
    background-color: #f5c920;
    transform: translateY(-1px);
}

.step1-continue-button:active:not(:disabled) {
    transform: translateY(0);
}

.step1-continue-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.step1-button-icon {
    width: 16px;
    height: 16px;
}

.step1-decoration-crown {
    position: absolute;
    bottom: -200px;
    right: -125px;
    width: 400px;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.24;
    pointer-events: none;
    z-index: 0;
}

.step1-decoration-star {
    position: absolute;
    bottom: -48px;
    left: 80px;
    width: 160px;
    height: 160px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

/* Step 1: Mobile Responsive */
@media (max-width: 1024px) {
    .step1-wrapper.active .step1-container {
        padding: 60px 40px;
        border-radius: 60px 60px 0 0;
    }
    
    .step1-content-wrapper {
        gap: 60px;
    }
    
    .step1-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .step1-subtitle {
        font-size: 14px;
        line-height: 24px;
    }
    
    .step1-decoration-crown {
        width: 300px;
        height: 300px;
        bottom: -150px;
        right: -120px;
    }
    
    .step1-decoration-star {
        width: 120px;
        height: 120px;
        bottom: -30px;
        left: 40px;
    }
}

@media (max-width: 768px) {
    .step1-wrapper.active .step1-container {
        padding: 80px 16px;
        border-radius: 40px 40px 0 0;
    }
    
    .step1-content-wrapper {
        gap: 56px;
    }
    
    .step1-title {
        font-family: 'Parkinsans', sans-serif;
        font-size: 32px;
        line-height: 34px;
        letter-spacing: -2px;
        font-weight: 600;
    }
    
    .step1-subtitle {
        font-family: 'Parkinsans', sans-serif;
        font-size: 13px;
        line-height: 18px;
        color: #343640;
        font-weight: 400;
    }
    
    .step1-input-wrapper {
        background: white;
        border: 1px solid rgba(52, 54, 64, 0.16);
        border-radius: 12px;
        padding: 20px;
        height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }
    
    .step1-input {
        width: 100%;
        height: 100%;
        padding: 0;
        font-size: 18px;
        line-height: 24px;
        border: none;
        background: transparent;
        color: #343640;
        font-weight: 400;
    }
    
    .step1-input::placeholder {
        color: rgba(52, 54, 64, 0.64);
        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
    }
    
    /* Filled input state - shows label above and value below */
    .step1-input-wrapper.has-value {
        display: flex;
        flex-direction: column;
        gap: 8px;
        justify-content: center;
    }
    
    .step1-input-label {
        display: none;
        font-family: 'Parkinsans', sans-serif;
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        color: #343640;
    }
    
    .step1-input-wrapper.has-value .step1-input-label {
        display: block;
    }
    
    .step1-input-wrapper.has-value .step1-input {
        font-family: 'Parkinsans', sans-serif;
        font-size: 18px;
        line-height: 24px;
        color: #343640;
        font-weight: 400;
    }
    
    .step1-input {
        font-family: 'Parkinsans', sans-serif;
    }
    
    .step1-continue-button {
        font-family: 'Parkinsans', sans-serif;
    }
    
    .step1-continue-button {
        padding: 16px 40px;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.32px;
        font-weight: 600;
    }
    
    .step1-decoration-crown {
        width: 200px;
        height: 200px;
        bottom: -100px;
        right: -80px;
    }
    
    .step1-decoration-star {
        width: 80px;
        height: 80px;
        bottom: -20px;
        left: 24px;
    }
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #E8F4F8;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-control:disabled {
    background-color: #F3F4F6;
    color: #6B7280;
    cursor: not-allowed;
    opacity: 1;
}

.form-control:disabled:focus {
    border-color: #E8F4F8;
    box-shadow: none;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.error-message {
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

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

/* Error message styling for step 1 */
.step1-input-wrapper .error-message {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#zip-form {
    max-width: 480px;
    margin: 0 auto;
}

/* Step 2 - Eligibility Results Styles */
.step2-wrapper.active .step2-container {
    background: white;
    border-radius: 80px 80px 0 0;
    box-shadow: 0px 0px 80px 0px rgba(216, 116, 12, 0.12);
    padding: 80px 120px;
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    display: block;
}

.step2-container {
    display: none;
}

.step2-congrats-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(172.57deg, #70D770 0%, #248024 100%);
    border-radius: 0 0 12px 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
    min-width: 280px;
}

.step2-congrats-badge svg {
    flex-shrink: 0;
}

.step2-congrats-badge span {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: white;
    letter-spacing: -0.26px;
}

.step2-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step2-text-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.step2-title {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #000000;
    margin: 0;
    letter-spacing: -2px;
}

.step2-subtitle {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #343640;
    margin: 0;
}

.step2-location-underline {
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

/* Incident Type Tabs */
.step2-incident-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: flex-start;
}

.step2-incident-tab {
    padding: 8px 12px;
    border-radius: 999px;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: -0.5px;
    border: 0.5px solid rgba(85, 85, 85, 0.4);
    background-color: transparent;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    height: 33px;
}

.step2-incident-tab:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.step2-incident-tab.active {
    background-color: #000000;
    color: white;
    border: 2px solid #f8c70f;
}

.step2-tab-icon {
    display: none;
    flex-shrink: 0;
}

.step2-incident-tab.active .step2-tab-icon {
    display: block;
}

/* Image and Statistics Section */
.step2-image-stats-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
}

.step2-image-wrapper {
    width: 100%;
    height: 320px;
    border: 4px solid white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 0px 80px 0px rgba(216, 116, 12, 0.16);
    position: relative;
}

.step2-disaster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.step2-statistics-cards {
    width: 100%;
    display: flex;
    gap: 0;
    align-items: center;
    position: relative;
    margin-top: -24px;
}

.step2-stat-card {
    flex: 1 0 0;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 80px 0px rgba(216, 116, 12, 0.16);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    min-width: 0;
}

.step2-stat-card-1 {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #343640;
    margin-right: -24px;
}

.step2-stat-card-2 {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #343640;
    margin-right: -24px;
}

.step2-stat-card-3 {
    background: white;
    border: 2px solid #70d770;
    box-shadow: 0px 4px 40px 0px rgba(27, 178, 67, 0.16);
    margin-right: -24px;
}

.step2-stat-title {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: #343640;
    margin: 0;
    white-space: pre-wrap;
}

.step2-stat-card-3 .step2-stat-title {
    font-weight: 700;
    font-size: 14px;
}

.step2-stat-value {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    margin: 0;
}

.step2-stat-value-orange {
    color: #ee5700;
}

.step2-stat-value-blue {
    color: #2563eb;
}

.step2-stat-value-green {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -2px;
    background: linear-gradient(156.73deg, #70d770 0%, #248024 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.step2-stat-container{
    display: flex;
    gap: 10px;
}

.step2-checkmark-badge {
    width: 40px;
    height: 40px;
}

/* Continue Button */
.step2-continue-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.step2-continue-button {
    background-color: #f7d141;
    color: #000000;
    padding: 16px 40px;
    border-radius: 999px;
    border: none;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.step2-continue-button:hover {
    background-color: #f5c920;
    transform: translateY(-1px);
}

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

.step2-button-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Decorative elements */
.step2-decoration-crown {
    position: absolute;
    bottom: -200px;
    right: -125px;
    width: 400px;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.24;
    pointer-events: none;
    z-index: 0;
}

.step2-decoration-star {
    position: absolute;
    bottom: -48px;
    left: 80px;
    width: 160px;
    height: 160px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

/* Step 2: Mobile Responsive */
@media (max-width: 1024px) {
    .step2-wrapper.active .step2-container {
        padding: 60px 40px;
        border-radius: 60px 60px 0 0;
    }
    
    .step2-content-wrapper {
        gap: 15px;
    }
    
    .step2-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .step2-subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .step2-decoration-crown {
        width: 300px;
        height: 300px;
        bottom: -150px;
        right: -120px;
    }

    .step2-decoration-star {
        width: 120px;
        height: 120px;
        bottom: -30px;
        left: 40px;
    }
}

@media (max-width: 768px) {
    .step2-wrapper.active .step2-container {
        padding: 56px 12px;
        border-radius: 40px 40px 0 0;
    }
    
    .step2-content-wrapper {
        gap: 24px;
    }
    
    .step2-title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: -1px;
    }
    
    .step2-subtitle {
        font-size: 13px;
        line-height: 20px;
    }
    
    .step2-subtitle br {
        display: block;
    }
    
    .step2-incident-tabs {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
        width: 100%;
        padding-bottom: 4px;
    }
    
    .step2-incident-tabs::-webkit-scrollbar {
        height: 4px;
    }
    
    .step2-incident-tabs::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .step2-incident-tabs::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
    }
    
    .step2-incident-tab {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .step2-image-wrapper {
        height: 180px;
        border-radius: 24px;
        margin-bottom: -20px;
    }
    
    .step2-statistics-cards {
        flex-direction: column;
        gap: 0;
        margin-top: 0;
    }
    
    .step2-stat-card {
        width: 100%;
        margin-right: 0;
        margin-bottom: -10px;
        padding: 8px 16px 16px 16px;
    }
    
    .step2-stat-card-1,
    .step2-stat-card-2 {
        background: white;
        border: 1px solid #343640;
        box-shadow: 0px 0px 24px 0px rgba(216, 116, 12, 0.08);
        flex-direction: row;
        justify-content: space-between;
    }
    
    .step2-stat-card-3 {
        padding: 12px 16px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .step2-stat-card-3 .step2-stat-title {
        flex: 1 0 0;
        min-width: 0;
    }
    
    .step2-stat-value {
        font-size: 20px;
    }
    
    .step2-stat-value-green {
        font-size: 32px;
        line-height: 32px;
    }
    
    .step2-checkmark-badge {
        position: static;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .step2-decoration-crown {
        width: 200px;
        height: 200px;
        bottom: -100px;
        right: -80px;
    }

    .step2-decoration-star {
        width: 80px;
        height: 80px;
        bottom: -20px;
        left: 24px;
    }
    .step2-image-stats-section{
        gap: 0;
    }
    .step2-continue-button{
        margin-top: 12px;
    }
}

/* Step 4: Desktop Layout */
.step4-wrapper.active .step4-container {
    background: white;
    border-radius: 80px 80px 0 0;
    box-shadow: 0px 0px 80px 0px rgba(216, 116, 12, 0.12);
    padding: 60px 120px;
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    display: block;
}

.step4-container {
    display: none;
}

.step4-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}
/* Decorative elements */
.step4-decoration-crown {
    position: absolute;
    bottom: -200px;
    right: -125px;
    width: 400px;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.24;
    pointer-events: none;
    z-index: 0;
}

.step4-decoration-star {
    position: absolute;
    bottom: -48px;
    left: 80px;
    width: 160px;
    height: 160px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}
.step-4-desktop {
    display: block;
}

.step-4-mobile {
    display: none;
}

.step-4-main-content {
    display: flex;
    gap: 66px;
    align-items: flex-start;
    margin-bottom: 48px;
}

/* Step 4: Form Section (Desktop) */
.step-4-form-section {
    flex: 1 0 0;
    min-width: 0;
}

.step-4-form-title {
    font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #000000;
    margin-bottom: 23px;
    text-align: left;
    letter-spacing: -2px;
}

.step-4-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-4-form-row {
    display: flex;
    gap: 16px;
}

.step-4-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 0 0;
    min-width: 0;
}

.step-4-input-wrapper {
    background: white;
    border: 1px solid rgba(52, 54, 64, 0.16);
    border-radius: 12px;
    padding: 20px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-4-input-wrapper:focus-within {
    border: 2px solid #f7d141;
    box-shadow: 0px 0px 24px 0px rgba(247, 209, 65, 0.4);
}

.step-4-label {
    display: none;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #343640;
    margin-bottom: 8px;
}

.step-4-input-wrapper.has-value {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.step-4-input-wrapper.has-value .step-4-label {
    display: block;
}

.step-4-input-wrapper.has-value:focus-within {
    border: 2px solid #f7d141;
    box-shadow: 0px 0px 24px 0px rgba(247, 209, 65, 0.4);
}

.step-4-input-inner {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.step-4-input {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: transparent;
    font-family: 'Parkinsans', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    transition: all 0.3s ease;
    outline: none;
}

.step-4-input-wrapper.has-value .step-4-input {
    font-size: 18px;
    line-height: 24px;
    color: #343640;
    font-weight: 400;
}

.step-4-input::placeholder {
    color: rgba(52, 54, 64, 0.64);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    opacity: 0.4;
}

.step-4-disabled-field .step-4-input-wrapper {
    background-image: linear-gradient(90deg, rgba(52, 54, 64, 0.08) 0%, rgba(52, 54, 64, 0.08) 100%);
    color: rgba(52, 54, 64, 0.64);
    cursor: not-allowed;
}

.step-4-input:focus {
    outline: none;
}

/* Disabled field styles */
.step-4-disabled-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
}

.step-4-disabled-field .step-4-label {
    display: block;
    font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: rgba(52, 54, 64, 0.64);
}

.step-4-disabled-field .step-4-input {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(52, 54, 64, 0.64);
}

.step-4-form-row.step-4-disabled-field {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

/* Step 4: Right Column Container */
.step-4-right-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 530px;
    flex-shrink: 0;
}

/* Step 4: Package Summary Card (Desktop) */
.package-summary-card {
    background: white;
    border: 8px solid white;
    border-radius: 24px;
    box-shadow: 0px 0px 80px 0px rgba(216, 116, 12, 0.16);
    width: 100%;
    /*height: 560px;*/
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.package-image-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.package-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #dfdfdf;
    border-radius: 24px 24px 0 0;
}

/* Monthly/Yearly Toggle */
.package-plan-toggle, .package-plan-toggle-mobile {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 4px;
    background: rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(20px);
    border-radius: 999px;
    z-index: 10;
}

.plan-toggle-btn, .plan-toggle-btn-mobile {
    border: 0.5px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    border-radius: 999px;
    padding: 8px 12px;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: white;
    letter-spacing: -0.5px;
}

.plan-toggle-btn.active, .plan-toggle-btn-mobile.active {
    background: linear-gradient(135deg, rgb(248, 199, 15) 0%, rgb(238, 112, 11) 100%);
    font-weight: 700;
}

.plan-toggle-icon {
    background: white;
    border-radius: 666px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    padding: 0;
}
.plan-toggle-btn.active .plan-toggle-icon, .plan-toggle-btn-mobile.active .plan-toggle-icon {
    display: flex;
}
.plan-toggle-icon svg {
    width: 100%;
    height: 100%;
}

.package-content {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 16px 16px 16px;
    justify-content: flex-end;
    position: relative;
}

.package-logo-badge {
    position: absolute;
    z-index: 1;
    top: -45px;
    left: 16px;
}

.package-logo-img {
    width: 64px;
    height: 64px;
}

.package-title {
    font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #000000;
    letter-spacing: -1px;
    margin: 24px 0 0;
}

.package-pricing-row {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.pricing-badge {
    background: black;
    border: 3px solid #f8c70f;
    border-radius: 999px;
    padding: 0 10px 0 10px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: white;
    text-align: center;
}

.pricing-amount {
    font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 40px;
}

.pricing-period {
    font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
}

.pricing-free-badge {
    flex: 1 0 0;
    display: flex;
    gap: 4px;
    align-items: center;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #ee700b;
    letter-spacing: -0.5px;
}

.pricing-free-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pricing-description {
    flex: 1 0 0;
    font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #555;
    margin: 0;
}

.package-benefits {
    background: rgba(112, 215, 112, 0.16);
    border-radius: 24px;
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 -15px;
}

.package-benefits-title {
    font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin: 0;
}

.package-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefit-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.benefit-check-icon {
    width: 20px;
    height: 20px;
    background: #70d770;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 3.333px;
}

.benefit-check-icon svg {
    width: 13.333px;
    height: 13.333px;
}

.benefit-item span {
    flex: 1 0 0;
    font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
}

.package-guarantees {
    /*background: #fff8f0;*/
    display: flex;
    width: 100%;
    gap: 8px;
    padding: 0;
}

.guarantee-item {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    background: #fff8f0;
    border-radius: 24px;
}

.guarantee-item-1 {
    background: #fff8f0;
}

.guarantee-item-2 {
    background: #fff8f0;
}

.guarantee-item-3 {
    background: #fff8f0;
}

.guarantee-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.guarantee-icon-img {
    width: 16px;
    height: 16px;
}

.guarantee-icon {
    width: 16px;
    height: 16px;
    color: #343640;
}

.guarantee-item span {
    font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #343640;
    text-align: center;
}

/* Step 4: Actions (Desktop) */
.step-4-actions-desktop {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

.step-4-subscribe-button {
    background: #f7d141;
    border: none;
    border-radius: 999px;
    padding: 16px 40px;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.step-4-subscribe-button:hover {
    background: #f5c920;
}

.step-4-subscribe-button span {
    font-family: 'Parkinsans', 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: black;
    text-align: center;
    letter-spacing: -0.32px;
}

.step-4-button-icon {
    width: 20px;
    height: 20px;
}

.step-4-insurance-logos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.step-4-insurance-title {
    font-family: 'Parkinsans', 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: #374151;
    text-align: center;
    letter-spacing: -0.28px;
    margin: 0;
}

.step-4-logos-wrapper {
    width: 100%;
    overflow: hidden;
}

.step-4-logos-container {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    width: fit-content;
    animation: scroll-step4-logos 30s linear infinite;
    zoom: .5;
}

.step-4-logo {
    height: auto;
    flex-shrink: 0;
}

.step-4-logo-duplicate {
    display: block;
}

@keyframes scroll-step4-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

/* Step 4: Testimonials Section (Desktop) */
.step-4-testimonials-desktop {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.step-4-testimonials-title-desktop {
    font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #343640;
    margin: 0;
}

.step-4-testimonials-container-desktop {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    padding-bottom: 10px;
}

.step-4-testimonials-container-desktop::-webkit-scrollbar {
    height: 4px;
}

.step-4-testimonials-container-desktop::-webkit-scrollbar-track {
    background: transparent;
}

.step-4-testimonials-container-desktop::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.step-4-testimonial-card-desktop {
    background: white;
    border: 1px solid rgba(161, 82, 0, 0.16);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 348px;
    flex-shrink: 0;
}

.step-4-testimonial-header-desktop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.step-4-testimonial-stars-desktop {
    display: flex;
    gap: 0;
    align-items: center;
}

.step-4-star-icon-desktop {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.step-4-testimonial-name-desktop {
    font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #343640;
    margin: 0;
}

.step-4-testimonial-text-desktop {
    font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #343640;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Step 4: Mobile Layout */
@media (max-width: 1200px) {
    .step4-wrapper.active .step4-container{
        padding: 60px 40px;
    }
}
@media (max-width: 1024px) {

    .step-4-desktop {
        display: none;
    }

    .step-4-mobile {
        display: block;
    }

    .step-4-mobile {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* Package Card Mobile */
    .package-summary-card-mobile {
        background: white;
        border: 8px solid white;
        border-radius: 24px;
        box-shadow: 0px 0px 80px 0px rgba(216, 116, 12, 0.16);
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .package-image-wrapper-mobile {
        position: relative;
        height: 168px;
        width: 100%;
        overflow: hidden;
        border-radius: 24px 24px 0 0;
    }

    .package-hero-image-mobile {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-color: #dfdfdf;
    }

    .package-content-mobile {
        flex: 1 0 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 8px 12px;
        justify-content: flex-end;
        position: relative;
        margin-top: 15px;
    }

    .package-logo-badge, .package-logo-badge-mobile {
        width: 48px;
        height: 48px;
    }

    .package-logo-badge svg, .package-logo-badge-mobile svg {
        width: 48px;
        height: 48px;
    }

    .package-logo-img-mobile {
        width: 152px;
        height: 112px;
    }

    .package-title-mobile {
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 24px;
        color: #000000;
        margin: 0;
        letter-spacing: -1px;
    }

    .package-pricing-row-mobile {
        display: flex;
        gap: 16px;
        align-items: center;
        width: 100%;
    }

    .pricing-badge-mobile {
        background: #000000;
        border: 3px solid #f8c70f;
        border-radius: 999px;
        padding: 0 14px 0 16px;
        height: 36px;
        display: flex;
        align-items: center;
        gap: 4px;
        color: white;
        text-align: center;
    }

    .pricing-amount-mobile {
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 48px;
    }

    .pricing-period-mobile {
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 28px;
    }

    .pricing-free-badge-mobile {
        flex: 1 0 0;
        display: flex;
        gap: 4px;
        align-items: center;
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #ee700b;
        letter-spacing: -0.5px;
    }

    .pricing-free-badge-mobile svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .pricing-description-mobile {
        flex: 1 0 0;
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 18px;
        color: #555;
        margin: 0;
    }

    .package-benefits-mobile {
        background: rgba(112, 215, 112, 0.16);
        border-radius: 24px;
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .package-benefits-title-mobile {
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 16px;
        color: #000000;
        margin: 0;
    }

    .package-benefits-list-mobile {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .benefit-item-mobile {
        display: flex;
        gap: 6px;
        align-items: center;
    }

    .benefit-check-icon-mobile {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .benefit-check-icon-mobile svg {
        width: 100%;
        height: 100%;
    }

    .benefit-item-mobile span {
        flex: 1 0 0;
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 500;
        font-size: 13px;
        line-height: 24px;
        color: #000000;
    }

    .package-guarantees-mobile {
        /*background: #fff8f0;*/
        display: flex;
        gap: 8px;
        width: 100%;
        padding: 0;
    }

    .guarantee-item-mobile {
        flex: 1 0 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: center;
        padding: 8px;
        background: #fff8f0;
        border-radius: 24px;
    }

    .guarantee-item-1-mobile {
        background: #fff8f0;
    }

    .guarantee-item-2-mobile {
        background: #fff8f0;
    }

    .guarantee-item-3-mobile {
        background: #fff8f0;
    }

    .guarantee-icon-img-mobile {
        width: 20px;
        height: 20px;
    }

    .guarantee-icon-mobile {
        width: 20px;
        height: 20px;
        color: #000000;
    }

    .guarantee-item-mobile span {
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px;
        color: #343640;
        text-align: center;
    }

    /* Subscribe Button Mobile */
    .step-4-subscribe-button-mobile {
        background: #f7d141;
        border: none;
        border-radius: 999px;
        padding: 16px 40px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .step-4-subscribe-button-mobile:hover {
        background: #f5c920;
    }

    .step-4-subscribe-button-mobile span {
        font-family: 'Parkinsans', 'Inter', Arial, sans-serif;
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: black;
        text-align: center;
        letter-spacing: -0.32px;
    }

    .step-4-button-icon-mobile {
        width: 16px;
        height: 16px;
    }

    .step-4-mobile .step-4-subscribe-button-mobile-1 .step-4-button-icon-mobile {
        transform: rotate(90deg);
    }

    /* Insurance Logos Mobile */
    .step-4-insurance-logos-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }

    .step-4-insurance-title-mobile {
        font-family: 'Parkinsans', 'Inter', Arial, sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: #374151;
        text-align: center;
        letter-spacing: -0.28px;
        margin: 0;
    }

    .step-4-logos-wrapper-mobile {
        width: 100%;
        overflow: hidden;
    }

    .step-4-logos-container-mobile {
        display: flex;
        gap: 20px;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
        width: fit-content;
        animation: scroll-step4-logos-mobile 30s linear infinite;
    }

    .step-4-logo-mobile {
        height: auto;
        flex-shrink: 0;
    }

    .step-4-logo-duplicate-mobile {
        display: block;
    }

    @keyframes scroll-step4-logos-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 10px));
        }
    }

    /* Testimonials Section Mobile */
    .step-4-testimonials-mobile {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .step-4-testimonials-title-mobile {
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 600;
        font-size: 14px;
        line-height: 18px;
        color: #343640;
        margin: 0;
    }

    .step-4-testimonials-container-mobile {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    }

    .step-4-testimonials-container-mobile::-webkit-scrollbar {
        height: 4px;
    }

    .step-4-testimonials-container-mobile::-webkit-scrollbar-track {
        background: transparent;
    }

    .step-4-testimonials-container-mobile::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
    }

    .step-4-testimonial-card-mobile {
        background: white;
        border: 1px solid rgba(161, 82, 0, 0.16);
        border-radius: 16px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 340px;
        flex-shrink: 0;
    }

    .step-4-testimonial-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
    }

    .step-4-testimonial-stars-mobile {
        display: flex;
        gap: 0;
        align-items: center;
    }

    .step-4-star-icon-mobile {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .step-4-testimonial-name-mobile {
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 16px;
        color: #343640;
        margin: 0;
    }

    .step-4-testimonial-text-mobile {
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #343640;
        margin: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    /* Form Section Mobile */
    .step-4-form-section-mobile {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 40px 0;
    }

    .step-4-form-title-mobile {
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 600;
        font-size: 30px;
        line-height: 34px;
        color: #000000;
        text-align: center;
        margin: 0;
        letter-spacing: -2px;
    }

    .step-4-form-mobile {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .step-4-form-row-mobile {
        display: flex;
        gap: 8px;
    }

    .step-4-form-field-mobile {
        display: flex;
        flex-direction: column;
        flex: 1 0 0;
        min-width: 0;
    }

    .step-4-disabled-field-mobile {
        opacity: 1;
    }

    .step-4-input-wrapper-mobile, .step-4-disabled-input-wrapper-mobile {
        background: white;
        border: 1px solid rgba(52, 54, 64, 0.16);
        border-radius: 12px;
        padding: 20px 16px;
        height: 64px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: all 0.3s ease;
        position: relative;
    }

    .step-4-input-wrapper-mobile:focus-within,
    .step-4-disabled-input-wrapper-mobile:focus-within {
        border: 2px solid #f7d141;
        box-shadow: 0px 0px 24px 0px rgba(247, 209, 65, 0.4);
    }

    .step-4-label-mobile {
        display: none;
        font-family: 'Parkinsans', sans-serif;
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        color: #343640;
        margin-bottom: 8px;
    }

    .step-4-input-wrapper-mobile.has-value, .step-4-disabled-input-wrapper-mobile {
        display: flex;
        flex-direction: column;
        gap: 0;
        justify-content: center;
    }

    .step-4-input-wrapper-mobile.has-value .step-4-label-mobile,
    .step-4-disabled-input-wrapper-mobile .step-4-label-mobile {
        display: block;
    }

    .step-4-input-wrapper-mobile.has-value:focus-within {
        border: 2px solid #f7d141;
        box-shadow: 0px 0px 24px 0px rgba(247, 209, 65, 0.4);
    }

    .step-4-input-inner-mobile {
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .step-4-input-mobile {
        width: 100%;
        height: 100%;
        padding: 0;
        border: none;
        background: transparent;
        font-family: 'Parkinsans', sans-serif;
        font-size: 16px;
        line-height: 20px;
        color: #000000;
        transition: all 0.3s ease;
        outline: none;
    }

    .step-4-input-wrapper-mobile.has-value .step-4-input-mobile {
        font-size: 16px;
        line-height: 20px;
        color: #343640;
        font-weight: 400;
    }

    .step-4-input-mobile::placeholder {
        color: rgba(52, 54, 64, 0.64);
        font-size: 16px;
        line-height: 20px;
        font-weight: 400;
        opacity: 0.4;
    }

    .step-4-disabled-input-wrapper-mobile {
        background-image: linear-gradient(90deg, rgba(52, 54, 64, 0.08) 0%, rgba(52, 54, 64, 0.08) 100%);
        color: rgba(52, 54, 64, 0.64);
        cursor: not-allowed;
    }

    .step-4-input-mobile:focus {
        outline: none;
    }

    .step-4-disabled-input-wrapper-mobile {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .step-4-disabled-label-mobile {
        font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        color: rgba(52, 54, 64, 0.64);
    }

    /*.step-4-input-disabled-mobile {*/
    /*    background-image: linear-gradient(90deg, rgba(52, 54, 64, 0.08) 0%, rgba(52, 54, 64, 0.08) 100%);*/
    /*}*/

    /*.step-4-input-disabled-mobile::placeholder {*/
    /*    color: rgba(52, 54, 64, 0.64);*/
    /*    font-size: 16px;*/
    /*    line-height: 20px;*/
    /*    font-weight: 400;*/
    /*}*/

    /*.step-4-input-disabled-mobile:not(:placeholder-shown) {*/
    /*    color: rgba(52, 54, 64, 0.64);*/
    /*    font-size: 16px;*/
    /*    line-height: 20px;*/
    /*    font-weight: 400;*/
    /*}*/

    .step-4-input-mobile:focus {
        outline: none;
        border-color: rgba(52, 54, 64, 0.4);
    }
}
@media (max-width: 768px) {
    .step4-wrapper.active .step4-container{
        padding: 0 5px;
        border-radius: 40px 40px 0 0;
    }
    .package-plan-toggle-mobile{
        top: 15px;
    }
    .plan-toggle-icon{
        width: 16px;
        height: 16px;
        padding: 0;
    }
    .package-benefits-mobile{
        padding: 12px 7px;
    }
}

@media (max-width: 450px) {
    .package-summary-card-mobile {
        height: auto;
    }

    .package-content-mobile {
        margin-top: 19px;
        padding: 8px 5px;
        gap: 10px;
    }
    .package-logo-badge{
        top: -51px;
        left: 6px;
    }
    .pricing-badge-mobile{
        padding: 5px 14px 6px 16px;
        height: 44px;
    }

    .package-logo-badge-mobile {
        top: -85px
    }

    .package-title-mobile {
        line-height: 24px;
    }
}

.carrier-logo-small {
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

/* Step 3: Address Form Styles */
.step3-wrapper.active .step3-container {
    background: white;
    border-radius: 80px 80px 0 0;
    box-shadow: 0px 0px 80px 0px rgba(216, 116, 12, 0.12);
    padding: 80px 120px;
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    display: block;
}

.step3-container {
    display: none;
}

.step3-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step3-text-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.step3-title {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #000000;
    margin: 0;
    letter-spacing: -2px;
}

.step3-subtitle {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #343640;
    margin: 0;
}

.step3-form {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 640px;
}

.step3-form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.step3-input-wrapper {
    background: white;
    border: 1px solid rgba(52, 54, 64, 0.16);
    border-radius: 12px;
    padding: 20px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.step3-input-wrapper:focus-within {
    border: 2px solid #f7d141;
    box-shadow: 0px 0px 24px 0px rgba(247, 209, 65, 0.4);
}

.step3-input-label {
    display: none;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #343640;
    margin-bottom: 8px;
}

.step3-input-wrapper.has-value {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.step3-input-wrapper.has-value .step3-input-label {
    display: block;
}

.step3-input-wrapper.has-value:focus-within {
    border: 2px solid #f7d141;
    box-shadow: 0px 0px 24px 0px rgba(247, 209, 65, 0.4);
}

.step3-input-inner {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.step3-input {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: transparent;
    font-family: 'Parkinsans', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    transition: all 0.3s ease;
    outline: none;
}

.step3-input-wrapper.has-value .step3-input {
    font-size: 18px;
    line-height: 24px;
    color: #343640;
    font-weight: 400;
}

.step3-input::placeholder {
    color: rgba(52, 54, 64, 0.64);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    opacity: 0.4;
}

.step3-disabled-fields {
    display: flex;
    gap: 16px;
    width: 100%;
}

.step3-disabled-field {
    flex: 1 0 0;
    background: white;
    border: 1px solid rgba(52, 54, 64, 0.16);
    border-radius: 12px;
    padding: 20px;
    height: 80px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    background-image: linear-gradient(90deg, rgba(52, 54, 64, 0.08) 0%, rgba(52, 54, 64, 0.08) 100%);
}

.step3-disabled-label {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: rgba(52, 54, 64, 0.64);
    margin: 0;
}

.step3-disabled-value {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: rgba(52, 54, 64, 0.64);
    margin: 0;
}

.step3-continue-button {
    background-color: #f7d141;
    color: #000000;
    padding: 16px 40px;
    border-radius: 999px;
    border: none;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.step3-continue-button:hover:not(:disabled) {
    background-color: #f5c920;
    transform: translateY(-1px);
}

.step3-continue-button:active:not(:disabled) {
    transform: translateY(0);
}

.step3-continue-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.step3-button-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.step3-decoration-crown {
    position: absolute;
    bottom: -200px;
    right: -125px;
    width: 400px;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.24;
    pointer-events: none;
    z-index: 0;
}

.step3-decoration-star {
    position: absolute;
    bottom: -48px;
    left: 80px;
    width: 160px;
    height: 160px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

.step3-decoration-star {
    position: absolute;
    bottom: -48px;
    left: 80px;
    width: 160px;
    height: 160px;
    pointer-events: none;
    z-index: 0;
}

.step3-decoration-star img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Step 3: Mobile Responsive */
@media (max-width: 1024px) {
    .step3-wrapper.active .step3-container {
        padding: 60px 40px;
        border-radius: 60px 60px 0 0;
    }
    
    .step3-content-wrapper {
        gap: 60px;
    }
    
    .step3-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .step3-subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .step3-decoration-crown {
        width: 300px;
        height: 300px;
        bottom: -150px;
        right: -120px;
    }

    .step3-decoration-star {
        width: 120px;
        height: 120px;
        bottom: -30px;
        left: 40px;
    }
}

@media (max-width: 768px) {
    .step3-wrapper.active .step3-container {
        padding: 80px 16px;
        border-radius: 40px 40px 0 0;
    }
    
    .step3-content-wrapper {
        gap: 56px;
    }
    
    .step3-text-section {
        gap: 8px;
    }
    
    .step3-title {
        font-family: 'Parkinsans', sans-serif;
        font-size: 30px;
        line-height: 34px;
        letter-spacing: -2px;
        font-weight: 600;
    }
    
    .step3-subtitle {
        font-family: 'Parkinsans', sans-serif;
        font-size: 13px;
        line-height: 18px;
        color: #343640;
        font-weight: 400;
    }
    
    .step3-form {
        gap: 56px;
        max-width: 100%;
    }
    
    .step3-form-fields {
        gap: 16px;
    }
    
    .step3-input-wrapper {
        background: white;
        border: 1px solid rgba(52, 54, 64, 0.16);
        border-radius: 12px;
        padding: 20px;
        height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .step3-input-wrapper:focus-within {
        border: 2px solid #f7d141;
        box-shadow: 0px 0px 24px 0px rgba(247, 209, 65, 0.4);
    }
    
    .step3-disabled-fields {
        gap: 8px;
    }
    
    .step3-disabled-field {
        flex: 1 0 0;
        background: white;
        border: 1px solid rgba(52, 54, 64, 0.16);
        border-radius: 12px;
        padding: 20px;
        height: 80px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        justify-content: center;
        background-image: linear-gradient(90deg, rgba(52, 54, 64, 0.08) 0%, rgba(52, 54, 64, 0.08) 100%);
    }

    .step3-decoration-crown {
        width: 200px;
        height: 200px;
        bottom: -100px;
        right: -80px;
    }

    .step3-decoration-star {
        width: 80px;
        height: 80px;
        bottom: -20px;
        left: 24px;
    }
}

/* Header Call Us Button Styles */
.step-header-logo {
    transition: all 0.3s ease;
}

.step-header-call-us {
    display: none;
}

.step-header-call-us-mobile {
    display: none;
}

/* Show call button on step 4 */
.step-header-call-us.show {
    display: block;
}

.step-header-call-us-mobile.show {
    display: block;
}

/* Desktop Call Us Button */
.header-call-us-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px 8px 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.4);
    border-radius: 999px;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Parkinsans', sans-serif;
}

.header-call-us-button:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.5);
}

.header-call-us-content {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-call-us-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.header-call-us-text {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #343640;
    letter-spacing: -0.28px;
}

.header-call-us-number {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #343640;
    letter-spacing: -0.28px;
}

/* Mobile Call Us Button */
.header-call-us-button-mobile {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 20px 8px 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.4);
    border-radius: 999px;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Parkinsans', sans-serif;
}

.header-call-us-button-mobile:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.5);
}

.header-call-us-icon-mobile {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.header-call-us-text-mobile {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #343640;
    letter-spacing: -0.28px;
}

/* Step 4: Adjust header layout - logo moves to left when Call Us button is visible */
.step-header-logo.step-4-active {
    justify-content: flex-start !important;
}

/* Responsive: Hide desktop button on mobile, hide mobile button on desktop */
@media (max-width: 768px) {
    .step-header-call-us {
        display: none !important;
    }
    
    .step-header-call-us-mobile.show {
        display: block;
    }
}

@media (min-width: 769px) {
    .step-header-call-us-mobile {
        display: none !important;
    }
    
    .step-header-call-us.show {
        display: block;
    }
}