/* =========================
   RESET + GLOBAL
========================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* `hidden` özniteliği tarayıcı stilinde display:none demektir; ancak bir sınıf
   display verirse (ör. .jobs-empty { display:flex }) onu ezer ve öğe gizlenmez.
   JS tarafında el.hidden = true yazıp hiçbir şey olmamasının sebebi budur. */
[hidden] {
  display: none !important;
}

:root {
  --green-dark:  #0C7A1D;
  --green-main:  #169A2E;
  --green-mid:   #49C32D;
  --green-light: #EAF9E8;
  --green-pale:  #F7F8F5;

  --white:       #FFFFFF;

  --text-dark:   #083B12;
  --text-mid:    #4B5C52;
  --text-muted:  #7A8B80;

  --shadow-sm:   0 2px 12px rgba(22,154,46,.12);
  --shadow-md:   0 10px 40px rgba(22,154,46,.20);
  --shadow-btn:   0 10px 26px rgba(14,122,53,.22);
  --shadow-btn-h: 0 16px 38px rgba(14,122,53,.30);

  /* --- Compatibility (bottom section uses these variables) --- */
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Nunito', sans-serif;

  --clr-bg: #F7F8F5;
  --clr-text-primary: #083B12;
  --clr-text-muted: #7A8B80;
  --clr-text-body: #4B5C52;

  --clr-dark-green: #0C7A1D;
  --clr-mid-green: #49C32D;
  --clr-border: #d9f3e2;
  --clr-light-green: rgba(22,154,46,.25);

  --clr-card: rgba(255,255,255,0.85);
  --shadow-card: 0 24px 80px rgba(14, 122, 53, 0.10);

  --clr-white: #FFFFFF;
  --clr-input-bg: rgba(255,255,255,0.96);
  --clr-input-focus: rgba(31, 175, 56, 0.14);
  --shadow-input: 0 10px 26px rgba(14, 122, 53, 0.10);

  --r-sm: 12px;
  --r-md: 14px;
  --r-2xl: 22px;

  --sp-2: 8px;
  --sp-4: 10px;
  --sp-6: 14px;
  --sp-8: 16px;
  --sp-10: 20px;
  --sp-12: 24px;
  --sp-14: 28px;
  --sp-16: 32px;
  --sp-18: 36px;
  --sp-20: 40px;
  --sp-24: 48px;
  --sp-28: 56px;
  --sp-40: 72px;
  --sp-48: 80px;
  --sp-56: 90px;
  --sp-64: 100px;

  --dur-fast: 140ms;
  --dur-med: 220ms;
  --dur-slow: 420ms;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.2,1.2,.2,1);
}




/* =========================
   JOBS MODULE
========================= */

.jobs-page {
  padding: 0 var(--sp-16) var(--sp-56);
  position: relative;
  z-index: 10;
}


/* Small visual polish helpers (do not affect JS/data flow) */
.text-muted { color: var(--text-muted) !important; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(234, 249, 232, 0.65);
  border: 1.5px solid rgba(178, 234, 199, 0.75);
  color: var(--green-dark);
  font-weight: 950;
  font-size: .85rem;
  letter-spacing: .01em;
}

/* Fade-in */
.jobs-hero,
.jobs-filters,
.jobs-cards,
.jobs-toolbar {
  animation: fadeIn .5s ease both;
}

.jobs-filters--floating { animation: fadeUp .55s ease both; }



.jobs-hero {
  max-width: 1100px;
  margin: 0 auto;
  height: 560px; /* 500-600px */
  display: grid;
  align-items: start;
}

.jobs-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-16), 2.6vw, var(--sp-28));
  align-items: start;
  padding: var(--sp-24) 0 0;
}

.jobs-hero__left { padding-right: 10px; }

.jobs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(234, 249, 232, 0.35);
  border: 1.5px solid rgba(178, 234, 199, 0.85);
  color: var(--green-dark);
  font-weight: 950;
  font-size: .9rem;
  margin-bottom: 18px;
}

.jobs-hero__badge-ico {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 252, 231, 0.85);
  border: 1.5px solid rgba(178, 234, 199, 0.65);
}

.jobs-hero__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 950;
  color: var(--green-dark);
  font-size: 58px;
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  transform: translateY(-20px);
}

.jobs-hero__title span { display: block; }

.jobs-hero__title-accent {
  color: var(--green-main);
  text-shadow: 0 18px 70px rgba(22, 163, 74, .18);
  position: relative;
}

.jobs-hero__title-accent::after {
  content: '';
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 8px;
  height: 14px;
  background: rgba(220, 252, 231, 0.8);
  border-radius: 999px;
  z-index: -1;
  filter: blur(0.2px);
}

.jobs-hero__sub {
  color: var(--text-mid);
  font-weight: 650;
  line-height: 1.65;
  max-width: 520px;
  font-size: 1rem;
}

/* Right art */
.jobs-hero__right { position: relative; }

.hero-art {
  position: relative;
  height: 460px;
  display: grid;
  place-items: center;
}

.hero-art__scene {
  width: 100%;
  height: 100%;

  /* Kart hissini tamamen kaldır */
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;

  position: relative;
  overflow: hidden;
}

/* Kenarlarda yumuşak fade (hero arka planına karışsın) */
.hero-art__scene::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: 1;
  background:
    radial-gradient(380px 260px at 60% 35%, rgba(22,154,46,.20), transparent 60%),
    radial-gradient(260px 200px at 20% 65%, rgba(73,195,45,.14), transparent 62%),
    linear-gradient(90deg, rgba(247,248,245,0) 0%, rgba(247,248,245,.55) 100%);

  /* opacity ile “PNG transparan hissi” */
  opacity: .9;
  pointer-events: none;
}

/* Fade katmanı çocukları engellemesin */
.hero-art__scene > * {
  position: relative;
  z-index: 2;
}


.hero-art__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: .75;
}

.hero-art__orb--1 { width: 220px; height: 220px; top: -70px; right: 80px; background: radial-gradient(circle, rgba(22,154,46,.30), transparent 60%); }
.hero-art__orb--2 { width: 160px; height: 160px; bottom: -60px; left: 70px; background: radial-gradient(circle, rgba(73,195,45,.25), transparent 62%); }

.hero-art__chair {
  position: absolute;
  left: 48%;
  top: 55%;

  /* Konumu bozma */
  transform: translate(-50%, -50%) scale(1.06);
  width: 250px;
  height: 230px;

  object-fit: contain;
  object-position: center;
  z-index: 3;

  /* Sert kenar/çerçeve hissini azalt */
  filter:
    blur(.05px)
    drop-shadow(0 16px 24px rgba(14, 122, 53, .10));

  /* PNG transparan hissi için kenar opacity yumuşatma */
  opacity: .98;
}

/* Kenarları yumuşatmaya yardımcı (mask destekliyse) */
@supports (mask-image: radial-gradient(circle, #000 60%, transparent 72%)) {
  .hero-art__chair {
    -webkit-mask-image: radial-gradient(circle at 50% 55%, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 76%);
    mask-image: radial-gradient(circle at 50% 55%, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 76%);
  }
}



.hero-art__chair-back {
  position: absolute;
  left: 45px;
  top: 10px;
  width: 160px;
  height: 150px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(22,154,46,.22), rgba(12,122,29,.10));
  border: 1.5px solid rgba(178,234,199,.85);
  box-shadow: 0 30px 90px rgba(22,154,46,.16);
}

.hero-art__chair-seat {
  position: absolute;
  left: 22px;
  bottom: 0;
  width: 206px;
  height: 88px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(49,195,61,.16), rgba(12,122,29,.10));
  border: 1.5px solid rgba(178,234,199,.8);
}

.hero-art__chair-arm {
  position: absolute;
  top: 85px;
  width: 62px;
  height: 88px;
  border-radius: 20px;
  background: rgba(22,154,46,.12);
  border: 1.5px solid rgba(178,234,199,.7);
}

.hero-art__chair-arm--left { left: -5px; transform: rotate(-6deg); }
.hero-art__chair-arm--right { right: -5px; transform: rotate(6deg); }

.hero-art__plant {
  position: absolute;
  bottom: 0;
  width: 110px;
  height: 240px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(12,122,29,.08), rgba(12,122,29,.18));
  border: 1.5px solid rgba(178,234,199,.7);
  overflow: hidden;
}

.hero-art__plant--1 { left: 10px; }
.hero-art__plant--2 { left: auto; right: 20px; height: 260px; }

.hero-art__plant::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 190px;
  background: radial-gradient(circle at 30% 20%, rgba(73,195,45,.35), transparent 55%),
              radial-gradient(circle at 70% 40%, rgba(22,154,46,.25), transparent 55%);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-art__leaves { position: absolute; left: 18px; top: 90px; width: 220px; height: 220px; pointer-events: none; }

.leaf-shape {
  position: absolute;
  width: 110px;
  height: 56px;
  border-radius: 80px 80px 80px 0;
  background: rgba(220,252,231,.9);
  border: 1.5px solid rgba(178,234,199,.7);
  box-shadow: 0 22px 70px rgba(22,154,46,.10);
}

.leaf-shape--a { top: 20px; left: 0; transform: rotate(-20deg); }
.leaf-shape--b { top: 70px; left: 60px; transform: rotate(14deg); background: rgba(234,249,232,.8); }
.leaf-shape--c { top: 135px; left: 20px; transform: rotate(-6deg); background: rgba(220,252,231,.75); }

/* Floating info card (white bg) */
.hero-info-card {
  position: absolute;
  right: 60px;
  top: -6px;

  width: 320px;

  background: rgba(255,255,255,.92);
  border: 1.5px solid rgba(217,243,226,.95);
  border-radius: 20px;
  box-shadow: 0 30px 100px rgba(22,154,46,.14);
  padding: 18px;
  backdrop-filter: blur(14px);
  transform: translateZ(0);
  animation: float-card 4.2s ease-in-out infinite;
}


@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(220,252,231,.95);
  border: 1.5px solid rgba(178,234,199,.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.hero-info-card__title {
  font-weight: 950;
  color: var(--green-dark);
  font-size: 1rem;
  margin-bottom: 6px;
}

.hero-info-card__sub {
  color: var(--text-mid);
  font-weight: 650;
  line-height: 1.55;
  font-size: .9rem;
  margin-bottom: 14px;
}

.hero-info-card__cta {
  width: 100%;
  border: none;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 50px rgba(22,154,46,.22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.hero-info-card__cta:hover { transform: translateY(-2px); box-shadow: 0 22px 70px rgba(22,154,46,.26); }


.jobs-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 950;
  color: var(--green-dark);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 10px;
}

.jobs-sub {
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.7;
  max-width: 620px;
}

.jobs-layout {
  max-width: 1100px;
  margin: calc(var(--sp-24) * -1) auto 0; /* hero üzerine taşma */
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--sp-16), 2vw, var(--sp-24));
  align-items: start;
}



.jobs-filters {
  background: rgba(255,255,255,0.72);
  border: 1.5px solid rgba(217, 243, 226, .95);
  border-radius: 28px;
  box-shadow: 0 18px 70px rgba(14, 122, 53, 0.08);
  padding: var(--sp-18);
  backdrop-filter: blur(18px);
  overflow: hidden;
  position: relative;
}

.jobs-filters--floating {
  margin-top: -120px;
  padding: 22px;
}

.filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-12);
  margin-bottom: 16px;
}

.filters-head__hint {
  color: var(--text-mid);
  font-weight: 750;
}

.filters-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1fr 0.7fr;
  gap: 14px;
  align-items: end;
}

.filters-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-12);
}

.filters-actions__left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.filters-actions__right { display: flex; align-items: center; }

.btn-save {
  height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1.5px solid rgba(31, 175, 56, .35);
  background: rgba(220, 252, 231, .35);
  color: var(--green-dark);
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 14px 40px rgba(22,154,46,.10);
}

.btn-save:hover { transform: translateY(-2px); background: rgba(220,252,231,.6); }


.jobs-filters::before {
  content: '';
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(600px 260px at 20% 0%, rgba(31, 175, 56, .14), transparent 55%),
    radial-gradient(520px 240px at 90% 10%, rgba(49, 195, 61, .10), transparent 50%);
  pointer-events: none;
}

.jobs-filters > * {
  position: relative;
}


.filter-block { margin-bottom: var(--sp-16); }

.filter-label {
  display: block;
  font-weight: 950;
  color: var(--text-mid);
  font-size: .86rem;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.filter-block {
  margin-bottom: var(--sp-16);
}

.filter-block:last-child {
  margin-bottom: 0;
}


.filter-input,
.filter-select {
  width: 100%;
  border: 1.5px solid rgba(217, 243, 226, 1);
  background: rgba(255,255,255,0.98);
  padding: 12px 14px;
  border-radius: 16px;
  font-family: inherit;
  font-weight: 850;
  outline: none;
  color: var(--text-dark);
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}

.filter-input::placeholder { color: rgba(75, 92, 82, .55); }

.filter-input:hover,
.filter-select:hover {
  border-color: rgba(31, 175, 56, .55);
}


.filter-input:focus,
.filter-select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 4px rgba(31, 175, 56, .12);
}

.filter-grid { display: grid; }

/* Yeni layout’ta eski filter-actions / filter-grid artık kullanılmıyor ama çakışma olmasın */
.filter-actions { display: none; }

#jobs-apply.btn-primary,
#jobs-reset.btn-ghost {
  height: 46px;
  border-radius: 16px;
  width: auto;
}

#jobs-reset.btn-ghost {
  border-color: rgba(208, 238, 221, 1);
}

.sort-block { grid-column: 1 / -1; }

.jobs-list { min-height: 200px; }

.jobs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  margin: 0 0 var(--sp-16);
  padding: 12px 4px;
}

.jobs-toolbar__count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-weight: 900;
}

.jobs-toolbar__count-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-main);
  box-shadow: 0 0 0 6px rgba(22,154,46,.12);
}

.jobs-toolbar__toggles {
  display: inline-flex;
  gap: 10px;
  background: rgba(234,249,232,.55);
  border: 1.5px solid rgba(178,234,199,.7);
  border-radius: 999px;
  padding: 6px;
}

.view-toggle {
  border: none;
  background: transparent;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  color: var(--text-mid);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.view-toggle:hover { transform: translateY(-1px); }

.view-toggle--active {
  background: rgba(255,255,255,.9);
  border: 1.5px solid rgba(178,234,199,.85);
  color: var(--green-dark);
  box-shadow: 0 14px 40px rgba(22,154,46,.10);
}

.jobs-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-16);
}


.job-card {
  background: rgba(255,255,255,0.84);
  border: 1.5px solid rgba(217, 243, 226, .98);
  border-radius: 22px;
  padding: var(--sp-18);
  box-shadow: 0 16px 60px rgba(14, 122, 53, 0.06);
  backdrop-filter: blur(18px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}

/* “Yeni” görünümü JS’e dokunmadan: mevcut badge’i yeşil ve konumlanmış hale getir */
.job-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}


