/* ==========================================================================
   +1 İK — Tasarım Sistemi (Hirevia hissi: temiz, kurumsal, modern)
   ========================================================================== */

/* ---------- Tokenlar ---------- */
:root {
  --ink:       #0B1524;   /* daha koyu, doygun lacivert */
  --ink-2:     #12233B;
  --ink-soft:  #45566B;
  --ink-mute:  #7A889B;
  --primary:   #12A574;   /* canlı yeşil */
  --primary-d: #0C8A61;
  --primary-l: #E6F7EF;
  --lime:      #C6F24E;   /* parlak lime vurgu (Hirevia) */
  --lime-d:    #AEE52F;
  --lime-ink:  #17351A;   /* lime üstü koyu metin */
  --surface:   #FFFFFF;
  --surface-2: #F5F8F6;
  --surface-3: #EAF0EC;
  --line:      #E3EAE6;
  --gold:      #F5A623;
  --danger:    #E5484D;
  --danger-l:  #FDEBEC;

  --radius-sm: 10px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15,27,45,.06), 0 1px 3px rgba(15,27,45,.04);
  --shadow:    0 6px 20px rgba(15,27,45,.08);
  --shadow-lg: 0 18px 48px rgba(15,27,45,.14);
  --shadow-primary: 0 10px 24px rgba(22,169,124,.28);

  --container: 1160px;
  --gutter: 24px;

  --font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --header-h: 80px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--surface);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
input, textarea, select, button { font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

/* ---------- Yerleşim ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 800px; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section-sm { padding-block: clamp(40px, 5vw, 64px); }
.bg-soft { background: var(--surface-2); }
.bg-ink { background: var(--ink); color: #C6D2E1; }
.text-center { text-align: center; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Tipografi yardımcıları ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px; letter-spacing: .03em;
  color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  padding: 5px 16px 5px 5px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.eyebrow svg { width: 15px; height: 15px; color: var(--lime-ink); background: var(--lime); border-radius: 50%; padding: 6px; box-sizing: content-box; }
.section-title { font-size: clamp(28px, 4vw, 42px); margin-top: 18px; }
.section-lead { color: var(--ink-soft); font-size: 18px; max-width: 640px; margin-top: 14px; }
.section-head.text-center .section-lead { margin-inline: auto; }
.section-head { margin-bottom: 48px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn-primary:hover { background: var(--primary-d); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(22,169,124,.34); }
.btn-lime { background: var(--lime); color: var(--lime-ink); box-shadow: 0 10px 24px rgba(174,229,47,.36); }
.btn-lime:hover { background: var(--lime-d); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(174,229,47,.42); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-d); background: var(--primary-l); }
.btn-ghost { background: var(--surface-2); color: var(--ink); }
.btn-ghost:hover { background: var(--surface-3); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); transition: height .3s var(--ease); }
.site-header.scrolled .header-inner { height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--ink); letter-spacing: -0.03em; }
.brand-mark { display: block; flex-shrink: 0; border-radius: 12px; box-shadow: 0 8px 18px rgba(174,229,47,.38); }
.brand-logo { display: block; flex-shrink: 0; width: 58px; height: 58px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-soft);
  padding: 9px 15px; border-radius: var(--radius-pill); transition: all .18s var(--ease);
}
.nav a:hover { color: var(--ink); background: var(--surface-2); }
.nav a.active { color: var(--primary-d); }
.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: #fff; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(44px, 6vw, 80px); padding-bottom: clamp(30px, 4vw, 52px); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(45% 45% at 88% 8%, rgba(198,242,78,.22), transparent 62%),
    radial-gradient(48% 48% at 4% 92%, rgba(18,165,116,.08), transparent 58%),
    var(--surface-2);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5.2vw, 62px); letter-spacing: -0.04em; font-weight: 800; line-height: 1.08; }
.hero h1 .hl { position: relative; white-space: nowrap; color: var(--ink); z-index: 0; }
.hero h1 .hl::after { content: ''; position: absolute; left: -2px; right: -2px; bottom: .06em; height: .34em; background: var(--lime); border-radius: 4px; z-index: -1; }
.hero p.lead { font-size: clamp(17px, 2vw, 20px); margin-top: 24px; max-width: 540px; color: var(--ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* Hero iş arama çubuğu (Hirevia tarzı) */
.hero-search { margin-top: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); box-shadow: var(--shadow-lg); padding: 8px; display: flex; align-items: center; gap: 6px; max-width: 540px; }
.hero-search .isearch { flex: 1; display: flex; align-items: center; gap: 10px; padding: 0 8px 0 16px; }
.hero-search .isearch svg { width: 20px; height: 20px; color: var(--ink-mute); flex-shrink: 0; }
.hero-search input { border: none; outline: none; font-size: 15px; width: 100%; padding: 12px 0; color: var(--ink); background: none; }
.hero-search .btn { flex-shrink: 0; }
.hero-tags { display: flex; align-items: center; gap: 10px; margin-top: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-mute); }
.hero-tags a { padding: 5px 12px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--line); font-weight: 600; color: var(--ink-soft); font-family: var(--font-display); font-size: 13px; transition: all .15s var(--ease); }
.hero-tags a:hover { border-color: var(--primary); color: var(--primary-d); }

