/* ============================================================
   TELMO Collab — Premium Design System
   Marka: #8F1EAE (mor) · Dark luxe · Glassmorphism · Inter
   Node/Vite YOK — saf, bağımsız CSS.
   ============================================================ */

:root {
    --brand:        #8F1EAE;
    --brand-700:    #6f168a;
    --brand-600:    #7d1a99;
    --brand-500:    #9b1fbe;
    --brand-400:    #ab3fcb;
    --brand-300:    #c277dd;
    --violet:       #7a1796;

    /* Gerçek mor — pembe/magenta uç YOK (mobilde eflatuna kaçmasın) */
    --grad: linear-gradient(135deg, #9d22c2 0%, #8F1EAE 60%, #7d1a99 100%);
    --grad-soft: linear-gradient(135deg, rgba(143,30,174,.22), rgba(125,26,153,.12));

    --bg:           #0a0610;
    --bg-2:         #0e0918;
    --surface:      rgba(255,255,255,.045);
    --surface-2:    rgba(255,255,255,.07);
    --border:       rgba(255,255,255,.09);
    --border-strong:rgba(255,255,255,.16);

    --text:         #f6f3fa;
    --text-soft:    rgba(246,243,250,.66);
    --text-faint:   rgba(246,243,250,.42);

    --gold:         #ffd166;
    --green:        #34d399;

    --r-sm: 12px;
    --r:    18px;
    --r-lg: 26px;
    --r-xl: 34px;

    --shadow:    0 18px 50px -18px rgba(0,0,0,.7);
    --glow:      0 14px 40px -10px rgba(143,30,174,.55);
    --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Arka plan atmosfer ışıkları */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(60vw 50vh at 80% -5%, rgba(143,30,174,.32), transparent 60%),
        radial-gradient(50vw 40vh at 5% 10%, rgba(143,30,174,.18), transparent 55%),
        radial-gradient(40vw 45vh at 50% 110%, rgba(125,26,153,.18), transparent 60%),
        var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Tipografi ---------- */
.display {
    font-size: clamp(2.5rem, 6vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -.03em;
    font-weight: 800;
}
.h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.025em; font-weight: 800; line-height: 1.1; }
.h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.02em; font-weight: 750; line-height: 1.15; }
.h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-soft); }
.muted { color: var(--text-soft); }
.faint { color: var(--text-faint); }
.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .72rem;
    font-weight: 700;
    color: var(--brand-300);
}

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 650;
    font-size: .95rem;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .2s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 48px -10px rgba(143,30,174,.7); }
.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-strong);
    backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--brand-400); color: #fff; }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Rozet / pill ---------- */
.badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: .8rem; font-weight: 600;
    color: var(--text-soft);
    backdrop-filter: blur(10px);
}
.badge-brand { background: var(--grad-soft); border-color: rgba(187,85,214,.4); color: var(--brand-300); }
.badge-verified { color: #fff; background: linear-gradient(135deg,#8F1EAE,#7c3aed); border: none; }
.badge-pending { color: var(--gold); background: rgba(255,209,102,.12); border-color: rgba(255,209,102,.3); }
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 999px;
    background: var(--surface); border: 1px solid var(--border);
    font-size: .82rem; color: var(--text-soft);
}

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(10,6,16,.72);
    border-bottom: 1px solid var(--border);
}
.nav {
    display: flex; align-items: center; gap: 28px;
    height: 72px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 6px; margin-left: 8px; }