.job-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(680px 260px at 10% 0%, rgba(31, 175, 56, .12), transparent 55%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.job-card:hover::after { opacity: 1; }


.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 70px rgba(14, 122, 53, 0.14);
  border-color: rgba(31, 175, 56, .45);
}


.job-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-12);
}

.job-card__company-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.job-company-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(234, 249, 232, .95), rgba(178, 234, 199, .35));
  border: 1.5px solid rgba(178, 234, 199, .8);
  box-shadow: 0 10px 30px rgba(22,154,46,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 980;
  color: var(--green-dark);
  flex-shrink: 0;
  overflow: hidden;
}

.job-company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.job-card__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 950;
  color: var(--green-dark);
  font-size: 1.12rem;
  margin-bottom: 6px;
  line-height: 1.25;
}

.job-card__company {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-weight: 900;
  font-size: .95rem;
  margin-top: 2px;
}


/* overwritten above with more premium layout */


.job-card__badge {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--green-light);
  border: 1.5px solid rgba(178, 234, 199, .95);
  color: var(--green-dark);
  font-weight: 980;
  font-size: .85rem;
  white-space: nowrap;
}


.job-card__mid { margin-top: var(--sp-12); }

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-10);
  margin-bottom: 10px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 16px;
  background: rgba(234, 249, 232, 0.78);
  border: 1.5px solid rgba(178, 234, 199, .55);
  font-weight: 950;
  color: var(--text-mid);
  font-size: .86rem;
  transition: transform .18s ease;
}

.meta-chip:hover { transform: translateY(-1px); }


.job-card__desc {
  color: var(--clr-text-body);
  font-weight: 650;
  line-height: 1.7;
  font-size: .95rem;
}

.job-card__bottom {
  margin-top: var(--sp-16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-12);
}

.job-card__date {
  color: var(--text-muted);
  font-weight: 950;
  font-size: .85rem;
}


/* overwritten above with more premium balance */


.job-card__details {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  padding: 10px 14px;
  border-radius: 16px;
  font-weight: 980;
  box-shadow: 0 14px 40px rgba(22,154,46,.18);
  transition: transform .18s ease, box-shadow .18s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.job-card__details:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 60px rgba(22,154,46,.22);
}

/* =========================
   JOBS PAGE VISUAL REFRESH
========================= */

.jobs-page {
  padding: 0 0 var(--sp-56);
}

.jobs-hero {
  max-width: none;
  width: 100%;
  height: 430px;
  padding: 0 var(--sp-16);
  position: relative;
  background:
    radial-gradient(440px 260px at 5% 25%, rgba(178, 234, 199, .64), transparent 70%),
    radial-gradient(520px 300px at 88% 18%, rgba(191, 237, 255, .36), transparent 72%),
    linear-gradient(180deg, rgba(241, 252, 240, .98), rgba(250, 255, 249, .88));
  border-top: 1px solid rgba(217, 243, 226, .72);
  overflow: hidden;
}

.jobs-hero::before,
.jobs-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.jobs-hero::before {
  width: 180px;
  height: 180px;
  left: 18px;
  top: 64px;
  background:
    radial-gradient(ellipse at 55% 50%, rgba(73, 195, 45, .76), rgba(22, 154, 46, .22) 54%, transparent 56%);
  border-radius: 80% 20% 80% 20%;
  transform: rotate(-28deg);
  filter: drop-shadow(0 18px 26px rgba(22, 154, 46, .16));
  opacity: .65;
}

.jobs-hero::after {
  right: 20px;
  bottom: -28px;
  width: 170px;
  height: 170px;
  background:
    radial-gradient(ellipse at 55% 50%, rgba(73, 195, 45, .7), rgba(22, 154, 46, .18) 56%, transparent 58%);
  border-radius: 80% 20% 80% 20%;
  transform: rotate(36deg);
  opacity: .7;
}

.jobs-hero__inner {
  max-width: 1260px;
  height: 100%;
  margin: 0 auto;
  grid-template-columns: minmax(420px, .9fr) minmax(540px, 1.1fr);
  gap: clamp(28px, 4vw, 70px);
  padding: 48px 0 0;
  position: relative;
  z-index: 1;
}

.jobs-hero__left {
  padding-right: 0;
  padding-top: 10px;
}

.jobs-hero__badge {
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(245, 255, 246, .78);
  border-color: rgba(178, 234, 199, .95);
  box-shadow: 0 10px 32px rgba(22, 154, 46, .08);
  font-size: .8rem;
  margin-bottom: 18px;
}

.jobs-hero__badge-ico {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  font-size: 1.1rem;
}

.jobs-hero__title {
  max-width: 560px;
  color: #101c2d;
  font-size: clamp(34px, 3.55vw, 50px);
  line-height: 1.08;
  margin-bottom: 14px;
  text-align: left;
}

.jobs-hero__title > span {
  display: block;
  margin-left: 0;
  padding-left: 0;
  text-indent: 0;
}

.jobs-hero__title-line {
  color: #101c2d;
}

.jobs-hero__title .jobs-hero__title-accent {
  display: inline;
  color: #07871f;
}

.jobs-hero__title-accent::after {
  display: none;
}

.jobs-hero__sub {
  max-width: 430px;
  color: #26313f;
  font-size: .94rem;
  line-height: 1.62;
}

.jobs-hero__right {
  min-width: 0;
}

.hero-art {
  height: 388px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  position: relative;
  isolation: isolate;

  /* Sağ taraftaki boşluğu azalt */
  transform: translateX(10px);
}


.hero-art::before {
  content: '';
  position: absolute;
  inset: 16px -26px -10px -62px;
  z-index: -1;
  background:
    radial-gradient(520px 270px at 44% 58%, rgba(255, 255, 255, .9), transparent 72%),
    radial-gradient(380px 220px at 18% 76%, rgba(124, 226, 95, .28), transparent 74%),
    radial-gradient(360px 220px at 76% 24%, rgba(119, 212, 255, .18), transparent 76%);
  filter: blur(14px);
}

.hero-art__scene {
  position: relative;
  width: min(100%, 748px);
  height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(560px 300px at 44% 58%, rgba(255,255,255,.5), transparent 74%),
    radial-gradient(320px 180px at 78% 52%, rgba(237, 255, 239, .62), transparent 70%),
    linear-gradient(180deg, rgba(245, 255, 244, .14), rgba(255,255,255,0));
  box-shadow: none;
  overflow: visible;
}

.hero-art__scene::after {
  content: '';
  position: absolute;
  left: 84px;
  right: 104px;
  bottom: 14px;
  height: 48px;
  background:
    radial-gradient(closest-side, rgba(12, 122, 29, .13), rgba(12, 122, 29, .055) 58%, transparent 100%);
  filter: blur(16px);
  opacity: .78;
  pointer-events: none;
}

.hero-art__image {
  position: absolute;
  right: -54px;
  top: -38px; /* biraz yukarı taşı */
  width: 690px;
  height: 424px;
  background-image: url("assets/jobs-hero-ad.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;

  /* Renkleri canlandır + aynı tonda tut */
  filter:
    saturate(1.18)
    contrast(1.06)
    blur(.12px)
    drop-shadow(0 26px 42px rgba(14, 122, 53, .11));

  /* Kenarlıkla çakışmaması için mask ayarlarını bozma; blend normal kalsın */
  mix-blend-mode: normal;


  /* Kenarlık hissi hiç kalmasın diye mask geçişlerini daha genişlet */
  -webkit-mask-image:
    linear-gradient(90deg,
      transparent 0,
      rgba(0,0,0,.55) 16%,
      #000 30%,
      #000 70%,
      rgba(0,0,0,.55) 84%,
      transparent 100%),
    linear-gradient(180deg,
      rgba(0,0,0,.70) 0,
      #000 20%,
      #000 80%,
      rgba(0,0,0,.55) 92%,
      transparent 100%);

  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg,
      transparent 0,
      rgba(0,0,0,.55) 16%,
      #000 30%,
      #000 70%,
      rgba(0,0,0,.55) 84%,
      transparent 100%),
    linear-gradient(180deg,
      rgba(0,0,0,.70) 0,
      #000 20%,
      #000 80%,
      rgba(0,0,0,.55) 92%,
      transparent 100%);

  mask-composite: intersect;


}


.hero-art__window {
  position: absolute;
  left: 18%;
  top: 20px;
  width: 190px;
  height: 236px;
  border: 1.5px solid rgba(74, 180, 229, .72);
  border-radius: 120px 120px 20px 20px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(74, 180, 229, .28) 50%, transparent 51%),
    linear-gradient(180deg, transparent 45%, rgba(74, 180, 229, .2) 46%, transparent 47%),
    radial-gradient(circle at 70% 18%, #fff 0 14px, transparent 15px),
    linear-gradient(180deg, rgba(192, 237, 255, .74), rgba(223, 249, 233, .62));
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.45), 0 22px 70px rgba(65, 166, 216, .16);
}

.hero-art__window span {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 36px;
  height: 72px;
  background:
    linear-gradient(90deg, rgba(74, 180, 229, .14) 10px, transparent 10px 26px, rgba(74, 180, 229, .14) 26px 38px, transparent 38px),
    linear-gradient(180deg, transparent 12px, rgba(12, 122, 29, .1) 13px);
  border-radius: 16px 16px 0 0;
}

.hero-art__chair {
  position: absolute;
  left: 50%;
  top: 44%;

  width: 360px;
  height: 330px;

  z-index: 3;
  display: block;
}

.hero-art__chair {
/* boşluğa tamamen sığdır */
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  /* Konumu bozmasın diye transform/konum ayarı bu blokta yapılmıyor */
  filter: blur(.15px) drop-shadow(0 22px 30px rgba(14, 122, 53, .16));


}




.hero-art__chair-back {
  left: 82px;
  top: 0;
  width: 154px;
  height: 184px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(180deg, #70dd37, #10a329 68%, #0b7b1e);
  border: 1px solid rgba(12, 122, 29, .38);
  box-shadow: inset 0 -18px 36px rgba(12, 122, 29, .2), 0 22px 44px rgba(12, 122, 29, .22);
}

.hero-art__chair-back::before {
  content: '';
  position: absolute;
  inset: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(12, 122, 29, .2);
  box-shadow:
    44px 0 0 -43px rgba(12, 122, 29, .22),
    0 55px 0 -54px rgba(12, 122, 29, .22);
}

.hero-art__chair-seat {
  left: 52px;
  bottom: 72px;
  width: 220px;
  height: 74px;
  border-radius: 26px 26px 20px 20px;
  background: linear-gradient(180deg, #6ee039, #159f2c 70%, #087719);
  border: 1px solid rgba(12, 122, 29, .36);
  box-shadow: 0 18px 28px rgba(12, 122, 29, .2);
}

.hero-art__chair-arm {
  top: 106px;
  width: 84px;
  height: 16px;
  border-radius: 999px;
  background: #263031;
  border: 0;
  box-shadow: 0 20px 0 -8px rgba(38, 48, 49, .92);
}

.hero-art__chair-arm--left {
  left: 16px;
  transform: rotate(0deg);
}

.hero-art__chair-arm--right {
  right: 10px;
  transform: rotate(0deg);
}

.hero-art__chair-base {
  position: absolute;
  left: 146px;
  bottom: 22px;
  width: 18px;
  height: 78px;
  border-radius: 999px;
  background: #172324;
}

.hero-art__chair-base::before,
.hero-art__chair-base::after,
.hero-art__chair-wheels::before,
.hero-art__chair-wheels::after {
  content: '';
  position: absolute;
  bottom: -12px;
  width: 86px;
  height: 11px;
  border-radius: 999px;
  background: #172324;
}

.hero-art__chair-base::before {
  right: -6px;
  transform: rotate(18deg);
  transform-origin: right center;
}

.hero-art__chair-base::after {
  left: -6px;
  transform: rotate(-18deg);
  transform-origin: left center;
}

.hero-art__chair-wheels {
  position: absolute;
  left: 72px;
  right: 64px;
  bottom: 2px;
  height: 24px;
  border-radius: 999px;
}

.hero-art__chair-wheels::before,
.hero-art__chair-wheels::after {
  width: 16px;
  height: 16px;
  bottom: 0;
  border-radius: 50%;
}

.hero-art__chair-wheels::before { left: 0; }
.hero-art__chair-wheels::after { right: 0; }

.hero-art__sign {
  position: absolute;
  right: 180px;
  top: 168px;
  z-index: 4;
  width: 122px;
  height: 82px;
  border-radius: 10px;
  background: #fbfff5;
  border: 1.5px solid rgba(74, 58, 38, .3);
  color: #0b8a21;
  display: grid;
  place-items: center;
  align-content: center;
  font-family: var(--font-display);
  font-weight: 950;
  font-size: 1.35rem;
  line-height: .9;
  transform: rotate(-8deg);
  box-shadow: 0 12px 24px rgba(12, 122, 29, .13);


}




.hero-art__sign::before,
.hero-art__sign::after {
  content: '';
  position: absolute;
  top: -34px;
  width: 1.5px;
  height: 42px;
  background: #3f3022;
}

.hero-art__sign::before { left: 24px; transform: rotate(-8deg); }
.hero-art__sign::after { right: 24px; transform: rotate(8deg); }

.hero-art__sign strong {
  font-size: 1rem;
}

.hero-art__plant {
  bottom: 20px;
  width: 130px;
  height: 178px;
  border: 0;
  background: transparent;
  overflow: visible;
  z-index: 2;
}

.hero-art__plant--1 {
  left: 52px;
}

.hero-art__plant--2 {
  right: 50px;
  height: 190px;
}


.hero-art__plant::before {
  display: none;
}

.hero-art__plant::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 34px;
  border-radius: 0 0 18px 18px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(178, 234, 199, .7);
}

.hero-art__leaves {
  display: none;
}

.leaf-shape {
  width: 76px;
  height: 36px;
  border: 0;
  background: linear-gradient(135deg, #a8ef50, #1aae2e);
  box-shadow: 0 14px 24px rgba(22,154,46,.14);
}

.leaf-shape--a { top: 58px; left: 4%; }
.leaf-shape--b { top: 18px; left: 42%; }
.leaf-shape--c { top: 108px; right: 8%; left: auto; }

.hero-info-card {
  right: 0;
  top: 92px;
  width: 222px;
  min-height: 230px;
  border-radius: 18px;
  padding: 22px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(217, 243, 226, .88);
  box-shadow: 0 20px 58px rgba(12, 122, 29, .11);
  animation: none;
}

.hero-info-card__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  font-size: 1.8rem;
  background: rgba(238, 255, 239, .86);
  border-color: rgba(31, 175, 56, .32);
}

.hero-info-card__title {
  color: #111827;
  font-size: 1.02rem;
  line-height: 1.45;
  margin-bottom: 18px;
}

.hero-info-card__sub {
  display: none;
}

.hero-info-card__cta {
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: .95rem;
}

.jobs-layout {
  max-width: 1180px;
  margin: -48px auto 0;
  padding: 0 var(--sp-16);
}

.jobs-filters {
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(226, 232, 240, .8);
  box-shadow: 0 20px 52px rgba(15, 23, 42, .08);
  backdrop-filter: blur(16px);
}

.jobs-filters--floating {
  margin-top: 0;
  padding: 28px 30px;
}

.jobs-filters::before {
  display: none;
}

.filters-grid {
  grid-template-columns: 1.35fr 1.05fr 1.05fr 1.05fr 1fr;
  gap: 28px;
}

.filter-block {
  margin-bottom: 0;
}

.filter-label {
  color: #30343b;
  font-size: .9rem;
  margin-bottom: 12px;
}

.filter-input-wrap {
  position: relative;
}

.filter-input,
.filter-select {
  height: 50px;
  border-radius: 8px;
  border: 1px solid #dce3e8;
  background: #fff;
  color: #1f2937;
  font-weight: 760;
  padding: 0 16px;
  box-shadow: none;
  line-height: 50px;
}

/* Anahtar kelime input satır yüksekliği/dikey hizalama (butonlarla aynı hizaya sabitle) */
.filter-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
}

