/* Kayıt wizard — landing teması (Poppins/Inter, --accent #4f7ce7) */
.kayit-section { background: var(--bg-light); padding: 40px 50px 80px; }
.kayit-wrap { max-width: 920px; margin: 0 auto; }

/* ── Stepper ── */
.kayit-stepper {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 20px 22px 18px;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.kayit-stepper-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.kayit-stepper-kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.kayit-stepper-meta strong {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.kayit-stepper-count {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(79, 124, 231, 0.1);
    border-radius: 999px;
    padding: 6px 12px;
    white-space: nowrap;
}

.kayit-stepper-bar {
    height: 6px;
    border-radius: 999px;
    background: #e8eef6;
    overflow: hidden;
    margin-bottom: 18px;
}

.kayit-stepper-fill {
    height: 100%;
    width: 25%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), #6996ff);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.kayit-stepper-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.kayit-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.kayit-step-dot {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #dbe2ea;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    transition: all 0.25s ease;
}

.kayit-step-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.kayit-step-index {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.kayit-step-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    font-family: var(--font-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kayit-step.is-active {
    background: rgba(79, 124, 231, 0.08);
    border-color: rgba(79, 124, 231, 0.22);
    box-shadow: 0 8px 20px -14px rgba(79, 124, 231, 0.55);
}

.kayit-step.is-active .kayit-step-dot {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 18px -8px rgba(79, 124, 231, 0.7);
}

.kayit-step.is-active .kayit-step-index { color: var(--accent); }
.kayit-step.is-active .kayit-step-label { color: var(--primary-blue); }

.kayit-step.is-done .kayit-step-dot {
    border-color: #10b981;
    background: #ecfdf5;
    color: #059669;
}

.kayit-step.is-done .kayit-step-index { color: #059669; }
.kayit-step.is-done .kayit-step-label { color: var(--text-dark); }

.kayit-step .step-check.is-hidden,
.kayit-step .step-icon.is-hidden { display: none !important; }
.kayit-step.is-done .step-icon { display: none !important; }
.kayit-step.is-done .step-check { display: inline-block !important; }

.kayit-card {
    background: #fff; border: 1px solid var(--border-light); border-radius: 18px;
    padding: 32px; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.kayit-panel { display: none; animation: kayitFade .28s ease; }
.kayit-panel.is-active { display: block; }
@keyframes kayitFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

.kayit-panel-head { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.kayit-panel-head h2 {
    font-family: var(--font-heading); font-size: 22px; font-weight: 700;
    color: var(--text-dark); margin: 0 0 6px;
}
.kayit-panel-head p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.5; }

.kayit-fields { display: flex; flex-direction: column; gap: 18px; }
.kayit-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.kayit-span-2 { grid-column: 1 / -1; }
.kayit-field label {
    display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px;
}
.kayit-field label .hint { font-weight: 500; color: var(--text-muted); }
.kayit-field label .status { margin-left: 6px; font-size: 11px; font-weight: 700; }
.status-accent { color: var(--accent); }

.kayit-input,
.kayit-field textarea {
    width: 100%; border: 1px solid #dbe2ea; border-radius: 12px;
    padding: 14px 16px; font: inherit; color: var(--text-dark); background: #fff;
    transition: border-color .2s, box-shadow .2s; outline: none;
}
.kayit-field textarea { resize: none; min-height: 84px; }
.kayit-input:focus,
.kayit-field textarea:focus {
    border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79, 124, 231, 0.14);
}
.kayit-input.is-error { border-color: #ef4444 !important; background: #fef2f2 !important; }
.kayit-input.is-ok { border-color: #10b981 !important; background: #f0fdf4 !important; }
.kayit-input.has-suffix { padding-right: 148px; }
.kayit-input.is-accent { color: var(--accent); font-weight: 700; }
.kayit-ref { text-transform: uppercase; letter-spacing: .12em; }

.kayit-input-wrap { position: relative; }
.kayit-input-wrap .toggle-eye {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    border: 0; background: none; color: #94a3b8; cursor: pointer; padding: 4px;
}
.kayit-input-wrap .toggle-eye:hover { color: var(--text-dark); }
.kayit-input-wrap .suffix {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    font-size: 11px; font-weight: 700; color: #64748b; background: #fff;
    border: 1px solid var(--border-light); border-radius: 8px; padding: 5px 10px; white-space: nowrap;
}

.kayit-link-box {
    background: #eff6ff; border: 1px solid #dbeafe; border-radius: 16px; padding: 18px 20px;
}
.kayit-link-box label { color: var(--accent) !important; }
.kayit-link-help { margin: 12px 0 0; font-size: 13px; color: #475569; line-height: 1.55; }
.kayit-link-help strong { color: var(--accent); }

.kayit-note {
    border-radius: 14px; padding: 14px 16px; font-size: 13px; font-weight: 500; line-height: 1.5;
}
.kayit-note--violet { background: #f5f3ff; border: 1px solid #ddd6fe; color: #5b21b6; }
.kayit-note--amber { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.kayit-hint { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.kayit-center { text-align: center; margin-top: 16px; }

.kayit-paket-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.kayit-paket {
    border: 2px solid var(--border-light); border-radius: 16px; padding: 20px;
    cursor: pointer; background: #fff; transition: border-color .2s, box-shadow .2s, background .2s;
    height: 100%; text-align: left;
}
.kayit-paket:hover { border-color: #a2beff; box-shadow: 0 8px 24px rgba(79, 124, 231, 0.12); }
.kayit-paket.is-active {
    border-color: var(--accent);
    background: linear-gradient(180deg, #eff6ff 0%, #fff 45%);
    box-shadow: 0 12px 28px rgba(79, 124, 231, 0.16);
}
.kayit-paket-top { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.kayit-paket-title { display: flex; gap: 12px; align-items: flex-start; min-width: 0; }
.kayit-check {
    width: 20px; height: 20px; border-radius: 999px; border: 2px solid #cbd5e1;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.kayit-paket.is-active .kayit-check { background: var(--accent); border-color: var(--accent); color: #fff; }
.kayit-check i { font-size: 9px; display: none; }
.kayit-paket.is-active .kayit-check i { display: block; }
.kayit-paket h3 {
    margin: 0; font-family: var(--font-heading); font-size: 16px; font-weight: 700;
    color: var(--text-dark); line-height: 1.3;
}
.kayit-badge {
    display: inline-block; margin-top: 6px; font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .06em; color: var(--accent);
    background: #dbeafe; padding: 3px 8px; border-radius: 6px;
}
.kayit-price { text-align: right; flex-shrink: 0; }
.kayit-price strong {
    display: block; font-family: var(--font-heading); font-size: 22px; font-weight: 700;
    color: var(--text-dark); line-height: 1;
}
.kayit-price span { display: block; margin-top: 4px; font-size: 11px; font-weight: 600; color: var(--text-muted); }
.kayit-feat-list {
    border-top: 1px solid var(--border-light); padding-top: 14px;
    max-height: 280px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px;
}
.kayit-feat {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 13px; font-weight: 500; color: #334155; line-height: 1.4;
}
.kayit-feat i { width: 16px; text-align: center; margin-top: 2px; flex-shrink: 0; font-size: 11px; }
.feat-emerald { color: #10b981; }
.feat-accent { color: var(--accent); }
.feat-amber { color: #f59e0b; }
.feat-slate { color: #94a3b8; }
.feat-violet { color: #8b5cf6; }
.feat-rose { color: #f43f5e; }

.kayit-type-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kayit-type {
    border: 2px solid var(--border-light); border-radius: 12px; padding: 14px;
    text-align: center; font-size: 13px; font-weight: 700; color: #64748b;
    cursor: pointer; transition: .2s; background: #fff;
}
.kayit-type input { display: none; }
.kayit-type.is-on {
    border-color: var(--accent); background: #eff6ff; color: var(--accent);
}

.kayit-agree {
    background: var(--bg-light); border: 1px solid var(--border-light);
    border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 14px;
}
.kayit-agree-item { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.kayit-agree-box {
    width: 20px; height: 20px; border-radius: 6px; border: 2px solid #cbd5e1;
    background: #fff; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.kayit-agree-box.is-on { background: var(--accent); border-color: var(--accent); color: #fff; }
.kayit-agree-box i { font-size: 9px; display: none; }
.kayit-agree-box.is-on i { display: block; }
.kayit-agree-item p { margin: 0; font-size: 13px; color: #475569; line-height: 1.5; font-weight: 500; }
.kayit-agree-item .link { color: var(--accent); font-weight: 700; text-decoration: underline; }

.kayit-nav {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border-light);
}
.kayit-nav-spacer { flex: 1; }
.kayit-trust {
    display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
    margin-top: 18px; font-size: 11px; font-weight: 600; color: #94a3b8;
}
.kayit-trust span { display: inline-flex; align-items: center; gap: 6px; }
.kayit-trust .ok { color: #16a34a; }
.kayit-trust .acc { color: var(--accent); }

.btn-ghost-kayit {
    background: #fff; color: #475569; font-weight: 700; border: 1.5px solid var(--border-light);
    border-radius: 12px; padding: 13px 18px; cursor: pointer; font: inherit; transition: .2s;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-ghost-kayit:hover { background: var(--bg-light); border-color: #cbd5e1; }
.btn-kayit-cta {
    background: var(--accent); color: #fff; font-weight: 700; border: 0;
    border-radius: 12px; padding: 13px 22px; cursor: pointer; font: inherit; transition: .2s;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 10px 24px -10px rgba(79, 124, 231, 0.55);
}
.btn-kayit-cta:hover { background: #3d6ad4; }
.btn-kayit-cta:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; }
.btn-kayit-cta.is-trial { background: #059669; box-shadow: 0 10px 24px -10px rgba(5, 150, 105, .45); }
.btn-kayit-cta.is-trial:hover { background: #047857; }

.is-hidden { display: none !important; }
.text-ok { color: #059669 !important; }
.text-err { color: #dc2626 !important; }
.text-muted-sm { color: #94a3b8 !important; }

.loader {
    width: 13px; height: 13px; border: 2px solid var(--accent);
    border-bottom-color: transparent; border-radius: 50%;
    display: inline-block; animation: kayitSpin 1s linear infinite; vertical-align: middle;
}
.loader.light { border-color: #fff; border-bottom-color: transparent; }
@keyframes kayitSpin { to { transform: rotate(360deg); } }

.select2-container--default .select2-selection--single {
    background: #fff; border: 1px solid #dbe2ea; border-radius: 12px;
    height: auto; padding: 11px 14px; font-size: 14px; transition: border-color .2s, box-shadow .2s;
}
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79, 124, 231, 0.14);
}
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 100%; top: 0; right: 12px; }
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text-dark); padding-left: 0; line-height: 1.5;
}
.select2-dropdown { border: 1px solid var(--border-light); border-radius: 12px; box-shadow: var(--shadow); z-index: 9999; }
.select2-results__option--highlighted[aria-selected] { background: var(--accent) !important; }

dialog.kayit-modal {
    width: min(95%, 640px); border: 0; border-radius: 18px; padding: 0;
    box-shadow: var(--shadow); background: #fff; overflow: hidden;
}
dialog.kayit-modal::backdrop { background: rgba(15, 23, 42, .65); backdrop-filter: blur(4px); }
.kayit-modal-head {
    background: var(--primary-blue); color: #fff; padding: 18px 22px;
    display: flex; justify-content: space-between; align-items: center;
}
.kayit-modal-head.is-accent { background: var(--accent); }
.kayit-modal-head h3 {
    margin: 0; font-family: var(--font-heading); font-size: 13px;
    font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.kayit-modal-head button { background: none; border: 0; color: rgba(255,255,255,.7); cursor: pointer; font-size: 18px; }
.kayit-modal-head button:hover { color: #fff; }
.kayit-modal-body {
    padding: 24px 28px; max-height: 50vh; overflow-y: auto;
    font-size: 14px; color: #475569; line-height: 1.6;
}
.kayit-modal-foot {
    padding: 18px 22px; border-top: 1px solid var(--border-light); background: var(--bg-light);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.kayit-modal-foot p {
    margin: 0; font-size: 11px; font-weight: 700; color: #94a3b8;
    text-transform: uppercase; letter-spacing: .06em;
}
.kayit-modal-foot .btn-kayit-cta { width: 100%; }
.kayit-modal-foot .btn-kayit-cta:disabled { background: #cbd5e1; opacity: 1; }

@media (max-width: 900px) {
    .kayit-stepper-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .kayit-section { padding: 28px 18px 60px; }
    .kayit-card { padding: 22px 18px; }
    .kayit-grid-2, .kayit-paket-grid, .kayit-type-row { grid-template-columns: 1fr; }
    .kayit-nav { flex-direction: column-reverse; align-items: stretch; }
    .kayit-stepper { padding: 16px; }
    .kayit-stepper-meta strong { font-size: 16px; }
    .kayit-stepper-list { gap: 8px; }
    .kayit-step { padding: 8px 10px; gap: 8px; }
    .kayit-step-dot { width: 34px; height: 34px; border-radius: 10px; font-size: 12px; }
    .kayit-step-label { font-size: 12px; }
}
