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

h1 {
    text-align: center;
}

/* Step 0: Video Introduction Styles */
.step0-wrapper.active .step0-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;
}

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

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

.step0-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;
}

.step0-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;
}

.step0-video-wrapper {
    width: 100%;
    max-width: 800px;
    position: relative;
}

.step0-video-container {
    width: 100%;
    height: 420px;
    border-radius: 40px;
    /*overflow: hidden;*/
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step0-video{
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
}

.step0-watch-button {
    background-color: #f7d141;
    color: #000000;
    padding: 16px 40px 16px 32px;
    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;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.step0-watch-button:hover {
    background-color: #f5c920;
    transform: translateX(-50%) translateY(-1px);
}

.step0-watch-button:active {
    transform: translateX(-50%) translateY(0);
}

.step0-watch-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.step0-duration {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    letter-spacing: -0.28px;
    margin: 0;
}

.step0-skip-button {
    border: 0.5px solid rgba(0, 0, 0, 0.4);
    background: transparent;
    color: #000000;
    padding: 8px 24px;
    border-radius: 999px;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step0-skip-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.6);
}

.step0-skip-button:active {
    background-color: rgba(0, 0, 0, 0.1);
}

.step0-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;
}

.step0-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;
}
@media (max-width: 1024px) {
    .step0-decoration-crown {
        width: 300px;
        height: 300px;
        bottom: -150px;
        right: -120px;
    }

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

/* Step 0: Mobile Responsive */
@media (max-width: 768px) {
    .step0-wrapper.active .step0-container {
        padding: 80px 16px;
        border-radius: 40px 40px 0 0;
    }

    .step0-content-wrapper {
        gap: 24px;
        width: 100%;
    }

    .step0-text-section {
        gap: 16px;
    }

    .step0-title {
        font-size: 32px;
        line-height: 34px;
    }

    .step0-subtitle {
        font-size: 13px;
        line-height: 18px;
    }

    .step0-video-container {
        height: 200px;
        border-radius: 20px;
    }
    .step0-video{
        border-radius: 20px;
    }

    .step0-watch-button {
        bottom: -28px;
        left: calc(50% + 0.5px);
        padding: 16px 25px 16px 20px;
    }

    .step0-duration {
        margin-top: 18px;
    }

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

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

/* 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-select {
    width: 100%;
    height: 100%;
    padding: 0;
    padding-right: 40px;
    border: none;
    background: transparent;
    font-family: 'Parkinsans', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.step1-select option {
    color: #343640;
    background: white;
    padding: 12px 20px;
}

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

.step1-input-wrapper {
    position: relative;
}

.step1-select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(52, 54, 64, 0.64);
    transition: color 0.3s ease;
}

.step1-input-wrapper.has-value .step1-input,
.step1-input-wrapper.has-value .step1-select {
    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-select:invalid {
    color: rgba(52, 54, 64, 0.64);
}

.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;
        padding-right: 40px;
        font-size: 18px;
        line-height: 24px;
        border: none;
        background: transparent;
        color: #343640;
        font-weight: 400;
    }

    .step1-select {
        width: 100%;
        height: 100%;
        padding: 0;
        padding-right: 40px;
        font-size: 18px;
        line-height: 24px;
        border: none;
        background: transparent;
        color: #343640;
        font-weight: 400;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
    }

    .step1-select:invalid {
        color: rgba(52, 54, 64, 0.64);
    }

    .step1-select-arrow {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(52, 54, 64, 0.64);
        transition: color 0.3s ease;
    }

    .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,
    .step1-input-wrapper.has-value .step1-select {
        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 - Plan Selection 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-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.step2-text-section {
    display: flex;
    flex-direction: column;
    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;
}

/* Desktop Plans */
.step2-plans-desktop {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: center;
}

.step2-plan-card {
    flex: 1;
    max-width: 400px;
    padding: 51.2px 32px 32px;
    border-radius: 25.6px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25.6px;
}

.step2-plan-basic {
    background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.4));
    border: 0.4px solid rgba(161, 82, 0, 0.24);
    box-shadow: 0px 0px 64px 0px rgba(218, 111, 0, 0.08);
}

