:root {
    --pk-navy: #032056;
    --pk-navy-2: #0c2b67;
    --pk-gold: #f8b435;
    --pk-gold-2: #fb9f2d;
    --pk-ink: #0f172a;
    --pk-muted: #64748b;
    --pk-line: #e2e8f0;
    --pk-soft: #f8fafc;
    --pk-danger: #e11d48;
    --pk-success: #22c55e;
    --pk-focus: rgba(3, 32, 86, .14);
    --pk-font: "Roboto", sans-serif;
    --pk-regular: 300;
    --pk-medium: 400;
    --pk-semibold: 500;
    --pk-bold: 700;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--pk-font);
    font-size: 16px;
    font-weight: var(--pk-regular);
    color: var(--pk-ink);
    background:
        radial-gradient(circle at top left, rgba(3, 32, 86, .08), transparent 32rem),
        radial-gradient(circle at right 18%, rgba(248, 180, 53, .18), transparent 26rem),
        linear-gradient(135deg, #f7fbff 0%, #f9fbff 50%, #fffef9 100%);
}

button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
:focus { outline: none; }
:focus-visible {
    outline: 3px solid rgba(3, 32, 86, .34);
    outline-offset: 3px;
}

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

.pk-shell {
    width: min(100%, 1120px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 40px 24px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.pk-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 114px;
    height: 36px;
}

.pk-brand img {
    display: block;
    width: 114px;
    height: 36px;
    object-fit: contain;
}

.pk-card {
    width: min(100%, 620px);
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(226, 232, 240, .86);
    border-radius: 14px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .09);
    padding: 34px 42px 26px;
}

.pk-card-wide { width: min(100%, 900px); }
.pk-card-compact { width: min(100%, 560px); }

.pk-title {
    margin: 0;
    text-align: center;
    font-size: 24px;
    line-height: 1.12;
    font-weight: var(--pk-bold);
    letter-spacing: 0;
}

.pk-subtitle {
    margin: 7px 0 0;
    text-align: center;
    color: var(--pk-muted);
    font-size: 13px;
    line-height: 1.45;
}

.pk-link-button {
    border: 0;
    background: transparent;
    color: var(--pk-navy);
    font-weight: var(--pk-semibold);
    padding: 0;
    text-decoration: none;
}

.pk-form {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.pk-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pk-field label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: var(--pk-semibold);
    color: #334155;
}