.nav__link {
    padding: 9px 14px; border-radius: 12px;
    font-size: .92rem; font-weight: 550; color: var(--text-soft);
    transition: color .2s, background .2s;
}
.nav__link:hover, .nav__link.active { color: var(--text); background: var(--surface); }
.nav__spacer { flex: 1; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.lang-switch { display: flex; gap: 2px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 3px; }
.lang-switch a { padding: 5px 11px; border-radius: 999px; font-size: .8rem; font-weight: 600; color: var(--text-faint); }
.lang-switch a.active { background: var(--grad); color: #fff; }
.avatar-btn { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; border: 2px solid var(--border-strong); }
.avatar-btn img { width: 100%; height: 100%; object-fit: cover; }

.menu-toggle { display: none; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; width: 44px; height: 44px; color: var(--text); font-size: 1.3rem; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .h2 { margin-top: 10px; }
.section-head .lead { margin-top: 12px; }
.row-between { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 0 72px; }
.hero__inner { max-width: 820px; }
.hero .display { margin: 22px 0 0; }
.hero .lead { margin: 24px 0 0; max-width: 640px; }
.hero__cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    margin-top: 60px; max-width: 680px;
}
.stat-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r); padding: 22px 24px;
    backdrop-filter: blur(14px);
}
.stat-card .num { font-size: 2rem; font-weight: 800; letter-spacing: -.02em; }
.stat-card .lbl { font-size: .85rem; color: var(--text-soft); margin-top: 2px; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-influencers { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* Influencer card */
.inf-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    backdrop-filter: blur(8px);
}
.inf-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.inf-card__cover { height: 118px; background-size: cover; background-position: center; position: relative; }
.inf-card__cover::after { content:""; position:absolute; inset:0; background: linear-gradient(to bottom, transparent, rgba(10,6,16,.65)); }
.inf-card__body { padding: 0 20px 20px; margin-top: -42px; position: relative; }
.inf-card__avatar {
    width: 78px; height: 78px; border-radius: 22px; object-fit: cover;
    border: 3px solid var(--bg-2); box-shadow: var(--shadow);
}
.inf-card__name { display: flex; align-items: center; gap: 7px; margin-top: 12px; font-weight: 750; font-size: 1.08rem; letter-spacing: -.01em; }
.inf-card__name .tick { color: var(--brand-300); display:inline-flex; }
.inf-card__handle { color: var(--text-faint); font-size: .85rem; }
.inf-card__cat { margin-top: 10px; }
.inf-card__stats { display: flex; gap: 16px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.inf-card__stat { display: flex; flex-direction: column; }
.inf-card__stat b { font-size: 1rem; font-weight: 750; }
.inf-card__stat span { font-size: .72rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: .06em; }
.inf-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.inf-card__price b { font-size: 1.15rem; }
.inf-card__price span { font-size: .75rem; color: var(--text-faint); }

/* Job card */
.job-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 24px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s;
    display: flex; flex-direction: column; gap: 14px;
}
.job-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.job-card__top { display: flex; align-items: center; gap: 12px; }
.job-card__brandlogo {
    width: 50px; height: 50px; border-radius: 14px; flex: none;
    display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; color: #fff;
    background: var(--grad);
}
.job-card__title { font-weight: 720; font-size: 1.12rem; letter-spacing: -.01em; line-height: 1.25; }
.job-card__brand { color: var(--text-faint); font-size: .85rem; }
.job-card__desc { color: var(--text-soft); font-size: .92rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.job-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.job-card__budget b { font-size: 1.1rem; }
.job-card__budget span { font-size: .75rem; color: var(--text-faint); display:block; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 32px 28px; position: relative;
}
.step__num {
    width: 52px; height: 52px; border-radius: 16px;
    display: grid; place-items: center; font-weight: 800; font-size: 1.3rem; color: #fff;
    background: var(--grad); box-shadow: var(--glow); margin-bottom: 18px;
}
.step__title { font-weight: 720; font-size: 1.18rem; margin-bottom: 8px; }
.step__desc { color: var(--text-soft); font-size: .95rem; }

/* ---------- Feature cards ---------- */
.features { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature {
    background: var(--grad-soft);
    border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 28px 24px;
}
.feature__icon { font-size: 1.9rem; margin-bottom: 14px; }
.feature__title { font-weight: 700; font-size: 1.08rem; margin-bottom: 7px; }
.feature__desc { color: var(--text-soft); font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative; overflow: hidden;
    background: var(--grad);
    border-radius: var(--r-xl);
    padding: 56px 48px;
    text-align: center;
    box-shadow: var(--glow);
}
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(40vw 30vh at 80% 0, rgba(255,255,255,.22), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band .h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); margin: 12px auto 28px; max-width: 540px; }
.cta-band .btn-ghost { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.26); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 40px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-about { max-width: 360px; color: var(--text-soft); font-size: .92rem; }
.footer-about img { height: 30px; margin-bottom: 16px; }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-faint); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-soft); padding: 5px 0; font-size: .92rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--text-faint); font-size: .85rem; }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 8px; color: var(--text-soft); }
.input, .select, .textarea {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-sm);
    padding: 13px 15px;
    color: var(--text);
    font-size: .96rem;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }
