/* ========================================
   Tts Mobil — Landing Header
   ======================================== */

:root {
  --brand-charcoal: #2f3c44;
  --brand-charcoal-mid: #3a4850;
  --brand-charcoal-soft: #465056;
  --brand-charcoal-deep: #243038;
  --brand-yellow: #efc000;
  --brand-yellow-deep: #d4a800;
  --text-muted: #5c676d;
  --text-on-dark: #ffffff;
  --surface: #ffffff;
  --surface-tint: #f4f6f7;
  --border: rgba(47, 60, 68, 0.1);
  --shadow-header: 0 1px 0 var(--border), 0 10px 30px rgba(47, 60, 68, 0.06);
  --radius-btn: 8px;
  --header-height: 92px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--brand-charcoal);
  background: #ffffff;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body > main {
  flex: 1 0 auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

/* Logo */

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  transition: opacity 0.25s var(--ease);
}

.brand:hover {
  opacity: 0.88;
}

.brand:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 4px;
  border-radius: 6px;
}

.brand__logo {
  display: block;
  height: 64px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

/* Navigation */

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav__item {
  position: relative;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.15rem;
  margin-inline: 0.55rem;
  font-size: 0.9375rem;
  font-weight: 650;
  letter-spacing: 0.015em;
  color: var(--brand-charcoal-soft);
  transition: color 0.28s var(--ease);
}

.nav__icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  color: var(--brand-yellow-deep);
}

.nav__link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.1rem;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-charcoal);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
  color: var(--brand-charcoal);
}

.nav__link:hover::before,
.nav__link:focus-visible::before,
.nav__link.is-active::before {
  transform: translateX(-50%) scaleX(1);
}

.nav__link:focus-visible {
  outline: none;
}

.nav__link:focus-visible::after {
  content: "";
  position: absolute;
  inset: -0.35rem -0.45rem;
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(47, 60, 68, 0.35);
}

/* CTA — charcoal (dominant brand tone) */

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1.4rem 0.65rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  color: var(--text-on-dark);
  background: linear-gradient(
    180deg,
    var(--brand-charcoal-mid) 0%,
    var(--brand-charcoal) 55%,
    var(--brand-charcoal-deep) 100%
  );
  border: 1px solid rgba(36, 48, 56, 0.35);
  border-radius: var(--radius-btn);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 1px 2px rgba(47, 60, 68, 0.14),
    0 8px 18px rgba(47, 60, 68, 0.2);
  transition:
    transform 0.28s var(--ease),
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 42%,
    transparent 68%
  );
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
}

.btn-cta:hover {
  background: linear-gradient(
    180deg,
    #4a5961 0%,
    var(--brand-charcoal-mid) 55%,
    var(--brand-charcoal) 100%
  );
  border-color: rgba(36, 48, 56, 0.45);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 2px 4px rgba(47, 60, 68, 0.16),
    0 12px 24px rgba(47, 60, 68, 0.24);
}

.btn-cta:hover::before {
  transform: translateX(120%);
}

.btn-cta:active {
  transform: translateY(0);
  background: var(--brand-charcoal-deep);
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.35),
    0 1px 2px rgba(43, 43, 43, 0.1);
}

.btn-cta:focus-visible {
  outline: 2px solid var(--brand-charcoal);
  outline-offset: 3px;
}

.btn-cta__icon {
  width: 15px;
  height: 15px;
  opacity: 0.9;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

.btn-cta:hover .btn-cta__icon {
  transform: translateX(3px);
  opacity: 1;
}

/* Mobile toggle */

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-charcoal);
  transition:
    background 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--surface-tint);
  border-color: rgba(43, 43, 43, 0.16);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 2px;
}

.nav-toggle__bars {
  position: relative;
  width: 17px;
  height: 12px;
}

.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s ease, top 0.3s var(--ease);
}

.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; width: 70%; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

/* ---------- Hero Banner ---------- */

.ttsmobil-hero-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(1.5rem, 3vw, 2.25rem) clamp(2rem, 4vw, 3.5rem);
  color: #2a353d;
  background: #ffffff;
}

.ttsmobil-hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.ttsmobil-hero-content {
  padding-top: 0.15rem;
}

.ttsmobil-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: #2a353d;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.ttsmobil-badge__mark {
  width: 1.65rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-deep));
  box-shadow: 0 0 0 3px rgba(239, 192, 0, 0.12);
}

.ttsmobil-hero-title {
  margin-bottom: 1.15rem;
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #2a353d;
}

.ttsmobil-highlight {
  color: var(--brand-yellow);
}

.ttsmobil-hero-description {
  max-width: 34rem;
  margin-bottom: 1.75rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #5c676d;
}

.ttsmobil-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
}

.ttsmobil-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  background-color: #2a353d;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 650;
  box-shadow: 0 4px 15px rgba(42, 53, 61, 0.15);
  transition:
    background-color 0.28s var(--ease),
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.ttsmobil-btn-primary:hover {
  background-color: #1e262c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 53, 61, 0.25);
}

.ttsmobil-btn-primary:focus-visible {
  outline: 2px solid #2a353d;
  outline-offset: 3px;
}

.ttsmobil-btn-arrow {
  display: inline-flex;
  color: var(--brand-yellow);
  transition: transform 0.28s var(--ease);
}

.ttsmobil-btn-primary:hover .ttsmobil-btn-arrow {
  transform: translateX(4px);
}

.ttsmobil-pay-later {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.45rem 1rem 0.45rem 0.7rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(239, 192, 0, 0.55), rgba(42, 53, 61, 0.12)) border-box;
  box-shadow:
    0 1px 2px rgba(42, 53, 61, 0.04),
    0 8px 18px rgba(239, 192, 0, 0.1);
  color: #2a353d;
}

