/* ==========================================================================
   BM Yazılım & Bilişim Teknolojileri — Ortak Stil Dosyası
   Marka renkleri BM Portal tanıtım broşüründen alınmıştır.
   Harici font/CDN kullanılmaz (KVKK ve performans gereği tüm varlıklar yereldir).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tasarım token'ları
   -------------------------------------------------------------------------- */
:root {
  /* Zemin */
  --bg:            #0A211B;
  --bg-2:          #0E3327;
  --bg-3:          #071912;

  /* Yüzeyler */
  --surface:       #12392C;
  --surface-2:     #164636;
  --surface-hover: #1A5240;
  --border:        #1E5240;
  --border-soft:   rgba(79, 182, 138, .18);

  /* Marka renkleri */
  --gold:          #E3B45E;
  --gold-dark:     #C99A45;
  --gold-soft:     rgba(227, 180, 94, .12);
  --mint:          #4FB68A;
  --mint-soft:     rgba(79, 182, 138, .12);

  /* Metin */
  --text:          #F2F7F4;
  --text-muted:    #A9C4B8;
  --text-dim:      #95B4A6;

  /* Tipografi */
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial,
          "Noto Sans", sans-serif;

  /* Ölçek */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --container: 1200px;
  --gutter:    clamp(20px, 5vw, 40px);

  /* Gölge */
  --shadow:    0 18px 40px rgba(0, 0, 0, .28);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, .40);

  /* Geçiş */
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------------------
   2. Sıfırlama ve temel
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1100px 600px at 78% -8%,  rgba(79, 182, 138, .16), transparent 62%),
    radial-gradient(820px 480px at 8% 4%,     rgba(227, 180, 94, .07), transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 44%, var(--bg-3) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--mint); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: #0A211B; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--gold);
  color: #0A211B;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #0A211B; }

