.zk-wizard,
.zk-wizard * {
    box-sizing: border-box;
}

.zk-wizard {
    --zk-bg: #122701;
    --zk-bg-2: #122701;
    --zk-surface: rgba(255, 255, 255, 0.055);
    --zk-surface-2: rgba(255, 255, 255, 0.085);
    --zk-border: rgba(220, 240, 230, 0.14);
    --zk-border-strong: rgba(220, 240, 230, 0.26);
    --zk-text: #f2f7f4;
    --zk-muted: #a9bdb4;
    --zk-accent: #3E8504;
    --zk-accent-strong: #4A9806;
    --zk-accent-dark: #2B5F03;
    --zk-button: #3E8504;
    --zk-button-hover: #4A9806;
    --zk-error: #ffb5ad;
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--zk-text);
    background: #122701 !important;
    border: 1px solid rgba(220, 240, 230, 0.1);
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(1, 12, 9, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    isolation: isolate;
}

.zk-wizard::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
    z-index: -1;
}

.zk-wizard__ambient {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
}

.zk-wizard__ambient--one { background: #3E8504; top: -240px; right: -100px; }
.zk-wizard__ambient--two { background: #3E8504; bottom: -280px; left: -120px; }

.zk-wizard__shell {
    width: min(100%, 1060px);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 62px) clamp(20px, 6vw, 74px) clamp(34px, 6vw, 68px);
}

.zk-wizard__top,
.zk-wizard__progress-meta,
.zk-step__actions,
.zk-choice__surface,
.zk-consent {
    display: flex;
    align-items: center;
}

.zk-wizard__top {
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.zk-wizard__eyebrow,
.zk-success__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--zk-accent);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.zk-wizard__pulse {
    width: 7px;
    height: 7px;
    background: var(--zk-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(199, 231, 213, .08);
    animation: zkPulse 2.6s ease-in-out infinite;
}

.zk-wizard__progress-meta {
    gap: 15px;
    font-size: 12px;
    color: var(--zk-muted);
}

.zk-wizard__progress-meta [data-zk-progress-text] {
    color: var(--zk-text);
    font-weight: 700;
}

.zk-wizard__progress {
    width: 100%;
    height: 2px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
    border-radius: 99px;
    margin-bottom: clamp(36px, 5vw, 58px);
}

.zk-wizard__progress > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #3E8504, #4A9806);
    border-radius: inherit;
    transition: width .55s cubic-bezier(.22, 1, .36, 1);
}

.zk-wizard__viewport {
    position: relative;
    transition: height .5s cubic-bezier(.22, 1, .36, 1);
}

.zk-step {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(34px, 0, 0) scale(.992);
    transition: opacity .32s ease, transform .48s cubic-bezier(.22, 1, .36, 1), visibility .32s;
}

.zk-step.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.zk-step.is-entering-back:not(.is-active) { transform: translate3d(-34px, 0, 0); }
.zk-step.is-entering-back.is-active { animation: zkEnterBack .48s cubic-bezier(.22, 1, .36, 1); }

.zk-step__intro {
    max-width: 760px;
    margin-bottom: clamp(26px, 4vw, 38px);
}

.zk-step__number {
    display: inline-block;
    margin-bottom: 13px;
    color: #7fa28f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
}

.zk-step__intro h2,
.zk-success h2 {
    margin: 0;
    color: var(--zk-text);
    font-family: inherit;
    font-size: clamp(30px, 4.5vw, 52px);
    line-height: 1.04;
    letter-spacing: -.038em;
    font-weight: 600;
}

.zk-step__intro p,
.zk-success p {
    max-width: 680px;
    margin: 16px 0 0;
    color: var(--zk-muted);
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.65;
}

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

.zk-choice-grid--primary .zk-choice:first-child { grid-column: span 2; }
.zk-choice-grid--compact .zk-choice__surface { min-height: 112px; }

.zk-choice,
.zk-pill,
.zk-consent {
    cursor: pointer;
}

.zk-choice input,
.zk-pill input,
.zk-consent input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.zk-choice__surface {
    position: relative;
    min-height: 122px;
    gap: 16px;
    padding: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.032));
    border: 1px solid var(--zk-border);
    border-radius: 18px;
    transition: border-color .24s ease, background .24s ease, transform .24s ease, box-shadow .24s ease;
}

.zk-choice__surface::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(340px 130px at 0% 0%, rgba(205, 239, 222, .08), transparent 72%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.zk-choice:hover .zk-choice__surface {
    border-color: var(--zk-border-strong);
    background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.04));
    transform: translateY(-2px);
}

.zk-choice:hover .zk-choice__surface::after { opacity: 1; }

.zk-choice input:checked + .zk-choice__surface {
    border-color: rgba(206, 237, 220, .62);
    background: linear-gradient(145deg, rgba(207, 239, 223, .14), rgba(255,255,255,.045));
    box-shadow: inset 0 0 0 1px rgba(215, 244, 228, .06), 0 14px 35px rgba(0, 14, 10, .13);
}