.filter-input {
  height: 50px;
  line-height: 50px;
  padding-top: 0;
  padding-bottom: 0;
}

.filter-select {
  height: 50px;
  line-height: 50px;
  padding-top: 0;
  padding-bottom: 0;
}

.filter-input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  margin: 0;
}

.filter-block--kw .filter-input {
  padding: 0 16px;
}


.filter-input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #26313f;
  font-size: 1.35rem;
  line-height: 1;
}

.filters-actions {
  margin-top: 18px;
}

.filters-actions__left {
  gap: 14px;
  display: flex;
  align-items: stretch;
}

#jobs-apply.btn-primary,
#jobs-reset.btn-ghost,
.btn-save {
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  vertical-align: middle;
}


.jobs-filter-btn-ico {
  width: 22px;
  height: 22px;
  object-fit: cover;
  display: block;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
  margin: 0;
  mix-blend-mode: multiply;
}

#jobs-apply.btn-primary {
  min-width: 132px;
  background: linear-gradient(135deg, #04a520, #13c22f);
  box-shadow: 0 12px 26px rgba(22,154,46,.2);
}

#jobs-reset.btn-ghost,
.btn-save {
  min-width: 128px;
  color: #374151;
  background: #fff !important;
  border: 1px solid #dce3e8 !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

.btn-save {
  min-width: 176px;
}

#jobs-apply.btn-primary {
  min-width: 132px;
  background: linear-gradient(135deg, #04a520, #13c22f);
  box-shadow: 0 12px 26px rgba(22,154,46,.2);
}

#jobs-reset.btn-ghost,
.btn-save {
  min-width: 128px;
  color: #374151;
  background: #fff !important;
  border: 1px solid #dce3e8 !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

.btn-save {
  min-width: 176px;
}

.jobs-toolbar {
  padding: 10px 0 0;
  margin: 22px 0 14px;
}

.jobs-toolbar__count {
  gap: 12px;
  color: #1f2937;
}

.jobs-toolbar__count-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #18a631;
  color: #fff;
  box-shadow: 0 0 0 6px rgba(22,154,46,.12);
  font-size: .9rem;
}

.jobs-toolbar__count strong {
  color: #099326;
}

.jobs-toolbar__toggles {
  gap: 0;
  padding: 0;
  border-radius: 9px;
  background: #fff;
  border: 1px solid #dce3e8;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
  overflow: hidden;
}

.view-toggle {
  height: 42px;
  min-width: 88px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.view-toggle--active {
  color: #07871f;
  background: #ecfaef;
  border: 0;
  box-shadow: none;
}

.jobs-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.job-card {
  min-height: 214px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(226, 232, 240, .86);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}

.job-card::after {
  display: none;
}

.job-card__top {
  display: block;
}

.job-card__company-wrap {
  gap: 12px;
  padding-right: 58px;
}

.job-company-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #168a2a;
  background: #fff;
  border: 1px solid #e5edf0;
}

.job-card__company {
  color: #171b22;
  font-size: .94rem;
  font-weight: 920;
}

.job-card__location {
  color: #6b7280;
  font-weight: 650;
  font-size: .82rem;
  margin-top: 4px;
}

.job-card__badge {
  top: 18px;
  right: 18px;
  padding: 5px 8px;
  border-radius: 6px;
  background: #f4fff2;
  border: 1px solid rgba(73, 195, 45, .56);
  color: #15a424;
  font-size: .78rem;
}

.job-card__title-row {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.job-card__title {
  color: #111827;
  font-size: 1.05rem;
  margin: 0;
}

.job-card__save {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #374151;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.job-card__mid {
  margin-top: 10px;
}

.job-card__meta {
  gap: 8px;
  margin-bottom: 14px;
}

.meta-chip {
  padding: 7px 13px;
  border-radius: 999px;
  background: #eaf8ed;
  border: 0;
  color: #0e6f20;
  font-size: .8rem;
  font-weight: 760;
}

.job-card__desc {
  display: none;
}

.job-card__bottom {
  margin-top: 0;
  padding-top: 13px;
  border-top: 1px solid #edf1f3;
}

.job-card__date {
  color: #4b5563;
  font-weight: 700;
  font-size: .82rem;
}

.job-card__details {
  color: #07871f;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: .82rem;
}

.job-card__details:hover {
  box-shadow: none;
}

.jobs-cards.jobs-cards--list {
  grid-template-columns: 1fr;
}

.jobs-cards--list .job-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: center;
  gap: 20px;
}

.jobs-cards--list .job-card__title-row,
.jobs-cards--list .job-card__mid,
.jobs-cards--list .job-card__bottom {
  margin-top: 0;
}

.jobs-cards--list .job-card__bottom {
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 760px) {
  .jobs-cards--list .job-card {
    grid-template-columns: 1fr;
  }
}


.jobs-empty {
  display: flex;
  margin-top: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--sp-24);
  border-radius: 22px;
  border: 1.5px dashed rgba(76, 175, 80, .25);
  background: rgba(234, 249, 232, .35);
}

.jobs-empty__icon { font-size: 2rem; }
.jobs-empty__text h3 { color: var(--green-dark); font-weight: 950; }
.jobs-empty__text p { color: var(--text-mid); font-weight: 650; text-align: center; }

.job-detail-page {
  padding: var(--sp-56) var(--sp-16) var(--sp-56);
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

.job-detail-hero { margin-top: var(--sp-10); }

.job-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-dark);
  font-weight: 950;
  margin-bottom: var(--sp-16);
}

.job-detail-card {
  background: rgba(255,255,255,0.78);
  border: 1.5px solid rgba(217, 243, 226, .95);
  border-radius: 24px;
  padding: var(--sp-20);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.job-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-12);
}

.job-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(178, 234, 199, .85);
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 950;
  font-size: .85rem;
}

.job-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 980;
  color: var(--green-dark);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  margin-top: 10px;
}

.job-meta {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.meta-row { display: flex; justify-content: space-between; gap: 12px; }
.meta-label { color: var(--text-muted); font-weight: 900; }
.meta-value { color: var(--text-mid); font-weight: 950; text-align: right; }

.job-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-16);
  margin-top: var(--sp-18);
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 980;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.job-description {
  color: var(--clr-text-body);
  font-weight: 650;
  line-height: 1.8;
}

.job-detail-side {
  background: rgba(234, 249, 232, .35);
  border: 1.5px solid rgba(178, 234, 199, .55);
  border-radius: 20px;
  padding: var(--sp-16);
  height: fit-content;
}

.side-item { margin-bottom: var(--sp-12); }
.side-item:last-child { margin-bottom: 0; }
.side-label { color: var(--text-muted); font-weight: 900; font-size: .86rem; margin-bottom: 6px; }
.side-value { color: var(--text-mid); font-weight: 980; }

.job-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  align-items: center;
  justify-content: flex-end;
  margin-top: var(--sp-18);
}

.job-apply-note {
  color: var(--text-mid);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .jobs-hero__title { font-size: 42px; }
  .hero-info-card { width: 300px; right: 52px; top: -8px; }


}


@media (max-width: 900px) {
  .jobs-layout { grid-template-columns: 1fr; margin-top: -40px; }
  .jobs-filters--floating { margin-top: -20px; }
  .jobs-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .job-detail-grid { grid-template-columns: 1fr; }

  /* Başlık bloğu ile şirket/konum bilgisi dar ekranda yan yana sığmıyor,
     ikisi de daralıp iç içe geçmiş görünüyordu; alt alta alınır. */
  .job-detail-head { flex-direction: column; align-items: stretch; }
  .job-meta { min-width: 0; }

  .jobs-hero { height: auto; }
  .jobs-hero__inner { grid-template-columns: 1fr; padding-top: var(--sp-28); }
  .jobs-hero__right { display: block; }
  .hero-art { height: 370px; padding: 0 0 20px; justify-content: center; transform: none; }
  .hero-art::before { inset: 22px -4px 8px; }
  .hero-art__scene {
    width: min(100%, 620px);
    max-width: 620px;
    height: 100%;
    margin: 0 auto;
  }
  .hero-art__image {
    left: 50%;
    right: auto;
    top: -12px;
    width: min(100vw, 560px);
    height: 360px;
    transform: translateX(-50%);
    background-position: center bottom;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.86) 0, #000 8%, #000 84%, rgba(0,0,0,.62) 94%, transparent 100%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.86) 0, #000 8%, #000 84%, rgba(0,0,0,.62) 94%, transparent 100%);
  }
  .hero-info-card { position: relative; right: auto; top: auto; width: auto; margin-top: -20px; }

  .filters-grid { grid-template-columns: 1fr; }
  .filters-actions { flex-direction: column; align-items: stretch; }
  .filters-actions__left { width: 100%; }

  .view-toggle { flex: 1; }
  .jobs-toolbar { align-items: flex-start; flex-direction: column; }

  .job-card__top { align-items: flex-start; }
}

@media (max-width: 600px) {
  .jobs-cards { grid-template-columns: 1fr; }
}





/* =========================
   FEATURED JOB
========================= */

.jobs-featured {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--sp-16);
  animation: fadeUp .55s ease both;
}

.jobs-featured__inner {
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(245, 255, 244, .95));
  border: 1.5px solid rgba(5, 150, 105, .3);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(5, 150, 105, .08), 0 0 0 1px rgba(5, 150, 105, .06);
  position: relative;
  overflow: hidden;
}

.jobs-featured__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(380px 200px at 0% 50%, rgba(5, 150, 105, .06), transparent 70%);
  pointer-events: none;
}

.jobs-featured__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 950;
  font-size: .82rem;
  color: #047857;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(5, 150, 105, .08);
  border-radius: 999px;
}

.jobs-featured__star {
  font-size: .9rem;
}

.jobs-featured__content {
  position: relative;
  z-index: 1;
}

.jobs-featured .job-card {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
  min-height: 0;
}

.jobs-featured .job-card:hover {
  transform: none;
  box-shadow: none;
}

.jobs-featured .job-card__bottom {
  border-top: none;
  padding-top: 0;
}

/* =========================
   SKELETON LOADING
========================= */

.job-skeleton {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(226, 232, 240, .86);
  border-radius: 14px;
  padding: 18px;
  min-height: 214px;
  position: relative;
  overflow: hidden;
}

.job-skeleton::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(226, 232, 240, .4) 50%,
    transparent 100%
  );
  animation: skeletonShimmer 1.5s ease-in-out infinite;
}

@keyframes skeletonShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* =========================
   LOAD MORE / PAGINATION
========================= */

.jobs-load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 20px 0;
  animation: fadeUp .4s ease both;
}

.jobs-load-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 50px;
  padding: 0 36px;
  border-radius: 14px;
  border: 1.5px solid rgba(5, 150, 105, .25);
  background: rgba(255,255,255,.96);
  color: #047857;
  font-weight: 950;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, .04);
}

.jobs-load-more__btn:hover {
  transform: translateY(-2px);
  border-color: #059669;
  box-shadow: 0 12px 28px rgba(5, 150, 105, .12);
}

.jobs-load-more__btn:active {
  transform: translateY(0);
}

.jobs-load-more__spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(5, 150, 105, .2);
  border-top-color: #059669;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

.jobs-load-more__btn.jobs-loading .jobs-load-more__text {
  opacity: .7;
}

.jobs-load-more__btn.jobs-loading .jobs-load-more__spinner {
  display: inline-block;
}

.jobs-load-more__info {
  color: #6b7280;
  font-weight: 700;
  font-size: .85rem;
}

/* =========================
   ENHANCED EMPTY STATE
========================= */

.jobs-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 24px;
  border-radius: 18px;
  border: 1.5px dashed rgba(76, 175, 80, .25);
  background: rgba(234, 249, 232, .35);
  text-align: center;
  animation: fadeUp .4s ease both;
}

.jobs-empty__icon {
  font-size: 2.6rem;
  opacity: .8;
}

.jobs-empty__text h3 {
  color: #065f46;
  font-weight: 950;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.jobs-empty__text p {
  color: #6b7280;
  font-weight: 650;
  font-size: .92rem;
  max-width: 360px;
  margin: 0 auto;
}

/* =========================
   BLOG (Professional)
========================= */

.blog-page {
  padding: 0 var(--sp-16) var(--sp-64);
  position: relative;
  z-index: 10;
}

.blog-hero {
  position: relative;
  margin: 0 calc(var(--sp-16) * -1);
  padding: 0 var(--sp-16);
  background:
    radial-gradient(420px 260px at 10% 20%, rgba(178,234,199,.65), transparent 70%),
    radial-gradient(520px 300px at 90% 10%, rgba(191,237,255,.35), transparent 72%),
    linear-gradient(180deg, rgba(241,252,240,.98), rgba(250,255,249,.88));
  border-top: 1px solid rgba(217,243,226,.72);
  overflow: hidden;
}

.blog-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 0 44px;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(320px, .9fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.blog-hero__left { padding-top: 6px; }

.blog-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245,255,246,.78);
  border: 1.5px solid rgba(178,234,199,.85);
  box-shadow: 0 14px 44px rgba(22,154,46,.08);
}

.blog-hero__badge-ico {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(220,252,231,.85);
  border: 1.5px solid rgba(178,234,199,.7);
}

.blog-hero__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 980;
  color: var(--green-dark);
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.08;
  margin-top: 16px;
  margin-bottom: 14px;
}

.blog-hero__title-accent {
  color: var(--green-main);
}

.blog-hero__sub {
  color: var(--text-mid);
  font-weight: 650;
  line-height: 1.62;
  max-width: 520px;
}

.blog-hero__cta { margin-top: 18px; }

.blog-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  max-width: 560px;
}

.blog-hero__metric {
  background: rgba(255,255,255,.76);
  border: 1.5px solid rgba(217,243,226,.92);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 12px 34px rgba(22,154,46,.08);
}

