/* ===== Psiva — Psikoloji Platformu · Tasarım Sistemi ===== */
:root {
  --ink: #241a6e;           /* koyu lacivert-mor (başlıklar) */
  --primary: #3a2db3;       /* indigo (butonlar/linkler) */
  --primary-600: #2f2496;
  --accent: #f5a83e;        /* turuncu vurgu */
  --accent-soft: #fde9cc;
  --bg: #ffffff;
  --bg-soft: #f6f5ff;       /* çok açık lavanta */
  --lav: #efeafb;
  --lav-2: #e7e0fb;
  --peach: #fff4e6;
  --text: #3a3552;
  --text-dim: #6f6a86;
  --text-mute: #9a95ac;
  --border: #ece9f6;
  --ok: #1fb673;
  --danger: #e5484d;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 18px rgba(58,45,179,.06);
  --shadow: 0 16px 50px rgba(58,45,179,.10);
  --font: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: 15px; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
section { padding: 74px 0; }
.center { text-align: center; }
.muted { color: var(--text-dim); }

/* ---- Logo ---- */
.logo { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.logo .crown { width: 34px; height: 13px; margin-bottom: 1px; }
.logo .word { font-weight: 800; font-size: 25px; color: var(--ink); letter-spacing: -.5px; }
.logo.sm .crown { width: 26px; height: 10px; } .logo.sm .word { font-size: 20px; }
.logo .tag { font-size: 9px; color: var(--primary); letter-spacing: .5px; margin-top: -2px; }
.brandlk { display: inline-flex; align-items: center; gap: 9px; }
.brandimg { height: 40px; width: auto; display: block; }
.brandlk { flex: none; }
.fn-top .brandimg { height: 36px; }
.byl { font-size: 10px; font-weight: 800; color: var(--text-mute); line-height: 1.15; border-left: 1px solid var(--border); padding-left: 9px; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 2px solid transparent; border-radius: 999px; padding: 12px 24px; font-weight: 800; font-size: 15px; cursor: pointer; transition: transform .1s, background .15s, box-shadow .15s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(58,45,179,.28); }
.btn-primary:hover { background: var(--primary-600); }
.btn-accent { background: var(--accent); color: #4a2e00; box-shadow: 0 8px 22px rgba(245,168,62,.32); }
.btn-accent:hover { filter: brightness(1.04); }
.btn-ghost { background: #fff; color: var(--primary); border-color: var(--lav-2); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-white { background: #fff; color: var(--primary); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---- Announcement + Header ---- */
.announce { background: linear-gradient(90deg, var(--lav-2), var(--peach)); color: var(--ink); text-align: center; font-size: 14px; font-weight: 700; padding: 9px 16px; }
.announce b { color: var(--primary); }
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 14px; }
.nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.nav-links a { padding: 9px 10px; border-radius: 10px; font-weight: 700; font-size: 14px; color: var(--text); white-space: nowrap; transition: .15s; }
.nav-links a:hover { background: var(--bg-soft); color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 8px; flex: none; }
.burger { display: none; background: none; border: none; font-size: 26px; color: var(--ink); cursor: pointer; }

/* ---- Hero ---- */
.hero { background: radial-gradient(1000px 500px at 85% -10%, var(--lav) 0%, transparent 60%), radial-gradient(800px 500px at 0% 20%, var(--peach), transparent 55%), var(--bg); padding: 60px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 52px; line-height: 1.06; }
.hero h1 .hl { color: var(--primary); }
.hero .lead { font-size: 18px; color: var(--text-dim); margin: 20px 0 12px; max-width: 540px; }
.hero .policy { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-soft); color: #8a5a13; font-weight: 800; font-size: 14px; padding: 7px 15px; border-radius: 999px; margin-bottom: 22px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.hero-trust div { font-size: 13.5px; color: var(--text-dim); font-weight: 700; display: flex; align-items: center; gap: 7px; }
.hero-visual { position: relative; }
.hero-card { background: #fff; border: 1px solid var(--border); border-radius: 26px; box-shadow: var(--shadow); padding: 22px; }
.hero-card .hc-top { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.hc-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #6b5ce0); display: grid; place-items: center; color: #fff; font-weight: 800; }
.hero-card .hc-row { display: flex; align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.hero-card .hc-row:last-child { border: none; }
.hc-badge { margin-left: auto; background: var(--lav); color: var(--primary); font-weight: 800; font-size: 12px; padding: 4px 11px; border-radius: 999px; }
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; z-index: -1; }

/* ---- Section head ---- */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.sec-head .kicker { color: var(--accent); font-weight: 800; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.sec-head h2 { font-size: 36px; margin: 8px 0 12px; }
.sec-head p { color: var(--text-dim); font-size: 17px; }

/* ---- Services ---- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, border-color .15s; display: flex; flex-direction: column; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--lav-2); }
.svc .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--bg-soft); display: grid; place-items: center; font-size: 26px; margin-bottom: 14px; }
.svc h3 { font-size: 18px; margin-bottom: 7px; }
.svc p { font-size: 14.5px; color: var(--text-dim); flex: 1; }
.svc .more { margin-top: 14px; color: var(--primary); font-weight: 800; font-size: 14px; }

/* ---- Steps (Nasıl Çalışır) ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; padding: 10px; }
.step .num { width: 58px; height: 58px; border-radius: 50%; background: var(--lav); color: var(--primary); font-size: 24px; font-weight: 900; display: grid; place-items: center; margin: 0 auto 14px; position: relative; }
.step .num .em { position: absolute; font-size: 26px; }
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--text-dim); }

/* ---- Experts ---- */
.experts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.exp { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; display: flex; flex-direction: column; }
.exp:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.exp .ph { height: 210px; background: linear-gradient(135deg, var(--lav), var(--peach)); display: grid; place-items: center; font-size: 54px; color: var(--primary); font-weight: 900; position: relative; overflow: hidden; flex: none; }
.exp .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.exp .tag-type { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,.95); color: var(--primary); font-weight: 800; font-size: 11.5px; padding: 4px 10px; border-radius: 999px; }
.exp .body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.exp .name { font-size: 17px; font-weight: 800; color: var(--ink); }
.exp .title { font-size: 13px; color: var(--accent); font-weight: 800; margin-bottom: 8px; }
.exp .chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.chip { background: var(--bg-soft); color: var(--primary); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.exp .meta { font-size: 12.5px; color: var(--text-dim); margin-bottom: 12px; display: flex; flex-direction: column; gap: 3px; }
.exp .btn { margin-top: auto; }

/* ---- Kalite / hedef kitle blokları ---- */
.qual-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; margin-top: 46px; align-items: start; }
.qual-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.qual-box h3 { font-size: 22px; margin-bottom: 8px; }
.check-list { list-style: none; margin-top: 16px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; border-bottom: 1px dashed var(--border); font-size: 14.5px; font-weight: 700; color: var(--text); }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: "✓"; width: 22px; height: 22px; border-radius: 50%; background: var(--lav); color: var(--primary); display: grid; place-items: center; font-size: 12px; font-weight: 900; flex: none; margin-top: 1px; }
.aud-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.aud-chips span, .aud-chips a { background: var(--bg-soft); border: 1px solid var(--border); color: var(--primary); font-weight: 700; font-size: 13px; padding: 7px 13px; border-radius: 999px; }
.aud-chips a { cursor: pointer; transition: .15s; }
.aud-chips a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.note-box { background: var(--peach); border: 1px solid var(--accent-soft); border-radius: 14px; padding: 14px 16px; font-size: 13px; color: #7a5310; margin-top: 16px; line-height: 1.55; }
.price-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--border); font-size: 14.5px; color: var(--text-dim); }
.price-row:last-child { border-bottom: none; }
.price-row b { color: var(--primary); font-size: 16px; white-space: nowrap; }

/* ---- Trust / features ---- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1080px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .qual-grid { grid-template-columns: 1fr; } }
.trust { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.trust .ico { font-size: 28px; margin-bottom: 10px; }
.trust h3 { font-size: 17px; margin-bottom: 6px; }
.trust p { font-size: 14.5px; color: var(--text-dim); }
.band { background: linear-gradient(120deg, var(--primary), #6355d6); color: #fff; border-radius: 26px; padding: 44px; text-align: center; box-shadow: var(--shadow); }
.band h2 { color: #fff; font-size: 32px; }
.band p { color: #e7e2ff; margin: 10px 0 22px; font-size: 17px; }

/* ---- Stats ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.statc { text-align: center; }
.statc .n { font-size: 40px; font-weight: 900; color: var(--primary); }
.statc .l { color: var(--text-dim); font-weight: 700; font-size: 14px; }

/* ---- FAQ ---- */
.faq { max-width: 780px; margin: 0 auto; }
.qa { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.qa .q { padding: 18px 20px; font-weight: 800; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; gap: 12px; align-items: center; font-size: 16px; }
.qa .q .pl { color: var(--accent); font-size: 22px; transition: transform .2s; flex: none; }
.qa.open .q .pl { transform: rotate(45deg); }
.qa .a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.qa .a p { padding: 0 20px 18px; color: var(--text-dim); font-size: 15px; }
.qa.open .a { max-height: 300px; }

/* ---- Testimonials (masonry) ---- */
.tst-masonry { column-count: 3; column-gap: 20px; }
.tst-masonry .tst { break-inside: avoid; margin-bottom: 20px; display: inline-block; width: 100%; }
.tst-masonry .tst.hidden { display: none; }
@media (max-width: 1000px) { .tst-masonry { column-count: 2; } }
@media (max-width: 620px) { .tst-masonry { column-count: 1; } }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tst { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.tst .stars { color: var(--accent); margin-bottom: 10px; }
.tst p { font-size: 15px; color: var(--text); }
.tst .who { margin-top: 14px; font-weight: 800; color: var(--ink); font-size: 14px; }

/* ---- Contact / forms ---- */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13.5px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: #fff; color: var(--text); outline: none; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(58,45,179,.12); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info li { list-style: none; display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-weight: 700; color: var(--text); }
.contact-info li .ci { width: 40px; height: 40px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; font-size: 18px; flex: none; }
.card-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }

/* ---- Footer ---- */
.footer { background: #1c1540; color: #cfc9ea; padding: 56px 0 24px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer a { color: #b9b2df; font-size: 14px; display: block; padding: 5px 0; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer .word { color: #fff; }
.footer .tag { color: var(--accent); }
.footer-bot { border-top: 1px solid #2e2560; margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #928bbb; }

/* ---- WhatsApp float ---- */
.wa { position: fixed; right: 22px; bottom: 22px; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45); z-index: 60; transition: transform .15s; }
.wa:hover { transform: scale(1.06); }
.wa svg { width: 32px; height: 32px; fill: #fff; }

/* ---- Cookie ---- */
.cookie { position: fixed; left: 22px; bottom: 22px; max-width: 380px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 20px; z-index: 60; font-size: 13.5px; color: var(--text-dim); }
.cookie b { color: var(--ink); }
.cookie .row { display: flex; gap: 10px; margin-top: 12px; }

/* ---- Modal ---- */
.modal-ov { position: fixed; inset: 0; background: rgba(28,21,64,.5); backdrop-filter: blur(4px); display: grid; place-items: center; z-index: 80; padding: 20px; overflow-y: auto; }
.modal-c { background: #fff; border-radius: 22px; max-width: 520px; width: 100%; box-shadow: var(--shadow); max-height: 94vh; overflow-y: auto; }
.modal-h { padding: 22px 26px 0; display: flex; justify-content: space-between; align-items: flex-start; }
.modal-h h3 { font-size: 22px; } .modal-h .x { background: none; border: none; font-size: 26px; color: var(--text-mute); cursor: pointer; }
.modal-b { padding: 16px 26px 26px; }

/* ---- Page hero (alt sayfalar) ---- */
.page-hero { background: radial-gradient(700px 300px at 80% -20%, var(--lav), transparent 60%), var(--bg-soft); padding: 50px 0; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: 40px; }
.page-hero p { color: var(--text-dim); font-size: 17px; margin-top: 8px; }
.crumb { font-size: 13px; color: var(--text-mute); margin-bottom: 10px; }
.crumb a { color: var(--primary); font-weight: 700; }

/* ---- Filters ---- */
.filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; align-items: center; }
.filters select { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 999px; background: #fff; font-weight: 700; color: var(--text); }
.filters .count { margin-left: auto; color: var(--text-dim); font-weight: 700; font-size: 14px; }

/* ---- Toast ---- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 12px; font-weight: 700; z-index: 100; opacity: 0; transition: opacity .25s, transform .25s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-4px); }

/* ---- Prose (legal) ---- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 22px; margin: 26px 0 10px; }
.prose p, .prose li { color: var(--text-dim); font-size: 15.5px; margin-bottom: 10px; }
.prose ul { padding-left: 22px; }

/* ===== Uzmanlar: arama + rozet filtreler ===== */
.searchbig { position: relative; max-width: 620px; margin: 0 auto 22px; }
.searchbig input { width: 100%; padding: 16px 20px 16px 50px; border: 2px solid var(--border); border-radius: 999px; font-size: 16px; font-weight: 600; color: var(--text); background: #fff; outline: none; box-shadow: var(--shadow-sm); transition: .15s; }
.searchbig input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(58,45,179,.12); }
.searchbig .ic { position: absolute; left: 19px; top: 50%; transform: translateY(-50%); font-size: 17px; opacity: .55; }
.searchbig .clr { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 20px; color: var(--text-mute); cursor: pointer; display: none; }

/* tek satır kaydırılabilir rozetler + filtre butonu */
.filterline { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; min-width: 0; }
.chipscroll { display: flex; gap: 8px; overflow-x: auto; flex: 1 1 0; min-width: 0; padding: 3px 18px 3px 2px; scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 26px), transparent 100%);
  mask-image: linear-gradient(to right, #000 calc(100% - 26px), transparent 100%); }
.chipscroll::-webkit-scrollbar { display: none; }
.chipscroll .fchip { flex: none; scroll-snap-align: start; }
.filterbtn { flex: none; background: #fff; border: 1.5px solid var(--border); border-radius: 999px; padding: 10px 17px; font-weight: 800; font-size: 13.5px; color: var(--primary); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm); transition: .15s; }
.filterbtn:hover { border-color: var(--primary); }
.fb-badge { background: var(--primary); color: #fff; border-radius: 999px; min-width: 21px; height: 21px; display: none; place-items: center; font-size: 11.5px; font-weight: 900; padding: 0 6px; }
.fb-badge.on { display: grid; }
.sheet-h { font-size: 12.5px; font-weight: 800; color: var(--text-mute); letter-spacing: .06em; text-transform: uppercase; margin: 4px 0 10px; }
.sheet-foot { display: flex; gap: 10px; padding-top: 6px; }
@media (max-width: 640px) {
  .modal-ov.sheet { align-items: end; padding: 0; }
  .modal-ov.sheet .modal-c { max-width: 100%; border-radius: 22px 22px 0 0; max-height: 88vh; }
  .searchbig input { font-size: 16px; padding: 14px 18px 14px 46px; }
  .filterbtn { padding: 10px 13px; font-size: 13px; }
}
@media (max-width: 430px) {
  .filterbtn .fbt { display: none; }           /* dar ekranda sadece ⚙️ + sayı */
  .filterbtn { padding: 11px 13px; gap: 6px; }
  .filterline { gap: 10px; }
}

.flabel { text-align: center; font-size: 12.5px; font-weight: 800; color: var(--text-mute); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.chiprow { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; margin-bottom: 18px; }
.fchip { background: #fff; border: 1.5px solid var(--border); color: var(--text-dim); font-weight: 800; font-size: 13.5px; padding: 8px 15px; border-radius: 999px; cursor: pointer; transition: .15s; white-space: nowrap; }
.fchip:hover { border-color: var(--lav-2); color: var(--primary); background: var(--bg-soft); }
.fchip.on { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 6px 16px rgba(58,45,179,.25); }
.fchip .n { opacity: .55; margin-left: 5px; font-weight: 700; }
.fchip.on .n { opacity: .85; }
.seg2 { display: inline-flex; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: 999px; padding: 4px; gap: 3px; }
.seg2 button { background: none; border: none; padding: 8px 17px; border-radius: 999px; font-weight: 800; font-size: 13.5px; color: var(--text-dim); cursor: pointer; transition: .15s; }
.seg2 button.on { background: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }

/* 3 adımda eşleşme şeridi */
.match-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); margin-top: 20px; }
.match-strip .m { display: flex; gap: 13px; align-items: center; }
.match-strip .mi { width: 44px; height: 44px; border-radius: 13px; background: var(--bg-soft); display: grid; place-items: center; font-size: 21px; flex: none; }
.match-strip .mt { font-weight: 800; color: var(--ink); font-size: 14.5px; }
.match-strip .ms { font-size: 12.5px; color: var(--text-dim); line-height: 1.4; }
@media (max-width: 860px) { .match-strip { grid-template-columns: 1fr; gap: 12px; padding: 16px; } }

/* ===== Uzmanlar sayfası: filtre çubuğu (eski) ===== */
.filterbar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1.5fr 1fr 1fr auto; gap: 14px; align-items: end; margin-bottom: 18px; }
.filterbar .f label { display: block; font-size: 12px; font-weight: 800; color: var(--text-dim); margin-bottom: 6px; letter-spacing: .02em; }
.filterbar input, .filterbar select { width: 100%; padding: 11px 13px; border: 1.5px solid var(--border); border-radius: 12px; background: #fff; font-weight: 600; color: var(--text); outline: none; }
.filterbar input:focus, .filterbar select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(58,45,179,.12); }
.result-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.result-bar .cnt { font-weight: 800; color: var(--ink); }
.act-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.act-chip { background: var(--lav); color: var(--primary); font-size: 12.5px; font-weight: 800; padding: 5px 12px; border-radius: 999px; display: inline-flex; gap: 7px; align-items: center; cursor: pointer; }
.act-chip b { font-weight: 900; }

/* ===== Uzman kart/detay ===== */
.chip.more { background: var(--accent-soft); color: #8a5a13; }
.exp .edu { color: var(--text-mute); }
.exp .meta span b { color: var(--ink); font-weight: 800; }
.exp .meta span { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ex-detail-hint { font-size: 12px; color: var(--primary); font-weight: 800; }
.ex-info { background: var(--bg-soft); border-radius: 14px; padding: 6px 16px; margin-bottom: 6px; }
.ex-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.ex-row:last-child { border-bottom: none; }
.ex-k { color: var(--text-dim); font-weight: 700; } .ex-v { font-weight: 800; color: var(--ink); text-align: right; }
.ex-h { font-size: 15px; color: var(--ink); margin: 16px 0 8px; }
.ex-list { padding-left: 18px; margin: 0; } .ex-list li { color: var(--text-dim); font-size: 14.5px; margin-bottom: 5px; }

/* ===== Değerlendirme funnel ===== */
.fn-top { background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 20; }
.fn-top .in { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.fn-prog { height: 6px; background: var(--lav); }
.fn-prog > span { display: block; height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 999px; transition: width .35s; }
.funnel { max-width: 680px; margin: 0 auto; padding: 40px 22px 90px; }
.fn-step { animation: fnIn .35s ease; }
@keyframes fnIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.fn-qnum { color: var(--accent); font-weight: 800; font-size: 14px; letter-spacing: .04em; }
.fn-q { font-size: 28px; font-weight: 800; color: var(--ink); margin: 6px 0 6px; letter-spacing: -.01em; }
.fn-sub { color: var(--text-dim); font-size: 16px; margin-bottom: 26px; }
.fn-opts { display: grid; gap: 12px; }
.fn-opts.two { grid-template-columns: 1fr 1fr; }
.fn-opt { display: flex; align-items: center; gap: 14px; background: #fff; border: 2px solid var(--border); border-radius: 16px; padding: 16px 18px; cursor: pointer; transition: .15s; font-weight: 700; color: var(--text); text-align: left; }
.fn-opt:hover { border-color: var(--lav-2); background: var(--bg-soft); }
.fn-opt.sel { border-color: var(--primary); background: rgba(58,45,179,.06); box-shadow: 0 0 0 3px rgba(58,45,179,.1); }
.fn-opt .em { font-size: 24px; width: 30px; text-align: center; flex: none; }
.fn-opt .ck { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--lav-2); flex: none; display: grid; place-items: center; color: #fff; font-size: 13px; }
.fn-opt.sel .ck { background: var(--primary); border-color: var(--primary); }
.fn-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.fn-intro { text-align: center; padding: 30px 0; }
.fn-intro .big { font-size: 64px; }
.fn-intro h1 { font-size: 34px; margin: 14px 0 10px; }
.fn-intro p { color: var(--text-dim); font-size: 17px; max-width: 480px; margin: 0 auto 26px; }
.fn-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.fn-badges span { background: var(--bg-soft); color: var(--primary); font-weight: 800; font-size: 13px; padding: 7px 14px; border-radius: 999px; }
/* sonuç */
.fn-res { text-align: center; }
.fn-res .ring { width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: conic-gradient(var(--accent) calc(var(--p)*1%), var(--lav) 0); }
.fn-res .ring b { background: #fff; width: 104px; height: 104px; border-radius: 50%; display: grid; place-items: center; font-size: 30px; font-weight: 900; color: var(--ink); }
.fn-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px; box-shadow: var(--shadow); text-align: left; margin: 22px 0; }
.fn-card .rec { display: inline-block; background: var(--accent-soft); color: #8a5a13; font-weight: 800; font-size: 13px; padding: 6px 13px; border-radius: 999px; margin-bottom: 12px; }
.fn-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.fn-crisis { background: #fff5f5; border: 1.5px solid #f5c2c2; color: #a02b2b; border-radius: 16px; padding: 18px 20px; text-align: left; margin: 20px 0; }
.fn-crisis b { color: #8a1f1f; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; } .hero h1 { font-size: 40px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .cards, .experts-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid, .tst-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-wrap: wrap; position: absolute; top: 74px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 12px 22px 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .burger { display: block; }
}
@media (max-width: 560px) {
  .cards, .experts-grid, .stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; } section { padding: 54px 0; }
  .sec-head h2 { font-size: 28px; } .band { padding: 30px 22px; }
  /* dar ekranda üst bar taşmasın: logo + Giriş + CTA + burger tek satıra sığmalı */
  .brandimg { height: 30px; }
  .nav { gap: 8px; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn-sm { padding: 7px 11px; font-size: 13px; }
  .burger { font-size: 22px; }
}
@media (max-width: 400px) {
  .nav-actions .btn-sm { padding: 6px 9px; font-size: 12.5px; }
  .brandimg { height: 27px; }
}
