/* =====================================================================
   FitAura — Ana tema
   1. Degiskenler     2. Temel      3. Butonlar    4. Header
   5. Hero            6. Bolumler   7. Kartlar     8. PWA/CTA
   9. Footer         10. Yardimci  11. Responsive
   ===================================================================== */

/* ---------------------------------------------------- 1. DEGISKENLER */
:root {
    --ink:        #0B0D10;
    --ink-2:      #14181E;
    --ink-3:      #1D232B;
    --volt:       #D7FF3E;
    --volt-dark:  #B9E01F;
    --orange:     #FF5A1F;
    --orange-dk:  #E04510;

    --paper:      #FFFFFF;
    --muted:      #F4F6F8;
    --line:       #E6E9ED;

    --text:       #16191D;
    --text-soft:  #5B646E;
    --text-light: rgba(255, 255, 255, .72);

    --radius:     16px;
    --radius-lg:  24px;
    --radius-pill:999px;

    --shadow-sm:  0 2px 8px rgba(11, 13, 16, .06);
    --shadow:     0 12px 32px rgba(11, 13, 16, .10);
    --shadow-lg:  0 28px 64px rgba(11, 13, 16, .18);

    --font-body:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-head:  'Barlow Condensed', 'Inter', sans-serif;

    --container:  1200px;
    --ease:       cubic-bezier(.22, 1, .36, 1);
}

/* --------------------------------------------------------- 2. TEMEL */
* { box-sizing: border-box; }

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--paper);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-text, .stat-num, .step-num {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.08;
}

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
img { max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }
p  { margin: 0 0 1rem; }

.container { max-width: var(--container); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 9999;
    background: var(--volt); color: var(--ink);
    padding: .75rem 1.25rem; font-weight: 600; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
    outline: 3px solid var(--volt);
    outline-offset: 2px;
    border-radius: 6px;
}

::selection { background: var(--volt); color: var(--ink); }

/* AOS yuklenemezse (CDN hatasi, JS kapali) icerik gizli kalmasin */
html:not(.aos-ready) [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* ------------------------------------------------------ 3. BUTONLAR */
.btn {
    --bs-btn-focus-box-shadow: none;
    font-weight: 600;
    font-size: .95rem;
    border-radius: var(--radius-pill);
    padding: .68rem 1.5rem;
    border: 2px solid transparent;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease),
                background-color .2s var(--ease), color .2s var(--ease);
}
.btn:active { transform: translateY(1px); }

/* Ikon + metin her zaman ortali dursun (yalniz ikonlu butonlar dahil) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
}

/* DIKKAT: app.css Bootstrap'ten SONRA yuklendigi icin yukaridaki .btn
   padding'i Bootstrap'in .btn-sm / .btn-lg kurallarini eziyordu; bu yuzden
   boyut siniflarini burada yeniden tanimliyoruz. */
.btn-lg { padding: .9rem 2rem;   font-size: 1.02rem; }
.btn-sm { padding: .42rem .95rem; font-size: .84rem; border-width: 1px; }

/* Yalnizca ikon iceren kare butonlar */
.btn-icon,
.btn-sm.btn-ghost-dark,
.btn-sm.btn-ghost-danger { padding: .42rem .6rem; }

.btn-volt {
    background: var(--volt);
    color: var(--ink);
    box-shadow: 0 8px 22px rgba(215, 255, 62, .30);
}
.btn-volt:hover {
    background: var(--volt-dark);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(215, 255, 62, .42);
}

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dk); color: #fff; transform: translateY(-2px); }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: transparent;
}
.btn-ghost:hover { color: var(--ink); background: rgba(11, 13, 16, .05); }

.site-header .btn-ghost { color: #fff; }
.site-header .btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.site-header.scrolled .btn-ghost { color: var(--text); }
.site-header.scrolled .btn-ghost:hover { background: rgba(11, 13, 16, .06); color: var(--ink); }

.btn-ghost-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.btn-dark  { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); color: #fff; transform: translateY(-2px); }

.btn-outline-dark {
    border-color: var(--ink);
    color: var(--ink);
    background: transparent;
}
.btn-outline-dark:hover { background: var(--ink); color: #fff; }

/* -------------------------------------------------------- 4. HEADER */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1030;
    transition: background-color .3s var(--ease), box-shadow .3s var(--ease),
                backdrop-filter .3s var(--ease);
}
.site-header .navbar { padding: 1rem 0; transition: padding .3s var(--ease); }

.site-header.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(14px);
    box-shadow: var(--shadow-sm);
}
.site-header.scrolled .navbar { padding: .55rem 0; }

.navbar-brand { display: inline-flex; align-items: center; gap: .6rem; }

.brand-mark {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--volt);
    color: var(--ink);
    font-size: 1.15rem;
    box-shadow: 0 6px 18px rgba(215, 255, 62, .38);
}

.brand-text {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #fff;
    transition: color .3s var(--ease);
}
.site-header.scrolled .brand-text { color: var(--ink); }

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, .82);
    font-weight: 500;
    font-size: .96rem;
    padding: .5rem .95rem;
    position: relative;
    transition: color .2s var(--ease);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: .95rem; right: .95rem; bottom: .25rem;
    height: 2px;
    background: var(--volt);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.site-header.scrolled .navbar-nav .nav-link { color: var(--text-soft); }
.site-header.scrolled .navbar-nav .nav-link:hover,
.site-header.scrolled .navbar-nav .nav-link.active { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: .5rem; }

.navbar-toggler {
    border: 0;
    color: #fff;
    font-size: 1.3rem;
    padding: .35rem .6rem;
}
.navbar-toggler:focus { box-shadow: none; }
.site-header.scrolled .navbar-toggler { color: var(--ink); }