.step2-plan-platinum {
    background: black;
    border: 6.4px solid #f8c70f;
    border-radius: 32px;
    overflow: hidden;
}

.step2-plan-header {
    display: flex;
    flex-direction: column;
    gap: 6.4px;
}

.step2-plan-name {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 22.4px;
    line-height: 32px;
    margin: 0;
    color: #000000;
}

.step2-plan-platinum .step2-plan-name {
    color: white;
}

.step2-plan-price {
    display: flex;
    flex-direction: column;
    gap: 6.4px;
}

.step2-plan-amount {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 44.8px;
    line-height: 44.8px;
    color: #000000;
    letter-spacing: -1.6px;
}

.step2-plan-platinum .step2-plan-amount {
    color: white;
}

.step2-plan-period {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 400;
    font-size: 14.4px;
    line-height: 25.6px;
    color: rgba(0, 0, 0, 0.8);
}

.step2-plan-platinum .step2-plan-period {
    color: rgba(255, 255, 255, 0.8);
}

.step2-plan-soon {
    font-family: 'Parkinsans', sans-serif;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 19.2px;
    letter-spacing: -0.24px;
    display: flex;
    width: 157.137px;
    transform: rotate(-42.717deg);
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: -39px;
    top: 25px;
    background: #44A544;
}

/* .step2-plan-platinum .step2-plan-soon {
    color: rgba(255, 255, 255, 0.6);
} */

.step2-plan-divider {
    height: 1px;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    margin: 0;
}

.step2-plan-platinum .step2-plan-divider {
    background: rgba(255, 255, 255, 0.2);
}

.step2-plan-features {
    display: flex;
    flex-direction: column;
    gap: 9.6px;
    flex: 1;
}

.step2-plan-feature {
    display: flex;
    gap: 9.6px;
    align-items: flex-start;
}

.step2-feature-icon {
    width: 19.2px;
    height: 19.2px;
    flex-shrink: 0;
    color: #44A544;
    margin-top: 2px;
}

.step2-plan-platinum .step2-feature-icon {
    color: white;
}

.step2-plan-feature p {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 400;
    font-size: 12.4px;
    line-height: 19.2px;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    flex: 1;
}

.step2-plan-platinum .step2-plan-feature p {
    color: rgba(255, 255, 255, 0.8);
}

.step2-plan-feature-negative .step2-feature-icon {
    color: rgba(0, 0, 0, 0.4);
}

.step2-plan-platinum .step2-plan-feature-negative .step2-feature-icon {
    color: rgba(255, 255, 255, 0.4);
}

.step2-plan-button {
    width: 100%;
    padding: 12.8px 32px;
    border-radius: 799.2px;
    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;
}

.step2-plan-button-basic {
    background: #ffb370;
    color: #000000;
}

.step2-plan-button-platinum {
    background: #f7d141;
    color: #000000;
}

.step2-plan-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.step2-plan-badge {
    position: absolute;
    top: 13px;
    right: 13px;
    padding: 6.4px 12.8px;
    border-radius: 8px;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 11.2px;
    line-height: 19.2px;
    letter-spacing: -0.224px;
}

.step2-plan-badge-popular {
    background: rgba(255, 179, 112, 0.29);
    color: #ec8c39;
}

