:root {
  --navy: #050E27;
  --blue: #0A2463;
  --accent: #0A2463;
  --gold: #FFCA00;
  --gold-light: #FFD740;
  --white: #ffffff;
  --gray-50: #F8F9FC;
  --gray-100: #EEF1F8;
  --gray-400: #9AA3BB;
  --gray-600: #4A5370;
  --blue-light:#43a6d8;
  --text: #0D1324;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(5,14,39,0.12);
  --shadow-lg: 0 24px 80px rgba(5,14,39,0.2);
  --header-nav-h: 84px;
  --header-topbar-h: 38px;
  --header-offset: var(--header-nav-h);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

/* ─── HEADER ─────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .3s ease;
  overflow: visible;
  padding-top: env(safe-area-inset-top, 0px);
}

.topbar {
  background: var(--navy);
  padding: 0;
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: 38px;
  overflow: hidden;
}
.topbar-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 100%;
}

/* Badges */
.topbar-badges {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.topbar-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.65);
  letter-spacing: .2px;
}
.topbar-badge svg { opacity: .7; flex-shrink: 0; }
.topbar-badge--gold { color: var(--gold); }
.topbar-badge--gold svg { opacity: 1; }
.topbar-sep {
  width: 1px; height: 14px; background: rgba(255,255,255,.12); flex-shrink: 0;
}

/* Ticker */
.topbar-ticker {
  display: flex; align-items: center; gap: 10px;
  overflow: hidden; min-width: 0;
}
.topbar-ticker-tag {
  flex-shrink: 0; background: var(--gold); color: var(--navy);
  font-size: 9.5px; font-weight: 900; letter-spacing: 1px;
  padding: 2px 7px; border-radius: 4px;
}
.topbar-ticker-track {
  overflow: hidden; white-space: nowrap; flex: 1;
}
.topbar-ticker-track span {
  display: inline-block;
  animation: tickerScroll 28s linear infinite;
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.5);
  letter-spacing: .2px;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.topbar-ticker-track:hover span { animation-play-state: paused; }

/* Right: contact + lang */
.topbar-right {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.topbar-contact {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.65);
  text-decoration: none; transition: color .2s;
}
.topbar-contact:hover { color: var(--gold); }
.topbar-contact svg { opacity: .6; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.12); }
.topbar-lang { display: flex; align-items: center; gap: 2px; }
.topbar-lang-btn {
  padding: 3px 8px; border-radius: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  color: rgba(255,255,255,.45); text-decoration: none;
  transition: all .2s;
}
.topbar-lang-btn:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); }
.topbar-lang-btn.active {
  color: var(--gold); background: rgba(255,202,0,.12);
}

nav {
  background: linear-gradient(90deg, var(--navy) 0%, #0A2463 60%, #0d3070 100%);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: visible;
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center;
  height: var(--header-nav-h);
  min-width: 0;
}

.logo {
  display: flex; align-items: center;
  text-decoration: none; margin-right: 56px; flex-shrink: 0;
}
.logo img { height: 64px; width: auto; display: block; }

.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; min-width: 0; }
.nav-item {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 9px;
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,.8);
  text-decoration: none; cursor: pointer; border: none; background: none;
  transition: all .2s; white-space: nowrap; letter-spacing: .1px;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(255,255,255,.07); }
.nav-item.is-mega-open > .nav-link { color: var(--gold); background: rgba(255,255,255,.07); }
.nav-link .chevron { transition: transform .25s; flex-shrink: 0; }
.nav-item:hover .nav-link .chevron,
.nav-item.is-mega-open .nav-link .chevron { transform: rotate(180deg); }

/* ── MEGA MENU ─────────────────────────────────────── */
.mega-menu-stage {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
  padding-top: 14px;
  margin-top: -14px;
}
.mega-menu-stage::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 14px;
}
.mega-menu-stage.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu {
  display: none;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  width: 100%;
  background: #ffffff;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 40px 100px rgba(5,14,39,.18);
  border-top: 1px solid rgba(10,36,99,.08);
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-menu.is-active { display: block; }

/* ── Shared inner layout ── */
.mega-inner {
  display: grid;
  max-width: 1320px; margin: 0 auto;
  background: #ffffff;
}

/* ── PROGRAMLAR: sidebar + 3 content cols ── */
.mega-programs .mega-inner {
  grid-template-columns: 300px 1fr;
  min-height: 420px;
}
.mega-sidebar {
  background: var(--navy);
  border-radius: 0 0 0 28px;
  padding: 44px 36px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mega-sidebar-title {
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.mega-sidebar-heading {
  font-size: 28px; font-weight: 900; color: white;
  line-height: 1.15; letter-spacing: -.5px; margin-bottom: 14px;
}
.mega-sidebar-desc {
  font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; font-weight: 500;
}
.mega-sidebar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px; padding: 12px 22px; border-radius: 11px;
  background: var(--gold); color: var(--navy); font-size: 13px; font-weight: 800;
  text-decoration: none; width: fit-content;
  transition: transform .2s, box-shadow .2s;
}
.mega-sidebar-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,202,0,.4); }
.mega-sidebar-badge {
  margin-top: 24px; padding: 14px 18px;
  background: rgba(255,202,0,.1); border-radius: 12px; border: 1px solid rgba(255,202,0,.2);
}
.mega-sidebar-badge-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.mega-sidebar-badge-val { font-size: 22px; font-weight: 900; color: white; }
.mega-sidebar-badge-sub { font-size: 11px; color: rgba(255,255,255,.4); font-weight: 500; }

.mega-content {
  padding: 44px 40px;
  background: #ffffff;
}
.mega-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; height: 100%; }
.mega-col { padding: 0 24px; border-right: 1px solid var(--gray-100); }
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; }
.mega-col-header {
  font-size: 10px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

/* ── BILGI MERKEZİ: sidebar + 3 cols ── */
.mega-knowledge .mega-inner {
  grid-template-columns: 260px 1fr;
  min-height: 380px;
}
.mega-knowledge .mega-sidebar { border-radius: 0 0 0 28px; }

/* ── KURUMSAL: sidebar + 3 cols ── */
.mega-corporate .mega-inner {
  grid-template-columns: 260px 1fr;
  min-height: 380px;
}
.mega-corporate .mega-sidebar { border-radius: 0 0 0 28px; }

/* ── Mega items ── */
.mega-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 12px; border-radius: 12px; text-decoration: none;
  transition: background .18s, transform .18s; cursor: pointer;
  margin-bottom: 2px;
}
.mega-item:hover { background: var(--gray-50); transform: translateX(4px); }
.mega-item:hover .mega-item-title { color: var(--blue); }

.mega-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.mega-item:hover .mega-icon { transform: scale(1.1); }

.mega-item-title {
  font-size: 14px; font-weight: 800; color: var(--navy);
  margin-bottom: 3px; letter-spacing: -.2px; transition: color .18s;
}
.mega-item-desc { font-size: 12px; color: var(--gray-600); line-height: 1.5; font-weight: 500; }

.mega-footer {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}
.mega-footer-text { font-size: 12px; color: var(--gray-400); font-weight: 600; }
.btn-small {
  font-size: 12px; font-weight: 700; padding: 9px 18px; border-radius: 9px;
  background: var(--blue); color: white; text-decoration: none;
  transition: all .2s; letter-spacing: .2px;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-small:hover { background: #0D3B8C; transform: translateY(-1px); }

/* ── NAV CTA ─────────────────────────────────────── */
.nav-cta {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  flex-shrink: 0; overflow: visible;
}

/* Dropdown wraps — buton altına açılacak panel için konum bağlamı */
.nav-dropdown-wrap {
  position: relative;
  z-index: 1200;
  display: inline-flex;
  /* Hover köprüsü: paneli yukarı çekmeden boşluğu kapat */
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.btn-nav-login {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 9px; font-size: 12.5px; font-weight: 700;
  border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.07); cursor: pointer;
  text-decoration: none; transition: all .2s; white-space: nowrap;
  letter-spacing: .1px; font-family: 'Montserrat', sans-serif;
}
.btn-nav-login .chevron { transition: transform .22s; }
.nav-dropdown-wrap:hover .btn-nav-login .chevron { transform: rotate(180deg); }
.btn-nav-login:hover, .nav-dropdown-wrap:hover .btn-nav-login {
  border-color: rgba(255,255,255,.4); color: white; background: rgba(255,255,255,.14);
}
.btn-nav-login--employer {
  border-color: rgba(255,202,0,.5); color: var(--gold); background: rgba(255,202,0,.1);
}
.btn-nav-login--employer:hover,
.nav-dropdown-wrap:hover .btn-nav-login--employer {
  border-color: var(--gold); background: rgba(255,202,0,.2); color: var(--gold);
}

/* Aday Girişi: panel butonun tam altında, ortaya hizalı */
.nav-cta .nav-dropdown-wrap > .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 240px;
  margin: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(5,14,39,.16);
  border: 1px solid rgba(10,36,99,.08);
  padding: 18px 16px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
  z-index: 1201;
  box-sizing: border-box;
}
/* İşveren: sağ kenara yasla (ekran dışına taşmasın) */
.nav-cta .nav-dropdown-wrap:nth-child(2) > .nav-dropdown {
  left: auto;
  right: 0;
  transform: none;
}
.nav-dropdown-wrap:hover > .nav-dropdown,
.nav-dropdown-wrap > .nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.nav-dropdown-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
}
.nav-dropdown-title { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.nav-dropdown-sub { font-size: 11px; color: var(--gray-400); font-weight: 500; }
.nav-dropdown-links { display: flex; flex-direction: column; gap: 4px; }
.nav-dropdown-link {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px; border-radius: 9px;
  font-size: 12.5px; font-weight: 700; color: var(--gray-600);
  text-decoration: none; transition: background .15s, color .15s;
}
.nav-dropdown-link:hover { background: var(--gray-50); color: var(--blue); }
.nav-dropdown-link--accent {
  background: rgba(10,36,99,.05); color: var(--blue);
}
.nav-dropdown-link--accent:hover { background: rgba(10,36,99,.1); }

.btn-outline {
  padding: 9px 20px; border-radius: 10px; font-size: 13px; font-weight: 700;
  border: 1.5px solid rgba(10,36,99,.2); color: var(--blue);
  text-decoration: none; transition: all .2s;
}
.btn-outline:hover { border-color: var(--blue); background: var(--gray-50); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 10px; font-size: 13px; font-weight: 800;
  background: var(--gold); color: var(--navy);
  text-decoration: none; border: none; cursor: pointer;
  transition: all .25s; box-shadow: 0 4px 20px rgba(255,202,0,.4);
  letter-spacing: .1px; white-space: nowrap; font-family: 'Montserrat', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,202,0,.55); background: #ffd428; }
.btn-primary--cta { animation: ctaPulse 2.8s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,202,0,.4); }
  50% { box-shadow: 0 4px 28px rgba(255,202,0,.7), 0 0 0 6px rgba(255,202,0,.12); }
}

/* ─── HERO ───────────────────────────────────────────── */
header:has(.topbar-ticker) + .hero {
  --header-offset: calc(var(--header-nav-h) + var(--header-topbar-h));
}
header:not(:has(.topbar-ticker)) + .hero {
  --header-offset: var(--header-nav-h);
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center;
  padding-top: calc(var(--header-offset) + env(safe-area-inset-top, 0px));
  padding-bottom: 32px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 75% 50%, rgba(13,59,140,.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 75%, rgba(255,202,0,.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 5% 10%, rgba(10,36,99,.5) 0%, transparent 65%);
}

.hero-grid {
  position: absolute; inset: 0; opacity: .035;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 64px 64px;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.orb-1 { width: 560px; height: 560px; background: rgba(13,59,140,.2); top: -120px; right: 8%; }
.orb-2 { width: 320px; height: 320px; background: rgba(255,202,0,.1); bottom: 8%; left: 4%; }
.orb-3 { width: 220px; height: 220px; background: rgba(13,59,140,.12); top: 38%; right: 32%; }

.hero-inner {
  max-width: 1320px; margin: 0 auto; padding: 32px 40px;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; align-items: center;
  position: relative; z-index: 2; width: 100%;
}
.hero-content { min-width: 0; }

.hero-marquee {
  position: absolute; bottom: 0px; left: 0; right: 0;
  overflow: hidden; pointer-events: none; z-index: 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.hero-marquee-track {
  display: flex; align-items: baseline; white-space: nowrap;
  animation: heroMarquee 40s linear infinite; width: max-content;
}
.hero-marquee-track span {
  font-size: 72px; font-weight: 900; letter-spacing: -3px;
  color: rgba(255,255,255,.04); padding: 0 16px; user-select: none;
}
.hero-marquee-dot { font-size: 36px !important; color: rgba(255,202,0,.05) !important; }
@keyframes heroMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-strip { display: none; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,202,0,.12); border: 1px solid rgba(255,202,0,.28);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 16px;
  font-size: 11.5px; font-weight: 700; color: var(--gold-light);
  letter-spacing: .6px; text-transform: uppercase;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); display: block; animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900; line-height: 1.08;
  color: white; margin-bottom: 14px;
  letter-spacing: -2px;
}
.hero-title em { font-style: normal; color: var(--gold-light); }
.hero-title .underline-accent {
  position: relative; display: inline-block;
}
.hero-title .underline-accent::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 2px;
}

