:root {
    --kartify-yellow: #f6d63f;
    --kartify-dark: #171716;
    --kartify-text: #2d2c2b;
    --kartify-gray: #777773;
    --kartify-light: #f5f5f1;
    --kartify-border: #deded8;
    --kartify-white: #ffffff;
    --kartify-danger: #b42318;
    --kartify-success: #067647;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.kartify-body {
    margin: 0;
    color: var(--kartify-text);
    background: var(--kartify-white);
}

.kartify-header {
    position: relative;
    z-index: 20;
    background: var(--kartify-white);
    border-bottom: 1px solid var(--kartify-border);
}

.kartify-nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.kartify-logo,
.public-logo {
    color: var(--kartify-dark);
    font-size: 29px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -1.5px;
}

.kartify-logo span,
.public-logo span {
    color: var(--kartify-yellow);
}

.kartify-nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.kartify-nav-links > a,
.nav-logout {
    color: var(--kartify-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.inline-form {
    display: inline-flex;
    margin: 0;
}

.nav-logout {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.kartify-small-button {
    padding: 12px 18px;
    background: var(--kartify-dark);
    color: var(--kartify-white) !important;
    border-radius: 50px;
}

.kartify-hero {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(246, 214, 63, 0.25),
            transparent 34%
        ),
        var(--kartify-light);
}

.min-vh-75 {
    min-height: 75vh;
}

.kartify-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--kartify-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.kartify-hero h1 {
    max-width: 720px;
    margin: 0 0 25px;
    color: var(--kartify-dark);
    font-size: clamp(54px, 7vw, 105px);
    line-height: 0.93;
    letter-spacing: -6px;
}

.kartify-hero h1 span {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.kartify-hero h1 span::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 22px;
    background: var(--kartify-yellow);
    transform: rotate(-1deg);
}

.hero-description {
    max-width: 620px;
    color: #5c5c58;
    font-size: 19px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.kartify-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 27px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.kartify-button.primary {
    color: var(--kartify-dark);
    background: var(--kartify-yellow);
}

.kartify-button.primary:hover {
    color: var(--kartify-white);
    background: var(--kartify-dark);
}

.kartify-button.secondary {
    color: var(--kartify-dark);
    background: transparent;
    border-color: var(--kartify-dark);
}

.kartify-button.secondary:hover {
    color: var(--kartify-white);
    background: var(--kartify-dark);
}

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: var(--kartify-gray);
    font-size: 14px;
}

.phone-demo {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-frame {
    width: 315px;
    min-height: 620px;
    padding: 15px;
    border: 9px solid var(--kartify-dark);
    border-radius: 48px;
    background: var(--kartify-white);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
    transform: rotate(4deg);
}

.phone-notch {
    width: 115px;
    height: 25px;
    margin: -1px auto 35px;
    border-radius: 0 0 20px 20px;
    background: var(--kartify-dark);
}

.phone-profile {
    padding: 12px;
    text-align: center;
}

.demo-avatar {
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: var(--kartify-dark);
    background: var(--kartify-yellow);
    font-size: 40px;
    font-weight: 800;
}

.phone-profile h3 {
    margin: 0 0 4px;
    font-size: 24px;
}

.phone-profile p {
    margin-bottom: 30px;
    color: var(--kartify-gray);
    font-size: 13px;
}

.demo-link {
    margin-bottom: 12px;
    padding: 16px;
    border-radius: 16px;
    color: var(--kartify-white);
    background: var(--kartify-dark);
    font-weight: 700;
}

.demo-link.yellow {
    color: var(--kartify-dark);
    background: var(--kartify-yellow);
}

.nfc-circle {
    position: absolute;
    right: 4%;
    bottom: 17%;
    width: 135px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    color: var(--kartify-dark);
    background: var(--kartify-yellow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(-8deg);
}

.nfc-circle span {
    font-size: 30px;
    font-weight: 900;
}

.nfc-circle small {
    font-weight: 700;
}

.kartify-section {
    padding: 110px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-heading h2,
.dark-section h2,
.kartify-cta h2 {
    margin: 0;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -4px;
}

.step-card {
    height: 100%;
    min-height: 315px;
    padding: 38px;
    border: 1px solid var(--kartify-border);
    border-radius: 28px;
    background: var(--kartify-white);
    transition: 0.25s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: block;
    margin-bottom: 60px;
    color: var(--kartify-yellow);
    font-size: 44px;
    font-weight: 900;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 27px;
}

.step-card p {
    color: var(--kartify-gray);
    font-size: 17px;
    line-height: 1.65;
}

.dark-section {
    color: var(--kartify-white);
    background: var(--kartify-dark);
}

.dark-section h2 {
    color: var(--kartify-white);
}

.dark-section p {
    max-width: 620px;
    color: #b9b9b3;
    font-size: 19px;
    line-height: 1.7;
}

.yellow-text {
    color: var(--kartify-yellow);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.feature-item {
    padding: 20px;
    border: 1px solid #393936;
    border-radius: 16px;
    background: #222220;
}

.feature-item span {
    margin-right: 8px;
    color: var(--kartify-yellow);
}

.kartify-cta {
    padding: 110px 20px;
    background: var(--kartify-yellow);
}

.kartify-cta p {
    max-width: 650px;
    margin: 22px auto 30px;
    font-size: 19px;
}

.kartify-footer {
    padding: 50px 0;
    border-top: 1px solid var(--kartify-border);
    background: var(--kartify-white);
}

.footer-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.footer-row p {
    margin: 12px 0 0;
    color: var(--kartify-gray);
}

/* Bildirimler */

.flash-wrapper {
    padding-top: 20px;
}

.kartify-alert {
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 15px;
}

.kartify-alert.success {
    color: var(--kartify-success);
    border: 1px solid #abefc6;
    background: #ecfdf3;
}

.kartify-alert.error {
    color: var(--kartify-danger);
    border: 1px solid #fecdca;
    background: #fef3f2;
}

/* Formlar */

.auth-section {
    min-height: calc(100vh - 160px);
    display: grid;
    place-items: center;
    padding: 70px 20px;
    background: var(--kartify-light);
}

.auth-card {
    width: 100%;
    max-width: 540px;
    padding: 45px;
    border: 1px solid var(--kartify-border);
    border-radius: 28px;
    background: var(--kartify-white);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.07);
}

.auth-card h1 {
    margin: 0 0 10px;
    font-size: 40px;
    letter-spacing: -2px;
}

.auth-card > p {
    margin-bottom: 30px;
    color: var(--kartify-gray);
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--kartify-dark);
    font-size: 14px;
    font-weight: 750;
}

.form-group input,
.admin-create-card input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid var(--kartify-border);
    border-radius: 13px;
    background: var(--kartify-white);
    outline: none;
    font-size: 16px;
}

.form-group input[type="file"] {
    height: auto;
    padding: 14px;
}

.form-group input:focus,
.admin-create-card input:focus {
    border-color: var(--kartify-dark);
    box-shadow: 0 0 0 3px rgba(246, 214, 63, 0.3);
}

.form-group small {
    display: block;
    margin-top: 7px;
    color: var(--kartify-gray);
}

.auth-bottom {
    margin-top: 25px;
    text-align: center;
    color: var(--kartify-gray);
}

.auth-bottom a,
.back-link {
    color: var(--kartify-dark);
    font-weight: 750;
}

.back-link {
    display: inline-block;
    margin-top: 25px;
}

.register-progress {
    max-width: 190px;
    display: flex;
    align-items: center;
    margin: 0 auto 35px;
}

.register-progress span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 2px solid var(--kartify-border);
    border-radius: 50%;
    color: var(--kartify-gray);
    background: var(--kartify-white);
    font-weight: 800;
}

.register-progress span.active {
    color: var(--kartify-dark);
    border-color: var(--kartify-yellow);
    background: var(--kartify-yellow);
}

.register-progress i {
    width: 100%;
    height: 3px;
    display: block;
    background: var(--kartify-border);
}

.register-progress i.active {
    background: var(--kartify-yellow);
}

.card-code-input {
    height: 76px !important;
    text-align: center;
    font-size: 34px !important;
    font-weight: 850;
    letter-spacing: 12px;
}

/* Panel */

.dashboard-section {
    min-height: 75vh;
    padding: 75px 0;
    background: var(--kartify-light);
}

.dashboard-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 30px;
}

.dashboard-heading h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 62px);
    letter-spacing: -3px;
}