/* ---------------------------------------------------------- 5. HERO */
.hero {
    position: relative;
    background: var(--ink);
    color: #fff;
    padding: 11rem 0 4.5rem;
    overflow: hidden;
    isolation: isolate;
}

.hero-glow {
    position: absolute;
    top: -30%; right: -10%;
    width: 900px; height: 900px;
    background:
        radial-gradient(circle at 30% 30%, rgba(215, 255, 62, .22), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 90, 31, .20), transparent 60%);
    z-index: -1;
    animation: floatGlow 18s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes floatGlow {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(-40px, 40px, 0) scale(1.08); }
}

.hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
    z-index: -1;
}

.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(215, 255, 62, .12);
    border: 1px solid rgba(215, 255, 62, .30);
    color: var(--volt);
    font-size: .82rem; font-weight: 600;
    padding: .4rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.35rem;
}

.hero-title {
    font-size: clamp(2.9rem, 6.2vw, 4.9rem);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.txt-volt { color: var(--volt); }

.hero-lead {
    font-size: clamp(1rem, 1.25vw, 1.14rem);
    color: var(--text-light);
    max-width: 30rem;
    margin-bottom: 2rem;
}

.hero-search {
    display: flex;
    gap: .5rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    backdrop-filter: blur(10px);
    padding: .5rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.6rem;
    max-width: 44rem;
}

.hero-search-field {
    flex: 1 1 auto;
    display: flex; align-items: center; gap: .6rem;
    padding: .3rem .95rem;
    min-width: 0;
}
.hero-search-field i { color: var(--volt); font-size: .92rem; }
.hero-search-field + .hero-search-field { border-left: 1px solid rgba(255, 255, 255, .13); }

.hero-search input,
.hero-search select {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: .94rem;
    padding: .45rem 0;
}
.hero-search input::placeholder { color: rgba(255, 255, 255, .45); }
.hero-search input:focus,
.hero-search select:focus { outline: none; }
.hero-search select option { background: var(--ink-2); color: #fff; }

.hero-search-city { flex: 0 0 auto; max-width: 11rem; }

.btn-search { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .5rem; }

.hero-badges {
    display: flex; flex-wrap: wrap; gap: 1.4rem;
    font-size: .88rem;
    color: var(--text-light);
}
.hero-badges i { color: var(--volt); margin-right: .4rem; }

/* --- Telefon gorseli --- */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 520px; }

.phone-mock {
    position: relative;
    width: 290px;
    background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 42px;
    padding: 14px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, .04) inset;
    animation: floatPhone 6s ease-in-out infinite alternate;
}
@keyframes floatPhone {
    from { transform: translateY(-10px) rotate(-1.5deg); }
    to   { transform: translateY(10px)  rotate(1.5deg); }
}

.phone-notch {
    position: absolute; top: 20px; left: 50%;
    transform: translateX(-50%);
    width: 96px; height: 22px;
    background: var(--ink);
    border-radius: var(--radius-pill);
    z-index: 2;
}

.phone-screen {
    background: #0F1318;
    border-radius: 30px;
    padding: 2.6rem 1.05rem 1.2rem;
    color: #fff;
}

.ps-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.ps-hello { font-size: .95rem; font-weight: 600; margin: 0; }
.ps-day   { font-size: .72rem; color: var(--volt); margin: 0; }
.ps-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    display: grid; place-items: center; font-size: .8rem;
}

.ps-progress {
    background: rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: .7rem .85rem;
    margin-bottom: .9rem;
}
.ps-progress-top { display: flex; justify-content: space-between; font-size: .74rem; margin-bottom: .5rem; color: rgba(255,255,255,.7); }
.ps-progress-top strong { color: var(--volt); }
.ps-bar { height: 6px; background: rgba(255, 255, 255, .10); border-radius: var(--radius-pill); overflow: hidden; }
.ps-bar span {
    display: block; height: 100%;
    background: linear-gradient(90deg, var(--volt), var(--orange));
    border-radius: var(--radius-pill);
}

.ps-ex {
    display: flex; align-items: center; gap: .65rem;
    background: rgba(255, 255, 255, .05);
    border-radius: 14px;
    padding: .6rem .7rem;
    margin-bottom: .5rem;
}
.ps-ex.muted { opacity: .45; }
.ps-ex-ico {
    width: 32px; height: 32px; flex: 0 0 32px;
    border-radius: 10px;
    background: rgba(215, 255, 62, .14);
    color: var(--volt);
    display: grid; place-items: center;
    font-size: .78rem;
}
.ps-ex-name { font-size: .78rem; font-weight: 600; margin: 0; }
.ps-ex-meta { font-size: .66rem; color: rgba(255, 255, 255, .55); margin: 0; }
.ps-ex > div { flex: 1 1 auto; min-width: 0; }
.ps-done { color: var(--volt); font-size: .95rem; }
.ps-play { color: var(--orange); font-size: .95rem; }

.ps-chart {
    margin-top: .9rem;
    background: rgba(255, 255, 255, .05);
    border-radius: 14px;
    padding: .7rem .85rem;
    color: var(--volt);
}
.ps-chart-title { font-size: .7rem; color: rgba(255, 255, 255, .6); margin: 0 0 .35rem; }
.ps-chart svg { width: 100%; height: 46px; display: block; }

.float-card {
    position: absolute;
    display: flex; align-items: center; gap: .7rem;
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    border-radius: 16px;
    padding: .7rem .95rem;
    box-shadow: var(--shadow);
    animation: floatCard 5s ease-in-out infinite alternate;
}
@keyframes floatCard {
    from { transform: translateY(-8px); }
    to   { transform: translateY(8px); }
}
.float-card strong { display: block; font-size: .92rem; line-height: 1.2; }
.float-card small  { font-size: .72rem; color: var(--text-soft); }
.float-card-1 { top: 14%; left: -2%; }
.float-card-2 { bottom: 16%; right: -2%; animation-delay: 1.2s; }