.zk-choice__icon {
    display: grid;
    place-items: center;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(211, 239, 224, .17);
    border-radius: 13px;
    color: var(--zk-accent);
    background: rgba(211, 239, 224, .05);
}

.zk-choice__icon svg,
.zk-choice__tick svg,
.zk-btn svg,
.zk-consent__box svg,
.zk-success__mark svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zk-choice__copy {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.zk-choice__copy strong {
    color: var(--zk-text);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
}

.zk-choice__copy small {
    color: var(--zk-muted);
    font-size: 12.5px;
    line-height: 1.48;
}

.zk-choice__tick {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin-left: auto;
    color: #17372d;
    background: var(--zk-accent);
    border-radius: 50%;
    opacity: 0;
    transform: scale(.72);
    transition: opacity .22s ease, transform .32s cubic-bezier(.22, 1, .36, 1);
}

.zk-choice__tick svg { width: 15px; height: 15px; stroke-width: 2.3; }
.zk-choice input:checked + .zk-choice__surface .zk-choice__tick { opacity: 1; transform: scale(1); }

.zk-dynamic[hidden],
.zk-field-block[hidden] { display: none !important; }

.zk-dynamic.is-visible { animation: zkFade .38s ease both; }
.zk-field-block + .zk-field-block { margin-top: 28px; }

.zk-field-block__label,
.zk-input-wrap > span,
.zk-textarea-wrap > .zk-field-block__label {
    display: block;
    margin-bottom: 11px;
    color: #dce8e2;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.zk-field-block__label em,
.zk-input-wrap > span em {
    color: #779488;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
}

.zk-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.zk-pill > span {
    display: inline-flex;
    align-items: center;
    min-height: 43px;
    padding: 10px 15px;
    color: #cedbd5;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--zk-border);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    transition: all .22s ease;
}

.zk-pill:hover > span {
    color: var(--zk-text);
    border-color: var(--zk-border-strong);
    background: rgba(255,255,255,.07);
}

.zk-pill input:checked + span {
    color: #153329;
    background: var(--zk-accent);
    border-color: var(--zk-accent);
    box-shadow: 0 7px 24px rgba(133, 184, 159, .16);
}

.zk-textarea-wrap { display: block; margin-top: 30px; position: relative; }
.zk-textarea-wrap textarea,
.zk-input-wrap input {
    width: 100%;
    color: var(--zk-text) !important;
    background: rgba(255,255,255,.05) !important;
    border: 1px solid var(--zk-border) !important;
    border-radius: 15px !important;
    outline: 0 !important;
    box-shadow: none !important;
    font-family: inherit !important;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease !important;
}

.zk-textarea-wrap textarea {
    min-height: 142px;
    resize: vertical;
    padding: 17px 18px 34px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.zk-input-wrap input {
    height: 54px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
}

.zk-textarea-wrap textarea::placeholder,
.zk-input-wrap input::placeholder { color: #71877d !important; opacity: 1; }

.zk-textarea-wrap textarea:focus,
.zk-input-wrap input:focus {
    border-color: rgba(204, 236, 219, .52) !important;
    background: rgba(255,255,255,.072) !important;
    box-shadow: 0 0 0 4px rgba(190, 227, 208, .055) !important;
}

.zk-counter {
    position: absolute;
    right: 14px;
    bottom: 10px;
    color: #6c867a;
    font-size: 10px;
}

.zk-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.zk-input-wrap { display: block; }
.zk-input-wrap--full { grid-column: 1 / -1; }
.zk-input-wrap.has-error input { border-color: rgba(255,181,173,.7) !important; }

.zk-review {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 24px;
    overflow: hidden;
    background: var(--zk-border);
    border: 1px solid var(--zk-border);
    border-radius: 15px;
}

.zk-review > div {
    min-width: 0;
    padding: 14px 15px;
    background: #0b241d;
}

.zk-review span,
.zk-review strong { display: block; }
.zk-review span { margin-bottom: 4px; color: #70897e; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.zk-review strong { overflow: hidden; color: #dce8e2; font-size: 11.5px; line-height: 1.35; font-weight: 600; text-overflow: ellipsis; }

.zk-consent {
    position: relative;
    gap: 11px;
    margin-top: 20px;
    color: #9eb3a9;
    font-size: 11.5px;
    line-height: 1.5;
}

.zk-consent__box {
    display: grid;
    place-items: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: #133128;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--zk-border-strong);
    border-radius: 7px;
    transition: all .2s ease;
}

.zk-consent__box svg { width: 14px; height: 14px; opacity: 0; transform: scale(.7); transition: all .2s ease; }
.zk-consent input:checked + .zk-consent__box { background: var(--zk-accent); border-color: var(--zk-accent); }
.zk-consent input:checked + .zk-consent__box svg { opacity: 1; transform: scale(1); }
.zk-consent.has-error .zk-consent__box { border-color: rgba(255,181,173,.75); }

.zk-step__actions {
    justify-content: space-between;
    gap: 12px;
    margin-top: 34px;
}

.zk-step__actions--right { justify-content: flex-end; }

.zk-btn {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 19px;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform .22s ease, background .22s ease, color .22s ease, opacity .22s ease, box-shadow .22s ease;
}

.zk-btn svg { width: 17px; height: 17px; }
.zk-btn--primary { color: #fff; background: var(--zk-button); box-shadow: 0 9px 28px rgba(62, 133, 4, .24); }
.zk-btn--primary:hover { background: var(--zk-button-hover); transform: translateY(-1px); box-shadow: 0 12px 34px rgba(62, 133, 4, .32); }
.zk-btn--ghost { color: #c2d1ca; background: transparent; border: 1px solid var(--zk-border); }
.zk-btn--ghost:hover { color: #fff; background: rgba(255,255,255,.055); border-color: var(--zk-border-strong); }
.zk-btn:disabled { cursor: not-allowed; opacity: .65; }

.zk-btn--submit.is-loading svg { display: none; }
.zk-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(18,48,39,.25);
    border-top-color: #123027;
    border-radius: 50%;
    animation: zkSpin .7s linear infinite;
}
.zk-btn--submit.is-loading .zk-spinner { display: block; }

.zk-inline-error {
    min-height: 0;
    margin-top: 0;
    color: var(--zk-error);
    font-size: 11.5px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(-4px);
    transition: all .2s ease;
}
.zk-inline-error.is-visible { min-height: 18px; margin-top: 15px; opacity: 1; transform: none; }

.zk-wizard .is-invalid { animation: zkShake .46s ease; }
.zk-privacy-note { margin: 16px 0 0; color: #617b70; font-size: 10px; text-align: right; }
.zk-wizard__hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.zk-success {
    padding: clamp(20px, 4vw, 44px) 0 8px;
    text-align: center;
}

.zk-success__mark {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    color: #113027;
    background: var(--zk-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(199,231,213,.055), 0 18px 55px rgba(76,133,105,.16);
}
.zk-success__mark svg { width: 31px; height: 31px; stroke-width: 2; }
.zk-success__eyebrow { margin-bottom: 16px; }
.zk-success h2 { max-width: 680px; margin-inline: auto; }
.zk-success p { margin: 17px auto 28px; }

@keyframes zkPulse { 0%,100%{box-shadow:0 0 0 5px rgba(199,231,213,.055)} 50%{box-shadow:0 0 0 9px rgba(199,231,213,.01)} }
@keyframes zkFade { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }
@keyframes zkEnterBack { from{opacity:0;transform:translateX(-34px) scale(.992)} to{opacity:1;transform:none} }
@keyframes zkSpin { to{transform:rotate(360deg)} }
@keyframes zkShake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-5px)} 40%{transform:translateX(5px)} 60%{transform:translateX(-3px)} 80%{transform:translateX(3px)} }

@media (max-width: 760px) {
    .zk-wizard { border-radius: 21px; }
    .zk-wizard__shell { padding: 25px 18px 30px; }
    .zk-wizard__progress-label { display: none; }
    .zk-wizard__progress { margin-bottom: 32px; }
    .zk-step__intro h2, .zk-success h2 { font-size: clamp(29px, 9.2vw, 40px); }
    .zk-choice-grid { grid-template-columns: 1fr; }
    .zk-choice-grid--primary .zk-choice:first-child { grid-column: auto; }
    .zk-choice__surface, .zk-choice-grid--compact .zk-choice__surface { min-height: 104px; padding: 17px 15px; gap: 13px; }
    .zk-choice__icon { flex-basis: 39px; width: 39px; height: 39px; border-radius: 12px; }
    .zk-choice__copy strong { font-size: 14px; }
    .zk-choice__copy small { font-size: 11.5px; }
    .zk-contact-grid { grid-template-columns: 1fr; }
    .zk-input-wrap--full { grid-column: auto; }
    .zk-review { grid-template-columns: 1fr; }
    .zk-step__actions { margin-top: 28px; }
    .zk-btn { min-height: 48px; padding-inline: 17px; }
    .zk-privacy-note { text-align: left; }
}

@media (max-width: 420px) {
    .zk-wizard__top { align-items: flex-start; }
    .zk-wizard__progress-meta { padding-top: 1px; }
    .zk-choice__tick { display: none; }
    .zk-step__actions .zk-btn { flex: 1; }
    .zk-pills { gap: 7px; }
    .zk-pill > span { min-height: 40px; padding: 9px 12px; font-size: 11.5px; }
}

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