.profile-url-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px 24px;
    border-radius: 16px;
    color: var(--kartify-white);
    background: var(--kartify-dark);
}

.profile-url-box span {
    color: #aaa9a4;
}

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

.settings-card,
.admin-table-card {
    padding: 30px;
    border: 1px solid var(--kartify-border);
    border-radius: 22px;
    background: var(--kartify-white);
}

.settings-card h2 {
    margin: 0 0 25px;
    font-size: 25px;
}

.current-profile-photo {
    width: 95px;
    height: 95px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.field-with-switch,
.visibility-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.field-with-switch .form-group {
    flex: 1;
}

.visibility-row {
    justify-content: space-between;
    margin: -4px 0 25px;
}

.switch {
    position: relative;
    width: 50px;
    height: 28px;
    display: inline-block;
    flex: 0 0 50px;
    cursor: pointer;
}

.switch input {
    width: 0;
    height: 0;
    opacity: 0;
}

.slider {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: #c9c9c3;
    transition: 0.2s;
}

.slider::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: var(--kartify-white);
    transition: 0.2s;
}

.switch input:checked + .slider {
    background: var(--kartify-dark);
}

.switch input:checked + .slider::before {
    transform: translateX(22px);
    background: var(--kartify-yellow);
}

.save-bar {
    position: sticky;
    z-index: 10;
    bottom: 15px;
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
    padding: 15px;
    border: 1px solid var(--kartify-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

/* Admin */

.admin-create-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.admin-create-card h2 {
    margin-bottom: 5px;
}

.admin-create-card p {
    margin: 0;
    color: var(--kartify-gray);
}

.admin-create-card form {
    min-width: 420px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-table-card {
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
}

.kartify-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.kartify-table th,
.kartify-table td {
    padding: 16px 13px;
    border-bottom: 1px solid var(--kartify-border);
    text-align: left;
    white-space: nowrap;
}

.kartify-table th {
    color: var(--kartify-gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.status-badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
}

.status-badge.active {
    color: #067647;
    background: #dcfae6;
}

.status-badge.disabled {
    color: #b42318;
    background: #fee4e2;
}

.status-badge.unclaimed {
    color: #854a0e;
    background: #fef0c7;
}

.table-action-button {
    padding: 7px 10px;
    border: 1px solid var(--kartify-border);
    border-radius: 9px;
    color: var(--kartify-dark);
    background: var(--kartify-white);
    cursor: pointer;
}

.pagination-wrapper {
    margin-top: 25px;
}

/* Herkese a癟覺k profil */

.public-profile-body {
    min-height: 100vh;
    margin: 0;
    color: var(--kartify-dark);
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(246, 214, 63, 0.35),
            transparent 38%
        ),
        #efefe9;
    font-family: Arial, Helvetica, sans-serif;
}

.public-profile-wrapper {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px 15px;
}

.public-profile-card {
    width: 100%;
    max-width: 470px;
    padding: 34px 25px 25px;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.public-logo {
    display: inline-block;
    margin-bottom: 28px;
    font-size: 23px;
}

.public-avatar {
    width: 112px;
    height: 112px;
    display: block;
    margin: 0 auto 20px;
    border: 5px solid var(--kartify-white);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
}

.public-avatar.fallback {
    display: grid;
    place-items: center;
    color: var(--kartify-dark);
    background: var(--kartify-yellow);
    font-size: 48px;
    font-weight: 900;
}

.public-profile-card h1 {
    margin: 0;
    font-size: 32px;
    letter-spacing: -1.5px;
}

.profile-caption {
    margin: 7px 0 27px;
    color: var(--kartify-gray);
    font-size: 14px;
}

.public-links {
    display: grid;
    gap: 11px;
}

.public-link {
    width: 100%;
    min-height: 62px;
    display: grid;
    grid-template-columns: 38px 1fr 30px;
    align-items: center;
    padding: 10px 14px;
    border: 0;
    border-radius: 17px;
    color: var(--kartify-white);
    background: var(--kartify-dark);
    font-family: inherit;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    transition: 0.18s ease;
}

.public-link:hover {
    color: var(--kartify-dark);
    background: var(--kartify-yellow);
    transform: translateY(-2px);
}

.public-link-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--kartify-dark);
    background: var(--kartify-yellow);
    font-weight: 900;
}

.public-link:hover .public-link-icon {
    background: var(--kartify-white);
}

.public-link-arrow {
    text-align: right;
    font-size: 20px;
}

.iban-copy-button {
    color: var(--kartify-dark);
    background: var(--kartify-yellow);
}

.iban-copy-button .public-link-icon {
    background: var(--kartify-white);
}

.public-profile-footer {
    margin-top: 27px;
    color: #969690;
    font-size: 12px;
}

/* Mobil */

@media (max-width: 991px) {
    .kartify-nav {
        min-height: 70px;
    }

    .kartify-nav-links > a:first-child {
        display: none;
    }

    .kartify-hero {
        padding: 70px 0;
    }

    .kartify-hero h1 {
        letter-spacing: -4px;
    }

    .phone-demo {
        min-height: 580px;
        margin-top: 35px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .admin-create-card {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-create-card form {
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .kartify-nav-links {
        gap: 13px;
    }

    .kartify-nav-links > a:not(.kartify-small-button) {
        display: none;
    }

    .kartify-small-button {
        padding: 10px 13px;
        font-size: 12px !important;
    }

    .kartify-hero h1 {
        font-size: 53px;
        letter-spacing: -3px;
    }

    .kartify-hero h1 span::after {
        height: 12px;
    }

    .phone-demo {
        min-height: 530px;
    }

    .phone-frame {
        width: 270px;
        min-height: 525px;
    }

    .nfc-circle {
        right: 0;
        width: 105px;
        height: 105px;
    }

    .nfc-circle span {
        font-size: 24px;
    }

    .kartify-section {
        padding: 75px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-row,
    .dashboard-heading,
    .profile-url-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .auth-card {
        padding: 32px 21px;
        border-radius: 22px;
    }

    .auth-card h1 {
        font-size: 34px;
    }

    .dashboard-section {
        padding: 55px 0;
    }

    .settings-card,
    .admin-table-card {
        padding: 21px;
    }

    .admin-create-card form {
        align-items: stretch;
        flex-direction: column;
    }

    .save-bar .kartify-button {
        width: 100%;
    }
}

/* =====================================================
   KARTIFY KAYIT EKRANLARI
===================================================== */

.kr-page {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 75px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(246, 214, 63, 0.22),
            transparent 30%
        ),
        #f5f5f1;
}

.kr-page::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -130px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(45, 44, 43, 0.09);
    border-radius: 50%;
}

.kr-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    overflow: hidden;
    border: 1px solid #deded7;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(35, 35, 32, 0.12);
}

/* Sol tanıtım alanı */

.kr-side {
    position: relative;
    min-height: 700px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 55px;
    overflow: hidden;
    color: #fff;
    background: #2d2c2b;
}

.kr-side.yellow {
    color: #2d2c2b;
    background: #f6d63f;
}

.kr-side::before {
    content: attr(data-step);
    position: absolute;
    right: -30px;
    bottom: -65px;
    color: rgba(255, 255, 255, 0.035);
    font-family: var(--alt-font);
    font-size: 300px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -20px;
}

.kr-side.yellow::before {
    color: rgba(45, 44, 43, 0.055);
}

.kr-side::after {
    content: "";
    position: absolute;
    top: -75px;
    right: -75px;
    width: 220px;
    height: 220px;
    border: 2px solid rgba(246, 214, 63, 0.18);
    border-radius: 50%;
}

.kr-side.yellow::after {
    border-color: rgba(45, 44, 43, 0.15);
}

.kr-side-content,
.kr-side-footer {
    position: relative;
    z-index: 2;
}

.kr-side-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 42px;
    padding: 8px 13px;
    border: 1px solid #4b4a47;
    border-radius: 100px;
    color: #f6d63f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.kr-side.yellow .kr-side-badge {
    color: #2d2c2b;
    border-color: rgba(45, 44, 43, 0.25);
    background: rgba(255, 255, 255, 0.25);
}

.kr-side h2 {
    max-width: 520px;
    margin: 0 0 23px;
    color: #fff;
    font-family: var(--alt-font);
    font-size: clamp(47px, 5vw, 74px);
    font-weight: 650;
    line-height: 0.95;
    letter-spacing: -5px;
}

.kr-side.yellow h2 {
    color: #2d2c2b;
}

.kr-side-description {
    max-width: 480px;
    margin: 0;
    color: #b8b7b2;
    font-size: 17px;
    line-height: 1.7;
}

.kr-side.yellow .kr-side-description {
    color: rgba(45, 44, 43, 0.75);
}

.kr-benefits {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kr-benefits li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #d1d0ca;
    font-size: 14px;
}

.kr-side.yellow .kr-benefits li {
    color: #2d2c2b;
}

.kr-benefit-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    flex: 0 0 31px;
    border-radius: 50%;
    color: #2d2c2b;
    background: #f6d63f;
    font-size: 12px;
}

.kr-side.yellow .kr-benefit-icon {
    background: #fff;
}

/* Form tarafı */

.kr-form-side {
    display: flex;
    align-items: center;
    padding: 55px 65px;
    background: #fff;
}

.kr-form-container {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.kr-progress {
    display: flex;
    align-items: center;
    margin-bottom: 42px;
}

.kr-progress-step {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #a5a49e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    white-space: nowrap;
}

.kr-progress-number {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 2px solid #deded7;
    border-radius: 50%;
    background: #fff;
    font-size: 12px;
}

.kr-progress-step.active {
    color: #2d2c2b;
}

.kr-progress-step.active .kr-progress-number {
    color: #2d2c2b;
    border-color: #f6d63f;
    background: #f6d63f;
}

.kr-progress-step.completed .kr-progress-number {
    color: #fff;
    border-color: #2d2c2b;
    background: #2d2c2b;
}

.kr-progress-line {
    width: 100%;
    height: 2px;
    margin: 0 13px;
    background: #deded7;
}

.kr-progress-line.completed {
    background: #2d2c2b;
}

.kr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: #2d2c2b;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.7px;
}

.kr-eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: #f6d63f;
}