.hero-sub {
  font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.6);
  margin-bottom: 18px; max-width: 500px; font-weight: 400;
}

/* ─── HERO FORM ──────────────────────────────────────── */
.hero-form-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 18px 22px 16px;
  margin-bottom: 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.1);
  max-width: 480px;
}

.hero-form-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.hero-form-header-left {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 800; color: rgba(255,255,255,.9);
  letter-spacing: .4px; text-transform: uppercase;
}
.hero-form-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-form-secure {
  display: flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700; color: #4ade80;
  background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.25);
  padding: 4px 10px; border-radius: 50px;
}

.hero-form { display: flex; flex-direction: column; gap: 9px; }

.hero-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.hero-form-group { display: flex; flex-direction: column; gap: 4px; }
.hero-form-group label {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.5);
  letter-spacing: .5px; text-transform: uppercase;
}
.hero-form-group input,
.hero-form-group select,
.hero-prof-search__input {
  width: 100%; padding: 9px 12px;
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 9px; color: white; font-size: 13.5px; font-weight: 500;
  outline: none; transition: all .2s; font-family: inherit;
  appearance: none; -webkit-appearance: none;
}
.hero-form-group input::placeholder,
.hero-prof-search__input::placeholder { color: rgba(255,255,255,.3); }
.hero-form-group input:focus,
.hero-form-group select:focus,
.hero-prof-search__input:focus,
.hero-prof-search.is-open .hero-prof-search__input {
  border-color: var(--gold); background: rgba(255,202,0,.07);
  box-shadow: 0 0 0 3px rgba(255,202,0,.12);
}
.hero-form-group select option { background: #0A2463; color: white; }
.hero-form-group select option:disabled { color: rgba(255,255,255,.35); }

.hero-form-select-wrap { position: relative; }
.hero-form-select-wrap select { padding-right: 36px; cursor: pointer; }
.hero-form-select-icon {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.4); pointer-events: none;
}

/* Hero profession searchable dropdown */
.hero-prof-search { position: relative; }
.hero-prof-search__field { position: relative; }
.hero-prof-search__input { padding-right: 36px; cursor: text; }
.hero-prof-search__chevron {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.4); pointer-events: none;
  transition: transform .2s ease;
}
.hero-prof-search.is-open .hero-prof-search__chevron { transform: translateY(-50%) rotate(180deg); }
.hero-prof-search__menu {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  display: flex;
  flex-direction: column;
  max-height: 240px; overflow-y: auto;
  background: #0a2463;
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 9px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  z-index: 1200;
  padding: 6px;
}
.hero-prof-search__menu[hidden] { display: none; }
.hero-prof-search__option {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  text-align: left;
  padding: 10px 12px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: rgba(255,255,255,.9);
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  line-height: 1.35;
  cursor: pointer;
  transition: background .15s, color .15s;
  appearance: none;
  -webkit-appearance: none;
  white-space: normal;
}
.hero-prof-search__option:hover,
.hero-prof-search__option.is-active {
  background: rgba(255,202,0,.12); color: var(--gold-light);
}
.hero-prof-search__option.is-hidden { display: none; }
.hero-prof-search__empty {
  padding: 12px 10px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.45); text-align: center;
}
.hero-prof-search__empty[hidden] { display: none; }
.hero-prof-search.is-invalid .hero-prof-search__input {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,.18);
}

.hero-form-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px;
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 10px; cursor: pointer;
  font-size: 14.5px; font-weight: 900; font-family: 'Montserrat', sans-serif;
  letter-spacing: .2px; transition: all .3s;
  box-shadow: 0 6px 24px rgba(255,202,0,.35);
  margin-top: 2px;
}
.hero-form-btn:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 10px 32px rgba(255,202,0,.45); }

.hero-form-trust {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-form-trust span {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.4);
}

/* hero value pills */
.hero-value-pills {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px;
}
.hero-vp {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px; padding: 6px 13px;
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.8);
}
.hero-vp--gold { background: rgba(255,202,0,.15); border-color: rgba(255,202,0,.3); color: var(--gold); }

/* ─── MEDIA STRIP ─────────────────────────────────── */
.media-strip {
  background: white; border-top: 1px solid rgba(10,36,99,.07);
  border-bottom: 1px solid rgba(10,36,99,.07);
  padding: 18px 0;
}
.media-strip-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 32px;
}
.media-strip-label {
  font-size: 10.5px; font-weight: 800; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap; flex-shrink: 0;
}
.media-strip-logos {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; flex: 1;
}
.media-logo {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 10px;
  background: var(--gray-50); border: 1px solid rgba(10,36,99,.07);
  font-size: 13px; font-weight: 800; color: var(--navy);
  transition: all .2s; cursor: default;
}
.media-logo:hover { background: var(--navy); color: white; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10,36,99,.15); }
.media-logo svg { opacity: .6; flex-shrink: 0; }

/* ─── QUICK VALUE STRIP ───────────────────────────── */
.quickval-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2463 50%, #0d3680 100%);
  padding: 0;
}
.quickval-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.qv-card {
  padding: 28px 32px; display: flex; align-items: center; gap: 16px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .25s; cursor: default; position: relative; overflow: hidden;
}
.qv-card:last-child { border-right: none; }
.qv-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.03); opacity: 0; transition: opacity .25s;
}
.qv-card:hover::before { opacity: 1; }
.qv-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.qv-content { flex: 1; }
.qv-num {
  font-size: 22px; font-weight: 900; color: white;
  letter-spacing: -1px; line-height: 1.1;
}
.qv-card--salary .qv-num { color: var(--gold); }
.qv-label { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 600; margin-top: 3px; }
.qv-arrow { font-size: 18px; color: rgba(255,255,255,.2); transition: all .25s; }
.qv-card:hover .qv-arrow { color: var(--gold); transform: translateX(4px); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 17px 34px; border-radius: 13px; font-size: 14.5px; font-weight: 800;
  background: var(--gold); color: var(--navy);
  text-decoration: none; border: none; cursor: pointer;
  transition: all .3s; box-shadow: 0 8px 30px rgba(255,202,0,.35);
  letter-spacing: .2px;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,202,0,.45); background: var(--gold-light); }

.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 17px 30px; border-radius: 13px; font-size: 14.5px; font-weight: 700;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.9);
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.18);
  transition: all .3s; backdrop-filter: blur(12px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.35); }

.hero-stats {
  display: flex; gap: 28px;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09);
}
.stat-number {
  font-size: 28px; font-weight: 900; color: white;
  line-height: 1; margin-bottom: 4px; letter-spacing: -1px;
}
.stat-number span { color: var(--gold-light); }
.stat-label { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

/* Hero visual — soft job board */
.hero-visual {
  position: relative;
  height: clamp(420px, calc(100dvh - var(--header-offset) - 64px), 620px);
  max-height: 620px;
  display: flex; align-items: stretch; justify-content: stretch;
  min-width: 0;
  overflow: hidden;
}

/* Süreç güncellemeleri — ilan listesinin üstünde, üst üste binmeden */
.hero-status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.hero-status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 9px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  animation: heroStatusIn .55s ease both;
  animation-delay: var(--status-delay, 0s);
}
@keyframes heroStatusIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-status-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-status-item--green .hero-status-item__icon {
  background: rgba(34,197,94,.14);
  color: #4ade80;
}
.hero-status-item--indigo .hero-status-item__icon {
  background: rgba(99,102,241,.14);
  color: #a5b4fc;
}
.hero-status-item--gold .hero-status-item__icon {
  background: rgba(255,202,0,.14);
  color: #FFCA00;
}
.hero-status-item--blue .hero-status-item__icon {
  background: rgba(96,165,250,.14);
  color: #93c5fd;
}
.hero-status-item__body {
  min-width: 0;
  flex: 1;
}
.hero-status-item__title {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-status-item__sub {
  font-size: 9.5px;
  color: rgba(255,255,255,.48);
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-status-item__badge {
  flex-shrink: 0;
  padding: 2px 6px;
  border-radius: 20px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .3px;
  background: rgba(34,197,94,.14);
  color: #4ade80;
}
@media (min-width: 1281px) {
  .hero-status-item__badge { display: none; }
}

@media (max-width: 1280px) {
  .hero-status-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-jobs {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.1);
  overflow: hidden;
  padding: 18px 16px 14px;
  position: relative;
  z-index: 1;
}
.hero-jobs::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.08) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: heroJobsShine 7s ease-in-out infinite;
}
@keyframes heroJobsShine {
  0%, 55% { transform: translateX(-120%); opacity: 0; }
  60% { opacity: 1; }
  75% { transform: translateX(120%); opacity: .55; }
  100% { transform: translateX(120%); opacity: 0; }
}

.hero-jobs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 6px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.hero-jobs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,202,0,.75);
  margin-bottom: 3px;
}
.hero-jobs-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.55);
  animation: heroJobsLive 1.8s ease-out infinite;
}
@keyframes heroJobsLive {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero-jobs-title {
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,.95);
  letter-spacing: -.3px;
}
.hero-jobs-count {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
  animation: heroJobsCountPulse 2.8s ease-in-out infinite;
}
.hero-jobs-count span {
  font-size: 16px;
  color: rgba(255,202,0,.7);
}
@keyframes heroJobsCountPulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 0 transparent; }
  50% { transform: scale(1.05); text-shadow: 0 0 18px rgba(255,202,0,.35); }
}

.hero-jobs-list {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.hero-jobs-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: heroJobsScroll 28s linear infinite;
  will-change: transform;
}
.hero-jobs:hover .hero-jobs-track,
.hero-jobs:focus-within .hero-jobs-track {
  animation-play-state: paused;
}
@keyframes heroJobsScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.hero-job {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  flex-shrink: 0;
}
.hero-job:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.hero-job-logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--hj-color, #60a5fa);
  background: color-mix(in srgb, var(--hj-color, #60a5fa) 18%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--hj-color, #60a5fa) 25%, transparent);
}
.hero-job-main {
  min-width: 0;
  flex: 1;
}
.hero-job-title {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.94);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-job-meta {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255,255,255,.48);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-job-sep { opacity: .55; }
.hero-job-salary {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(255,202,0,.12);
  border: 1px solid rgba(255,202,0,.16);
  border-radius: 999px;
  padding: 4px 9px;
  letter-spacing: .2px;
}
.hero-job-cta {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  color: #0A2463;
  background: var(--gold);
  border-radius: 999px;
  padding: 6px 11px;
  letter-spacing: .2px;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: heroJobCtaPulse 2.6s ease-in-out infinite;
}
.hero-job:nth-child(odd) .hero-job-cta { animation-delay: .4s; }
.hero-job:nth-child(3n) .hero-job-cta { animation-delay: .9s; }
@keyframes heroJobCtaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,202,0,0); }
  50% { box-shadow: 0 0 0 5px rgba(255,202,0,.12); }
}
.hero-job:hover .hero-job-cta {
  animation: none;
  box-shadow: 0 4px 14px rgba(255,202,0,.35);
  transform: translateX(1px);
}

.hero-jobs-footer {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 800;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  position: relative;
  z-index: 1;
}
.hero-jobs-footer svg {
  animation: heroJobsArrow 1.6s ease-in-out infinite;
}
@keyframes heroJobsArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}
.hero-jobs-footer:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

@media (prefers-reduced-motion: reduce) {
  .hero-jobs::before,
  .hero-jobs-live,
  .hero-jobs-count,
  .hero-jobs-track,
  .hero-job-cta,
  .hero-jobs-footer svg,
  .hero-status-item {
    animation: none !important;
  }
}

/* Right-aligned SVG text (legacy) */
.city-label--right { text-anchor: end; }
.city-count--right { text-anchor: end; }

/* ─── SECTION COMMONS ─────────────────────────────────── */
section { padding: 100px 0; }
.section-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; width: 100%; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 22px; height: 2.5px; background: var(--gold); border-radius: 2px; display: block; }

.section-title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900; color: var(--navy);
  line-height: 1.12; letter-spacing: -1.5px; margin-bottom: 18px;
}
.section-title em { font-style: normal; color: var(--blue); }

.section-sub {
  font-size: 16px; color: var(--gray-600); line-height: 1.75;
  max-width: 520px; font-weight: 400;
}

/* ─── MARQUEE ──────────────────────────────────────────── */
.marquee-strip { background: var(--blue); padding: 16px 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 0; align-items: center;
  animation: marquee 35s linear infinite; width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.5); font-size: 12px; font-weight: 700;
  white-space: nowrap; padding: 0 32px; letter-spacing: .5px; text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.1);
}
.marquee-item svg { opacity: .6; }
.marquee-item:last-child { border-right: none; }

/* ─── TABS ───────────────────────────────────────────── */
.tabs-section { background: var(--gray-50); }

