﻿:root {
    --blue: #186be6;
    --blue-700: #1457ba;
    --ink: #1f2937;
    --muted: #6b7280;
    --card: #ffffff;
    --bg: #f5f7fb;
    --line: #e5e7eb;
    --focus: 0 0 0 4px rgba(24,107,230,.22);
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

/* base */
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font: 13px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SHELL */
.shell {
    display: grid;
    grid-template-columns: 420px 1fr;
    width: 80%;
    height: 80%;
    background: var(--card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    position: relative;
}

/* HERO (left) */
.hero {
    position: relative;
    overflow: hidden; /* wipe efekti için */
    background: linear-gradient(180deg,var(--blue),#2582ff);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 32px 28px;
    text-align: center;
    transition: color .4s ease;
}
    /* Beyaza “wipe” efekti: soldan sağa bir örtü kaydırıyoruz */
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: #fff;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .6s ease;
        z-index: 0;
    }

.brand, .hero-content, .hero-step2-copy, .hero-illustration {
    position: relative;
    z-index: 1
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center
}

.logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fff;
    display: grid;
    place-items: center
}

    .logo svg {
        width: 20px;
        height: 20px
    }

.brand-name {
    font-weight: 800
}

.hero-content {
    margin-top: 24px
}

.hero h1 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 12px
}

.hero p {
    margin: 0;
    color: #eaf2ff
}

.hero-illustration {
    position: absolute;
    left: 42px;
    bottom: 38px;
    opacity: .95
}

/* Step2 metni başlangıçta gizli */
.hero-step2-copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* dikey ortala */
    min-height: 100%; /* tam yükseklik */
    padding: 36px;
    color: var(--ink);
    opacity: 0;
    transform: translateY(24px) scale(1.01);
    filter: blur(2px);
    transition: opacity .5s, transform .5s, filter .5s;
}

    .hero-step2-copy h2 {
        font-size: 22px;
        margin: 0 0 8px;
        font-weight: 800
    }

    .hero-step2-copy p {
        margin: 0;
        color: #475569
    }

/* Step2 aktif olunca: wipe + içerik değişimi */
.step2 .hero::after {
    transform: scaleX(1);
    transition: transform 1.2s cubic-bezier(.16,.84,.44,1.02);
}
/* beyaza kapla */
.step2 .hero {
    color: var(--ink);
}
    /* metin rengi */
    .step2 .hero .hero-content {
        opacity: 0;
        transform: scale(0.96) translateY(-12px);
        filter: blur(2px);
        transition: opacity .4s, transform .4s, filter .4s;
    }

    .step2 .hero .hero-illustration {
        opacity: 0;
        transition: opacity .3s ease;
    }

    .step2 .hero .hero-step2-copy {
        opacity: 1;
        transform: translateY(0) scale(1.04);
        filter: drop-shadow(0 8px 24px rgba(24,107,230,.08));
        transition: opacity .5s cubic-bezier(.16,.84,.44,1.02) .2s, transform .5s cubic-bezier(.16,.84,.44,1.02) .2s, filter .5s;
    }

/* PANEL (right) */
.panel {
    padding: 36px 42px 42px;
    background: linear-gradient(135deg, #f7f8fa 0%, #eaeef3 100%);
    position: relative
}

.panel-head {
    display: flex;
    justify-content: flex-end;
    font-size: 14px
}

    .panel-head a {
        color: #2563eb;
        text-decoration: none
    }

        .panel-head a:hover {
            text-decoration: underline
        }

/* Steps wrapper */
.steps {
    position: relative;
    min-height: 420px;
    margin-top: 5%;
}

.step {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity .26s ease, transform .26s ease;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

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

    /* Employee step'leri içerik uzunsa scroll edilebilir olsun */
#step4e.is-active,
#step5e.is-active {
    overflow-y: auto;
    max-height: 100%;
    padding-bottom: 24px;
}


/* common inner */
/* .panel-inner {
    max-width: 760px;
    margin: 12px auto 0
} */

.panel-inner {
    display: flex
;
    flex-direction: column;
    align-items: center;
}

/* titles */
.title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px
}