.kr-form-container h1 {
    margin: 0 0 10px;
    color: #2d2c2b;
    font-family: var(--alt-font);
    font-size: clamp(38px, 4vw, 53px);
    font-weight: 650;
    line-height: 1;
    letter-spacing: -3px;
}

.kr-form-description {
    margin: 0 0 32px;
    color: #777773;
    font-size: 15px;
    line-height: 1.65;
}

/* Form alanları */

.kr-field {
    margin-bottom: 20px;
}

.kr-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.kr-label {
    display: block;
    margin-bottom: 8px;
    color: #2d2c2b;
    font-size: 13px;
    font-weight: 750;
}

.kr-input-wrapper {
    position: relative;
}

.kr-input-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 17px;
    color: #898983;
    font-size: 17px;
    transform: translateY(-50%);
}

.kr-input {
    width: 100%;
    height: 57px;
    padding: 0 50px 0 47px;
    border: 1px solid #deded7;
    border-radius: 14px;
    outline: none;
    color: #2d2c2b;
    background: #f7f7f3;
    font-size: 15px;
    transition: 0.2s ease;
}

.kr-input:focus {
    border-color: #2d2c2b;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(246, 214, 63, 0.3);
}

.kr-input::placeholder {
    color: #aaa9a4;
}

.kr-password-toggle {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 13px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 9px;
    color: #898983;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.kr-password-toggle:hover {
    color: #2d2c2b;
    background: #f6d63f;
}