.fc-ico {
    width: 34px; height: 34px; border-radius: 10px;
    display: grid; place-items: center; font-size: .85rem;
}
.fc-ico.volt   { background: rgba(215, 255, 62, .25); color: #6E8300; }
.fc-ico.orange { background: rgba(255, 90, 31, .16);  color: var(--orange); }

/* --- Sayaclar --- */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    padding: 1.9rem 1rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius-lg);
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    color: var(--volt);
    line-height: 1;
}
.stat-num::after { content: '+'; font-size: .6em; vertical-align: super; opacity: .7; }
.stat-label { font-size: .84rem; color: var(--text-light); }

/* ------------------------------------------------------ 6. BOLUMLER */
.section { padding: 6rem 0; }
.section-light { background: var(--paper); }
.section-muted { background: var(--muted); }
.section-dark  { background: var(--ink); color: #fff; }

.section-head { max-width: 46rem; margin: 0 auto 3.2rem; text-align: center; }
.section-head-row {
    max-width: none;
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 1.5rem; text-align: left;
}

.section-eyebrow {
    display: inline-block;
    font-size: .8rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .75rem;
}
.section-dark .section-eyebrow,
.section-eyebrow.light { color: var(--volt); }

.section-title {
    font-size: clamp(2rem, 3.6vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-lead { color: var(--text-soft); font-size: 1.05rem; margin: 0; }
.section-dark .section-lead,
.pwa-band .section-lead { color: var(--text-light); }

/* -------------------------------------------------------- 7. KARTLAR */

/* Rol kartlari */
.role-card {
    position: relative;
    height: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.9rem;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.role-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.role-card-featured {
    background: var(--ink);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow);
}
.role-card-featured .role-desc { color: var(--text-light); }
.role-card-featured .role-list li { color: rgba(255, 255, 255, .85); }

.role-flag {
    position: absolute; top: 1.4rem; right: 1.4rem;
    background: var(--volt); color: var(--ink);
    font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    padding: .28rem .7rem;
    border-radius: var(--radius-pill);
}

.role-ico {
    width: 58px; height: 58px;
    display: grid; place-items: center;
    border-radius: 18px;
    background: rgba(255, 90, 31, .10);
    color: var(--orange);
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
}
.role-card-featured .role-ico { background: rgba(215, 255, 62, .14); color: var(--volt); }

.role-title { font-size: 1.65rem; text-transform: uppercase; margin-bottom: .7rem; }
.role-desc  { color: var(--text-soft); font-size: .96rem; }

.role-list { margin: 1.3rem 0 1.6rem; display: grid; gap: .6rem; }
.role-list li { font-size: .92rem; display: flex; gap: .6rem; align-items: flex-start; }
.role-list i { color: var(--volt); background: rgba(215,255,62,.18); border-radius: 50%; padding: .25rem; font-size: .62rem; margin-top: .3rem; }
.role-card:not(.role-card-featured) .role-list i { color: #6E8300; }

.role-link {
    display: inline-flex; align-items: center; gap: .5rem;
    font-weight: 600; color: var(--orange);
}
.role-card-featured .role-link { color: var(--volt); }
.role-link i { transition: transform .25s var(--ease); }
.role-link:hover i { transform: translateX(5px); }

/* Adimlar */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step {
    position: relative;
    padding: 2rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .03);
    transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.step:hover { border-color: rgba(215, 255, 62, .4); background: rgba(255, 255, 255, .06); }
.step-num {
    display: block;
    font-size: 3.2rem;
    color: transparent;
    -webkit-text-stroke: 2px rgba(215, 255, 62, .55);
    line-height: 1;
    margin-bottom: .9rem;
}
.step-title { font-size: 1.4rem; text-transform: uppercase; margin-bottom: .6rem; }
.step-desc  { color: var(--text-light); font-size: .95rem; margin: 0; }

/* Ozellik listesi */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; margin-top: 2rem; }
.feature { display: flex; gap: .9rem; }
.feature h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin: 0 0 .25rem; }
.feature p  { font-size: .89rem; color: var(--text-soft); margin: 0; }
.feature-ico {
    width: 42px; height: 42px; flex: 0 0 42px;
    border-radius: 12px;
    background: var(--muted);
    color: var(--ink);
    display: grid; place-items: center;
    font-size: .95rem;
}

/* Egzersiz onizleme */
.exercise-preview {
    display: grid; gap: .8rem;
    background: var(--muted);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
}
.ex-card {
    display: flex; align-items: center; gap: .9rem;
    background: var(--paper);
    border-radius: var(--radius);
    padding: .8rem 1rem;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ex-card:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.ex-thumb {
    width: 46px; height: 46px; flex: 0 0 46px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--volt);
    display: grid; place-items: center;
}
.ex-body { flex: 1 1 auto; min-width: 0; }
.ex-name { font-weight: 600; font-size: .95rem; margin: 0; }
.ex-meta { font-size: .8rem; color: var(--text-soft); margin: 0; }
.ex-play {
    width: 32px; height: 32px; flex: 0 0 32px;
    border-radius: 50%;
    background: rgba(255, 90, 31, .12);
    color: var(--orange);
    display: grid; place-items: center;
    font-size: .7rem;
}

/* Antrenor kartlari */
.trainer-card {
    height: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.trainer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.tc-top { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.tc-avatar {
    width: 58px; height: 58px; flex: 0 0 58px;
    border-radius: 50%;
    background: var(--muted);
    color: var(--text-soft);
    display: grid; place-items: center;
    overflow: hidden;
}
.tc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tc-name  { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; margin: 0; }
.tc-title { font-size: .84rem; color: var(--text-soft); margin: 0; }

.tc-meta { display: flex; flex-wrap: wrap; gap: .9rem; font-size: .82rem; color: var(--text-soft); margin-bottom: 1rem; }
.tc-meta i { color: var(--orange); margin-right: .25rem; }

.tc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.tag {
    font-size: .74rem; font-weight: 500;
    background: var(--muted); color: var(--text-soft);
    padding: .25rem .65rem;
    border-radius: var(--radius-pill);
}

/* Makale kartlari */
.article-card {
    height: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.ac-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--ink);
    overflow: hidden;
}
.ac-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.article-card:hover .ac-cover img { transform: scale(1.06); }
.ac-placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(215,255,62,.5); font-size: 2rem; }
.ac-cat {
    position: absolute; left: .9rem; bottom: .9rem;
    background: var(--volt); color: var(--ink);
    font-size: .72rem; font-weight: 700;
    padding: .25rem .7rem; border-radius: var(--radius-pill);
}

.ac-body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1 1 auto; }
.ac-title { font-family: var(--font-body); font-size: 1.08rem; font-weight: 700; line-height: 1.35; margin: 0 0 .5rem; }
.ac-title a:hover { color: var(--orange); }
.ac-summary { font-size: .9rem; color: var(--text-soft); flex: 1 1 auto; }
.ac-meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--text-soft); }
.ac-meta i { margin-right: .3rem; }

