.vpf-shell {
    --vpf-navy: #101c36;
    --vpf-blue: #2457e6;
    --vpf-blue-dark: #1944c3;
    --vpf-blue-soft: #eef4ff;
    --vpf-orange: #f97316;
    --vpf-text: #33415c;
    --vpf-muted: #6a768c;
    --vpf-border: #d9e2ef;
    --vpf-surface: #ffffff;
    --vpf-danger: #b42318;
    --vpf-success: #067647;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    color: var(--vpf-text);
    font-family: inherit;
    box-sizing: border-box;
}

.vpf-shell *,
.vpf-shell *::before,
.vpf-shell *::after {
    box-sizing: border-box;
}

.vpf-shell .vpf-card {
    position: relative;
    overflow: hidden;
    background: var(--vpf-surface) !important;
    border: 1px solid var(--vpf-border) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 55px rgba(25, 52, 103, 0.12) !important;
    padding: clamp(24px, 4vw, 42px) !important;
}

.vpf-shell .vpf-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--vpf-blue), #4680ff 66%, var(--vpf-orange));
}

.vpf-shell .vpf-card__header {
    margin: 0 0 28px;
}

.vpf-shell .vpf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 13px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff3e8;
    color: #c2410c;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vpf-shell .vpf-card__header h2 {
    margin: 0 0 10px !important;
    padding: 0 !important;
    color: var(--vpf-navy) !important;
    font-size: clamp(27px, 4vw, 38px) !important;
    font-weight: 800 !important;
    line-height: 1.14 !important;
    letter-spacing: -0.025em !important;
}

.vpf-shell .vpf-card__header p {
    margin: 0 !important;
    color: var(--vpf-muted) !important;
    font-size: 15.5px !important;
    line-height: 1.65 !important;
}

.vpf-shell .vpf-progress {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 0 32px;
}

.vpf-shell .vpf-progress__line {
    position: absolute;
    top: 17px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: #dce4f3;
    overflow: hidden;
}

.vpf-shell .vpf-progress__line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--vpf-blue);
    transition: width 0.25s ease;
}

.vpf-shell .vpf-progress__step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #8b96a8;
    text-align: center;
}

.vpf-shell .vpf-progress__number {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 2px solid #dce4f3;
    border-radius: 50%;
    background: #fff;
    color: #7a879b;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.2s ease;
}

.vpf-shell .vpf-progress__label {
    font-size: 12px;
    font-weight: 750;
}

.vpf-shell .vpf-progress__step.is-active,
.vpf-shell .vpf-progress__step.is-complete {
    color: var(--vpf-blue);
}

.vpf-shell .vpf-progress__step.is-active .vpf-progress__number,
.vpf-shell .vpf-progress__step.is-complete .vpf-progress__number {
    border-color: var(--vpf-blue);
    background: var(--vpf-blue);
    color: #fff;
    box-shadow: 0 5px 16px rgba(36, 87, 230, 0.24);
}

.vpf-shell .vpf-form {
    margin: 0 !important;
    padding: 0 !important;
}

.vpf-shell .vpf-step[hidden] {
    display: none !important;
}

.vpf-shell .vpf-step.is-active {
    animation: vpfFadeIn 0.25s ease;
}

@keyframes vpfFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.vpf-shell .vpf-grid {
    display: grid;
    gap: 19px;
}