.kr-help {
    display: block;
    margin-top: 7px;
    color: #8b8a85;
    font-size: 11px;
}

.kr-strength {
    height: 4px;
    margin-top: 9px;
    overflow: hidden;
    border-radius: 10px;
    background: #e9e9e4;
}

.kr-strength-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #d92d20;
    transition: 0.25s ease;
}

.kr-submit {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 8px;
    border: 0;
    border-radius: 100px;
    color: #2d2c2b;
    background: #f6d63f;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
    transition: 0.2s ease;
}

.kr-submit:hover:not(:disabled) {
    color: #fff;
    background: #2d2c2b;
    transform: translateY(-2px);
}

.kr-submit:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.kr-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 17px;
    color: #8b8a85;
    font-size: 11px;
}

.kr-security i {
    color: #067647;
}

.kr-bottom-link {
    margin-top: 26px;
    padding-top: 23px;
    border-top: 1px solid #e6e6e1;
    color: #777773;
    font-size: 13px;
    text-align: center;
}

.kr-bottom-link a {
    color: #2d2c2b;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: #f6d63f;
    text-underline-offset: 4px;
}

/* Kart kodu */

.kr-email-box {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 27px;
    padding: 14px 16px;
    border: 1px solid #deded7;
    border-radius: 14px;
    background: #f7f7f3;
}