.blog-hero__metric strong {
  display: block;
  color: var(--green-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 980;
  line-height: 1.1;
}

.blog-hero__metric span {
  display: block;
  margin-top: 5px;
  color: var(--text-mid);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.45;
}

.blog-hero__art {
  height: 260px;
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 10px;
}

.blog-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: .65;
}
.blog-hero__orb--1 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(73,195,45,.34), transparent 60%);
  top: -10px; left: 30px;
}
.blog-hero__orb--2 {
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(22,154,46,.26), transparent 62%);
  right: 10px; top: 50px;
}
.blog-hero__orb--3 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(73,195,45,.22), transparent 62%);
  left: 10px; bottom: 10px;
}

.blog-hero__paper {
  width: min(320px, 100%);
  height: 210px;
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  border: 1.5px solid rgba(217,243,226,.95);
  box-shadow: 0 30px 100px rgba(22,154,46,.14);
  position: relative;
  padding: 18px;
  overflow: hidden;
}

.blog-hero__paper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(240px 120px at 20% 20%, rgba(22,154,46,.20), transparent 60%),
    radial-gradient(220px 120px at 85% 40%, rgba(73,195,45,.16), transparent 60%);
  opacity: .9;
  pointer-events: none;
}

.blog-hero__paper-line {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 10px;
  border-radius: 999px;
  background: rgba(178,234,199,.35);
  top: 76px;
}

.blog-hero__paper-line--short { width: 70%; }
.blog-hero__paper-line--short2 { width: 52%; top: 112px; }

.blog-hero__paper-badge {
  position: absolute;
  bottom: 16px;
  left: 18px;
  font-weight: 980;
  color: var(--green-dark);
  background: rgba(234,249,232,.75);
  border: 1.5px solid rgba(178,234,199,.85);
  padding: 8px 12px;
  border-radius: 14px;
}

.blog-section { margin-top: var(--sp-20); }

.blog-section__head {
  max-width: 1100px;
  margin: 0 auto var(--sp-16);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
}

.blog-section__head h2 {
  margin-top: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.12;
  color: var(--green-dark);
  font-weight: 980;
}

.blog-section__head p {
  max-width: 430px;
  color: var(--text-mid);
  font-weight: 650;
  line-height: 1.65;
  text-align: right;
}

.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-16);
}

.blog-card {
  background: rgba(255,255,255,.84);
  border: 1.5px solid rgba(217,243,226,.95);
  border-radius: 22px;
  padding: 18px 18px;
  box-shadow: 0 16px 60px rgba(14,122,53,.06);
  backdrop-filter: blur(18px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}

.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
}

.blog-card__featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.blog-card__visual {
  min-height: 100%;
}

.blog-card__visual-card {
  height: 100%;
  border-radius: 20px;
  padding: 22px;
  background:
    radial-gradient(280px 180px at 12% 10%, rgba(178,234,199,.8), transparent 56%),
    linear-gradient(180deg, rgba(241,252,240,.92), rgba(255,255,255,.98));
  border: 1.5px solid rgba(217,243,226,.95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.blog-card__visual-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(234,249,232,.92);
  color: var(--green-dark);
  font-weight: 900;
  font-size: .8rem;
  border: 1.5px solid rgba(178,234,199,.9);
  width: fit-content;
}

.blog-card__visual-title {
  margin-top: 14px;
  color: var(--green-dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 980;
  font-size: 1.25rem;
  line-height: 1.25;
  max-width: 260px;
}

.blog-card__visual-list {
  margin-top: 18px;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--text-mid);
  font-weight: 700;
  line-height: 1.55;
  font-size: .92rem;
}

.blog-card__visual-list li::marker {
  color: var(--green-main);
}

.blog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(640px 240px at 10% 0%, rgba(31,175,56,.12), transparent 55%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 70px rgba(14,122,53,.14);
  border-color: rgba(31,175,56,.45);
}
.blog-card:hover::after { opacity: 1; }

.blog-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.blog-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--green-light);
  border: 1.5px solid rgba(178,234,199,.95);
  color: var(--green-dark);
  font-weight: 980;
  font-size: .85rem;
  white-space: nowrap;
}

.blog-card__meta {
  color: var(--text-muted);
  font-weight: 950;
  font-size: .82rem;
}

.blog-card__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 980;
  color: var(--green-dark);
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.blog-card__desc {
  color: var(--clr-text-body);
  font-weight: 650;
  line-height: 1.7;
  font-size: .95rem;
}

.blog-card__bottom {
  margin-top: 14px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  padding: 10px 14px;
  border-radius: 16px;
  font-weight: 980;
  box-shadow: 0 14px 40px rgba(22,154,46,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.blog-card__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 60px rgba(22,154,46,.22);
}

.blog-empty {
  display: none;
}

@media (max-width: 900px) {
  .blog-hero__inner { grid-template-columns: 1fr; padding: 38px 0 30px; }
  .blog-hero__right { display: none; }
  .blog-hero__metrics { grid-template-columns: 1fr; max-width: 100%; }
  .blog-section__head {
    flex-direction: column;
    align-items: start;
  }
  .blog-section__head p { text-align: left; }
  .blog-card--featured {
    grid-template-columns: 1fr;
  }
  .blog-grid { grid-template-columns: 1fr; }
}

/* =========================
   NAVBAR
========================= */


nav,
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 92px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
  position: sticky;
  top: 0;
  z-index: 200;
}

/* İlanlar sayfasında floating filter kutusu navbar’ı görsel olarak itmesin */
#navbar {
  position: sticky;
  top: 0;
  z-index: 300;
}

#navbar nav,
#navbar .nav-links,
#navbar .nav-links a {
  position: relative;
  z-index: 301;
}


.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions__right { display: flex; align-items: center; }
.nav-auth { display: flex; align-items: center; gap: 10px; }

.nav-links a[aria-current="page"] {
  position: relative;
}

.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(90deg, rgba(22,163,74,.0), rgba(22,163,74,1), rgba(22,163,74,.0));
  border-radius: 999px;
}



.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 78px;
  width: 78px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}









.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 600;
  font-size: .9rem;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--green-main);
}

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* NAV TABS
   Rol seçimi artık "Giriş Yap / Üye Ol" sonrası açılan seçim ekranında yapılıyor
   (script.js `openRoleChooser`). Sekmeler her boyutta gizli; kural ve `setUserType`
   geriye dönük uyum için duruyor. */
.nav-tabs {
  display: none;
  background: var(--green-light);
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
  margin-right: 8px;
}

.nav-tab {
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: .8rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 13px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}


.nav-tab.active,
.nav-tab:hover {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 1px 4px rgba(37,163,86,.15);
}

/* BUTTONS */
.btn-ghost {
  background: none;
  border: 1.5px solid #d0eeda;
  font-family: inherit;
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-mid);
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 10px;
  transition: all .2s;
}

.btn-ghost:hover {
  background: var(--green-light);
  color: var(--green-dark);
  border-color: var(--green-main);
}




/* Navbar buton görünürlüğünü garanti et */
#navbar .nav-actions #nav-register-btn,
#navbar .nav-actions .btn-primary,
#navbar .nav-actions .btn-ghost {
  z-index: 300;
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;

  /* Hiza için güvenli reset */
  margin: 0;
  padding: 0; /* buton özelinde override ediliyor */
  line-height: 1;
}


/* Üye Ol butonu da Giriş Yap (btn-ghost) görünümünde ama gradient/box-shadow ile */
#navbar .nav-actions #nav-register-btn {
  background: linear-gradient(135deg, #169A2E, #0C7A1D) !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(37,163,86,.35) !important;

  /* Giriş Yap ile aynı boy + sıkı hizalama */
  height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
}

#navbar .nav-actions #nav-login-btn {
  background: none !important;
  color: var(--text-mid) !important;
  border: 1.5px solid #d0eeda !important;
  box-shadow: none !important;

  /* Üye Ol ile aynı boy + sıkı hizalama */
  height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
}

/* Oturum açılmış kullanıcı menüsü */
.nav-user-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 300;
}

.nav-user-menu__profile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px 0 6px;
  border: 1.5px solid #d9f3e2;
  border-radius: 12px;
  background: var(--green-light, #EAF9E8);
  color: var(--green-dark, #0c7a1d);
  font-weight: 800;
  font-size: .88rem;
  text-decoration: none;
  transition: all .2s;
}

.nav-user-menu__profile:hover {
  background: #EAF9E8;
  border-color: var(--green-main, #169a2e);
}

.nav-user-menu__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #169A2E, #0C7A1D);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex: none;
}

.nav-user-menu__logout {
  height: 40px;
  width: 40px;
  border-radius: 12px;
  border: 1.5px solid #d9f3e2;
  background: #fff;
  color: var(--text-mid, #5b6b66);
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.nav-user-menu__logout:hover {
  background: #fef2f2;
  color: #b42318;
  border-color: #fecdca;
}

/* Kalan ilan/başvuru hakkı rozeti — jeton/kredi teması, marka yeşilinden ayrışsın diye amber */
.nav-credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  border: 1.5px solid #ffe4a3;
  border-radius: 12px;
  background: #fff8e6;
  color: #a3690a;
  font-weight: 800;
  font-size: .88rem;
  white-space: nowrap;
}

.nav-credit-badge__icon {
  font-size: 1rem;
  line-height: 1;
}

.about-cta-btn {
  position: relative;
  overflow: hidden;
  border-radius: 16px !important;
  letter-spacing: .01em;
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  height: 50px;
  min-height: 50px;
  padding: 0 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
  margin: 0;
  margin-top: 0 !important;
  appearance: none;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease;
}

.btn-primary.about-cta-btn {
  background: linear-gradient(135deg, #1aa133, #0d7f22);
  border: 1.5px solid transparent;
  box-shadow:
    0 10px 24px rgba(22, 154, 46, .26),
    0 2px 0 rgba(255, 255, 255, .08) inset;
}

.btn-primary.about-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 30px rgba(22, 154, 46, .32),
    0 2px 0 rgba(255, 255, 255, .12) inset;
}

.btn-ghost.about-cta-btn {
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(10px);
  color: var(--green-dark);
  border-color: rgba(22, 154, 46, .16);
  box-shadow: 0 10px 24px rgba(13, 122, 34, .08);
}

.btn-ghost.about-cta-btn:hover {
  background: rgba(234, 249, 232, .96);
  border-color: rgba(22, 154, 46, .32);
  box-shadow: 0 14px 28px rgba(13, 122, 34, .12);
  transform: translateY(-2px);
}


/* =========================
   HERO SECTION
========================= */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 60px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -120px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background:
  radial-gradient(circle at center,
  rgba(138,226,52,.25) 0%,
  rgba(73,195,45,.18) 35%,
  rgba(12,122,29,.08) 70%,
  transparent 100%);
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
  animation: fadeUp .7s ease both;

  /* Grid item'ın varsayılan min-width:auto değeri, nowrap butonların min-content
     genişliğini kolona dayatıp taşmaya yol açıyor; 0 yaparak küçülmesine izin ver. */
  min-width: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  font-size: .82rem;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1.5px solid #b2eac7;
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--green-dark);
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 48px;
}

.btn-hero,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 1 190px;
  min-height: 58px;
  padding: 0 24px;
  line-height: 1;
  border-radius: 14px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
}

.btn-hero {
  background: linear-gradient(135deg, #169A2E, #0C7A1D);
  color: var(--white);
  border: none;
  box-shadow: 0 6px 24px rgba(37,163,86,.4);
  transition: transform .18s, box-shadow .18s;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,163,86,.45);
}

.btn-outline {
  background: none;
  border: 2px solid #c8ecd4;
  color: var(--green-dark);
}

.play-circle {
  width: 36px;
  height: 36px;
  background: var(--green-light);
  border: 2px solid #b2eac7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: flex;
  gap: 36px;
}

.stat-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--green-dark);
}

.stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* =========================
   HERO RIGHT
========================= */

.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.circle-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;

  background:
  radial-gradient(circle at center,
  #8AE234 0%,
  #49C32D 35%,
  #169A2E 65%,
  #0C7A1D 100%);

  box-shadow: 0 25px 100px rgba(22,154,46,.28);
}

.person-wrap {
  position: relative;
  z-index: 2;
  width: 440px;
  height: 440px;

  /* görseli daire şeklinde kırp */
  border-radius: 50%;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  /* daireyi kaplayacak şekilde */
  object-fit: cover;
  object-position: center;

  transform: translateY(0px);
  pointer-events: none;
  user-select: none;
}



.chip {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .85rem;
  z-index: 3;
}

.chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leaf {
  position: absolute;
  font-size: 2.8rem;
  opacity: .5;
  z-index: 0;
}

.leaf-1 {
  bottom: 20px;
  left: 10px;
  animation: float-left 4.2s ease-in-out infinite;
}

.leaf-2 {
  bottom: 60px;
  right: -6px;
  animation: float-right 4.8s ease-in-out .5s infinite;
}

/* Floating chips positions (right side of circle) */
.chip-top {
  top: 62px;
  left: 428px;
}








.chip-mid {
  top: 190px;
  left: 402px;
}








.chip-bottom {
  bottom: 92px;
  left: 440px;
}









.chip-icon {
  background: var(--green-light);
  color: var(--green-dark);
}

/* =========================
   CHIP ANIMATION (Sadece 3 chip)
========================= */

.chip-anim {
  animation: float 3.6s ease-in-out infinite;
  will-change: transform;
  filter: saturate(1);
}

.chip-anim-1 {
  animation-delay: 0ms;
}

.chip-anim-2 {
  animation-delay: 220ms;
}

.chip-anim-3 {
  animation-delay: 440ms;
}


/* Hafif canlılık: float ile beraber pulse */


.chip-anim::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(230,249,238,.9), rgba(230,249,238,0) 62%);
  opacity: 0;
  pointer-events: none;
  animation: chipPulse 2.8s ease-in-out infinite;
}

.chip-anim-1::after { animation-delay: 0ms; }
.chip-anim-2::after { animation-delay: 240ms; }
.chip-anim-3::after { animation-delay: 480ms; }

@keyframes chipPulse {
  0%, 60% { opacity: 0; transform: scale(.98); }
  70% { opacity: .65; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.02); }
}


.chip-icon.yellow {
  background: #fff4c2;
  color: #8a5a00;
}

.chip-icon.teal {
  background: #d7fff4;
  color: #0b6b5a;
}

.chip-icon.blue {
  background: #dbeafe;
  color: #1d4ed8;
}

/* =========================
   EMPLOYER STRIP
========================= */