/* --------------------------------------------------------------------------
   3. Düzen yardımcıları
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head--center .eyebrow::before { display: none; }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--text-muted);
  max-width: 68ch;
}

.text-gold { color: var(--gold); }
.text-mint { color: var(--mint); }

/* --------------------------------------------------------------------------
   4. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              border-color .2s var(--ease), color .2s var(--ease),
              box-shadow .2s var(--ease);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: #0A211B;
  box-shadow: 0 10px 26px rgba(227, 180, 94, .22);
}
.btn--primary:hover {
  background: #EFC575;
  color: #0A211B;
  box-shadow: 0 14px 34px rgba(227, 180, 94, .32);
}

.btn--ghost {
  background: rgba(255, 255, 255, .04);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover {
  background: var(--surface-hover);
  border-color: var(--mint);
  color: var(--text);
}

.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* --------------------------------------------------------------------------
   5. Kartlar ve yüzeyler
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  padding: 26px;
  background: linear-gradient(160deg, var(--surface) 0%, rgba(18, 57, 44, .55) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), border-color .25s var(--ease),
              background-color .25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 182, 138, .42);
}
.card h3 { margin-bottom: .4em; font-size: 1.06rem; }
.card p  { margin: 0; color: var(--text-muted); font-size: .93rem; line-height: 1.6; }

.card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  background: var(--mint-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  color: var(--mint);
}
.card__icon svg { width: 22px; height: 22px; }

.grid { display: grid; gap: 18px; }
.grid > * { min-width: 0; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* --------------------------------------------------------------------------
   6. Üst menü
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 33, 27, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(7, 25, 18, .92);
  border-bottom-color: var(--border-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.nav__brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__brand img { height: 34px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: .92rem;
  font-weight: 600;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__menu a:hover,
.nav__menu a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, .05);
}

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__actions .btn { padding: 11px 22px; font-size: .9rem; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px var(--gutter) 22px;
    background: rgba(7, 25, 18, .98);
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { padding: 13px 14px; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav__actions .btn--ghost { display: none; }
}

@media (max-width: 480px) {
  .nav__brand img { height: 28px; }
  .nav__actions .btn { padding: 10px 16px; font-size: .82rem; }
  .nav { min-height: 64px; }
}

/* --------------------------------------------------------------------------
   7. Alt bilgi
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: clamp(60px, 8vw, 100px);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--border-soft);
  background: rgba(7, 25, 18, .55);
}
.footer__grid {
  display: grid;
  gap: 36px 30px;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  padding-bottom: 44px;
}
.footer__grid > * { min-width: 0; }
@media (min-width: 900px) {
  .footer__grid { grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr)); }
}
.footer__brand img { height: 36px; margin-bottom: 18px; }
.footer__brand p { color: var(--text-muted); font-size: .92rem; max-width: 38ch; }

.footer h4,
.footer .footer-title {
  margin-bottom: 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin-bottom: 2px; }
.footer li a, .footer address a {
  display: inline-block;
  padding-block: 7px;              /* dokunma hedefini 32px'e çıkarır */
  color: var(--text-muted);
  font-size: .93rem;
  font-style: normal;
}
.footer li a:hover, .footer address a:hover { color: var(--gold); }
.footer address { font-style: normal; color: var(--text-muted); font-size: .93rem; }
.footer address a { display: block; margin-top: 4px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid var(--border-soft);
  font-size: .86rem;
  color: var(--text-dim);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.footer__bottom nav a { display: inline-block; padding-block: 6px; }
.footer__bottom a { color: var(--text-dim); }
.footer__bottom a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   8. Uzun metin (hukuki sayfalar)
   -------------------------------------------------------------------------- */
.legal {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
}
.legal > * { min-width: 0; }
@media (max-width: 940px) {
  .legal { grid-template-columns: minmax(0, 1fr); }
}

.legal__toc {
  position: sticky;
  top: 100px;
  padding: 22px;
  background: rgba(18, 57, 44, .5);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}
@media (max-width: 940px) {
  .legal__toc { position: static; }
}
.legal__toc h2 {
  margin-bottom: 14px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.legal__toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}
.legal__toc li { counter-increment: toc; margin-bottom: 4px; }
.legal__toc a {
  display: flex;
  gap: 10px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.45;
}
.legal__toc a::before {
  content: counter(toc) ".";
  flex-shrink: 0;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}
.legal__toc a:hover { background: rgba(255, 255, 255, .05); color: var(--text); }

.legal__body { max-width: 78ch; }
.legal__body section { scroll-margin-top: 100px; padding-block: 6px 26px; }
.legal__body section + section {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--border-soft);
}
.legal__body h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin-bottom: .6em;
}
.legal__body h3 {
  margin-top: 1.7em;
  font-size: 1.02rem;
  color: var(--mint);
}
.legal__body p,
.legal__body li { color: var(--text-muted); font-size: .97rem; }
.legal__body strong { color: var(--text); font-weight: 600; }
.legal__body ul, .legal__body ol { padding-left: 1.25em; margin: 0 0 1.1em; }
.legal__body li { margin-bottom: .55em; }
.legal__body li::marker { color: var(--mint); }

.legal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 34px;
  padding: 16px 20px;
  background: var(--gold-soft);
  border: 1px solid rgba(227, 180, 94, .28);
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--text-muted);
}
.legal__meta b { color: var(--gold); font-weight: 700; }

/* Tanım tablosu */
.table-wrap { overflow-x: auto; margin-bottom: 1.4em; }
table.data {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: .91rem;
}
table.data th, table.data td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-soft);
}
table.data thead th {
  background: var(--surface);
  color: var(--text);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
table.data td { color: var(--text-muted); }
table.data tbody tr:hover td { background: rgba(255, 255, 255, .025); }

/* Bilgi kutusu */
.callout {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  margin-bottom: 1.4em;
  background: var(--mint-soft);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--mint);
  border-radius: var(--radius-sm);
}
.callout p { margin: 0; font-size: .92rem; }

/* --------------------------------------------------------------------------
   9. Sayfa başlığı bandı
   -------------------------------------------------------------------------- */
.page-hero {
  padding-block: clamp(48px, 7vw, 88px) clamp(32px, 4vw, 52px);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: .35em; }
.page-hero p  { color: var(--text-muted); max-width: 62ch; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .85rem;
  color: var(--text-dim);
}
.breadcrumb a { display: inline-block; padding-block: 3px; color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-hidden] { opacity: .5; }

/* --------------------------------------------------------------------------
   10. Yazdırma
   -------------------------------------------------------------------------- */