.kr-email-icon {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    flex: 0 0 37px;
    border-radius: 11px;
    color: #2d2c2b;
    background: #f6d63f;
}

.kr-email-box small,
.kr-email-box strong {
    display: block;
}

.kr-email-box small {
    margin-bottom: 2px;
    color: #777773;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.kr-email-box strong {
    max-width: 380px;
    overflow: hidden;
    color: #2d2c2b;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kr-code-input {
    height: 76px;
    padding: 0 18px;
    text-align: center;
    font-family: monospace;
    font-size: 31px;
    font-weight: 850;
    letter-spacing: 13px;
}

.kr-code-counter {
    margin-top: 9px;
    color: #8b8a85;
    font-size: 11px;
    text-align: right;
}

.kr-code-counter.complete {
    color: #067647;
    font-weight: 750;
}

.kr-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 22px;
    color: #2d2c2b;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.kr-back-link:hover {
    color: #2d2c2b;
    text-decoration: underline;
    text-decoration-color: #f6d63f;
    text-underline-offset: 4px;
}

/* NFC kart görseli */

.kr-nfc-card {
    position: relative;
    width: min(100%, 385px);
    aspect-ratio: 1.58;
    margin-top: 48px;
    padding: 28px;
    overflow: hidden;
    border-radius: 24px;
    color: #fff;
    background: #2d2c2b;
    box-shadow: 0 25px 55px rgba(45, 44, 43, 0.23);
    transform: rotate(-4deg);
}