.subtitle {
    color: var(--muted);
    margin: 0 0 22px
}

/* Option cards */
.stack {
    display: grid;
    gap: 18px;
    max-width: 560px;
    position: relative
}

.option {
    position: relative;
    z-index: 9999;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 16px;
    border: 1px solid var(--line);
    background: var(--card);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(17,24,39,.06);
    cursor: pointer;
    transition: border .15s, box-shadow .15s, transform .15s, background .15s;
}

    .option::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 4px;
        border-radius: 16px 0 0 16px;
        opacity: 0;
        transition: opacity .15s;
    }

    .option:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 30px rgba(17,24,39,.10)
    }

        .option:hover::before, .option:focus::before, .option[aria-selected="true"]::before {
            opacity: 1
        }

    .option[aria-selected="true"], .option:focus {
        border-color: #c7dbff;
        box-shadow: var(--focus), 0 8px 24px rgba(17,24,39,.06)
    }

    .option:focus {
        outline: none
    }

.opt-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #e9f2ff;
    color: #2563eb;
    display: grid;
    place-items: center;
    flex: 0 0 auto
}

    .opt-icon svg {
        width: 24px;
        height: 24px
    }

.opt-main {
    flex: 1 1 auto
}

.opt-title {
    font-weight: 800;
    font-size: 16px
}

.opt-sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px
}

.opt-desc {
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5
}

.opt-arrow {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: #f9fafb;
    color: #7b8794;
    transition: background .15s, transform .15s
}

.option:hover .opt-arrow {
    background: #eef2f7;
    transform: translateX(2px)
}

.badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #0b5;
    background: #e9f9ef;
    border: 1px solid #c8efd8
}

/* ===== STEP 2: Email form (shell içinde) ===== */
.email-inner {
    max-width: 760px;
    padding-top: 10px;
    position: relative
}

.email-help {
    display: flex;
    justify-content: flex-end
}

.fs-help {
    display: inline-block;
    border: 1px solid #e6e8ef;
    padding: 6px 12px;
    border-radius: 999px;
    text-decoration: none;
    color: #334155;
    background: #f8fafc
}

    .fs-help:hover {
        text-decoration: underline
    }

.email-title {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin: 18px 0 8px
}

.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 6px
}

.email-input {
    border: 1px solid var(--line);
    background: #fff;
    color: #0f172a;
    border-radius: 18px;
    padding: 20px 22px;
    width: min(620px, 92%);
    font-size: 34px;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 12px 28px rgba(17,24,39,.06);
    transition: border .15s, box-shadow .15s;
}

    .email-input::placeholder {
        color: #c0c6d1
    }

    .email-input:focus {
        outline: none;
        border-color: #bfdbfe;
        box-shadow: var(--focus), 0 16px 36px rgba(17,24,39,.10)
    }