.input:focus, .select:focus, .textarea:focus {
    outline: none;
    border-color: var(--brand-400);
    box-shadow: 0 0 0 4px rgba(143,30,174,.18);
    background: var(--surface-2);
}
.textarea { resize: vertical; min-height: 110px; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23bb55d6' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.select option { background: #14101e; color: var(--text); }
.field-error { color: #fda4af; font-size: .82rem; margin-top: 6px; }
.checkbox { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--text-soft); }
.checkbox input { width: 17px; height: 17px; accent-color: var(--brand); }

/* Auth card */
.auth-wrap { min-height: calc(100vh - 72px); display: grid; place-items: center; padding: 48px 24px; }
.auth-card {
    width: 100%; max-width: 440px;
    background: rgba(20,14,30,.7);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-xl);
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}
.auth-card__logo { height: 34px; margin-bottom: 24px; }
.auth-note { margin-top: 18px; padding: 12px 14px; border-radius: var(--r-sm); background: var(--grad-soft); border: 1px solid var(--border); font-size: .85rem; color: var(--text-soft); }
.auth-foot { text-align: center; margin-top: 22px; color: var(--text-soft); font-size: .92rem; }
.auth-foot a { color: var(--brand-300); font-weight: 600; }

/* ---------- Filter bar ---------- */
.filterbar {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 18px;
    display: grid; grid-template-columns: 2fr repeat(3, 1fr) auto; gap: 12px;
    align-items: end; margin-bottom: 32px; backdrop-filter: blur(10px);
}
.filterbar .field { margin: 0; }
.filterbar .field label { font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Detail page ---------- */
.profile-hero { position: relative; border-radius: var(--r-xl); overflow: hidden; margin-bottom: 0; }
.profile-cover { height: 260px; background-size: cover; background-position: center; }
.profile-cover::after { content:""; position:absolute; inset:0; background: linear-gradient(to bottom, rgba(10,6,16,.1), rgba(10,6,16,.85)); }
.profile-head { display: flex; align-items: flex-end; gap: 22px; margin-top: -70px; padding: 0 28px 28px; position: relative; }
.profile-avatar { width: 132px; height: 132px; border-radius: 30px; object-fit: cover; border: 4px solid var(--bg-2); box-shadow: var(--shadow); flex: none; }
.profile-id { flex: 1; padding-bottom: 6px; }
.profile-id .name { display: flex; align-items: center; gap: 10px; font-size: 1.8rem; font-weight: 800; letter-spacing: -.02em; }
.profile-id .sub { color: var(--text-soft); margin-top: 4px; }
.profile-actions { display: flex; gap: 10px; padding-bottom: 8px; flex-wrap: wrap; }

.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin: 24px 0; }
.stat-strip > div { background: var(--bg-2); padding: 20px; text-align: center; }
.stat-strip b { font-size: 1.5rem; font-weight: 800; display: block; letter-spacing: -.02em; }
.stat-strip span { font-size: .78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: .06em; }

.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; margin-bottom: 22px; }
.panel h3 { margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; }

.social-list { display: flex; flex-direction: column; gap: 10px; }
.social-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--r-sm); background: var(--surface); border: 1px solid var(--border); }
.social-row .pf { font-size: 1.3rem; }
.social-row .hd { flex: 1; }
.social-row .hd b { font-weight: 650; }
.social-row .hd span { display: block; font-size: .8rem; color: var(--text-faint); }
.social-row .fl { font-weight: 750; }

