/* Base layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7fa;
  color: #021019;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #f9a01d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.kapsayici {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.ust-baslik {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.ust-satir {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.ust-hamburger {
  display: none;
  width: 34px;
  height: 34px;
  padding: 6px;
  margin-right: 4px;
  border-radius: 999px;
  border: 1px solid rgba(2, 16, 25, 0.16);
  background: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
}

.ust-hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #021019;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.ust-hamburger span + span {
  margin-top: 3px;
}

.ust-hamburger.acik span:nth-child(1) {
  transform: translateY(2.5px) rotate(45deg);
}

.ust-hamburger.acik span:nth-child(2) {
  opacity: 0;
}

.ust-hamburger.acik span:nth-child(3) {
  transform: translateY(-2.5px) rotate(-45deg);
}

.ust-marka {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ust-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.ust-link {
  font-size: 15px;
  font-weight: 600;
  color: #021019;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
  text-decoration: none;
}

.ust-link:hover {
  border-color: #07badb;
  color: #07badb;
  text-decoration: none;
}

.ust-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Buttons */
.buton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease,
    color 0.16s ease;
  text-decoration: none;
}

.buton-koyu {
  background: #07badb;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(7, 186, 219, 0.35);
}

.buton-koyu:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(7, 186, 219, 0.45);
}

.buton-turuncu {
  background: #f9a01d;
  color: #021019;
  box-shadow: 0 8px 18px rgba(249, 160, 29, 0.35);
}

.buton-turuncu:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(249, 160, 29, 0.45);
}

/* Layout blocks – reordered visual sections */
.sayfa {
  padding: 32px 0 40px;
}

.grid-ana {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 40px;
}

.kahraman {
  background: radial-gradient(circle at 0 0, #07badb 0%, #1095b5 42%, #021019 100%);
  border-radius: 24px;
  padding: 26px 24px 22px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(3, 26, 46, 0.55);
  min-height: 260px;
}

.kahraman-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.kahraman h1 {
  margin: 0 0 10px;
  font-size: 27px;
  line-height: 1.25;
}

.kahraman-alt {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 18px;
  max-width: 520px;
}

.kahraman-liste {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  font-size: 13px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.kahraman-liste li::before {
  content: "◆";
  color: #f9a01d;
  margin-right: 6px;
  font-size: 11px;
}

.kahraman-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.kart-sutun {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.istatistik-kart {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 16px;
  box-shadow: 0 12px 28px rgba(8, 30, 52, 0.14);
  border: 1px solid rgba(4, 23, 39, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.istatistik-ikon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, #07badb, #1095b5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.istatistik-icerik {
  flex: 1;
}

.istatistik-etiket {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1095b5;
  margin: 0 0 4px;
}

.istatistik-baslik {
  font-size: 15px;
  font-weight: 700;
  color: #021019;
  margin: 0 0 6px;
}

.istatistik-metni {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: #344350;
}

@media (max-width: 900px) {
  .kart-sutun {
    grid-template-columns: minmax(0, 1fr);
  }
}

.ozet-etiket {
  display: block;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f7b86;
  margin-bottom: 2px;
}

.ozet-deger {
  font-weight: 600;
}

/* Content sections */
.bolum {
  margin-bottom: 34px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 20px 20px;
  box-shadow: 0 8px 24px rgba(15, 35, 52, 0.06);
}

.bolum.soluk {
  background: #f8fbfd;
  box-shadow: none;
}

.bolum h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.bolum h3 {
  margin: 18px 0 8px;
  font-size: 16px;
}

.bolum p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
}

.bolum ul {
  margin: 6px 0 10px 18px;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
}

.bolum li {
  margin-bottom: 4px;
}

.bolum-cta {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 18px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid #e4e9f0;
  word-wrap: break-word;
}

thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6f7b86;
  background: #f4f7fb;
}

tbody tr:nth-child(even) {
  background: #fafcfe;
}

/* Footer */
.site-altbilgi {
  background: #1095b5;
  color: #ffffff;
  padding: 32px 0 30px;
  margin-top: 16px;
}

.altbilgi-linkler {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.altbilgi-linkler a {
  color: #ffffff;
  opacity: 0.9;
}

.altbilgi-linkler a:hover {
  opacity: 1;
}

.altbilgi-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-size: 12px;
  padding-top: 14px;
}

.altbilgi-butonlar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.altbilgi-butonlar .buton-koyu {
  background: #ffffff;
  color: #1095b5;
  box-shadow: none;
}

.altbilgi-butonlar .buton-koyu:hover {
  background: #f5f7fa;
}

.altbilgi-butonlar .buton-turuncu {
  background: #f9a01d;
  color: #021019;
  box-shadow: none;
}

/* Language switcher override to fit palette */
.dil-degistirici .dil-ogesi {
  background: #ffffff !important;
  border: 1px solid #07badb !important;
  color: #021019 !important;
}

.dil-degistirici .dil-ogesi.aktif {
  background: #07badb !important;
  border-color: #07badb !important;
  color: #ffffff !important;
}

.dil-fab {
  background: #07badb !important;
}

/* Responsive */
@media (max-width: 900px) {
  .ust-satir {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .ust-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 10px 16px 14px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(8, 30, 52, 0.26);
    flex-direction: column;
    gap: 10px;
  }

  .ust-nav.acik {
    display: flex;
  }

  .ust-hamburger {
    display: inline-flex;
  }

  .ust-marka {
    flex: 1;
  }

  .ust-cta {
    flex-shrink: 0;
  }

  .grid-ana {
    grid-template-columns: minmax(0, 1fr);
  }

  .kahraman {
    order: 1;
  }

  .kart-sutun {
    order: 2;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.45;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    width: 100%;
  }

  thead {
    display: none;
  }

  table tr {
    margin-bottom: 10px;
    border: 1px solid #e4e9f0;
    border-radius: 10px;
    background: #ffffff;
    padding: 6px 8px;
  }

  table td {
    border: none;
    padding: 4px 0;
  }

  table td::before {
    content: attr(data-label) " : ";
    font-weight: 600;
    color: #6f7b86;
    display: inline-block;
    min-width: 120px;
  }
}