.employer-strip {
  background: linear-gradient(135deg, #0d2416 0%, #1a7a3c 100%);
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.employer-strip-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.employer-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(178, 234, 199, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8ffe8;
  font-size: 20px;
}

.employer-strip-text h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #eafff2;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.employer-strip-text p {
  color: rgba(234, 255, 242, .85);
  font-weight: 650;
  line-height: 1.6;
}

.employer-strip-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.employer-strip-actions button {
  border: 1.5px solid rgba(201, 243, 215, .55);
  background: rgba(255, 255, 255, .10);
  color: #eafff2;
  font-family: inherit;
  font-weight: 900;
  padding: 12px 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .18s, background .18s, border-color .18s;
}

.employer-strip-actions button:hover {
  transform: translateY(-2px);
  background: rgba(230, 249, 238, .18);
  border-color: rgba(178, 234, 199, .9);
}


/* =========================
   MODAL
========================= */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,30,18,.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal-overlay.open {
  display: flex;
}

/* Focus ring */
:focus-visible {
  outline: 3px solid rgba(37, 163, 86, .35);
  outline-offset: 2px;
}

.field-error {
  line-height: 1.2;
  max-width: 100%;
}



.modal {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  transform-origin: center;
  animation: slideUp .22s ease-out both;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  transform: none;

  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: #f3fbf6;
  color: var(--text-mid);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37,163,86,.12);
}

.how-modal {
  max-width: 620px;
  padding: 34px;
}

.how-modal__title {
  color: var(--green-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 8px;
}

.how-modal__sub {
  color: var(--text-mid);
  font-weight: 700;
  line-height: 1.55;
  margin: 0 0 20px;
}

.how-modal__steps {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.how-modal__step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1.5px solid #d9f3e2;
  border-radius: 14px;
  background: #fbfffc;
}

.how-modal__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: #fff;
  font-weight: 900;
}

.how-modal__step h3 {
  color: var(--green-dark);
  font-size: .98rem;
  font-weight: 900;
  margin: 0 0 3px;
}

.how-modal__step p {
  color: var(--text-mid);
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.4;
  margin: 0;
}

.how-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 560px) {
  .how-modal {
    padding: 28px 18px 20px;
  }

  .how-modal__actions {
    grid-template-columns: 1fr;
  }
}

.modal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.modal-logo img {
  height: 560px;
  width: 560px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  filter: drop-shadow(0 10px 26px rgba(37, 163, 86, .22));
}














.modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--green-dark);
  background: var(--green-light);
  border: 1.5px solid #b2eac7;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.modal-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.modal-tab {
  flex: 1;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f1fbf5;
  color: var(--text-mid);
  transition: transform .15s, background .15s, color .15s;
}

.modal-tab:hover {
  transform: translateY(-1px);
}

.modal-tab.active {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
}

.panel {
  display: none;
}

.panel.active {
  display: block;
}

.panel h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--green-dark);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.panel .sub {
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-weight: 800;
  color: var(--text-mid);
  font-size: .88rem;
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
select {
  width: 100%;
  border: 1.5px solid #d9f3e2;
  background: #fbfffc;
  padding: 12px 14px;
  border-radius: 12px;
  font-family: inherit;
  outline: none;
  color: var(--text-dark);
  font-weight: 700;
  transition: border-color .15s, box-shadow .15s;
}

input:focus,
select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 4px rgba(37,163,86,.12);
}

/* =========================
   PHONE INPUT (+90)
========================= */

.phone-input {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1.5px solid #d9f3e2;
  border-right: none;
  background: #f1fbf5;
  border-radius: 12px 0 0 12px;
  color: var(--text-mid);
  font-weight: 900;
  white-space: nowrap;
}

.phone-input input[type="tel"] {
  border-radius: 0 12px 12px 0;
}


.forgot {
  margin: 6px 0 18px;
}

.forgot a {
  text-decoration: none;
  color: var(--green-main);
  font-weight: 900;
}

.btn-submit {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  font-family: inherit;
  font-weight: 900;
  padding: 12px 16px;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37,163,86,.25);
  transition: transform .15s, box-shadow .15s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(37,163,86,.35);
}

.btn-social {
  width: 100%;
  border: 1.5px solid #d9f3e2;
  background: #ffffff;
  color: var(--text-mid);
  font-family: inherit;
  font-weight: 900;
  padding: 12px 16px;
  border-radius: 14px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}

.btn-social:hover {
  background: var(--green-light);
  border-color: var(--green-main);
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--text-muted);
  font-weight: 900;
}

.modal-divider::before,
.modal-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: #e7f4ec;
}

.modal-footer {
  color: var(--text-mid);
  font-weight: 700;
  font-size: .92rem;
}

.modal-footer a {
  text-decoration: none;
  color: var(--green-main);
  font-weight: 900;
}

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


/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp {

  from { opacity:0; transform:translateY(28px); }
  to { opacity:1; transform:translateY(0); }
}

@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}





@keyframes slideUp {
  from { opacity:0; transform:translateY(24px); }
  to { opacity:1; transform:translateY(0); }
}

@keyframes float-left {
  0%, 100% {
    transform: translateY(0) rotate(-20deg);
  }

  50% {
    transform: translateY(-10px) rotate(-20deg);
  }
}

@keyframes float-right {
  0%, 100% {
    transform: translateY(0) rotate(14deg);
  }

  50% {
    transform: translateY(-10px) rotate(14deg);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .modal-close {
    top: 12px;
    right: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 40px 5%;
  }

  .hero-right {
    display: none;
  }

  .stats {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .nav-tabs {
    display: none;
  }

  .modal {
    padding: 30px 24px 26px;
    margin: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════
   LAYOUT – PAGE
═══════════════════════════════════════════════════════════ */
body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text-primary);
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
}

.page-wrapper {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-16), 3vw, var(--sp-40));
  align-items: start;
  min-height: 100dvh;
  padding: clamp(var(--sp-24), 4vw, var(--sp-56))
           clamp(var(--sp-16), 4vw, var(--sp-48));
}

/* ═══════════════════════════════════════════════════════════
   BACKGROUND SCENE
═══════════════════════════════════════════════════════════ */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 122, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 122, 53, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .65;
}

.bg-orb--1 {
  width: 700px; height: 700px;
  top: -200px; left: -180px;
  background: radial-gradient(circle, #d4edda 0%, #b2dfb5 60%, transparent 100%);
  animation: orbDrift1 18s ease-in-out infinite alternate;
}

.bg-orb--2 {
  width: 600px; height: 600px;
  bottom: -150px; right: -150px;
  background: radial-gradient(circle, #c8e6c9 0%, #a5d6a7 50%, transparent 100%);
  animation: orbDrift2 22s ease-in-out infinite alternate;
}

.bg-orb--3 {
  width: 400px; height: 400px;
  top: 40%; left: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #e8f5e9 0%, transparent 100%);
  animation: orbDrift3 14s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 80px) scale(1.08); }
}
@keyframes orbDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-50px, -60px) scale(1.06); }
}
@keyframes orbDrift3 {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -50%) scale(1.15); }
}

/* ═══════════════════════════════════════════════════════════
   FLOATING LEAVES
═══════════════════════════════════════════════════════════ */
.leaves {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.leaf { position: absolute; }

.leaf--1 { width: 80px; top: 5%;  left: 3%;  animation: leafFloat1 8s ease-in-out infinite; }
.leaf--2 { width: 55px; top: 15%; right: 5%; animation: leafFloat2 11s ease-in-out infinite; }
.leaf--3 { width: 42px; top: 60%; left: 1%;  animation: leafFloat1 9s ease-in-out infinite reverse; }
.leaf--4 { width: 70px; bottom: 8%; right: 2%; animation: leafFloat2 13s ease-in-out infinite; }
.leaf--5 { width: 36px; top: 35%; left: 50%; animation: leafFloat3 7s ease-in-out infinite; }
.leaf--6 { width: 60px; bottom: 20%; left: 8%; animation: leafFloat1 10s ease-in-out infinite reverse; }

@keyframes leafFloat1 {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-20px) rotate(8deg); }
}
@keyframes leafFloat2 {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50%       { transform: translateY(-28px) rotate(-6deg); }
}
@keyframes leafFloat3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(12deg); }
}

/* =========================
   PREMIUM AUTH (Glass Skin)
========================= */

.auth-skin,
#modal-candidate .auth-skin,
#modal-employer .auth-skin {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(14, 122, 53, 0.10);
  padding: 20px;
  position: relative;
  overflow: hidden;
  animation: fadeIn .25s ease both;
}

#modal-candidate .modal,
#modal-employer .modal {
  background: rgba(255,255,255,.93);
  border-radius: 24px;
}

.auth-skin__brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.auth-skin__logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(22,154,46,.18);
}

.auth-skin__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(234, 249, 232, 0.95);
  border: 1.5px solid rgba(178, 234, 199, 0.85);
  color: var(--green-dark);
  font-weight: 900;
  font-size: .82rem;
  margin-bottom: 6px;
}

.auth-skin__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 950;
  font-size: 1.6rem;
  color: var(--green-dark);
}

.auth-skin__sub {
  margin-top: 6px;
  color: var(--text-mid);
  font-weight: 650;
  line-height: 1.6;
  font-size: .95rem;
}

.auth-label {
  font-weight: 900;
  color: var(--text-mid);
  font-size: .9rem;
  margin-bottom: 8px;
  display: block;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* Password box wrapper for consistent icon alignment */
.password-box {
  position: relative;
}

.password-box .toggle-pw__icon {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Kariyer.net hissi: hover/focus ile ikon canlansın */
.auth-input-wrap--pw:focus-within .toggle-pw__icon,
.password-box:focus-within .toggle-pw__icon {
  transform: translateY(-1px) scale(1.04);
  opacity: 1;
}



.auth-icon {
  /* artık sadece input içinde kullanılmıyor; eski stiller çakışmasın */
  position: static;
  pointer-events: none;
  color: rgba(75,92,82,.9);
  font-size: 1rem;
  margin-right: 10px;
}


.auth-input {
  width: 100%;
  height: 48px;
  border-radius: 16px;
  border: 1.5px solid rgba(217, 243, 226, 1);
  background: rgba(255,255,255,0.96);
  padding: 0 14px;
  font-family: inherit;
  font-weight: 850;
  color: var(--text-dark);
  outline: none;
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}


.auth-input:focus {
  border-color: rgba(31, 175, 56, 0.85);
  box-shadow: 0 0 0 4px rgba(31, 175, 56, 0.14), 0 18px 55px rgba(31, 175, 56, 0.10);
  transform: translateY(-1px);
}

.auth-link {
  text-decoration: none;
  font-weight: 900;
  color: var(--green-main);
  font-size: .82rem;
}

button.auth-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

.auth-link:hover { opacity: .75; }

.auth-remember {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: var(--text-mid);
  font-weight: 850;
  user-select: none;
}

.auth-remember input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-main);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--text-muted);
  font-weight: 900;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: rgba(231, 244, 236, 1);
}

.auth-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

#modal-candidate .btn-social,
#modal-employer .btn-social {
  width: 100%;
}

.btn-submit--green {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border: none;
  border-radius: 16px;
  height: 52px;
  margin-top: 6px;
  width: 100%;
  font-weight: 950;
  letter-spacing: 0.01em;
  box-shadow: 0 20px 60px rgba(22,154,46,.22);
  color: #fff;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-submit--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 80px rgba(22,154,46,.28);
}

.auth-stepper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin: 2px 0 14px;
}

.auth-stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.auth-stepper__dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1.5px solid rgba(178, 234, 199, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  color: var(--text-muted);
}

.auth-stepper__label {
  font-size: .72rem;
  color: var(--text-mid);
  font-weight: 850;
  text-align: center;
}

.auth-skin__body { margin-top: 6px; }

.reg-step { margin-top: 14px; }

.privacy-note--small {
  padding: 14px 14px;
  border-radius: 16px;
  margin-top: 10px;
  background: rgba(76, 175, 80, 0.06);
  border: 1.5px solid rgba(76, 175, 80, 0.18);
}

.privacy-note__icon { margin-right: 10px; }

.auth-consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--text-mid);
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.45;
  user-select: none;
}

.auth-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--green-main);
}

.auth-consent span {
  min-width: 0;
}

.auth-consent a {
  color: var(--green-main);
  font-weight: 900;
  text-decoration: none;
}

.auth-consent a:hover { opacity: .75; }

.auth-consent .field-error {
  grid-column: 2;
}

.terms-viewer {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(8, 59, 18, 0.42);
  backdrop-filter: blur(8px);
}

.terms-viewer.open {
  display: grid;
}

.terms-viewer__panel {
  width: min(440px, 100%);
  height: min(calc(100dvh - 36px), 680px);
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid rgba(178, 234, 199, 0.85);
  box-shadow: 0 28px 90px rgba(8, 59, 18, 0.24);
  display: flex;
  flex-direction: column;
}

.terms-viewer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(217, 243, 226, 0.95);
  background: rgba(247, 248, 245, 0.96);
}

.terms-viewer__title {
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 950;
}

.terms-viewer__close {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(178, 234, 199, 0.9);
  border-radius: 12px;
  background: #fff;
  color: var(--green-dark);
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1;
}

.terms-viewer__close:hover {
  background: var(--green-light);
}

.terms-viewer__frame {
  width: 100%;
  flex: 1;
  border: 0;
  background: #fff;
}

.modal-overlay.register-mode .modal {
  max-width: 440px;
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  padding: 40px;
}

.modal-overlay.register-mode .modal-tag {
  margin-bottom: 10px;
  padding: 7px 12px;
}

.modal-overlay.register-mode .modal-tabs {
  margin-bottom: 10px;
}

.modal-overlay.register-mode .modal-tab {
  padding: 10px 12px;
}

.modal-overlay.register-mode .auth-skin--reg {
  padding: 16px;
}

.modal-overlay.register-mode .auth-stepper {
  gap: 8px;
  margin: 0 0 10px;
}

.modal-overlay.register-mode .auth-stepper__step {
  gap: 5px;
}

.modal-overlay.register-mode .auth-stepper__dot {
  width: 28px;
  height: 28px;
  font-size: .82rem;
}

.modal-overlay.register-mode .auth-stepper__label {
  font-size: .68rem;
}

.modal-overlay.register-mode .auth-skin__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 12px;
  margin-top: 0;
}

.modal-overlay.register-mode .auth-skin--reg .reg-step,
.modal-overlay.register-mode .auth-skin--reg .form-row {
  display: contents;
}

.modal-overlay.register-mode .auth-skin--reg .auth-skin__title,
.modal-overlay.register-mode .auth-skin--reg .auth-skin__sub,
.modal-overlay.register-mode .auth-skin--reg .btn-submit,
.modal-overlay.register-mode .auth-skin--reg .modal-divider,
.modal-overlay.register-mode .auth-skin--reg > .auth-footer,
.modal-overlay.register-mode .auth-skin__body > .btn-social,
.modal-overlay.register-mode .auth-skin__body > .auth-footer {
  grid-column: 1 / -1;
}

.modal-overlay.register-mode .auth-skin--reg .auth-skin__title {
  font-size: 1.34rem;
  line-height: 1.15;
  margin-bottom: 0;
}