.tabs-header { text-align: center; margin-bottom: 56px; }
.tabs-header .section-tag { justify-content: center; }
.tabs-header .section-tag::before { display: none; }
.tabs-header .section-title { margin: 0 auto 18px; }
.tabs-header .section-sub { margin: 0 auto; text-align: center; }

.tabs-nav {
  display: flex; background: white; border-radius: 16px; padding: 6px;
  box-shadow: 0 2px 14px rgba(5,14,39,.06); margin-bottom: 44px;
  max-width: 580px; margin-left: auto; margin-right: auto; gap: 4px;
}
.tab-btn {
  flex: 1; padding: 13px 8px; border-radius: 11px; border: none;
  font-size: 13px; font-weight: 700; cursor: pointer;
  color: var(--gray-400); background: transparent;
  transition: all .25s; text-align: center;
  font-family: 'Montserrat', sans-serif; letter-spacing: .1px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.tab-btn.active { background: var(--blue); color: white; box-shadow: 0 4px 16px rgba(10,36,99,.25); }
.tab-btn:not(.active):hover { color: var(--blue); background: var(--gray-100); }

.tabs-content { }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

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

.tab-card {
  background: white; border-radius: 20px; padding: 36px 32px;
  border: 1.5px solid rgba(10,36,99,.06);
  transition: all .3s; cursor: pointer; position: relative; overflow: hidden;
}
.tab-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.tab-card:hover { border-color: rgba(10,36,99,.15); box-shadow: 0 16px 48px rgba(10,36,99,.1); transform: translateY(-4px); }
.tab-card:hover::before { transform: scaleX(1); }

.tab-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(10,36,99,.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background .3s;
}
.tab-card:hover .tab-card-icon { background: rgba(10,36,99,.12); }
.tab-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -.3px; }
.tab-card p { font-size: 15px; color: var(--gray-600); line-height: 1.65; margin-bottom: 22px; font-weight: 400; }

.tab-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.tag { font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 7px; background: var(--gray-100); color: var(--gray-600); letter-spacing: .2px; }
.tag.blue { background: rgba(10,36,99,.08); color: var(--blue); }
.tag.gold { background: rgba(255,202,0,.15); color: #9a6c00; }

.tab-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 800; color: var(--blue); text-decoration: none;
  letter-spacing: .1px;
}
.tab-card-link svg { transition: transform .2s; }
.tab-card-link:hover svg { transform: translateX(4px); }

/* ─── UYGUNLUK ───────────────────────────────────────── */
.eligibility-section { background: white; }
.eligibility-header { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.eligibility-header .section-tag { justify-content: center; }
.eligibility-header .section-tag::before { display: none; }

.eligibility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.eligibility-card {
  border-radius: 22px; padding: 44px 36px; text-align: center;
  border: 1.5px solid rgba(10,36,99,.07);
  transition: all .35s; cursor: pointer; position: relative; overflow: hidden;
}
.eligibility-card::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(160deg, rgba(10,36,99,.025), rgba(255,202,0,.04));
  transition: opacity .35s;
}
.eligibility-card:hover { border-color: var(--gold); transform: translateY(-7px); box-shadow: 0 24px 60px rgba(255,202,0,.13); }
.eligibility-card:hover::after { opacity: 1; }

.eligibility-icon-wrap {
  width: 80px; height: 80px; border-radius: 22px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
}
.eligibility-card:hover .eligibility-icon-wrap { transform: scale(1.07); }
.eligibility-card:nth-child(1) .eligibility-icon-wrap { background: rgba(10,36,99,.07); }
.eligibility-card:nth-child(2) .eligibility-icon-wrap { background: rgba(255,202,0,.14); }
.eligibility-card:nth-child(3) .eligibility-icon-wrap { background: rgba(34,197,94,.1); }

.eligibility-card h3 { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 12px; letter-spacing: -.4px; }
.eligibility-card p { font-size: 15px; color: var(--gray-600); line-height: 1.65; margin-bottom: 28px; font-weight: 400; }

.btn-explore {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 26px; border-radius: 11px; font-size: 13px; font-weight: 800;
  background: var(--gray-100); color: var(--navy); text-decoration: none;
  transition: all .25s; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; letter-spacing: .2px;
}
.btn-explore:hover { background: var(--blue); color: white; }
.btn-explore svg { transition: transform .2s; }
.btn-explore:hover svg { transform: translateX(3px); }

/* ─── SÜREÇ ──────────────────────────────────────────── */
/* ─── PROCESS ANIMATIONS ──────────────────────────────── */
@keyframes processFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes processPulse {
  0%, 100% { transform: scale(1); opacity: .4; }
  50% { transform: scale(1.5); opacity: 0; }
}
@keyframes processDot {
  0% { left: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes processOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .06; }
  33% { transform: translate(60px, -40px) scale(1.2); opacity: .09; }
  66% { transform: translate(-40px, 30px) scale(.9); opacity: .05; }
}
@keyframes stepFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes processParticle {
  0%   { transform: translate(0, 0) scale(1); opacity: .7; }
  100% { transform: translate(var(--px), var(--py)) scale(0); opacity: 0; }
}
@keyframes lineFlow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
@keyframes badgePop {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,202,0,.6); }
  50% { transform: scale(1.12); box-shadow: 0 0 0 6px rgba(255,202,0,0); }
}

.process-section {
  background: var(--navy); overflow: hidden; position: relative;
}

/* background orbs */
.process-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: processOrb 8s ease-in-out infinite;
}
.process-orb-1 {
  width: 600px; height: 600px; top: -200px; right: -160px;
  background: radial-gradient(circle, rgba(255,202,0,.07) 0%, transparent 70%);
  animation-duration: 10s;
}
.process-orb-2 {
  width: 400px; height: 400px; bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(67,166,216,.08) 0%, transparent 70%);
  animation-duration: 13s; animation-delay: -4s;
}

/* floating particles */
.process-particle {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: var(--sz, 4px); height: var(--sz, 4px);
  left: var(--lft); top: var(--top);
  background: var(--pc, rgba(255,202,0,.5));
  animation: processParticle var(--dur, 4s) ease-out infinite;
  animation-delay: var(--del, 0s);
}

.process-inner { position: relative; z-index: 1; }
.process-header { max-width: 580px; margin-bottom: 72px; }
.process-header .section-tag { color: var(--gold); }
.process-header .section-tag::before { background: var(--gold); }
.process-header .section-title { color: white; }
.process-header .section-sub { color: rgba(255,255,255,.5); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
/* animated flowing line */
.process-steps::before {
  content: ''; position: absolute; top: 44px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,.08) 5%,
    rgba(255,202,0,.5) 20%,
    rgba(67,166,216,.6) 50%,
    rgba(255,202,0,.5) 80%,
    rgba(255,255,255,.08) 95%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: lineFlow 3s linear infinite;
  z-index: 0;
}
/* traveling dot on line */
.process-steps::after {
  content: ''; position: absolute; top: 37px; left: 12.5%;
  width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle, #FFCA00 30%, rgba(255,202,0,0) 100%);
  box-shadow: 0 0 8px 3px rgba(255,202,0,.6);
  animation: processDot 3.5s ease-in-out infinite;
  z-index: 2;
}

.process-step {
  text-align: center; padding: 0 24px; position: relative; z-index: 1;
  opacity: 0;
}
.process-step.ps-visible {
  animation: stepFadeUp .6s ease forwards;
}
.process-step:nth-child(1) { animation-delay: .0s; }
.process-step:nth-child(2) { animation-delay: .15s; }
.process-step:nth-child(3) { animation-delay: .3s; }
.process-step:nth-child(4) { animation-delay: .45s; }

.process-step-num {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; transition: all .35s;
  animation: processFloat 4s ease-in-out infinite;
}
.process-step:nth-child(1) .process-step-num { animation-delay: 0s; }
.process-step:nth-child(2) .process-step-num { animation-delay: .6s; }
.process-step:nth-child(3) .process-step-num { animation-delay: 1.2s; }
.process-step:nth-child(4) .process-step-num { animation-delay: 1.8s; }

/* outer pulse ring */
.process-step-num::before {
  content: ''; position: absolute; inset: -12px; border-radius: 50%;
  border: 1px solid rgba(255,202,0,.25);
  animation: processPulse 2.5s ease-in-out infinite;
}
.process-step:nth-child(1) .process-step-num::before { animation-delay: 0s; }
.process-step:nth-child(2) .process-step-num::before { animation-delay: .6s; }
.process-step:nth-child(3) .process-step-num::before { animation-delay: 1.2s; }
.process-step:nth-child(4) .process-step-num::before { animation-delay: 1.8s; }

/* second pulse ring */
.process-step-num::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(255,202,0,.15);
  animation: processPulse 2.5s ease-in-out infinite;
  animation-delay: .4s;
}
.process-step:nth-child(2) .process-step-num::after { animation-delay: 1s; }
.process-step:nth-child(3) .process-step-num::after { animation-delay: 1.6s; }
.process-step:nth-child(4) .process-step-num::after { animation-delay: 2.2s; }

.process-step:hover .process-step-num {
  background: rgba(255,202,0,.12); border-color: rgba(255,202,0,.4);
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,202,0,.2);
}
.process-step:hover .process-step-num svg {
  stroke: rgba(255,202,0,.9);
}

.num-badge {
  position: absolute; top: -5px; right: -5px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  animation: badgePop 2.5s ease-in-out infinite;
}
.process-step:nth-child(1) .num-badge { animation-delay: 0s; }
.process-step:nth-child(2) .num-badge { animation-delay: .6s; }
.process-step:nth-child(3) .num-badge { animation-delay: 1.2s; }
.process-step:nth-child(4) .num-badge { animation-delay: 1.8s; }

.process-step h3 { font-size: 16px; font-weight: 800; color: white; margin-bottom: 10px; letter-spacing: -.2px; }
.process-step p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; font-weight: 400; }

/* ─── STATS ──────────────────────────────────────────── */
.stats-section { background: var(--gray-50); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stats-card {
  background: white; border-radius: 22px; padding: 40px 28px;
  text-align: center; border: 1.5px solid rgba(10,36,99,.05); transition: all .3s;
}
.stats-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(255,202,0,.3); }
.stats-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(10,36,99,.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; transition: background .3s;
}
.stats-card:hover .stats-card-icon { background: rgba(255,202,0,.15); }
.stats-num {
  font-size: 48px; font-weight: 900; color: var(--blue);
  line-height: 1; margin-bottom: 8px; letter-spacing: -2px;
}
.stats-num span { color: var(--blue); }
.stats-label { font-size: 13px; font-weight: 700; color: var(--gray-600); letter-spacing: .1px; }

/* ─── CTA ────────────────────────────────────────────── */
/* ─── SECTION DIVIDER ────────────────────────────────── */
.section-divider {
  background: var(--navy);
  display: flex; align-items: center; gap: 20px;
  padding: 0 60px; height: 56px;
}
.section-divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,202,0,.4), transparent);
}
.section-divider-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,202,0,.1); border: 1px solid rgba(255,202,0,.35);
  color: var(--gold); font-size: 11px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px;
  white-space: nowrap;
}

/* ─── CTA SECTION ANIMATIONS ──────────────────────────── */
@keyframes ctaOrbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.1); }
  66% { transform: translate(-30px,20px) scale(.92); }
}
@keyframes ctaBubbleFloat {
  0%   { opacity:0; transform: translateY(20px) scale(.9); }
  15%  { opacity:1; transform: translateY(0) scale(1); }
  80%  { opacity:1; transform: translateY(-8px) scale(1); }
  100% { opacity:0; transform: translateY(-20px) scale(.95); }
}
@keyframes ctaWave {
  0%,100% { height: 4px; }
  50%      { height: 18px; }
}
@keyframes ctaTyping {
  0%,80%,100% { transform: scale(0); opacity:.3; }
  40%         { transform: scale(1); opacity:1; }
}
@keyframes ctaLiveDot {
  0%,100% { opacity:1; } 50% { opacity:.2; }
}
@keyframes ctaBgGrid {
  0% { background-position: 0 0; }
  100% { background-position: 48px 48px; }
}
@keyframes ctaChipFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.cta-section {
  background: linear-gradient(160deg, #050E27 0%, #071535 40%, #0A2463 100%);
  position: relative; overflow: hidden;
  padding: 120px 0;
  min-height: 100vh; display: flex; align-items: center;
}

.cta-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: ctaBgGrid 4s linear infinite;
}

.cta-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: ctaOrbFloat 12s ease-in-out infinite;
}
.cta-orb-1 { width:700px;height:700px;top:-200px;left:-180px;background:radial-gradient(circle,rgba(67,166,216,.07) 0%,transparent 70%);animation-duration:14s; }
.cta-orb-2 { width:500px;height:500px;top:40%;right:-150px;background:radial-gradient(circle,rgba(255,202,0,.06) 0%,transparent 70%);animation-duration:10s;animation-delay:-4s; }
.cta-orb-3 { width:400px;height:400px;bottom:-120px;left:38%;background:radial-gradient(circle,rgba(10,36,99,.8) 0%,transparent 70%);animation-duration:16s;animation-delay:-8s; }