.ttsmobil-pay-later__icon {
  width: 0.72rem;
  height: 0.95rem;
  color: var(--brand-yellow);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 1px rgba(212, 168, 0, 0.35));
}

.ttsmobil-pay-later__text {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.ttsmobil-pay-later__text strong {
  font-weight: 800;
}

.ttsmobil-pay-later__sep {
  display: inline-block;
  width: 1.1rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-deep));
  position: relative;
}

.ttsmobil-pay-later__sep::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 5px;
  height: 5px;
  border-top: 2px solid var(--brand-yellow-deep);
  border-right: 2px solid var(--brand-yellow-deep);
  transform: translateY(-50%) rotate(45deg);
}

.ttsmobil-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ttsmobil-fleet-scene {
  position: relative;
  width: min(100%, 540px);
}

.ttsmobil-fleet-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 28px rgba(42, 53, 61, 0.12));
}

@media (min-width: 992px) {
  .ttsmobil-hero-container {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.25rem;
    align-items: center;
  }

  .ttsmobil-hero-visual {
    justify-content: flex-end;
  }

  .ttsmobil-fleet-scene {
    width: min(100%, 520px);
    transform: scale(0.96);
    transform-origin: right center;
  }
}

@media (max-width: 991px) {
  .ttsmobil-hero-section {
    padding-block: 1.75rem 2.5rem;
    text-align: center;
  }

  .ttsmobil-badge {
    justify-content: center;
  }

  .ttsmobil-hero-description {
    margin-inline: auto;
  }

  .ttsmobil-hero-actions {
    justify-content: center;
  }

  .ttsmobil-fleet-scene {
    width: min(100%, 420px);
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .ttsmobil-hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }

  .ttsmobil-btn-primary {
    justify-content: center;
    width: 100%;
  }

  .ttsmobil-pay-later {
    justify-content: center;
    width: 100%;
  }
}

/* ---------- Features (4'lü) ---------- */

.features-section {
  padding-block: clamp(3rem, 6vw, 4.75rem);
  background:
    linear-gradient(180deg, #f7f8f9 0%, #ffffff 100%);
  border-top: 1px solid rgba(47, 60, 68, 0.06);
}

.features-inner {
  display: flex;
  flex-direction: column;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.35rem 1.25rem 1.4rem;
  border: 1px solid rgba(47, 60, 68, 0.08);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-yellow), transparent 85%);
  opacity: 0.9;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 192, 0, 0.35);
  box-shadow: 0 12px 28px rgba(47, 60, 68, 0.08);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(239, 192, 0, 0.16), rgba(239, 192, 0, 0.05));
  color: var(--brand-charcoal);
}

.feature-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-card__title {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--brand-charcoal);
}

.feature-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }

  .feature-card {
    min-height: 100%;
    padding: 1.45rem 1.2rem 1.5rem;
  }
}

/* ---------- About Strip ---------- */

.about-strip {
  position: relative;
  padding-block: clamp(2.75rem, 5vw, 4rem);
  background:
    radial-gradient(900px 320px at 8% 20%, rgba(239, 192, 0, 0.07), transparent 60%),
    radial-gradient(700px 280px at 92% 80%, rgba(47, 60, 68, 0.035), transparent 55%),
    #ffffff;
  border-top: 1px solid rgba(47, 60, 68, 0.05);
}

.about-strip__inner {
  display: flex;
  justify-content: center;
}

.about-strip__frame {
  position: relative;
  width: min(100%, var(--container));
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.75rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(180deg, #fcfcfd 0%, #ffffff 100%);
  border: 1px solid rgba(47, 60, 68, 0.1);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 40px rgba(47, 60, 68, 0.05);
}

.about-strip__frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--brand-yellow) 20%,
    var(--brand-yellow-deep) 50%,
    var(--brand-yellow) 80%,
    transparent
  );
}

.about-strip__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--brand-yellow);
  border-style: solid;
  opacity: 0.85;
}

.about-strip__corner--tl {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
  border-radius: 3px 0 0 0;
}

.about-strip__corner--tr {
  top: 10px;
  right: 10px;
  border-width: 2px 2px 0 0;
  border-radius: 0 3px 0 0;
}

.about-strip__corner--bl {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 3px;
}

.about-strip__corner--br {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 3px 0;
}

.about-strip__title {
  margin-bottom: 1.15rem;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--brand-charcoal);
  white-space: nowrap;
}

.about-strip__accent {
  color: var(--brand-yellow);
}

.about-strip__text {
  margin-inline: auto;
  max-width: 56rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  .about-strip__title {
    white-space: normal;
    font-size: clamp(1.25rem, 5.5vw, 1.55rem);
  }

  .about-strip__frame {
    padding: 1.6rem 1.15rem 1.7rem;
  }
}

/* ---------- Steps / Başvuru Süreci ---------- */

.steps-section {
  position: relative;
  padding-block: clamp(2.75rem, 5.5vw, 4.25rem);
  background: #ffffff;
  overflow: hidden;
}

.steps-section::before {
  display: none;
}

.steps-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  list-style: none;
  counter-reset: none;
}

.step-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-item__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.step-item__node {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: linear-gradient(160deg, #3a4850 0%, #2a353d 100%);
  color: #fff;
  box-shadow:
    0 0 0 4px rgba(239, 192, 0, 0.12),
    0 8px 18px rgba(42, 53, 61, 0.18);
}

.step-item__node svg {
  width: 1.2rem;
  height: 1.2rem;
}

.step-item__line {
  flex: 1;
  width: 2px;
  min-height: 1.5rem;
  margin-top: 0.45rem;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    var(--brand-yellow) 0%,
    rgba(47, 60, 68, 0.15) 100%
  );
}