.modal-overlay.register-mode .auth-skin--reg .auth-skin__sub {
  margin-top: -4px;
  font-size: .86rem;
  line-height: 1.35;
}

.modal-overlay.register-mode .auth-skin--reg .form-group {
  margin-bottom: 0;
}

.modal-overlay.register-mode .auth-skin--reg .form-group label {
  margin-bottom: 5px;
  font-size: .78rem;
}

.modal-overlay.register-mode .auth-skin--reg input[type="text"],
.modal-overlay.register-mode .auth-skin--reg input[type="email"],
.modal-overlay.register-mode .auth-skin--reg input[type="password"],
.modal-overlay.register-mode .auth-skin--reg input[type="tel"],
.modal-overlay.register-mode .auth-skin--reg input[type="url"],
.modal-overlay.register-mode .auth-skin--reg select {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 11px;
  font-size: .84rem;
}

.modal-overlay.register-mode .auth-skin--reg .phone-prefix {
  padding: 0 11px;
  border-radius: 11px 0 0 11px;
  font-size: .84rem;
}

.modal-overlay.register-mode .auth-skin--reg .phone-input input[type="tel"] {
  border-radius: 0 11px 11px 0;
}

.modal-overlay.register-mode .auth-skin--reg .privacy-note--small {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 9px 12px;
  border-radius: 12px;
}

.modal-overlay.register-mode .auth-skin--reg .privacy-note__icon {
  width: 30px;
  height: 30px;
  margin-right: 0;
}

.modal-overlay.register-mode .auth-skin--reg .privacy-note p {
  font-size: .76rem;
  line-height: 1.35;
}

.modal-overlay.register-mode .auth-skin--reg .btn-submit--green {
  height: 44px;
  margin-top: 0;
}

.modal-overlay.register-mode .auth-skin--reg .modal-divider {
  margin: 0;
}

.modal-overlay.register-mode .auth-skin--reg .btn-social {
  min-height: 42px;
  padding: 9px 12px;
}

.modal-overlay.register-mode .auth-footer--reg {
  margin-top: 0;
  text-align: center;
  font-size: .86rem;
}

@media (max-width: 900px) {
  .modal-overlay.register-mode .modal {
    max-height: calc(100dvh - 32px);
    padding: 30px 24px 26px;
  }

  .modal-overlay.register-mode .auth-skin__body {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   COMPONENTS – AUTH CARD
═══════════════════════════════════════════════════════════════════ */
.auth-card {
  position: relative;
  background: var(--clr-card);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: var(--r-2xl);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-card);
  padding: clamp(var(--sp-28), 4vw, var(--sp-48));
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out);
  animation: cardIn var(--dur-slow) var(--ease-out) both;
}

.auth-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 12px rgba(14, 122, 53, 0.05),
              0 20px 60px rgba(14, 122, 53, 0.12);
}

.login-card   { animation-delay: 0ms; }
.register-card{ animation-delay: 80ms; }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Card glow */
.card-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.22) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  animation: glowPulse 5s ease-in-out infinite;
}

.card-glow--right {
  top: -60px; left: auto; right: -60px;
}

@keyframes glowPulse {
  0%, 100% { opacity: .8; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.15); }
}

/* ═══════════════════════════════════════════════════════════
   COMPONENTS – BRAND / LOGO
═══════════════════════════════════════════════════════════ */
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  margin-bottom: var(--sp-28);
}

.brand__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e8f5e9, #f1f8f1);
  box-shadow: 0 2px 10px rgba(14, 122, 53, 0.18);
}

.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--clr-dark-green);
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════════════
   COMPONENTS – CARD HERO
═══════════════════════════════════════════════════════════ */
.card-hero {
  margin-bottom: var(--sp-24);
  max-width: 340px;
}

.card-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-text-primary);
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-10);
}

.card-hero__title em { font-style: italic; color: var(--clr-dark-green); }

.card-hero__sub {
  font-size: clamp(0.8rem, 1.3vw, 0.9rem);
  color: var(--clr-text-muted);
  line-height: 1.6;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   COMPONENTS – CARD ART
═══════════════════════════════════════════════════════════ */
.card-art {
  position: absolute;
  top: var(--sp-16);
  right: var(--sp-20);
  width: 130px;
  pointer-events: none;
  opacity: .85;
  animation: artFloat 6s ease-in-out infinite;
}

.card-art--reg {
  width: 110px;
  top: var(--sp-24);
  right: var(--sp-16);
}

.seedling-art { width: 100%; height: auto; }

@keyframes artFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════════
   COMPONENTS – STEPPER
═══════════════════════════════════════════════════════════ */
.stepper {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--sp-28);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  flex: 1;
  position: relative;
}

.step__dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--clr-border);
  background: var(--clr-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  transition: all var(--dur-med) var(--ease-out);
  position: relative;
  z-index: 2;
}

.step--active .step__dot {
  background: var(--green-dark);
  border-color: var(--clr-dark-green);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(14, 122, 53, 0.15),
              0 4px 12px rgba(14, 122, 53, 0.30);
}

.step__line {
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 2px;
  background: var(--clr-border);
  z-index: 1;
}

.step--active .step__line {
  background: linear-gradient(90deg, var(--green-dark), var(--clr-border));
}

.step--last .step__line { display: none; }

.step__label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  text-align: center;
  white-space: nowrap;
}

.step--active .step__label {
  color: var(--clr-dark-green);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   COMPONENTS – FORM
═══════════════════════════════════════════════════════════ */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.field-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-body);
  letter-spacing: 0.01em;
}

.field-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot-link {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-dark-green);
  transition: opacity var(--dur-fast);
}

.forgot-link:hover { opacity: .7; }

.field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: var(--sp-14, 0.875rem);
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-muted);
  display: flex;
  pointer-events: none;
  transition: color var(--dur-fast);
}

.field-input {
  width: 100%;
  height: 46px;
  background: var(--clr-input-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 0 var(--sp-16) 0 calc(var(--sp-16) + 28px);
  font-size: 0.875rem;
  color: var(--clr-text-primary);
  transition: border-color var(--dur-fast),
              box-shadow var(--dur-fast),
              background var(--dur-fast);
  box-shadow: var(--shadow-input);
}

.field-input::placeholder { color: #B0C4B5; font-weight: 400; }

.field-input:focus {
  border-color: var(--clr-light-green);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 3px var(--clr-input-focus),
              var(--shadow-input);
}

.field-group:focus-within .field-icon { color: var(--clr-dark-green); }

.toggle-pw {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  color: var(--clr-text-muted);

  background: transparent;
  border: none;

  cursor: pointer;
  z-index: 9999;
  opacity: 1 !important;
  visibility: visible !important;

  transition:
    color 0.3s ease,
    transform 0.3s ease,
    opacity 0.2s ease;
}


/* In case other modal/input styles interfere */
.toggle-pw img,
.toggle-pw__icon {
  display: block;
  pointer-events: none;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* Ensure the icon assets are not stretched/blown away */
.toggle-pw__icon {
  max-width: 100%;
  max-height: 100%;
}

auth-input-wrap--pw .toggle-pw,
.password-box .toggle-pw {
  opacity: 1 !important;
}




.toggle-pw:hover {
  color: var(--green-dark);
}

.toggle-pw:active {
  transform: translateY(-50%) scale(0.96);
}

.auth-input-wrap--pw .auth-input {
  padding-right: 64px;
}


/* ═══════════════════════════════════════════════════════════
   COMPONENTS – PRIMARY BUTTON
═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-10);
  height: 50px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--clr-mid-green) 100%);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: transform var(--dur-med) var(--ease-spring),
              box-shadow var(--dur-med) var(--ease-out),
              background var(--dur-med);
  position: relative;
  overflow: hidden;
  margin-top: var(--sp-4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-med);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.012);
  box-shadow: var(--shadow-btn-h);
  background: linear-gradient(135deg, #0B6A2E 0%, var(--green-dark) 100%);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: var(--shadow-btn);
}

.btn-arrow { display: flex; transition: transform var(--dur-med) var(--ease-spring); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════
   COMPONENTS – DIVIDER
═══════════════════════════════════════════════════════════ */
.divider {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  color: var(--clr-text-muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-border);
}

/* ═══════════════════════════════════════════════════════════
   COMPONENTS – SOCIAL BUTTONS
═══════════════════════════════════════════════════════════ */
.social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  font-weight: 900;
  position: relative;
}


.google-g {


  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-2px);
  margin-right: 6px;
  margin-left: 0;




  background: conic-gradient(
  #EA4335 0% 25%,   /* Kırmızı */
  #4285F4 25% 50%,  /* Sarı */
  #34A853 50% 75%,  /* Yeşil */
  #FBBC05 75% 100%  /* Mavi */
);

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.google-btn{
    display:flex;
    align-items:center;
    gap:12px;

    width:100%;
    height:56px;

    border:1px solid #e5e5e5;
    border-radius:14px;

    background:#fff;

    font-size:15px;
    font-weight:500;

    cursor:pointer;

    transition:0.3s ease;
}

.google-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* GOOGLE ICON */

.google-icon{
    width:20px;
    height:20px;
}


.btn-social:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(14, 122, 53, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14, 122, 53, 0.10);
}

.btn-social:active { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   COMPONENTS – AUTH SWITCH LINK
═══════════════════════════════════════════════════════════ */
.auth-switch {
  text-align: center;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  font-weight: 400;
}

.switch-link {
  color: var(--clr-dark-green);
  font-weight: 600;
  transition: opacity var(--dur-fast);
}

.switch-link:hover { opacity: .75; }

/* ═══════════════════════════════════════════════════════════
   COMPONENTS – FEATURES STRIP (Login card bottom)
═══════════════════════════════════════════════════════════ */
.features-strip {
  display: flex;
  gap: var(--sp-16);
  margin-top: var(--sp-28);
  padding-top: var(--sp-24);
  border-top: 1px solid var(--clr-border);
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-10);
  flex: 1;
  text-align: center;
}

.feature__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.18), rgba(14, 122, 53, 0.08));
  border: 1.5px solid rgba(76, 175, 80, 0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-dark-green);
  box-shadow: 0 0 14px rgba(76, 175, 80, 0.20);
  transition: box-shadow var(--dur-med), transform var(--dur-med) var(--ease-spring);
}

.feature:hover .feature__icon {
  box-shadow: 0 0 22px rgba(76, 175, 80, 0.35);
  transform: scale(1.08);
}

.feature strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-2);
}

.feature span {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   COMPONENTS – PRIVACY NOTE (Register card)
═══════════════════════════════════════════════════════════ */
.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-12);
  margin-top: var(--sp-20);
  padding: var(--sp-14, 0.875rem) var(--sp-16);
  background: rgba(76, 175, 80, 0.07);
  border: 1.5px solid rgba(76, 175, 80, 0.18);
  border-radius: var(--r-md);
}

.privacy-note[hidden] {
  display: none;
}

.privacy-note__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(14, 122, 53, 0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-dark-green);
}

.privacy-note p {
  font-size: 0.78rem;
  color: var(--clr-text-body);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--clr-light-green);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.btn-primary:focus-visible,
.btn-social:focus-visible {
  outline-offset: 4px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – TABLET  (max 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .page-wrapper {
    gap: var(--sp-20);
    padding: var(--sp-24) var(--sp-20);
  }

  .card-art      { width: 90px; }
  .card-art--reg { width: 80px; }

  .social-row { grid-template-columns: 1fr; }

  .features-strip { gap: var(--sp-10); }

  .feature span { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – MOBILE  (max 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .page-wrapper {
    grid-template-columns: 1fr;
    padding: var(--sp-16) var(--sp-16) var(--sp-40);
    gap: var(--sp-20);
    align-items: start;
  }

  .card-art,
  .card-art--reg {
    width: 80px;
    opacity: .45;
  }

  .field-row { grid-template-columns: 1fr; }

  .features-strip { gap: var(--sp-12); }

  .feature {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
  }

  .feature span { display: block; }

  .bg-orb--1 { width: 400px; height: 400px; }
  .bg-orb--2 { width: 350px; height: 350px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – SMALL MOBILE  (max 480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .auth-card {
    padding: var(--sp-24) var(--sp-20);
  }

  .card-art,
  .card-art--reg {
    display: none;
  }

  .social-row { grid-template-columns: 1fr; }

  .step__label { font-size: 0.6rem; }
}

@media (max-width: 600px) {
  .about-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .about-cta-btn {
    width: 100%;
    min-width: 0 !important;
  }
}

/* =========================
   HOW IT WORKS (Home)
========================= */

.how-it-works {
  padding: var(--sp-40) 5%;
  position: relative;
  z-index: 10;
}

.how-it-works__inner {
  max-width: 1150px;
  margin: 0 auto;
}

.how-it-works__head {
  margin-bottom: var(--sp-24);
  animation: fadeUp .6s ease both;
}

.how-it-works__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 980;
  color: var(--green-dark);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  margin-top: 10px;
}

.how-it-works__sub {
  color: var(--text-mid);
  font-weight: 650;
  line-height: 1.7;
  max-width: 640px;
  margin-top: 10px;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(var(--sp-16), 3vw, var(--sp-28));
  align-items: start;
}

.how-it-works__video-wrap {
  display: grid;
  gap: var(--sp-18);
}

.how-it-works__video-trigger {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.how-it-works__video-thumbnail {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.6);
  border: 1.5px solid rgba(217,243,226,.9);
  box-shadow: 0 24px 80px rgba(14,122,53,.10);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.how-it-works__video-trigger:hover .how-it-works__video-thumbnail {
  transform: translateY(-3px);
  box-shadow: 0 30px 110px rgba(14,122,53,.16);
  border-color: rgba(31,175,56,.4);
}

.how-it-works__thumbnail-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.how-it-works__video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 220px at 30% 35%, rgba(22,154,46,.20), transparent 55%),
              linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.35));
  display: grid;
  place-items: center;
}

.how-it-works__play {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(178,234,199,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 60px rgba(22,154,46,.25);
  transition: transform .18s ease, background .18s ease;
}

.how-it-works__video-trigger:hover .how-it-works__play {
  transform: scale(1.05);
  background: rgba(255,255,255,.20);
}

.how-it-works__play span {
  font-size: 24px;
  color: #fff;
}

.how-it-works__play-text {
  margin-top: 12px;
  font-weight: 950;
  color: #fff;
  font-size: .95rem;
  text-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-14);
}

.how-it-works__step {
  background: rgba(255,255,255,.74);
  border: 1.5px solid rgba(217,243,226,.95);
  border-radius: 18px;
  padding: var(--sp-14);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 60px rgba(14,122,53,.06);
  animation: slideUp .55s ease both;
}

.how-it-works__step:nth-child(1) { animation-delay: 30ms; }
.how-it-works__step:nth-child(2) { animation-delay: 80ms; }
.how-it-works__step:nth-child(3) { animation-delay: 130ms; }
.how-it-works__step:nth-child(4) { animation-delay: 180ms; }

.how-it-works__step-ico {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(234,249,232,.85);
  border: 1.5px solid rgba(178,234,199,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 980;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.how-it-works__step-title {
  font-weight: 950;
  color: var(--green-dark);
  margin-bottom: 6px;
  font-size: 1.0rem;
}

.how-it-works__step-desc {
  color: var(--text-mid);
  font-weight: 650;
  line-height: 1.65;
  font-size: .92rem;
}

.how-it-works__stats {
  animation: fadeUp .7s ease both;
}

.how-it-works__stats-card {
  background: rgba(255,255,255,.78);
  border: 1.5px solid rgba(217,243,226,.95);
  border-radius: 22px;
  padding: var(--sp-18);
  box-shadow: 0 24px 90px rgba(14,122,53,.08);
  backdrop-filter: blur(18px);
}

.how-it-works__stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-14);
  margin-bottom: var(--sp-14);
}

.how-it-works__stats-row:last-child { margin-bottom: 0; }

.how-it-works__anim-hint {
  margin-top: var(--sp-14);
  color: var(--text-muted);
  font-weight: 750;
  font-size: .9rem;
}

.stat {
  background: rgba(234,249,232,.34);
  border: 1.5px solid rgba(178,234,199,.6);
  border-radius: 18px;
  padding: var(--sp-12);
}

.stat__num {
  font-family: 'Nunito', sans-serif;
  font-weight: 980;
  color: var(--green-dark);
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat__label {
  color: var(--text-mid);
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.4;
}

/* Video modal */
#video-modal {
  display: none;
}

#video-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal {
  background: rgba(255,255,255,.95);
  border-radius: 24px;
  width: 100%;
  max-width: 920px;
  padding: 0;
  border: 1.5px solid rgba(217,243,226,.95);
  box-shadow: 0 24px 120px rgba(0,0,0,.25);
  overflow: hidden;
  animation: slideUp .22s ease-out both;
}