/* floating question bubbles */
.cta-bubble {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 50px;
  color: rgba(255,255,255,.7); font-size: 13px; font-weight: 600;
  padding: 10px 18px; pointer-events: none; z-index: 1;
  animation: ctaBubbleFloat 6s ease-in-out infinite;
}
.cta-bubble svg { opacity:.7; flex-shrink:0; }
.cta-bubble-1 { top:12%; left:4%; animation-delay:0s; animation-duration:7s; }
.cta-bubble-2 { top:22%; right:3%; animation-delay:-2s; animation-duration:8s; }
.cta-bubble-3 { top:65%; left:2%; animation-delay:-4s; animation-duration:6s; }
.cta-bubble-4 { bottom:18%; right:2%; animation-delay:-1s; animation-duration:9s; }
.cta-bubble-5 { bottom:8%; left:35%; animation-delay:-3s; animation-duration:7.5s; }

.cta-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 2; width: 100%;
}

/* LEFT side */
.cta-left {}
.cta-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-light); font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
}
.cta-title {
  font-size: 52px; font-weight: 900; color: white;
  line-height: 1.1; margin-bottom: 20px; letter-spacing: -2px;
}
.cta-title em { color: var(--gold); font-style: normal; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,.5); line-height: 1.75; font-weight: 400; max-width: 480px; margin-bottom: 36px; }

.cta-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.cta-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: rgba(255,255,255,.75); font-weight: 500;
}
.cta-feat-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(74,222,128,.15); border: 1px solid rgba(74,222,128,.3);
  display: flex; align-items: center; justify-content: center;
  color: #4ade80;
}

.cta-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.btn-cta-main {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 18px 36px; border-radius: 14px; font-size: 15px; font-weight: 800;
  background: var(--gold); color: var(--navy); text-decoration: none;
  transition: all .3s; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(255,202,0,.35);
  font-family: 'Montserrat', sans-serif;
}
.btn-cta-main:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 44px rgba(255,202,0,.45); }
.btn-cta-sec {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 17px 28px; border-radius: 14px; font-size: 14px; font-weight: 700;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.8);
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.15); transition: all .3s; white-space: nowrap;
}
.btn-cta-sec:hover { background: rgba(255,255,255,.13); border-color: rgba(255,202,0,.3); color:var(--gold); }
.cta-note { font-size: 12px; color: rgba(255,255,255,.3); font-weight: 600; }

/* RIGHT side — Zoom mockup */
.cta-right { position: relative; }
.cta-zoom {
  background: #1a1f36; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 120px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
}

.cta-zoom-bar {
  background: #111827; padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
}
.cta-zoom-dots { display: flex; gap: 6px; }
.cta-zoom-dots span { width: 10px; height: 10px; border-radius: 50%; }
.cta-zoom-dots span:nth-child(1) { background: #ff5f57; }
.cta-zoom-dots span:nth-child(2) { background: #febc2e; }
.cta-zoom-dots span:nth-child(3) { background: #28c840; }
.cta-zoom-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); flex: 1; text-align: center; }
.cta-zoom-time { font-size: 12px; font-weight: 700; color: #4ade80; font-variant-numeric: tabular-nums; }

.cta-zoom-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 3px;
  background: #0d1117; padding: 3px;
}
.cta-zoom-tile {
  aspect-ratio: 16/10; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 8px; overflow: hidden;
}
.cta-zoom-tile--expert { background: linear-gradient(160deg, #0f2460 0%, #163380 100%); }
.cta-zoom-tile--user   { background: #1a1f2e; }
.cta-zoom-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.cta-zoom-avatar--user { width: 44px; height: 44px; }
.cta-zoom-wave {
  display: flex; align-items: flex-end; gap: 3px; height: 22px; margin-top: 4px;
}
.cta-zoom-wave span {
  width: 3px; border-radius: 2px; background: var(--gold);
  animation: ctaWave 1.2s ease-in-out infinite;
}
.cta-zoom-wave span:nth-child(1){animation-delay:0s}
.cta-zoom-wave span:nth-child(2){animation-delay:.15s}
.cta-zoom-wave span:nth-child(3){animation-delay:.3s}
.cta-zoom-wave span:nth-child(4){animation-delay:.45s}
.cta-zoom-wave span:nth-child(5){animation-delay:.6s}
.cta-zoom-name {
  position: absolute; bottom: 8px; left: 10px;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.4); padding: 3px 8px; border-radius: 5px;
}
.cta-zoom-mic {
  position: absolute; bottom: 8px; right: 10px;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(74,222,128,.2); border: 1px solid rgba(74,222,128,.4);
  display: flex; align-items: center; justify-content: center;
  color: #4ade80;
}

.cta-zoom-chat { padding: 14px 16px; background: #131929; max-height: 160px; }
.cta-zoom-chat-header { font-size: 10px; font-weight: 800; color: rgba(255,255,255,.3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.cta-zoom-messages { display: flex; flex-direction: column; gap: 8px; }
.czm { display: flex; flex-direction: column; gap: 2px; }
.czm--out { align-items: flex-end; }
.czm-who { font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,.35); padding: 0 4px; }
.czm-text {
  font-size: 12px; font-weight: 500; line-height: 1.4;
  padding: 8px 12px; border-radius: 12px; max-width: 90%;
}
.czm--in .czm-text  { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); border-bottom-left-radius: 3px; }
.czm--out .czm-text { background: var(--gold); color: var(--navy); border-bottom-right-radius: 3px; font-weight: 600; }

.cta-zoom-typing {
  margin-top: 10px; display: flex; align-items: center; gap: 8px;
}
.cta-zoom-typing .czm-who { font-size: 10px; color: rgba(255,255,255,.3); }
.cta-typing-dots { display: flex; gap: 4px; align-items: center; }
.cta-typing-dots span {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.4);
  animation: ctaTyping 1.4s ease-in-out infinite;
}
.cta-typing-dots span:nth-child(2) { animation-delay: .2s; }
.cta-typing-dots span:nth-child(3) { animation-delay: .4s; }

.cta-zoom-controls {
  background: #111827; padding: 14px; display: flex; justify-content: center; gap: 10px;
}
.czc {
  width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.czc--active { background: rgba(255,255,255,.12); color: white; }
.czc--active:hover { background: rgba(255,255,255,.2); }
.czc--screen { background: rgba(255,255,255,.07); color: rgba(255,255,255,.5); }
.czc--end { background: #ef4444; color: white; }
.czc--end:hover { background: #dc2626; }

.cta-zoom-live {
  position: absolute; top: 52px; right: 12px;
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 800; color: white; letter-spacing: 1px;
  background: rgba(239,68,68,.85); padding: 4px 10px; border-radius: 6px;
}
.cta-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: white;
  animation: ctaLiveDot 1s ease-in-out infinite;
}

/* floating stat chips */
.cta-stat-chip {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 50px;
  padding: 10px 16px; font-size: 12.5px; font-weight: 700;
  color: rgba(255,255,255,.85); white-space: nowrap;
  animation: ctaChipFloat 3s ease-in-out infinite;
  z-index: 3;
}
.cta-stat-chip-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.cta-stat-chip-2 { top: -18px; right: -20px; animation-delay: -1.5s; }

/* ─── JOB LISTINGS ──────────────────────────────────── */
@keyframes jobCardIn {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes jobLogoFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(2deg); }
}

.jobs-section {
  background: linear-gradient(160deg, #f0f6ff 0%, #e8f0fe 35%, #faf5ff 65%, #f0f9ff 100%);
  position: relative; overflow: hidden;
}
/* subtle dot pattern */
.jobs-section .section-inner { position: relative; z-index: 1; }

/* header */
.jobs-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; margin-bottom: 44px;
}
.jobs-header-sub { font-size: 15px; color: var(--gray-400); margin-top: 8px; font-weight: 400; }
.jobs-header-stats {
  display: flex; gap: 0; flex-shrink: 0; padding-top: 6px;
  background: white; border: 1.5px solid rgba(10,36,99,.09);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(10,36,99,.07);
}
.jobs-hstat {
  text-align: center; padding: 20px 32px;
  border-right: 1.5px solid rgba(10,36,99,.07);
}
.jobs-hstat:last-child { border-right: none; }
.jobs-hstat-num { display: block; font-size: 28px; font-weight: 900; color: var(--navy); letter-spacing: -1px; }
.jobs-hstat-num span { color: var(--gold); }
.jobs-hstat-label { font-size: 10.5px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; display: block; }

/* filter bar */
.jobs-filters {
  display: flex; gap: 0; align-items: center;
  background: white; border: 1.5px solid rgba(10,36,99,.09);
  border-radius: 16px; overflow: hidden; margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(10,36,99,.07);
}
.jobs-search-wrap {
  display: flex; align-items: center; gap: 10px; flex: 1; min-width: 180px;
  padding: 15px 20px; color: var(--gray-400);
}
.jobs-search-wrap svg,
.jobs-filter-select-wrap svg:not(.jobs-sel-chev),
.jobs-filter-reset svg { flex-shrink: 0; }
.jobs-search-wrap input {
  flex: 1; border: none; outline: none; font-size: 14px;
  color: var(--navy); font-family: inherit; background: none;
}
.jobs-search-wrap input::placeholder { color: var(--gray-400); }
.jobs-filter-select-wrap {
  display: flex; align-items: center; gap: 8px; position: relative;
  border-left: 1.5px solid rgba(10,36,99,.07); padding: 15px 20px;
  color: var(--gray-400);
}
.jobs-filter-select-wrap select {
  border: none; outline: none; font-size: 13px; font-weight: 600;
  color: var(--navy); font-family: inherit; background: none;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  padding-right: 18px; white-space: nowrap;
}
.jobs-sel-chev { position: absolute; right: 6px; pointer-events: none; }
.jobs-filter-reset {
  display: flex; align-items: center; gap: 7px;
  border-left: 1.5px solid rgba(10,36,99,.07);
  padding: 15px 20px; background: none;
  border-top: none; border-bottom: none; border-right: none;
  font-size: 12.5px; font-weight: 700; color: var(--gray-400);
  cursor: pointer; transition: all .2s; font-family: inherit; white-space: nowrap;
}
.jobs-filter-reset:hover { color: var(--navy); background: rgba(10,36,99,.03); }

/* grid */
.jobs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 40px;
}

/* ── CARD ── */
.job-card {
  border-radius: 22px; padding: 0;
  border: none;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: all .35s cubic-bezier(.2,.8,.3,1);
  animation: jobCardIn .55s ease both;
  box-shadow: 0 6px 24px rgba(10,36,99,.1);
}
.job-card:nth-child(1){animation-delay:.04s} .job-card:nth-child(2){animation-delay:.09s}
.job-card:nth-child(3){animation-delay:.14s} .job-card:nth-child(4){animation-delay:.19s}
.job-card:nth-child(5){animation-delay:.24s} .job-card:nth-child(6){animation-delay:.29s}
.job-card:nth-child(7){animation-delay:.34s} .job-card:nth-child(8){animation-delay:.39s}
.job-card:nth-child(9){animation-delay:.44s}
.job-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(10,36,99,.16); }
.job-card:hover .job-card-head { filter: brightness(1.06); }

/* ── card HEAD (colourful top half) */
.job-card-band { display: none; }

.job-card-head {
  background: linear-gradient(135deg, var(--jc1,#1e40af), var(--jc2,#60a5fa));
  padding: 26px 24px 22px;
  position: relative; overflow: hidden;
  transition: filter .3s;
}
/* giant decorative letter */
.job-card-head::before {
  content: attr(data-letter);
  position: absolute; right: -10px; bottom: -20px;
  font-size: 110px; font-weight: 900; font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,.1); line-height: 1;
  pointer-events: none; user-select: none;
}
/* shimmer on hover */
.job-card-head::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.12) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform .5s ease;
}
.job-card:hover .job-card-head::after { transform: translateX(100%); }

.job-card-head-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  margin-bottom: 16px;
}
.job-logo {
  width: 54px; height: 54px; border-radius: 16px; flex-shrink: 0;
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.35);
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900; font-family: 'Montserrat', sans-serif;
}
.job-salary-banner {
  background: rgba(255,255,255,.9); color: var(--navy);
  font-size: 12px; font-weight: 800; letter-spacing: -.2px;
  padding: 6px 14px; border-radius: 50px;
  white-space: nowrap; align-self: flex-start;
}
.job-title {
  font-size: 15.5px; font-weight: 800; color: white;
  line-height: 1.3; letter-spacing: -.3px; margin-bottom: 4px;
}
.job-company { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.65); }

/* ── card BODY (white bottom half) */
.job-card-body {
  background: white; padding: 18px 24px 20px;
  flex: 1; display: flex; flex-direction: column;
}
.job-card-top { display: none; }
.job-card-icon-block { display: none; }