.vpf-shell .vpf-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vpf-shell .vpf-field {
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.vpf-shell .vpf-field--wide {
    margin-top: 19px !important;
}

.vpf-shell .vpf-field > label,
.vpf-shell .vpf-field > .vpf-label {
    display: block !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: var(--vpf-navy) !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    line-height: 1.35 !important;
}

.vpf-shell .vpf-field > label > span:not(.vpf-optional) {
    color: var(--vpf-orange) !important;
}

.vpf-shell .vpf-optional {
    display: inline-flex;
    margin-left: 7px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #edf1f7;
    color: #667085;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    vertical-align: middle;
}

.vpf-shell .vpf-form input[type="text"],
.vpf-shell .vpf-form input[type="email"],
.vpf-shell .vpf-form input[type="tel"],
.vpf-shell .vpf-form input[type="url"],
.vpf-shell .vpf-form select,
.vpf-shell .vpf-form textarea {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 50px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    border: 1px solid #cfd9e8 !important;
    border-radius: 10px !important;
    outline: none !important;
    background: #fff !important;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03) !important;
    color: var(--vpf-navy) !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease !important;
    appearance: none;
    -webkit-appearance: none;
}

.vpf-shell .vpf-form select {
    padding-right: 42px !important;
    background-image: linear-gradient(45deg, transparent 50%, #667085 50%), linear-gradient(135deg, #667085 50%, transparent 50%) !important;
    background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px !important;
    background-size: 5px 5px, 5px 5px !important;
    background-repeat: no-repeat !important;
}

.vpf-shell .vpf-form textarea {
    min-height: 104px !important;
    height: auto !important;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    resize: vertical !important;
}

.vpf-shell .vpf-form input::placeholder,
.vpf-shell .vpf-form textarea::placeholder {
    color: #98a2b3 !important;
    opacity: 1 !important;
}

.vpf-shell .vpf-form input:focus,
.vpf-shell .vpf-form select:focus,
.vpf-shell .vpf-form textarea:focus {
    border-color: var(--vpf-blue) !important;
    box-shadow: 0 0 0 4px rgba(36, 87, 230, 0.11) !important;
}

.vpf-shell .vpf-field.has-error input,
.vpf-shell .vpf-field.has-error select,
.vpf-shell .vpf-field.has-error textarea,
.vpf-shell .vpf-form input.has-error,
.vpf-shell .vpf-form select.has-error,
.vpf-shell .vpf-form textarea.has-error {
    border-color: #f04438 !important;
    box-shadow: 0 0 0 4px rgba(240, 68, 56, 0.08) !important;
}

.vpf-shell .vpf-help,
.vpf-shell .vpf-error {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.45;
}

.vpf-shell .vpf-help {
    color: var(--vpf-muted);
}

.vpf-shell .vpf-help--secure {
    color: #475467;
}

.vpf-shell .vpf-error {
    color: var(--vpf-danger);
    font-weight: 650;
}

.vpf-shell .vpf-upload {
    position: relative;
    display: flex !important;
    min-height: 164px;
    margin: 0 !important;
    padding: 24px !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1.5px dashed #aebbd0 !important;
    border-radius: 13px !important;
    background: #f9fbff !important;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.vpf-shell .vpf-upload:hover,
.vpf-shell .vpf-upload.is-dragging {
    border-color: var(--vpf-blue) !important;
    background: var(--vpf-blue-soft) !important;
}

.vpf-shell .vpf-upload.is-dragging {
    transform: scale(1.006);
}

.vpf-shell .vpf-upload input[type="file"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.vpf-shell .vpf-upload__icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e8efff;
    color: var(--vpf-blue);
    font-size: 25px;
    font-weight: 800;
}

.vpf-shell .vpf-upload__title {
    color: var(--vpf-navy);
    font-size: 15px;
    font-weight: 800;
}

.vpf-shell .vpf-upload__meta {
    color: var(--vpf-muted);
    font-size: 12px;
    font-weight: 500;
}

.vpf-shell .vpf-upload__selected {
    display: none;
    max-width: 100%;
    margin-top: 4px;
    padding: 6px 10px;
    overflow: hidden;
    border-radius: 7px;
    background: #dcfce7;
    color: #166534;
    font-size: 12px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vpf-shell .vpf-upload.has-file .vpf-upload__selected {
    display: block;
}

.vpf-shell .vpf-consent {
    display: flex !important;
    gap: 11px;
    align-items: flex-start;
    margin: 21px 0 0 !important;
    padding: 14px 15px !important;
    border: 1px solid var(--vpf-border) !important;
    border-radius: 10px !important;
    background: #fbfcfe !important;
    color: #46536b !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    cursor: pointer;
}

.vpf-shell .vpf-consent.has-error {
    border-color: #f04438 !important;
    background: #fff6f5 !important;
}

.vpf-shell .vpf-consent input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    margin: 1px 0 0 !important;
    accent-color: var(--vpf-blue);
}

.vpf-shell .vpf-consent strong {
    color: var(--vpf-orange);
}

.vpf-shell .vpf-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin: 20px 0 0;
}

.vpf-shell .vpf-trust-strip span {
    display: flex;
    gap: 6px;
    align-items: center;
    min-height: 44px;
    padding: 9px 10px;
    border-radius: 9px;
    background: #f3f7ff;
    color: #40506d;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.35;
}

.vpf-shell .vpf-trust-strip b {
    color: var(--vpf-success);
}

.vpf-shell .vpf-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.vpf-shell .vpf-actions--end {
    justify-content: flex-end;
}

.vpf-shell .vpf-button,
.vpf-shell button.vpf-button,
.vpf-shell input[type="submit"].vpf-button {
    display: inline-flex !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 0 21px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    cursor: pointer !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.vpf-shell .vpf-button:hover {
    transform: translateY(-1px);
}

.vpf-shell .vpf-button--primary {
    background: linear-gradient(135deg, var(--vpf-blue), #3268f0) !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(36, 87, 230, 0.22) !important;
}

.vpf-shell .vpf-button--primary:hover,
.vpf-shell .vpf-button--primary:focus {
    background: linear-gradient(135deg, var(--vpf-blue-dark), var(--vpf-blue)) !important;
    color: #fff !important;
}

.vpf-shell .vpf-button--secondary {
    border-color: #cdd7e6 !important;
    background: #fff !important;
    color: #40506d !important;
}

.vpf-shell .vpf-button--secondary:hover,
.vpf-shell .vpf-button--secondary:focus {
    border-color: #aebbd0 !important;
    background: #f8fafc !important;
    color: var(--vpf-navy) !important;
}

.vpf-shell .vpf-submit {
    flex: 1;
    max-width: 430px;
}

.vpf-shell .vpf-button:disabled,
.vpf-shell .vpf-button.is-loading {
    cursor: wait !important;
    opacity: 0.78;
    transform: none !important;
}

.vpf-shell .vpf-spinner {
    display: none;
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255,255,255,0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: vpfSpin 0.7s linear infinite;
}

.vpf-shell .vpf-submit.is-loading .vpf-spinner {
    display: inline-block;
}

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

.vpf-shell .vpf-alert {
    margin: 0 0 20px !important;
    padding: 13px 15px !important;
    border: 1px solid transparent !important;
    border-radius: 9px !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    line-height: 1.5 !important;
}

.vpf-shell .vpf-alert.is-error {
    border-color: #fecdca !important;
    background: #fff6f5 !important;
    color: var(--vpf-danger) !important;
}

.vpf-shell .vpf-alert.is-success {
    border-color: #abefc6 !important;
    background: #ecfdf3 !important;
    color: var(--vpf-success) !important;
}

.vpf-shell .vpf-footer-note {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #edf1f7;
    color: var(--vpf-muted);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.vpf-shell .vpf-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 680px) {
    .vpf-shell .vpf-card {
        padding: 25px 18px !important;
        border-radius: 15px !important;
    }

    .vpf-shell .vpf-grid--two {
        grid-template-columns: 1fr;
    }

    .vpf-shell .vpf-field--wide {
        margin-top: 18px !important;
    }

    .vpf-shell .vpf-trust-strip {
        grid-template-columns: 1fr;
    }

    .vpf-shell .vpf-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .vpf-shell .vpf-actions--end {
        flex-direction: column;
    }

    .vpf-shell .vpf-button,
    .vpf-shell .vpf-submit {
        width: 100% !important;
        max-width: none !important;
    }

    .vpf-shell .vpf-progress__label {
        font-size: 11px;
    }
}