.package { border: 1px solid var(--border); border-radius: var(--r); padding: 18px; margin-bottom: 12px; transition: border-color .2s; }
.package:hover { border-color: var(--brand-400); }
.package__head { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.package__title { font-weight: 700; }
.package__price { font-weight: 800; font-size: 1.2rem; color: var(--brand-300); white-space: nowrap; }
.package__desc { color: var(--text-soft); font-size: .9rem; margin: 8px 0; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.portfolio-grid img { aspect-ratio: 1; object-fit: cover; border-radius: var(--r-sm); width: 100%; }

.review { padding: 16px 0; border-bottom: 1px solid var(--border); }
.review:last-child { border-bottom: none; }
.review__head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.review__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 700; font-size: .9rem; color: #fff; }
.review__name { font-weight: 650; font-size: .92rem; }
.review__stars { color: var(--gold); font-size: .85rem; }
.review__text { color: var(--text-soft); font-size: .92rem; }

.side-card { background: var(--grad-soft); border: 1px solid var(--border-strong); border-radius: var(--r-lg); padding: 24px; position: sticky; top: 92px; }

/* ---------- Flash ---------- */
.flash { padding: 14px 18px; border-radius: var(--r); margin-bottom: 20px; font-size: .92rem; font-weight: 550; display: flex; align-items: center; gap: 10px; }
.flash-success { background: rgba(52,211,153,.13); border: 1px solid rgba(52,211,153,.35); color: #6ee7b7; }
.flash-error { background: rgba(244,63,94,.13); border: 1px solid rgba(244,63,94,.35); color: #fda4af; }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; flex-wrap: wrap; list-style: none; }
.pagination a, .pagination span { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); color: var(--text-soft); font-size: .9rem; }
.pagination .active span { background: var(--grad); color: #fff; border: none; }
.pagination [aria-disabled="true"] span { opacity: .35; }

/* ---------- Misc ---------- */
.empty { text-align: center; padding: 80px 24px; color: var(--text-soft); }
.empty .big { font-size: 3rem; margin-bottom: 12px; }
.stars { color: var(--gold); }
.divider { height: 1px; background: var(--border); margin: 28px 0; }
.tabs { display: flex; gap: 6px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 4px; width: fit-content; margin-bottom: 20px; }
.tabs button { padding: 9px 18px; border-radius: 999px; background: transparent; border: none; color: var(--text-soft); font-weight: 600; font-size: .9rem; }
.tabs button.active { background: var(--grad); color: #fff; }

.breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--text-faint); font-size: .88rem; margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .grid-influencers { grid-template-columns: repeat(3,1fr); }
    .features { grid-template-columns: repeat(2,1fr); }
    .detail-grid { grid-template-columns: 1fr; }
    .side-card { position: static; }
    .filterbar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .nav__links { display: none; }
    .menu-toggle { display: grid; place-items: center; }
    .nav__links.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: rgba(14,9,24,.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 14px 24px; gap: 4px; }
    .grid-influencers, .grid-3, .grid-2 { grid-template-columns: repeat(2,1fr); }
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero__stats { grid-template-columns: 1fr; max-width: 360px; }
    .profile-head { flex-direction: column; align-items: flex-start; }
    .stat-strip { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
    .container { padding: 0 18px; }
    .grid-influencers, .grid-3, .grid-2, .features { grid-template-columns: 1fr; }
    .filterbar { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .cta-band { padding: 40px 24px; }
    .profile-avatar { width: 104px; height: 104px; }
}

/* ============================================================
   v2 — Mobil bütünlüğü: header, alt toolbar, story rail,
   marka şeridi, footer akordeon
   ============================================================ */

/* Header: dil anahtarı her zaman görünür; auth butonları masaüstünde */
.nav__auth-desktop { display: flex; align-items: center; gap: 10px; }
.nav__drawer-auth { display: none; }
.menu-toggle { display: none; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; width: 42px; height: 42px; color: var(--text); font-size: 1.25rem; }

@media (max-width: 860px) {
    .nav { gap: 12px; height: 64px; }
    .nav__logo img { height: 26px; }
    .menu-toggle { display: grid; place-items: center; order: -1; }
    .nav__auth-desktop { display: none; }
    .nav__drawer-auth { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--border); }
    .nav__drawer-auth .btn { width: 100%; }
    .lang-switch a { padding: 5px 9px; }
}
@media (max-width: 380px) {
    .nav__logo img { height: 22px; }
}

/* Mobil alt toolbar — Flutter tab bar bütünlüğü */
.mobile-tabbar { display: none; }
.mobile-tabbar a { color: inherit; }
@media (max-width: 860px) {
    .mobile-tabbar {
        display: grid; grid-template-columns: repeat(5, 1fr);
        position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
        background: rgba(11,7,18,.94); backdrop-filter: blur(22px);
        border-top: 1px solid var(--border);
        padding: 9px 6px calc(9px + env(safe-area-inset-bottom));
    }
    body { padding-bottom: 78px; }
}
.tabbar__item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 4px 0; color: var(--text-faint); font-size: .64rem; font-weight: 650; }
.tabbar__item.active { color: var(--brand-300); }
.tabbar__item svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.tabbar__center { position: relative; }
.tabbar__center img { width: 50px; height: 50px; border-radius: 16px; margin-top: -22px; border: 3px solid var(--bg); box-shadow: var(--glow); background: var(--bg-2); }
.tabbar__center span { margin-top: 2px; }

/* Story rail — Instagram hikayeler tarzı vitrin */
.story-rail { display: flex; gap: 16px; overflow-x: auto; padding: 4px 2px 20px; scrollbar-width: none; -ms-overflow-style: none; }
.story-rail::-webkit-scrollbar { display: none; }
.story { flex: none; width: 76px; text-align: center; }
.story__ring { width: 76px; height: 76px; border-radius: 50%; padding: 3px; background: var(--grad); box-shadow: 0 8px 22px -8px rgba(143,30,174,.6); transition: transform .2s ease; }
.story:hover .story__ring { transform: translateY(-3px) scale(1.04); }
.story__ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg); display: block; }
.story__name { font-size: .73rem; margin-top: 7px; color: var(--text-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.story__ring.is-add { background: var(--surface-2); border: 2px dashed var(--border-strong); display: grid; place-items: center; }
.story__ring.is-add span { font-size: 1.6rem; color: var(--brand-300); }

/* Marka şeridi — footer üzeri kayan TELMO markaları */
.brand-marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; background: rgba(255,255,255,.02); }
.brand-marquee__track { display: flex; gap: 14px; width: max-content; animation: collab-marquee 26s linear infinite; }
.brand-marquee:hover .brand-marquee__track { animation-play-state: paused; }
.brand-marquee__item { display: flex; align-items: center; gap: 14px; font-weight: 750; letter-spacing: -.01em; font-size: 1.06rem; color: var(--text-soft); white-space: nowrap; }
.brand-marquee__item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-400); }
.brand-marquee__item.is-collab { color: var(--brand-300); }
@keyframes collab-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Footer akordeon — mobilde başlangıçta kapalı */
.footer-col details > summary { list-style: none; cursor: default; }
.footer-col details > summary::-webkit-details-marker { display: none; }
.footer-col details > summary h4 { margin: 0; }
@media (max-width: 860px) {
    .footer-grid { gap: 0; }
    .footer-col details { border-bottom: 1px solid var(--border); }
    .footer-col details > summary { cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
    .footer-col details > summary::after { content: "+"; font-size: 1.3rem; color: var(--text-faint); line-height: 1; }
    .footer-col details[open] > summary::after { content: "\2212"; }
    .footer-about { margin-bottom: 8px; }
}

/* SSS arama + akordeon */
.faq-search { position: relative; margin: 28px 0 28px; }
.faq-search input { padding-left: 46px; }
.faq-search .ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-faint); }
.faq-cat { margin-bottom: 30px; }
.faq-cat__title { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--brand-300); margin-bottom: 12px; font-weight: 700; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 10px; background: var(--surface); overflow: hidden; }
.faq-item > summary { list-style: none; cursor: pointer; padding: 16px 20px; font-weight: 650; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; font-size: 1.3rem; color: var(--text-faint); flex: none; }
.faq-item[open] > summary::after { content: "\2212"; }
.faq-item[open] > summary { color: var(--brand-300); }
.faq-item__body { padding: 0 20px 18px; color: var(--text-soft); font-size: .94rem; line-height: 1.7; }
.faq-empty { text-align: center; padding: 50px 20px; color: var(--text-faint); }