.pk-input, .pk-select, .pk-textarea {
    width: 100%;
    min-height: 45px;
    border: 1px solid var(--pk-line);
    border-radius: 9px;
    background: rgba(248, 250, 252, .72);
    color: var(--pk-ink);
    padding: 11px 13px;
    outline: none;
    font-size: 14px;
    font-weight: var(--pk-regular);
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.pk-input::placeholder, .pk-textarea::placeholder { color: #94a3b8; font-weight: var(--pk-regular); }
.pk-input:focus, .pk-select:focus, .pk-textarea:focus {
    background: #fff;
    border-color: var(--pk-navy);
    box-shadow: 0 0 0 4px var(--pk-focus);
}

.pk-phone-row {
    display: grid;
    grid-template-columns: 68px 56px 1fr;
    border: 1px solid var(--pk-line);
    border-radius: 9px;
    background: rgba(248, 250, 252, .72);
    min-height: 45px;
    position: relative;
}

.pk-phone-row:focus-within {
    background: #fff;
    border-color: var(--pk-navy);
    box-shadow: 0 0 0 4px var(--pk-focus);
}

.pk-country-trigger, .pk-dial {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    font-weight: var(--pk-semibold);
    border-right: 1px solid var(--pk-line);
}

.pk-country-trigger {
    gap: 10px;
    line-height: 1;
    min-height: 100%;
    padding: 0;
}
.pk-phone-row input {
    border: 0;
    background: transparent;
    outline: none;
    min-width: 0;
    padding: 10px 12px;
    font-weight: var(--pk-regular);
}

.pk-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    display: block;
    flex: 0 0 auto;
    align-self: center;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .1);
    background: linear-gradient(90deg, #15803d 0 33%, #fff 33% 66%, #15803d 66%);
}

.pk-country-chevron {
    width: 8px;
    height: 8px;
    display: block;
    flex: 0 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.pk-country-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 20;
    width: min(390px, 100%);
    max-height: 292px;
    overflow: auto;
    background: #fff;
    border: 1px solid var(--pk-line);
    border-radius: 11px;
    box-shadow: 0 22px 46px rgba(15, 23, 42, .14);
    padding: 8px;
}

.pk-country-search { margin-bottom: 6px; }
.pk-country-option {
    width: 100%;
    min-height: 44px;
    border: 0;
    background: transparent;
    border-radius: 8px;
    padding: 8px 10px;
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    text-align: left;
    color: #334155;
}

.pk-country-option:hover, .pk-country-option.is-selected {
    background: #eff6ff;
    color: var(--pk-navy);
}

.pk-suggestions {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 7px;
}

.pk-suggestions span {
    font-size: 11px;
    color: #94a3b8;
    font-weight: var(--pk-medium);
}

.pk-chip {
    border: 0;
    border-radius: 7px;
    padding: 4px 9px;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: var(--pk-semibold);
}

.pk-chip:hover {
    background: var(--pk-navy);
    color: #fff;
}

.pk-password-wrap { position: relative; }
.pk-password-wrap .pk-input { padding-right: 44px; }
.pk-icon-button {
    border: 0;
    background: transparent;
    color: #94a3b8;
    min-width: 38px;
    min-height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pk-icon-button svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor;
}

.pk-icon-button:hover,
.pk-icon-button:focus-visible {
    color: #334155;
}

.pk-icon-button .pk-eye,
.pk-icon-button[aria-pressed="true"] .pk-eye-off {
    display: none;
}

.pk-icon-button[aria-pressed="true"] .pk-eye {
    display: block;
}

.pk-password-wrap .pk-icon-button {
    position: absolute;
    right: 4px;
    top: 4px;
}

.pk-strength {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    align-items: center;
    gap: 5px;
    color: var(--pk-danger);
    font-size: 11px;
    font-weight: var(--pk-semibold);
}

.pk-strength span:not(.pk-strength-label) {
    height: 5px;
    border-radius: 99px;
    background: #e2e8f0;
}

.pk-strength[data-level="1"] span:nth-child(1),
.pk-strength[data-level="2"] span:nth-child(-n+2) { background: #f43f5e; }
.pk-strength[data-level="3"] span:nth-child(-n+3) { background: #f59e0b; }
.pk-strength[data-level="4"] span:nth-child(-n+4) { background: var(--pk-success); }
.pk-strength[data-level="4"] { color: #16a34a; }

.pk-alert {
    border: 1px solid #fecdd3;
    background: #fff1f2;
    color: #be123c;
    border-radius: 10px;
    padding: 11px 13px;
    font-size: 13px;
    font-weight: var(--pk-medium);
}

.pk-cta {
    width: 100%;
    min-height: 51px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(90deg, var(--pk-gold), var(--pk-gold-2));
    color: #111827;
    font-size: 15px;
    font-weight: var(--pk-bold);
    box-shadow: 0 14px 28px rgba(248, 180, 53, .28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.pk-cta:hover { transform: translateY(-1px); box-shadow: 0 18px 34px rgba(248, 180, 53, .34); }
.pk-cta:disabled { opacity: .72; cursor: wait; transform: none; }
.pk-button-spinner {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    display: inline-block;
    flex: 0 0 auto;
    animation: pk-spin .75s linear infinite;
}

.pk-button-loading {
    pointer-events: none;
}

.pk-button-loading .pk-button-spinner {
    margin-left: -2px;
}

@keyframes pk-spin {
    to { transform: rotate(360deg); }
}
.pk-secondary {
    min-height: 44px;
    border: 1px solid var(--pk-line);
    border-radius: 9px;
    background: #fff;
    color: #334155;
    font-weight: var(--pk-semibold);
    padding: 10px 14px;
}

.pk-fineprint {
    margin: 9px 0 0;
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.5;
}

.pk-fineprint a {
    color: #334155;
    font-weight: var(--pk-semibold);
    text-decoration: underline;
}

.pk-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #64748b;
    font-size: 14px;
}

.pk-footer button {
    border: 0;
    background: transparent;
    color: #718096;
    font-weight: var(--pk-medium);
    line-height: 1.4;
}

.pk-footer button:hover,
.pk-footer button:focus-visible {
    color: #334155;
}

.pk-otp {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 24px 0 16px;
}

.pk-otp input {
    width: 52px;
    height: 56px;
    border-radius: 13px;
    border: 1px solid var(--pk-line);
    background: rgba(248, 250, 252, .78);
    text-align: center;
    font-size: 23px;
    font-weight: var(--pk-bold);
    outline: none;
}

.pk-otp input:focus {
    border-color: var(--pk-navy);
    background: #fff;
    box-shadow: 0 0 0 4px var(--pk-focus);
}

.pk-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid var(--pk-line);
    color: #64748b;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: var(--pk-medium);
}

.pk-verification-screen {
    gap: 0;
}

.pk-verification-stepper {
    width: min(100%, 330px);
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    position: relative;
}

.pk-verification-stepper::before,
.pk-verification-stepper::after {
    content: "";
    position: absolute;
    left: 25%;
    right: 25%;
    top: 22px;
    height: 2px;
    border-radius: 999px;
}

.pk-verification-stepper::before {
    background: #e2e8f0;
}

.pk-verification-stepper::after {
    right: 75%;
    background: #0b1a3e;
    transition: right .2s ease;
}

.pk-verification-stepper[data-verification-progress="phone"]::after {
    right: 25%;
}

.pk-verification-stepper span {
    position: relative;
    z-index: 1;
    min-width: 86px;
    display: grid;
    justify-items: center;
    gap: 9px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: var(--pk-semibold);
}

.pk-verification-stepper span::before {
    content: "";
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
}

.pk-verification-stepper span::after {
    content: "1";
    position: absolute;
    top: 0;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: 15px;
    font-weight: var(--pk-bold);
}

.pk-verification-stepper span:nth-child(2)::after { content: "2"; }

.pk-verification-stepper .is-active,
.pk-verification-stepper .is-complete {
    color: #0b1a3e;
}

.pk-verification-stepper .is-active::before {
    border-color: #0b1a3e;
    box-shadow: 0 0 0 6px #dbeafe, 0 10px 24px rgba(3, 32, 86, .16);
}

.pk-verification-stepper .is-complete::before {
    border-color: #0b1a3e;
    background: #0b1a3e;
}

.pk-verification-stepper .is-complete::after {
    content: "✓";
    color: #fff;
}

.pk-verification-panel {
    max-width: 560px;
    margin: 0 auto;
    padding: 34px 34px 30px;
    text-align: center;
}

.pk-verification-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: #eff6ff;
    color: #0b1a3e;
    border: 1px solid #dbeafe;
    box-shadow: 0 12px 28px rgba(3, 32, 86, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pk-verification-icon svg {
    width: 31px;
    height: 31px;
    stroke: currentColor;
}

.pk-verification-state {
    margin-top: 26px;
    display: grid;
    gap: 16px;
}

.pk-identity-card {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #f8fafc;
    padding: 17px 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 7px 14px;
    text-align: left;
}

.pk-identity-card span {
    grid-column: 1 / -1;
    color: #94a3b8;
    font-size: 11px;
    font-weight: var(--pk-bold);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.pk-identity-card strong {
    min-width: 0;
    color: #0b1a3e;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
}

.pk-edit-inline {
    margin-top: 0;
    text-align: left;
}

.pk-code-copy {
    margin: 0 auto;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.pk-code-copy strong {
    color: #0b1a3e;
}

.pk-resend-row {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pk-channel-toggle {
    justify-self: center;
    font-size: 13px;
}

.pk-verification-primary {
    width: 100%;
    min-height: 52px;
    margin-top: 4px;
    flex: none;
}

.pk-studio-flow {
    width: min(100%, 900px);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pk-pop .2s ease-out;
}

.pk-studio-narrow { width: min(100%, 640px); }
.pk-studio-mid { width: min(100%, 760px); }
.pk-studio-full { width: min(100%, 1160px); }

@keyframes pk-pop {
    from { opacity: 0; transform: scale(.98); }
    to { opacity: 1; transform: scale(1); }
}

.pk-stepper {
    width: min(100%, 390px);
    margin: 0 auto 34px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.pk-stepper::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 50%;
    height: 1px;
    background: #e2e8f0;
    transform: translateY(-50%);
}

.pk-stepper::after {
    content: "";
    position: absolute;
    left: 24px;
    right: calc(100% - 24px);
    top: 50%;
    height: 2px;
    background: #2563eb;
    transform: translateY(-50%);
}

.pk-stepper[data-progress="50"]::after { right: 50%; }
.pk-stepper[data-progress="66"]::after { right: 34%; }
.pk-stepper[data-progress="100"]::after { right: 24px; }

.pk-step {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #94a3b8;
    font-size: 15px;
    font-weight: var(--pk-semibold);
}

.pk-step.is-active,
.pk-step.is-complete {
    border-color: var(--pk-navy);
    background: #0b1a3e;
    color: #fff;
    box-shadow: 0 8px 22px rgba(3, 32, 86, .13);
}

.pk-step.is-active { box-shadow: 0 0 0 6px #dbeafe, 0 10px 24px rgba(3, 32, 86, .16); }

.pk-studio-panel {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .88);
    border-radius: 18px;
    box-shadow: 0 12px 40px -10px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .03);
    padding: 32px;
}

.pk-studio-panel-soft {
    border-radius: 24px;
    box-shadow: 0 22px 56px rgba(15, 23, 42, .1);
}

.pk-studio-heading {
    margin: 0;
    text-align: center;
    color: #0b1a3e;
    font-size: 24px;
    line-height: 1.12;
    font-weight: var(--pk-bold);
    letter-spacing: 0;
}

.pk-studio-lead {
    margin: 8px 0 0;
    text-align: center;
    color: #64748b;
    font-size: 13px;
    font-weight: var(--pk-regular);
}

.pk-studio-lead + .pk-location-card {
    margin-top: 22px;
}

.pk-button-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.pk-studio-back,
.pk-studio-next {
    min-height: 46px;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: var(--pk-bold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.pk-studio-back {
    flex: 1;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #1e293b;
}

.pk-studio-next {
    flex: 1;
    border: 0;
    background: #ffb800;
    color: #020617;
    box-shadow: 0 10px 22px rgba(255, 184, 0, .25);
}

.pk-studio-next:hover,
.pk-studio-back:hover { transform: translateY(-1px); }
.pk-studio-next:disabled,
.pk-studio-back:disabled {
    opacity: .72;
    cursor: wait;
    transform: none;
}

.pk-inline-custom { display: none; margin-top: 8px; }
.pk-inline-custom.is-visible { display: block; }

.pk-pricing-wrap {
    width: 100%;
    margin-top: 34px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(15, 23, 42, .04);
}

.pk-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    divide: none;
    padding-top: 18px;
}

.pk-plan-card {
    position: relative;
    border: 0;
    border-right: 1px solid #f1f5f9;
    background: #fff;
    padding: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 366px;
}

.pk-plan-card:last-child { border-right: 0; }
.pk-plan-card.is-featured { background: #f8fafc; }
.pk-plan-card.is-selected { outline: 2px solid #0b1a3e; outline-offset: -2px; }

.pk-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0b1a3e;
    color: #ffb800;
    border: 1px solid rgba(51, 65, 85, .4);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: var(--pk-bold);
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
}

.pk-plan-card h3 { margin: 0; color: #0b1a3e; font-size: 18px; font-weight: var(--pk-semibold); }
.pk-plan-card p { margin: 6px auto 0; min-height: 32px; max-width: 180px; color: #64748b; font-size: 12px; line-height: 1.4; }
.pk-plan-price { color: #0b1a3e; font-size: 21px; font-weight: var(--pk-bold); }
.pk-plan-price small { color: #64748b; font-size: 12px; font-weight: var(--pk-regular); }
.pk-plan-card.is-unavailable .pk-plan-price { color: #64748b; }

.pk-plan-visual {
    width: 98px;
    height: 98px;
    margin: 4px auto;
    filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .08));
}

.pk-plan-actions {
    width: 100%;
    display: grid;
    gap: 8px;
}

.pk-plan-action,
.pk-plan-trial {
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 12px;
    font-weight: var(--pk-bold);
    transition: transform .16s ease, background .16s ease;
}

.pk-plan-action {
    border: 0;
    background: #ffb800;
    color: #020617;
}

.pk-plan-trial {
    border: 1px solid #e2e8f0;
    background: #f1f5f9;
    color: #0b1a3e;
}

.pk-plan-action:hover,
.pk-plan-trial:hover { transform: scale(.99); }

.pk-plan-action:disabled,
.pk-plan-trial:disabled {
    cursor: not-allowed;
    opacity: .55;
    transform: none;
}

.pk-feature-head {
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    background: rgba(248, 250, 252, .55);
    padding: 16px 24px;
    color: #0b1a3e;
    font-size: 13px;
    font-weight: var(--pk-semibold);
}

.pk-feature-row {
    display: grid;
    grid-template-columns: 6fr repeat(3, 2fr);
    align-items: center;
    min-height: 48px;
    padding: 0 24px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    color: #334155;
}

.pk-feature-row:nth-child(even) { background: rgba(248, 250, 252, .35); }
.pk-feature-name { display: inline-flex; align-items: center; gap: 6px; font-weight: var(--pk-medium); }
.pk-info-dot { color: #94a3b8; font-weight: var(--pk-medium); }
.pk-feature-cell { text-align: center; font-weight: var(--pk-medium); color: #1e293b; }
.pk-feature-cell.is-highlight { background: rgba(241, 245, 249, .75); border-radius: 7px; padding: 5px 0; }
.pk-check-badge {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffb800;
    color: #020617;
    font-size: 12px;
    font-weight: var(--pk-bold);
}

.pk-addon-list {
    width: 100%;
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.pk-addon-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .03);
}

.pk-addon-main { display: flex; align-items: flex-start; gap: 16px; min-width: 0; }
.pk-addon-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    flex: 0 0 auto;
}
.pk-addon-icon.blue { background: #eff6ff; color: #2563eb; }
.pk-addon-icon.green { background: #ecfdf5; color: #059669; }
.pk-addon-icon.purple { background: #faf5ff; color: #9333ea; }
.pk-addon-item h3 { margin: 0; color: #0b1a3e; font-size: 16px; font-weight: var(--pk-semibold); }
.pk-addon-price-chip { display: inline-flex; margin-left: 6px; padding: 3px 8px; border-radius: 7px; background: #f1f5f9; color: #334155; font-size: 11px; font-weight: var(--pk-semibold); }
.pk-addon-item p { margin: 6px 0 0; color: #64748b; font-size: 13px; line-height: 1.45; }
.pk-counter { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.pk-counter button {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 19px;
    font-weight: var(--pk-semibold);
}
.pk-counter button:disabled { opacity: .4; cursor: not-allowed; }
.pk-count { width: 28px; text-align: center; color: #0b1a3e; font-size: 16px; font-weight: var(--pk-semibold); }

.pk-location-card {
    width: 100%;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    box-shadow: 0 22px 56px rgba(15, 23, 42, .11);
    padding: 30px;
}

.pk-location-form {
    display: grid;
    gap: 14px;
}

.pk-location-form label {
    display: block;
    margin-bottom: 4px;
    color: #334155;
    font-size: 11px;
    font-weight: var(--pk-semibold);
}

.pk-location-control,
.pk-location-select {
    width: 100%;
    min-height: 39px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: rgba(248, 250, 252, .7);
    padding: 9px 12px;
    color: #0f172a;
    font-size: 13px;
    font-weight: var(--pk-regular);
    outline: none;
}

.pk-location-phone {
    display: grid;
    grid-template-columns: 58px 54px 1fr;
    min-height: 41px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: rgba(248, 250, 252, .7);
    align-items: center;
    position: relative;
}

.pk-location-phone .pk-country-trigger { min-height: 39px; border-right: 1px solid #e2e8f0; }
.pk-location-phone .pk-dial { min-height: 39px; border-right: 0; color: #64748b; font-size: 12px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.pk-location-phone input { width: 100%; border: 0; background: transparent; outline: none; min-width: 0; padding: 9px 10px; font-size: 13px; }

.pk-upload {
    border: 2px dashed #e2e8f0;
    border-radius: 18px;
    background: rgba(248, 250, 252, .64);
    padding: 24px;
    text-align: center;
    transition: border-color .16s ease, background .16s ease;
}
.pk-upload:hover { border-color: #cbd5e1; background: #f8fafc; }
.pk-upload.is-uploading {
    border-color: #f8b435;
    background: #fff8eb;
    cursor: wait;
}
.pk-upload.is-uploaded {
    border-color: #86efac;
    background: #f0fdf4;
}
.pk-upload.is-error {
    border-color: #fecdd3;
    background: #fff1f2;
}
.pk-upload-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin: 0 auto 10px;
    background: #e2e8f0;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.pk-upload p { margin: 0 0 4px; color: #94a3b8; font-size: 12px; font-weight: var(--pk-regular); }
.pk-upload strong { color: #2563eb; font-size: 12px; }
.pk-upload-note { margin-top: 7px; color: #94a3b8; font-size: 11px; font-weight: var(--pk-regular); }

.pk-success-banner {
    margin-bottom: 16px;
    background: #ecfdf5;
    border: 1px solid rgba(167, 243, 208, .9);
    border-radius: 18px;
    padding: 15px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.pk-success-spark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: #22c55e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 21px;
}
.pk-success-banner-head {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pk-success-banner strong { display: block; color: #064e3b; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.pk-ready-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #d1fae5;
    color: #047857;
    font-size: 10px;
    font-weight: var(--pk-semibold);
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}
.pk-success-banner p { margin: 4px 0 0; color: #065f46; font-size: 12px; font-weight: var(--pk-medium); }
.pk-success-icon {
    position: relative;
    width: 66px;
    height: 66px;
    margin: 10px auto 18px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    box-shadow: 0 12px 28px rgba(3, 32, 86, .08);
}
.pk-success-icon svg {
    width: 40px;
    height: 40px;
    display: block;
    stroke: currentColor;
}
.pk-success-icon::after {
    content: "✓";
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #ffb800;
    color: #020617;
    font-size: 12px;
    font-weight: var(--pk-bold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pk-checklist {
    margin-top: 18px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    display: grid;
    gap: 10px;
    text-align: left;
}
.pk-checkline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(226, 232, 240, .7);
    padding-bottom: 10px;
    font-size: 12px;
}
.pk-checkline:last-child { border-bottom: 0; padding-bottom: 0; }
.pk-check-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.pk-check-left b { display: block; color: #0f172a; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pk-check-left span { display: block; margin-top: 2px; color: #64748b; font-size: 10px; }
.pk-check-left .pk-check-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 22px;
    line-height: 1;
    margin-top: 0;
}
.pk-check-ico svg {
    width: 23px;
    height: 23px;
    display: block;
    stroke: currentColor;
}
.pk-check-ico.blue { background: #dbeafe; color: #032056; }
.pk-check-ico.amber { background: #fef3c7; color: #92400e; }
.pk-check-ico.green { background: #dcfce7; color: #15803d; }
.pk-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 999px;
    background: #dcfce7;
    color: #15803d;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: var(--pk-semibold);
    flex: 0 0 auto;
}

.pk-pay-modal .pk-modal {
    width: min(100%, 820px);
    border-radius: 24px;
    max-height: min(840px, calc(100vh - 28px));
}
.pk-pay-modal .pk-modal-head {
    background: #fff;
    color: #071633;
    border-bottom: 1px solid #f1f5f9;
}
.pk-pay-modal .pk-modal-head p { color: #64748b; }
.pk-pay-modal .pk-modal-close { color: #64748b; }
.pk-pay-body {
    padding: 26px 30px;
    overflow: auto;
    max-height: calc(100vh - 130px);
}
.pk-pay-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 26px;
}
.pk-review-plan {
    border: 2px solid #0b1a3e;
    background: linear-gradient(90deg, rgba(239, 246, 255, .7), #fff, rgba(255, 251, 235, .6));
    border-radius: 14px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.pk-review-plan strong {
    font-weight: var(--pk-semibold) !important;
}
.pk-review-kicker {
    color: #64748b;
    font-size: 11px;
    font-weight: var(--pk-semibold);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.pk-review-row {
    border: 1px solid #e2e8f0;
    background: rgba(248, 250, 252, .7);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #334155;
}
.pk-review-summary {
    background: rgba(248, 250, 252, .88);
    border: 1px solid rgba(226, 232, 240, .88);
    border-radius: 18px;
    padding: 22px;
    display: grid;
    gap: 12px;
}
.pk-review-total {
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #071633;
    font-weight: var(--pk-semibold);
}
.pk-bank-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #071633, #0b255e 55%, #04112c);
    color: #fff;
    padding: 26px;
    box-shadow: 0 16px 40px rgba(7, 22, 51, .32);
}
.pk-bank-top,
.pk-bank-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.pk-bank-number { margin: 22px 0; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 24px; font-weight: var(--pk-semibold); letter-spacing: .04em; }
.pk-copy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.pk-copy-box {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: rgba(248, 250, 252, .78);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.pk-copy-box span { display: block; color: #64748b; font-size: 10px; font-weight: var(--pk-semibold); text-transform: uppercase; letter-spacing: .06em; }
.pk-copy-box strong { display: block; margin-top: 4px; color: #071633; font-size: 14px; font-weight: var(--pk-semibold); }
.pk-instructions {
    margin-top: 14px;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 14px;
    background: #f8fafc;
    padding: 16px;
}
.pk-instruction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.pk-instruction { display: flex; align-items: flex-start; gap: 8px; color: #475569; font-size: 12px; line-height: 1.35; }
.pk-instruction b:first-child {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #071633;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 11px;
}
.pk-payment-actions .pk-studio-back { flex: 0 0 calc(16% - 7px); }
.pk-payment-actions .pk-studio-next {
    flex: 1 1 calc(84% - 7px);
    min-height: 50px;
    font-size: 14px;
}
.pk-receipt {
    max-width: 460px;
    margin: 18px auto 0;
    background: rgba(248, 250, 252, .9);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
    display: grid;
    gap: 10px;
    text-align: left;
    font-size: 12px;
}

.pk-title:focus,
.pk-studio-heading:focus { outline: none; }

[data-onboarding-root] strong,
[data-onboarding-root] b { font-weight: var(--pk-semibold); }
[data-onboarding-root] [style*="font-weight:900"],
[data-onboarding-root] [style*="font-weight:950"],
[data-onboarding-root] [style*="font-weight:850"],
[data-onboarding-root] [style*="font-weight:750"] { font-weight: var(--pk-semibold) !important; }

.pk-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .54);
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.pk-modal {
    width: min(100%, 620px);
    max-height: min(760px, calc(100vh - 40px));
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, .3);
}

.pk-modal-head {
    background: var(--pk-navy);
    color: #fff;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pk-modal-head h2 { margin: 0; font-size: 18px; font-weight: var(--pk-semibold); }
.pk-modal-head p { margin: 3px 0 0; color: rgba(255, 255, 255, .78); font-size: 12px; }
.pk-modal-close {
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 24px;
}

.pk-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--pk-line);
}

.pk-tabs button {
    border: 0;
    background: #fff;
    padding: 14px;
    color: #64748b;
    font-weight: var(--pk-semibold);
}

.pk-tabs button.is-active {
    color: var(--pk-navy);
    box-shadow: inset 0 -2px 0 var(--pk-navy);
}

.pk-modal-body {
    padding: 24px;
    overflow: auto;
    max-height: calc(100vh - 230px);
}

.pk-faq {
    background: #f8fafc;
    border: 1px solid var(--pk-line);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
}

.pk-faq h3 { margin: 0; font-size: 15px; }
.pk-faq p { margin: 9px 0 0; color: #64748b; line-height: 1.55; font-size: 13px; }

.pk-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.pk-support-box {
    border: 1px solid var(--pk-line);
    border-radius: 10px;
    padding: 14px;
    background: #fbfdff;
}

.pk-support-box strong { display: block; color: var(--pk-navy); }
.pk-support-box span { display: block; margin-top: 6px; color: var(--pk-muted); font-size: 12px; }

@media (max-width: 760px) {
    .pk-shell { padding: 28px 14px; justify-content: flex-start; }
    .pk-card { padding: 28px 20px 22px; border-radius: 12px; }
    .pk-title { font-size: 22px; }
    .pk-grid-2, .pk-support-grid, .pk-pricing-grid, .pk-pay-grid, .pk-copy-grid, .pk-instruction-grid { grid-template-columns: 1fr; }
    .pk-phone-row { grid-template-columns: 62px 54px 1fr; }
    .pk-country-menu { width: 100%; max-height: 240px; }
    .pk-otp { gap: 7px; }
    .pk-otp input { width: 42px; height: 50px; border-radius: 11px; font-size: 18px; }
    .pk-footer { flex-wrap: wrap; gap: 10px; }
    .pk-studio-heading { font-size: 22px; }
    .pk-studio-panel, .pk-location-card { padding: 24px 20px; border-radius: 18px; }
    .pk-stepper { margin-bottom: 28px; }
    .pk-step { width: 40px; height: 40px; }
    .pk-verification-stepper { width: min(100%, 280px); gap: 34px; margin-bottom: 26px; }
    .pk-verification-panel { padding: 28px 20px 24px; border-radius: 18px; }
    .pk-verification-icon { width: 58px; height: 58px; border-radius: 18px; }
    .pk-identity-card { grid-template-columns: 1fr; text-align: center; }
    .pk-identity-card strong { white-space: normal; overflow-wrap: anywhere; }
    .pk-pricing-wrap { border-radius: 18px; }
    .pk-plan-card { border-right: 0; border-bottom: 1px solid #f1f5f9; min-height: 330px; padding: 28px 22px; }
    .pk-plan-card:last-child { border-bottom: 0; }
    .pk-feature-row { grid-template-columns: 4fr repeat(3, 1fr); padding: 0 14px; font-size: 11px; }
    .pk-addon-item { align-items: stretch; flex-direction: column; padding: 18px; }
    .pk-addon-main { gap: 12px; }
    .pk-counter { align-self: flex-end; }
    .pk-button-row { gap: 10px; }
    .pk-pay-body { padding: 22px 16px; }
    .pk-review-plan { flex-direction: column; }
    .pk-bank-number { font-size: 20px; }
}

@media (max-width: 380px) {
    .pk-card { padding-left: 14px; padding-right: 14px; }
    .pk-phone-row { grid-template-columns: 58px 50px 1fr; }
    .pk-otp input { width: 38px; height: 47px; }
    .pk-verification-panel { padding-left: 14px; padding-right: 14px; }
    .pk-verification-stepper { gap: 18px; }
    .pk-verification-stepper span { min-width: 74px; }
    .pk-location-phone { grid-template-columns: 52px 48px 1fr; }
    .pk-feature-row { padding: 0 10px; }
    .pk-addon-price-chip { display: block; margin: 6px 0 0; width: fit-content; }
}