.hero-visual { position: relative; }
.hero-visual::before { content: ''; position: absolute; inset: -18px -18px 30px 30px; background: var(--lime); border-radius: 32px 32px 32px 90px; z-index: 0; opacity: .9; }
.hero-figure { border-radius: 28px 28px 28px 80px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/4; background: linear-gradient(135deg,#0B1524,#1c3350); position: relative; z-index: 1; }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 13px 16px; display: flex; align-items: center; gap: 12px; z-index: 3;
}
.hero-float .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--lime); color: var(--lime-ink); display: grid; place-items: center; }
.hero-float .t { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 15px; line-height: 1.1; }
.hero-float .s { font-size: 12.5px; color: var(--ink-mute); }
.hero-float.f1 { top: 30px; left: -24px; }
.hero-float.f2 { bottom: 40px; right: -18px; }
.hero-avatars { display: flex; align-items: center; }
.hero-avatars img, .hero-avatars .more { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -10px; background: var(--primary-l); }
.hero-avatars img:first-child { margin-left: 0; }
.hero-avatars .more { display: grid; place-items: center; background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 11px; }

/* ---------- Kartlar ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }

.service-card { display: flex; flex-direction: column; }
.service-card .ic {
  width: 56px; height: 56px; border-radius: 15px; background: var(--primary-l); color: var(--primary-d);
  display: grid; place-items: center; margin-bottom: 20px; transition: all .22s var(--ease);
}
.service-card .ic svg { width: 28px; height: 28px; }
.service-card:hover .ic { background: var(--primary); color: #fff; transform: scale(1.05); }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { font-size: 15px; }
.service-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 18px; color: var(--primary-d); font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.service-card .more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.service-card:hover .more svg { transform: translateX(4px); }

/* İş ilanı kartı */
.job-card { display: flex; flex-direction: column; gap: 16px; }
.job-card .top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.job-card h3 { font-size: 19px; }
.job-card .dept { font-size: 14px; color: var(--ink-mute); margin-top: 4px; }
.job-logo { width: 52px; height: 52px; border-radius: 13px; background: var(--surface-2); display: grid; place-items: center; color: var(--primary-d); flex-shrink: 0; }
.job-logo svg { width: 24px; height: 24px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
  font-family: var(--font-display); padding: 6px 13px; border-radius: var(--radius-pill);
  background: var(--surface-2); color: var(--ink-soft);
}
.pill svg { width: 14px; height: 14px; }
.pill.accent { background: var(--primary-l); color: var(--primary-d); }
.pill.gold { background: #FDF3E2; color: #B9770E; }
.job-card .foot { display: flex; align-items: center; justify-content: flex-end; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }

/* Blog kartı */
.post-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.post-card .thumb { aspect-ratio: 16/10; background: var(--surface-3); overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { font-size: 18px; }
.post-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-mute); }
.post-cat { color: var(--primary-d); font-weight: 700; font-family: var(--font-display); }