.email-cta {
    display: inline-block;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: linear-gradient(135deg,#6d9cff,#6c6bff);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(109,156,255,.35);
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

    .email-cta:disabled {
        opacity: .5;
        cursor: not-allowed;
        box-shadow: none
    }

    .email-cta:not(:disabled):hover {
        transform: translateY(-1px);
        box-shadow: 0 18px 38px rgba(109,156,255,.45)
    }

.email-terms {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    max-width: 560px;
    color: var(--muted);
    font-size: 12px;
    text-align: left
}

    .email-terms input {
        transform: translateY(2px)
    }

.email-footer {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 12px
}

.fs-link {
    color: #475569;
    text-decoration: none;
    font-size: 12px
}

    .fs-link:hover {
        text-decoration: underline
    }

/* Step 2 aktif olduğunda sol taraf animasyon */
.hero.step2 {
    animation: heroToWhite 1.5s ease forwards;
    background: linear-gradient(135deg, #1e3c72, #2a5298); /* Step 1 mavi */
}

@keyframes heroToWhite {
    0% {
        background: linear-gradient(135deg, #1e3c72, #2a5298);
        clip-path: circle(0% at 50% 50%);
    }

    50% {
        clip-path: circle(150% at 50% 50%);
    }

    100% {
        background: #ffffff;
        clip-path: circle(150% at 50% 50%);
    }
}

/* Step 2 sağ taraf beyaz-gri */
.right-panel.step2 {
    background: linear-gradient(180deg, #ffffff, #f7f7f7);
}

/* --- POUR EFFECT: mavi → beyaz dalga --- */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: 0;
    opacity: 0;
    transform: translateX(-100%) skewX(-8deg);
    transition: none;
}

.hero.pour::after {
    animation: heroWave 0.55s cubic-bezier(.77,.2,.21,.98) forwards;
}

@keyframes heroWave {
    0% {
        opacity: 0.1;
        transform: translateX(-100%) skewX(-8deg);
    }
    40% {
        opacity: 0.7;
        transform: translateX(-30%) skewX(-4deg);
    }
    70% {
        opacity: 1;
        transform: translateX(10%) skewX(-2deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0%) skewX(0deg);
    }
}

/* Step2 metni fade-in ve yukarıdan kayma ile */
.step2 .hero .hero-step2-copy {
    opacity: 1;
    transform: translateY(0) scale(1.04);
    filter: drop-shadow(0 8px 24px rgba(24,107,230,.08));
    transition: opacity .5s cubic-bezier(.16,.84,.44,1.02) .2s, transform .5s cubic-bezier(.16,.84,.44,1.02) .2s, filter .5s;
}
.hero-step2-copy {
    opacity: 0;
    transform: translateY(24px) scale(1.01);
    filter: blur(2px);
    transition: opacity .5s, transform .5s, filter .5s;
}

/* Step2 .hero-content blur ve scale ile kaybolsun */
.step2 .hero .hero-content {
    opacity: 0;
    transform: scale(0.96) translateY(-12px);
    filter: blur(2px);
    transition: opacity .4s, transform .4s, filter .4s;
}

/* ══════════════════════════════════════════════
   EMPLOYEE SIDEBAR — hero-step2-copy ile aynı yapı
   ══════════════════════════════════════════════ */

/* Başlangıçta gizli */
.hero-employee-copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 36px;
    color: var(--ink);
    opacity: 0;
    transform: translateY(24px) scale(1.01);
    filter: blur(2px);
    transition: opacity .5s, transform .5s, filter .5s;
    z-index: 1;
}

/* step2 class'ı body'ye eklenince görünür olsun */
.step2 .hero .hero-employee-copy {
    opacity: 1;
    transform: translateY(0) scale(1.04);
    filter: drop-shadow(0 8px 24px rgba(24,107,230,.08));
    transition: opacity .5s cubic-bezier(.16,.84,.44,1.02) .2s, transform .5s cubic-bezier(.16,.84,.44,1.02) .2s, filter .5s;
}

/* Employee sidebar step itemları — owner ile aynı stiller */
.onboarding-step-emp {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    margin-bottom: 18px;
    font-family: system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color .18s;
}

.onboarding-step-emp .onboarding-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #e5e7eb;
    background: #e5e7eb;
    color: #888;
    transition: background .18s, color .18s, border .18s;
}

.onboarding-step-emp .onboarding-label {
    font-family: system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.5px;
    transition: color .18s;
}

.onboarding-step-emp.completed .onboarding-number {
    background: #4CAF50 !important;
    color: #fff !important;
    border-color: #4CAF50 !important;
    font-size: 18px;
    font-weight: bold;
}

.onboarding-step-emp.completed .onboarding-label {
    color: #bfc9d8;
    font-weight: 600;
    letter-spacing: 1px;
}

.onboarding-step-emp.active .onboarding-number {
    background: #186be6;
    color: #fff;
    border-color: #186be6;
}

.onboarding-step-emp.active .onboarding-label {
    color: #186be6;
    font-weight: 700;
    letter-spacing: 1px;
}

.onboarding-step-emp:last-child {
    margin-bottom: 0;
}


/* ══════════════════════════════════════════════
   Step 5E: Experience — geniş layout
   ══════════════════════════════════════════════ */
   #step5e .panel-inner {
    max-width: 100% !important;
    width: 100% !important;
}

#step5e .user-input {
    width: 100% !important;
    max-width: 100%;
    text-align: left;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
}