/* ============================================================
   v3 — Aydınlık/Karanlık tema + eSIM-stili toolbar & footer
   ============================================================ */

/* ---- Aydınlık tema (data-theme="light") ---- */
:root[data-theme="light"] {
    --bg:           #f4f1f9;
    --bg-2:         #ffffff;
    --surface:      rgba(143,30,174,.05);
    --surface-2:    rgba(143,30,174,.10);
    --border:       rgba(45,22,60,.12);
    --border-strong:rgba(45,22,60,.22);
    --text:         #1b1226;
    --text-soft:    rgba(27,18,38,.66);
    --text-faint:   rgba(27,18,38,.46);
    --shadow:       0 18px 50px -22px rgba(80,30,110,.30);
    --glow:         0 14px 40px -12px rgba(143,30,174,.42);
}
[data-theme="light"] body::before {
    background:
        radial-gradient(60vw 50vh at 80% -5%, rgba(143,30,174,.13), transparent 60%),
        radial-gradient(50vw 40vh at 5% 10%, rgba(143,30,174,.07), transparent 55%),
        var(--bg);
}
[data-theme="light"] .site-header { background: rgba(255,255,255,.82); }
[data-theme="light"] .nav__links.open { background: rgba(255,255,255,.98); }
[data-theme="light"] .brand-marquee { background: rgba(143,30,174,.03); }
[data-theme="light"] .select option { background: #fff; color: var(--text); }

/* ---- Theme toggle düğmesi ---- */
.theme-toggle {
    width: 40px; height: 40px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--surface); border: 1px solid var(--border);
    color: var(--text); cursor: pointer; flex: none;
    transition: background .2s, transform .15s;
}
.theme-toggle:hover { background: var(--surface-2); }
.theme-toggle:active { transform: scale(.94); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .ic-sun { display: none; }
.theme-toggle .ic-moon { display: block; }
[data-theme="light"] .theme-toggle .ic-sun { display: block; }
[data-theme="light"] .theme-toggle .ic-moon { display: none; }

/* ---- Header: hamburger sağda + logo büyütme ---- */
@media (max-width: 860px) {
    .menu-toggle { order: 0; }
    .nav__logo img { height: 34px; }
}
@media (max-width: 380px) {
    .nav__logo img { height: 30px; }
}

/* ---- premium-shine (footer alt başlık) ---- */
.premium-shine {
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand) 38%, #ffffff 50%, var(--brand) 62%, var(--brand) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: premium-shine 3.2s ease-in-out infinite;
}
[data-theme="light"] .premium-shine {
    background: linear-gradient(90deg, var(--brand-600) 0%, var(--brand-600) 38%, var(--brand-300) 50%, var(--brand-600) 62%, var(--brand-600) 100%);
    background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
@keyframes premium-shine { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }

/* ============================================================
   eSIM-stili premium TOOLBAR (mobil) — mor marka
   ============================================================ */
.toolbar {
    position: fixed; bottom: 0; left: 0; right: 0;
    max-width: 768px; width: 100%; margin: 0 auto;
    display: none; grid-template-columns: repeat(5, 1fr);
    padding: 4px 8px calc(env(safe-area-inset-bottom, 8px) + 4px);
    background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    border-radius: 18px 18px 0 0; z-index: 60;
    box-shadow: 0 -4px 26px rgba(80,30,110,.12);
}
[data-theme="dark"] .toolbar {
    background: rgba(16,11,24,.9);
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 -4px 30px rgba(0,0,0,.55);
}
@media (max-width: 768px) {
    .toolbar { display: grid; }
    body { padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px)); }
}
@media (min-width: 769px) { body { padding-bottom: 0; } }
.toolbar-item { display: flex; align-items: center; justify-content: center; }
.toolbar-arc {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-width: 54px; min-height: 52px; padding: 8px 8px 6px;
    border-radius: 9999px 9999px 0 0; text-decoration: none; position: relative;
    color: var(--text-faint); transition: color .2s, transform .15s;
}
.toolbar-arc:active { transform: scale(.95); }
.toolbar-arc.is-active { color: var(--brand); }
[data-theme="dark"] .toolbar-arc.is-active { color: var(--brand-300); }
.toolbar-arc.is-active::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 30px; height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    box-shadow: 0 0 8px rgba(143,30,174,.55);
}
[data-theme="dark"] .toolbar-arc.is-active::before { background: linear-gradient(90deg, transparent, var(--brand-300), transparent); }
.toolbar-icon { width: 24px; height: 24px; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; fill: none; stroke: currentColor; margin-bottom: 3px; }
.toolbar-label { font-size: 10px; font-weight: 650; letter-spacing: .02em; }
@media (max-width: 360px) { .toolbar-label { display: none; } }
.toolbar-center .toolbar-arc { min-height: auto; padding: 0; }
.toolbar-chat-icon {
    width: 54px; height: 54px; border-radius: 16px; object-fit: cover;
    border: 3px solid var(--brand); background: var(--bg-2);
    box-shadow: 0 4px 16px rgba(143,30,174,.45);
    animation: telmoPulse 2.6s ease-in-out infinite;
}
@keyframes telmoPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(143,30,174,.5); }
    50% { box-shadow: 0 0 0 8px rgba(143,30,174,0); }
}

