.itksf-shell,
.itksf-shell * {
    box-sizing: border-box;
}

.itksf-shell {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    color: var(--itksf-text, #152033);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    overflow-wrap: anywhere;
    text-align: start;
}

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

.itksf-form {
    width: 100%;
    margin: 0;
    padding: clamp(20px, 4vw, 44px);
    border: 1px solid #e4e8ef;
    border-radius: var(--itksf-radius, 18px);
    background: var(--itksf-surface, #ffffff);
    box-shadow: 0 18px 55px rgba(11, 23, 41, 0.09);
}

.itksf-progress {
    margin: 0 0 clamp(26px, 4vw, 42px);
}

.itksf-progress__track {
    position: relative;
    height: 5px;
    overflow: hidden;
    border-radius: 99px;
    background: #e8ecf2;
}

.itksf-progress__bar {
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    display: block;
    border-radius: inherit;
    background: var(--itksf-primary, #ff5f1f);
    transition: width 300ms ease;
}

.itksf-progress__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.itksf-progress__steps li {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    color: var(--itksf-muted, #667085);
    font-size: 13px;
}

.itksf-progress__steps li > span {
    display: inline-grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border: 1px solid #d6dce6;
    border-radius: 50%;
    background: #ffffff;
    color: var(--itksf-navy, #071d3a);
    font-weight: 800;
}

.itksf-progress__steps li b {
    min-width: 0;
    overflow: hidden;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.itksf-progress__steps li.is-active {
    color: var(--itksf-navy, #071d3a);
}

.itksf-progress__steps li.is-active > span,
.itksf-progress__steps li.is-complete > span {
    border-color: var(--itksf-primary, #ff5f1f);
    background: var(--itksf-primary, #ff5f1f);
    color: #ffffff;
}

.itksf-step {
    width: 100%;
    min-width: 0;
    opacity: 0;
    transform: translateY(8px);
}

.itksf-step.is-active {
    opacity: 1;
    transform: none;
    transition: opacity 220ms ease, transform 220ms ease;
}

.itksf-step__header {
    margin: 0 0 25px;
}

.itksf-step__header > span {
    display: block;
    margin-bottom: 4px;
    color: var(--itksf-primary, #ff5f1f);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.itksf-step__header h2,
.itksf-heading h3,
.itksf-success h3 {
    margin: 0;
    color: var(--itksf-navy, #071d3a);
    font-family: inherit;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.itksf-step__header h2 {
    font-size: clamp(23px, 3vw, 32px);
}

.itksf-grid {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px 18px;
}

.itksf-col-25 { grid-column: span 3; }
.itksf-col-33 { grid-column: span 4; }
.itksf-col-50 { grid-column: span 6; }
.itksf-col-66 { grid-column: span 8; }
.itksf-col-75 { grid-column: span 9; }
.itksf-col-100 { grid-column: 1 / -1; }

.itksf-captcha {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 22px;
    overflow: hidden;
}

.itksf-captcha > div {
    max-width: 100%;
}

.itksf-container {
    display: grid;
    min-width: 0;
    grid-column: 1 / -1;
    gap: 22px 18px;
}

.itksf-container--columns-1 { grid-template-columns: minmax(0, 1fr); }
.itksf-container--columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.itksf-container--columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.itksf-container--columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.itksf-container:not(.itksf-container--smart) > * {
    grid-column: auto;
}

.itksf-container--smart {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.itksf-container--smart > .itksf-col-25 { grid-column: span 3; }
.itksf-container--smart > .itksf-col-33 { grid-column: span 4; }
.itksf-container--smart > .itksf-col-50 { grid-column: span 6; }
.itksf-container--smart > .itksf-col-66 { grid-column: span 8; }
.itksf-container--smart > .itksf-col-75 { grid-column: span 9; }
.itksf-container--smart > .itksf-col-100 { grid-column: 1 / -1; }

.itksf-container--stack {
    grid-template-columns: minmax(0, 1fr) !important;
}

.itksf-container--stack > .itksf-field,
.itksf-container--stack > .itksf-heading,
.itksf-container--stack > .itksf-html,
.itksf-container--stack > .itksf-divider {
    grid-column: 1 / -1 !important;
}

.itksf-row-start.itksf-col-25 { grid-column: 1 / span 3 !important; }
.itksf-row-start.itksf-col-33 { grid-column: 1 / span 4 !important; }
.itksf-row-start.itksf-col-50 { grid-column: 1 / span 6 !important; }
.itksf-row-start.itksf-col-66 { grid-column: 1 / span 8 !important; }
.itksf-row-start.itksf-col-75 { grid-column: 1 / span 9 !important; }
.itksf-row-start.itksf-col-100 { grid-column: 1 / -1 !important; }

.itksf-field,
.itksf-heading,
.itksf-html,
.itksf-divider {
    min-width: 0;
    margin: 0;
}

.itksf-label,
.itksf-choice-group > legend {
    display: block;
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
    border: 0;
    color: var(--itksf-navy, #071d3a);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.itksf-labels-floating .itksf-field > .itksf-label {
    position: relative;
    z-index: 2;
    display: table;
    width: auto;
    margin: 0;
    margin-block-end: -8px;
    margin-inline-start: 10px;
    padding: 0 5px;
    background: var(--itksf-surface, #ffffff);
    font-size: 12px;
}

.itksf-labels-hidden .itksf-field > .itksf-label,
.itksf-labels-hidden .itksf-choice-group > legend {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.itksf-layout-compact .itksf-form {
    padding: clamp(18px, 3vw, 30px);
}

.itksf-layout-compact .itksf-grid {
    gap: 16px 14px;
}

.itksf-layout-compact .itksf-control {
    min-height: 46px;
    padding-block: 10px;
}

.itksf-required {
    margin-inline-start: 4px;
    color: var(--itksf-primary, #ff5f1f);
}

.itksf-control,
.itksf-address .itksf-control {
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 50px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #cfd6e1;
    border-radius: 12px;
    outline: 0;
    background: #ffffff;
    box-shadow: none;
    color: var(--itksf-text, #152033);
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.itksf-control::placeholder {
    color: #8a94a5;
    opacity: 1;
}

.itksf-control:hover {
    border-color: #aeb8c7;
}

.itksf-control:focus,
.itksf-shell input:focus-visible,
.itksf-shell button:focus-visible,
.itksf-shell select:focus-visible,
.itksf-shell textarea:focus-visible,
.itksf-shell canvas:focus-visible {
    border-color: var(--itksf-primary, #ff5f1f);
    outline: 3px solid rgba(255, 107, 0, 0.22);
    outline-offset: 2px;
    box-shadow: 0 0 0 1px var(--itksf-primary, #ff5f1f);
}

.itksf-control:disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

.itksf-shell textarea.itksf-control {
    min-height: 132px;
    resize: vertical;
}

.itksf-shell textarea.itksf-control[rows="1"] {
    height: 50px;
    min-height: 50px;
}

.itksf-shell select.itksf-control {
    cursor: pointer;
}

.itksf-help {
    margin-top: 7px;
    color: var(--itksf-muted, #667085);
    font-size: 13px;
    line-height: 1.5;
}

.itksf-error {
    min-height: 0;
    margin-top: 0;
    color: #b42318;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
}

.itksf-field.has-error .itksf-error {
    min-height: 18px;
    margin-top: 7px;
}

.itksf-field.has-error .itksf-control,
.itksf-field.has-error .itksf-upload,
.itksf-field.has-error .itksf-signature {
    border-color: #b42318;
}

.itksf-choice-group {
    display: grid;
    min-width: 0;
    gap: 9px;
    margin: 0;
    padding: 0;
    border: 0;
}

.itksf-choice,
.itksf-consent {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    padding: 12px 13px;
    border: 1px solid #d8dee7;
    border-radius: 12px;
    background: #ffffff;
    color: var(--itksf-text, #152033);
    cursor: pointer;
    font-size: 15px;
    line-height: 1.45;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.itksf-choice:hover,
.itksf-consent:hover {
    border-color: var(--itksf-primary, #ff5f1f);
    background: #fff8f2;
}

.itksf-choice input,
.itksf-consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.itksf-choice__mark {
    position: relative;
    display: inline-grid;
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    place-items: center;
    margin-top: 1px;
    border: 1.5px solid #aeb8c7;
    border-radius: 6px;
    background: #ffffff;
}

.itksf-choice input[type="radio"] + .itksf-choice__mark {
    border-radius: 50%;
}

.itksf-choice input:checked + .itksf-choice__mark,
.itksf-consent input:checked + .itksf-choice__mark {
    border-color: var(--itksf-primary, #ff5f1f);
    background: var(--itksf-primary, #ff5f1f);
}

.itksf-choice input:checked + .itksf-choice__mark::after,
.itksf-consent input:checked + .itksf-choice__mark::after {
    width: 9px;
    height: 5px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    content: "";
    transform: rotate(-45deg) translateY(-1px);
}

.itksf-choice input:focus-visible + .itksf-choice__mark,
.itksf-consent input:focus-visible + .itksf-choice__mark {
    outline: 3px solid rgba(255, 107, 0, 0.22);
    outline-offset: 3px;
}

.itksf-upload {
    display: flex;
    width: 100%;
    min-height: 150px;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border: 1.5px dashed #b8c2d0;
    border-radius: 14px;
    background: #f8fafc;
    color: var(--itksf-text, #152033);
    cursor: pointer;
    flex-direction: column;
    text-align: center;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.itksf-upload:hover,
.itksf-upload.is-dragging {
    border-color: var(--itksf-primary, #ff5f1f);
    background: #fff8f2;
}

.itksf-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.itksf-upload > i {
    margin-bottom: 7px;
    color: var(--itksf-primary, #ff5f1f);
    font-size: 28px;
    line-height: 1;
}

.itksf-upload > strong {
    color: var(--itksf-navy, #071d3a);
    font-size: 15px;
}

.itksf-upload > span {
    max-width: 100%;
    margin-top: 4px;
    color: var(--itksf-muted, #667085);
    font-size: 12px;
}

.itksf-upload > em {
    max-width: 100%;
    margin-top: 9px;
    overflow: hidden;
    color: var(--itksf-primary, #ff5f1f);
    font-size: 13px;
    font-style: normal;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.itksf-signature {
    width: 100%;
    overflow: hidden;
    border: 1px solid #cfd6e1;
    border-radius: 14px;
    background: #ffffff;
}

.itksf-signature canvas {
    display: block;
    max-width: 100%;
    cursor: crosshair;
    touch-action: none;
}

.itksf-signature__typed {
    display: block;
    width: calc(100% - 24px);
    min-height: 44px;
    margin: 0 12px 12px;
    padding: 9px 11px;
    border: 1px solid #d8dee7;
    border-radius: 10px;
    color: var(--itksf-text, #152033);
    font: inherit;
}

.itksf-signature__footer {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-top: 1px solid #e8ebf0;
    background: #f8fafc;
    color: var(--itksf-muted, #667085);
    font-size: 12px;
}

.itksf-signature__footer span {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
}

.itksf-signature__footer button {
    min-height: 34px;
    flex: 0 0 auto;
    padding: 6px 9px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #b42318;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.itksf-address {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.itksf-address label {
    min-width: 0;
}

.itksf-address label:first-child,
.itksf-address label:last-child {
    grid-column: 1 / -1;
}

.itksf-address label > span {
    display: block;
    margin-bottom: 5px;
    color: var(--itksf-muted, #667085);
    font-size: 12px;
    font-weight: 650;
}

.itksf-heading {
    padding-top: 4px;
}

.itksf-heading h3 {
    font-size: clamp(19px, 2.3vw, 24px);
}

.itksf-heading > div,
.itksf-html {
    color: var(--itksf-muted, #667085);
}

.itksf-heading > div {
    margin-top: 6px;
}

.itksf-divider {
    height: 1px;
    background: #e5e9ef;
}

.itksf-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
    margin-top: clamp(28px, 4vw, 42px);
}

.itksf-actions--left { justify-content: flex-start; }
.itksf-actions--center { justify-content: center; }
.itksf-actions--right { justify-content: flex-end; }

.itksf-button--full {
    width: 100%;
}

.itksf-button {
    display: inline-flex;
    min-width: 132px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.itksf-button--primary {
    background: var(--itksf-primary, #ff5f1f);
    box-shadow: 0 9px 22px rgba(255, 107, 0, 0.22);
    color: #ffffff;
}

.itksf-button--primary:hover {
    background: #e04d12;
    color: #ffffff;
}

.itksf-button--secondary {
    border-color: #d5dbe5;
    background: #ffffff;
    color: var(--itksf-navy, #071d3a);
}

.itksf-button--secondary:hover {
    border-color: var(--itksf-primary, #ff5f1f);
    color: var(--itksf-navy, #071d3a);
}

.itksf-button:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.itksf-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 22px;
    padding: 13px 15px;
    border: 1px solid #f2b66d;
    border-radius: 12px;
    background: #fff7ed;
    color: #8f1d13;
    font-size: 14px;
    font-weight: 650;
}

.itksf-success {
    padding: clamp(30px, 6vw, 64px) 20px;
    text-align: center;
}

.itksf-success__icon {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff1e6;
    color: var(--itksf-primary, #ff5f1f);
    font-size: 34px;
}

.itksf-success h3 {
    margin-bottom: 10px;
    font-size: clamp(22px, 3vw, 30px);
}

.itksf-success > div:last-child {
    color: var(--itksf-muted, #667085);
}

.itksf-honeypot {
    position: absolute !important;
    inset-inline-start: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.itksf-shell[dir="rtl"] .bi-arrow-right,
.itksf-shell[dir="rtl"] .bi-arrow-left {
    transform: scaleX(-1);
}

.itksf-admin-notice {
    padding: 15px;
    border-inline-start: 4px solid #ff5f1f;
    background: #fff8f2;
    color: #071d3a;
}

@media (max-width: 780px) {
    .itksf-container--columns-3:not(.itksf-container--smart),
    .itksf-container--columns-4:not(.itksf-container--smart) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .itksf-container--smart > .itksf-col-25,
    .itksf-container--smart > .itksf-col-33 {
        grid-column: span 6;
    }

    .itksf-container--smart > .itksf-col-66,
    .itksf-container--smart > .itksf-col-75 {
        grid-column: 1 / -1;
    }

    .itksf-col-25,
    .itksf-col-33 {
        grid-column: span 6;
    }

    .itksf-col-66,
    .itksf-col-75 {
        grid-column: 1 / -1;
    }

    .itksf-row-start.itksf-col-25,
    .itksf-row-start.itksf-col-33 {
        grid-column: 1 / span 6 !important;
    }

    .itksf-row-start.itksf-col-66,
    .itksf-row-start.itksf-col-75,
    .itksf-row-start.itksf-col-100 {
        grid-column: 1 / -1 !important;
    }

    .itksf-progress__steps li b {
        display: none;
    }

    .itksf-progress__steps {
        grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
    }

    .itksf-progress__steps li {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .itksf-container:not(.itksf-container--smart) {
        grid-template-columns: minmax(0, 1fr);
        gap: 19px;
    }

    .itksf-container--smart {
        grid-template-columns: minmax(0, 1fr);
        gap: 19px;
    }

    .itksf-container--smart > .itksf-col-25,
    .itksf-container--smart > .itksf-col-33,
    .itksf-container--smart > .itksf-col-50,
    .itksf-container--smart > .itksf-col-66,
    .itksf-container--smart > .itksf-col-75,
    .itksf-container--smart > .itksf-col-100 {
        grid-column: 1 / -1;
    }

    .itksf-form {
        padding: 20px 16px;
        border-radius: min(var(--itksf-radius, 18px), 16px);
        box-shadow: 0 10px 30px rgba(11, 23, 41, 0.07);
    }

    .itksf-grid {
        gap: 19px;
    }

    .itksf-col-25,
    .itksf-col-33,
    .itksf-col-50,
    .itksf-col-66,
    .itksf-col-75,
    .itksf-col-100 {
        grid-column: 1 / -1;
    }

    .itksf-row-start.itksf-col-25,
    .itksf-row-start.itksf-col-33,
    .itksf-row-start.itksf-col-50,
    .itksf-row-start.itksf-col-66,
    .itksf-row-start.itksf-col-75,
    .itksf-row-start.itksf-col-100 {
        grid-column: 1 / -1 !important;
    }

    .itksf-step__header {
        margin-bottom: 21px;
    }

    .itksf-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin-top: 28px;
    }

    .itksf-actions .itksf-button:only-child {
        grid-column: 1 / -1;
    }

    .itksf-button {
        width: 100%;
        min-width: 0;
        padding-inline: 12px;
    }

    .itksf-signature__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .itksf-signature__footer button {
        min-width: 44px;
        align-self: flex-end;
    }
}

@media (max-width: 390px) {
    .itksf-form {
        padding-inline: 13px;
    }

    .itksf-address {
        grid-template-columns: 1fr;
    }

    .itksf-address label,
    .itksf-address label:first-child,
    .itksf-address label:last-child {
        grid-column: 1;
    }

    .itksf-actions {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .itksf-shell *,
    .itksf-shell *::before,
    .itksf-shell *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (forced-colors: active) {
    .itksf-button,
    .itksf-choice,
    .itksf-consent,
    .itksf-upload,
    .itksf-signature {
        border: 1px solid ButtonText;
    }
}

.itksf-consent-card {
    width: 100%;
    color: var(--itksf-text, #152033);
}

.itksf-consent-card--compact {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.itksf-consent-card--outlined {
    padding: 14px 15px;
    border: 1px solid #d9dee6;
    border-radius: 10px;
    background: #ffffff;
}

.itksf-consent-card--inline {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.itksf-consent-title {
    margin: 0 0 8px;
    color: var(--itksf-navy, #071d3a);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -.01em;
}

.itksf-consent-card--inline .itksf-consent-title {
    flex: 0 0 auto;
    margin: 2px 0 0;
    white-space: nowrap;
}

.itksf-consent-card .itksf-required {
    color: #b42318;
}

.itksf-consent-card .itksf-consent {
    min-height: 0;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    line-height: 1.55;
}

.itksf-consent-card--inline .itksf-consent {
    flex: 1 1 auto;
    min-width: 0;
}

.itksf-consent-card .itksf-consent:hover {
    border-color: transparent;
    background: transparent;
}

.itksf-consent-card .itksf-choice__mark {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
    margin-top: 1px;
    border-color: #9aa4b2;
    border-radius: 5px;
}

.itksf-consent-card .itksf-consent input:checked + .itksf-choice__mark {
    border-color: var(--itksf-navy, #071d3a);
    background: var(--itksf-navy, #071d3a);
}

.itksf-consent-card .itksf-consent input:focus-visible + .itksf-choice__mark {
    outline: 3px solid rgba(15, 23, 42, .16);
    outline-offset: 3px;
}

.itksf-consent-text {
    min-width: 0;
    padding-top: 0;
    color: #475467;
}

.itksf-consent-text a {
    color: var(--itksf-navy, #071d3a);
    font-weight: 650;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.itksf-consent-text a:hover,
.itksf-consent-text a:focus-visible {
    color: #111827;
}

@media (max-width: 680px) {
    .itksf-consent-card--inline {
        display: block;
    }
    .itksf-consent-card--inline .itksf-consent-title {
        margin: 0 0 8px;
        white-space: normal;
    }
}

.itksf-template-offer .itksf-form {
    padding: clamp(18px, 4vw, 24px);
    border-radius: 18px;
}

.itksf-template-offer .itksf-grid,
.itksf-template-offer .itksf-container {
    gap: 12px;
}

.itksf-template-offer .itksf-control {
    min-height: 44px;
    border-color: #d8d2cd;
    border-radius: 11px;
    font-size: 14px;
}

.itksf-template-offer textarea.itksf-control {
    min-height: 54px;
}

.itksf-template-offer .itksf-offer-heading {
    padding: 0 0 2px;
}

.itksf-template-offer .itksf-offer-heading h3 {
    font-size: clamp(22px, 3vw, 28px);
}

.itksf-template-offer .itksf-offer-heading > div {
    margin-top: 4px;
    font-size: 13px;
}

.itksf-template-offer .itksf-offer-heading > div strong {
    display: block;
    margin-bottom: 2px;
    color: var(--itksf-primary, #ff5f1f);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.itksf-template-offer .itksf-offer-heading > div p {
    margin: 0;
}

.itksf-template-offer .itksf-actions {
    margin-top: 8px;
}

.itksf-template-offer .itksf-button--primary {
    min-height: 47px;
    border-radius: 11px;
    font-weight: 800;
}

.itksf-success--inline {
    margin-bottom: 24px;
}

.itksf-success__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 18px;
    padding: 11px 18px;
    border-radius: 12px;
    background: var(--itksf-primary, #ff5f1f);
    color: #fff !important;
    font-weight: 800;
    text-decoration: none !important;
}

/* SmartForms 3.4 field labels and custom dropdown */
.itksf-field.itksf-field-label-hidden > .itksf-label,
.itksf-field.itksf-field-label-hidden > .itksf-choice-group > legend,
.itksf-field.itksf-field-label-hidden .itksf-consent-title {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}
.itksf-labels-hidden .itksf-field.itksf-field-label-show > .itksf-label,
.itksf-labels-hidden .itksf-field.itksf-field-label-show > .itksf-choice-group > legend,
.itksf-labels-hidden .itksf-field.itksf-field-label-show .itksf-consent-title {
    position: static;
    width: auto;
    height: auto;
    margin: 0 0 7px;
    padding: 0;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
}

.itksf-field-label-show > .itksf-label,
.itksf-field-label-show > .itksf-choice-group > legend,
.itksf-field-label-show .itksf-consent-title {
    color: var(--itksf-navy, #071d3a);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: -0.01em;
}

.itksf-label,
.itksf-choice-group > legend {
    font-size: 13px;
    font-weight: 650;
    letter-spacing: -0.01em;
}

.itksf-select {
    position: relative;
    width: 100%;
    min-width: 0;
}

.itksf-select__native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    min-height: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.itksf-select__button {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 12px 15px;
    border: 1px solid #cfd6e1;
    border-radius: 12px;
    outline: 0;
    background: #fff;
    box-shadow: none;
    color: #8a94a5;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    text-align: start;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.itksf-select.has-value .itksf-select__button {
    color: var(--itksf-text, #152033);
}

.itksf-select__button:hover {
    border-color: #aeb8c7;
}

.itksf-select.is-open .itksf-select__button,
.itksf-select__button:focus-visible {
    border-color: var(--itksf-primary, #ff5f1f);
    outline: 3px solid rgba(255, 107, 0, .18);
    outline-offset: 1px;
    box-shadow: 0 0 0 1px var(--itksf-primary, #ff5f1f);
}

.itksf-select__button > i {
    flex: 0 0 auto;
    color: #657184;
    font-size: 14px;
    transition: transform 160ms ease;
}

.itksf-select.is-open .itksf-select__button > i {
    transform: rotate(180deg);
}

.itksf-select__menu {
    position: absolute;
    z-index: 50;
    top: calc(100% + 7px);
    inset-inline: 0;
    max-height: min(320px, 52vh);
    overflow: auto;
    padding: 7px;
    border: 1px solid #d9e0e8;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(11, 23, 41, .18);
}

.itksf-select__menu[hidden] {
    display: none !important;
}

.itksf-select__option {
    display: grid;
    width: 100%;
    min-height: 42px;
    grid-template-columns: 1fr 20px;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 9px 11px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #27364e;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    line-height: 1.35;
    text-align: start;
}

.itksf-select__option:hover,
.itksf-select__option:focus-visible {
    outline: 0;
    background: #fff4ea;
    color: var(--itksf-navy, #071d3a);
}

.itksf-select__option.is-placeholder {
    color: #8a94a5;
}

.itksf-select__option > i {
    opacity: 0;
    color: var(--itksf-primary, #ff5f1f);
    font-size: 16px;
}

.itksf-select__option.is-selected {
    background: #fff7f0;
    color: var(--itksf-navy, #071d3a);
    font-weight: 700;
}

.itksf-select__option.is-selected > i {
    opacity: 1;
}

.itksf-field.has-error .itksf-select__button {
    border-color: #d92d20;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, .08);
}

.itksf-select__button:disabled {
    cursor: not-allowed;
    opacity: .58;
}

.itksf-template-offer .itksf-label,
.itksf-template-offer .itksf-choice-group > legend {
    font-weight: 600;
}

@media (max-width: 640px) {
    .itksf-select__menu {
        max-height: 280px;
    }
    .itksf-select__option {
        min-height: 44px;
        font-size: 14px;
    }
}

.itksf-template-offer .itksf-select__button {
    min-height: 44px;
    border-color: #d8d2cd;
    border-radius: 11px;
    font-size: 14px;
}

.itksf-template-offer .itksf-select__menu {
    border-color: #e2dcd6;
}


/* 3.5.0 Pro-Container */
.itksf-container--pro {
    width: 100%;
    column-gap: var(--itksf-container-gap-x, 18px);
    row-gap: var(--itksf-container-gap-y, 22px);
    padding: var(--itksf-container-padding, 0);
    background: var(--itksf-container-bg, transparent);
    border: var(--itksf-container-border-width, 0) solid var(--itksf-container-border-color, #e2e8f0);
    border-radius: var(--itksf-container-radius, 0);
}
.itksf-container--equal {
    grid-template-columns: repeat(var(--itksf-container-cols, 2), minmax(0, 1fr)) !important;
}
.itksf-container--equal > .itksf-field,
.itksf-container--equal > .itksf-heading,
.itksf-container--equal > .itksf-html,
.itksf-container--equal > .itksf-divider {
    grid-column: auto !important;
}
.itksf-container--shadow {
    box-shadow: 0 18px 48px rgba(15, 23, 42, .10);
}
.itksf-container__header {
    grid-column: 1 / -1;
    padding-bottom: 4px;
}
.itksf-container__header > strong {
    display: block;
    color: var(--itksf-navy, #071d3a);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.25;
}
.itksf-container__header > div {
    margin-top: 6px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}
.itksf-success__html {
    width: 100%;
    text-align: initial;
}
@media (max-width: 900px) {
    .itksf-container--equal { grid-template-columns: repeat(var(--itksf-container-cols-tablet, 2), minmax(0, 1fr)) !important; }
}
@media (max-width: 600px) {
    .itksf-container--equal { grid-template-columns: repeat(var(--itksf-container-cols-mobile, 1), minmax(0, 1fr)) !important; }
    .itksf-container--pro { padding: min(var(--itksf-container-padding, 0px), 20px); }
}

/* SmartForms 3.7.0 – frei platzierbares Captcha-Feld */
.itksf-field--captcha {
    min-width: 0;
}
.itksf-field--captcha .itksf-captcha {
    justify-content: flex-start;
    min-height: 76px;
    margin: 0;
    padding: 10px 0;
    overflow: visible;
}
.itksf-field--captcha .itksf-captcha > div {
    max-width: 100%;
}
@media (max-width: 360px) {
    .itksf-field--captcha .itksf-captcha {
        min-height: 70px;
    }
    .itksf-field--captcha .itksf-captcha > div {
        transform: scale(.88);
        transform-origin: left top;
    }
}

/* SmartForms 3.8.0 – Formulartypen und visuelle Auswahlkarten */
.itksf-progress__minimal {
    display: none;
    align-items: baseline;
    gap: 5px;
    margin: 0 0 12px;
    color: var(--itksf-muted, #667085);
    font-size: 13px;
}

.itksf-progress__minimal strong {
    color: var(--itksf-primary, #ff5f1f);
    font-size: 20px;
    line-height: 1;
}

.itksf-progress__minimal em {
    margin-inline-start: 4px;
    color: var(--itksf-navy, #071d3a);
    font-style: normal;
    font-weight: 700;
}

.itksf-progress-style-steps .itksf-progress__track,
.itksf-progress-style-steps .itksf-progress__minimal {
    display: none;
}

.itksf-progress-style-steps .itksf-progress__steps {
    margin-top: 0;
}

.itksf-progress-style-minimal .itksf-progress__track,
.itksf-progress-style-minimal .itksf-progress__steps {
    display: none;
}

.itksf-progress-style-minimal .itksf-progress__minimal {
    display: flex;
}

.itksf-choice-group__items {
    display: grid;
    gap: 9px;
    min-width: 0;
}

.itksf-choice-group:not(.itksf-choice-group--cards) .itksf-choice-group__items {
    grid-template-columns: 1fr;
}

.itksf-choice-group--cards .itksf-choice-group__items {
    grid-template-columns: repeat(var(--itksf-choice-cols, 2), minmax(0, 1fr));
    gap: 12px;
}

.itksf-choice-group--cols-1 { --itksf-choice-cols: 1; }
.itksf-choice-group--cols-2 { --itksf-choice-cols: 2; }
.itksf-choice-group--cols-3 { --itksf-choice-cols: 3; }
.itksf-choice-group--cols-4 { --itksf-choice-cols: 4; }

.itksf-choice--card {
    position: relative;
    min-height: 112px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    overflow: hidden;
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    text-align: center;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.itksf-choice--card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--itksf-primary, #ff5f1f) 65%, #ffffff);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
}

.itksf-choice--card .itksf-choice__mark {
    position: absolute;
    inset-block-start: 10px;
    inset-inline-end: 10px;
    z-index: 2;
    margin: 0;
    background: #ffffff;
}

.itksf-choice--card:has(input:checked) {
    border-color: var(--itksf-primary, #ff5f1f);
    background: color-mix(in srgb, var(--itksf-primary, #ff5f1f) 5%, #ffffff);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--itksf-primary, #ff5f1f) 16%, transparent), 0 12px 30px rgba(15, 23, 42, 0.08);
}

.itksf-choice__media {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.itksf-choice__media--icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: color-mix(in srgb, var(--itksf-primary, #ff5f1f) 10%, #ffffff);
    color: var(--itksf-primary, #ff5f1f);
    font-size: 26px;
}

.itksf-choice__media--image {
    width: 100%;
    height: 118px;
    overflow: hidden;
    border-radius: 12px;
    background: #f1f5f9;
}

.itksf-choice__media--image img {
    display: block;
    width: 100%;
    height: 100%;
}

.itksf-choice__text {
    display: block;
    min-width: 0;
    color: var(--itksf-navy, #071d3a);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
}

.itksf-choice-group--align-left .itksf-choice--card {
    align-items: flex-start;
    text-align: start;
}

.itksf-choice-group--align-left .itksf-choice__media--icon {
    place-self: start;
}

.itksf-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 760px) {
    .itksf-choice-group--cols-3 .itksf-choice-group__items,
    .itksf-choice-group--cols-4 .itksf-choice-group__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 460px) {
    .itksf-choice-group--cards .itksf-choice-group__items {
        grid-template-columns: 1fr;
    }

    .itksf-choice--card {
        min-height: 96px;
    }
}


/* SmartForms 4.1.0 – Telefon, Adresse und Upload Pro */
.itksf-phone {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    width: 100%;
    min-width: 0;
}

.itksf-phone__country {
    position: relative;
    z-index: 2;
    display: inline-flex;
    min-width: 86px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 11px;
    border: 1px solid #cfd6e1;
    border-right: 0;
    border-radius: 12px 0 0 12px;
    background: #f8fafc;
    color: var(--itksf-text,#152033);
    cursor: pointer;
    font: inherit;
}

.itksf-phone__country:hover,
.itksf-phone__country[aria-expanded="true"] {
    border-color: var(--itksf-primary,#ff5f1f);
    background: #fffaf6;
}

.itksf-phone__country > span {
    font-size: 20px;
    line-height: 1;
}

.itksf-phone__country > b {
    font-size: 12px;
    font-weight: 800;
}

.itksf-phone__country > i {
    color: #94a3b8;
    font-size: 11px;
}

.itksf-phone .itksf-phone__input {
    border-radius: 0 12px 12px 0;
}

.itksf-phone__menu {
    position: absolute;
    z-index: 80;
    top: calc(100% + 7px);
    left: 0;
    width: min(360px,100%);
    max-height: 330px;
    overflow: hidden;
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 48px rgba(15,23,42,.18);
    backdrop-filter: blur(14px);
}

.itksf-phone__search {
    position: sticky;
    z-index: 2;
    top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-bottom: 1px solid #eef2f7;
    background: #fff;
}

.itksf-phone__search input {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 8px 10px;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    outline: 0;
    font: inherit;
}

.itksf-phone__search input:focus {
    border-color: var(--itksf-primary,#ff5f1f);
    box-shadow: 0 0 0 3px color-mix(in srgb,var(--itksf-primary,#ff5f1f) 16%,transparent);
}

.itksf-phone__list {
    max-height: 270px;
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #a8b2c1 transparent;
}

.itksf-phone__list::-webkit-scrollbar {
    width: 8px;
}
.itksf-phone__list::-webkit-scrollbar-track {
    background: transparent;
}
.itksf-phone__list::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background: #a8b2c1;
    background-clip: padding-box;
}
.itksf-phone__list::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.itksf-phone__list button {
    display: grid;
    width: 100%;
    grid-template-columns: 28px minmax(0,1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border: 0;
    background: transparent;
    color: #334155;
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.itksf-phone__list button:hover,
.itksf-phone__list button.is-active,
.itksf-phone__list button[aria-selected="true"] {
    background: #fff4eb;
    color: #9a3412;
}

.itksf-phone__list button > span:first-child {
    font-size: 20px;
}
.itksf-phone__list button > span:nth-child(2) {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.itksf-phone__list button > b {
    color: #64748b;
    font-size: 12px;
}

.itksf-address {
    position: relative;
}

.itksf-address__state,
.itksf-address__street {
    grid-column: 1 / -1;
}

.itksf-address__suggestions {
    position: absolute;
    z-index: 75;
    top: var(--itksf-address-suggest-top, 122px);
    left: 0;
    right: 0;
    max-height: 310px;
    overflow: auto;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    background: rgba(255,255,255,.985);
    box-shadow: 0 18px 48px rgba(15,23,42,.16);
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #a8b2c1 transparent;
    backdrop-filter: blur(14px);
}

.itksf-address__suggestions::-webkit-scrollbar {
    width: 8px;
}
.itksf-address__suggestions::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background: #a8b2c1;
    background-clip: padding-box;
}
.itksf-address__suggestions::-webkit-scrollbar-track {
    background: transparent;
}
.itksf-address__suggestions::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.itksf-address__suggestions button {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 9px;
    padding: 11px 13px;
    border: 0;
    border-bottom: 1px solid #f1f5f9;
    background: transparent;
    color: #334155;
    cursor: pointer;
    text-align: left;
    font: inherit;
    line-height: 1.45;
}

.itksf-address__suggestions button:last-child {
    border-bottom: 0;
}

.itksf-address__suggestions button:hover,
.itksf-address__suggestions button.is-active,
.itksf-address__suggestions button[aria-selected="true"] {
    background: #fff4eb;
    color: #9a3412;
}

.itksf-upload {
    position: relative;
    min-height: 168px;
    border-width: 1px;
    border-style: dashed;
    border-color: #b9c4d1;
    background: linear-gradient(180deg,#fbfcfe,#f8fafc);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.itksf-upload__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 10px;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    background: #fff7ed;
    color: var(--itksf-primary,#ff5f1f);
    box-shadow: 0 8px 20px rgba(249,115,22,.08);
}

.itksf-upload__icon > i {
    font-size: 23px;
}

.itksf-upload__files {
    display: grid;
    width: min(100%,520px);
    gap: 6px;
    margin-top: 12px;
}

.itksf-upload__files:empty {
    display: none;
}

.itksf-upload__files > span,
.itksf-upload__files > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #475569;
    font-size: 12px;
    font-weight: 650;
}

@media (max-width:640px) {
    .itksf-phone__country {
        min-width: 76px;
        padding-inline: 9px;
    }
    .itksf-phone__menu {
        position: fixed;
        top: auto;
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: auto;
        max-height: min(65vh,480px);
        border-radius: 18px;
    }
    .itksf-phone__list {
        max-height: min(52vh,380px);
    }
}


/* SmartForms 4.2.0 – Telefon DE + Ein-Feld-Adresse */
.itksf-phone--fixed{display:grid;grid-template-columns:auto minmax(0,1fr);align-items:stretch;position:relative}
.itksf-phone__fixed-country{display:flex;align-items:center;gap:7px;min-width:92px;padding:0 12px;border:1px solid var(--itksf-border,#d8dee8);border-right:0;border-radius:12px 0 0 12px;background:#f8fafc;color:#334155;font-size:13px;font-weight:700}
.itksf-phone--fixed .itksf-phone__input{border-radius:0 12px 12px 0!important}
.itksf-address--single{display:block!important;position:relative}
.itksf-address__full{display:block!important;position:relative}
.itksf-address__search{position:relative}
.itksf-address__search>i{position:absolute;z-index:2;top:50%;left:14px;transform:translateY(-50%);color:var(--itksf-primary,#ff5f1f);font-size:17px;pointer-events:none}
.itksf-address__search .itksf-control{padding-left:42px!important}
.itksf-address--single .itksf-address__suggestions{top:calc(100% + 6px)!important;left:0!important;right:0!important}
.itksf-address__source{display:block;margin-top:7px;color:#94a3b8;font-size:10px;line-height:1.4}


/* SmartForms 4.2.0 – Telefonfeld robust */
.itksf-phone--fixed .itksf-phone__fixed-country {
    min-width: 96px;
    justify-content: center;
    border-color: #cfd6e1;
    background: linear-gradient(180deg,#fbfcfe,#f5f7fa);
    box-shadow: inset -1px 0 0 rgba(15,23,42,.025);
}
.itksf-phone--fixed .itksf-phone__fixed-country > span { font-size:20px; line-height:1; }
.itksf-phone--fixed .itksf-phone__fixed-country > b { font-size:13px; letter-spacing:.01em; }
.itksf-phone:focus-within .itksf-phone__fixed-country,
.itksf-phone:focus-within .itksf-phone__country { border-color:var(--itksf-primary,#ff5f1f); }
.itksf-phone__menu { overflow:visible; }
.itksf-phone__list {
    max-height:270px;
    overflow:auto;
    border-radius:0 0 15px 15px;
    scrollbar-width:thin;
    scrollbar-color:rgba(100,116,139,.5) transparent;
}
.itksf-phone__list::-webkit-scrollbar-button { display:none!important;width:0!important;height:0!important; }

.itksf-flag{display:inline-block;width:24px;height:16px;flex:0 0 24px;border-radius:3px;box-shadow:0 0 0 1px rgba(15,23,42,.12);overflow:hidden;background:#e2e8f0}
.itksf-flag--de{background:linear-gradient(to bottom,#111 0 33.333%,#dd0000 33.333% 66.666%,#ffce00 66.666% 100%)}

/* SmartForms 4.4.0 – professionelle Overlay-Scrollbars + Mehrsprachigkeit */
.itksf-scroll-viewport,
.itksf-select__menu,
.itksf-phone__list,
.itksf-address__suggestions {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    overscroll-behavior: contain;
}
.itksf-scroll-viewport::-webkit-scrollbar,
.itksf-select__menu::-webkit-scrollbar,
.itksf-phone__list::-webkit-scrollbar,
.itksf-address__suggestions::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}
.itksf-scroll-viewport::-webkit-scrollbar-button,
.itksf-select__menu::-webkit-scrollbar-button,
.itksf-phone__list::-webkit-scrollbar-button,
.itksf-address__suggestions::-webkit-scrollbar-button {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}
.itksf-overlay-scrollbar {
    position: absolute;
    z-index: 9998;
    width: 9px;
    min-height: 20px;
    padding: 0 2px;
    border-radius: 999px;
    background: transparent;
    opacity: .62;
    pointer-events: auto;
    transition: opacity .16s ease, background .16s ease;
}
.itksf-overlay-scrollbar[hidden] { display: none !important; }
.itksf-overlay-scrollbar__thumb {
    display: block;
    width: 5px;
    min-height: 34px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--itksf-navy, #071d3a) 46%, transparent);
    box-shadow: 0 0 0 1px rgba(255,255,255,.48);
    cursor: grab;
    touch-action: none;
    will-change: transform;
    transition: width .14s ease, background .14s ease, box-shadow .14s ease;
}
.itksf-scroll-host:hover > .itksf-overlay-scrollbar,
.itksf-scroll-host.is-scroll-dragging > .itksf-overlay-scrollbar { opacity: 1; }
.itksf-scroll-host:hover > .itksf-overlay-scrollbar .itksf-overlay-scrollbar__thumb,
.itksf-scroll-host.is-scroll-dragging > .itksf-overlay-scrollbar .itksf-overlay-scrollbar__thumb {
    width: 6px;
    background: var(--itksf-primary, #ff5f1f);
    box-shadow: 0 2px 9px rgba(255,95,31,.28);
}
.itksf-scroll-host.is-scroll-dragging > .itksf-overlay-scrollbar .itksf-overlay-scrollbar__thumb { cursor: grabbing; }
.itksf-select__menu,
.itksf-address__suggestions,
.itksf-phone__list { padding-inline-end: 17px !important; }

.itksf-address__source {
    display: flex !important;
    align-items: center;
    gap: 6px;
    margin-top: 7px;
    color: var(--itksf-muted, #667085) !important;
    font-size: 12px;
    line-height: 1.45;
}
.itksf-address__source i { color: var(--itksf-primary, #ff5f1f); font-size: 13px; }

.itksf-language-switcher {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--itksf-muted, #667085);
    font-size: 13px;
}
.itksf-language-switcher > i { color: var(--itksf-primary, #ff5f1f); font-size: 16px; }
.itksf-language-switcher > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}
.itksf-language-switcher a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 6px 11px;
    border: 1px solid #d9e0e8;
    border-radius: 999px;
    background: #fff;
    color: var(--itksf-text, #152033);
    text-decoration: none;
    font-weight: 650;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.itksf-language-switcher a:hover,
.itksf-language-switcher a:focus-visible {
    border-color: var(--itksf-primary, #ff5f1f);
    outline: 0;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--itksf-primary, #ff5f1f) 16%, transparent);
}
.itksf-language-switcher a.is-active {
    border-color: var(--itksf-primary, #ff5f1f);
    background: color-mix(in srgb, var(--itksf-primary, #ff5f1f) 9%, #fff);
    color: var(--itksf-navy, #071d3a);
}
.itksf-language-switcher--select {
    width: fit-content;
    max-width: 100%;
    margin-inline-start: auto;
    padding: 6px 9px;
    border: 1px solid #d9e0e8;
    border-radius: 12px;
    background: #fff;
}
.itksf-language-switcher--select select {
    min-height: 32px;
    max-width: 180px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--itksf-text, #152033);
    font: inherit;
    font-weight: 650;
}
.itksf-language-switcher--minimal a { border-color: transparent; background: transparent; padding-inline: 7px; }
.itksf-shell[dir="rtl"] .itksf-language-switcher { justify-content: flex-start; }
.itksf-shell[dir="rtl"] .itksf-language-switcher > div { justify-content: flex-start; }
.itksf-shell[dir="rtl"] .itksf-language-switcher--select { margin-inline-start: 0; margin-inline-end: auto; }
.itksf-shell[dir="rtl"] .itksf-button i.bi-arrow-right,
.itksf-shell[dir="rtl"] .itksf-button i.bi-arrow-left { transform: scaleX(-1); }
.itksf-shell input[type="text"],
.itksf-shell input[type="email"],
.itksf-shell input[type="tel"],
.itksf-shell textarea { unicode-bidi: plaintext; }

@media (max-width: 640px) {
    .itksf-overlay-scrollbar { width: 8px; }
    .itksf-overlay-scrollbar__thumb { width: 4px; }
    .itksf-language-switcher { align-items: flex-start; }
    .itksf-language-switcher > div { gap: 4px; }
    .itksf-language-switcher a { min-height: 32px; padding: 5px 9px; font-size: 12px; }
}

/* SmartForms 4.4.0 – Sprachumschalter */
.itksf-language-switcher{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin:0 0 18px}
.itksf-language-switcher button,.itksf-language-switcher a{min-height:38px;padding:8px 13px;border:1px solid #dce3ec;border-radius:999px;background:#fff;color:#334155;font:inherit;font-size:13px;font-weight:700;cursor:pointer;transition:border-color .16s ease,box-shadow .16s ease,background .16s ease,color .16s ease}
.itksf-language-switcher button:hover,.itksf-language-switcher a:hover{border-color:var(--itksf-primary,#ff5f1f);box-shadow:0 4px 14px rgba(15,23,42,.08)}
.itksf-language-switcher .is-active{border-color:var(--itksf-primary,#ff5f1f);background:color-mix(in srgb,var(--itksf-primary,#ff5f1f) 9%,#fff);color:var(--itksf-secondary,#071d3a)}
.itksf-shell[dir="rtl"] .itksf-language-switcher{direction:rtl;justify-content:flex-start}

.itksf-shell.is-language-loading{position:relative;pointer-events:none;opacity:.72;transition:opacity .16s ease}
.itksf-shell.is-language-loading::after{content:"";position:absolute;inset:0;z-index:40;background:rgba(255,255,255,.18);cursor:progress}

.itksf-language-host{width:100%;max-width:100%}.itksf-language-host>template{display:none!important}


/* SmartForms 5.0.0 Pro – ruhige Business-UI */
.itksf-shell {
    --itksf-focus: var(--itksf-navy, #071d3a);
}

.itksf-form {
    border-color: #dde3eb;
    border-radius: min(var(--itksf-radius, 14px), 16px);
    box-shadow: 0 8px 28px rgba(15, 23, 42, .055);
}

.itksf-control,
.itksf-select__button {
    border-color: #cfd6e1;
    border-radius: 9px;
    background: #fff;
    box-shadow: none;
}

.itksf-control:focus,
.itksf-shell input:focus-visible,
.itksf-shell button:focus-visible,
.itksf-shell select:focus-visible,
.itksf-shell textarea:focus-visible,
.itksf-shell canvas:focus-visible,
.itksf-select.is-open .itksf-select__button,
.itksf-select__button:focus-visible {
    border-color: var(--itksf-focus);
    outline: 3px solid rgba(15, 23, 42, .13);
    outline-offset: 2px;
    box-shadow: 0 0 0 1px var(--itksf-focus);
}

.itksf-choice input:focus-visible + .itksf-choice__mark {
    outline-color: rgba(15, 23, 42, .16);
}

.itksf-phone__country {
    min-width: 104px;
    border-color: #cfd6e1;
    border-radius: 9px 0 0 9px;
    background: #f8fafc;
}

.itksf-phone__country:hover,
.itksf-phone__country[aria-expanded="true"] {
    border-color: #8d99aa;
    background: #f1f5f9;
}

.itksf-phone .itksf-phone__input {
    border-radius: 0 9px 9px 0;
}

.itksf-phone__flag-frame {
    display: inline-grid;
    width: 28px;
    height: 22px;
    place-items: center;
    flex: 0 0 28px;
    overflow: hidden;
    border: 1px solid #d7dde6;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .06);
    font-size: 18px;
    line-height: 1;
}

.itksf-phone__menu {
    width: min(390px, calc(100vw - 32px));
    max-height: 360px;
    border-color: #d8dee7;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .14);
    backdrop-filter: none;
}

.itksf-phone__search {
    padding: 11px;
    background: #fff;
}

.itksf-phone__search input:focus {
    border-color: var(--itksf-focus);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, .10);
}

.itksf-phone__list button {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    min-height: 46px;
    padding: 9px 12px;
}

.itksf-phone__list button:hover,
.itksf-phone__list button.is-active,
.itksf-phone__list button[aria-selected="true"] {
    background: #f1f5f9;
    color: #0f172a;
}

.itksf-phone__list button[aria-selected="true"] {
    box-shadow: inset 3px 0 0 var(--itksf-navy, #071d3a);
}

.itksf-address__suggestions {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .12);
    backdrop-filter: none;
}

.itksf-address__suggestions button:hover,
.itksf-address__suggestions button.is-active,
.itksf-address__suggestions button[aria-selected="true"] {
    background: #f1f5f9;
    color: #0f172a;
}

.itksf-upload {
    border-color: #b8c2d0;
    border-radius: 10px;
    background: #fafbfc;
}

.itksf-upload:hover,
.itksf-upload.is-dragging {
    border-color: #7f8b9b;
    background: #f5f7fa;
}

.itksf-upload__icon {
    border-color: #dce2ea;
    border-radius: 10px;
    background: #fff;
    color: var(--itksf-navy, #071d3a);
    box-shadow: none;
}

.itksf-select__menu {
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .12);
}

.itksf-select__option:hover,
.itksf-select__option.is-selected,
.itksf-select__option:focus-visible {
    background: #f1f5f9;
    color: #0f172a;
}

.itksf-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 560px) {
    .itksf-phone__country {
        min-width: 94px;
        padding-inline: 9px;
    }
    .itksf-phone__menu {
        width: min(360px, calc(100vw - 24px));
    }
}

.itksf-phone:focus-within .itksf-phone__fixed-country,
.itksf-phone:focus-within .itksf-phone__country { border-color:var(--itksf-focus,#071d3a); }
.itksf-phone--fixed .itksf-phone__fixed-country{min-width:104px;border-radius:9px 0 0 9px;background:#f8fafc;box-shadow:none}
.itksf-phone--fixed .itksf-phone__input{border-radius:0 9px 9px 0!important}
.itksf-address__search>i{color:#64748b}

/* SmartForms 5.0.1 – Professional phone control */
.itksf-phone {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
}

.itksf-phone__control {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--itksf-border, #cfd6e1);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .02);
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.itksf-phone__control:hover {
    border-color: #aab4c2;
}

.itksf-phone:focus-within .itksf-phone__control,
.itksf-phone.is-open .itksf-phone__control {
    border-color: var(--itksf-focus, #0f172a);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, .10);
}

.itksf-field.has-error .itksf-phone__control {
    border-color: #b42318;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, .08);
}

.itksf-phone__country,
.itksf-phone--fixed .itksf-phone__country,
.itksf-phone__country--static {
    display: inline-flex;
    min-width: 0;
    width: auto;
    min-height: 46px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 10px 0 11px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #334155;
    box-shadow: none !important;
    font: inherit;
}

button.itksf-phone__country {
    cursor: pointer;
}

button.itksf-phone__country:hover,
button.itksf-phone__country[aria-expanded="true"],
button.itksf-phone__country:focus-visible {
    background: #f8fafc !important;
    color: #0f172a;
    outline: 0;
}

.itksf-phone__country > i {
    margin-inline-start: 1px;
    color: #7c8797;
    font-size: 10px;
    transition: transform .15s ease;
}

.itksf-phone.is-open .itksf-phone__country > i {
    transform: rotate(180deg);
}

.itksf-phone__flag-frame,
.itksf-phone__country > .itksf-phone__flag-frame,
.itksf-phone__list .itksf-phone__flag-frame {
    display: inline-flex;
    width: 26px;
    height: 18px;
    flex: 0 0 26px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #d7dde5;
    border-radius: 3px;
    background: #f8fafc;
    box-shadow: 0 1px 1px rgba(15, 23, 42, .04);
    font-size: 0;
    line-height: 1;
}

.itksf-phone__flag-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.itksf-phone__flag-code {
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .03em;
}

.itksf-phone__divider {
    width: 1px;
    height: 22px;
    flex: 0 0 1px;
    align-self: center;
    background: #e2e8f0;
}

.itksf-phone__dial-prefix {
    display: inline-flex;
    min-width: 0;
    flex: 0 0 auto;
    align-items: center;
    padding: 0 5px 0 11px;
    color: #475569;
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
}

.itksf-phone__dial-prefix[hidden] {
    display: none !important;
}

.itksf-phone .itksf-phone__input,
.itksf-phone--fixed .itksf-phone__input {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    flex: 1 1 auto;
    padding: 0 13px 0 6px;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--itksf-text, #152033);
    font-size: 15px;
    font-weight: 450;
}

.itksf-phone .itksf-phone__input::placeholder {
    color: #98a2b3;
    opacity: 1;
}

.itksf-phone__menu {
    position: absolute;
    z-index: 120;
    top: calc(100% + 8px);
    left: 0;
    width: min(420px, 100%);
    max-height: 390px;
    overflow: hidden;
    border: 1px solid #d8dee7;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .14), 0 2px 8px rgba(15, 23, 42, .06);
    backdrop-filter: none;
}

.itksf-phone__menu-head {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px 6px;
    background: #fff;
}

.itksf-phone__menu-head strong {
    color: #172033;
    font-size: 13px;
    font-weight: 750;
}

.itksf-phone__menu-head button {
    display: inline-grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #64748b;
    cursor: pointer;
}

.itksf-phone__menu-head button:hover,
.itksf-phone__menu-head button:focus-visible {
    background: #f1f5f9;
    color: #0f172a;
    outline: 0;
}

.itksf-phone__search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px 10px;
    border-bottom: 1px solid #eef2f6;
    background: #fff;
}

.itksf-phone__search > i {
    position: absolute;
    z-index: 1;
    left: 22px;
    color: #8a94a5;
    pointer-events: none;
    font-size: 13px;
}

.itksf-phone__search input {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 8px 12px 8px 34px;
    border: 1px solid #dbe2ea;
    border-radius: 8px;
    outline: 0;
    background: #fff;
    color: #172033;
    font: inherit;
    font-size: 13px;
}

.itksf-phone__search input:focus {
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, .07);
}

.itksf-phone__list {
    max-height: 292px;
    padding: 4px 5px 7px;
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #c0c8d3 transparent;
}

.itksf-phone__list button,
.itksf-phone__list .itksf-phone__option {
    display: grid;
    width: 100%;
    min-height: 44px;
    grid-template-columns: 28px minmax(0, 1fr) auto 18px;
    align-items: center;
    gap: 10px;
    padding: 7px 9px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #334155;
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.itksf-phone__list button:hover,
.itksf-phone__list button.is-active,
.itksf-phone__list button:focus-visible {
    background: #f8fafc;
    color: #0f172a;
    outline: 0;
}

.itksf-phone__list button[aria-selected="true"] {
    background: #f1f5f9;
    color: #0f172a;
    box-shadow: none;
}

.itksf-phone__country-name {
    min-width: 0;
    overflow: hidden;
    color: inherit;
    font-size: 13px;
    font-weight: 550;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.itksf-phone__list button > b {
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.itksf-phone__option-check {
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    color: #0f172a;
    opacity: 0;
    font-size: 14px;
}

.itksf-phone__list button[aria-selected="true"] .itksf-phone__option-check {
    opacity: 1;
}

.itksf-phone__empty {
    padding: 18px 12px;
    color: #667085;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 560px) {
    .itksf-phone__control {
        min-height: 50px;
    }
    .itksf-phone__country,
    .itksf-phone--fixed .itksf-phone__country,
    .itksf-phone__country--static {
        padding-inline: 9px;
    }
    .itksf-phone__dial-prefix {
        padding-left: 9px;
        font-size: 13px;
    }
    .itksf-phone .itksf-phone__input,
    .itksf-phone--fixed .itksf-phone__input {
        min-height: 48px;
        padding-right: 11px;
        font-size: 16px;
    }
    .itksf-phone__menu {
        width: 100%;
        max-height: 360px;
    }
    .itksf-phone__list {
        max-height: 260px;
    }
}


/* SmartForms 5.0.3 – Country picker migration + unmistakable trigger */
button.itksf-phone__country {
    position: relative;
    min-width: 58px;
    min-height: 46px;
    padding-inline: 11px 10px;
    cursor: pointer;
    touch-action: manipulation;
}

.itksf-phone__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-inline-start: 2px;
    color: #64748b;
    font-size: 13px;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform .16s ease, color .16s ease;
}

.itksf-phone.is-open .itksf-phone__chevron {
    transform: rotate(180deg);
    color: #0f172a;
}

button.itksf-phone__country:hover .itksf-phone__chevron,
button.itksf-phone__country:focus-visible .itksf-phone__chevron {
    color: #0f172a;
}

.itksf-phone__flag-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 17px;
    line-height: 1;
}

.itksf-field:has(.itksf-phone.is-open),
.itksf-container:has(.itksf-phone.is-open),
.itksf-step:has(.itksf-phone.is-open) {
    position: relative;
    z-index: 10020;
    overflow: visible;
}

.itksf-phone__menu {
    z-index: 10030;
}

@media (max-width: 560px) {
    button.itksf-phone__country {
        min-width: 60px;
        min-height: 48px;
    }
}