.job-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.job-badge {
  font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 50px;
  letter-spacing: .3px; text-transform: uppercase; white-space: nowrap;
}
.job-badge--blue   { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.job-badge--aus    { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.job-badge--firsat { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.job-badge--new    { background: #f5f3ff; color: #5b21b6; border: 1px solid #ddd6fe; }
.job-badge--hot    { background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }

.job-divider { height: 1px; background: rgba(10,36,99,.07); margin-bottom: 14px; }

.job-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.job-meta span { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--gray-600); font-weight: 500; }
.job-meta svg { color: var(--gray-400); flex-shrink: 0; }

.job-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; flex: 1; }
.job-tags span {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 7px;
  background: #f4f6fb; color: var(--navy); border: 1px solid rgba(10,36,99,.08);
}

/* CTA */
.job-cta {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 11px 16px; border-radius: 12px; margin-top: auto;
  background: #f4f6fb; color: var(--navy);
  font-size: 13.5px; font-weight: 800;
  text-decoration: none; transition: all .3s;
  border: none; font-family: 'Montserrat', sans-serif;
}
.job-cta:hover {
  background: var(--jc1, var(--navy)); color: white;
  box-shadow: 0 6px 20px rgba(10,36,99,.18);
}
.job-cta-arrow {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: white; box-shadow: 0 2px 6px rgba(10,36,99,.1);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; color: var(--navy);
}
.job-cta:hover .job-cta-arrow { background: rgba(255,255,255,.25); color: white; }

/* empty state */
.jobs-empty {
  text-align: center; padding: 80px 20px; color: var(--gray-400);
}
.jobs-empty svg { margin-bottom: 16px; opacity: .35; }
.jobs-empty p { font-size: 16px; font-weight: 600; margin-bottom: 20px; color: var(--gray-600); }
.jobs-empty button {
  background: var(--navy); color: white; border: none; border-radius: 12px;
  padding: 13px 28px; font-size: 14px; font-weight: 800; cursor: pointer;
  font-family: inherit; transition: all .3s;
}
.jobs-empty button:hover { background: var(--blue); transform: translateY(-1px); }

/* section footer */
.jobs-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1.5px solid rgba(10,36,99,.08);
}
.jobs-count { font-size: 13px; color: var(--gray-400); font-weight: 600; }
.jobs-all-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: white; padding: 15px 30px;
  border-radius: 14px; font-size: 14px; font-weight: 800; text-decoration: none;
  font-family: 'Montserrat', sans-serif; transition: all .3s;
  box-shadow: 0 6px 20px rgba(10,36,99,.2); border: none;
}
.jobs-all-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,202,0,.35); }

/* ─── PRESS / BASINDA BİZ ────────────────────────────── */
@keyframes pressScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.press-section {
  background: linear-gradient(160deg, #f0f6ff 0%, #e8f0fe 40%, #f5f8ff 100%);
  padding: 80px 0 0; overflow: hidden;
}

.press-header-wrap {
  max-width: 1320px; margin: 0 auto; padding: 0 40px 48px;
}
.press-header {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.press-sub { font-size: 15px; color: var(--gray-400); margin-top: 8px; font-weight: 400; }

@keyframes ytShimmer {
  0%   { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(250%) skewX(-12deg); }
}

.press-yt-btn {
  display: inline-flex; align-items: center; gap: 0; flex-shrink: 0;
  background: var(--navy); color: white;
  border-radius: 50px; text-decoration: none; transition: all .35s;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 6px 24px rgba(10,36,99,.2);
  border: 1.5px solid rgba(255,255,255,.12);
  overflow: hidden; position: relative;
}
.press-yt-btn::before {
  content: ''; position: absolute; top: 0; left: 0; width: 40%;
  height: 100%; background: rgba(255,255,255,.1);
  transform: translateX(-100%) skewX(-12deg);
  transition: none;
}
.press-yt-btn:hover::before { animation: ytShimmer .55s ease forwards; }
.press-yt-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(10,36,99,.25); border-color: rgba(255,255,255,.25); }

.press-yt-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #FF0000; color: white;
  padding: 12px 16px 12px 20px; border-radius: 50px 0 0 50px;
  font-size: 12px; font-weight: 800; letter-spacing: .3px; text-transform: uppercase;
  margin-right: 2px;
}
.press-yt-label {
  padding: 12px 14px; font-size: 14px; font-weight: 800; color: white; letter-spacing: .1px;
}
.press-yt-arrow {
  padding-right: 18px; opacity: .6; transition: all .25s;
}
.press-yt-btn:hover .press-yt-arrow { opacity: 1; transform: translateX(3px); }

/* full-width marquee */
.press-marquee-outer {
  width: 100%; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  padding-bottom: 48px;
}
.press-marquee-outer:hover .press-marquee-track { animation-play-state: paused; }

.press-marquee-track {
  display: flex; gap: 20px; width: max-content;
  will-change: transform;
}

.press-vid-card {
  flex: 0 0 300px; border-radius: 18px; overflow: hidden;
  background: white; border: 1.5px solid rgba(10,36,99,.08);
  box-shadow: 0 4px 16px rgba(10,36,99,.07);
  transition: transform .3s, box-shadow .3s; text-decoration: none; display: block;
}
.press-vid-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 48px rgba(10,36,99,.15); }
.press-vid-card:hover .press-play-btn { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.press-vid-card:hover .press-vid-wrap img { transform: scale(1.05); }

.press-vid-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9; background: #0a1a3a;
}
.press-vid-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.press-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.85);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,0,0,.92); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all .3s; box-shadow: 0 4px 16px rgba(0,0,0,.4); padding-left: 3px;
}
.press-channel-badge {
  position: absolute; top: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 6px;
  letter-spacing: .3px; text-transform: uppercase; backdrop-filter: blur(8px);
}
.press-ch--yt    { background: rgba(255,0,0,.92); color: white; }
.press-ch--fox   { background: rgba(20,60,160,.92); color: white; }
.press-ch--cnbc  { background: rgba(0,0,0,.88); color: #38bdf8; }
.press-ch--beyaz { background: rgba(255,255,255,.92); color: #111; border: 1px solid rgba(0,0,0,.12); }

.press-vid-meta { padding: 12px 16px 16px; }
.press-vid-title { font-size: 13.5px; font-weight: 700; color: var(--navy); line-height: 1.4; }

/* ─── nav arrows hidden (auto-scroll) */
.press-nav { display: none; }

/* quickval icon colors */
.qv-icon { display: flex; align-items: center; justify-content: center; }
.qv-icon--salary svg { stroke: var(--gold); }
.qv-icon--time svg   { stroke: #60a5fa; }
.qv-icon--city svg   { stroke: #34d399; }
.qv-icon--success svg { stroke: #4ade80; }

/* ─── STORIES / BAŞARI HİKAYELERİ ───────────────────── */
@keyframes storiesLeft  { 0%{transform:translateX(0)}   100%{transform:translateX(-50%)} }
@keyframes storiesRight { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }

.stories-section { background: white; overflow: hidden; }

.stories-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px;
}
.stories-sub { font-size: 15px; color: var(--gray-400); margin-top: 8px; font-weight: 400; }

/* marquee rows */
.stories-marquee-outer {
  width: 100%; overflow: hidden; margin-bottom: 16px;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
.stories-marquee-outer:last-of-type { margin-bottom: 48px; }
.stories-marquee-outer:hover .stories-track { animation-play-state: paused; }

.stories-track {
  display: flex; gap: 16px; width: max-content;
  will-change: transform;
}
.stories-track--left,
.stories-track--right { animation: none; }

/* keep old grid hidden */
.stories-grid { display: none; }

.story-card {
  flex: 0 0 260px; width: 260px;
  border-radius: 18px; overflow: hidden;
  background: var(--navy);
  box-shadow: 0 6px 24px rgba(10,36,99,.15);
  transition: transform .3s, box-shadow .3s; text-decoration: none;
  display: flex; flex-direction: column;
}
.story-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(10,36,99,.28); }
.story-card:hover .story-play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.story-card:hover .story-thumb-wrap img { transform: scale(1.05); }

.story-thumb-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 9/12; /* portrait */
  background: #0a1a3a;
}
.story-thumb-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.story-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.85);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,0,0,.9); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}

.story-info {
  padding: 14px 16px 16px; flex: 1;
  background: linear-gradient(135deg, var(--navy) 0%, #0a2463 100%);
}
.story-name { font-size: 14px; font-weight: 800; color: white; margin-bottom: 3px; }
.story-job { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 500; }

/* press nav arrows */
.press-nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 28px;
}
.press-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(10,36,99,.15);
  background: white; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 2px 8px rgba(10,36,99,.08);
}
.press-nav-btn:hover { background: var(--navy); color: white; border-color: var(--navy); transform: scale(1.05); }

.stories-cta { text-align: center; }
.stories-cta .btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--navy); padding: 17px 36px; border-radius: 14px;
  font-size: 15px; font-weight: 900; text-decoration: none;
  font-family: 'Montserrat', sans-serif; transition: all .3s;
  box-shadow: 0 8px 28px rgba(255,202,0,.35);
}
.stories-cta .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,202,0,.45); }

/* ─── BLOG ───────────────────────────────────────────── */
.blog-section { background: var(--gray-50); }
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.blog-grid:has(.blog-card--featured) { grid-template-columns: 2fr 1fr 1fr; }

.blog-card {
  background: white; border-radius: 22px; overflow: hidden;
  border: 1.5px solid rgba(10,36,99,.05);
  transition: all .3s; text-decoration: none; display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: rgba(255,202,0,.25); }

.blog-img {
  aspect-ratio: 16/9; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.blog-card:nth-child(1) .blog-img { background: linear-gradient(140deg, #0A2463 0%, #163a80 100%); }
.blog-card:nth-child(2) .blog-img { background: linear-gradient(140deg, #1a1a2e 0%, #232360 100%); }
.blog-card:nth-child(3) .blog-img { background: linear-gradient(140deg, #0d3b00 0%, #1a6600 100%); }
.blog-card--featured .blog-content h3 { font-size: 21px; }

.blog-img-icon {
  opacity: .25;
}

.blog-img-label {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,.35); backdrop-filter: blur(10px);
  color: white; font-size: 11px; font-weight: 700;
  padding: 5px 11px; border-radius: 7px; letter-spacing: .5px;
}
.blog-content { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-cat {
  font-size: 10.5px; font-weight: 800; padding: 4px 9px; border-radius: 5px;
  background: rgba(10,36,99,.08); color: var(--blue);
  text-transform: uppercase; letter-spacing: .7px;
}
.blog-date { font-size: 11.5px; color: var(--gray-400); font-weight: 600; }
.blog-content h3 {
  font-size: 16px; font-weight: 800; color: var(--navy);
  line-height: 1.4; margin-bottom: 10px; flex: 1; letter-spacing: -.2px;
}
.blog-card:nth-child(1) .blog-content h3 { font-size: 21px; }
.blog-content p { font-size: 13px; color: var(--gray-600); line-height: 1.65; margin-bottom: 14px; font-weight: 400; }
.blog-read {
  font-size: 12.5px; font-weight: 800; color: var(--blue);
  display: flex; align-items: center; gap: 5px; letter-spacing: .1px;
}

/* ─── BİLGİ İÇERİK SAYFASI (/bilgi/{slug}) ─────────────── */
/* Sabit chrome: top-bar + nav + footer; banner full-bleed; içerik nav container ile hizalı. */
.bc-content-page-body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--gray-50);
  padding-top: calc(var(--header-nav-h) + var(--header-topbar-h));
}
.bc-content-page-body:not(:has(.topbar)) {
  padding-top: var(--header-nav-h);
}
.bc-content-page-main {
  flex: 1 0 auto;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 40px 72px;
  box-sizing: border-box;
}
.bc-content-page-main--fluid {
  max-width: none;
  margin: 0;
  padding: 0 0 72px;
}
.bc-content-page {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 48px 56px;
  box-shadow: var(--shadow);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.75;
  isolation: isolate;
}
.bc-content-page.bc-content-page--shell {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 16px;
}

/* Full-bleed banner — light soft gradient (tüm /bilgi sayfaları) */
.bc-bilgi-banner {
  position: relative;
  width: 100%;
  min-height: 240px;
  overflow: hidden;
  color: #0B1F3F;
  background: #EEF5FF;
}
.bc-bilgi-banner__media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 8% 20%, rgba(126, 182, 255, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 92% 15%, rgba(255, 202, 0, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 70% 95%, rgba(168, 140, 255, 0.22) 0%, transparent 55%),
    linear-gradient(118deg, #E5F1FF 0%, #F3F8FF 38%, #FFF8EC 72%, #F4EEFF 100%);
}
.bc-bilgi-banner__media--photo {
  background-image:
    linear-gradient(118deg, rgba(229, 241, 255, 0.92) 0%, rgba(255, 248, 236, 0.88) 55%, rgba(244, 238, 255, 0.9) 100%),
    var(--bc-banner-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.05);
  opacity: 1;
}
.bc-bilgi-banner__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.35) 0%, transparent 45%, rgba(255, 248, 236, 0.25) 100%);
  pointer-events: none;
}
.bc-bilgi-banner__mark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: min(240px, 30vw);
  height: min(240px, 30vw);
  border: 18px solid rgba(26, 74, 140, 0.08);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.35), rgba(126, 182, 255, 0.12));
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(26, 74, 140, 0.06);
}
.bc-bilgi-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 52px 40px 48px;
  box-sizing: border-box;
}
.bc-bilgi-banner__eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #1A4A8C;
  border: 1px solid rgba(126, 182, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 4px 14px rgba(26, 74, 140, 0.06);
}
.bc-bilgi-banner__title {
  margin: 0 0 12px !important;
  font-size: clamp(1.9rem, 3.6vw, 2.55rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #0B1F3F !important;
}
.bc-bilgi-banner__lead {
  margin: 0;
  max-width: 38rem;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.55;
  color: #4A5F7A;
}
.bc-bilgi-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #7EB6FF 0%, #FFCA00 45%, #C4A8FF 100%);
  z-index: 3;
}