.kr-nfc-card::before,
.kr-nfc-card::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(246, 214, 63, 0.28);
    border-radius: 50%;
}

.kr-nfc-card::before {
    top: -55px;
    right: -55px;
    width: 190px;
    height: 190px;
}

.kr-nfc-card::after {
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
}

.kr-card-logo {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: 850;
    letter-spacing: -1.5px;
}

.kr-card-logo span {
    color: #f6d63f;
}

.kr-card-nfc-icon {
    position: absolute;
    z-index: 3;
    top: 30px;
    right: 31px;
    color: #f6d63f;
    font-size: 25px;
}

.kr-card-code {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 25px;
    left: 28px;
}

.kr-card-code small {
    display: block;
    margin-bottom: 6px;
    color: #aaa9a4;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.kr-card-code strong {
    font-family: monospace;
    font-size: 22px;
    letter-spacing: 5px;
}

/* Mobil */

@media (max-width: 1199px) {
    .kr-shell {
        grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    }

    .kr-side {
        padding: 45px;
    }

    .kr-form-side {
        padding: 50px 45px;
    }
}

@media (max-width: 991px) {
    .kr-page {
        padding: 45px 0;
    }

    .kr-shell {
        grid-template-columns: 1fr;
    }

    .kr-side {
        min-height: 470px;
    }

    .kr-side::before {
        font-size: 220px;
    }

    .kr-form-side {
        padding: 55px;
    }
}

@media (max-width: 575px) {
    .kr-page {
        padding: 20px 0;
    }

    .kr-shell {
        border-radius: 0;
    }

    .kr-side {
        min-height: 410px;
        padding: 38px 25px;
    }

    .kr-side h2 {
        font-size: 48px;
        letter-spacing: -3px;
    }

    .kr-side-description {
        font-size: 15px;
    }

    .kr-side-footer {
        margin-top: 40px;
    }

    .kr-form-side {
        padding: 42px 22px;
    }

    .kr-progress-step span:last-child {
        display: none;
    }

    .kr-form-container h1 {
        font-size: 39px;
    }

    .kr-field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .kr-email-box strong {
        max-width: 220px;
    }

    .kr-code-input {
        height: 70px;
        font-size: 27px;
        letter-spacing: 10px;
    }
}