@media print {
  body { background: #fff; color: #000; }
  .site-header, .site-footer, .legal__toc, .btn { display: none !important; }
  .legal { display: block; }
  .legal__body { max-width: none; }
  .legal__body p, .legal__body li { color: #222; }
  .legal__body section + section { border-color: #ccc; }
  a { color: #000; text-decoration: underline; }
}

/* ==========================================================================
   11. Hero (video arka planlı)
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(92vh, 860px);
  padding-block: clamp(70px, 11vw, 130px) clamp(50px, 7vw, 90px);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Video mor tonlu olduğu için bulanıklaştırılıp yeşil perde ile kapatılır:
     hareket kalır, videodaki yazılar başlıkla çakışmaz. */
  filter: blur(6px) saturate(.5) brightness(.8);
  transform: scale(1.1);
  opacity: .62;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 76% 26%, rgba(79,182,138,.20), transparent 66%),
    linear-gradient(180deg, rgba(10,33,27,.86) 0%, rgba(10,33,27,.90) 46%, var(--bg) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero h1 { margin-bottom: .35em; max-width: 16ch; }
.hero .lead { font-size: clamp(1.02rem, 1.7vw, 1.2rem); margin-bottom: 34px; max-width: 56ch; }
.hero .btn-row { margin-bottom: clamp(46px, 6vw, 72px); }

@media (max-width: 640px) {
  .hero__media { display: none; }
}

/* Rakam şeridi */
.stats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.stats > div {
  padding: 22px 24px;
  background: rgba(10, 33, 27, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.stats b {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
}
.stats span {
  display: block;
  margin-top: 4px;
  font-size: .84rem;
  color: var(--text-muted);
}
.stats b em { font-style: normal; color: var(--gold); }
.stats b.sm { font-size: clamp(1.15rem, 2.1vw, 1.55rem); white-space: nowrap; }

/* ==========================================================================
   12. İçerik blokları
   ========================================================================== */
.split {
  display: grid;
  gap: clamp(32px, 5vw, 68px);
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  align-items: center;
}
.split > * { min-width: 0; }

.media-frame {
  position: relative;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.media-frame img, .media-frame video { width: 100%; display: block; }

/* Onay/liste maddeleri */
.checklist { margin: 0 0 1.4em; padding: 0; list-style: none; }
.checklist li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 32px;
  color: var(--text-muted);
  font-size: .96rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .32em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint-soft);
  border: 1px solid var(--mint);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: .62em;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--mint);
  border-bottom: 2px solid var(--mint);
  transform: rotate(-45deg);
}
.checklist strong { color: var(--text); }

/* Numaralı akış */
.steps { counter-reset: step; display: grid; gap: 4px; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  list-style: none;
}
.steps li:last-child { border-bottom: 0; }
.steps li::before {
  content: "0" counter(step);
  grid-row: span 2;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.steps h3 { margin: 0 0 4px; font-size: 1.02rem; }
.steps p { margin: 0; color: var(--text-muted); font-size: .93rem; }
.steps ol { margin: 0; padding: 0; }

/* Hizmet kartı (numaralı) */
.service {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: linear-gradient(160deg, var(--surface) 0%, rgba(18,57,44,.5) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.service:hover { transform: translateY(-4px); border-color: rgba(79,182,138,.45); }
.service__no {
  margin-bottom: 16px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.service h3 { margin-bottom: .45em; font-size: 1.12rem; }
.service p { margin: 0 0 16px; color: var(--text-muted); font-size: .93rem; }
.service ul { margin: auto 0 0; padding: 0; list-style: none; }
.service ul li {
  padding: 7px 0;
  border-top: 1px solid var(--border-soft);
  color: var(--text-dim);
  font-size: .86rem;
}

/* Güvenlik bandı */
.security {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(135deg, rgba(79,182,138,.12), rgba(227,180,94,.07));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}
.security > * { min-width: 0; }
.score {
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(7,25,18,.5);
  border: 1px solid rgba(227,180,94,.3);
  border-radius: var(--radius);
  text-align: center;
}
.score b {
  display: block;
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.score span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill {
  padding: 7px 15px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: .82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   13. Referans duvarı
   ========================================================================== */
.logos {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(min(170px, 100%), 1fr));
}
.logo-tile {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 20px 18px;
  background: rgba(18, 57, 44, .42);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  text-align: center;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.logo-tile:hover { background: rgba(18, 57, 44, .72); border-color: rgba(79,182,138,.4); }

/* Farklı kaynaklardan gelen logoları tek tip göstermek için tek renge indirir */
.logo-tile img {
  max-height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .68;
  transition: opacity .25s var(--ease);
}
.logo-tile:hover img { opacity: 1; }

.logo-tile--text { flex-direction: column; gap: 8px; }
.logo-tile__mono {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  background: var(--gold-soft);
  border: 1px solid rgba(227,180,94,.32);
  border-radius: 11px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.logo-tile__name {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   14. Video bölümü
   ========================================================================== */
.video-block {
  position: relative;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #06120D;
  box-shadow: var(--shadow-lg);
}
.video-block video { width: 100%; display: block; aspect-ratio: 1280 / 668; }

/* ==========================================================================
   15. CTA bandı
   ========================================================================== */
.cta-band {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  align-items: center;
  padding: clamp(32px, 5vw, 54px);
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(227,180,94,.14), transparent 70%),
    linear-gradient(150deg, var(--surface-2) 0%, rgba(18,57,44,.6) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}
.cta-band > * { min-width: 0; }
.cta-band h2 { margin-bottom: .3em; }
.cta-band p { color: var(--text-muted); margin: 0; }
.cta-band .btn-row { justify-content: flex-end; }
@media (max-width: 760px) { .cta-band .btn-row { justify-content: flex-start; } }

/* ==========================================================================
   16. Form
   ========================================================================== */
.form-card {
  padding: clamp(24px, 3.5vw, 36px);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(18,57,44,.55) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
}
.field .req { color: var(--gold); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  font-size: .95rem;
  color: var(--text);
  background: rgba(7, 25, 18, .55);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--mint);
  background: rgba(7, 25, 18, .8);
}
.field select { appearance: none; cursor: pointer; }

.field-row {
  display: grid;
  gap: 0 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}
.field-row > * { min-width: 0; }

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 22px;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.hp { position: absolute; left: -9999px; opacity: 0; }

.form-note {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--text-dim);
}

/* İletişim bilgi kartı */
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--mint-soft);
  border: 1px solid var(--border-soft);
  border-radius: 11px;
  color: var(--mint);
}
.contact-list .ico svg { width: 19px; height: 19px; }
.contact-list h3 { margin: 0 0 3px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.contact-list p, .contact-list a { margin: 0; font-size: .95rem; color: var(--text-muted); }
.contact-list a { display: block; }
.contact-list a:hover { color: var(--gold); }

.map-frame {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 320px; border: 0; filter: grayscale(.3) invert(.9) hue-rotate(160deg); }


/* Bildirim kutusu renkleri (iletişim formu sonucu) */
.notice--ok   { border-left-color: var(--mint); }
.notice--warn { border-left-color: var(--gold); background: rgba(227,180,94,.10); }

/* ==========================================================================
   17. Mağaza rozetleri
   ========================================================================== */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.store-badges a {
  display: block;
  border-radius: 10px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.store-badges a:hover { transform: translateY(-2px); opacity: .88; }
.store-badges img { height: 46px; width: auto; }
@media (max-width: 420px) { .store-badges img { height: 40px; } }

/* ==========================================================================
   18. Yapay zekâ bölümü
   ========================================================================== */
.ai-band {
  position: relative;
  padding: clamp(28px, 4.5vw, 52px);
  background:
    radial-gradient(700px 340px at 88% 10%, rgba(79,182,138,.16), transparent 68%),
    linear-gradient(150deg, var(--surface-2) 0%, rgba(10,33,27,.72) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ai-band::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,180,94,.14), transparent 70%);
  pointer-events: none;
}
.ai-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(225px, 100%), 1fr));
  margin-top: 30px;
}
.ai-grid > * { min-width: 0; }
.ai-item {
  padding: 22px;
  background: rgba(7, 25, 18, .45);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}
.ai-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .45em;
  font-size: 1rem;
  color: var(--mint);
}
.ai-item h3 svg { width: 19px; height: 19px; flex-shrink: 0; }
.ai-item p { margin: 0; color: var(--text-muted); font-size: .92rem; }

.badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 16px;
  background: var(--gold-soft);
  border: 1px solid rgba(227,180,94,.3);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Dolu zeminli logolar (ör. Baytimur) tek renge çevrilince diğerlerinden çok
   daha parlak görünüyor; duvarın dengesi için biraz yumuşatılır. */
.logo-tile img.is-solid { opacity: .5; }
.logo-tile:hover img.is-solid { opacity: .8; }