/* ============================================================
   eSIM-stili FOOTER — kare logo + premium-shine + akordeon
   ============================================================ */
.cfoot { border-top: 1px solid var(--border); margin-top: 40px; }
.cfoot__wrap { padding: 56px 0 36px; }
.cfoot__top { display: flex; gap: 48px; align-items: flex-start; }
.cfoot__brand { width: 290px; flex: none; }
.cfoot__brandhead { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cfoot__brandhead img { width: 48px; height: 48px; border-radius: 14px; }
.cfoot__brandname { font-size: 1.15rem; font-weight: 750; display: block; line-height: 1.1; letter-spacing: -.01em; }
.cfoot__brandsub { font-size: .8rem; font-weight: 650; letter-spacing: .04em; }
.cfoot__desc { color: var(--text-soft); font-size: .9rem; line-height: 1.7; }
.cfoot__cols { flex: 1; display: flex; gap: 56px; justify-content: flex-end; flex-wrap: wrap; }
.cfoot__col h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-faint); margin-bottom: 14px; }
.cfoot__col a { display: block; color: var(--text-soft); padding: 5px 0; font-size: .9rem; transition: color .2s; }
.cfoot__col a:hover { color: var(--text); }
.cfoot__acc { display: none; }
.cfoot__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cfoot__copy { color: var(--text-faint); font-size: .85rem; }
.cfoot__social { display: flex; gap: 14px; }
.cfoot__social a { color: var(--text-faint); transition: color .2s, transform .15s; }
.cfoot__social a:hover { color: var(--brand-300); transform: translateY(-2px); }
.cfoot__social svg { width: 19px; height: 19px; fill: currentColor; display: block; }

