.skyforce-voucher-form br {
    display: none;
}

.skyforce-voucher-form p {
    margin: 0;
    padding: 0;
}

.sky-form.skyforce-voucher-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #ffffff;
}

.svf-progress {
    margin-bottom: 80px;
    position: relative;
}

.svf-progress__steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.svf-progress__steps::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 1px;
    background: #cbd5e1;
    z-index: 0;
}

.svf-progress__steps::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    height: 1px;
    background: #0ea5e9;
    width: 0%;
    transition: width 0.4s ease;
    z-index: 1;
}

.svf-progress__line {
    display: none;
}

.svf-progress__fill {
    display: none;
}

.svf-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.svf-progress__step .svf-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #334155;
    display: block;
    transition: background 0.3s ease;
}

.svf-progress__step.is-active .svf-dot {
    background: #0ea5e9;
}

.svf-progress__step.is-completed .svf-dot {
    background: #0ea5e9;
}

.svf-progress__step .svf-title {
    font-size: 16px;
    font-weight: 500;
    color: #334155;
    white-space: nowrap;
    text-align: center;
}

.svf-progress__step:first-child .svf-title {
    text-align: left;
}

.svf-progress__step:last-child .svf-title {
    text-align: right;
}

.step {
    display: none;
}

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

.svf-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.svf-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.svf-grid--2 > .svf-field:last-child:nth-child(odd) {
    grid-column: 2;
}

.svf-field {
    display: block;
}

.svf-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 8px;
}

.svf-field input[type="text"],
.svf-field input[type="email"],
.svf-field input[type="tel"],
.svf-field input[type="number"],
.svf-field input[type="date"],
.svf-field select,
.svf-field textarea {
    width: 100%;
    height: 56px;
    padding: 0 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.svf-field textarea {
    height: 120px;
    padding: 16px 20px;
    resize: vertical;
}

.svf-field input::placeholder,
.svf-field textarea::placeholder {
    color: #cbd5e1;
}

.svf-field input:focus,
.svf-field select:focus,
.svf-field textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    background: #ffffff;
}

.svf-field.has-error input,
.svf-field.has-error select,
.svf-field.has-error textarea,
.svf-field.has-error .svf-file__fake {
    border-color: #ef4444;
    background: #fef2f2;
}

.svf-field--file {
    position: relative;
}

.svf-file {
    position: relative;
    display: block;
}

.svf-field--file input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
    top: 0;
    left: 0;
}

.svf-file__fake {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    width: 550px;
    max-width: 100%;
    padding: 0 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    gap: 12px;
    box-sizing: border-box;
}

.svf-file__name {
    font-size: 15px;
    color: #cbd5e1;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.svf-file__btn {
    padding: 12px 28px;
    background: #0ea5e9;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.svf-field--file .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.svf-field--file input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100% !important;
    height: 100%;
    cursor: pointer;
    z-index: 10;
    top: 0;
    left: 0;
    max-width: none !important;
}

.svf-options {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.svf-option {
    display: flex;
    align-items: center;
    gap: 12px;
}

.svf-option .wpcf7-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.svf-option input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    accent-color: #0ea5e9;
}

.svf-option label,
.svf-option .wpcf7-list-item-label {
    font-size: 15px;
    color: #1e293b;
    cursor: pointer;
    flex: 1;
    margin: 0;
}