.step-item__body {
  position: relative;
  padding: 0.85rem 1rem 1rem;
  border: 1px solid rgba(47, 60, 68, 0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfbfc 0%, #ffffff 100%);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.step-item:hover .step-item__body {
  transform: translateY(-2px);
  border-color: rgba(239, 192, 0, 0.35);
  box-shadow: 0 12px 26px rgba(47, 60, 68, 0.07);
}

.step-item__num {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand-yellow-deep);
}

.step-item__title {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--brand-charcoal);
}

.step-item__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.step-item--final .step-item__node {
  background: linear-gradient(160deg, #f2c84a 0%, var(--brand-yellow) 45%, var(--brand-yellow-deep) 100%);
  color: #2a353d;
  box-shadow:
    0 0 0 4px rgba(239, 192, 0, 0.2),
    0 10px 22px rgba(239, 192, 0, 0.28);
}

.step-item--final .step-item__body {
  border-color: rgba(239, 192, 0, 0.28);
  background:
    linear-gradient(135deg, rgba(239, 192, 0, 0.1), transparent 55%),
    #ffffff;
}

.step-item--final .step-item__title {
  color: #2a353d;
}

@media (min-width: 768px) {
  .steps-section::before {
    display: none;
  }

  .steps-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .step-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding-inline: 0.55rem;
  }

  .step-item__rail {
    position: relative;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    min-height: 3rem;
    margin-bottom: 1rem;
  }

  .step-item__line {
    position: absolute;
    top: 50%;
    left: calc(50% + 1.55rem);
    z-index: 1;
    width: calc(100% - 3.1rem + 1.1rem);
    height: 2px;
    min-height: 0;
    margin: 0;
    transform: translateY(-50%);
    background: linear-gradient(
      90deg,
      var(--brand-yellow) 0%,
      rgba(47, 60, 68, 0.16) 100%
    );
  }

  .step-item:last-child .step-item__line {
    display: none;
  }

  .step-item__body {
    padding: 1.1rem 0.85rem 1.2rem;
  }

  .step-item__num {
    font-size: 0.8rem;
  }
}

@media (min-width: 992px) {
  .steps-track {
    gap: 1.25rem;
  }

  .step-item__body {
    padding: 1.2rem 1rem 1.35rem;
  }

  .step-item__title {
    font-size: 1.08rem;
  }
}

/* ---------- Responsive Header ---------- */

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand__logo {
    height: 52px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions .btn-cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: block;
    padding: 1.15rem 1.25rem 1.4rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 36px rgba(43, 43, 43, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.3s var(--ease),
      transform 0.3s var(--ease),
      visibility 0.3s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav__link {
    margin-inline: 0;
    padding: 0.95rem 0.85rem;
    font-size: 1.02rem;
    border-radius: 8px;
  }

  .nav__link::before {
    display: none;
  }

  .nav__link:hover,
  .nav__link:focus-visible,
  .nav__link.is-active {
    background: var(--surface-tint);
  }

  .nav__link:focus-visible::after {
    display: none;
  }

  .nav__mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 0.85rem;
    min-height: 48px;
  }
}

@media (min-width: 901px) {
  .nav__mobile-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .brand__logo {
    height: 44px;
  }
}

/* ---------- Contact form (about-page içinde) ---------- */

.contact-form__success {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.08);
  color: #0f766e;
  font-size: 0.92rem;
  font-weight: 650;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.15rem;
  max-width: 40rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-field__label {
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--brand-charcoal);
}

.contact-field__optional {
  font-weight: 500;
  color: var(--text-muted);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(47, 60, 68, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-charcoal);
  font: inherit;
  font-size: 0.95rem;
  transition:
    border-color 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(239, 192, 0, 0.65);
  box-shadow: 0 0 0 3px rgba(239, 192, 0, 0.15);
}

.contact-field.has-error input,
.contact-field.has-error textarea {
  border-color: rgba(239, 68, 68, 0.55);
}

.contact-field__error {
  font-size: 0.78rem;
  font-weight: 650;
  color: #dc2626;
}

.contact-form__submit-btn {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font: inherit;
}

.contact-form__submit-btn:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .contact-form__submit-btn {
    width: 100%;
  }
}

/* ---------- About Page ---------- */

.about-page {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  background: #ffffff;
}

.about-page__hero {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.about-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: var(--brand-charcoal);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.about-page__mark {
  width: 1.65rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-deep));
}

.about-page__title {
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--brand-charcoal);
}

.about-page__accent {
  color: var(--brand-yellow);
}

.about-page__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 500;
}

.about-page__content {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.about-block {
  padding: 0 0 1.5rem;
  border: 0;
  border-bottom: 1px solid rgba(47, 60, 68, 0.08);
  border-radius: 0;
  background: transparent;
}

.about-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-block__title {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--brand-charcoal);
}

.about-block__text {
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-block__text:last-child {
  margin-bottom: 0;
}

.about-block__text a,
.about-list a {
  color: var(--brand-charcoal);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(239, 192, 0, 0.55);
  text-underline-offset: 2px;
}

.about-block__text a:hover,
.about-list a:hover {
  text-decoration-color: var(--brand-yellow);
}

.about-list {
  display: grid;
  gap: 0.9rem;
  list-style: none;
}

.about-list li {
  display: grid;
  gap: 0.25rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--brand-yellow);
}

