/*
 * Savana Radar — panel tasarımı. Önek: r-
 * Dil: "savanada gün batımı". Gece gökyüzü yan menü, ufukta turuncu-pembe güneş ışığı ve akasya silueti,
 * canlı degrade kartlar, radar halkası motifi. Süs okunurluğu asla bozmaz.
 * Hareket kısa ve anlamlı; "hareketi azalt" ayarında hepsi kapanır (en altta).
 */

@font-face {
    font-family: "Plus Jakarta Sans";
    font-style: normal; font-display: swap; font-weight: 200 800;
    src: url("../fonts/plus-jakarta-sans-latin-ext.341687eeeb6a.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: "Plus Jakarta Sans";
    font-style: normal; font-display: swap; font-weight: 200 800;
    src: url("../fonts/plus-jakarta-sans-latin.7660bd9909fb.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    /* gökyüzü */
    --gece-1: #2A0F52;
    --gece-2: #1A1447;
    --gece-3: #0B1631;
    /* gün batımı */
    --gunes: #FF7A2F;
    --gunes-koyu: #D9520F;
    --altin: #FFC53D;
    --flamingo: #F2508A;
    --akasya: #16A36A;
    --okyanus: #2A78D6;
    --lavanta: #7C5CF0;
    /* zemin ve metin */
    --kum: #FBF6EE;
    --kum-2: #F4EADB;
    --cizgi: #ECE2D3;
    --metin: #1E1B34;
    --soluk: #676379;
    --beyaz: #FFFFFF;
    /* satış aşamaları (dataviz doğrulayıcısından geçti; her zaman yazılı etiketle birlikte) */
    --d-yeni: #2A78D6;
    --d-arandi: #4A3AA7;
    --d-teklif: #EDA100;
    --d-demo: #E87BA4;
    --d-anlasildi: #1BAF7A;
    --d-olumsuz: #E34948;

    --golge-sm: 0 1px 2px rgba(30, 20, 60, .05), 0 6px 18px rgba(30, 20, 60, .06);
    --golge: 0 18px 40px -12px rgba(30, 20, 60, .22);
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
    --menu-genislik: 276px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0; min-height: 100vh;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif; font-size: 15px; line-height: 1.5;
    color: var(--metin);
    background:
        radial-gradient(900px 420px at 105% -8%, rgba(255, 122, 47, .16), transparent 62%),
        radial-gradient(760px 420px at 30% 112%, rgba(124, 92, 240, .10), transparent 60%),
        var(--kum);
    background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
svg { display: block; }
:focus-visible { outline: 3px solid var(--gunes); outline-offset: 2px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.r-skip { position: absolute; left: 1rem; top: -4rem; z-index: 100; padding: .6rem 1rem; border-radius: 10px; background: var(--metin); color: #fff; font-weight: 700; }
.r-skip:focus { top: 1rem; }

/* ================================================================ logo: dönen radar */
.r-logo { display: inline-flex; align-items: center; gap: .7rem; }
.r-logo__disk {
    position: relative; flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
    background:
        repeating-radial-gradient(circle, transparent 0 5px, rgba(255, 255, 255, .28) 5px 6px),
        radial-gradient(circle at 50% 50%, #FFB347, var(--gunes) 45%, var(--flamingo));
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .12), 0 8px 22px -6px rgba(255, 122, 47, .75);
}
.r-logo__disk::before {
    /* tarama ışını */
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255, 255, 255, .85), rgba(255, 255, 255, 0) 70deg, transparent 360deg);
    animation: r-tara 3.2s linear infinite;
}
.r-logo__disk::after {
    /* yakalanan hedef */
    content: ""; position: absolute; left: 62%; top: 26%; width: 5px; height: 5px; border-radius: 50%; background: #fff;
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, .9); animation: r-yanip 3.2s ease-in-out infinite;
}
@keyframes r-tara { to { transform: rotate(360deg); } }
@keyframes r-yanip { 0%, 15% { opacity: 0; } 22% { opacity: 1; } 60%, 100% { opacity: 0; } }
.r-logo__yazi { display: flex; flex-direction: column; line-height: 1.05; }
.r-logo__yazi strong { font-size: 1.12rem; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.r-logo__yazi strong span {
    background: linear-gradient(90deg, var(--altin), var(--gunes) 60%, var(--flamingo));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.r-logo__yazi small { font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }

/* ================================================================ kabuk */
@media (min-width: 1024px) { .r-main { padding-left: var(--menu-genislik); } }

/* ---------------------------------------------------------------- yan menü: gece gökyüzü */
.r-side {
    position: fixed; inset: 0 auto 0 0; z-index: 50; width: var(--menu-genislik); display: flex; flex-direction: column; overflow: hidden;
    color: #D5D0EA;
    background:
        radial-gradient(130% 55% at 50% 118%, rgba(255, 122, 47, .75), rgba(242, 80, 138, .38) 38%, transparent 68%),
        linear-gradient(180deg, var(--gece-1) 0%, var(--gece-2) 48%, var(--gece-3) 100%);
}
.r-side::before {
    /* yıldızlar: yukarıda parlak, ufka doğru kaybolur */
    content: ""; position: absolute; inset: 0 0 40% 0; pointer-events: none; opacity: .75;
    background-image:
        radial-gradient(1.2px 1.2px at 22px 34px, #fff 50%, transparent 51%),
        radial-gradient(1px 1px at 88px 12px, #fff 50%, transparent 51%),
        radial-gradient(1.5px 1.5px at 140px 66px, #FFE6B8 50%, transparent 51%),
        radial-gradient(1px 1px at 190px 28px, #fff 50%, transparent 51%),
        radial-gradient(1px 1px at 60px 96px, #fff 50%, transparent 51%),
        radial-gradient(1.3px 1.3px at 232px 104px, #fff 50%, transparent 51%);
    background-size: 260px 130px;
    -webkit-mask-image: linear-gradient(#000, transparent); mask-image: linear-gradient(#000, transparent);
}
.r-side :focus-visible { outline-color: #fff; }
.r-side__marka { position: relative; z-index: 1; flex-shrink: 0; height: 76px; display: flex; align-items: center; padding: 0 1.3rem; }
.r-side__kapat { display: none; }

.r-nav { position: relative; z-index: 1; flex: 1; overflow-y: auto; padding: .25rem .9rem 1rem; scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, .15) transparent; }
.r-nav__baslik { margin: 1.1rem 0 .45rem .7rem; font-size: .64rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: rgba(213, 208, 234, .55); }
.r-nav__oge {
    position: relative; display: flex; align-items: center; gap: .75rem; margin-bottom: 3px; padding: .66rem .9rem; border-radius: 14px;
    font-size: .92rem; font-weight: 600; color: #D5D0EA;
    transition: background .2s, color .2s, transform .3s var(--ease-bounce), box-shadow .3s;
}
.r-nav__oge svg { width: 20px; height: 20px; flex-shrink: 0; opacity: .85; transition: transform .4s var(--ease-bounce); }
a.r-nav__oge:hover { background: rgba(255, 255, 255, .08); color: #fff; transform: translateX(3px); }
a.r-nav__oge:hover svg { transform: scale(1.12); }
.r-nav__oge.is-aktif {
    color: #fff; font-weight: 800;
    background: linear-gradient(120deg, var(--gunes), var(--flamingo));
    box-shadow: 0 10px 24px -8px rgba(255, 122, 47, .8), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.r-nav__oge.is-aktif svg { opacity: 1; }
.r-nav__oge.is-aktif:hover { transform: none; }
.r-nav__oge.is-yakinda { opacity: .5; cursor: default; }
.r-nav__yakinda {
    margin-left: auto; padding: .12rem .45rem; border-radius: 999px; font-size: .6rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    background: rgba(255, 255, 255, .12); color: #fff;
}

/* ufuk: akasya silueti */
.r-side__ufuk { position: relative; z-index: 1; flex-shrink: 0; height: 92px; pointer-events: none; }
.r-side__ufuk svg { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; }

/* ---------------------------------------------------------------- mobil çekmece */
.r-toggle, .r-perde { display: none; }
@media (max-width: 1023.98px) {
    html:not(.js) .r-side { position: static; width: auto; }
    html.js .r-side {
        width: min(86vw, 296px); visibility: hidden; transform: translateX(-105%); box-shadow: 24px 0 60px rgba(10, 8, 30, .45);
        transition: transform .4s var(--ease-out), visibility 0s linear .4s;
    }
    html.js body.r-menu-acik .r-side { visibility: visible; transform: none; transition: transform .4s var(--ease-out), visibility 0s; }
    html.js .r-toggle { display: inline-flex; }
    html.js .r-side__kapat {
        display: inline-flex; align-items: center; justify-content: center; margin-left: auto; width: 38px; height: 38px; border-radius: 12px;
        color: #fff; background: rgba(255, 255, 255, .1);
    }
    html.js .r-side__kapat svg { width: 18px; height: 18px; }
    html.js .r-perde {
        display: block; position: fixed; inset: 0; z-index: 45; background: rgba(12, 10, 32, .55); backdrop-filter: blur(2px);
        opacity: 0; visibility: hidden; transition: opacity .3s, visibility 0s linear .3s;
    }
    html.js body.r-menu-acik .r-perde { opacity: 1; visibility: visible; transition: opacity .3s, visibility 0s; }
    body.r-menu-acik { overflow: hidden; }
}

/* ---------------------------------------------------------------- üst çubuk */
.r-ust {
    position: sticky; top: 0; z-index: 40; height: 72px; display: flex; align-items: center; gap: .8rem; padding: 0 1rem;
    background: rgba(251, 246, 238, .82); backdrop-filter: saturate(1.5) blur(14px); -webkit-backdrop-filter: saturate(1.5) blur(14px);
    border-bottom: 1px solid var(--cizgi);
}
.r-ust::after {
    /* gün batımı çizgisi */
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
    background: linear-gradient(90deg, var(--gunes), var(--flamingo) 35%, var(--lavanta) 65%, transparent);
    opacity: .55;
}
@media (min-width: 640px) { .r-ust { padding: 0 2rem; } }
.r-ust h1 { margin: 0; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 1.22rem; font-weight: 800; letter-spacing: -.02em; }
.r-toggle { flex-shrink: 0; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: #fff; border: 1px solid var(--cizgi); box-shadow: var(--golge-sm); }
.r-toggle svg { width: 20px; height: 20px; }
.r-kim { margin-left: auto; display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.r-kim__ben { display: flex; align-items: center; gap: .65rem; }
.r-avatar {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--altin), var(--gunes) 50%, var(--flamingo)); color: #fff; font-weight: 800;
    box-shadow: 0 0 0 3px #fff, 0 6px 16px -4px rgba(242, 80, 138, .6);
}
.r-kim__yazi { display: none; line-height: 1.15; }
@media (min-width: 640px) { .r-kim__yazi { display: block; } }
.r-kim__yazi strong { display: block; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .88rem; font-weight: 700; }
.r-rol { display: inline-block; margin-top: .15rem; padding: .05rem .5rem; border-radius: 999px; font-size: .66rem; font-weight: 800; letter-spacing: .04em; }
.r-rol--yonetici { background: #EFE9FF; color: #4A3AA7; }
.r-rol--satisci { background: #FFEBDD; color: #B6430B; }

/* ---------------------------------------------------------------- düğmeler */
.r-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 42px; padding: .55rem 1.1rem; border-radius: 12px;
    font-size: .9rem; font-weight: 700; white-space: nowrap;
    transition: transform .25s var(--ease-bounce), box-shadow .25s, background .2s, border-color .2s;
}
.r-btn svg { width: 18px; height: 18px; }
.r-btn--ana {
    color: #fff; background: linear-gradient(120deg, var(--gunes), var(--flamingo));
    box-shadow: 0 10px 22px -10px rgba(242, 80, 138, .9), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.r-btn--ana:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(242, 80, 138, 1), inset 0 1px 0 rgba(255, 255, 255, .3); }
.r-btn--hayalet { background: #fff; border: 1px solid var(--cizgi); color: var(--metin); }
.r-btn--hayalet:hover { border-color: var(--gunes); color: var(--gunes-koyu); }
.r-btn--genis { width: 100%; min-height: 50px; font-size: 1rem; border-radius: 14px; }

/* ---------------------------------------------------------------- içerik */
.r-icerik { padding: 1.4rem 1rem 3rem; }
@media (min-width: 640px) { .r-icerik { padding: 2rem 2rem 3.5rem; } }
.r-icerik:focus { outline: none; }
.r-giris-anim { animation: r-yuksel .5s var(--ease-out) both; }
@keyframes r-yuksel { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.r-mesaj { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: 1.25rem; padding: .85rem 1rem; border-radius: 14px; font-weight: 600; font-size: .9rem; }
.r-mesaj svg { width: 20px; height: 20px; flex-shrink: 0; }
.r-mesaj--success { background: #E3F7EE; color: #0B6B45; }
.r-mesaj--error { background: #FDE8E8; color: #A3231F; }
.r-mesaj--info, .r-mesaj--warning { background: #FFF3DA; color: #8A5300; }

/* karşılama */
.r-merhaba {
    position: relative; overflow: hidden; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 1.5rem;
    margin-bottom: 1.5rem; padding: 1.5rem 1.6rem; border-radius: 24px; color: #fff;
    background:
        radial-gradient(90% 140% at 100% 100%, rgba(255, 197, 61, .55), transparent 55%),
        linear-gradient(115deg, var(--gece-1) 0%, #5B1F7A 45%, var(--flamingo) 80%, var(--gunes) 100%);
    box-shadow: var(--golge);
}
.r-merhaba::after {
    /* radar halkaları filigranı */
    content: ""; position: absolute; right: -60px; top: 50%; width: 260px; height: 260px; transform: translateY(-50%); border-radius: 50%;
    background: repeating-radial-gradient(circle, transparent 0 22px, rgba(255, 255, 255, .16) 22px 23.5px);
    pointer-events: none;
}
.r-merhaba h2 { position: relative; margin: 0; font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 800; letter-spacing: -.02em; }
.r-merhaba p { position: relative; margin: .25rem 0 0; font-size: .92rem; color: rgba(255, 255, 255, .82); }
.r-merhaba .r-btn { position: relative; z-index: 1; }

/* ---------------------------------------------------------------- degrade istatistik kartları */
.r-kartlar { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 1.5rem; }
@media (min-width: 1100px) { .r-kartlar { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.r-kart {
    --ton: linear-gradient(135deg, var(--gunes), var(--flamingo)); --parilti: rgba(242, 80, 138, .55);
    position: relative; overflow: hidden; isolation: isolate; display: flex; flex-direction: column; gap: .8rem; padding: 1.15rem 1.2rem 1.25rem;
    border-radius: 20px; color: #fff; background: var(--ton);
    box-shadow: 0 14px 30px -14px var(--parilti), inset 0 1px 0 rgba(255, 255, 255, .25);
    transition: transform .35s var(--ease-bounce), box-shadow .3s;
}
.r-kart::after {
    content: ""; position: absolute; z-index: -1; right: -46px; bottom: -58px; width: 150px; height: 150px; border-radius: 50%;
    background: repeating-radial-gradient(circle, rgba(255, 255, 255, .22) 0 1.5px, transparent 1.5px 16px);
    transition: transform .8s var(--ease-out);
}
.r-kart:hover { transform: translateY(-4px); box-shadow: 0 22px 38px -14px var(--parilti), inset 0 1px 0 rgba(255, 255, 255, .25); }
.r-kart:hover::after { transform: rotate(35deg) scale(1.12); }
.r-kart__ust { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.r-kart__etiket { font-size: .82rem; font-weight: 700; color: rgba(255, 255, 255, .9); }
.r-kart__ikon {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 38px; height: 38px; border-radius: 12px;
    background: rgba(255, 255, 255, .2); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
    transition: transform .45s var(--ease-bounce);
}
.r-kart__ikon svg { width: 20px; height: 20px; }
.r-kart:hover .r-kart__ikon { transform: rotate(-12deg) scale(1.1); }
.r-kart__deger { font-size: clamp(1.8rem, 3.2vw, 2.3rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.r-ton-gunbatimi { --ton: linear-gradient(135deg, #FF9A3C, var(--gunes) 40%, var(--flamingo)); --parilti: rgba(242, 80, 138, .6); }
.r-ton-gece      { --ton: linear-gradient(135deg, #8B6CFF, #4A3AA7 55%, #22196B); --parilti: rgba(74, 58, 167, .6); }
.r-ton-okyanus   { --ton: linear-gradient(135deg, #2FB8E0, var(--okyanus) 55%, #1C4FA0); --parilti: rgba(42, 120, 214, .6); }
.r-ton-akasya    { --ton: linear-gradient(135deg, #A5D63F, #2DB36F 45%, #0E8055); --parilti: rgba(22, 163, 106, .55); }
.r-ton-flamingo  { --ton: linear-gradient(135deg, #FF8FB8, var(--flamingo) 45%, #B03BD8); --parilti: rgba(176, 59, 216, .5); }

/* ---------------------------------------------------------------- kutular */
.r-izgara { display: grid; gap: 1.25rem; align-items: start; }
@media (min-width: 1100px) { .r-izgara--2 { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); } }
.r-kutu { position: relative; background: #fff; border: 1px solid var(--cizgi); border-radius: 22px; box-shadow: var(--golge-sm); }
.r-kutu__bas { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: 1.1rem 1.35rem; border-bottom: 1px solid var(--cizgi); }
.r-kutu__baslik { margin: 0; display: flex; align-items: center; gap: .6rem; font-size: 1.02rem; font-weight: 800; }
.r-kutu__baslik small { font-size: .8rem; font-weight: 600; color: var(--soluk); }
.r-kutu__isaret {
    display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 10px; color: #fff;
    background: linear-gradient(135deg, var(--gunes), var(--flamingo));
}
.r-kutu__isaret svg { width: 17px; height: 17px; }
.r-kutu__isaret--mor { background: linear-gradient(135deg, var(--lavanta), #4A3AA7); }
.r-kutu__govde { padding: 1.2rem 1.35rem 1.35rem; }

/* satış hunisi: yatay çubuklar, 4px yuvarlak uç, sayı ve etiket yazıyla (renk tek başına anlam taşımaz) */
.r-huni { margin: 0; padding: 0; list-style: none; display: grid; gap: .95rem; }
.r-huni li { display: grid; grid-template-columns: 8.5rem minmax(0, 1fr) 4.5rem; align-items: center; gap: .8rem; }
.r-huni__etiket { display: flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 700; }
.r-huni__nokta { width: 10px; height: 10px; flex-shrink: 0; border-radius: 3px; background: var(--renk); }
.r-huni__iz { height: 12px; border-radius: 4px; background: var(--kum-2); overflow: hidden; }
.r-huni__cubuk { display: block; height: 100%; width: var(--oran); min-width: 0; border-radius: 0 4px 4px 0; background: var(--renk); transform-origin: left; animation: r-dol .9s var(--ease-out) both; }
.r-huni__sayi { text-align: right; font-size: .88rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.r-huni__sayi small { display: block; font-size: .72rem; font-weight: 600; color: var(--soluk); }
@keyframes r-dol { from { transform: scaleX(0); } }
.durum--yeni { --renk: var(--d-yeni); }
.durum--arandi { --renk: var(--d-arandi); }
.durum--teklif_verildi { --renk: var(--d-teklif); }
.durum--demo_yapildi { --renk: var(--d-demo); }
.durum--anlasildi { --renk: var(--d-anlasildi); }
.durum--olumsuz { --renk: var(--d-olumsuz); }
@media (max-width: 520px) { .r-huni li { grid-template-columns: 6.5rem minmax(0, 1fr) 3.6rem; gap: .6rem; } }

/* rozet: durum rengi zeminde soluk, noktada tam */
.r-rozet {
    display: inline-flex; align-items: center; gap: .35rem; padding: .18rem .6rem; border-radius: 999px; font-size: .74rem; font-weight: 700; white-space: nowrap;
    background: color-mix(in srgb, var(--renk, #888) 14%, #fff); color: var(--metin);
}
.r-rozet::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--renk, #888); }

/* aktivite akışı */
.r-akis { margin: 0; padding: 0; list-style: none; }
.r-akis li { display: flex; gap: .8rem; padding: .85rem 1.35rem; border-bottom: 1px solid #F3ECE1; }
.r-akis li:last-child { border-bottom: 0; }
.r-akis__ikon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 34px; height: 34px; border-radius: 11px; background: #FFF0E4; color: var(--gunes-koyu); }
.r-akis__ikon svg { width: 17px; height: 17px; }
.r-akis__metin { min-width: 0; font-size: .88rem; }
.r-akis__metin strong { font-weight: 700; }
.r-akis__meta { margin-top: .1rem; font-size: .76rem; color: var(--soluk); }

/* boş durum */
.r-bos { display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: 2.5rem 1.25rem; text-align: center; color: var(--soluk); font-size: .9rem; }
.r-bos__radar {
    position: relative; width: 84px; height: 84px; border-radius: 50%; overflow: hidden; margin-bottom: .4rem;
    background: repeating-radial-gradient(circle, transparent 0 10px, rgba(124, 92, 240, .22) 10px 11.5px), #F6F1FF;
}
.r-bos__radar::before {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(124, 92, 240, .45), transparent 80deg, transparent 360deg);
    animation: r-tara 3s linear infinite;
}
.r-bos strong { color: var(--metin); font-size: 1rem; }

/* ================================================================ giriş ekranı */
.r-giris { min-height: 100vh; display: grid; }
@media (min-width: 960px) { .r-giris { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); } }
.r-giris__sahne {
    position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; min-height: 320px;
    padding: 2rem 1.5rem 0; color: #fff;
    background:
        radial-gradient(120% 70% at 50% 118%, #FFC53D 0%, var(--gunes) 22%, var(--flamingo) 42%, rgba(91, 31, 122, .9) 64%, transparent 80%),
        linear-gradient(180deg, var(--gece-3) 0%, var(--gece-2) 35%, var(--gece-1) 70%);
}
@media (min-width: 960px) { .r-giris__sahne { padding: 2.5rem 3rem 0; } }
.r-giris__sahne::before {
    content: ""; position: absolute; inset: 0 0 45% 0; pointer-events: none; opacity: .9;
    background-image:
        radial-gradient(1.3px 1.3px at 30px 40px, #fff 50%, transparent 51%),
        radial-gradient(1px 1px at 120px 18px, #fff 50%, transparent 51%),
        radial-gradient(1.8px 1.8px at 236px 104px, #FFE6B8 50%, transparent 51%),
        radial-gradient(1px 1px at 318px 36px, #fff 50%, transparent 51%),
        radial-gradient(1.2px 1.2px at 84px 168px, #fff 50%, transparent 51%),
        radial-gradient(1px 1px at 402px 150px, #fff 50%, transparent 51%),
        radial-gradient(1.4px 1.4px at 470px 62px, #fff 50%, transparent 51%),
        radial-gradient(1px 1px at 172px 226px, #fff 50%, transparent 51%),
        radial-gradient(1.5px 1.5px at 356px 240px, #FFD9E8 50%, transparent 51%),
        radial-gradient(1px 1px at 520px 204px, #fff 50%, transparent 51%);
    background-size: 560px 270px;
    -webkit-mask-image: linear-gradient(#000, transparent); mask-image: linear-gradient(#000, transparent);
}
.r-giris__metin { position: relative; z-index: 1; max-width: 34rem; }
.r-giris__metin h1 { margin: 0 0 .75rem; font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 800; line-height: 1.05; letter-spacing: -.035em; }
.r-giris__metin h1 span {
    background: linear-gradient(90deg, var(--altin), var(--gunes) 55%, #FF9EC4);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.r-giris__metin p { margin: 0; font-size: 1.02rem; color: rgba(255, 255, 255, .8); max-width: 28rem; }
.r-giris__radar {
    /* büyük radar: güneşin önünde döner */
    position: absolute; z-index: 0; left: 50%; bottom: -150px; width: 520px; height: 520px; transform: translateX(-50%); border-radius: 50%; overflow: hidden;
    background: repeating-radial-gradient(circle, transparent 0 38px, rgba(255, 255, 255, .2) 38px 40px);
    -webkit-mask-image: radial-gradient(circle, #000 55%, transparent 71%); mask-image: radial-gradient(circle, #000 55%, transparent 71%);
}
.r-giris__radar::before {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 55deg, transparent 360deg);
    animation: r-tara 5s linear infinite;
}
/* yükseklik genişlikle orantılı: SVG "slice" ölçeklenirken ağaç tepeleri kırpılmasın */
.r-giris__ufuk { position: relative; z-index: 1; height: clamp(150px, 20vw, 290px); margin: 0 -1.5rem; pointer-events: none; }
@media (min-width: 960px) { .r-giris__ufuk { margin: 0 -3rem; } }
.r-giris__ufuk svg { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; }

.r-giris__form-alani { display: flex; align-items: center; justify-content: center; padding: 2.5rem 1.25rem; }
.r-giris__kart {
    width: 100%; max-width: 420px; padding: 2rem 1.75rem; border-radius: 26px; background: #fff; border: 1px solid var(--cizgi);
    box-shadow: 0 30px 60px -28px rgba(42, 15, 82, .35);
}
@media (min-width: 480px) { .r-giris__kart { padding: 2.4rem 2.25rem; } }
.r-giris__kart h2 { margin: 0; font-size: 1.55rem; font-weight: 800; letter-spacing: -.02em; }
.r-giris__kart > p { margin: .35rem 0 1.6rem; color: var(--soluk); font-size: .92rem; }
.r-alan { display: grid; gap: .4rem; align-content: start; margin-bottom: 1.1rem; }
.r-alan label { font-size: .84rem; font-weight: 700; }
.r-girdi { position: relative; }
.r-girdi svg { position: absolute; left: .95rem; top: 50%; width: 19px; height: 19px; transform: translateY(-50%); color: #A29DB5; pointer-events: none; transition: color .2s; }
.r-girdi input {
    width: 100%; min-height: 50px; padding: .7rem 1rem .7rem 2.8rem; border-radius: 14px; border: 1.5px solid var(--cizgi); background: #FDFBF8;
    font-size: .98rem; transition: border-color .2s, box-shadow .2s, background .2s;
}
.r-girdi input:focus { outline: none; border-color: var(--gunes); background: #fff; box-shadow: 0 0 0 4px rgba(255, 122, 47, .16); }
.r-girdi:focus-within svg { color: var(--gunes); }
.r-giris__not { margin: 1.3rem 0 0; display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--soluk); }
.r-giris__not svg { width: 16px; height: 16px; flex-shrink: 0; }
.r-giris__marka { position: relative; z-index: 1; }

/* ================================================================ ortak küçükler */
.r-bag { color: #B6430B; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(182, 67, 11, .3); text-underline-offset: 3px; }
.r-bag:hover { text-decoration-color: currentColor; }
.r-bag-koyu { font-weight: 700; }
.r-bag-koyu:hover { color: #B6430B; }
.r-soluk { color: var(--soluk); }
.r-nowrap { white-space: nowrap; }
.r-kir { overflow-wrap: anywhere; }
.r-geri { display: inline-flex; margin-bottom: 1rem; font-size: .88rem; font-weight: 700; color: var(--soluk); }
.r-geri:hover { color: var(--gunes-koyu); }
.r-btn--kucuk { min-height: 34px; padding: .35rem .8rem; font-size: .8rem; border-radius: 10px; color: #fff; background: linear-gradient(120deg, var(--gunes), var(--flamingo)); }
.r-btn--kucuk:hover { transform: translateY(-1px); }
.r-btn--beyaz { background: #fff; color: var(--metin); box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .35); }
.r-btn--beyaz:hover { transform: translateY(-2px); }
.r-btn--cam { color: #fff; background: rgba(255, 255, 255, .16); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35); }
.r-btn--cam:hover { background: rgba(255, 255, 255, .26); }
a.r-kart { cursor: pointer; }
.r-sayfa-bas { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.r-sayfa-bas p { margin: 0; color: var(--soluk); font-size: .92rem; max-width: 40rem; }
.r-mesaj--info svg, .r-mesaj--warning svg { color: #B6430B; }

/* select / girdi / metin alanı: tek görünüm */
.r-filtre select, .r-filtre input, .r-form select, .r-form input:not([type=checkbox]):not([type=radio]), .r-form textarea, .r-toplu select, .r-ata select {
    min-height: 42px; padding: .5rem .85rem; border-radius: 12px; border: 1.5px solid var(--cizgi); background: #fff; font-size: .9rem;
    transition: border-color .2s, box-shadow .2s;
}
.r-form textarea { width: 100%; resize: vertical; min-height: 88px; line-height: 1.45; }
.r-filtre select:focus, .r-filtre input:focus, .r-form select:focus, .r-form input:focus, .r-form textarea:focus, .r-toplu select:focus {
    outline: none; border-color: var(--gunes); box-shadow: 0 0 0 4px rgba(255, 122, 47, .15);
}

/* ---------------------------------------------------------------- durum hapları */
.r-haplar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.r-hap {
    --renk: var(--metin);
    display: inline-flex; align-items: center; gap: .45rem; padding: .42rem .5rem .42rem .85rem; border-radius: 999px;
    font-size: .85rem; font-weight: 700; background: #fff; border: 1.5px solid var(--cizgi);
    transition: transform .25s var(--ease-bounce), border-color .2s, box-shadow .2s, background .2s;
}
.r-hap:hover { transform: translateY(-2px); border-color: var(--renk); }
.r-hap__sayi { min-width: 26px; padding: .05rem .45rem; border-radius: 999px; text-align: center; font-size: .75rem; background: color-mix(in srgb, var(--renk) 14%, #fff); }
.r-hap.is-secili { color: #fff; border-color: transparent; background: var(--renk); box-shadow: 0 8px 18px -8px var(--renk); }
.r-hap.is-secili .r-hap__sayi { background: rgba(255, 255, 255, .25); }
.r-hap:not([class*="durum--"]).is-secili { background: linear-gradient(120deg, var(--gece-1), var(--lavanta)); --renk: var(--lavanta); }

/* ---------------------------------------------------------------- süzgeç */
.r-filtre { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-bottom: 1.25rem; padding: .75rem; border-radius: 18px; background: rgba(255, 255, 255, .7); border: 1px solid var(--cizgi); }
.r-filtre label { display: contents; }
.r-filtre__ara { position: relative; flex: 1 1 240px; display: block !important; }
.r-filtre__ara svg { position: absolute; left: .8rem; top: 50%; width: 17px; height: 17px; transform: translateY(-50%); color: var(--gunes); pointer-events: none; }
.r-filtre__ara input { width: 100%; padding-left: 2.4rem !important; }
.r-filtre select { flex: 0 1 auto; max-width: 100%; }
@media (max-width: 640px) { .r-filtre select, .r-filtre .r-btn { flex: 1 1 45%; } }

/* ---------------------------------------------------------------- tablo */
.r-tablo-kutu { background: #fff; border: 1px solid var(--cizgi); border-radius: 20px; box-shadow: var(--golge-sm); overflow: hidden; }
.r-tablo-kaydir { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.r-tablo { width: 100%; min-width: 820px; border-collapse: separate; border-spacing: 0; font-size: .88rem; }
.r-tablo thead th {
    padding: .8rem 1rem; text-align: left; white-space: nowrap; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #5B4F7A;
    background: linear-gradient(180deg, #F7F2FF, #F2EBFE); border-bottom: 1px solid #E5DCF7;
}
.r-tablo td { padding: .75rem 1rem; border-bottom: 1px solid #F3ECE1; vertical-align: middle; }
.r-tablo tbody tr:last-child td { border-bottom: 0; }
.r-tablo tbody tr { transition: background .15s; }
.r-tablo tbody tr:hover { background: #FFF7EE; }
.r-tablo tbody tr:has(input:checked) { background: #FFF1E4; }
.r-tablo .is-sag { text-align: right; }
.r-tablo__sec { width: 44px; padding-right: 0 !important; }
.r-tablo__sec input { width: 18px; height: 18px; accent-color: var(--gunes); cursor: pointer; }
.r-tablo__baslik { font-weight: 700; }
.r-tablo__baslik:hover { color: #B6430B; }
.r-tablo__alt { margin-top: .1rem; font-size: .76rem; color: var(--soluk); }
.r-tel { font-weight: 600; font-variant-numeric: tabular-nums; }
.r-tel:hover { color: var(--akasya); }
.r-web { display: inline-block; padding: .15rem .55rem; border-radius: 8px; font-size: .72rem; font-weight: 700; white-space: nowrap; }
.r-web--yok { background: #FFE9DA; color: #A13D08; }
.r-web--sosyal { background: #FDE7F3; color: #9B1F63; }
.r-web--var { background: #E8F1FD; color: #1D5AA8; }
.r-havuz-etiket { display: inline-block; padding: .12rem .5rem; border-radius: 8px; font-size: .74rem; font-weight: 700; background: #EFE9FF; color: #4A3AA7; }
.r-tarih { font-weight: 700; font-variant-numeric: tabular-nums; }
.r-tarih--bugun { color: #B6430B; }
.r-tarih--gecti { color: #B42323; }
.r-tarih--gecti::before { content: "⚠ "; }

/* dar ekran: her satır etiketli bir kart (telefon, durum, tarih kaydırmanın arkasında kalmasın) */
@media (max-width: 760px) {
    .r-tablo-kutu { background: transparent; border: 0; box-shadow: none; overflow: visible; }
    .r-tablo { min-width: 0; }
    .r-tablo thead { display: none; }
    .r-tablo, .r-tablo tbody { display: block; }
    .r-tablo tbody tr {
        position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: .55rem .9rem; margin-bottom: .75rem; padding: 1rem 1rem .9rem;
        background: #fff; border: 1px solid var(--cizgi); border-radius: 18px; box-shadow: var(--golge-sm);
    }
    .r-tablo td { display: block; padding: 0; border: 0 !important; min-width: 0; }
    .r-tablo td[data-etiket]::before { content: attr(data-etiket); display: block; margin-bottom: .1rem; font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--soluk); }
    .r-tablo .r-tablo__firma { grid-column: 1 / -1; padding-right: 2.2rem; }
    .r-tablo .r-tablo__firma .r-tablo__baslik { font-size: 1rem; }
    .r-tablo .r-tablo__sec { position: absolute; top: 1rem; right: 1rem; width: auto; }
    .r-tablo td.is-sag { grid-column: 1 / -1; text-align: left; }
    .r-tablo td.is-sag .r-btn { width: 100%; min-height: 42px; }
}

/* toplu işlem çubuğu: seçim yapınca alttan kayarak gelir */
.r-toplu {
    position: sticky; bottom: 1rem; z-index: 30; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem;
    margin-top: 1rem; padding: .75rem .9rem .75rem 1.2rem; border-radius: 18px; color: #fff;
    background: linear-gradient(120deg, var(--gece-1), var(--gece-2) 60%, #3B1F6E);
    box-shadow: 0 20px 40px -16px rgba(26, 20, 71, .7);
}
html.js .r-toplu:not(.is-acik) { visibility: hidden; opacity: 0; transform: translateY(20px); pointer-events: none; }
html.js .r-toplu { transition: opacity .3s, transform .4s var(--ease-bounce), visibility 0s; }
.r-toplu__sayi { font-size: .9rem; }
.r-toplu__sayi strong { font-size: 1.1rem; color: var(--altin); }
.r-toplu__islemler { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.r-toplu__islemler label { display: contents; }
.r-toplu select { color: var(--metin); }
.r-toplu .r-btn--hayalet { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .25); color: #fff; }

.r-sayfalar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem 1rem; margin-top: 1.25rem; font-size: .88rem; color: var(--soluk); }

/* ---------------------------------------------------------------- firma detay */
.r-firma-bas {
    position: relative; overflow: hidden; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.25rem;
    margin-bottom: 1.5rem; padding: 1.6rem 1.6rem 1.5rem; border-radius: 24px; color: #fff;
    background:
        radial-gradient(80% 140% at 100% 0%, color-mix(in srgb, var(--renk) 85%, #fff) 0%, transparent 60%),
        linear-gradient(120deg, var(--gece-1), color-mix(in srgb, var(--renk) 70%, var(--gece-2)));
    box-shadow: var(--golge);
}
.r-firma-bas::after {
    content: ""; position: absolute; right: -70px; bottom: -110px; width: 280px; height: 280px; border-radius: 50%; pointer-events: none;
    background: repeating-radial-gradient(circle, transparent 0 22px, rgba(255, 255, 255, .14) 22px 23.5px);
}
.r-firma-bas__metin { position: relative; z-index: 1; min-width: 0; }
.r-firma-bas h2 { margin: .6rem 0 .2rem; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.02em; overflow-wrap: anywhere; }
.r-firma-bas p { margin: 0; color: rgba(255, 255, 255, .85); font-size: .92rem; }
.r-firma-bas__sahip { display: flex; align-items: center; gap: .4rem; margin-top: .55rem !important; font-weight: 600; }
.r-firma-bas__sahip svg { width: 16px; height: 16px; }
.r-firma-bas__islem { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: .5rem; }
.r-ata { display: flex; flex-wrap: wrap; gap: .5rem; }
.r-ata label { display: contents; }
.r-ata select { color: var(--metin); border-color: transparent; }
.r-rozet--koyu { background: rgba(255, 255, 255, .95); }

.r-izgara--detay { align-items: start; }
@media (min-width: 1100px) { .r-izgara--detay { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); } }
.r-yigin { display: grid; gap: 1.25rem; min-width: 0; }
.r-yigin > .r-mesaj { margin: 0; }

.r-ara-dugme {
    display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; padding: .9rem 1.1rem; border-radius: 16px; color: #fff;
    background: linear-gradient(120deg, #2DB36F, var(--akasya) 50%, #0E8055); box-shadow: 0 12px 26px -12px rgba(22, 163, 106, .8);
    transition: transform .3s var(--ease-bounce), box-shadow .3s;
}
.r-ara-dugme:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(22, 163, 106, .9); }
.r-ara-dugme svg { width: 24px; height: 24px; padding: .45rem; box-sizing: content-box; border-radius: 12px; background: rgba(255, 255, 255, .2); }
.r-ara-dugme span { display: flex; flex-direction: column; font-size: 1.15rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.r-ara-dugme small { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 255, 255, .8); }

.r-bilgi { margin: 0 0 1.1rem; display: grid; font-size: .9rem; }
.r-bilgi > div { display: grid; grid-template-columns: 6.5rem minmax(0, 1fr); gap: .75rem; padding: .6rem 0; border-bottom: 1px dashed var(--cizgi); }
.r-bilgi > div:last-child { border-bottom: 0; }
.r-bilgi dt { color: var(--soluk); font-weight: 600; }
.r-bilgi dd { margin: 0; min-width: 0; display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-weight: 600; }

/* zaman çizelgesi */
.r-zaman { margin: 0; padding: .6rem 1.35rem 1.1rem; list-style: none; }
.r-zaman__oge { --renk: var(--gunes); position: relative; padding: .75rem 0 .75rem 1.7rem; border-left: 2px solid #F0E6D8; margin-left: .45rem; }
.r-zaman__oge:last-child { border-left-color: transparent; }
.r-zaman__nokta { position: absolute; left: -8px; top: 1rem; width: 14px; height: 14px; border-radius: 50%; background: var(--renk); box-shadow: 0 0 0 4px color-mix(in srgb, var(--renk) 20%, #fff); }
.r-zaman__oge--arama { --renk: var(--akasya); }
.r-zaman__oge--whatsapp { --renk: #25B863; }
.r-zaman__oge--mail { --renk: var(--okyanus); }
.r-zaman__oge--teklif { --renk: #EDA100; }
.r-zaman__oge--demo { --renk: var(--flamingo); }
.r-zaman__oge--toplanti { --renk: var(--lavanta); }
.r-zaman__oge--atama { --renk: #8E89A3; }
.r-zaman__bas { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-size: .9rem; }
.r-zaman__not { margin: .35rem 0 0; padding: .6rem .8rem; border-radius: 12px; background: #FBF7F1; font-size: .88rem; overflow-wrap: anywhere; }
.r-zaman__meta { margin-top: .3rem; font-size: .76rem; color: var(--soluk); }

/* ---------------------------------------------------------------- formlar */
.r-form { display: grid; gap: .1rem; }
.r-form .r-alan { margin-bottom: 1rem; }
.r-form .r-alan label { font-size: .84rem; font-weight: 700; }
.r-form .r-alan input:not([type=checkbox]), .r-form .r-alan select { width: 100%; }
.r-form__ikili { display: grid; gap: 0 1rem; }
@media (min-width: 640px) { .r-form__ikili { grid-template-columns: 1fr 1fr; } }
.r-form__dugmeler { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .4rem; }
.r-form > .r-btn { justify-self: start; }
.r-zorunlu { color: var(--flamingo); }
.r-alan__yardim { font-size: .76rem; color: var(--soluk); }
.r-alan__hata { font-size: .78rem; font-weight: 700; color: #B42323; }
.r-alan--hata input, .r-alan--hata select { border-color: #E34948 !important; }
.r-onay { display: inline-flex; align-items: center; gap: .55rem; cursor: pointer; }
.r-onay input { width: 20px; height: 20px; accent-color: var(--gunes); }
.r-form-kutu { max-width: 760px; }

/* aktivite türü: renkli seçim çipleri */
.r-secim { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0 0 1rem; padding: 0; border: 0; }
.r-secim legend { width: 100%; margin-bottom: .45rem; padding: 0; font-size: .84rem; font-weight: 700; }
.r-secim__oge { position: relative; cursor: pointer; }
.r-secim__oge input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.r-secim__oge span {
    display: inline-block; padding: .45rem .85rem; border-radius: 999px; font-size: .84rem; font-weight: 700;
    background: #F6F1EA; border: 1.5px solid transparent; transition: background .2s, border-color .2s, color .2s, transform .25s var(--ease-bounce);
}
.r-secim__oge:hover span { transform: translateY(-1px); border-color: var(--cizgi); }
.r-secim__oge input:checked + span { color: #fff; background: linear-gradient(120deg, var(--gunes), var(--flamingo)); box-shadow: 0 8px 16px -8px rgba(242, 80, 138, .8); }
.r-secim__oge input:focus-visible + span { outline: 3px solid var(--gunes); outline-offset: 2px; }

/* ---------------------------------------------------------------- ekip */
.r-ekip { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.r-uye {
    position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 1rem; padding: 1.2rem; border-radius: 20px;
    background: #fff; border: 1px solid var(--cizgi); box-shadow: var(--golge-sm);
    transition: transform .35s var(--ease-bounce), box-shadow .3s, border-color .3s;
}
.r-uye::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--altin), var(--gunes), var(--flamingo), var(--lavanta)); }
.r-uye:hover { transform: translateY(-4px); box-shadow: var(--golge); border-color: #F3D4BD; }
.r-uye.is-pasif { opacity: .6; filter: grayscale(.6); }
.r-uye__bas { display: flex; align-items: center; gap: .8rem; }
.r-avatar--buyuk { width: 48px; height: 48px; font-size: 1.15rem; }
.r-uye__ad { display: flex; flex-direction: column; min-width: 0; flex: 1; line-height: 1.2; }
.r-uye__ad strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.r-uye__ad small { color: var(--soluk); font-size: .8rem; }
.r-uye__sayilar { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.r-uye__sayilar > span { display: flex; flex-direction: column; padding: .6rem .7rem; border-radius: 14px; font-size: .74rem; font-weight: 600; color: var(--soluk); background: #F4F0FF; }
.r-uye__sayilar strong { font-size: 1.3rem; font-weight: 800; color: #4A3AA7; line-height: 1.1; }
.r-uye__sayilar .r-uye__aranacak { background: #FFF0E4; }
.r-uye__aranacak strong { color: #B6430B; }
.r-uye__sayilar .r-uye__anlasilan { background: #E4F7EE; }
.r-uye__anlasilan strong { color: #0B7A4E; }
.r-uye__pasif { position: absolute; top: 14px; right: 14px; padding: .15rem .55rem; border-radius: 999px; font-size: .68rem; font-weight: 800; background: #E2E1E8; color: #4B4860; }

/* ---------------------------------------------------------------- tanıtım */
.r-ipucu {
    display: flex; align-items: flex-start; gap: .6rem; margin: 0 0 1rem; padding: .75rem 1rem; border-radius: 14px;
    font-size: .88rem; background: linear-gradient(120deg, #F4EEFF, #FFF1E6); border: 1px solid #EADFF8;
}
.r-ipucu svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: .1rem; color: var(--lavanta); }
.r-ipucu .r-bag { margin-left: .25rem; white-space: nowrap; }

.r-yol { display: grid; gap: .9rem; margin: 0 0 1.5rem; padding: 0; list-style: none; counter-reset: yol; }
@media (min-width: 700px) { .r-yol { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .r-yol { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.r-yol__adim {
    position: relative; overflow: hidden; display: flex; flex-direction: column; gap: .45rem; padding: 1.1rem 1.1rem 1.2rem; border-radius: 20px;
    color: #fff; background: var(--ton); box-shadow: 0 14px 28px -16px var(--parilti);
}
.r-yol__adim::after {
    content: ""; position: absolute; right: -40px; bottom: -50px; width: 130px; height: 130px; border-radius: 50%; pointer-events: none;
    background: repeating-radial-gradient(circle, rgba(255, 255, 255, .2) 0 1.5px, transparent 1.5px 15px);
}
.r-yol__adim > svg { width: 30px; height: 30px; padding: .45rem; box-sizing: content-box; border-radius: 12px; background: rgba(255, 255, 255, .2); }
.r-yol__adim strong { font-size: 1.05rem; font-weight: 800; }
.r-yol__adim span:last-child { font-size: .84rem; line-height: 1.45; color: rgba(255, 255, 255, .9); }
.r-yol__no {
    position: absolute; top: .9rem; right: 1rem; font-size: 2.2rem; font-weight: 800; line-height: 1; color: rgba(255, 255, 255, .28);
}
@media (min-width: 1200px) {
    /* adımlar arasında ok */
    .r-yol__adim:not(:last-child)::before {
        content: "→"; position: absolute; z-index: 2; right: -.95rem; top: 50%; transform: translateY(-50%);
        width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%;
        font-size: .85rem; font-weight: 800; color: var(--gunes-koyu); background: #fff; box-shadow: var(--golge-sm);
    }
    .r-yol__adim { overflow: visible; }
    .r-yol__adim::after { display: none; }
}

.r-kavramlar { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 900px) { .r-kavramlar { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.r-kavram { display: flex; gap: 1rem; padding: 1.3rem; border-radius: 22px; background: #fff; border: 1px solid var(--cizgi); box-shadow: var(--golge-sm); scroll-margin-top: 90px; }
.r-kavram:target { border-color: var(--gunes); box-shadow: 0 0 0 4px rgba(255, 122, 47, .15), var(--golge-sm); }
.r-kavram__ikon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 48px; height: 48px; border-radius: 15px; color: #fff; background: var(--ton); box-shadow: 0 10px 20px -10px var(--parilti); }
.r-kavram__ikon svg { width: 24px; height: 24px; }
.r-kavram h3 { margin: .2rem 0 .35rem; font-size: 1.1rem; font-weight: 800; }
.r-kavram p { margin: 0 0 .5rem; font-size: .92rem; }
.r-kavram ul { margin: 0 0 .7rem; padding-left: 1.1rem; font-size: .88rem; color: #3E3A55; display: grid; gap: .3rem; }
.r-kavram li::marker { color: var(--gunes); }

.r-sozluk { margin: 0; padding: .4rem 1.35rem 1rem; }
.r-sozluk > div { display: grid; grid-template-columns: 11rem minmax(0, 1fr); gap: .9rem; align-items: center; padding: .7rem 0; border-bottom: 1px dashed var(--cizgi); }
.r-sozluk > div:last-child { border-bottom: 0; }
.r-sozluk dd { margin: 0; font-size: .88rem; color: #3E3A55; }
@media (max-width: 520px) { .r-sozluk > div { grid-template-columns: 1fr; gap: .35rem; } }

/* ---------------------------------------------------------------- kazıma işleri */
.r-not { margin: .9rem 0 0; font-size: .8rem; color: var(--soluk); }
.r-btn--mini { min-height: 32px; padding: .3rem .75rem; font-size: .8rem; border-radius: 10px; }
.r-izgara--kazima { align-items: start; }
@media (min-width: 1100px) { .r-izgara--kazima { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); } }

.r-worker {
    display: flex; align-items: center; gap: .9rem; margin-bottom: 1.25rem; padding: .95rem 1.2rem; border-radius: 18px;
    background: #fff; border: 1px solid var(--cizgi); box-shadow: var(--golge-sm); font-size: .88rem;
}
.r-worker div { display: flex; flex-direction: column; }
.r-worker strong { font-size: .95rem; }
.r-worker span:not(.r-worker__isik) { color: var(--soluk); }
.r-worker__isik { position: relative; flex-shrink: 0; width: 14px; height: 14px; border-radius: 50%; background: #B9B5C8; }
.r-worker.is-acik { background: linear-gradient(120deg, #E6F8EF, #fff 60%); border-color: #BFE8D2; }
.r-worker.is-acik .r-worker__isik { background: var(--akasya); }
.r-worker.is-acik .r-worker__isik::after {
    content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--akasya); animation: r-nabiz 1.8s ease-out infinite;
}
@keyframes r-nabiz { from { transform: scale(.6); opacity: 1; } to { transform: scale(1.6); opacity: 0; } }

.r-isler { margin: 0; padding: 0; list-style: none; }
.r-is { --renk: #8E89A3; display: grid; gap: .45rem; padding: 1rem 1.35rem; border-bottom: 1px solid #F3ECE1; border-left: 4px solid var(--renk); }
.r-is:last-child { border-bottom: 0; border-radius: 0 0 0 20px; }
.r-is--bekliyor { --renk: #EDA100; }
.r-is--calisiyor { --renk: var(--okyanus); background: linear-gradient(90deg, #EEF5FE, #fff 70%); }
.r-is--bitti { --renk: var(--d-anlasildi); }
.r-is--hata { --renk: var(--d-olumsuz); }
.r-is__bas { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem; }
.r-is__durum {
    display: inline-flex; align-items: center; gap: .35rem; padding: .15rem .6rem; border-radius: 999px; font-size: .72rem; font-weight: 800;
    color: #fff; background: var(--renk);
}
.r-is--calisiyor .r-is__durum::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: r-yanip-sonen 1s ease-in-out infinite alternate; }
@keyframes r-yanip-sonen { from { opacity: .25; } to { opacity: 1; } }
.r-is__sorgu { font-size: .98rem; text-transform: capitalize; }
.r-is__sayilar { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .84rem; color: var(--soluk); }
.r-is__sayilar strong { color: var(--metin); font-size: 1rem; }
.r-is__cubuk { display: block; height: 8px; border-radius: 4px; background: #DCE8F8; overflow: hidden; }
.r-is__cubuk span { display: block; height: 100%; border-radius: 0 4px 4px 0; background: linear-gradient(90deg, #2FB8E0, var(--okyanus)); transition: width .6s var(--ease-out); }
.r-is__mesaj { margin: 0; font-size: .82rem; color: #3E3A55; overflow-wrap: anywhere; }
.r-is--hata .r-is__mesaj { color: #A3231F; }
.r-is__alt { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem; font-size: .78rem; color: var(--soluk); }
.r-is__islemler { display: flex; align-items: center; gap: .75rem; }

/* ================================================================ hareketi azalt */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