/* İçerik — menü .nav-inner ile aynı genişlik / yatay padding */
.bc-content-page-body--banner .bc-bilgi-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 40px 0;
  box-sizing: border-box;
  width: 100%;
}

.bc-content-page-body--banner .bc-bilgi-shell > .bc-content-page,
.bc-content-page-body--banner .bc-content-page--shell {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  box-sizing: border-box;
}

/* Seed içi eski hero’ları gizle — chrome banner kullanılır */
.bc-content-page-body--banner .bc-why-hero,
.bc-content-page-body--banner .bc-legal-hero,
.bc-content-page-body--banner .bc-about-hero,
.bc-content-page-body--banner .bc-pkg-hero,
.bc-content-page-body--banner .bc-career-hero,
.bc-content-page-body--banner .bc-guide-hero,
.bc-content-page-body--banner .bc-faq-hero,
.bc-content-page-body--banner .bc-cyr-hero,
.bc-content-page-body--banner .bc-mb-hero,
.bc-content-page-body--banner .bc-doc-hero,
.bc-content-page-body--banner .bc-kons-hero,
.bc-content-page-body--banner .bc-uni-hero,
.bc-content-page-body--banner .bc-tech-hero {
  display: none !important;
}

.bc-content-page > :first-child { margin-top: 0; }
.bc-content-page > :last-child { margin-bottom: 0; }
.bc-content-page h1,
.bc-content-page h2,
.bc-content-page h3 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1rem;
}
.bc-content-page h1 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.bc-content-page p { margin: 0 0 1rem; color: var(--gray-600); }
.bc-content-page a { color: var(--blue); }
.bc-content-page img { max-width: 100%; height: auto; border-radius: 12px; }
.bc-content-page-body > footer {
  flex-shrink: 0;
  margin-top: auto;
}

/* Kurumsal /bilgi/medya — YouTube video grid */
.bc-medya-section {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1.5px solid rgba(10, 36, 99, 0.08);
}
.bc-medya-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.bc-medya-section__tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 10px;
}
.bc-medya-section__title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.bc-medya-section__title em {
  font-style: normal;
  color: var(--gold);
}
.bc-medya-section__sub {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 560px;
}
.bc-medya-section__yt {
  flex-shrink: 0;
}
.bc-medya-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.bc-medya-vid-card {
  flex: none !important;
  width: 100%;
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(5, 14, 39, 0.08);
  border: 1px solid rgba(10, 36, 99, 0.06);
}
@media (max-width: 768px) {
  .bc-medya-section__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .bc-medya-grid {
    grid-template-columns: 1fr;
  }
}

/* Vize & Programlar — ücretsiz ön başvuru CTA (light soft) */
.bc-onbasvuru-cta {
  width: 100%;
  max-width: none;
  margin: 24px 0 0;
  box-sizing: border-box;
}
.bc-onbasvuru-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(255, 202, 0, 0.22), transparent 55%),
    radial-gradient(ellipse 45% 70% at 0% 100%, rgba(126, 182, 255, 0.28), transparent 55%),
    linear-gradient(125deg, #EEF5FF 0%, #F8FBFF 45%, #FFF8EC 100%);
  color: #0B1F3F;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 182, 255, 0.35);
  box-shadow: 0 14px 36px rgba(26, 74, 140, 0.08);
}
.bc-onbasvuru-cta__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7EB6FF 0%, #FFCA00 50%, #C4A8FF 100%);
}
.bc-onbasvuru-cta__copy {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.bc-onbasvuru-cta__eyebrow {
  margin: 0 0 8px;
  display: inline-block;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #8A6A00;
  background: rgba(255, 202, 0, 0.28);
  border-radius: 999px;
}
.bc-onbasvuru-cta__title {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 800;
  color: #0B1F3F;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.bc-onbasvuru-cta__text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4A5F7A;
  line-height: 1.55;
  max-width: 40rem;
}
.bc-onbasvuru-cta__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.bc-onbasvuru-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFCA00 0%, #FFD740 100%);
  color: #0B1F3F !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 202, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.bc-onbasvuru-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 202, 0, 0.45);
}
.bc-onbasvuru-cta__link {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #1A4A8C !important;
  text-decoration: none !important;
}
.bc-onbasvuru-cta__link:hover {
  color: #0B2F66 !important;
}
@media (max-width: 768px) {
  .bc-onbasvuru-cta {
    margin-top: 16px;
  }
  .bc-onbasvuru-cta__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 24px 20px;
  }
  .bc-onbasvuru-cta__actions {
    width: 100%;
  }
  .bc-onbasvuru-cta__btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .bc-content-page-main { padding: 32px 24px 56px; }
  .bc-content-page-main--fluid { padding: 0 0 56px; }
  .bc-bilgi-banner__inner,
  .bc-bilgi-shell { padding-left: 24px; padding-right: 24px; }
  .bc-content-page { padding: 36px 32px; }
}
@media (max-width: 1080px) {
  .bc-content-page-body:has(.topbar-ticker) {
    padding-top: calc(var(--header-nav-h) + var(--header-topbar-h) + env(safe-area-inset-top, 0px));
  }
  .bc-content-page-body:not(:has(.topbar-ticker)) {
    padding-top: calc(var(--header-nav-h) + env(safe-area-inset-top, 0px));
  }
}
@media (max-width: 768px) {
  :root { --header-topbar-h: 36px; }
  .bc-content-page-body:has(.topbar-ticker) {
    padding-top: calc(var(--header-nav-h) + var(--header-topbar-h) + env(safe-area-inset-top, 0px));
  }
  .bc-content-page-body:not(:has(.topbar-ticker)) {
    padding-top: calc(var(--header-nav-h) + env(safe-area-inset-top, 0px));
  }
  .bc-content-page-main { padding: 24px 16px 48px; }
  .bc-content-page-main--fluid { padding: 0 0 48px; }
  .bc-bilgi-banner__inner,
  .bc-bilgi-shell { padding-left: 16px; padding-right: 16px; }
  .bc-bilgi-banner__inner { padding-top: 36px; padding-bottom: 32px; }
  .bc-content-page { padding: 28px 20px; border-radius: 12px; }
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: linear-gradient(160deg, #050E27 0%, #071535 50%, #0A2463 100%);
  padding: 0;
  border-top: 3px solid var(--gold);
}

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 80px 60px 40px; }

/* centered brand block */
.footer-brand {
  text-align: center;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 64px;
}
.footer-logo { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.footer-logo img { height: 64px; width: auto; }
.footer-desc {
  font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.8;
  margin: 0 auto 32px; font-weight: 400; max-width: 420px;
}

.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.social-btn {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); text-decoration: none; transition: all .25s;
}
.social-btn svg { width: 21px; height: 21px; }
.social-btn:hover {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold); transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,202,0,.3);
}

/* menu columns — centered 4-col grid */
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 48px; padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: center;
}

.footer-col h4 {
  font-size: 10.5px; font-weight: 900; color: rgba(255,255,255,.35);
  text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; align-items: center; }
.footer-links a {
  font-size: 15px; color: rgba(255,255,255,.55); text-decoration: none;
  transition: all .2s; font-weight: 500;
}
.footer-links a:hover { color: var(--gold); font-weight: 600; }

.footer-bottom {
  padding: 30px 0; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.25); font-weight: 500; }
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.25); text-decoration: none; transition: color .2s; font-weight: 500; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ─── WHATSAPP ───────────────────────────────────────── */
/* WhatsApp floating — expanded pill */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 14px 22px 14px 18px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: all .3s; font-weight: 800; font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,.45); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,.7); }
}
.whatsapp-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 40px rgba(37,211,102,.55); }
.whatsapp-btn span { white-space: nowrap; }

@media (max-width: 640px) {
  .whatsapp-btn {
    bottom: 20px; right: 16px;
    padding: 12px 18px 12px 14px; font-size: 13px; gap: 8px;
  }
  .whatsapp-btn svg { width: 20px; height: 20px; }
}

/* ─── SCROLL LINE ────────────────────────────────────── */
.scroll-line {
  position: fixed; top: env(safe-area-inset-top, 0px); left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  width: 0%; transition: width .1s;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (min-width: 1081px) and (max-height: 900px) {
  .hero-inner { gap: 36px; padding: 20px 32px; }
  .hero-badge { margin-bottom: 10px; padding: 5px 12px; font-size: 10.5px; }
  .hero-title { font-size: clamp(30px, 3.2vw, 46px); margin-bottom: 10px; letter-spacing: -1.5px; }
  .hero-sub { font-size: 13.5px; margin-bottom: 12px; line-height: 1.55; }
  .hero-value-pills { margin-bottom: 14px; gap: 6px; }
  .hero-vp { font-size: 11.5px; padding: 5px 11px; }
  .hero-form-card { padding: 14px 18px 12px; margin-bottom: 0; }
  .hero-form { gap: 7px; }
  .hero-form-group input,
  .hero-form-group select,
  .hero-prof-search__input { padding: 8px 11px; font-size: 13px; }
  .hero-form-btn { padding: 10px; font-size: 13.5px; }
  .hero-form-trust { margin-top: 8px; padding-top: 8px; gap: 12px; }
}

@media (max-width: 1200px) {
  .topbar-badges { display: none; }
  .topbar-inner { padding: 0 24px; gap: 16px; }
  .nav-inner { padding: 0 24px; }
  .logo { margin-right: 24px; }
  .nav-link { padding: 9px 12px; font-size: 14px; }
}

@media (max-width: 1080px) {
  :root { --header-nav-h: 72px; }

  .topbar-contact { display: none; }
  .topbar-badges { display: none; }
  .topbar-right { display: none; }
  .topbar-inner {
    display: flex; align-items: center;
    max-width: none; padding: 0 14px; gap: 8px; height: 100%;
  }
  .topbar:has(.topbar-ticker) {
    display: flex; align-items: center;
    height: var(--header-topbar-h);
    min-height: var(--header-topbar-h);
    overflow: visible;
  }
  .topbar:not(:has(.topbar-ticker)) { display: none; }
  .topbar-ticker { flex: 1; min-width: 0; }
  .topbar-ticker-tag {
    font-size: 9px; padding: 3px 7px; line-height: 1;
    flex-shrink: 0;
  }
  .topbar-ticker-track { line-height: 1.2; }
  .topbar-ticker-track span {
    font-size: 11px; line-height: 1.2;
    padding: 2px 0;
  }

  .nav-menu { display: none; }
  .mega-menu-stage { display: none !important; }
  .nav-cta .nav-dropdown-wrap { display: none; }
  .nav-cta .btn-nav-login { display: none; }
  .nav-cta .btn-primary--cta { display: none; }
  .nav-inner {
    justify-content: space-between;
    height: var(--header-nav-h);
    padding: 0 14px;
    gap: 8px;
  }
  .nav-cta { margin-left: 0; gap: 6px; flex-shrink: 0; }
  .logo { margin-right: 0; flex-shrink: 1; min-width: 0; }
  .logo img { height: 48px; }

  .quickval-inner { grid-template-columns: repeat(2, 1fr); }
  .media-strip-logos { gap: 6px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 28px 20px 32px; }
  .hero-visual { display: none; }
  .section-inner { padding: 0 20px; }
  .media-strip-inner { padding: 0 20px; }
  .footer-inner { padding-left: 20px; padding-right: 20px; }
  .tab-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .story-card { flex: 0 0 220px; width: 220px; }
  .press-vid-card { flex: 0 0 280px; }
  .press-header, .stories-header { flex-direction: column; gap: 16px; }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-header { flex-direction: column; gap: 24px; }
  .jobs-header-stats { align-self: flex-start; }
  .blog-card:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 3; }
  .cta-inner { grid-template-columns: 1fr; gap: 56px; }
  .cta-title { font-size: 40px; }
  .cta-bubble { display: none; }
  .cta-stat-chip { display: none; }
}

/* ═══════════════════════════════════════
   HAMBURGER & MOBILE DRAWER
════════════════════════════════════════ */
/* mobile nav butonlar — masaüstünde gizli */
.mob-nav-aday, .mob-nav-basvuru {
  display: none;
  align-items: center; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  white-space: nowrap; transition: all .2s;
}
.mob-nav-aday {
  font-size: 12px; color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 12px; border-radius: 10px;
}
.mob-nav-basvuru {
  font-size: 11px; color: var(--navy);
  background: var(--gold); padding: 8px 10px; border-radius: 10px;
}