.about-list strong {
  font-size: 0.95rem;
  color: var(--brand-charcoal);
}

.about-list span {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding-block: 0.25rem 0.5rem;
}

.about-value {
  padding: 0 0 0 0.9rem;
  border: 0;
  border-left: 2px solid var(--brand-yellow);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-value__title {
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--brand-charcoal);
}

.about-value__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.about-block--cta {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  background: transparent;
  border-bottom: 0;
}

.about-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.about-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--brand-charcoal-mid), var(--brand-charcoal));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  transition: transform 0.22s var(--ease), filter 0.22s var(--ease);
}

.about-page__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.about-page__btn--ghost {
  background: transparent;
  border: 1px solid rgba(47, 60, 68, 0.18);
  color: var(--brand-charcoal);
}

.about-page__btn--ghost:hover {
  border-color: rgba(239, 192, 0, 0.5);
  filter: none;
}

@media (min-width: 768px) {
  .about-values {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 767px) {
  .about-page__hero {
    text-align: center;
    margin-inline: auto;
  }

  .about-page__eyebrow {
    justify-content: center;
  }

  .about-page__actions {
    justify-content: center;
  }

  .about-page__btn {
    flex: 1 1 auto;
  }
}

/* ---------- FAQ ---------- */

.faq-section {
  padding-block: clamp(2.75rem, 5.5vw, 4.25rem);
  background:
    linear-gradient(180deg, #f7f8f9 0%, #ffffff 100%);
  border-top: 1px solid rgba(47, 60, 68, 0.05);
}

.faq-inner {
  display: grid;
  gap: 1.75rem;
  justify-items: center;
}

.faq-header {
  max-width: 38rem;
  text-align: center;
}

.faq-title {
  margin-bottom: 0.65rem;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-charcoal);
}

.faq-lead {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(100%, 52rem);
}

.faq-item {
  border: 1px solid rgba(47, 60, 68, 0.1);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.faq-item[open] {
  border-color: rgba(239, 192, 0, 0.4);
  box-shadow: 0 10px 24px rgba(47, 60, 68, 0.06);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.98rem;
  font-weight: 750;
  color: var(--brand-charcoal);
  transition: background 0.22s var(--ease);
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::marker {
  content: "";
}

.faq-item__question:hover {
  background: rgba(247, 248, 249, 0.9);
}

.faq-item__icon {
  position: relative;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--brand-charcoal);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.faq-item__icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after {
  background: var(--brand-yellow-deep);
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
  padding: 0 1.15rem 1.1rem;
}

.faq-item__answer p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .faq-list {
    width: 100%;
  }
}

/* ---------- Legal / KVKK ---------- */

.legal-page {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(900px 360px at 8% 0%, rgba(239, 192, 0, 0.06), transparent 55%),
    #ffffff;
}

.legal-page__inner {
  max-width: 52rem;
}

.legal-page__header {
  margin-bottom: 1.75rem;
}

.legal-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  color: var(--brand-charcoal);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.legal-page__mark {
  width: 1.65rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-deep));
}

.legal-page__title {
  margin-bottom: 0.85rem;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--brand-charcoal);
}

.legal-page__accent {
  color: var(--brand-yellow);
}

.legal-page__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal-page__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-block {
  padding: 1.25rem 1.2rem;
  border: 1px solid rgba(47, 60, 68, 0.09);
  border-radius: 12px;
  background: #fff;
}

.legal-block__title {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-charcoal);
}

.legal-block__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal-block__text a {
  color: var(--brand-charcoal);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(239, 192, 0, 0.55);
  text-underline-offset: 2px;
}

.legal-block__text a:hover {
  color: var(--brand-yellow-deep);
}

.legal-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.legal-block--cta {
  border-color: rgba(239, 192, 0, 0.3);
  background: linear-gradient(135deg, rgba(239, 192, 0, 0.08), transparent 55%), #fff;
}

@media (max-width: 767px) {
  .legal-page__header {
    text-align: center;
  }

  .legal-page__eyebrow {
    justify-content: center;
  }
}

/* ---------- Tools & Calculators ---------- */

.tools-page,
.calc-page {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(900px 360px at 8% 0%, rgba(239, 192, 0, 0.06), transparent 55%),
    #ffffff;
}

.tools-page__hero,
.calc-page__inner {
  max-width: 920px;
}

.tools-page__eyebrow,
.calc-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: var(--brand-charcoal);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.tools-page__mark {
  width: 1.65rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-deep));
}

.tools-page__title,
.calc-page__title {
  margin-bottom: 0.75rem;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--brand-charcoal);
}

.tools-page__accent,
.calc-page__accent {
  color: var(--brand-yellow);
}

.tools-page__lead,
.calc-page__lead {
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 2rem;
}

.tool-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.45rem 1.3rem;
  border: 1px solid rgba(47, 60, 68, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, #fcfcfd 0%, #ffffff 100%);
  box-shadow: 0 12px 28px rgba(47, 60, 68, 0.05);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 192, 0, 0.35);
}

.tool-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(239, 192, 0, 0.16), rgba(239, 192, 0, 0.05));
  color: var(--brand-charcoal);
}

.tool-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.tool-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-charcoal);
}

.tool-card__text {
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.tool-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--brand-charcoal-mid), var(--brand-charcoal));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  transition: transform 0.22s var(--ease), filter 0.22s var(--ease);
}

