@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Barlow:wght@400;500;600;700&display=swap');

.ks-payment-widget {
    --ink: #121a2d;
    --muted: #5f6671;
    --line: #d7d9dc;
    --soft: #f5f6f7;
    --brand: #35ad32;
    --brand-dark: #238d27;
    --mint: #e9f6e8;
    --lime: #55b82f;
    --white: #fff;
    --danger: #a83333;
    --shadow: 0 18px 50px rgba(18, 26, 45, .1);
}

.ks-payment-widget,
.ks-payment-widget * { box-sizing: border-box; }

.ks-payment-widget {
    color: var(--ink);
    background: transparent;
    font-family: "Barlow", Arial, sans-serif;
    width: 100%;
}

.ks-payment-widget .brand-bar { color: white; background: var(--ink); border-bottom: 6px solid var(--brand); }
.ks-payment-widget .brand-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 92px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.ks-payment-widget .wordmark { color: #fff; font: 800 2rem "Barlow Condensed", sans-serif; letter-spacing: -.02em; }
.ks-payment-widget .wordmark strong { color: var(--brand); }
.ks-payment-widget .wordmark small { display: block; margin-top: -4px; color: #fff; font-size: .72rem; font-weight: 500; letter-spacing: .36em; }
.ks-payment-widget .brand-promise { color: #fff; font: 600 1.08rem "Barlow Condensed", sans-serif; letter-spacing: .12em; text-transform: uppercase; }

.ks-payment-widget .page-shell {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0;
}

.ks-payment-widget .intro {
    max-width: 920px;
    margin-bottom: 36px;
}

.ks-payment-widget .eyebrow, .ks-payment-widget .step-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-dark);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ks-payment-widget .eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--brand);
}

.ks-payment-widget h1,
.ks-payment-widget h2,
.ks-payment-widget h3,
.ks-payment-widget legend,
.ks-payment-widget .plan-card strong {
    font-family: "Barlow Condensed", Arial, sans-serif;
}

.ks-payment-widget h1 {
    max-width: 900px;
    margin: 15px 0 18px;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: .9;
    letter-spacing: -.025em;
    text-transform: uppercase;
}
.ks-payment-widget h1 mark { color: var(--brand); background: none; }

.ks-payment-widget .intro > p {
    max-width: 730px;
    margin: 0;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.65;
}

.ks-payment-widget .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin-top: 26px;
    color: #3f4d47;
    font-size: .92rem;
    font-weight: 600;
}

.ks-payment-widget .trust-row i {
    display: inline-grid;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    place-items: center;
    color: var(--brand);
    background: var(--mint);
    border-radius: 50%;
    font-style: normal;
}

.ks-payment-widget .form-card {
    padding: clamp(24px, 5vw, 58px);
    background: #fff;
    border: 1px solid #e2e5e7;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(18, 26, 45, .07);
}

.ks-payment-widget .form-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 38px;
}

.ks-payment-widget h2 {
    margin: 7px 0 0;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    letter-spacing: -.015em;
}