@media (max-width: 860px) {
    .cfoot__top { flex-direction: column; gap: 0; }
    .cfoot__brand { width: auto; padding-bottom: 22px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
    .cfoot__cols { display: none; }
    .cfoot__acc { display: block; }
    .cfoot__bottom { flex-direction: column-reverse; align-items: flex-start; gap: 14px; }
}
.cfoot__accitem { border-radius: 14px; background: var(--surface); border: 1px solid var(--border); margin-bottom: 8px; overflow: hidden; }
.cfoot__accbtn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 15px 16px; background: transparent; border: none; color: var(--text); font-weight: 600; font-size: .92rem; cursor: pointer; text-align: left; }
.cfoot__accbtn svg { width: 16px; height: 16px; flex: none; transition: transform .25s ease; color: var(--text-faint); }
.cfoot__accitem.open .cfoot__accbtn svg { transform: rotate(180deg); }
.cfoot__accpanel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.cfoot__accitem.open .cfoot__accpanel { max-height: 360px; }
.cfoot__accpanel a { display: block; color: var(--text-soft); padding: 7px 16px; font-size: .9rem; }
.cfoot__accpanel a:last-child { padding-bottom: 16px; }

/* ---- Back to top ---- */
.back-top {
    position: fixed; right: 18px; bottom: 90px; z-index: 55;
    width: 46px; height: 46px; border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    background: var(--grad); color: #fff; border: none; cursor: pointer;
    box-shadow: var(--glow); transition: transform .18s;
}
.back-top.show { display: flex; }
.back-top:hover { transform: translateY(-3px) scale(1.05); }
.back-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.2; }
@media (min-width: 861px) { .back-top { bottom: 24px; } }

/* ---- TELMO Pay — bio linki (sosyal + kopyala) ---- */
.pay-links { display: flex; flex-direction: column; gap: 10px; }
.pay-link {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px; border-radius: 16px;
    background: var(--surface); border: 1px solid var(--border-strong);
    color: var(--text); font-weight: 600; transition: transform .15s, border-color .2s, background .2s;
}
.pay-link:hover { transform: translateY(-2px); border-color: var(--brand-400); background: var(--surface-2); }
.pay-link .pf { font-size: 1.4rem; flex: none; width: 28px; text-align: center; }
.pay-link .lbl { flex: 1; }
.pay-link .lbl b { display: block; font-weight: 700; }
.pay-link .lbl span { font-size: .82rem; color: var(--text-faint); }
.pay-link .fol { font-size: .85rem; color: var(--text-soft); font-weight: 700; }
.pay-link .arrow { color: var(--text-faint); }

.copy-box { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; }
.copy-box input {
    flex: 1; min-width: 200px; background: var(--surface); border: 1px solid var(--border-strong);
    border-radius: 12px; padding: 12px 14px; color: var(--text); font-size: .92rem; font-family: inherit;
}
.copy-box .btn { white-space: nowrap; }
.copy-ok { color: var(--green); font-size: .85rem; font-weight: 600; margin-top: 8px; display: none; }
.copy-ok.show { display: block; }