.tool-card__link:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.calc-back {
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.calc-back:hover {
  color: var(--brand-yellow-deep);
}

.calc-page__header {
  margin-bottom: 1.5rem;
}

.calc-app {
  padding: 1.35rem;
  border: 1px solid rgba(47, 60, 68, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(47, 60, 68, 0.05);
}

.calc-app__controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.calc-field__label {
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--brand-charcoal);
}

.calc-field__hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.calc-field input,
.calc-field select {
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(47, 60, 68, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-charcoal);
  font: inherit;
  font-size: 0.95rem;
}

.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: rgba(239, 192, 0, 0.65);
  box-shadow: 0 0 0 3px rgba(239, 192, 0, 0.14);
}

.calc-app__results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.calc-result {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(47, 60, 68, 0.08);
  border-radius: 10px;
  background: #f8f9fa;
}

.calc-result--total {
  border-color: rgba(239, 192, 0, 0.35);
  background: linear-gradient(135deg, rgba(239, 192, 0, 0.14), rgba(239, 192, 0, 0.04));
}

.calc-result__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.calc-result__value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-charcoal);
  letter-spacing: -0.02em;
}

.calc-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-app__controls {
    grid-template-columns: repeat(3, 1fr);
  }

  .calc-app__results {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .tools-page__hero,
  .calc-page__header {
    text-align: center;
  }

  .tools-page__eyebrow {
    justify-content: center;
  }

  .tools-page__lead {
    margin-inline: auto;
  }

  .tool-card__link {
    width: 100%;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  margin-top: auto;
  background: linear-gradient(180deg, #2f3c44 0%, #243038 100%);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.site-footer__logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.site-footer__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.site-footer__tagline {
  max-width: 26rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.site-footer__nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.22s var(--ease);
}

.site-footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #fff;
}

.site-footer__nav a:hover::after,
.site-footer__nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding-block: 1rem 1.15rem;
}

.site-footer__copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.site-footer__mail {
  font-size: 0.86rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.22s var(--ease);
}

.site-footer__bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.site-footer__sitemap {
  font-size: 0.86rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.22s var(--ease);
}

.site-footer__sitemap:hover,
.site-footer__sitemap:focus-visible,
.site-footer__mail:hover,
.site-footer__mail:focus-visible {
  color: var(--brand-yellow);
}

.site-footer__sitemap:focus-visible,
.site-footer__mail:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
    gap: 2rem;
  }

  .site-footer__nav {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .site-footer__brand {
    text-align: center;
  }

  .site-footer__logo {
    margin-inline: auto;
  }

  .site-footer__tagline {
    margin-inline: auto;
  }

  .site-footer__nav {
    justify-content: center;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

/* ---------- Lead Popup ---------- */

body.popup-open {
  overflow: hidden;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lead-popup[hidden] {
  display: none !important;
}

.lead-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 48, 56, 0.55);
  backdrop-filter: blur(4px);
}

.lead-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: min(92vh, 720px);
  overflow: auto;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(36, 48, 56, 0.28);
  outline: none;
  animation: leadPopupIn 0.35s var(--ease);
}

@keyframes leadPopupIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lead-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  line-height: 0;
  border: 1px solid rgba(47, 60, 68, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-charcoal);
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.lead-popup__close svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lead-popup__close:hover {
  background: var(--surface-tint);
  border-color: rgba(47, 60, 68, 0.2);
}

.lead-popup__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.lead-popup__info {
  padding: 1.6rem 1.35rem 1.4rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.lead-popup__title {
  margin-bottom: 0.65rem;
  padding-right: 2rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--brand-charcoal);
}

.lead-popup__subtitle {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.lead-popup__subtitle strong {
  color: var(--brand-yellow-deep);
  font-weight: 800;
}

.lead-popup__benefits {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.lead-popup__benefits li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--brand-charcoal-soft);
  font-weight: 550;
}

.lead-popup__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand-yellow);
}

.lead-popup__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.lead-popup__stat {
  padding: 0.7rem 0.55rem;
  border: 1px solid rgba(47, 60, 68, 0.1);
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.lead-popup__stat strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-charcoal);
}

.lead-popup__stat span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.lead-popup__offer {
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(239, 192, 0, 0.35);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(239, 192, 0, 0.16), rgba(239, 192, 0, 0.05));
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--brand-charcoal);
  font-weight: 650;
}

.lead-popup__offer strong {
  display: inline;
  color: var(--brand-yellow-deep);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lead-popup__form-wrap {
  border-top: 1px solid rgba(47, 60, 68, 0.08);
}

.lead-popup__form-head {
  padding: 0.85rem 1.2rem;
  background: linear-gradient(180deg, var(--brand-charcoal-mid), var(--brand-charcoal));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 750;
  text-align: center;
}

.lead-popup__form {
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem 1.2rem 1.25rem;
}

.lead-popup__field input,
.lead-popup__field select {
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(47, 60, 68, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-charcoal);
  font: inherit;
  font-size: 0.9rem;
}

.lead-popup__field input:focus,
.lead-popup__field select:focus {
  outline: none;
  border-color: rgba(239, 192, 0, 0.65);
  box-shadow: 0 0 0 3px rgba(239, 192, 0, 0.14);
}

.lead-popup__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.lead-popup__consent input {
  margin-top: 0.15rem;
  accent-color: var(--brand-yellow);
}

.lead-popup__consent a {
  color: var(--brand-charcoal);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(239, 192, 0, 0.5);
}

.lead-popup__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 0.15rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #f2c84a 0%, var(--brand-yellow) 55%, var(--brand-yellow-deep) 100%);
  color: var(--brand-charcoal);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(239, 192, 0, 0.28);
  transition: transform 0.22s var(--ease), filter 0.22s var(--ease);
}

.lead-popup__submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.lead-popup__submit:focus-visible {
  outline: 2px solid var(--brand-charcoal);
  outline-offset: 3px;
}