/* Referans kartı */
.testi-card { display: flex; flex-direction: column; gap: 18px; }
.stars { display: flex; gap: 3px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.testi-card blockquote { font-size: 16px; color: var(--ink); line-height: 1.65; }
.testi-author { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--primary-l); color: var(--primary-d); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.testi-author .n { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 15px; }
.testi-author .r { font-size: 13px; color: var(--ink-mute); }

/* Neden biz / checklist */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.check-list { display: grid; gap: 18px; margin-top: 28px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-ic { width: 28px; height: 28px; border-radius: 9px; background: var(--lime); color: var(--lime-ink); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.check-ic svg { width: 15px; height: 15px; }
.check-list .t { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 16px; }
.check-list .d { font-size: 14.5px; }
.why-figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1/1.05; background: linear-gradient(135deg,#16A97C,#0E8C67); }
.why-figure img { width:100%; height:100%; object-fit: cover; }

/* Süreç adımları */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step .no { counter-increment: step; font-family: var(--font-display); font-weight: 800; font-size: 15px; width: 40px; height: 40px; border-radius: 12px; background: var(--primary-l); color: var(--primary-d); display: grid; place-items: center; margin-bottom: 18px; }
.step .no::before { content: '0' counter(step); }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; }

/* CTA banner */
.cta-banner {
  border-radius: var(--radius-lg); padding: clamp(36px,5vw,64px);
  background: linear-gradient(135deg, var(--ink), #16304f);
  color: #fff; position: relative; overflow: hidden;
}
.cta-banner::after { content:''; position:absolute; width: 380px; height: 380px; right:-90px; top:-130px; border-radius:50%; background: radial-gradient(circle, rgba(198,242,78,.28), transparent 70%); }
.cta-banner h2 { color: #fff; font-size: clamp(26px,3.5vw,38px); }
.cta-banner p { color: #B9C6D6; margin-top: 14px; font-size: 18px; max-width: 560px; }
.cta-banner .btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; position: relative; z-index: 2; }

.split-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-cta .box { border-radius: var(--radius-lg); padding: clamp(30px,4vw,48px); position: relative; overflow: hidden; }
.split-cta .box.emp { background: linear-gradient(135deg,#0F1B2D,#1c3350); color:#fff; }
.split-cta .box.seek { background: var(--primary); color:#fff; }
.split-cta .box h3 { color:#fff; font-size: 24px; }
.split-cta .box p { margin: 12px 0 24px; opacity:.9; }

/* ---------- Formlar ---------- */
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ink); margin-bottom: 8px; }
.form-field .req { color: var(--danger); }
.input, .textarea, .select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); font-size: 15px; transition: border-color .18s, box-shadow .18s;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-l); }
.textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-hint { font-size: 13px; color: var(--ink-mute); margin-top: 7px; }
.field-error { color: var(--danger); font-size: 13px; margin-top: 7px; }
.check-row { display: flex; gap: 11px; align-items: flex-start; }
.check-row input[type=checkbox] { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.check-row label { font-weight: 500; font-family: var(--font-body); font-size: 14px; color: var(--ink-soft); margin: 0; }
.file-drop {
  border: 1.5px dashed var(--line); border-radius: var(--radius); padding: 26px; text-align: center;
  background: var(--surface-2); transition: all .2s var(--ease); cursor: pointer; position: relative;
}
.file-drop:hover { border-color: var(--primary); background: var(--primary-l); }
.file-drop input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-drop .ic { width: 46px; height: 46px; border-radius: 12px; background: #fff; color: var(--primary-d); display: grid; place-items: center; margin: 0 auto 12px; box-shadow: var(--shadow-sm); }
.file-drop .fn { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 15px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Alert / flash */
.alert { padding: 15px 18px; border-radius: var(--radius-sm); font-size: 14.5px; margin-bottom: 22px; display: flex; gap: 11px; align-items: flex-start; }
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: var(--primary-l); color: var(--primary-d); }
.alert-error { background: var(--danger-l); color: #B4262A; }
.alert-info { background: #EAF1FB; color: #2B5AA8; }

/* ---------- SSS akordeon ---------- */
.accordion { display: grid; gap: 14px; }
.acc-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.acc-head { width: 100%; text-align: left; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--ink); }
.acc-head .chev { width: 24px; height: 24px; flex-shrink: 0; transition: transform .25s var(--ease); color: var(--primary-d); }
.acc-item.open .chev { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.acc-body .inner { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; }

/* ---------- Sayfa başlığı (iç sayfalar) ---------- */
.page-hero { background: var(--surface-2); padding-block: clamp(44px,6vw,76px); position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; z-index:0; background: radial-gradient(50% 60% at 85% 20%, rgba(22,169,124,.09), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-mute); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--primary-d); }
.page-hero h1 { font-size: clamp(30px,4.5vw,48px); }
.page-hero p { margin-top: 14px; font-size: 18px; max-width: 620px; }

/* ---------- İçerik (prose) ---------- */
.prose { color: var(--ink-soft); font-size: 16.5px; line-height: 1.8; }
.prose > * + * { margin-top: 20px; }
.prose h2 { font-size: 26px; margin-top: 40px; }
.prose h3 { font-size: 21px; margin-top: 32px; }
.prose ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; }
.prose ol { list-style: decimal; padding-left: 22px; display: grid; gap: 8px; }
.prose a { color: var(--primary-d); text-decoration: underline; }
.prose img { border-radius: var(--radius); margin-block: 12px; }
.prose blockquote { border-left: 4px solid var(--primary); padding: 6px 20px; color: var(--ink); font-style: italic; }

/* ---------- İş arama bileşeni ---------- */
.job-search { background: #16A97C; border-radius: 22px; padding: 24px; box-shadow: 0 18px 40px rgba(15,27,45,.14); position: relative; }
.job-search-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.job-search-head h3 { color: #fff; font-size: clamp(19px,2.3vw,23px); margin: 0; }
.js-ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.js-ic svg { width: 20px; height: 20px; }
.job-search-form { display: grid; grid-template-columns: 2fr 1fr 1fr auto; gap: 12px; align-items: end; }
.job-search-form.no-kategori { grid-template-columns: 2fr 1fr auto; }
.js-field { min-width: 0; }
.js-field label { display: block; font-family: var(--font-display); font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.92); margin-bottom: 7px; }
.js-input { display: flex; align-items: center; gap: 9px; background: #fff; border-radius: 12px; padding: 0 14px; height: 54px; border: 1.5px solid transparent; transition: border-color .15s; }
.js-input:focus-within { border-color: #0E8C67; box-shadow: 0 0 0 4px rgba(14,140,103,.18); }
.js-input svg { width: 18px; height: 18px; color: #0E8C67; flex-shrink: 0; }
.js-input input, .js-input select { border: none; outline: none; background: none; width: 100%; height: 100%; font-size: 15px; color: var(--ink); font-family: var(--font-body); cursor: pointer; }
.js-input input { cursor: text; }
.js-submit { background: #0F1B2D; color: #fff; height: 54px; padding: 0 28px; border-radius: 12px; font-size: 15px; box-shadow: none; }
.js-submit:hover { background: #0B1524; transform: translateY(-2px); }
.js-submit svg { width: 18px; height: 18px; }

/* Ana sayfada hero'nun altındaki arama bandı */
.search-band { position: relative; z-index: 6; padding-top: clamp(24px,3vw,40px); padding-bottom: clamp(44px,6vw,72px); }
@media (max-width: 900px) {
  .job-search-form { grid-template-columns: 1fr; }
  .js-submit { width: 100%; justify-content: center; }
}

/* ---------- Filtre barı ---------- */
.filter-bar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-sm); }
.filter-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 14px; align-items: end; }
.result-count { font-size: 15px; color: var(--ink-mute); margin-bottom: 22px; }
.result-count strong { color: var(--ink); }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.pagination a, .pagination span { min-width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; border: 1px solid var(--line); font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-soft); padding-inline: 12px; }
.pagination a:hover { border-color: var(--primary); color: var(--primary-d); }
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination .disabled { opacity: .4; pointer-events: none; }

/* ---------- Yüzen iletişim butonları ---------- */
.float-contact { position: fixed; right: 22px; bottom: 22px; z-index: 200; display: flex; flex-direction: column; gap: 14px; }
.fc-btn {
  position: relative; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 10px 26px rgba(15,27,45,.28);
  transition: width .28s var(--ease), border-radius .28s var(--ease);
  overflow: hidden; animation: fc-in .5s var(--ease) both;
}
.fc-wa   { background: #25D366; animation-delay: .05s; }
.fc-call { background: var(--ink); animation-delay: .18s; }
.fc-ic { display: grid; place-items: center; width: 58px; height: 58px; flex-shrink: 0; z-index: 2; animation: fc-bob 2.4s ease-in-out infinite; }
.fc-call .fc-ic { animation-delay: .4s; }
.fc-label {
  white-space: nowrap; font-family: var(--font-display); font-weight: 700; font-size: 15px;
  opacity: 0; max-width: 0; overflow: hidden; transition: opacity .2s var(--ease), max-width .28s var(--ease), padding .28s var(--ease);
  z-index: 2;
}
/* Hover / focus: butonu genişlet, etiketi göster */
.fc-btn:hover, .fc-btn:focus-visible { width: 190px; border-radius: var(--radius-pill); }
.fc-btn:hover .fc-label, .fc-btn:focus-visible .fc-label { opacity: 1; max-width: 130px; padding-right: 22px; }
/* Nabız (pulse) halkası */
.fc-ring { position: absolute; inset: 0; border-radius: 50%; z-index: 1; }
.fc-wa .fc-ring   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); animation: fc-pulse 2s ease-out infinite; }
.fc-call .fc-ring { box-shadow: 0 0 0 0 rgba(11,21,36,.45);  animation: fc-pulse 2s ease-out infinite .6s; }
.fc-btn:hover .fc-ring, .fc-btn:focus-visible .fc-ring { animation: none; }

@keyframes fc-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes fc-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes fc-in { from { opacity: 0; transform: translateY(20px) scale(.6); } to { opacity: 1; transform: none; } }

@media (max-width: 560px) {
  .float-contact { right: 16px; bottom: 16px; gap: 12px; }
  .fc-btn { width: 54px; height: 54px; }
  .fc-ic { width: 54px; height: 54px; }
  .fc-btn:hover, .fc-btn:focus-visible { width: 54px; border-radius: 50%; }
  .fc-btn:hover .fc-label, .fc-btn:focus-visible .fc-label { max-width: 0; opacity: 0; padding: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fc-ic, .fc-ring { animation: none !important; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #93A2B6; padding-top: 72px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.09); }
.site-footer .brand { color: #fff; margin-bottom: 18px; }
.brand-logo-badge { display: grid; place-items: center; flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%; background: #fff; }
.brand-logo-badge img { display: block; object-fit: contain; }
.footer-about { font-size: 14.5px; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; letter-spacing: .01em; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; transition: color .18s; }
.footer-col a:hover { color: var(--primary); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; margin-bottom: 13px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: all .2s; }
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-legal { display: flex; justify-content: flex-end; padding: 24px 0 4px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-legal-inner { max-width: 420px; display: flex; flex-direction: column; align-items: flex-end; text-align: right; gap: 10px; }
.footer-iskur-logo { width: 100px; height: auto; }
.footer-iskur-text { font-size: 12px; line-height: 1.6; color: #7C8AA0; margin: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 24px; font-size: 13.5px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--primary); }
.powered { display: inline-flex; align-items: center; gap: 8px; opacity: .7; transition: opacity .2s var(--ease); }
.powered:hover { opacity: 1; }
.powered span { font-size: 12px; color: #93A2B6; }
.powered img { height: 13px; width: auto; display: block; }

/* ---------- Animasyon ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"]{ transition-delay:.08s } [data-delay="2"]{ transition-delay:.16s } [data-delay="3"]{ transition-delay:.24s } [data-delay="4"]{ transition-delay:.32s }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Erişilebilirlik ---------- */
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 8px; z-index: 1000; }
.skip-link:focus { left: 8px; }
.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; }

/* ---------- Yardımcı ---------- */
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-0{margin-bottom:0}
.muted{color:var(--ink-mute)}
.divider{height:1px;background:var(--line);border:0;margin-block:40px}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav, .header-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .nav.open { display: flex; position: fixed; inset: var(--header-h) 0 auto; flex-direction: column; align-items: stretch; background: #fff; padding: 16px var(--gutter) 28px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); gap: 4px; }
  .nav.open a { padding: 13px 16px; font-size: 16px; border-radius: 12px; }
  .grid-2, .grid-3, .grid-4, .split-cta, .filter-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-float { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { justify-content: flex-start; }
  .footer-legal-inner { max-width: 100%; align-items: flex-start; text-align: left; }
}