#step5e textarea.user-input {
    min-height: 60px;
}


/* responsive */
@media (max-width:980px) {
    .shell {
        grid-template-columns: 1fr
    }

    .hero {
        min-height: 240px
    }

    .hero-illustration {
        display: none
    }

    .panel {
        padding: 28px
    }

    /* .panel-inner {
        margin-top: 14px
    } */

    .steps {
        min-height: 460px
    }
}

@media (max-width:680px) {
    .email-input {
        font-size: 26px;
        padding: 18px 18px
    }
}

/* Onboarding adım listesi */
.onboarding-steps {
    display: flex;
    flex-direction: column;
    align-items: center; /* yatay ortala */
    justify-content: center; /* dikey ortala */
    padding-top: 0;
    padding-bottom: 0;
    min-height: 340px; /* daha iyi dikey ortalama için */
    min-width: 260px;
    max-width: 320px;
    margin: 0 auto;
}
.onboarding-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    font-family: system-ui, sans-serif;
}
.onboarding-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: system-ui, sans-serif;
}
.onboarding-step {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    margin-bottom: 18px;
    font-family: system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color .18s;
}
.onboarding-step .onboarding-number,
.onboarding-step .onboarding-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #e5e7eb;
    background: #e5e7eb;
    color: #888;
    transition: background .18s, color .18s, border .18s;
}
.onboarding-step.completed .onboarding-check {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(76,175,80,0.12);
}
.onboarding-step.completed .onboarding-number {
    background: #4CAF50 !important;
    color: #fff !important;
    border-color: #4CAF50 !important;
    font-size: 18px;
    font-weight: bold;
    transition: background .18s, color .18s, border .18s;
}
.onboarding-step.completed .onboarding-label {
    color: #bfc9d8;
    font-weight: 600;
    letter-spacing: 1px;
}
.onboarding-step.active .onboarding-number {
    background: #186be6;
    color: #fff;
    border-color: #186be6;
}
.onboarding-step.active .onboarding-label {
    color: #186be6;
    font-weight: 700;
    letter-spacing: 1px;
}
.onboarding-step .onboarding-arrow {
    margin-left: 8px;
    color: #186be6;
    font-size: 18px;
    font-weight: bold;
}
.onboarding-step:last-child {
    margin-bottom: 0;
}
.onboarding-step .onboarding-label {
    font-family: system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.5px;
    transition: color .18s;
}

.company-form, .user-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
}
.company-input, .user-input {
    border: 1px solid var(--line);
    background: #fff;
    color: #0f172a;
    border-radius: 14px;
    padding: 14px 18px;
    width: min(420px, 92%);
    font-size: 16px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(17,24,39,.06);
    transition: border .15s, box-shadow .15s;
}
.company-input:focus, .user-input:focus {
    outline: none;
    border-color: #bfdbfe;
    box-shadow: var(--focus), 0 12px 28px rgba(17,24,39,.10)
}
.company-cta, .user-cta {
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: linear-gradient(135deg,#6d9cff,#6c6bff);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(109,156,255,.25);
    transition: transform .12s, box-shadow .12s, opacity .12s;
}
.company-cta:disabled, .user-cta:disabled {
    opacity: .5;
    cursor: not-allowed;
    box-shadow: none
}
.company-prefix {
    font-size: 15px;
    margin-bottom: 8px;
    color: #888;
}

/* Plan kartları */
.plan-list {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: nowrap;
    width: 100%;
}

.plan-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(24,107,230,0.07);
    padding: 24px 22px 18px 22px;
    min-width: 280px;
    max-width: 340px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.18s, box-shadow 0.18s;
    position: relative;
    margin-top: 38px;
}