.step2-plan-badge-value {
    background: linear-gradient(158.81deg, #f8c70f 0%, #ee700b 100%);
    color: #000000;
}

.step2-talk-to-agent {
    display: flex;
    justify-content: center;
    width: 100%;
}

.step2-talk-button {
    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: white;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.28px;
    color: #343640;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step2-talk-icon {
    width: 16px;
    height: 16px;
    color: currentColor;
}

/* Mobile Plans Carousel */
.step2-plans-mobile {
    display: none;
    width: 100%;
    position: relative;
}

.step2-carousel-container {
    width: 100%;
    /* overflow: hidden; */
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.step2-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: 200%; /* Will be updated dynamically by JS based on visible slides */
}

.step2-carousel-slide {
    width: 50%;
    flex-shrink: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.step2-carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    height: 6px;
}

.step2-carousel-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.step2-carousel-indicator.active {
    background: rgba(0, 0, 0, 0.6);
    width: 16px;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .step2-wrapper.active .step2-container {
        padding: 56px 0;
        border-radius: 40px 40px 0 0;
    }

    .step2-content-wrapper {
        gap: 24px;
    }

    .step2-title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: -1px;
    }

    .step2-plans-desktop {
        display: none;
    }

    .step2-plans-mobile {
        display: block;
    }

    .step2-carousel-container {
        margin: 0 15px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .step2-carousel-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .step2-carousel-track {
        display: flex;
        gap: 16px;
        width: auto;
        min-width: 100%;
    }

    .step2-carousel-slide {
        width: 70%;
        min-width: 70%;
        flex-shrink: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-snap-align: start;
    }

    .step2-plan-card {
        max-width: 100%;
        padding: 40px 24px 24px;
        width: 100%;
        box-sizing: border-box;
        min-height: 100%;
    }
    .step2-plan-soon {
        font-size: 10px;
        left: -50px;
        top: 13px;
    }

    .step2-plan-name {
        font-size: 20.4px;
    }

    .step2-plan-amount {
        font-size: 42.8px;
    }

    .step2-plan-period {
        font-size: 12.4px;
    }

    .step2-plan-feature p {
        font-size: 12.4px;
    }
}

/* Step 3 - Slider (old step 2) Styles */
.step3-slider-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 10px;
    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;
}

/* Step 2 Slider Styles */
.step2-slider-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin: 55px 0;
}

.step2-slider-labels {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
}

.step2-slider-label {
    flex: 1 0 0;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(52, 54, 64, 0.64);
    text-align: center;
    margin: 0;
}

.step2-slider-container {
    width: 100%;
    position: relative;
    padding: 0 79px;
}

.step2-slider-track {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
}

.step2-slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    background: #f7d141;
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

.step2-slider-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    cursor: grab;
    z-index: 10;
    left: 9.88%;
    transition: left 0.3s ease;
    filter: drop-shadow(0 4px 24px rgba(211, 169, 12, 0.60));
}

.step2-slider-handle:active {
    cursor: grabbing;
}

.step2-slider-handle-inner {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(52, 54, 64, 0.1) 0%, rgba(52, 54, 64, 0.05) 100%);
    border-radius: 50%;
    position: relative;
}

.step2-slider-handle-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: #F7D141;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 1);
}

.step2-slider-dots {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0;
    margin: 0 -16px;
}

.step2-slider-dot {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    pointer-events: auto;
    position: relative;
}

.step2-slider-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .64);
    border-radius: 50%;
    border: 1px dashed rgba(0, 0, 0, 0.16);
}

.step2-slider-values {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
}

.step2-slider-value {
    flex: 1 0 0;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(52, 54, 64, 0.64);
    text-align: center;
    margin: 0;
    transition: all 0.3s ease;
}

.step2-slider-value-active {
    font-weight: 600;
    font-size: 18px;
    color: #343640;
}