.video-modal__close {
  top: 14px;
  right: 14px;
}

.video-modal__close {
  position: absolute;
  z-index: 10;
  background: #f3fbf6;
}

.video-modal__body {
  position: relative;
  padding: var(--sp-16);
}

.video-modal__host {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 22px 70px rgba(0,0,0,.25);
}

.video-modal__host iframe {
  width: 100%;
  height: 100%;
}

.video-modal__host video {
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal__note {
  margin-top: var(--sp-12);
  color: var(--text-mid);
  font-weight: 750;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .how-it-works__grid {
    grid-template-columns: 1fr;
  }

  .how-it-works {
    padding-left: var(--sp-16);
    padding-right: var(--sp-16);
  }

  .how-it-works__steps {
    grid-template-columns: 1fr;
  }

  .video-modal {
    max-width: 720px;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding-top: var(--sp-28);
  }

  .how-it-works__play {
    width: 64px;
    height: 64px;
  }
}

/* =========================
   PROFESSIONAL ENHANCEMENTS
========================= */

/* Loading shimmer animation for buttons */
.btn-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  inset: 20%;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Favorite button animations */
.job-card__save {
  transition: transform 0.2s ease, color 0.2s ease;
}

.job-card__save:hover {
  transform: scale(1.15);
}

.job-card__save:active {
  transform: scale(0.92);
}

/* Toast notification - already handled in script.js */

/* =========================
   RESET BUTTON FLASH ANIMATION
========================= */

.btn-reset-flash {
  animation: resetFlash 0.4s ease;
}

@keyframes resetFlash {
  0% { transform: scale(1); background: #fff; }
  30% { transform: scale(0.95); background: #fef2f2; border-color: #fca5a5 !important; }
  60% { transform: scale(1.03); background: #fef2f2; }
  100% { transform: scale(1); background: #fff; }
}

/* =========================
   PROFESSIONAL CARD ENHANCEMENTS
========================= */

/* Subtle pattern background for empty state */
.jobs-empty {
  transition: all 0.3s ease;
}

.jobs-empty:hover {
  border-color: rgba(76, 175, 80, 0.5);
  background: rgba(234, 249, 232, 0.55);
}

/* Better filter input focus glow */
.filter-input:focus,
.filter-select:focus {
  border-color: #059669;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15), 0 4px 12px rgba(5, 150, 105, 0.08);
  transform: translateY(-1px);
}

/* Premium hover effect for filter buttons */
#jobs-apply.btn-primary {
  position: relative;
  overflow: hidden;
}

#jobs-apply.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

#jobs-apply.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

/* Save button hover enhancement */
.btn-save {
  transition: all 0.25s cubic-bezier(.16,1,.3,1);
}

.btn-save:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(220,252,231,0.8), rgba(220,252,231,0.95)) !important;
  border-color: #059669 !important;
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.15) !important;
}

/* Enhanced card hover */
.job-card {
  transition: all 0.25s cubic-bezier(.16,1,.3,1);
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
  border-color: #059669;
}

/* Card title accent */
.job-card__title {
  transition: color 0.2s ease;
}

.job-card:hover .job-card__title {
  color: #059669;
}

/* Details link hover enhancement */
.job-card__details {
  position: relative;
}

.job-card__details::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #059669;
  transition: width 0.25s ease;
}

.job-card__details:hover::after {
  width: 100%;
}

/* Toolbar count dot pulse */
.jobs-toolbar__count-dot {
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(22,154,46,.12); }
  50% { box-shadow: 0 0 0 10px rgba(22,154,46,.08); }
}

/* View toggle active state enhancement */
.view-toggle--active {
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.12);
}

/* Scrollbar styling for jobs list */
.jobs-cards::-webkit-scrollbar {
  width: 6px;
}

.jobs-cards::-webkit-scrollbar-track {
  background: transparent;
}

.jobs-cards::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}

.jobs-cards::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Meta chip enhancement */
.meta-chip {
  transition: all 0.2s ease;
}

.meta-chip:hover {
  background: #d1fae5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.1);
}

/* ═══════════════════════════════════════════════════════════
   NOTIFICATION BELL & DROPDOWN
═══════════════════════════════════════════════════════════════════ */
.notif-bell-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 310;
}

.notif-bell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(217, 243, 226, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.notif-bell:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 154, 46, 0.10);
  border-color: rgba(31, 175, 56, 0.45);
}

.notif-bell__icon {
  font-size: 1.2rem;
  line-height: 1;
}

.notif-bell__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
  line-height: 1;
}

/* display:flex, hidden özniteliğini eziyor; gizlenme açıkça zorlanıyor */
.notif-dropdown[hidden],
.notif-bell__badge[hidden] {
  display: none !important;
}

/* ─── Dropdown ──────────────────────────────────────────── */
.notif-dropdown {
  position: fixed;
  top: 100px;
  right: calc(5% + 10px);
  width: 380px;
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 130px);
  background: rgba(255, 255, 255, 0.98);
  border: 1.5px solid rgba(217, 243, 226, 0.95);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(14, 122, 53, 0.12);
  backdrop-filter: blur(18px);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: notifSlideIn 0.2s ease both;
}

@keyframes notifSlideIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.notif-dropdown__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(217, 243, 226, 0.85);
  flex-shrink: 0;
}

.notif-dropdown__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 980;
  color: var(--green-dark);
  font-size: 1rem;
}

.notif-dropdown__mark-all {
  background: none;
  border: none;
  color: var(--green-main);
  font-weight: 900;
  font-size: 0.78rem;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.15s;
  padding: 4px 8px;
  border-radius: 8px;
}

.notif-dropdown__mark-all:hover {
  background: rgba(22, 154, 46, 0.08);
}

.notif-dropdown__list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 12px;
}

.notif-dropdown__empty {
  padding: 24px 12px;
  text-align: center;
  color: var(--text-muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.notif-dropdown__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  position: relative;
  margin-bottom: 4px;
}

.notif-dropdown__item:hover {
  background: rgba(234, 249, 232, 0.5);
}

.notif-dropdown__item--unread {
  background: rgba(234, 249, 232, 0.35);
  border: 1px solid rgba(217, 243, 226, 0.7);
}

.notif-dropdown__item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(234, 249, 232, 0.8);
  border: 1px solid rgba(178, 234, 199, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.notif-dropdown__item-body {
  flex: 1;
  min-width: 0;
}

.notif-dropdown__item-title {
  font-weight: 950;
  color: var(--text-dark);
  font-size: 0.85rem;
  margin-bottom: 3px;
}

.notif-dropdown__item-msg {
  color: var(--text-mid);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notif-dropdown__item-time {
  margin-top: 4px;
  color: var(--text-muted);
  font-weight: 800;
  font-size: 0.72rem;
}

.notif-dropdown__item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-main);
  flex-shrink: 0;
  margin-top: 6px;
}

.notif-dropdown__foot {
  padding: 10px 18px 14px;
  border-top: 1px solid rgba(217, 243, 226, 0.85);
  flex-shrink: 0;
}

.notif-dropdown__count {
  color: var(--text-muted);
  font-weight: 900;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 600px) {
  .notif-dropdown {
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    top: 96px;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV – HAMBURGER MENÜ
═══════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid rgba(178, 234, 199, 0.9);
  background: rgba(234, 249, 232, 0.8);
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s ease, box-shadow .15s ease;
  flex-shrink: 0;
}
.nav-hamburger:hover {
  background: rgba(222, 245, 228, 0.95);
  box-shadow: 0 6px 18px rgba(22, 154, 46, 0.12);
}
.nav-hamburger__bar {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--green-dark);
  transition: transform .22s ease, opacity .22s ease;
}
.nav-hamburger.is-active .nav-hamburger__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.is-active .nav-hamburger__bar:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active .nav-hamburger__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 305;
  padding: 12px 5% 22px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1.5px solid rgba(217, 243, 226, 0.95);
  box-shadow: 0 24px 60px rgba(22, 154, 46, 0.12);
}
.mobile-menu.is-open {
  display: block;
  animation: mobileMenuIn .2s ease;
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.mobile-menu__list a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 800;
  font-size: .95rem;
  transition: background .15s ease, color .15s ease;
}
.mobile-menu__list a:hover,
.mobile-menu__list a[aria-current="page"] {
  background: rgba(234, 249, 232, 0.9);
  color: var(--green-dark);
}

/* Oturum girdileri: gezinme bağlantılarından ince bir çizgiyle ayrılır */
.mobile-menu__account {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1.5px solid rgba(217, 243, 226, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mobile-menu__account a {
  flex: 1 1 auto;
}

.nav-credit-badge--mobile {
  height: 34px;
  padding: 0 12px;
  font-size: .82rem;
  flex: none;
}

.mobile-menu__logout button {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 12px;
  background: none;
  font-family: inherit;
  font-weight: 800;
  font-size: .95rem;
  color: #b42318;
  cursor: pointer;
  text-align: left;
  transition: background .15s ease;
}

.mobile-menu__logout button:hover {
  background: #fef2f2;
}

.mobile-menu__logout button:disabled {
  opacity: .6;
  cursor: default;
}

/* Mobil: hamburger görünür, topbar sıkışır */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }

  #navbar .nav-actions #nav-login-btn,
  #navbar .nav-actions #nav-register-btn,
  #navbar .nav-actions .btn-primary {
    height: 38px;
    padding: 0 13px;
    font-size: .82rem;
  }
}

@media (max-width: 600px) {
  nav,
  .navbar {
    padding: 0 16px;
    height: 76px;
  }
  .logo img {
    height: 56px;
    width: 56px;
  }
  .nav-actions { gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════
   HAKKIMIZDA – inline grid'lerin mobil uyumu
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-page [style*="repeat(4"],
  .about-page [style*="repeat(3"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .about-page [style*="repeat(4"],
  .about-page [style*="repeat(3"],
  .about-page [style*="repeat(2"],
  .about-page [style*="1fr 1fr"],
  .about-page [style*="1.2fr"] {
    grid-template-columns: 1fr !important;
  }
  .about-page .about-cta-row {
    flex-wrap: wrap !important;
  }
  .company-profile-page .jobs-cards > .card {
    flex-basis: 100% !important;
    min-width: 0 !important;
  }
}

/* =========================
   AUTH PAGES (şifremi unuttum / şifre sıfırla)
========================= */

.auth-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 16px 96px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border: 1.5px solid var(--clr-border);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}

.auth-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.auth-card__sub {
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.6;
  font-size: .95rem;
  margin-bottom: 22px;
}

.auth-card__result {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: .9rem;
  line-height: 1.5;
}

.auth-card__result--ok {
  background: var(--green-light);
  border: 1.5px solid var(--clr-border);
  color: var(--green-dark);
}

.auth-card__result--error {
  background: #fef2f2;
  border: 1.5px solid #fecdca;
  color: #b42318;
}

.auth-card__footer {
  margin-top: 18px;
  text-align: center;
}

@media (max-width: 600px) {
  .auth-page {
    padding: 32px 14px 64px;
  }
  .auth-card {
    padding: 24px 20px;
    border-radius: 18px;
  }
}

/* =========================
   HERO — DAR TELEFON (≤600px)
   .hero'da overflow:hidden var; taşan içerik kaydırılmaz, kesilir.
   Bu yüzden hiçbir satır viewport'tan geniş olmamalı.
========================= */

@media (max-width: 600px) {

  .hero {
    padding: 32px 20px 40px;
  }

  .hero-title {
    /* 2.4rem taban dar ekranda "geleceği yeşert!" satırını taşırıyordu */
    font-size: clamp(1.85rem, 8.5vw, 3.4rem);
    overflow-wrap: break-word;
  }

  .hero-sub {
    max-width: 100%;
    font-size: .95rem;
    margin-bottom: 28px;
  }

  /* Yan yana iki nowrap buton ~402px istiyor; alt alta al */
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
  }

  .btn-hero,
  .btn-outline {
    flex: 1 1 auto;
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
  }

  /* Üç istatistik + iki ayraç tek satıra sığmıyor */
  .stats {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .stat-item {
    flex: 1 1 auto;
    min-width: 0;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-divider {
    display: none;
  }
}

/* =========================
   İŞVEREN İLAN YÖNETİMİ
========================= */

.job-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--green-light);
  border: 1.5px solid var(--clr-border);
  color: var(--green-dark);
  font-weight: 800;
  font-size: .78rem;
  white-space: nowrap;
}

#employer-jobs-note {
  margin-top: 16px;
}

#employer-jobs-list .card {
  border: 1.5px solid var(--clr-border);
  border-radius: 18px;
  background: var(--white);
}

@media (max-width: 600px) {
  #employer-jobs-list .card > div:first-child {
    flex-direction: column;
  }
  /* Düzenle/Sil butonları dar ekranda tam genişlik */
  #employer-jobs-list .card .btn-ghost {
    flex: 1 1 auto;
  }
}

/* ─── Kontenjan barı (personel doluluğu) ─────────────────────── */
.slot-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(22, 154, 46, 0.10);
  border: 1px solid rgba(22, 154, 46, 0.22);
  overflow: hidden;
  margin-top: 8px;
}