.plan-price-badge {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #186be6;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    border-radius: 14px;
    padding: 10px 32px;
    box-shadow: 0 2px 12px rgba(24,107,230,0.10);
    letter-spacing: 1px;
    z-index: 2;
    border: 2px solid #fff;
    margin-bottom: 0;
    text-align: center;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-price-period {
    font-size: 14px;
    color: #888;
    font-weight: 400;
    margin-left: 4px;
    letter-spacing: 0.2px;
}

.plan-title-badge {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(24,107,230,0.04);
    padding: 14px 0 10px 0;
    text-align: center;
    margin-bottom: 8px;
}

.plan-card.selected {
    border: 2px solid #186be6;
    box-shadow: 0 0 0 4px rgba(24,107,230,.12);
    background: #f5faff;
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    width: 100%;
}

.plan-icon {
    font-size: 28px;
}

.plan-title {
    font-size: 17px;
    font-weight: 700;
    color: #186be6;
    letter-spacing: 0.5px;
    flex: 1 1 auto;
}

.plan-price {
    font-size: 22px;
    font-weight: 800;
    color: #4CAF50;
    margin-left: auto;
    align-self: flex-start;
    background: #e9f9ef;
    border-radius: 8px;
    padding: 4px 14px;
}

.plan-details ul {
    margin: 0;
    padding-left: 18px;
    font-size: 15px;
    color: #444;
}

.plan-details li {
    margin-bottom: 6px;
}

/* Tutar bilgisini en alta ve büyük göster */
.plan-total {
    width: 100%;
    text-align: right;
    font-size: 24px;
    font-weight: 900;
    color: #186be6;
    margin-top: 18px;
    margin-bottom: 0;
    padding-right: 8px;
    letter-spacing: 1px;
}

.plan-trial-badge {
    display: inline-block;
    margin: 0 auto 0px auto;
    color: #186be6;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    padding: 6px 18px;
    text-align: center;
    letter-spacing: 0.2px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 28px;
}

/* Signup step 2 — split into "Part A: business model" + "Part B: company
   details" with their own header strip + numbered chip. The B2B/B2C choice
   is its own block so it stops looking like a sub-option of the company
   name input. */
.signup-section {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    padding: 16px 18px 18px;
    margin: 0 0 18px;
}
.signup-section + .signup-section { margin-top: 14px; }
.signup-section__head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.signup-section__step {
    flex: 0 0 28px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #186be6;
    color: #fff;
    font-weight: 700; font-size: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.signup-section__title {
    font-size: 15px; font-weight: 700; color: #0f172a;
    line-height: 1.2;
}
.signup-section__sub {
    font-size: 12.5px; color: #64748b;
    line-height: 1.4; margin-top: 2px;
}
/* "Locked" state — the company-details section before a model is picked. */
.signup-section--locked {
    opacity: 0.55;
    pointer-events: none;
    background: #f8fafc;
}
.signup-section--locked .signup-section__step { background: #94a3b8; }
.signup-section--unlocked { opacity: 1; pointer-events: auto; }

/* Business model (B2B / B2C) selection */
.business-model-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin: 6px 0 10px;
    text-align: center;
}
.business-model-options {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.business-model-btn {
    flex: 1 1 220px;
    max-width: 260px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border 0.18s, box-shadow 0.18s, background 0.18s;
}
.business-model-btn:hover { border-color: #c7d2fe; }
.business-model-btn.selected {
    border: 2px solid #186be6;
    background: #f5faff;
    box-shadow: 0 0 0 4px rgba(24,107,230,.12);
}
.business-model-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
.business-model-text { display: flex; flex-direction: column; gap: 2px; }
.business-model-title { font-size: 15px; font-weight: 700; color: #186be6; }
.business-model-sub { font-size: 12px; color: #64748b; line-height: 1.3; }

/* Company type selection buttons */
.company-type-options {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 12px;
}
.company-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: border 0.18s, box-shadow 0.18s, background 0.18s;
}
.company-type-btn.selected {
    border: 2px solid #186be6;
    background: #f5faff;
    box-shadow: 0 0 0 4px rgba(24,107,230,.12);
}
.company-type-icon {
    font-size: 32px;
}
.company-type-label {
    font-size: 15px;
    font-weight: 700;
    color: #186be6;
}

/* Store/restaurant formu */
.store-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 500px;
}
.store-form-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    width: 100%;
    max-width: 900px;
}
.store-form-block {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8fafc;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(24,107,230,0.04);
    margin-bottom: 4px;
    min-width: 180px;
    max-width: 260px;
}
.store-form input[type="text"],
.store-form input[type="number"],
.store-form input[type="time"] {
    border: 1px solid var(--line);
    background: #fff;
    color: #0f172a;
    border-radius: 14px;
    padding: 12px 16px;
    width: min(420px, 92%);
    font-size: 18px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(17,24,39,.06);
    transition: border .15s, box-shadow .15s;
}
.store-form input:focus {
    outline: none;
    border-color: #bfdbfe;
    box-shadow: var(--focus), 0 8px 18px rgba(17,24,39,.10)
}

.company-input.small-input,
.user-input.small-input,
.store-form input.small-input {
    font-size: 13px;
    padding: 7px 10px;
    border-radius: 8px;
    width: 100%;
    min-width: 0;
}

.input-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
    margin-top: 8px;
    display: block;
}

.input-label.small-label {
    font-size: 10px;
    margin-bottom: 2px;
    margin-top: 4px;
}

.company-cta.small-btn,
.user-cta.small-btn {
    font-size: 11px;
    padding: 7px 14px;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .store-form-row {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
    .store-form-block {
        max-width: 100%;
        min-width: 0;
    }
}

/* Store listesi ve aksiyonları */
.store-list {
    min-width: 180px;
    max-width: 220px;
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    height: 100%;
}
.store-list-item {
    min-width: 120px;
    max-width: 220px;
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f3f6fa;
    border-radius: 6px;
    padding: 7px 12px;
    box-shadow: 0 1px 4px rgba(24,107,230,0.04);
    font-size: 14px;
    margin-right: 0;
}
.store-list-name {
    font-size: 12px;
    font-weight: 600;
    color: #186be6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}
.store-list-actions {
    display: flex;
    gap: 4px;
}
.edit-store-btn, .delete-store-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    padding: 2px 5px;
    border-radius: 4px;
    transition: background 0.15s;
}
.edit-store-btn:hover {
    background: #e0e7ff;
}
.delete-store-btn:hover {
    background: #fee2e2;
}

.store-flex-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
}
#storeList.store-list {
    min-width: 320px;
    max-width: 480px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    height: 100%;
}

body, .shell, .panel, .hero, .panel-inner, .title, .subtitle, .opt-title, .opt-sub, .opt-desc, .plan-title, .plan-details, .plan-total, .company-type-label, .store-list-name, .onboarding-step, .onboarding-label, .company-input, .user-input, .company-cta, .user-cta, .badge, .input-label, .store-form-block, .store-list-item {
    font-family: system-ui, sans-serif !important;
    font-weight: 400 !important;
}
/* Başlıklar ve özel alanlar için bold kaldırıldı */
.title, .plan-title, .opt-title, .company-type-label, .store-list-name {
    font-weight: 400 !important;
}