.svf-option.has-error input[type="checkbox"],
.checkbox-expand.has-error > input[type="checkbox"],
.checkbox-expand.has-error .wpcf7-list-item input[type="checkbox"] {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

.checkbox-expand .svf-expand {
    display: none;
    margin-top: 16px;
    padding-left: 36px;
}

.svf-field--select select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.svf-nav {
    display: flex;
    margin-top: 60px;
    gap: 12px;
    align-items: center;
}

.svf-nav p {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
    width: 100%;
    align-items: center;
}

.svf-nav p br {
    display: none;
}

.svf-nav--step1 {
    justify-content: flex-end;
}

.svf-nav--step1 p {
    justify-content: flex-end;
}

.svf-nav--between {
    justify-content: space-between;
}

.svf-nav--between p {
    justify-content: space-between;
    width: 100%;
}

.svf-nav--between .svf-submit {
    margin-left: auto;
}

.svf-nav--between .wpcf7-spinner {
    margin-left: 0;
}

.svf-nav--submit {
    justify-content: flex-start;
}

.svf-nav--submit p {
    justify-content: flex-start;
    width: 100%;
}

.svf-nav--submit .svf-submit {
    margin-left: auto;
}

.svf-nav--submit .wpcf7-spinner {
    margin-left: 0;
}

.svf-nav--start {
    justify-content: flex-start;
}

.svf-nav--start p {
    justify-content: flex-start;
}

.svf-nav-btn {
    width: 56px;
    height: 56px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.svf-nav-btn:hover:not(:disabled) {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.svf-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.svf-nav-btn--next::after {
    content: "→";
    font-size: 28px;
    color: #1e293b;
    line-height: 1;
}

.svf-nav-btn--prev::after {
    content: "←";
    font-size: 28px;
    color: #1e293b;
    line-height: 1;
}

.svf-submit {
    padding: 16px 40px;
    height: 56px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.svf-submit:hover {
    background: #0284c7;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.skyforce-voucher-form .wpcf7-not-valid-tip {
    font-size: 13px;
    color: #ef4444;
    margin-top: 6px;
    display: block;
}

.skyforce-voucher-form .wpcf7-response-output {
    margin: 30px 0 0 0;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 15px;
}

.skyforce-voucher-form .wpcf7-mail-sent-ok {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.skyforce-voucher-form .wpcf7-validation-errors,
.skyforce-voucher-form .wpcf7-mail-sent-ng {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

@media (max-width: 768px) {
    .sky-form.skyforce-voucher-form {
        padding: 30px 0px;
        overflow-x: hidden;
    }

    .svf-progress {
        margin-bottom: 50px;
        padding: 0 10px;
    }

    .svf-progress__steps {
        padding: 0 5px;
    }

    .svf-progress__steps::before {
        left: 10px;
        right: 10px;
		top: 7px;
    }

    .svf-progress__steps::after {
        left: 10px;
    }

    .svf-progress__step {
        gap: 12px;
        padding: 0;
        min-width: 0;
    }

    .svf-progress__step:first-child {
        padding-left: 0;
    }

    .svf-progress__step:last-child {
        padding-right: 0;
    }

    .svf-progress__step .svf-dot {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .svf-progress__step .svf-title {
        font-size: 11px;
        font-weight: 500;
        text-align: center;
        max-width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .svf-grid {
        display: block !important;
        gap: 0;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
    }

    .svf-grid--2 > .svf-field:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .svf-field {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 0 16px 0 !important;
        padding: 0 !important;
    }

    .svf-field .wpcf7-form-control-wrap {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .svf-field input[type="text"],
    .svf-field input[type="email"],
    .svf-field input[type="tel"],
    .svf-field input[type="number"],
    .svf-field input[type="date"],
    .svf-field select,
    .svf-field textarea {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        font-size: 16px !important;
        padding: 0 16px !important;
        height: 56px !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    .svf-field input[type="date"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .svf-field input[type="date"]::-webkit-calendar-picker-indicator {
        margin-left: 0;
        margin-right: -8px;
    }

    .svf-file__fake {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 56px !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 16px !important;
    }

    .svf-file__btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .svf-nav {
        margin-top: 40px;
        gap: 10px;
    }

    .svf-nav-btn {
        width: 48px;
        height: 48px;
    }

    .svf-nav-btn--next::after,
    .svf-nav-btn--prev::after {
        font-size: 24px;
    }

    .svf-submit {
        padding: 14px 30px;
        height: 48px;
        font-size: 14px;
    }

    .svf-option {
        align-items: flex-start;
        gap: 10px;
    }

    .svf-option input[type="checkbox"] {
        margin-top: 2px;
    }

    .svf-option label,
    .svf-option .wpcf7-list-item-label {
        font-size: 14px;
        line-height: 1.5;
    }

    .checkbox-expand .svf-expand {
        padding-left: 34px;
    }
}

@media (max-width: 480px) {
    .sky-form.skyforce-voucher-form {
        padding: 20px 0px;
    }

    .svf-progress {
        padding: 0 5px;
    }

    .svf-progress__step .svf-title {
        font-size: 10px;
        max-width: 60px;
    }

    .svf-progress__step .svf-dot {
        width: 14px;
        height: 14px;
    }

    .svf-field input[type="text"],
    .svf-field input[type="email"],
    .svf-field input[type="tel"],
    .svf-field input[type="number"],
    .svf-field input[type="date"],
    .svf-field select,
    .svf-field textarea {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 14px !important;
        height: 52px !important;
    }

    .svf-field input[type="date"] {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .svf-file__fake {
        width: 100% !important;
        max-width: 100% !important;
        height: 52px !important;
        padding: 0 14px !important;
    }

    .svf-file__btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .svf-nav-btn {
        width: 44px;
        height: 44px;
    }

    .svf-submit {
        padding: 12px 24px;
        height: 44px;
        font-size: 13px;
    }
}