.step2-slider-arrows {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.step2-slider-arrow {
    flex: 1 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step2-slider-arrow-active {
    opacity: 1;
}

.step2-slider-arrow svg {
    width: 24px;
    height: 24px;
}

.step2-result-card {
    position: relative;
    background: white;
    border: 2px solid #70d770;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0px 4px 40px 0px rgba(27, 178, 67, 0.16);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 400px;
    margin-top: -22px;
}

.step2-result-title {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #343640;
    text-align: center;
    margin: 0;
}

.step2-result-amount {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -2px;
    background: linear-gradient(148.39deg, #70d770 0%, #248024 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}
.step2-result-subtext{
    color: #343640;
    text-align: center;
    font-family: 'Parkinsans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.step2-result-badge {
    position: absolute;
    right: 12%;
    top: 59px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.step2-result-badge img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.step2-result-badge span {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.5px;
    color: #ee700b;
}

/* 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-slider-section {
        margin: 20px 0;
    }

    .step2-slider-labels {
        /*padding: 0 36px;*/
    }

    .step2-slider-label {
        font-size: 12px;
        line-height: 15px;
    }

    .step2-slider-container {
        padding: 0 33px;
    }

    .step2-slider-values {
        /*padding: 0 36px;*/
    }

    .step2-slider-value {
        font-size: 16px;
    }

    .step2-slider-value-active {
        font-size: 18px;
    }

    .step2-slider-arrows {
        /*padding: 0 36px;*/
    }

    .step2-result-card {
        width: 100%;
        max-width: 100%;
    }

    .step2-result-badge {
        top: 60px;
    }

    .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;
    width: 100%;
}

.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-buttons-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

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

.step-4-talk-to-agent-button {
    background: white;
    border: 0.5px solid rgba(0, 0, 0, 0.4);
    border-radius: 999px;
    padding: 16px 10px;
    height: auto;
    width: 146.5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Parkinsans', 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.8);
    letter-spacing: -0.28px;
}

.step-4-talk-to-agent-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.6);
}

.step-4-talk-to-agent-button:active {
    background-color: rgba(0, 0, 0, 0.1);
}

.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;
        width: 100%;
    }

    /* 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;
    }

    /* Buttons Wrapper Mobile */
    .step-4-buttons-wrapper-mobile {
        display: flex;
        gap: 8px;
        align-items: center;
        width: 100%;
    }

    /* Subscribe Button Mobile */
    .step-4-subscribe-button-mobile {
        background: #f7d141;
        border: none;
        border-radius: 999px;
        padding: 16px 16px;
        flex: 1 0 0;
        display: flex;
        align-items: center;
        min-width: 0;
        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);
    }

    .step-4-talk-to-agent-button-mobile {
        background: white;
        border: 0.5px solid rgba(0, 0, 0, 0.4);
        border-radius: 999px;
        padding: 16px 10px;
        height: auto;
        width: 146.5px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
        font-family: 'Parkinsans', 'Inter', Arial, sans-serif;
        font-weight: 600;
        font-size: 14px;
        line-height: 24px;
        color: rgba(0, 0, 0, 0.8);
        letter-spacing: -0.28px;
    }

    .step-4-talk-to-agent-button-mobile:hover {
        background-color: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.6);
    }

    .step-4-talk-to-agent-button-mobile:active {
        background-color: rgba(0, 0, 0, 0.1);
    }

    /* 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 */
/* Step 4 - Address Information Styles */
.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: 80px 120px;
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    display: block;
}

.step4-container {
    display: none;
}

.step4-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

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

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

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

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

.step4-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;
}

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

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

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

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

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

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

.step4-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;
}

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

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

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

.step4-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%);
}

.step4-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;
}

.step4-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;
}

.step4-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;
}

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

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

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

.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;
    opacity: 0.24;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .step4-wrapper.active .step4-container {
        padding: 30px 16px 80px;
        border-radius: 40px 40px 0 0;
    }

    .step4-content-wrapper {
        gap: 56px;
    }

    .step4-title {
        font-size: 32px;
        line-height: 34px;
        letter-spacing: -2px;
    }

    .step4-subtitle {
        font-size: 13px;
        line-height: 18px;
    }

    .step4-form {
        gap: 56px;
    }

    .step4-disabled-fields {
        flex-direction: column;
    }
}

.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 25px;
    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;
    }
}

/* Step 5: Contact Form Styles */
.step5-wrapper.active .step5-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;
}

.step5-container {
    display: none;
}

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

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

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

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

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

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

.step5-form-field {
    width: 100%;
}

.step5-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;
}

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

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

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

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

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

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

.step5-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;
}

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

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

.step5-select {
    width: 100%;
    height: 100%;
    padding: 0;
    padding-right: 40px;
    border: none;
    background: transparent;
    font-family: 'Parkinsans', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    outline: none;
}

.step5-select option {
    color: #343640;
    background: white;
    padding: 12px 20px;
}

.step5-select:focus {
    outline: none;
}