@media (min-width: 820px) {
  .lead-popup__grid {
    grid-template-columns: 1.15fr 0.95fr;
  }

  .lead-popup__info {
    padding: 1.85rem 1.6rem 1.6rem;
  }

  .lead-popup__form-wrap {
    border-top: none;
    border-left: 1px solid rgba(47, 60, 68, 0.08);
  }

  .lead-popup__form-head {
    border-radius: 0 16px 0 0;
  }
}

@media (max-width: 819px) {
  .lead-popup__stats {
    grid-template-columns: 1fr;
  }

  .lead-popup__stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 0.75rem;
    padding-inline: 0.85rem;
  }
}

/* ——— Blog detay (resimsiz, tipografi odaklı) ——— */

.blog-detail {
  --blog-red: #c62828;
  --blog-red-deep: #9b1c1c;
  --blog-ink: #243038;
  --blog-muted: #5c676d;
  --blog-line: rgba(36, 48, 56, 0.1);
  padding-bottom: 4.5rem;
}

.blog-detail__shell {
  max-width: 760px;
  margin-inline: auto;
}

.blog-detail__hero {
  position: relative;
  padding: 2.25rem 0 2.75rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.blog-detail__hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 12% 20%, rgba(239, 192, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 60% at 88% 10%, rgba(198, 40, 40, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f4ee 0%, #f3f6f8 48%, #ffffff 100%);
  pointer-events: none;
}

.blog-detail__hero-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blog-line), transparent);
}

.blog-detail__hero .blog-detail__shell {
  position: relative;
  z-index: 1;
}