/* ── Kreatif hamburger ── */
@keyframes hamDot { 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.4);opacity:1} }

.nav-hamburger {
  display: none; position: relative;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 14px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
  transition: all .3s; overflow: hidden;
}
.nav-hamburger:hover { background: rgba(255,202,0,.12); border-color: rgba(255,202,0,.35); }

/* 3×3 dot grid */
.nav-hamburger .hb-grid {
  display: grid; grid-template-columns: repeat(3,6px); gap: 4px;
  transition: all .35s;
}
.nav-hamburger .hb-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.7); transition: all .35s;
}
.nav-hamburger .hb-dot:nth-child(5) { background: var(--gold); animation: hamDot 2s ease-in-out infinite; }

/* open state → X shape: corners stay, middle becomes X lines */
.nav-hamburger.open { background: rgba(255,202,0,.15); border-color: rgba(255,202,0,.4); }
.nav-hamburger.open .hb-dot { background: rgba(255,255,255,.25); animation: none; }
.nav-hamburger.open .hb-dot:nth-child(1) { background: white; transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open .hb-dot:nth-child(3) { background: white; transform: rotate(-45deg) translate(-5px,5px); }
.nav-hamburger.open .hb-dot:nth-child(5) { background: var(--gold); transform: scale(1.3); }
.nav-hamburger.open .hb-dot:nth-child(7) { background: white; transform: rotate(-45deg) translate(5px,-5px); }
.nav-hamburger.open .hb-dot:nth-child(9) { background: white; transform: rotate(45deg) translate(-5px,-5px); }

/* Mobil nav görünürlüğü — base display:none kurallarından SONRA */
@media (max-width: 1080px) {
  .nav-hamburger { display: flex; }
  .mob-nav-aday { display: inline-flex; }
}
@media (max-width: 900px) {
  .mob-nav-basvuru { display: inline-flex; }
}

.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(5,14,39,.6);
  backdrop-filter: blur(4px); z-index: 8998;
}
.mobile-overlay.show { display: block; }

.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100%;
  background: linear-gradient(170deg, #050E27 0%, #0A2463 100%);
  z-index: 8999; transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; padding-top: 80px;
  box-shadow: -8px 0 40px rgba(0,0,0,.4);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-inner { padding: 24px 24px 40px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block; padding: 14px 16px; border-radius: 12px;
  font-size: 16px; font-weight: 700; color: rgba(255,255,255,.8);
  text-decoration: none; transition: all .2s;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav-link:hover { background: rgba(255,255,255,.08); color: white; }
.mobile-drawer-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
/* üst CTA butonu */
.mob-cta-primary {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--gold); color: var(--navy); padding: 15px;
  border-radius: 14px; font-size: 15px; font-weight: 900;
  text-decoration: none; font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px; letter-spacing: .1px;
}
.mob-cta-primary:hover { background: var(--gold-light); }

/* login row in drawer */
.mob-login-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.mob-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 11px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.25;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.15);
  transition: all .2s;
  font-family: 'Montserrat', sans-serif;
}
.mob-login-btn--employer { background: rgba(255,202,0,.1); color: var(--gold); border-color: rgba(255,202,0,.3); }
.mob-login-btn:hover { background: rgba(255,255,255,.14); color: white; }

.mob-section-label {
  font-size: 10px; font-weight: 800; color: rgba(255,255,255,.3);
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 16px 6px; margin-top: 4px;
}

/* ─── MOBILE APP BAR ─────────────────────────────── */
.mobile-appbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8990;
  background: rgba(5,14,39,.96); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 10px 16px 14px;
  box-shadow: 0 -8px 32px rgba(0,0,0,.3);
}
.mab-cta-single {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px; border-radius: 14px;
  background: var(--gold); color: var(--navy);
  font-size: 15px; font-weight: 900; text-decoration: none;
  font-family: 'Montserrat', sans-serif; letter-spacing: .2px;
  transition: background .2s;
}
.mab-cta-single:hover { background: var(--gold-light); }
.mab-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 4px; border-radius: 12px;
  font-size: 10.5px; font-weight: 800; text-decoration: none;
  transition: all .2s; font-family: 'Montserrat', sans-serif;
  text-align: center; color: rgba(255,255,255,.6);
}
.mab-btn span { line-height: 1.2; text-align: center; }
.mab-btn:hover, .mab-btn:active { transform: translateY(-2px); }
.mab-btn--test  { color: #60a5fa; }
.mab-btn--test:hover { background: rgba(96,165,250,.1); }
.mab-btn--wa    { color: #4ade80; }
.mab-btn--wa:hover { background: rgba(74,222,128,.1); }
.mab-btn--cta   {
  background: var(--gold); color: var(--navy);
  border-radius: 14px; padding: 8px 6px;
}
.mab-btn--cta:hover { background: var(--gold-light); }
.mab-btn--jobs  { color: rgba(255,255,255,.55); }
.mab-btn--jobs:hover { background: rgba(255,255,255,.06); }

/* ═══════════════════════════════════════
   MOBILE 768px
════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-nav-h: 64px; --header-topbar-h: 36px; }

  .topbar:has(.topbar-ticker) {
    height: var(--header-topbar-h);
    min-height: var(--header-topbar-h);
  }
  .topbar-inner { padding: 0 12px; }
  .nav-inner { height: var(--header-nav-h); padding: 0 12px; }
  .logo img { height: 44px; }
  .mob-nav-aday { font-size: 11px; padding: 7px 10px; }
  .nav-hamburger { width: 40px; height: 40px; flex-shrink: 0; }
  .nav-cta { gap: 5px; min-width: 0; }
  .logo { flex: 1 1 auto; min-width: 0; max-width: calc(100% - 168px); }
  .logo img { height: 40px; max-width: 100%; object-fit: contain; object-position: left center; }

  /* tab section — tek kolon */
  .tab-grid {
    grid-template-columns: 1fr !important;
    overflow-x: visible; gap: 14px;
    padding: 0; margin: 0;
    scroll-snap-type: none;
  }
  .tab-card { scroll-snap-align: none; }

  /* persona — tek kolon, aday/işveren kartları alt alta */
  .persona-section {
    padding: 56px 0 0;
  }
  .persona-header {
    padding: 0 20px 36px;
  }
  .persona-split {
    flex-direction: column !important;
    overflow-x: visible !important;
    min-height: auto !important;
    scroll-snap-type: none;
  }
  .persona-half {
    flex: none !important;
    min-width: 100% !important;
    min-height: auto !important;
    scroll-snap-align: none;
  }
  .persona-half:hover,
  .persona-half.active {
    flex: none !important;
  }
  .persona-half-inner {
    padding: 32px 20px 28px;
  }
  .persona-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }
  .persona-title {
    font-size: clamp(20px, 5.5vw, 26px);
  }
  .persona-desc {
    max-width: none;
    font-size: 13px;
  }
  .persona-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .persona-stat-val {
    font-size: 22px;
  }
  .persona-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .persona-detail-card {
    padding: 14px 20px;
  }
  .persona-detail-cta {
    padding: 14px 20px;
  }
  .persona-half.active .persona-detail {
    max-height: 1200px;
  }
  .persona-divider {
    display: none !important;
  }

  /* drawer giriş satırı — 2x2 grid */
  .mob-login-row {
    grid-template-columns: 1fr 1fr;
  }
  .hero { min-height: 100dvh; padding-bottom: 24px; }

  /* hero */
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 28px 20px 32px; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(32px, 9vw, 48px); margin-bottom: 12px; }
  .hero-sub { font-size: 14px; margin-bottom: 14px; }
  .hero-value-pills { gap: 6px; }
  .hero-vp { font-size: 11px; padding: 5px 10px; }
  .hero-form-card { max-width: 100%; margin-bottom: 20px; }
  .hero-form-row { grid-template-columns: 1fr; gap: 8px; }

  /* quickval */
  .quickval-inner { grid-template-columns: 1fr 1fr; }
  .qv-card { padding: 16px 14px; gap: 10px; }
  .qv-icon svg { width: 20px; height: 20px; }
  .qv-num { font-size: 18px; }
  .qv-label { font-size: 10px; }
  .qv-arrow { display: none; }

  /* sections */
  section { padding: 56px 0; }
  .section-inner { padding: 0 20px; }
  .section-title { font-size: clamp(26px, 7vw, 38px); }

  /* elig flip cards */
  .elig-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .elig-card { height: auto; min-height: 300px; }
  .elig-card--featured { transform: none; }
  .elig-card--featured:hover { transform: rotateY(180deg); }

  /* need cards */
  .need-grid { grid-template-columns: 1fr; gap: 16px; }

  /* packages */
  .pkg-grid { grid-template-columns: 1fr; gap: 16px; }
  .pkg-body { padding: 24px 20px 20px; }
  .pkg-card--featured .pkg-body { padding-top: 32px; }

  /* single items */
  .single-items-grid { grid-template-columns: 1fr; }

  /* process */
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-steps::before, .process-steps::after { display: none; }

  /* stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stats-card { padding: 24px 16px; }
  .stats-num { font-size: 32px; }

  /* persona — tek kolon (inline style'ı HTML içinde override) */

  /* cta zoom */
  .cta-section { min-height: auto; padding: 60px 0; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
  .cta-title { font-size: 32px; }
  .cta-right { display: none; }
  .cta-actions { flex-direction: column; }
  .cta-bubble { display: none; }

  /* press */
  .press-header-wrap { padding: 0 20px 32px; }
  .press-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .press-vid-card { flex: 0 0 240px; }

  /* stories */
  .stories-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .story-card { flex: 0 0 200px; width: 200px; }

  /* jobs */
  .jobs-header { flex-direction: column; gap: 16px; }
  .jobs-header-stats { align-self: flex-start; }
  .jobs-hstat { padding: 14px 20px; }
  .jobs-hstat-num { font-size: 22px; }
  .jobs-filters { flex-direction: column; align-items: stretch; }
  .jobs-search-wrap { border-bottom: 1.5px solid rgba(10,36,99,.07); padding: 14px 16px; }
  .jobs-filter-select-wrap { border-left: none; padding: 12px 16px; border-top: 1.5px solid rgba(10,36,99,.07); }
  .jobs-filter-reset { border-left: none; border-top: 1.5px solid rgba(10,36,99,.07); padding: 12px 16px; justify-content: center; }
  .jobs-grid { grid-template-columns: 1fr; }
  .jobs-footer { flex-direction: column; gap: 14px; align-items: stretch; text-align: center; }
  .jobs-all-btn { justify-content: center; }

  /* blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:first-child { grid-column: span 1; }

  /* footer */
  .footer-inner { padding: 48px 20px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  /* bc widget — WhatsApp pill tamamen gizle */
  .bc-wa-pill { display: none !important; }
  .bc-bottom-row { gap: 0; }
  .bc-widget { bottom: 84px; right: 12px; gap: 6px; }
  .bc-circle-wrap { width: 52px; height: 52px; margin-bottom: 18px; }
  .bc-circle-label { font-size: 9px; bottom: -16px; padding: 2px 7px; }

  /* konuşma balonu — küçük, sağ alt köşede sabit */
  .bc-bubble-msg {
    position: fixed !important;
    bottom: 148px; right: 8px; left: auto;
    max-width: 220px !important; width: 220px !important;
    font-size: 11.5px; padding: 10px 12px 10px 12px !important;
    border-radius: 14px 14px 4px 14px !important;
    z-index: 9997;
  }
  .bc-bubble-msg::after { right: 18px; left: auto; }
  .bc-msg-name { font-size: 10px; margin-bottom: 4px; }
  .bc-msg-text { font-size: 12px; min-height: auto; }
  .bc-chips { gap: 4px; margin-top: 8px; }
  .bc-chip { font-size: 10px; padding: 3px 8px; }

  /* appbar active */
  .mobile-appbar { display: block; }

  /* body padding so content not hidden behind appbar */
  body { padding-bottom: 72px; }

  /* scroll-top button above appbar */
  .scroll-top { bottom: 84px; left: 12px; right: auto; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 10px; gap: 6px; }
  .logo img { height: 36px; }
  .mob-nav-aday {
    font-size: 10px;
    padding: 7px 8px;
    border-radius: 8px;
  }
  .mob-nav-basvuru {
    display: none !important;
  }
  .nav-hamburger {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .mob-login-row {
    grid-template-columns: 1fr;
  }
  .mob-login-btn {
    font-size: 13px;
    padding: 12px 14px;
  }
  .mobile-drawer {
    width: min(300px, 92vw);
  }
  .mobile-drawer-inner {
    padding: 20px 16px 32px;
  }
}

/* ═══════════════════════════════════════════════════════
   "NE İHTİYACIN VAR?" – PROFİL KARTLARI (V2)
════════════════════════════════════════════════════════ */
.need-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}
.need-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255,202,0,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 30%, rgba(13,59,140,.28) 0%, transparent 60%);
  pointer-events: none;
}