/* Bos durum */
.empty-state {
    text-align: center;
    padding: 3.5rem 1.5rem;
    background: var(--paper);
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
}
.empty-ico {
    width: 64px; height: 64px;
    display: grid; place-items: center; margin: 0 auto 1.1rem;
    border-radius: 18px;
    background: var(--muted); color: var(--text-soft);
    font-size: 1.4rem;
}
.empty-state h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: .5rem; }
.empty-state p  { color: var(--text-soft); max-width: 32rem; margin: 0 auto 1.5rem; }

/* SSS */
.faq-accordion .accordion-item {
    border: 1px solid var(--line);
    border-radius: var(--radius) !important;
    margin-bottom: .8rem;
    overflow: hidden;
    background: var(--paper);
}
.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1.02rem;
    padding: 1.15rem 1.4rem;
    background: var(--paper);
    color: var(--ink);
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) { background: var(--paper); color: var(--orange); }
.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\2b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .85rem;
    width: auto; height: auto;
    color: var(--orange);
    transition: transform .25s var(--ease);
}
.faq-accordion .accordion-button:not(.collapsed)::after { transform: rotate(45deg); }
.faq-accordion .accordion-body { color: var(--text-soft); font-size: .95rem; padding: 0 1.4rem 1.3rem; }

/* ------------------------------------------------------- 8. PWA / CTA */
.pwa-band {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
    color: #fff;
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}
.pwa-band::after {
    content: '';
    position: absolute; top: -40%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(215, 255, 62, .12), transparent 65%);
}
.pwa-band .container { position: relative; z-index: 1; }

.pwa-list { display: grid; gap: .7rem; margin: 1.6rem 0 2rem; font-size: .95rem; color: var(--text-light); }
.pwa-list i { color: var(--volt); width: 1.2rem; margin-right: .5rem; }

.pwa-visual {
    width: 180px; height: 180px;
    margin: 0 auto;
    border-radius: 44px;
    background: var(--volt);
    color: var(--ink);
    display: grid; place-items: center;
    font-size: 4.5rem;
    box-shadow: 0 30px 70px rgba(215, 255, 62, .3);
    animation: pulseApp 3.5s ease-in-out infinite;
}
@keyframes pulseApp {
    0%, 100% { transform: scale(1)    rotate(-3deg); }
    50%      { transform: scale(1.06) rotate(3deg); }
}