.step5-select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(52, 54, 64, 0.64);
    transition: color 0.3s ease;
}

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

.step5-select:invalid {
    color: rgba(52, 54, 64, 0.64);
}

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

.step5-submit-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;
    height: 56px;
    min-width: 178px;
}

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

.step5-submit-button:active:not(:disabled) {
    transform: translateY(0);
}

.step5-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.step5-submit-button span {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: #000000;
}

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

.step5-note {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.step5-note-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.step5-note-text {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #343640;
    margin: 0;
}

.step5-note-bold {
    font-weight: 600;
}

/* Decorative elements */
.step5-decoration-crown {
    position: absolute;
    bottom: -220px;
    right: -160px;
    width: 400px;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.24;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-30deg);
}

.step5-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 5: Mobile Responsive */
@media (max-width: 768px) {
    .step5-wrapper.active .step5-container {
        padding: 40px 16px;
        border-radius: 40px 40px 0 0;
    }

    .step5-content-wrapper {
        gap: 24px;
    }

    .step5-title {
        font-size: 32px;
        line-height: 34px;
    }

    .step5-subtitle {
        font-size: 13px;
        line-height: 18px;
    }

    .step5-form {
        gap: 24px;
    }

    .step5-form-fields {
        gap: 16px;
    }

    .step5-input-wrapper {
        height: 80px;
        padding: 20px;
    }

    .step5-submit-button {
        width: 178px;
        height: 56px;
    }

    .step5-decoration-crown {
        width: 240px;
        height: 240px;
        bottom: -128px;
        right: -180px;
    }

    .step5-decoration-star {
        width: 120px;
        height: 120px;
        bottom: -46px;
        left: calc(50% - 60px);
    }
}

/* Step 6: Contact Form Success Styles */
.step6-wrapper.active .step6-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;
}

.step6-container {
    display: none;
}

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

.step6-success-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.step6-checkmark-badge {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step6-checkmark-badge svg {
    width: 100%;
    height: 100%;
}

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

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

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

.step6-homepage-button {
    border: 0.5px solid rgba(0, 0, 0, 0.4);
    background: transparent;
    color: #000000;
    padding: 8px 24px;
    border-radius: 999px;
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step6-homepage-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.6);
}

.step6-homepage-button:active {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Decorative elements */
.step6-decoration-crown {
    position: absolute;
    bottom: -220px;
    right: -160px;
    width: 400px;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.24;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-30deg);
}

.step6-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 6: Mobile Responsive */
@media (max-width: 768px) {
    .step6-wrapper.active .step6-container {
        padding: 40px 16px;
        border-radius: 40px 40px 0 0;
    }

    .step6-content-wrapper {
        gap: 24px;
    }

    .step6-success-content {
        gap: 24px;
    }

    .step6-checkmark-badge {
        width: 80px;
        height: 80px;
    }

    .step6-title {
        font-size: 32px;
        line-height: 34px;
    }

    .step6-subtitle {
        font-size: 13px;
        line-height: 18px;
    }

    .step6-decoration-crown {
        width: 240px;
        height: 240px;
        bottom: -128px;
        right: -180px;
    }

    .step6-decoration-star {
        width: 120px;
        height: 120px;
        bottom: -46px;
        left: calc(50% - 60px);
    }
}

/* ========================================
   Step 7: Membership Benefits
   ======================================== */

.step7-wrapper.active .step7-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;
}

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

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

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

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