.ks-payment-widget .required-note { color: var(--muted); font-size: .82rem; }
.ks-payment-widget b { color: #e04b42; }

.ks-payment-widget fieldset {
    min-width: 0;
    margin: 0 0 30px;
    padding: 0;
    border: 0;
}

.ks-payment-widget legend {
    float: left;
    width: 100%;
    font-size: 1.45rem;
    font-weight: 700;
}

.ks-payment-widget .field-help {
    clear: both;
    margin: 5px 0 15px;
    color: var(--muted);
    font-size: 1rem;
}

.ks-payment-widget .plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ks-payment-widget .plan-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 142px;
    padding: 18px 112px 16px 18px;
    flex-direction: column;
    cursor: pointer;
    background: var(--white);
    border: 1.5px solid var(--line);
    border: 2px solid #8d9095;
    border-radius: 8px;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.ks-payment-widget .plan-card:hover {
    transform: translateY(-2px);
    border-color: #83ae9f;
    box-shadow: 0 10px 24px rgba(7, 95, 72, .08);
}

.ks-payment-widget .plan-card:hover .plan-visual {
    transform: translateY(-4px) scale(1.035);
}

.ks-payment-widget .plan-card:has(input:focus-visible) { outline: 3px solid rgba(7,95,72,.2); outline-offset: 2px; }
.ks-payment-widget .plan-card:has(input:checked) {
    border-color: var(--brand);
    background: #f0faef;
    box-shadow: inset 0 0 0 1px var(--brand);
    animation: selection-pulse .32s ease-out;
}
.ks-payment-widget .plan-card > input[type="checkbox"] {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 3 !important;
    display: grid !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    place-items: center !important;
    opacity: 1 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background: white !important;
    border: 1.5px solid #a8b3ae !important;
    border-radius: 7px !important;
}

.ks-payment-widget .plan-card > input[type="checkbox"]:checked { background: var(--brand) !important; border-color: var(--brand) !important; }
.ks-payment-widget .plan-card > input[type="checkbox"]:checked::after { content: "✓"; color: white; font-size: .8rem; font-weight: 800; }
.ks-payment-widget .plan-checkbox-slot { position: absolute !important; top: 14px !important; right: 14px !important; bottom: auto !important; left: auto !important; z-index: 3 !important; display: block !important; width: 20px !important; height: 20px !important; }
.ks-payment-widget .plan-checkbox-slot > input[type="checkbox"] { position: static !important; display: grid !important; width: 20px !important; height: 20px !important; margin: 0 !important; padding: 0 !important; place-items: center !important; opacity: 1 !important; appearance: none !important; -webkit-appearance: none !important; background: white !important; border: 1.5px solid #a8b3ae !important; border-radius: 7px !important; }
.ks-payment-widget .plan-checkbox-slot > input[type="checkbox"]:checked { background: var(--brand) !important; border-color: var(--brand) !important; }
.ks-payment-widget .plan-checkbox-slot > input[type="checkbox"]:checked::after { content: "✓"; color: white; font-size: .8rem; font-weight: 800; }

.ks-payment-widget .plan-kicker {
    max-width: calc(100% + 54px);
    padding-right: 34px;
    white-space: nowrap;
    margin-bottom: 10px;
    color: var(--brand-dark);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ks-payment-widget .plan-card strong { max-width: 88%; color: var(--ink); font-size: 1.18rem; line-height: 1.1; }
.ks-payment-widget .plan-card strong em { color: var(--brand); font-style: normal; }
.ks-payment-widget .plan-card.featured strong em { display: block; white-space: nowrap; }
.ks-payment-widget .plan-card small { margin-top: 6px; color: var(--muted); line-height: 1.3; }

.ks-payment-widget .plan-visual {
    position: absolute;
    right: 13px;
    bottom: 11px;
    width: 94px;
    height: 104px;
    overflow: hidden;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 0;
    box-shadow: none;
    pointer-events: none;
    transition: transform .28s cubic-bezier(.2,.75,.25,1);
}

.ks-payment-widget .terminal-visual {
    background-image: url("ec-terminal-cutout.png");
}

.ks-payment-widget .bundle-visual {
    width: 108px;
    background-image: url("kasse-terminal-cutout.png");
}

.ks-payment-widget .featured { border-color: var(--brand); }
.ks-payment-widget .badge {
    position: absolute;
    top: -10px;
    left: 17px;
    padding: 4px 9px;
    color: white;
    background: var(--brand);
    border-radius: 99px;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ks-payment-widget .contract-check {
    position: relative;
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 20px;
    align-items: center;
    margin: 0 0 34px;
    padding: 22px;
    overflow: hidden;
    color: white;
    background: var(--ink);
    border: 1px solid var(--ink);
    border-left: 6px solid var(--brand);
    border-radius: 5px;
}
.ks-payment-widget .contract-check::after { display: none; }
.ks-payment-widget .contract-stamp {
    position: relative;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    background: white;
    border: 4px solid rgba(53,173,50,.22);
    border-radius: 50%;
}
.ks-payment-widget .terminal {
    display: block;
    width: 32px;
    height: 48px;
    padding: 5px 5px 4px;
    background: var(--ink);
    border-radius: 6px 6px 9px 9px;
    box-shadow: 0 3px 0 #090e1b;
    transform: rotate(-5deg);
}
.ks-payment-widget .terminal-screen {
    display: flex;
    width: 100%;
    height: 16px;
    margin: 0 0 4px;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: #c9efc7;
    border: 2px solid #263148;
    border-radius: 2px;
}
.ks-payment-widget .terminal-screen i {
    display: block;
    width: 3px;
    height: 3px;
    background: var(--brand);
    border-radius: 50%;
}
.ks-payment-widget .terminal-keys {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.ks-payment-widget .terminal-keys i {
    display: block;
    height: 4px;
    background: #e8ebef;
    border-radius: 1px;
}
.ks-payment-widget .terminal-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 3px;
}
.ks-payment-widget .terminal-actions i { display: block; height: 4px; border-radius: 1px; }
.ks-payment-widget .terminal-actions i:nth-child(1) { background: #e84c43; }
.ks-payment-widget .terminal-actions i:nth-child(2) { background: #efc340; }
.ks-payment-widget .terminal-actions i:nth-child(3) { background: var(--brand); }
.ks-payment-widget .contactless {
    position: absolute;
    top: 7px;
    right: 4px;
    color: var(--brand);
    font: 800 .62rem Arial, sans-serif;
    letter-spacing: -2px;
    transform: rotate(-38deg);
}
.ks-payment-widget .contract-kicker { color: var(--brand); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.ks-payment-widget .contract-message h3 { margin: 4px 0 7px; color: white; font-size: clamp(1.35rem, 2.2vw, 1.9rem); line-height: 1; text-transform: uppercase; }
.ks-payment-widget .contract-message h3 em { color: var(--brand); font-style: normal; }
.ks-payment-widget .contract-message p { max-width: 620px; margin: 0; color: #d4d9e2; font-size: .84rem; line-height: 1.4; }
.ks-payment-widget .contract-benefits { display: flex; flex-wrap: wrap; gap: 6px 15px; margin-top: 10px; color: white; font-size: .72rem; font-weight: 600; }
.ks-payment-widget .contract-benefits span::first-letter { color: var(--brand); }
.ks-payment-widget .contract-action { position: relative; z-index: 1; display: flex; min-width: 225px; padding: 14px; align-items: center; gap: 10px; color: var(--ink); background: var(--brand); cursor: pointer; }
.ks-payment-widget .contract-action > input[type="checkbox"] { position: relative !important; display: block !important; flex: 0 0 22px !important; align-self: center !important; width: 22px !important; height: 22px !important; margin: 0 !important; padding: 0 !important; opacity: 1 !important; appearance: none !important; -webkit-appearance: none !important; background: white !important; border: 2px solid rgba(18,26,45,.3) !important; border-radius: 0 !important; box-shadow: none !important; }
.ks-payment-widget .contract-action > input[type="checkbox"]:checked { background: white !important; border-color: var(--brand-dark) !important; }
.ks-payment-widget .contract-action > input[type="checkbox"]:checked::after { content: "✓" !important; position: absolute !important; inset: 0 !important; display: block !important; color: var(--brand-dark) !important; font-size: 16px !important; font-weight: 900 !important; line-height: 18px !important; text-align: center !important; }
.ks-payment-widget .contract-checkbox-slot { position: relative !important; display: block !important; flex: 0 0 22px !important; align-self: center !important; width: 22px !important; height: 22px !important; overflow: hidden !important; }
.ks-payment-widget .contract-checkbox-slot > input[type="checkbox"] { position: absolute !important; inset: 0 !important; z-index: 2 !important; display: block !important; width: 22px !important; height: 22px !important; margin: 0 !important; padding: 0 !important; opacity: 0 !important; cursor: pointer !important; }
.ks-payment-widget .contract-checkbox-slot > .action-check { position: absolute !important; inset: 0 !important; z-index: 1 !important; display: block !important; width: 22px !important; height: 22px !important; background: white !important; border: 2px solid rgba(18,26,45,.3) !important; box-sizing: border-box !important; }
.ks-payment-widget .contract-checkbox-slot > input[type="checkbox"]:checked + .action-check { background: white !important; border-color: var(--brand-dark) !important; }
.ks-payment-widget .contract-checkbox-slot > input[type="checkbox"]:checked + .action-check::after { content: "✓" !important; position: absolute !important; inset: 0 !important; display: block !important; color: var(--brand-dark) !important; font-size: 16px !important; font-weight: 900 !important; line-height: 18px !important; text-align: center !important; }
.ks-payment-widget .contract-action > span:last-child { display: flex; flex-direction: column; }
.ks-payment-widget .contract-action strong { color: var(--ink); font-size: .92rem; }
.ks-payment-widget .contract-action small { margin-top: 2px; color: #203222; font-size: .7rem; }
.ks-payment-widget .contract-action:has(input:focus-visible) { outline: 3px solid white; outline-offset: 3px; }

.ks-payment-widget .upload-panel {
    display: none;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px 20px;
    margin: -20px 0 34px;
    padding: 20px;
    background: #edf8f3;
    border: 1px dashed #7db7a5;
    border-radius: 4px;
}

.ks-payment-widget .upload-panel.visible { display: grid; animation: reveal .2s ease-out; }
@keyframes reveal { from { opacity: 0; transform: translateY(-5px); } }

.ks-payment-widget .upload-copy { display: flex; align-items: center; gap: 13px; }
.ks-payment-widget .upload-copy > span:last-child { display: flex; flex-direction: column; gap: 4px; }
.ks-payment-widget .upload-copy small { color: var(--muted); }
.ks-payment-widget .upload-icon { padding: 8px; color: var(--brand); background: white; border-radius: 8px; font-size: .69rem; font-weight: 800; }

.ks-payment-widget .upload-button input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.ks-payment-widget .upload-button span {
    display: inline-block;
    padding: 11px 16px;
    color: white;
    background: var(--ink);
    border-radius: 3px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 700;
}
.ks-payment-widget .upload-button:has(input:focus-visible) span { outline: 3px solid rgba(7,95,72,.25); }
.ks-payment-widget .file-name { grid-column: 1 / -1; color: var(--brand); font-size: .8rem; }

.ks-payment-widget .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 18px;
}

.ks-payment-widget .form-grid label { display: flex; flex-direction: column; gap: 8px; }
.ks-payment-widget .form-grid label > span { color: #34423c; font-size: .88rem; font-weight: 700; }
.ks-payment-widget .form-grid em { float: right; color: #89928e; font-size: .78rem; font-style: normal; font-weight: 400; }
.ks-payment-widget .full { grid-column: 1 / -1; }

.ks-payment-widget input[type="text"],
.ks-payment-widget input[type="email"],
.ks-payment-widget input[type="tel"],
.ks-payment-widget textarea {
    width: 100%;
    padding: 14px 15px;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid #ccd6d1;
    border-radius: 3px;
    font: inherit;
    transition: border-color .16s, box-shadow .16s;
}

.ks-payment-widget textarea { resize: vertical; min-height: 112px; }
.ks-payment-widget input:focus,
.ks-payment-widget textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(7,95,72,.1); }
.ks-payment-widget ::placeholder { color: #a1aaa6; }

.ks-payment-widget .privacy {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.5;
}
.ks-payment-widget .privacy-checkbox-slot { position: relative !important; display: block !important; width: 20px !important; height: 20px !important; overflow: hidden !important; }
.ks-payment-widget .privacy-checkbox-slot > input[type="checkbox"] { position: absolute !important; inset: 0 !important; z-index: 2 !important; width: 20px !important; height: 20px !important; margin: 0 !important; padding: 0 !important; opacity: 0 !important; cursor: pointer !important; }
.ks-payment-widget .privacy-checkbox-slot > .privacy-check { position: absolute !important; inset: 0 !important; z-index: 1 !important; display: block !important; width: 20px !important; height: 20px !important; background: white !important; border: 2px solid #d6d9d8 !important; box-sizing: border-box !important; }
.ks-payment-widget .privacy-checkbox-slot > input[type="checkbox"]:checked + .privacy-check { background: var(--brand) !important; border-color: var(--brand) !important; }
.ks-payment-widget .privacy-checkbox-slot > input[type="checkbox"]:checked + .privacy-check::after { content: "✓" !important; position: absolute !important; inset: 0 !important; display: block !important; color: white !important; font-size: 14px !important; font-weight: 900 !important; line-height: 16px !important; text-align: center !important; }
.ks-payment-widget .privacy a { color: var(--brand); text-underline-offset: 2px; }

.ks-payment-widget .submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.ks-payment-widget button {
    display: flex;
    min-width: 290px;
    padding: 15px 19px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: white;
    background: var(--brand);
    border: 0;
    border-radius: 3px;
    box-shadow: 0 9px 20px rgba(7,95,72,.2);
    cursor: pointer;
    font: 700 .93rem "Barlow", sans-serif;
    transition: background .18s, transform .18s;
}
.ks-payment-widget button:hover { background: var(--brand-dark); transform: translateY(-1px); }
.ks-payment-widget button:disabled { cursor: wait; opacity: .7; }
.ks-payment-widget button.is-loading > span:last-child {
    width: 15px;
    height: 15px;
    font-size: 0;
    border: 2px solid rgba(255,255,255,.45);
    border-top-color: white;
    border-radius: 50%;
    animation: button-spin .7s linear infinite;
}
.ks-payment-widget .submit-row p { margin: 0; color: #7e8984; font-size: .78rem; }

.ks-payment-widget .notice {
    margin: 0 0 28px;
    padding: 16px 18px;
    border-radius: 12px;
    line-height: 1.45;
}
.ks-payment-widget .notice strong,
.ks-payment-widget .notice span { display: block; }
.ks-payment-widget .notice.success { color: #125540; background: #e7f8f1; border: 1px solid #a8dec9; }
.ks-payment-widget .notice.error { color: #762727; background: #fff0ef; border: 1px solid #efc3bf; }
.ks-payment-widget .notice ul { margin: 6px 0 0; padding-left: 20px; }
.ks-payment-widget .honey { position: absolute !important; left: -10000px !important; }

@keyframes selection-pulse {
    0% { box-shadow: inset 0 0 0 1px var(--brand), 0 0 0 0 rgba(53,173,50,.34); }
    100% { box-shadow: inset 0 0 0 1px var(--brand), 0 0 0 7px rgba(53,173,50,0); }
}

@keyframes card-arrive {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.motion-ready .ks-payment-widget.plans-ready .plan-card {
    opacity: 0;
    transform: translateY(26px) scale(.97);
    transition: opacity .55s ease, transform .65s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
    transition-delay: var(--card-delay, 0ms);
}
.motion-ready .ks-payment-widget.plans-ready .plan-card.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.motion-ready .ks-payment-widget.plans-ready .plan-card.is-visible:hover { transform: translateY(-7px) scale(1.01); transition-delay: 0ms; box-shadow: 0 16px 32px rgba(7,95,72,.15); }
.motion-ready .ks-payment-widget.plans-ready .plan-card.is-visible:hover .plan-visual { transform: translateY(-7px) scale(1.07); }

.motion-ready .ks-payment-widget .reveal-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s cubic-bezier(.2,.75,.25,1);
}

.motion-ready .ks-payment-widget .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 900px) {
    .ks-payment-widget .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ks-payment-widget .contract-check { grid-template-columns: 72px minmax(0, 1fr); }
    .ks-payment-widget .contract-stamp { width: 68px; height: 68px; }
    .ks-payment-widget .terminal { transform: rotate(-5deg) scale(.82); }
    .ks-payment-widget .contract-action { grid-column: 1 / -1; width: 100%; min-width: 0; justify-content: center; }
}

@media (max-width: 620px) {
    .ks-payment-widget { width: 100%; max-width: 100%; overflow: hidden; }
    .ks-payment-widget .form-card { padding: 24px 16px; border-radius: 5px; }
    .ks-payment-widget legend { font-size: 1.25rem; line-height: 1.2; }
    .ks-payment-widget .field-help { font-size: .92rem; line-height: 1.45; }
    .ks-payment-widget .plan-grid,
    .ks-payment-widget .form-grid { grid-template-columns: minmax(0, 1fr); }
    .ks-payment-widget .full { grid-column: auto; }
    .ks-payment-widget .plan-card { width: 100%; min-height: 128px; padding: 16px 104px 14px 16px; }
    .ks-payment-widget .plan-visual { right: 10px; bottom: 8px; width: 82px; height: 94px; }
    .ks-payment-widget .bundle-visual { width: 94px; }
    .ks-payment-widget .plan-kicker { margin-bottom: 8px; font-size: .66rem; }
    .ks-payment-widget .plan-card strong { font-size: 1.08rem; }
    .ks-payment-widget .plan-card small { font-size: .8rem; }
    .ks-payment-widget .contract-check { grid-template-columns: minmax(0, 1fr); gap: 18px; padding: 24px 20px; }
    .ks-payment-widget .contract-stamp { width: 68px; height: 68px; }
    .ks-payment-widget .contract-message h3 { max-width: none; font-size: 1.5rem; line-height: 1.05; }
    .ks-payment-widget .contract-message p { max-width: none; font-size: .86rem; }
    .ks-payment-widget .contract-benefits { gap: 8px 14px; }
    .ks-payment-widget .contract-action { grid-column: auto; width: 100%; min-width: 0; justify-content: flex-start; }
    .ks-payment-widget .upload-panel { grid-template-columns: minmax(0, 1fr); }
    .ks-payment-widget .file-name { grid-column: auto; }
    .ks-payment-widget .submit-row { align-items: stretch; flex-direction: column; }
    .ks-payment-widget button { width: 100%; min-width: 0; }
    .ks-payment-widget .submit-row p { text-align: center; }
}