.need-bg-grid {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: needGridShift 20s linear infinite;
  pointer-events: none;
}
@keyframes needGridShift {
  from { background-position: 0 0; }
  to { background-position: 48px 48px; }
}

.need-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: needGlowPulse 6s ease-in-out infinite;
}
.need-bg-glow-1 { width: 500px; height: 500px; background: rgba(82,153,255,.08); top: -100px; left: -100px; }
.need-bg-glow-2 { width: 400px; height: 400px; background: rgba(255,202,0,.07); top: 0; left: calc(50% - 200px); animation-delay: 2s; }
.need-bg-glow-3 { width: 450px; height: 450px; background: rgba(52,211,153,.07); bottom: -100px; right: -100px; animation-delay: 4s; }
@keyframes needGlowPulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

.need-inner { position: relative; z-index: 1; }
.need-header { text-align: center; margin-bottom: 52px; }
.need-header .section-tag {
  color: var(--gold);
  justify-content: center;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: .08em;
  display: inline-flex;
  width: auto;
  margin: 0 auto 18px;
}
.need-header .section-tag::before { display: none; }
.need-header .section-title { color: white; margin: 0 auto 14px; }
.need-header .section-sub {
  color: rgba(255,255,255,.55);
  margin: 0 auto;
  text-align: center;
  max-width: 520px;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* Kart kabuğu */
.need-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 430px;
  padding: 34px 28px 24px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(8, 18, 40, 0.55);
  border: 1px solid rgba(var(--nc), 0.28);
  box-shadow:
    0 0 0 1px rgba(var(--nc), 0.06) inset,
    0 0 32px rgba(var(--nc), 0.08),
    0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.need-card-v2:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--nc), 0.55);
  box-shadow:
    0 0 0 1px rgba(var(--nc), 0.12) inset,
    0 0 48px rgba(var(--nc), 0.18),
    0 24px 56px rgba(0, 0, 0, 0.35);
}
.need-card-v2--featured {
  background: rgba(255, 202, 0, 0.05);
  border-color: rgba(255, 202, 0, 0.38);
  padding-top: 42px;
  box-shadow:
    0 0 0 1px rgba(255, 202, 0, 0.08) inset,
    0 0 40px rgba(255, 202, 0, 0.12),
    0 20px 52px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}
.need-card-v2--featured:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 202, 0, 0.55);
}

.nc-glow {
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(var(--nc), .18) 0%, transparent 72%);
  opacity: .55;
  pointer-events: none;
}
.need-card-v2:hover .nc-glow { opacity: .9; }

.nc-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: rgba(var(--nc), .09);
  pointer-events: none;
  user-select: none;
}
.need-card-v2:hover .nc-number { color: rgba(var(--nc), .15); }

.nc-featured-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 6px 16px rgba(255, 202, 0, 0.35);
  z-index: 2;
  white-space: nowrap;
}

.nc-icon-ring {
  position: relative;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}
.nc-icon-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--nc), .35);
  animation: ncPulse 2.8s ease-in-out infinite;
}
.nc-icon-pulse::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(var(--nc), .14);
  animation: ncPulse 2.8s ease-in-out infinite .45s;
}
@keyframes ncPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.14); opacity: .35; }
}
.nc-icon-wrap {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--nc), .1);
  border: 1.5px solid rgba(var(--nc), .32);
  color: rgb(var(--nc));
  box-shadow: 0 0 24px rgba(var(--nc), .22);
  transition: transform .3s ease, box-shadow .3s ease;
}
.need-card-v2:hover .nc-icon-wrap {
  transform: scale(1.06);
  box-shadow: 0 0 32px rgba(var(--nc), .35);
}

.nc-content { display: flex; flex-direction: column; gap: 10px; }
.nc-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgb(var(--nc));
}
.nc-title {
  margin: 0;
  font-size: clamp(21px, 1.9vw, 27px);
  font-weight: 900;
  line-height: 1.22;
  color: #fff;
  letter-spacing: -.02em;
}
.nc-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .52);
  font-weight: 400;
}

.nc-services {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 2px;
}
.nc-svc {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
}
.nc-svc--primary {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .82);
}
.nc-svc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(var(--nc), .45);
}
.nc-svc--primary .nc-svc-dot {
  background: rgb(var(--nc));
  box-shadow: 0 0 8px rgba(var(--nc), .55);
}
.need-card-v2:hover .nc-svc { color: rgba(255, 255, 255, .68); }
.need-card-v2:hover .nc-svc--primary { color: #fff; }

.nc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.nc-footer-text {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .38);
  transition: color .2s ease;
}
.need-card-v2:hover .nc-footer-text { color: rgb(var(--nc)); }
.nc-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(var(--nc), .12);
  border: 1px solid rgba(var(--nc), .28);
  color: rgb(var(--nc));
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.need-card-v2:hover .nc-arrow {
  background: rgb(var(--nc));
  color: var(--navy);
  transform: translateX(3px);
}
.need-card-v2.active {
  border-color: rgba(var(--nc), 0.55);
  box-shadow:
    0 0 0 1px rgba(var(--nc), 0.12) inset,
    0 0 48px rgba(var(--nc), 0.18),
    0 24px 56px rgba(0, 0, 0, 0.35);
}
.need-card-v2--featured.active {
  border-color: rgba(255, 202, 0, 0.55);
}

@media (max-width: 1024px) {
  .need-grid { grid-template-columns: 1fr; gap: 16px; }
  .need-card-v2 { min-height: 0; }
  .need-card-v2--featured { transform: none; }
  .need-card-v2--featured:hover { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════════════════
   PAKETLERMİZ – PRICING CARDS
════════════════════════════════════════════════════════ */
.packages-section { background: var(--gray-50); }
.packages-header { text-align: center; margin-bottom: 64px; }
.packages-header .section-tag { justify-content: center; }
.packages-header .section-tag::before { display: none; }
.packages-header .section-sub { margin: 0 auto; text-align: center; }

.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: start;
}

.pkg-card {
  background: white;
  border-radius: 16px;
  border: 1.5px solid rgba(10,36,99,.09);
  box-shadow: 0 4px 20px rgba(10,36,99,.07);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1), border-color .35s;
  animation: pkgRise .6s ease both;
}
.pkg-card:nth-child(2) { animation-delay: .1s; }
.pkg-card:nth-child(3) { animation-delay: .2s; }

@keyframes pkgRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pkgRiseFeatured {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(-16px); }
}

.pkg-card:not(.pkg-card--featured):hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10,36,99,.12);
  border-color: rgba(10,36,99,.14);
}

/* Featured card */
.pkg-card--featured {
  border: 2px solid var(--gold) !important;
  background: var(--navy) !important;
  overflow: visible;
  transform: translateY(-16px);
  box-shadow: 0 20px 56px rgba(5,14,39,.28);
  z-index: 2;
  animation-name: pkgRiseFeatured;
}
.pkg-card--featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 28px 64px rgba(5,14,39,.34);
}

.pkg-featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
  padding: 7px 22px 6px;
  white-space: nowrap;
  z-index: 3;
  clip-path: polygon(7% 0%, 93% 0%, 100% 100%, 0% 100%);
  box-shadow: 0 4px 12px rgba(255,202,0,.35);
}

.pkg-body {
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-card--featured .pkg-body { padding-top: 36px; }

.pkg-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pkg-card:not(.pkg-card--featured) .pkg-icon {
  background: rgba(67,166,216,.12);
}
.pkg-card--featured .pkg-icon {
  background: rgba(5,14,39,.55);
  border: 2px solid var(--gold);
}

.pkg-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 5px;
}
.pkg-card--featured .pkg-name { color: rgba(255,255,255,.45); }

.pkg-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 3px;
  letter-spacing: -.4px;
  line-height: 1.2;
}
.pkg-card--featured .pkg-title { color: white; }

.pkg-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 14px;
  line-height: 1.4;
}
.pkg-card--featured .pkg-subtitle { color: rgba(255,255,255,.45); }

.pkg-price-wrap {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(10,36,99,.09);
}
.pkg-card--featured .pkg-price-wrap { border-color: rgba(255,255,255,.1); }

.pkg-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-600);
}
.pkg-card--featured .pkg-duration {
  background: var(--gold);
  color: var(--navy);
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  flex: 1;
}
.pkg-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.45;
}
.pkg-card--featured .pkg-feature:not(.pkg-feature--extra) {
  color: rgba(255,255,255,.92);
}
.pkg-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.pkg-card:not(.pkg-card--featured) .pkg-check {
  background: rgba(67,166,216,.14);
}
.pkg-card--featured .pkg-check {
  background: rgba(255,202,0,.2);
}

.pkg-feature--extra { color: var(--gold) !important; font-weight: 600 !important; }
.pkg-card--featured .pkg-feature--extra { color: var(--gold) !important; }
.pkg-feature--extra .pkg-check { background: rgba(255,202,0,.22) !important; }

.pkg-cta {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all .25s;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .1px;
  margin-top: auto;
}
.pkg-card:not(.pkg-card--featured) .pkg-cta {
  background: var(--gray-100);
  color: var(--navy);
}
.pkg-card:not(.pkg-card--featured) .pkg-cta:hover {
  background: #e4e8f0;
  color: var(--navy);
}
.pkg-card--featured .pkg-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 16px;
  font-size: 15px;
  box-shadow: 0 6px 24px rgba(255,202,0,.4);
}
.pkg-card--featured .pkg-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(255,202,0,.5);
}

/* Tekli İşlemler */
.singles-wrap {
  margin-top: 56px; background: white; border-radius: 24px;
  border: 1.5px solid rgba(10,36,99,.07);
  overflow: hidden;
}
.singles-header {
  padding: 28px 36px; background: linear-gradient(135deg, var(--navy), #0A2463);
  display: flex; align-items: center; justify-content: space-between;
}
.singles-header h3 { font-size: 18px; font-weight: 900; color: white; letter-spacing: -.3px; }
.singles-header p { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500; }
.singles-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
a.single-item {
  padding: 28px 20px; text-align: center; border-right: 1px solid rgba(10,36,99,.07);
  transition: background .2s; cursor: pointer; text-decoration: none; color: inherit; display: block;
}
.single-item:last-child { border-right: none; }
.single-item:hover { background: var(--gray-50); }
.single-icon {
  width: 48px; height: 48px; border-radius: 14px; background: rgba(10,36,99,.06);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
  transition: background .2s;
}
.single-item:hover .single-icon { background: rgba(255,202,0,.15); }
.single-name { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -.1px; }
.single-price {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 800; letter-spacing: .4px;
  color: var(--navy); background: var(--gold);
  padding: 6px 14px; border-radius: 8px; margin-bottom: 4px;
  transition: transform .15s, box-shadow .15s;
}
.single-item:hover .single-price {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,202,0,.4);
}
.single-price span { font-size: 14px; font-weight: 700; }
.single-desc { font-size: 11px; color: var(--gray-400); font-weight: 600; }

/* Animated number counter */
.count-up { display: inline-block; }

/* ═══════════════════════════════════════════════════════
   PACKAGE COMPARISON TOGGLE (Dil Okulu add-on)
════════════════════════════════════════════════════════ */
.dil-addon {
  margin-top: 20px; background: white; border-radius: 20px;
  border: 2px dashed rgba(10,36,99,.12);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 24px;
  transition: border-color .3s; cursor: pointer;
}
.dil-addon:hover { border-color: var(--gold); background: rgba(255,202,0,.02); }
.dil-addon-icon {
  width: 56px; height: 56px; border-radius: 16px; background: rgba(10,36,99,.06);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dil-addon-content { flex: 1; }
.dil-addon-content h4 { font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 4px; letter-spacing: -.3px; }
.dil-addon-content p { font-size: 13px; color: var(--gray-600); font-weight: 400; }
.dil-addon-price { text-align: right; flex-shrink: 0; }
.dil-addon-price .price { font-size: 28px; font-weight: 900; color: var(--blue); letter-spacing: -1px; }
.dil-addon-price .price span { font-size: 16px; font-weight: 700; }
.dil-addon-price .note {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 800; letter-spacing: .4px;
  color: var(--navy); background: var(--gold);
  padding: 6px 14px; border-radius: 8px;
}

@media (max-width: 1080px) {
  .need-grid { grid-template-columns: 1fr; gap: 14px; }
  .packages-grid { grid-template-columns: 1fr; gap: 20px; }
  .pkg-card--featured { transform: none; animation-name: pkgRise; }
  .singles-grid { grid-template-columns: repeat(3, 1fr); }
  .singles-grid .single-item:nth-child(3) { border-right: none; }
  .singles-grid .single-item:nth-child(4) { border-top: 1px solid rgba(10,36,99,.07); }
  .singles-grid .single-item:nth-child(5) { border-top: 1px solid rgba(10,36,99,.07); }
  .dil-addon { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .singles-grid { grid-template-columns: 1fr 1fr; }
  .single-item:nth-child(even) { border-right: none; }
  .single-item { border-bottom: 1px solid rgba(10,36,99,.07); }
}