.blog-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
  color: var(--blog-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-detail__back:hover {
  color: var(--blog-red);
}

.blog-detail__title {
  margin: 0 0 1.25rem;
  max-width: 18ch;
  color: var(--blog-ink);
  font-size: clamp(2.15rem, 5.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.1rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.blog-detail__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blog-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-detail__meta-icon {
  display: inline-flex;
  color: var(--blog-red);
  opacity: 0.9;
}

.blog-detail__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(198, 40, 40, 0.08);
  color: var(--blog-red-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-detail__lead {
  margin: 0;
  max-width: 42rem;
  color: #3a4850;
  font-size: clamp(1.12rem, 2.2vw, 1.28rem);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.blog-detail__content {
  margin-top: 0.25rem;
  color: #2f3c44;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.blog-detail__content > *:first-child {
  margin-top: 0;
}

.blog-detail__content h2 {
  margin: 2.4rem 0 0.85rem;
  color: var(--blog-red);
  font-size: clamp(1.45rem, 2.6vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.blog-detail__content h3 {
  margin: 1.9rem 0 0.7rem;
  color: var(--blog-red-deep);
  font-size: clamp(1.2rem, 2.1vw, 1.4rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.blog-detail__content h4 {
  margin: 1.5rem 0 0.55rem;
  color: var(--blog-ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.blog-detail__content p {
  margin: 0 0 1.2rem;
}

.blog-detail__content a {
  color: var(--blog-red);
  font-weight: 700;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.blog-detail__content a:hover {
  color: var(--blog-red-deep);
}

.blog-detail__content strong,
.blog-detail__content b {
  color: var(--blog-ink);
  font-weight: 800;
}

.blog-detail__content ul,
.blog-detail__content ol {
  margin: 0 0 1.35rem;
  padding: 0 0 0 0.15rem;
  list-style: none;
}

.blog-detail__content li {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 1.35rem;
}

.blog-detail__content ul > li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.72em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--blog-red);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
  transform: translateY(-50%);
}

.blog-detail__content ol {
  counter-reset: blog-ol;
}

.blog-detail__content ol > li {
  counter-increment: blog-ol;
}

.blog-detail__content ol > li::before {
  content: counter(blog-ol);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.15rem;
  color: var(--blog-red);
  font-size: 0.85em;
  font-weight: 800;
}

.blog-detail__content blockquote {
  margin: 1.75rem 0;
  padding: 1.15rem 1.25rem 1.15rem 1.35rem;
  border: 1px solid var(--blog-line);
  border-left: 4px solid var(--blog-red);
  border-radius: 0 12px 12px 0;
  background: #f4f6f8;
  color: #3a4850;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.65;
}

.blog-detail__content blockquote p:last-child {
  margin-bottom: 0;
}

.blog-detail__content hr {
  margin: 2.25rem 0;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blog-line), transparent);
}

.blog-detail__content code {
  padding: 0.12em 0.4em;
  border-radius: 6px;
  background: #eef1f3;
  font-size: 0.92em;
}

.blog-detail__content pre {
  margin: 1.4rem 0;
  padding: 1rem 1.1rem;
  overflow-x: auto;
  border-radius: 12px;
  background: #243038;
  color: #f3f6f8;
  font-size: 0.9rem;
  line-height: 1.55;
}

.blog-detail__content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.blog-detail__footer {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--blog-line);
}

.blog-detail__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blog-ink);
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.blog-detail__cta:hover {
  color: var(--blog-red);
  gap: 0.55rem;
}

.blog-detail--empty {
  padding-top: 3rem;
}

@media (max-width: 640px) {
  .blog-detail__hero {
    padding: 1.5rem 0 2rem;
  }

  .blog-detail__title {
    max-width: none;
  }

  .blog-detail__meta {
    gap: 0.55rem 0.85rem;
  }
}

/* ——— Kampanyalar ——— */

.campaigns-page {
  padding-bottom: 4.5rem;
}

.campaigns-page__hero {
  padding: 2.5rem 0 1.75rem;
}

.campaigns-page__back {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #5c676d;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.campaigns-page__back:hover {
  color: #c62828;
}

.campaigns-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: #5c676d;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.campaigns-page__mark {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--brand-yellow), var(--brand-yellow-deep));
}

.campaigns-page__title {
  margin: 0 0 0.85rem;
  color: var(--brand-charcoal);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.campaigns-page__accent {
  color: var(--brand-yellow-deep);
}

.campaigns-page__lead {
  margin: 0;
  max-width: 40rem;
  color: #5c676d;
  font-size: 1.05rem;
  line-height: 1.65;
}

.campaigns-stack {
  display: grid;
  gap: 1.35rem;
}

.campaign-comp {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 60, 68, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(36, 48, 56, 0.07);
}

@media (min-width: 900px) {
  .campaign-comp {
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.75fr);
  }
}

.campaign-comp__main {
  display: grid;
  gap: 1.15rem;
  padding: 1.5rem 1.45rem 1.55rem;
}

@media (min-width: 700px) {
  .campaign-comp__main {
    grid-template-columns: 170px minmax(0, 1fr);
    align-items: center;
    padding: 1.65rem 1.7rem;
  }
}

.campaign-comp__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
  border: 1px solid rgba(47, 60, 68, 0.08);
}

.campaign-comp__logo {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 52px;
  height: auto;
  object-fit: contain;
}

.campaign-comp__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.campaign-comp__title {
  margin: 0;
  color: var(--brand-charcoal);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.campaign-comp__text {
  margin: 0;
  color: #5c676d;
  font-size: 0.98rem;
  line-height: 1.65;
}

.campaign-comp__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.campaign-comp__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.05rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #f2c84a 0%, var(--brand-yellow) 55%, var(--brand-yellow-deep) 100%);
  color: var(--brand-charcoal);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(239, 192, 0, 0.25);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.campaign-comp__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.campaign-comp__cta--ghost {
  background: #fff;
  border: 1px solid rgba(47, 60, 68, 0.16);
  box-shadow: none;
}

.campaign-comp__cta--ghost:hover {
  border-color: rgba(47, 60, 68, 0.28);
  filter: none;
}

.campaign-comp__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  padding: 1.35rem 1.35rem 1.4rem;
  background:
    radial-gradient(ellipse 120% 90% at 100% 0%, rgba(239, 192, 0, 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  border-top: 1px solid rgba(47, 60, 68, 0.08);
  color: var(--brand-charcoal);
}

@media (min-width: 900px) {
  .campaign-comp__aside {
    margin: 1rem 1rem 1rem 0;
    padding: 1.5rem 1.4rem;
    border: 1px solid rgba(47, 60, 68, 0.1);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(36, 48, 56, 0.05);
    background:
      radial-gradient(ellipse 100% 80% at 100% 0%, rgba(239, 192, 0, 0.12), transparent 50%),
      #ffffff;
  }
}

.campaign-comp__aside::before {
  display: none;
}

.campaign-comp__aside-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(239, 192, 0, 0.16);
  color: #8a6d00;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.campaign-comp__aside-text {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 18ch;
  color: var(--brand-charcoal);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.campaign-comp--detail .campaign-comp__main {
  align-items: start;
}

.campaign-comp--detail .campaign-comp__text {
  font-size: 1.02rem;
}

.campaign-apply {
  margin-top: 1.75rem;
  padding: 1.6rem 1.45rem 1.55rem;
  border: 1px solid rgba(47, 60, 68, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf5 0%, #ffffff 42%, #f7f9fa 100%);
}

.campaign-apply__head {
  margin-bottom: 1.2rem;
}

.campaign-apply__title {
  margin: 0 0 0.4rem;
  color: var(--brand-charcoal);
  font-size: 1.35rem;
  font-weight: 800;
}

.campaign-apply__lead {
  margin: 0;
  color: #5c676d;
  font-size: 0.96rem;
  line-height: 1.55;
}

.campaign-apply__success {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  font-weight: 700;
}

.campaign-apply__grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .campaign-apply__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.campaign-apply__field {
  display: grid;
  gap: 0.35rem;
  color: var(--brand-charcoal);
  font-size: 0.86rem;
  font-weight: 700;
}

.campaign-apply__field--full {
  grid-column: 1 / -1;
}

.campaign-apply__field input,
.campaign-apply__field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(47, 60, 68, 0.16);
  border-radius: 10px;
  background: #fff;
  color: var(--brand-charcoal);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
}

.campaign-apply__field input:focus,
.campaign-apply__field textarea:focus {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 1px;
}

.campaign-apply__field em {
  color: #c62828;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
}

.campaign-apply__submit {
  margin-top: 1rem;
  min-height: 48px;
  padding: 0.75rem 1.3rem;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #f2c84a 0%, var(--brand-yellow) 55%, var(--brand-yellow-deep) 100%);
  color: var(--brand-charcoal);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(239, 192, 0, 0.25);
}

.campaign-apply__submit:hover {
  filter: brightness(1.03);
}

/* ---------- 404 ---------- */

.error-404 {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: min(72vh, 640px);
  padding-block: clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(239, 192, 0, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(47, 60, 68, 0.06), transparent 50%),
    linear-gradient(180deg, #f7f8f9 0%, #ffffff 55%, #f4f6f7 100%);
}

.error-404__inner {
  position: relative;
  max-width: 40rem;
  text-align: left;
}

.error-404__code {
  margin: 0 0 0.35rem;
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: rgba(47, 60, 68, 0.08);
  user-select: none;
}

.error-404__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: #2a353d;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.error-404__mark {
  width: 1.65rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-yellow-deep));
  box-shadow: 0 0 0 3px rgba(239, 192, 0, 0.12);
}

.error-404__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.6vw, 2.45rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #2a353d;
}

.error-404__accent {
  color: var(--brand-yellow-deep);
}

.error-404__lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.error-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 8px;
  background: #2a353d;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 650;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.error-404__btn:hover {
  background: #1e262c;
  transform: translateY(-1px);
  color: #fff;
}

.error-404__btn--ghost {
  background: transparent;
  color: #2a353d;
  border: 1px solid rgba(47, 60, 68, 0.18);
}

.error-404__btn--ghost:hover {
  background: #fff;
  border-color: rgba(239, 192, 0, 0.55);
  color: #2a353d;
}

.error-404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(47, 60, 68, 0.1);
}

.error-404__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.error-404__links a:hover,
.error-404__links a:focus-visible {
  color: #2a353d;
}

@media (max-width: 640px) {
  .error-404__inner {
    text-align: center;
  }

  .error-404__eyebrow {
    justify-content: center;
  }

  .error-404__lead {
    margin-inline: auto;
  }

  .error-404__actions {
    justify-content: center;
  }

  .error-404__links {
    justify-content: center;
  }

  .error-404__btn {
    width: 100%;
    max-width: 18rem;
  }
}

/* —— Tam sayfa başvuru (Hemen Başvur) — site ile uyumlu —— */

.apply-section {
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4.5rem);
  background:
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(239, 192, 0, 0.12), transparent 55%),
    linear-gradient(180deg, var(--surface-tint) 0%, #ffffff 55%);
}

