/* ===== İK / Kariyer Sayfası ===== */

.ik-page { padding-bottom: 0 }

/* ── HERO ── */
.ik-hero {
  background: var(--ink);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.ik-hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 55% 70% at 85% 40%, rgba(124,58,237,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 5% 80%, rgba(10,132,217,.08) 0%, transparent 55%),
    repeating-linear-gradient(-55deg, transparent, transparent 28px,
      rgba(255,255,255,.018) 28px, rgba(255,255,255,.018) 29px);
  pointer-events: none;
}
.ik-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}
.ik-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 20px;
}
.ik-hero-title {
  font-size: 50px; font-weight: 900;
  letter-spacing: -.05em; line-height: 1.08;
  color: #fff; margin: 0 0 18px;
}
.ik-hero-title span { color: var(--yellow) }
.ik-hero-desc {
  font-size: 15px; color: rgba(255,255,255,.5);
  line-height: 1.7; margin: 0 0 32px; max-width: 480px;
}
.ik-hero-actions { display: flex; gap: 12px; flex-wrap: wrap }
.ik-btn-primary {
  display: inline-flex; align-items: center;
  padding: 13px 28px; background: var(--yellow); color: var(--ink);
  font-size: 14px; font-weight: 800; border-radius: 10px;
  transition: opacity .14s;
}
.ik-btn-primary:hover { opacity: .88 }
.ik-btn-ghost {
  display: inline-flex; align-items: center;
  padding: 13px 24px;
  border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.75);
  font-size: 14px; font-weight: 700; border-radius: 10px;
  transition: border-color .14s, color .14s;
}
.ik-btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff }

/* Kültür kartı */
.ik-culture-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
}
.ik-cc-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ik-cc-dots { display: flex; gap: 5px }
.ik-cc-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.ik-cc-dots span:first-child { background: #FF5F57 }
.ik-cc-dots span:nth-child(2) { background: #FFBD2E }
.ik-cc-dots span:last-child   { background: #28C840 }
.ik-cc-title {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.35); margin-left: 4px;
}
.ik-cc-body { padding: 24px 20px }
.ik-cc-quote {
  font-size: 14px; font-style: italic;
  color: rgba(255,255,255,.6); line-height: 1.65;
  border-left: 3px solid var(--yellow);
  padding-left: 14px; margin-bottom: 24px;
}
.ik-cc-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-bottom: 20px;
  background: rgba(255,255,255,.05);
  border-radius: 12px; overflow: hidden;
}
.ik-cc-stat {
  padding: 14px 12px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.ik-cc-stat:last-child { border-right: none }
.ik-cc-stat strong {
  display: block; font-size: 18px; font-weight: 900;
  color: #fff; letter-spacing: -.03em; margin-bottom: 2px;
}
.ik-cc-stat span {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,.35); letter-spacing: .04em;
}
.ik-cc-depts {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.ik-cc-depts span {
  padding: 4px 12px;
  background: rgba(255,255,255,.07);
  border-radius: 99px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.45);
}

/* ── GENEL SECTION ── */
.ik-section { padding: 64px 0 72px }
.ik-section--alt { background: var(--surface) }

.ik-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-50, #EFF6FF);
  padding: 4px 12px; border-radius: 99px; margin-bottom: 14px;
}
.ik-sec-head { text-align: center; margin-bottom: 48px }
.ik-sec-head h2 {
  font-size: 34px; font-weight: 900;
  letter-spacing: -.04em; color: var(--ink); margin: 0 0 12px;
}
.ik-sec-head p {
  font-size: 15px; color: var(--muted);
  max-width: 460px; margin: 0 auto; line-height: 1.6;
}

/* ── YAN HAKLAR ── */
.ik-perks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ik-perk {
  background: #fff; border: 1.5px solid var(--line-2);
  border-radius: 16px; padding: 28px 24px;
  transition: border-color .15s, box-shadow .15s;
}
.ik-perk:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(10,132,217,.07);
}
.ik-perk-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-50, #EFF6FF);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 16px;
}
.ik-perk h4 { font-size: 15px; font-weight: 800; color: var(--ink); margin: 0 0 8px }
.ik-perk p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0 }

/* ── POZİSYONLAR ── */
.ik-positions { display: flex; flex-direction: column; gap: 20px }
.ik-pos-card {
  background: #fff;
  border: 1.5px solid var(--line-2);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.ik-pos-card:hover {
  border-color: var(--pos-clr);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.ik-pos-head {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 24px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--line-2);
}
.ik-pos-dept {
  font-size: 11px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--pos-clr); margin-bottom: 6px;
}
.ik-pos-title {
  font-size: 20px; font-weight: 900;
  color: var(--ink); margin: 0 0 8px; letter-spacing: -.02em;
}
.ik-pos-desc { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.6 }
.ik-pos-badges { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0 }
.ik-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px;
  background: var(--pos-bg);
  border-radius: 99px;
  font-size: 12px; font-weight: 700;
  color: var(--pos-clr); white-space: nowrap;
}
.ik-pos-reqs {
  padding: 20px 28px;
  border-bottom: 1px solid var(--line-2);
}
.ik-pos-reqs-title {
  font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 12px;
}
.ik-pos-reqs ul {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; list-style: none; margin: 0; padding: 0;
}
.ik-pos-reqs li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.5;
}
.ik-pos-reqs li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--pos-clr); flex-shrink: 0; margin-top: 7px;
}
.ik-pos-cta {
  display: block; padding: 16px 28px;
  font-size: 13.5px; font-weight: 700;
  color: var(--pos-clr);
  transition: background .14s;
}
.ik-pos-cta:hover { background: var(--pos-bg) }