.cta-band { background: var(--muted); padding: 0 0 6rem; }
.cta-inner {
    background: linear-gradient(120deg, var(--orange) 0%, #FF8A3D 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3.8rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.cta-inner h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    text-transform: uppercase;
    margin-bottom: .8rem;
}
.cta-inner p { font-size: 1.05rem; opacity: .92; margin-bottom: 1.8rem; }
.cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* -------------------------------------------------------- 9. FOOTER */
.site-footer { background: var(--ink); color: var(--text-light); padding: 4.5rem 0 1.8rem; }

.footer-brand { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.1rem; }
.footer-brand .brand-text { color: #fff; }
.footer-about { font-size: .92rem; max-width: 22rem; }

.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    display: grid; place-items: center;
    transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.footer-social a:hover { background: var(--volt); color: var(--ink); transform: translateY(-3px); }

.footer-title {
    font-family: var(--font-body);
    font-size: .8rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.1rem;
}
.footer-links { display: grid; gap: .55rem; font-size: .9rem; }
.footer-links a:hover { color: var(--volt); }

.footer-bottom {
    margin-top: 3.2rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
    font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-pwa i { color: var(--volt); margin-right: .4rem; }

/* ------------------------------------------------------ 10. YARDIMCI */
.to-top {
    position: fixed; right: 1.2rem; bottom: 1.2rem;
    width: 46px; height: 46px;
    border: 0; border-radius: 50%;
    background: var(--volt); color: var(--ink);
    box-shadow: var(--shadow);
    display: grid; place-items: center;
    opacity: 0; visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    z-index: 1020;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------------------------------------------------- 11. RESPONSIVE */
@media (max-width: 1199.98px) {
    .float-card-1 { left: 2%; }
    .float-card-2 { right: 2%; }
}

@media (max-width: 991.98px) {
    .site-header {
        background: rgba(11, 13, 16, .95);
        backdrop-filter: blur(12px);
    }
    .navbar-collapse {
        background: var(--ink-2);
        border-radius: var(--radius);
        padding: 1rem;
        margin-top: .8rem;
    }
    .site-header.scrolled .navbar-collapse .nav-link { color: rgba(255,255,255,.82); }
    .site-header.scrolled .navbar-collapse .nav-link.active { color: #fff; }
    .navbar-nav { margin-bottom: 1rem; }
    .nav-actions { flex-direction: column; align-items: stretch; gap: .6rem; }
    .nav-actions .btn { width: 100%; }
    .site-header.scrolled .nav-actions .btn-ghost { color: #fff; }

    .hero { padding: 8.5rem 0 3.5rem; }
    .hero-visual { min-height: 440px; margin-top: 1rem; }
    .section-head-row { flex-direction: column; align-items: flex-start; }
    .steps { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
}

@media (max-width: 767.98px) {
    .section { padding: 4rem 0; }

    .hero-search { flex-direction: column; border-radius: var(--radius-lg); }
    .hero-search-field + .hero-search-field { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .13); }
    .hero-search-city { max-width: none; }
    .btn-search { justify-content: center; }

    .hero-badges { gap: .8rem; flex-direction: column; }

    .feature-grid { grid-template-columns: 1fr; }
    .float-card-1 { top: 6%; left: -1%; }
    .float-card-2 { bottom: 8%; right: -1%; }
    .phone-mock { width: 250px; }

    .cta-inner { padding: 2.6rem 1.4rem; }
    .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 575.98px) {
    .hero-stats { padding: 1.4rem .8rem; }
    .role-card { padding: 1.8rem 1.4rem; }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Yazdirma */
@media print {
    .site-header, .site-footer, .to-top, .cta-band, .pwa-band { display: none !important; }
    body { color: #000; background: #fff; }
}

/* ------------------------------------------- 12. DURUM SAYFALARI */
.state-page {
    position: relative;
    background: var(--ink);
    color: #fff;
    min-height: 78vh;
    display: grid;
    place-items: center;
    padding: 10rem 0 6rem;
    overflow: hidden;
    isolation: isolate;
}
.state-inner { text-align: center; max-width: 40rem; margin: 0 auto; }
.state-ico {
    width: 76px; height: 76px;
    display: grid; place-items: center; margin: 0 auto 1.4rem;
    border-radius: 22px;
    background: rgba(215, 255, 62, .12);
    border: 1px solid rgba(215, 255, 62, .28);
    color: var(--volt);
    font-size: 1.7rem;
}
.state-code {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(3.4rem, 9vw, 6rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(215, 255, 62, .55);
    margin-bottom: .4rem;
}
.state-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-transform: uppercase;
    margin-bottom: .8rem;
}
.state-text { color: var(--text-light); margin-bottom: 2rem; }
.state-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ------------------------------------------ 13. KAYIT / GIRIS EKRANLARI */
.auth-page {
    background: var(--muted);
    padding: 8.5rem 0 5rem;
    min-height: 100vh;
}

.auth-shell {
    background: var(--paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* --- Sol tanitim paneli --- */
.auth-aside {
    height: 100%;
    background: linear-gradient(160deg, var(--ink) 0%, var(--ink-3) 100%);
    color: #fff;
    padding: 2.6rem 2.2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.auth-aside::after {
    content: '';
    position: absolute; top: -25%; right: -30%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(215, 255, 62, .16), transparent 65%);
}
.auth-aside > * { position: relative; z-index: 1; }

.auth-brand { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 2.5rem; }
.auth-brand .brand-text { color: #fff; }

.auth-aside-body { flex: 1 1 auto; }
.auth-aside-title {
    font-size: 1.9rem;
    text-transform: uppercase;
    margin-bottom: .8rem;
}
.auth-aside-text { color: var(--text-light); font-size: .95rem; }

.auth-aside-list { display: grid; gap: .7rem; margin-top: 1.8rem; font-size: .92rem; }
.auth-aside-list li { display: flex; gap: .6rem; align-items: flex-start; color: rgba(255, 255, 255, .88); }
.auth-aside-list i { color: var(--volt); margin-top: .28rem; font-size: .82rem; }

.auth-aside-foot {
    margin: 2.5rem 0 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .10);
    font-size: .82rem;
    color: var(--text-light);
}
.auth-aside-foot i { color: var(--volt); margin-right: .4rem; }

/* --- Form tarafi --- */
.auth-form-col { padding: 2.8rem 2.6rem; }

.auth-head { margin-bottom: 1.8rem; }
.auth-badge {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(255, 90, 31, .10);
    color: var(--orange);
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    padding: .3rem .8rem;
    border-radius: var(--radius-pill);
    margin-bottom: .8rem;
}
.auth-title { font-size: clamp(1.8rem, 3vw, 2.4rem); text-transform: uppercase; margin-bottom: .3rem; }
.auth-sub { color: var(--text-soft); font-size: .93rem; margin: 0; }
.auth-sub a, .form-link { color: var(--orange); font-weight: 600; }
.auth-sub a:hover, .form-link:hover { text-decoration: underline; }
.form-link { font-size: .84rem; }

.form-section-title {
    font-family: var(--font-body);
    font-size: .82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--text-soft);
    margin: 2rem 0 1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--line);
}
.form-section-title:first-of-type { margin-top: 0; }
.form-section-title i { color: var(--orange); margin-right: .4rem; }

.form-label { font-size: .88rem; font-weight: 600; margin-bottom: .35rem; }
.req { color: var(--orange); }

.form-control, .form-select {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: .7rem .9rem;
    font-size: .95rem;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-control:focus, .form-select:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(215, 255, 62, .35);
}
.form-control.is-invalid, .form-select.is-invalid { border-color: #DC3545; }

.form-hint { font-size: .78rem; color: var(--text-soft); margin: .35rem 0 0; }
.form-note {
    margin: 1.2rem 0 0;
    font-size: .83rem;
    color: var(--text-soft);
    background: var(--muted);
    border-radius: 12px;
    padding: .8rem 1rem;
}
.form-note i { color: var(--orange); margin-right: .4rem; }

/* Sifre goster/gizle */
.password-wrap { position: relative; }
.password-wrap .form-control { padding-right: 2.8rem; }
.pw-toggle {
    position: absolute; right: .5rem; top: 50%;
    transform: translateY(-50%);
    border: 0; background: transparent;
    color: var(--text-soft);
    width: 2rem; height: 2rem;
    border-radius: 8px;
    cursor: pointer;
}
.pw-toggle:hover { color: var(--ink); background: var(--muted); }

/* Secim rozetleri (checkbox / radio) */
.choice-row  { display: flex; flex-wrap: wrap; gap: .6rem; }
.choice-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.choice-grid-goals { gap: .6rem; }

.choice-pill { position: relative; cursor: pointer; }
.choice-pill input {
    position: absolute; opacity: 0;
    width: 0; height: 0;
}
.choice-pill span {
    display: inline-flex; align-items: center; gap: .45rem;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--text-soft);
    font-size: .87rem; font-weight: 500;
    padding: .5rem 1rem;
    border-radius: var(--radius-pill);
    transition: all .2s var(--ease);
}
.choice-pill span i { font-size: .82rem; }
.choice-pill:hover span { border-color: var(--ink); color: var(--ink); }
.choice-pill input:checked + span {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--volt);
    font-weight: 600;
}
.choice-pill input:focus-visible + span { outline: 3px solid var(--volt); outline-offset: 2px; }

/* KVKK onayi */
.consent-check {
    background: var(--muted);
    border-radius: 12px;
    padding: .9rem 1rem .9rem 2.4rem;
}
.consent-check .form-check-input { margin-left: -1.5rem; margin-top: .25rem; }
.consent-check .form-check-input:checked { background-color: var(--ink); border-color: var(--ink); }
.consent-check .form-check-label { font-size: .85rem; color: var(--text-soft); line-height: 1.6; }
.consent-check a { color: var(--orange); font-weight: 600; }
.consent-check a:hover { text-decoration: underline; }

/* Giris sayfasi ek parcalari */
.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.8rem 0 1.2rem;
}
.auth-divider::before {
    content: ''; position: absolute; top: 50%; left: 0; right: 0;
    height: 1px; background: var(--line);
}
.auth-divider span {
    position: relative;
    background: var(--paper);
    padding: 0 .9rem;
    font-size: .82rem;
    color: var(--text-soft);
}

.auth-role-links { display: grid; gap: .5rem; }
.auth-role-links a {
    display: flex; align-items: center; gap: .6rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: .75rem 1rem;
    font-size: .9rem; font-weight: 500;
    transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.auth-role-links a i { color: var(--orange); width: 1.2rem; }
.auth-role-links a:hover { border-color: var(--ink); background: var(--muted); }

/* Rol secim sayfasi */
.auth-choose { padding-top: 9.5rem; }
.role-card-dark {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .12);
    color: #fff;
}
.role-card-dark .role-desc { color: var(--text-light); }
.role-card-dark .role-list li { color: rgba(255, 255, 255, .85); }
.role-card-dark .role-ico { background: rgba(215, 255, 62, .12); color: var(--volt); }
.role-card-dark:hover { border-color: rgba(215, 255, 62, .45); }
.auth-choose .role-card { display: flex; flex-direction: column; }
.auth-choose .role-list { flex: 1 1 auto; }
.auth-choose-foot { text-align: center; color: var(--text-light); margin: 2.5rem 0 0; }
.auth-choose-foot a { color: var(--volt); font-weight: 600; }

@media (max-width: 991.98px) {
    .auth-page { padding: 7rem 0 3rem; }
    .auth-form-col { padding: 2rem 1.5rem; }
    .auth-aside { padding: 2rem 1.5rem; }
    .auth-brand { margin-bottom: 1.5rem; }
    .auth-aside-foot { display: none; }
    .auth-choose { padding-top: 7.5rem; }
}

/* --------------------------- 14. ACIK ZEMINLI SAYFALARDA HEADER
   Koyu hero'su olmayan sayfalarda (kayit, giris vb.) header bassindan
   itibaren acik temada gorunur; aksi halde beyaz yazi beyaz zeminde kaybolur. */
body.page-light .site-header {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: saturate(180%) blur(14px);
    box-shadow: var(--shadow-sm);
}
body.page-light .brand-text { color: var(--ink); }
body.page-light .navbar-nav .nav-link { color: var(--text-soft); }
body.page-light .navbar-nav .nav-link:hover,
body.page-light .navbar-nav .nav-link.active { color: var(--ink); }
body.page-light .site-header .btn-ghost { color: var(--text); }
body.page-light .site-header .btn-ghost:hover { background: rgba(11, 13, 16, .06); color: var(--ink); }
body.page-light .navbar-toggler { color: var(--ink); }

@media (max-width: 991.98px) {
    body.page-light .site-header { background: rgba(255, 255, 255, .96); }
    body.page-light .site-header .nav-actions .btn-ghost { color: #fff; }
}

/* --------------------------------------------- 15. PANEL YER TUTUCU */
.panel-welcome {
    max-width: 44rem;
    margin: 0 auto;
    background: var(--paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 3rem 2.4rem;
    text-align: center;
}
.panel-ico {
    width: 72px; height: 72px;
    display: grid; place-items: center; margin: 0 auto 1.4rem;
    border-radius: 20px;
    background: var(--ink); color: var(--volt);
    font-size: 1.6rem;
}
.panel-hello { color: var(--text-soft); margin-bottom: 1.2rem; }
.panel-alert { text-align: left; font-size: .9rem; border-radius: 12px; }

.panel-soon {
    background: var(--muted);
    border-radius: var(--radius);
    padding: 1.4rem 1.6rem;
    margin: 1.6rem 0 2rem;
    text-align: left;
}
.panel-soon h2 {
    font-family: var(--font-body);
    font-size: .8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--text-soft);
    margin-bottom: .9rem;
}
.panel-soon ul { display: grid; gap: .55rem; font-size: .93rem; }
.panel-soon li { display: flex; gap: .6rem; align-items: flex-start; }
.panel-soon i { color: var(--orange); margin-top: .3rem; font-size: .82rem; }

/* Footer kurumsal bilgi satiri */
.footer-legal p { margin: 0; }
.footer-company { font-size: .8rem; color: rgba(255, 255, 255, .55); margin-top: .2rem !important; }

/* ============================ 16. KURUMSAL / HUKUKI SAYFALAR ============ */

/* --- Sayfa ust basligi --- */
.page-hero {
    position: relative;
    background: var(--ink);
    color: #fff;
    padding: 9.5rem 0 3.5rem;
    overflow: hidden;
    isolation: isolate;
}
.page-hero .hero-glow { top: -60%; right: -20%; width: 700px; height: 700px; }

.breadcrumb-nav {
    display: flex; align-items: center; gap: .55rem;
    font-size: .84rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}
.breadcrumb-nav a:hover { color: var(--volt); }
.breadcrumb-nav i { font-size: .62rem; opacity: .5; }
.breadcrumb-nav span { color: #fff; }

.page-hero-title {
    font-size: clamp(2.1rem, 4.4vw, 3.2rem);
    text-transform: uppercase;
    margin-bottom: .8rem;
}
.page-hero-text { color: var(--text-light); max-width: 46rem; font-size: 1.04rem; margin: 0; }

/* --- Metin bloklari --- */
.prose { max-width: 46rem; }
.prose h2 {
    font-size: 1.6rem;
    text-transform: uppercase;
    margin: 2.6rem 0 .9rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    font-family: var(--font-body);
    font-size: 1.02rem; font-weight: 700;
    margin: 1.6rem 0 .6rem;
}
.prose p { color: var(--text-soft); font-size: .97rem; line-height: 1.8; }
.prose strong { color: var(--text); }
.prose a { color: var(--orange); font-weight: 600; }
.prose a:hover { text-decoration: underline; }

.prose-list { display: grid; gap: .6rem; margin: 0 0 1.2rem; }
.prose-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.7;
}
.prose-list li::before {
    content: "";
    position: absolute; left: 0; top: .62rem;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.lead-paragraph {
    font-size: 1.05rem !important;
    color: var(--text) !important;
    border-left: 3px solid var(--volt);
    padding-left: 1.1rem;
    margin-bottom: 2rem;
}

/* --- Uyari / bilgi kutulari --- */
.callout {
    background: var(--muted);
    border-left: 4px solid var(--ink);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    margin: 1.4rem 0 1.8rem;
}
.callout p { margin-bottom: .8rem; }
.callout p:last-child { margin-bottom: 0; }
.callout-warning { background: #FFF6E9; border-left-color: #E8912B; }
.callout-success { background: #F2FBE4; border-left-color: var(--volt-dark); }

/* --- Icindekiler --- */
.legal-toc {
    position: sticky; top: 6.5rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
}
.legal-toc-title {
    font-family: var(--font-body);
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--text-soft);
    margin-bottom: 1rem;
}
.legal-toc-title i { color: var(--orange); margin-right: .4rem; }
.legal-toc ol { list-style: none; counter-reset: toc; display: grid; gap: .1rem; }
.legal-toc li { counter-increment: toc; }
.legal-toc a {
    display: block;
    font-size: .88rem;
    color: var(--text-soft);
    padding: .42rem .6rem .42rem 2rem;
    border-radius: 8px;
    position: relative;
    transition: background-color .2s var(--ease), color .2s var(--ease);
}
.legal-toc a::before {
    content: counter(toc);
    position: absolute; left: .6rem;
    font-size: .74rem; font-weight: 700;
    color: var(--orange);
    opacity: .7;
}
.legal-toc a:hover { background: var(--muted); color: var(--ink); }

.legal-updated {
    display: inline-flex; align-items: center; gap: .45rem;
    background: var(--muted);
    border-radius: var(--radius-pill);
    padding: .35rem .95rem;
    font-size: .82rem !important;
    color: var(--text-soft) !important;
    margin-bottom: 2rem !important;
}

.legal-body { max-width: none; }
.legal-body h2 { scroll-margin-top: 6.5rem; }

/* --- Tablo --- */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    margin: 1rem 0 1.6rem;
}
.legal-table th, .legal-table td {
    border: 1px solid var(--line);
    padding: .75rem .9rem;
    text-align: left;
    vertical-align: top;
}
.legal-table th {
    background: var(--muted);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.legal-table td { color: var(--text-soft); }

/* --- Bilgi karti (hakkimizda / iletisim yan sutun) --- */
.info-card {
    position: sticky; top: 6.5rem;
    background: var(--muted);
    border-radius: var(--radius-lg);
    padding: 1.9rem 1.7rem;
}
.info-card-title {
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: .7rem;
}
.info-card-title i { color: var(--orange); margin-right: .45rem; font-size: 1rem; }
.info-card-subtitle {
    font-family: var(--font-body);
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--text-soft);
    margin-bottom: .9rem;
}
.info-card-lead { font-size: .9rem; color: var(--text-soft); }

.info-list { display: grid; gap: .85rem; margin: 0; }
.info-list dt {
    font-size: .74rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--text-soft);
    margin-bottom: .1rem;
}
.info-list dd { margin: 0; font-size: .92rem; line-height: 1.6; }
.info-list a { color: var(--orange); font-weight: 600; }
.info-list a:hover { text-decoration: underline; }

.info-divider { height: 1px; background: var(--line); margin: 1.6rem 0; }
.info-note {
    margin: 1.4rem 0 0;
    font-size: .82rem;
    color: var(--text-soft);
    line-height: 1.6;
}
.info-note i { color: var(--orange); margin-right: .35rem; }

/* --- Iletisim kanallari --- */
.contact-methods { display: grid; gap: 1rem; }
.contact-methods li { display: flex; gap: .85rem; align-items: center; }
.cm-ico {
    width: 42px; height: 42px; flex: 0 0 42px;
    border-radius: 12px;
    background: var(--ink); color: var(--volt);
    display: grid; place-items: center;
}
.cm-ico.whatsapp { background: #25D366; color: #fff; }
.contact-methods strong {
    display: block;
    font-size: .76rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--text-soft);
}
.contact-methods a { font-size: .95rem; font-weight: 600; color: var(--ink); }
.contact-methods a:hover { color: var(--orange); }

.contact-form-title { font-size: 1.7rem; text-transform: uppercase; margin-bottom: 1.4rem; }

/* Bot tuzagi alani: ekran okuyucular disinda gorunmez */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}

/* --- Hukuki sayfa alt iletisim kutusu --- */
.legal-footer-box {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.9rem;
    margin-top: 3rem;
}
.legal-footer-box h2 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: .6rem; }
.legal-footer-box p { color: var(--text-light); font-size: .93rem; }
.legal-footer-box .info-list dt { color: rgba(255, 255, 255, .5); }
.legal-footer-box .info-list dd { color: rgba(255, 255, 255, .9); }
.legal-footer-box .info-list a { color: var(--volt); }
.legal-footer-box .btn-dark { background: var(--volt); color: var(--ink); }
.legal-footer-box .btn-dark:hover { background: var(--volt-dark); color: var(--ink); }

/* --- Nasil calisir: akis adimlari --- */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
.flow-step {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.4rem;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.flow-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.flow-step h3 {
    font-family: var(--font-body);
    font-size: 1.05rem; font-weight: 700;
    margin: .9rem 0 .5rem;
}
.flow-step p { font-size: .9rem; color: var(--text-soft); margin: 0; line-height: 1.7; }
.flow-num {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--volt); color: var(--ink);
    font-family: var(--font-head);
    font-size: 1.25rem; font-weight: 700;
}
.flow-step-dark {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .11);
}
.flow-step-dark h3 { color: #fff; }
.flow-step-dark p { color: var(--text-light); }
.flow-step-dark:hover { border-color: rgba(215, 255, 62, .4); }

/* --- Ucretsizlik bandi --- */
.free-banner { background: var(--volt); padding: 2.2rem 0; }
.free-banner-inner {
    display: flex; align-items: center; gap: 1.4rem;
    max-width: 58rem; margin: 0 auto;
}
.free-ico {
    width: 62px; height: 62px; flex: 0 0 62px;
    border-radius: 18px;
    background: var(--ink); color: var(--volt);
    display: grid; place-items: center;
    font-size: 1.45rem;
}
.free-banner h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: .3rem;
}
.free-banner p { color: rgba(11, 13, 16, .78); font-size: .94rem; margin: 0; line-height: 1.65; }

.cta-band-top { padding-top: 5rem; background: var(--paper); }

@media (max-width: 991.98px) {
    .page-hero { padding: 7.5rem 0 2.5rem; }
    .legal-toc, .info-card { position: static; }
    .flow-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
    .flow-steps { grid-template-columns: 1fr; }
    .free-banner-inner { flex-direction: column; text-align: center; }
    .prose h2 { font-size: 1.35rem; }
    .legal-footer-box { padding: 1.6rem 1.3rem; }
}

/* Uye rol kartindaki ucretsizlik rozeti */
.role-free {
    display: inline-block;
    background: var(--volt);
    color: var(--ink);
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    padding: .28rem .75rem;
    border-radius: var(--radius-pill);
    margin-bottom: .8rem;
}

/* ---------------------- 17. SIFRE SIFIRLAMA EKRANLARI ---------------- */
.auth-shell-narrow { max-width: 62rem; margin: 0 auto; }

.auth-sent { text-align: center; padding: 1rem 0; }
.auth-sent-ico {
    width: 72px; height: 72px;
    display: grid; place-items: center; margin: 0 auto 1.3rem;
    border-radius: 20px;
    background: rgba(215, 255, 62, .22);
    color: #6E8300;
    font-size: 1.7rem;
}
.auth-sent-ico.expired { background: rgba(255, 90, 31, .12); color: var(--orange); }
.auth-sent .auth-sub { max-width: 26rem; margin: 0 auto 1.2rem; }
.auth-sent .form-note { text-align: left; }

/* ------------------------- Sag ust bildirim (toast) ------------------- */
.fa-toast {
    border-radius: var(--radius) !important;
    border: 1px solid var(--line) !important;
    box-shadow: var(--shadow) !important;
    padding: .85rem 1rem !important;
}
.fa-toast .swal2-title {
    font-family: var(--font-body) !important;
    font-size: .92rem !important;
    font-weight: 600 !important;
    color: var(--text) !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}
.fa-toast .swal2-icon { margin: 0 .7rem 0 0 !important; }
.fa-toast .swal2-timer-progress-bar { background: var(--volt-dark) !important; }

/* Panelde sabit ust cubugun altina dussun ki ustune binmesin */
.panel-body .swal2-container.swal2-top-end { padding-top: calc(var(--topbar-h) + 12px); }

@media (max-width: 575.98px) {
    .swal2-container.swal2-top-end { padding-left: 12px; padding-right: 12px; }
    .fa-toast { width: 100% !important; }
}
