﻿:root {
    --bg: #0f172a;
    --brand: #2563eb;
    --muted: #94a3b8;
    --card: #0b1222;
    --surface: #0a0f1e;
    --ring: #60a5fa;
    --error: #ef4444;
    --text: #e5e7eb;
    --text-2: #cbd5e1;
    --input: #111827;
    --border: #1f2937;
    --chip: #0f1a33;
    --accent: #7c3aed;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter,system-ui;
    color: var(--text);
    background: radial-gradient(1200px 800px at 10% 10%,#0b1530 0%,var(--bg) 40%, #070b16 100%);
    overflow: auto; /* form aşağı uzayabilir */
}

.wrap {
    display: grid;
    grid-template-columns: 1fr 780px;
    min-height: 100dvh;
}

@media (max-width:1080px) {
    .wrap {
        grid-template-columns: 1fr
    }
}

.hero {
    padding: 24px 56px 10px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative
}

@media(max-width:1080px) {
    .hero {
        padding: 20px
    }
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none
}

    .brand .logo {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: linear-gradient(135deg,var(--brand),var(--accent));
        display: grid;
        place-items: center;
        box-shadow: 0 10px 30px rgba(37,99,235,.35)
    }

        .brand .logo svg {
            filter: drop-shadow(0 2px 10px rgba(0,0,0,.4))
        }

    .brand b {
        font-weight: 800;
        letter-spacing: .2px
    }

.hero h1 {
    font-size: clamp(28px,5vw,46px);
    margin: 0
}

.hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6
}

.bullets {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    max-width: 880px
}

.chip {
    background: linear-gradient(180deg,var(--chip),#0a1327);
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 14px;
    font-size: 14px;
    color: var(--text-2)
}

    .chip b {
        color: #fff
    }

/* New hero list area */
.hero-list-wrap {
    max-width: 880px;
}

.hero-list-title {
    font-weight: 700;
    color: #c7d2fe;
    margin: 0 0 8px;
    letter-spacing: .2px
}

.hero-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-2);
    line-height: 1.7
}

    .hero-list li {
        margin: 2px 0
    }

/* Transfer company SVG illustration */
.transfer-illus {
    max-width: 880px;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    background: linear-gradient(180deg,#0c142a,#0a1022)
}

    .transfer-illus svg {
        width: 100%;
        height: auto;
        display: block
    }

.lines {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18%;
    pointer-events: none
}

.panel {
    background: linear-gradient(180deg,var(--surface),#060a15);
    padding: 18px 28px;
    display: flex;
    align-items: flex-start;
    justify-content: center
}

.card {
    width: 100%;
    max-width: 760px;
    background: linear-gradient(180deg,rgba(16,24,40,.5),rgba(3,7,18,.7));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px 22px 26px;
    box-shadow: 0 20px 70px rgba(0,0,0,.35)
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px
}

.title {
    font-weight: 800;
    letter-spacing: .2px
}

.lang select {
    appearance: none;
    color: var(--text);
    background: var(--input);
    border: 1px solid var(--border);
    padding: 10px 12px;
    border-radius: 10px
}

form {
    display: grid;
    gap: 1px
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

@media(max-width:560px) {
    .row {
        grid-template-columns: 1fr
    }
}

label {
    font-size: 12px;
    color: var(--text-2)
}

.req:after {
    content: ' *';
    color: #ef4444;
    font-weight: 700
}

input, select, textarea {
    width: 100%;
    background: var(--input);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 10px;
    outline: none
}

    input:focus, select:focus, textarea:focus {
        border-color: var(--ring);
        box-shadow: 0 0 0 3px rgba(96,165,250,.2)
    }

textarea {
    min-height: 75px;
    resize: vertical
}

.invalid {
    border-color: var(--error) !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,.25) !important;
    background: rgba(239,68,68,.06) !important
}

.actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 8px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    border: none
}

.extra-text {
    margin-top: 18px;
    padding: 14px;
    background: rgba(15,26,51,.7);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-2);
    font-size: 14px
}

.divider {
    height: 2px;
    background: var(--border);
    margin: 12px 0
}

/* Choices.js dark theme overrides via CSS (no classNames override) */
.choices {
    color: var(--text)
}

.choices__inner {
    background: var(--input) !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    min-height: 46px;
    padding: 6px 8px !important
}

.choices__list--multiple .choices__item {
    background: #0f1a33 !important;
    border: 1px solid #1f2a44 !important;
    color: #d1d5db !important;
    border-radius: 8px;
    padding: 3px 8px
}

.choices__list--dropdown {
    background: #0a1327 !important;
    border: 1px solid #1f2937 !important
}

    .choices__list--dropdown .choices__item--selectable.is-highlighted {
        background: #1e293b !important
    }

.choices[data-type*="select-multiple"] .choices__button {
    filter: invert(1) brightness(1.2)
}
/* --- Language description panel --- */
.hero-list-wrap {
    margin-top: 12px;
}

.lang-desc-card {
    background: linear-gradient(180deg, rgba(16,24,40,.5), rgba(3,7,18,.7));
    border: 1px solid #1f2937;
    border-radius: 14px;
    padding: 14px 16px;
    color: #cbd5e1;
}

    .lang-desc-card h4 {
        margin: 0 0 8px;
        font-size: 14px;
        color: #e5e7eb;
        font-weight: 700;
    }

    .lang-desc-card ul {
        margin: 0;
        padding-left: 18px;
        line-height: 1.7;
    }

/* --- Logo uploader --- */
.logo-uploader .form-label {
    display: block;
    margin-bottom: 6px;
    color: #cbd5e1;
    font-size: 12px;
}

.logo-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(15,26,51,.6);
    border: 1px solid #1f2937;
    border-radius: 14px;
    padding: 10px 12px;
}

    .logo-card img {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        object-fit: cover;
        border: 1px solid #1f2937;
        box-shadow: 0 6px 20px rgba(0,0,0,.25);
    }

.logo-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.logo-hint {
    font-size: 12px;
    color: #94a3b8;
}

.logo-note {
    font-size: 13px;
    color: #94a3b8;
}

#btnLogoPick {
    min-width: 130px;
}