/* Cards carousel viewport */
.step7-cards-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.step7-carousel-shell {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.step7-cards-track {
    display: flex;
    gap: 8px;
    transition: transform 0.4s ease;
    cursor: grab;
}

.step7-cards-track.dragging {
    transition: none;
    cursor: grabbing;
}

.step7-card {
    width: 320px;
    height: 396px;
    flex: 0 0 320px;
    background: white;
    border: 0.5px solid rgba(161, 82, 0, 0.16);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0px 0px 80px 0px rgba(218, 111, 0, 0.16);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease, border-color 0.3s ease;
}

.step7-card-image {
    width: 100%;
    aspect-ratio: 480 / 240;
    border: 12px solid white;
    border-radius: 32px;
    overflow: hidden;
    background: #d9d9d9;
    flex-shrink: 0;
}

.step7-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.step7-card-body {
    padding: 8px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.step7-card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step7-card-title {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin: 0;
}

.step7-card-desc {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #343640;
    margin: 0;
}

.step7-card-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step7-card-checks li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.step7-check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.step7-card-checks li span {
    font-family: 'Parkinsans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

/* Dot indicators */
.step7-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.step7-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition: all 0.3s ease;
}

.step7-dot.active {
    background: #000000;
    width: 24px;
    border-radius: 4px;
}

/* Continue button */
.step7-continue-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.step7-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;
    width: 100%;
    max-width: 400px;
}

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

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

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

.step7-nav {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(161, 82, 0, 0.16);
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.step7-nav:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.step7-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Decorative elements */
.step7-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;
}

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

.step7-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;
}

/* Desktop: centered card with side previews + nav buttons */
@media (min-width: 769px) {
    .step7-wrapper.active .step7-container {
        padding: 80px 64px 40px;
        --step7-fade-bg: #f2f2f2;
    }

    .step7-content-wrapper {
        max-width: 1200px;
    }

    .step7-carousel-shell {
        gap: 20px;
    }

    .step7-cards-viewport {
        max-width: 920px;
        margin: 0 auto;
        height: 720px;
        overflow: hidden;
        position: relative;
        padding-top: 24px;
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0,
            rgba(0, 0, 0, 1) 64px,
            rgba(0, 0, 0, 1) calc(100% - 64px),
            transparent 100%
        );
        mask-image: linear-gradient(
            to right,
            transparent 0,
            rgba(0, 0, 0, 1) 64px,
            rgba(0, 0, 0, 1) calc(100% - 64px),
            transparent 100%
        );
    }

    .step7-cards-track {
        position: relative;
        width: 100%;
        height: 100%;
        cursor: default;
    }

    .step7-card {
        width: 500px;
        height: auto;
        min-height: 560px;
        flex-basis: 500px;
        position: absolute;
        top: 24px;
        left: 50%;
        transform: translateX(-50%) scale(0.92);
        opacity: 0.28;
        filter: blur(2.5px);
        z-index: 1;
    }

    .step7-card.is-active {
        opacity: 1;
        filter: none;
        transform: translateX(-50%) scale(1);
        border-color: #ef8f0e;
        z-index: 3;
    }

    .step7-card.is-prev {
        opacity: 0.18;
        filter: blur(5px);
        transform: translateX(calc(-50% - 380px)) scale(0.88);
        z-index: 2;
    }

    .step7-card.is-next {
        opacity: 0.18;
        filter: blur(5px);
        transform: translateX(calc(-50% + 380px)) scale(0.88);
        z-index: 2;
    }

    .step7-card.is-hidden {
        opacity: 0;
        filter: blur(3px);
        transform: translateX(-50%) scale(0.86);
        z-index: 0;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .step7-wrapper.active .step7-container {
        padding: 60px 40px;
        border-radius: 60px 60px 0 0;
    }

    .step7-title {
        font-size: 40px;
        line-height: 48px;
    }

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

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

/* Mobile responsive */
@media (max-width: 768px) {
    .step7-wrapper.active .step7-container {
        padding: 56px 16px 20px;
        border-radius: 40px 40px 0 0;
    }

    .step7-title {
        font-size: 32px;
        line-height: 34px;
    }

    .step7-carousel-shell {
        gap: 0;
    }

    .step7-nav {
        display: none;
    }

    .step7-card {
        flex: 0 0 calc(100vw - 64px);
        max-width: 320px;
    }

    .step7-continue-button {
        width: 100%;
        max-width: none;
    }

    .step7-decoration-crown {
        width: 240px;
        height: 240px;
        bottom: -128px;
        right: -180px;
    }

    .step7-decoration-star {
        width: 120px;
        height: 120px;
        bottom: -46px;
        left: calc(50% - 60px);
    }
}