/* ── SÜREÇ ── */
.ik-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.ik-steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 40px; right: 40px; height: 2px;
  background: var(--line-2);
}
.ik-step {
  padding: 0 20px; text-align: center; position: relative; z-index: 1;
}
.ik-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 900; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--line-2);
}
.ik-step h4 { font-size: 15px; font-weight: 800; color: var(--ink); margin: 0 0 8px }
.ik-step p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0 }

/* ── BAŞVURU FORMU ── */
.ik-form-wrap {
  display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start;
}
.ik-form-left .ik-tag { margin-bottom: 16px }
.ik-form-left h2 {
  font-size: 30px; font-weight: 900;
  letter-spacing: -.04em; color: var(--ink); margin: 0 0 14px;
}
.ik-form-left p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0 0 28px }
.ik-form-contact { display: flex; flex-direction: column; gap: 10px }
.ik-fc-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  transition: color .14s;
}
.ik-fc-item:hover { color: var(--blue) }
.ik-fc-item svg { color: var(--blue); flex-shrink: 0 }

/* Form */
.ik-form {
  background: #fff; border: 1.5px solid var(--line);
  border-radius: 20px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.ik-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.ik-field { display: flex; flex-direction: column; gap: 6px }
.ik-field label {
  font-size: 13px; font-weight: 700; color: var(--ink-2);
}
.req { color: var(--blue) }
.ik-field input,
.ik-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 14px; color: var(--ink);
  background: #fff;
  transition: border-color .14s, box-shadow .14s;
  font-family: inherit;
  resize: vertical;
}
.ik-field input:focus,
.ik-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10,132,217,.1);
}
.ik-select-wrap {
  position: relative;
}
.ik-select-wrap select {
  width: 100%; padding: 11px 36px 11px 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 14px; color: var(--ink); background: #fff;
  appearance: none; cursor: pointer; font-family: inherit;
  transition: border-color .14s;
}
.ik-select-wrap select:focus { outline: none; border-color: var(--blue) }
.ik-select-wrap svg {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted-2); pointer-events: none;
}

/* Upload */
.ik-upload {
  border: 2px dashed var(--line);
  border-radius: 12px; padding: 24px 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: border-color .14s, background .14s;
  cursor: pointer;
}
.ik-upload.drag,
.ik-upload.has-file { border-color: var(--blue); background: var(--blue-50, #EFF6FF) }
.ik-upload svg { color: var(--muted-2) }
.ik-upload-text { font-size: 13.5px; font-weight: 600; color: var(--ink-2) }
.ik-upload-link { color: var(--blue); text-decoration: underline; cursor: pointer }
.ik-upload-hint { font-size: 12px; color: var(--muted-2) }
.ik-upload-name { font-size: 13px; color: var(--blue); font-weight: 600; margin-top: -6px }

.ik-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; background: var(--ink); color: #fff;
  font-size: 15px; font-weight: 800; border-radius: 12px;
  border: none; cursor: pointer;
  transition: background .14s;
}
.ik-submit:hover { background: #1e3a5f }

/* Başarı */
.ik-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; padding: 48px 24px;
  background: #fff; border: 1.5px solid var(--line);
  border-radius: 20px; gap: 12px;
}
.ik-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #DCFCE7; color: #16A34A;
  display: flex; align-items: center; justify-content: center;
}
.ik-success h3 { font-size: 22px; font-weight: 900; color: var(--ink); margin: 0 }
.ik-success p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; max-width: 320px }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .ik-hero-inner { grid-template-columns: 1fr 360px; gap: 40px }
  .ik-hero-title { font-size: 40px }
  .ik-perks { grid-template-columns: repeat(2, 1fr) }
  .ik-steps { grid-template-columns: repeat(2, 1fr); gap: 32px }
  .ik-steps::before { display: none }
}
@media(max-width:860px) {
  .ik-hero-inner  { grid-template-columns: 1fr }
  .ik-form-wrap   { grid-template-columns: 1fr; gap: 40px }
  .ik-pos-reqs ul { grid-template-columns: 1fr }
  .ik-pos-head    { flex-direction: column; gap: 14px }
  .ik-pos-badges  { flex-direction: row }
}
@media(max-width:600px) {
  .ik-hero { padding: 48px 0 56px }
  .ik-hero-title { font-size: 32px }
  .ik-section { padding: 48px 0 56px }
  .ik-perks { grid-template-columns: 1fr }
  .ik-steps { grid-template-columns: 1fr }
  .ik-form-row { grid-template-columns: 1fr }
}