.apply-section__inner {
  max-width: min(100%, 980px);
}

.apply-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(47, 60, 68, 0.08);
  overflow: hidden;
  animation: applyCardIn 0.4s var(--ease);
}

@keyframes applyCardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.apply-card__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.apply-card__info {
  padding: 1.6rem 1.35rem 1.4rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.apply-card__title {
  margin: 0.75rem 0 0.65rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--brand-charcoal);
}

.apply-card__subtitle {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.apply-card__benefits {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.apply-card__benefits li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--brand-charcoal-soft);
  font-weight: 550;
}

.apply-card__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand-yellow);
}

.apply-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.apply-card__stat {
  padding: 0.7rem 0.55rem;
  border: 1px solid rgba(47, 60, 68, 0.1);
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.apply-card__stat strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-charcoal);
}

.apply-card__stat span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.apply-card__offer {
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(239, 192, 0, 0.35);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(239, 192, 0, 0.16), rgba(239, 192, 0, 0.05));
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--brand-charcoal);
  font-weight: 650;
}

.apply-card__form-wrap {
  border-top: 1px solid rgba(47, 60, 68, 0.08);
  background: #fff;
}

.apply-card__form-head {
  padding: 0.9rem 1.25rem;
  background: linear-gradient(180deg, var(--brand-charcoal-mid), var(--brand-charcoal));
  color: #fff;
  font-size: 0.98rem;
  font-weight: 750;
  text-align: center;
}

.apply-card__form {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem 1.25rem 1.35rem;
}

.apply-card__field input,
.apply-card__field select {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(47, 60, 68, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-charcoal);
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.apply-card__field input:focus,
.apply-card__field select:focus {
  outline: none;
  border-color: rgba(239, 192, 0, 0.65);
  box-shadow: 0 0 0 3px rgba(239, 192, 0, 0.14);
}

.apply-card__field.has-error input,
.apply-card__field.has-error select {
  border-color: rgba(239, 68, 68, 0.55);
}

.apply-card__field em,
.apply-card__field-error {
  display: block;
  margin-top: 0.25rem;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 650;
  color: #dc2626;
}

.apply-card__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.apply-card__consent input {
  margin-top: 0.15rem;
  accent-color: var(--brand-yellow);
}

.apply-card__consent a {
  color: var(--brand-charcoal);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(239, 192, 0, 0.5);
}

.apply-card__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 0.15rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, #f2c84a 0%, var(--brand-yellow) 55%, var(--brand-yellow-deep) 100%);
  color: var(--brand-charcoal);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(239, 192, 0, 0.28);
  transition: transform 0.22s var(--ease), filter 0.22s var(--ease);
}

.apply-card__submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.apply-card__submit:focus-visible {
  outline: 2px solid var(--brand-charcoal);
  outline-offset: 3px;
}

.apply-card__error {
  margin: 1rem 1.25rem 0;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  background: #fef3f2;
  color: #b42318;
  font-size: 0.88rem;
  font-weight: 700;
}

.apply-card__error a {
  color: inherit;
  text-decoration: underline;
}

.apply-card__success {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
  padding: 2rem 1.5rem;
}

.apply-card__success h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-charcoal);
}

.apply-card__success p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 820px) {
  .apply-card__grid {
    grid-template-columns: 1.15fr 0.95fr;
  }

  .apply-card__info {
    padding: 1.85rem 1.6rem 1.6rem;
  }

  .apply-card__form-wrap {
    border-top: none;
    border-left: 1px solid rgba(47, 60, 68, 0.08);
  }

  .apply-card__form-head {
    border-radius: 0 16px 0 0;
  }
}

@media (max-width: 819px) {
  .apply-card__stats {
    grid-template-columns: 1fr;
  }

  .apply-card__stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 0.75rem;
    padding-inline: 0.85rem;
  }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .btn-cta::before {
    display: none;
  }

  .lead-popup__dialog {
    animation: none;
  }

  .apply-page__main,
  .apply-page__form-panel {
    animation: none;
  }
}