.slot-bar__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-main, #169A2E), var(--green-dark, #0C7A1D));
  transition: width .35s ease;
}

.slot-bar__fill--full {
  background: linear-gradient(90deg, #169A2E, #0C7A1D);
}

.slot-bar__label {
  margin-top: 5px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--text-muted);
}

.slot-bar__label--full {
  color: var(--green-dark);
}

/* ═══════════════════════════════════════════════════════════
   ŞİRKET PROFİLİ ODAKLI — VİTRİN / KURULUM / ŞABLON
═══════════════════════════════════════════════════════════ */

/* ─── Hesabım (Şirket Vitrini) ─────────────────────────── */
.company-home-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px 80px;
  position: relative;
  z-index: 10;
}

.setup-banner {
  background: linear-gradient(135deg, rgba(255, 248, 225, .95), rgba(255, 244, 214, .95));
  border: 1.5px solid rgba(217, 173, 60, .45);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: 0 14px 44px rgba(180, 130, 20, .10);
}

.setup-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.setup-banner__inner h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 950;
  color: #7a4d00;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.setup-banner__inner p {
  color: #8a6120;
  font-weight: 650;
  font-size: .9rem;
  line-height: 1.5;
}

.setup-banner .btn-primary {
  height: 44px;
  padding: 0 22px;
  white-space: nowrap;
}

.company-showcase {
  background: rgba(255,255,255,.86);
  border: 1.5px solid var(--clr-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(14,122,53,.08);
  backdrop-filter: blur(18px);
  animation: fadeUp .5s ease both;
}

.company-showcase--public {
  margin-top: 40px;
}

.company-showcase__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.company-showcase__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.company-showcase__logo {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--green-light), rgba(178,234,199,.5));
  border: 1.5px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green-dark);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(22,154,46,.12);
}

.company-showcase__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.company-showcase__name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.company-showcase__name {
  font-family: 'Nunito', sans-serif;
  font-weight: 980;
  color: var(--green-dark);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15;
}

.company-showcase__sub {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--text-mid);
  font-weight: 800;
}

.company-showcase__dot {
  opacity: .5;
}

.company-showcase__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.company-showcase__actions .btn-ghost,
.company-showcase__actions .btn-primary {
  height: 44px;
  /* Global `.btn-primary { margin-top: var(--sp-4) }` iki butonu 10px kaydırıyor. */
  margin: 0;
  padding: 0 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

/* ─── Doğrulama rozeti ───────────────────────────────── */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6f9ec, #d3f5dd);
  border: 1.5px solid rgba(22,154,46,.35);
  color: var(--green-dark);
  font-weight: 950;
  font-size: .78rem;
  white-space: nowrap;
}

.verified-badge span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-main);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
}

/* ─── İstatistikler ───────────────────────────────────── */
.company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.company-stat {
  background: rgba(234,249,232,.5);
  border: 1.5px solid var(--clr-border);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}

.company-stat__num {
  font-family: 'Nunito', sans-serif;
  font-weight: 980;
  color: var(--green-dark);
  font-size: 1.7rem;
  line-height: 1.1;
}

.company-stat__label {
  margin-top: 6px;
  color: var(--text-mid);
  font-weight: 800;
  font-size: .86rem;
}

/* ─── Detay kartları ──────────────────────────────────── */
.company-showcase__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  margin-top: 24px;
}

.company-showcase__card {
  padding: 20px;
}

.company-showcase__about {
  color: var(--text-mid);
  font-weight: 650;
  line-height: 1.7;
  font-size: .95rem;
  white-space: pre-wrap;
}

.company-facts {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.company-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(234,249,232,.4);
  border: 1px solid var(--clr-border);
}

.company-fact__label {
  color: var(--text-muted);
  font-weight: 800;
  font-size: .8rem;
}

.company-fact__value {
  color: var(--text-dark);
  font-weight: 950;
  font-size: .9rem;
  text-align: right;
  word-break: break-word;
}

.company-fact__value a {
  color: var(--green-main);
  text-decoration: none;
  font-weight: 900;
}

/* ─── Hızlı aksiyonlar ────────────────────────────────── */
.quick-actions {
  display: grid;
  gap: 10px;
}

.quick-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(234,249,232,.35);
  border: 1.5px solid var(--clr-border);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.quick-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(22,154,46,.12);
  border-color: rgba(31,175,56,.4);
}

.quick-action__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  border: 1.5px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.quick-action strong {
  display: block;
  color: var(--green-dark);
  font-weight: 950;
  font-size: .92rem;
}

.quick-action small {
  color: var(--text-mid);
  font-weight: 700;
  font-size: .78rem;
  line-height: 1.4;
}

/* ─── Şablon seçici (İlan Yayınla) ────────────────────── */
.job-templates {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-template-chip {
  border: 1.5px solid var(--clr-border);
  background: rgba(255,255,255,.9);
  color: var(--text-mid);
  font-family: inherit;
  font-weight: 850;
  font-size: .86rem;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s ease;
}

.job-template-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(31,175,56,.5);
  box-shadow: 0 10px 26px rgba(22,154,46,.12);
}

.job-template-chip.is-selected {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 30px rgba(22,154,46,.22);
}

/* ─── Şirket profilinden gelen bilgiler (inline) ──────── */
.profile-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-inline strong {
  font-weight: 900;
}

/* ─── Kurulum modu bilgi kutusu ───────────────────────── */
.setup-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255,248,225,.95), rgba(255,244,214,.95));
  border: 1.5px solid rgba(217,173,60,.45);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 14px 44px rgba(180,130,20,.08);
}

.setup-hero__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(255,255,255,.8);
  border: 1.5px solid rgba(217,173,60,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.setup-hero h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 950;
  color: #7a4d00;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.setup-hero p {
  color: #8a6120;
  font-weight: 650;
  font-size: .9rem;
  line-height: 1.5;
}

#company-save-continue {
  background: linear-gradient(135deg, #0d7a1d, #169a2e);
}

/* Şirket profil sayfasındaki form genişliği */
.company-profile-page .jobs-cards > .card {
  max-width: 100%;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .company-showcase__grid {
    grid-template-columns: 1fr;
  }

  .company-showcase__head {
    flex-direction: column;
  }

  .company-showcase__actions {
    width: 100%;
  }

  .company-showcase__actions .btn-ghost,
  .company-showcase__actions .btn-primary {
    flex: 1 1 auto;
  }
}

@media (max-width: 600px) {
  .company-stats {
    grid-template-columns: 1fr;
  }

  .company-showcase {
    padding: 20px;
  }

  .setup-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-fact {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .company-showcase__brand {
    align-items: flex-start;
  }
}


/* =========================
   KREDİ SATIN ALMA (pages/kredi.html)
========================= */

.credits-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 16px 90px;
  position: relative;
  z-index: 10;
}

.credits-head .jobs-sub {
  max-width: 760px;
  margin-top: 12px;
}

/* Ücretsiz başlangıç şeridi — fiyat kartlarının üstünde durur.
   Marka yeşiliyle dolu bir blok: sayfadaki tek dolu yüzey olduğu için göz
   önce buraya düşer, fiyatlar ancak ondan sonra okunur. */
.credits-free {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  box-shadow: var(--shadow-btn);
  color: var(--white);
}

.credits-free__text {
  flex: 1 1 320px;
}

.credits-free__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.credits-free__text h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 6px;
}

.credits-free__text p {
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, .88);
  max-width: 46ch;
}

.credits-free__grid {
  display: flex;
  gap: 12px;
  flex: 0 1 auto;
}

.credits-free__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .14);
  border: 1.5px solid rgba(255, 255, 255, .22);
}

.credits-free__num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}

.credits-free__label {
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, .85);
}

.credits-free__label strong {
  font-weight: 800;
  color: var(--white);
}

.credits-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.credits-how__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--clr-card);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-2xl);
  padding: 16px 18px;
}

.credits-how__icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.credits-how__item h3 {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.credits-how__item p {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.45;
}

/* Kalan kredi şeridi — navbar rozetiyle aynı amber tema */
.credits-balance {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 12px 18px;
  border: 1.5px solid #ffe4a3;
  border-radius: var(--r-md);
  background: #fff8e6;
  color: #a3690a;
  font-weight: 800;
  font-size: .92rem;
}

.credits-balance__icon {
  font-size: 1.1rem;
  line-height: 1;
}

.credits-tabs {
  display: inline-flex;
  gap: 6px;
  margin-top: 28px;
  padding: 5px;
  border: 1.5px solid var(--clr-border);
  border-radius: 999px;
  background: var(--white);
}

.credits-tab {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 9px 20px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 800;
  color: var(--text-mid);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}

.credits-tab:hover {
  color: var(--green-dark);
}

.credits-tab.is-active {
  background: var(--green-main);
  color: var(--white);
}

.credits-role-note {
  margin-top: 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-mid);
  max-width: 720px;
  line-height: 1.5;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 20px;
  align-items: stretch;
}

.credit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-2xl);
  padding: 26px 20px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.credit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.credit-card--featured {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
}

.credit-card__tag {
  position: absolute;
  top: -11px;
  left: 20px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--green-main);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
}

.credit-card__amount {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}

.credit-card__num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--green-dark);
}

.credit-card__unit {
  font-size: .82rem;
  font-weight: 800;
  color: var(--text-muted);
}

.credit-card__price {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
}

.credit-card__unit-price {
  margin-top: 2px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.credit-card__desc {
  margin-top: 12px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.5;
  flex: 1;
}

/* WhatsApp CTA — marka yeşilinden ayrışsın diye WhatsApp yeşili */
.credit-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: #25D366;
  color: #06331a;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.credit-card__cta:hover {
  background: #1eb655;
  transform: translateY(-1px);
}

.credit-card__cta:focus-visible {
  outline: 3px solid var(--clr-light-green);
  outline-offset: 2px;
}

.credits-cta-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 32px;
  padding: 18px 20px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-2xl);
  background: var(--green-light);
}

.credits-cta-note__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.credits-cta-note h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.credits-cta-note p {
  font-size: .87rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.55;
}

.credits-faq {
  margin-top: 40px;
}

.credits-faq h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.credits-faq details {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  background: var(--white);
  padding: 14px 18px;
  margin-bottom: 10px;
}

.credits-faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: .93rem;
  color: var(--text-dark);
  list-style: none;
}

.credits-faq summary::-webkit-details-marker {
  display: none;
}

.credits-faq summary::after {
  content: '+';
  float: right;
  font-weight: 900;
  color: var(--green-main);
}

.credits-faq details[open] summary::after {
  content: '−';
}

.credits-faq details p {
  margin-top: 10px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.55;
}

/* Kredi rozeti tıklanabilir link olarak da kullanılıyor (kredi.html kısayolu) */
a.nav-credit-badge {
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

a.nav-credit-badge:hover {
  background: #fff1cc;
  border-color: #f5cf78;
}

@media (max-width: 900px) {
  .credits-how {
    grid-template-columns: 1fr;
  }

  /* Dar ekranda metin ve sayılar alt alta; sayı kutuları satırı paylaşmaya
     devam eder, tek başına bir sayı çok geniş görünüyordu. */
  .credits-free {
    padding: 20px 22px;
    gap: 18px;
  }

  .credits-free__grid {
    width: 100%;
  }

  .credits-free__item {
    flex: 1 1 0;
  }
}

@media (max-width: 600px) {
  .credits-page {
    padding: 32px 14px 70px;
  }

  .credits-tabs {
    display: flex;
    width: 100%;
  }

  .credits-tab {
    flex: 1;
    padding: 10px 8px;
    font-size: .85rem;
  }

  .credits-cta-note {
    flex-direction: column;
  }
}

.company-stat__link {
  display: inline-block;
  margin-top: 6px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--green-main);
  text-decoration: none;
}

.company-stat__link:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   ROL SEÇİMİ (mobil) — navbar sekmeleri ≤900px'te gizli olduğu için
   "Giriş Yap / Üye Ol" önce hesap türünü sorar.
═══════════════════════════════════════════════════════════════════ */
.role-choice {
  position: relative;
  max-width: 400px;
  padding: 34px 22px 24px;
}

.role-choice__title {
  margin: 0 0 6px;
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--text-dark);
  padding-right: 42px;
}

.role-choice__desc {
  margin: 0 0 18px;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.role-choice__option {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  margin-bottom: 12px;
  padding: 15px 16px;
  border: 2px solid #e3f2e9;
  border-radius: 16px;
  background: #f8fdfa;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.role-choice__option:last-child {
  margin-bottom: 0;
}

.role-choice__option:hover,
.role-choice__option:focus-visible {
  border-color: var(--green-main);
  background: #f1faf4;
  transform: translateY(-1px);
}

.role-choice__icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(37,163,86,.14);
  font-size: 1.4rem;
}

.role-choice__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.role-choice__text strong {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-dark);
}

.role-choice__text small {
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.3;
}

/* ---------------------------------------------------------------------------
   Dogrulanmamis e-posta uyari seridi (js/auth/verify-banner.js)

   #navbar sticky oldugu icin serit ONUN USTUNE, normal akista duruyor: sayfa
   kaydirilinca yukari gider ve navbar tepeye yapisir. Serit de sticky olsaydi
   ikisi ust uste biner, z-index savasina girerdi.
   --------------------------------------------------------------------------- */
.verify-banner {
  background: linear-gradient(90deg, #7C4A03, #9A5B04);
  color: #FFF7E8;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 14px;
  line-height: 1.45;
}

.verify-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.verify-banner__icon { font-size: 18px; flex: none; }

.verify-banner__text { flex: 1 1 auto; min-width: 0; }
.verify-banner__text strong { color: #fff; }
.verify-banner__text b { color: #fff; font-weight: 600; }

.verify-banner__actions {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verify-banner__btn {
  font: inherit;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #FFF7E8;
  color: #7C4A03;
  text-decoration: none;
  transition: opacity .15s ease;
}

.verify-banner__btn:hover { opacity: .88; }
.verify-banner__btn:disabled { opacity: .6; cursor: default; }

.verify-banner__btn--ghost {
  background: transparent;
  color: #FFF7E8;
  border-color: rgba(255, 247, 232, .55);
}

.verify-banner__close {
  flex: none;
  background: none;
  border: none;
  color: #FFF7E8;
  font-size: 22px;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
  opacity: .75;
}

.verify-banner__close:hover { opacity: 1; }

.verify-banner__result {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px 10px;
  font-size: 13px;
  color: #FFF7E8;
}

.verify-banner__result--error { color: #FFD9D2; }

@media (max-width: 760px) {
  .verify-banner__inner {
    flex-wrap: wrap;
    padding: 10px 14px;
  }

  .verify-banner__text { flex: 1 1 100%; order: 2; }
  .verify-banner__actions { order: 3; flex: 1 1 100%; }
  .verify-banner__btn { flex: 1 1 auto; text-align: center; }
  .verify-banner__close { order: 1; margin-left: auto; }
}
