/* ==========================================================================
   Baulia İskele — stil sistemi
   Renkler logodan örneklendi: derin mor + altın.
   Tek dosya; harici font/CDN yok (LCP ve KVKK açısından bilinçli tercih).
   ========================================================================== */

:root {
  /* Marka */
  --purple-950: #150720;
  --purple-900: #200a2e;
  --purple-800: #2e0f42;
  --purple-700: #3c1355;
  --purple-600: #4e1b6b;
  --purple-100: #f2ecf6;

  --gold-600: #a8851c;
  --gold-500: #c9a227;
  --gold-400: #d9b84a;
  --gold-300: #e8ce7e;

  /* Nötrler */
  --ink: #1a1420;
  --ink-soft: #4a4155;
  --ink-mute: #6d6379;
  --line: #e4e0e9;
  --surface: #ffffff;
  --surface-alt: #f8f6fa;

  /* Ölçü */
  --wrap: 1180px;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 9px;

  --shadow-sm: 0 1px 2px rgba(26, 20, 32, .06), 0 2px 8px rgba(26, 20, 32, .04);
  --shadow-md: 0 6px 14px rgba(26, 20, 32, .08), 0 18px 40px rgba(26, 20, 32, .07);
  --shadow-lg: 0 20px 50px rgba(32, 10, 46, .18);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------- reset -- */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* sticky header yüksekliği */
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }

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

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--purple-800);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* ------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--alt { background: var(--surface-alt); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section-head { max-width: 780px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: .85rem;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold-500);
}
.section-head--center .kicker::before { display: none; }

.section-head h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
}

.lead {
  margin-top: 1rem;
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
}

/* ------------------------------------------------------------ buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease),
              color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--purple-950);
  box-shadow: 0 8px 20px rgba(201, 162, 39, .28);
}
.btn--gold:hover { box-shadow: 0 12px 26px rgba(201, 162, 39, .38); }

.btn--purple {
  background: var(--purple-800);
  color: #fff;
  box-shadow: 0 8px 20px rgba(46, 15, 66, .22);
}
.btn--purple:hover { background: var(--purple-700); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
}
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-300); }

.btn--outline {
  background: transparent;
  color: var(--purple-800);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--purple-800); }

.btn svg { width: 19px; height: 19px; flex: none; }

/* ------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  /* flex: none DEĞİL — dar ekranda marka bloğu küçülemezse dil seçici ve
     hamburger başlığın dışına taşar ve sayfa yatay kayar. */
  flex: 0 1 auto;
  min-width: 0;
}
.brand img { height: 46px; width: auto; flex: none; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
  overflow: hidden;
}
.brand-name {
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: .06em;
  color: var(--purple-800);
  white-space: nowrap;
}
.brand-tag {
  font-size: .66rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  white-space: nowrap;
}

.nav { margin-inline-start: auto; }
.nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.45rem, 1.4vw, 1.2rem);
}
.nav a {
  display: block;
  padding: .5rem .25rem;
  font-size: .95rem;
  /* Menü etiketi asla iki satıra bölünmez: Almanca sözcükler uzun ve
     kırıldığında başlık çubuğu iki kata çıkıp dağınık görünüyordu. */
  white-space: nowrap;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .16s var(--ease), border-color .16s var(--ease);
}
.nav a:hover, .nav a.is-active {
  color: var(--purple-800);
  border-bottom-color: var(--gold-500);
}

.header-actions { display: flex; align-items: center; gap: .75rem; flex: none; }

/* Dil seçici — yalnızca bayrak gösteren açılır liste.
   Emoji bayrak KULLANILMAZ: Windows bayrak emojilerini desteklemez ve
   "TR"/"DE" gibi harf çiftleri olarak render eder. Bu yüzden inline SVG. */
.lang-dd { position: relative; flex: none; }

.lang-dd > summary {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .32rem .5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  transition: border-color .16s var(--ease);
}
.lang-dd > summary::-webkit-details-marker { display: none; }
.lang-dd > summary::marker { content: ""; }
.lang-dd > summary:hover { border-color: var(--purple-600); }

.flag {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  display: block;
  flex: none;
  box-shadow: 0 0 0 1px rgba(26, 20, 32, .12) inset;
}

.lang-caret {
  width: 6px; height: 6px;
  border-right: 2px solid var(--ink-mute);
  border-bottom: 2px solid var(--ink-mute);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s var(--ease);
}
.lang-dd[open] > summary .lang-caret { transform: rotate(-135deg) translateY(0); }

.lang-dd > ul {
  position: absolute;
  right: 0;
  top: calc(100% + .45rem);
  z-index: 120;
  display: grid;
  gap: .15rem;
  padding: .3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-md);
}
.lang-dd > ul a {
  display: block;
  padding: .4rem .5rem;
  border-radius: 7px;
  transition: background-color .14s var(--ease);
}
.lang-dd > ul a:hover { background: var(--surface-alt); }
.lang-dd > ul a[aria-current="true"] { background: var(--purple-100); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 20px; height: 2px;
  background: var(--purple-800);
  transition: background .15s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--purple-800);
  transition: transform .2s var(--ease), top .2s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .header-inner { min-height: 68px; }
  .nav {
    position: absolute;
    inset: 100% 0 auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: block; }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem var(--gut) 1.25rem;
  }
  .nav a {
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav a:hover, .nav a.is-active { border-bottom-color: var(--line); }
  .header-actions .btn--head { display: none; }
}

/* Dar telefonlarda başlık çubuğu: marka + dil + hamburger 320 px'e sığmalı.
   Ölçüldü — bu ayarlar olmadan 400 px altında sayfa yatay kayıyordu. */
@media (max-width: 480px) {
  .header-inner { gap: .75rem; }
  .header-actions { gap: .5rem; }
  .brand img { height: 38px; }
  .brand-name { font-size: 1rem; }
  .brand-tag { display: none; }
  .lang-switch { font-size: .74rem; }
  .lang-switch a { padding: .3rem .55rem; }
}

@media (max-width: 340px) {
  .brand-text { display: none; }
}

/* --------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(201, 162, 39, .18), transparent 62%),
    linear-gradient(155deg, var(--purple-800) 0%, var(--purple-900) 52%, var(--purple-950) 100%);
  color: #fff;
  overflow: hidden;
}

/* İskele dikmesi hissi veren geometrik doku — görsel dosyası gerektirmez */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    repeating-linear-gradient(105deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 128px);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .85), transparent 88%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .85), transparent 88%);
}

/* Hero tek sütun: sağdaki "hızlı iletişim" kartı kaldırıldı (aynı bilgiler
   sayfa sonundaki iletişim bölümünde zaten var). Metin genişliği sınırlı
   tutulur ki satırlar okunabilir uzunlukta kalsın. */
.hero-inner {
  max-width: 860px;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.hero h1 {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  letter-spacing: -.03em;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-300);
}
.hero p.hero-sub {
  margin-top: 1.35rem;
  font-size: clamp(1.03rem, 1.9vw, 1.2rem);
  color: #d9cfe4;
  max-width: 56ch;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .38rem .85rem;
  border: 1px solid rgba(232, 206, 126, .35);
  border-radius: 999px;
  background: rgba(232, 206, 126, .08);
  color: var(--gold-300);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.1rem;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: .88rem;
  color: #ab9dba;
}

/* --------------------------------------------------------------- stat -- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat {
  background: #fff;
  padding: clamp(1.25rem, 3vw, 1.9rem);
  text-align: center;
}
.stat dt {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--purple-800);
  letter-spacing: -.03em;
}
.stat dd {
  margin: .35rem 0 0;
  font-size: .86rem;
  color: var(--ink-mute);
  font-weight: 600;
}

/* ------------------------------------------------------------- cards -- */

.grid {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); }

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.6vw, 1.85rem);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              border-color .2s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, .5);
  box-shadow: var(--shadow-md);
}
.card h3 {
  font-size: 1.14rem;
  margin-bottom: .6rem;
  color: var(--purple-800);
}
.card p { color: var(--ink-soft); font-size: .96rem; }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  margin-bottom: 1.1rem;
  border-radius: 13px;
  background: linear-gradient(160deg, var(--purple-700), var(--purple-900));
  color: var(--gold-300);
}
.card-icon svg { width: 25px; height: 25px; }

.card ul.ticks {
  margin-top: 1rem;
  display: grid;
  gap: .45rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.card ul.ticks li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .55rem;
  align-items: start;
}
.card ul.ticks li::before {
  content: "";
  width: 8px; height: 8px;
  margin-top: .55em;
  border-radius: 50%;
  background: var(--gold-500);
}

/* --------------------------------------------------------- split rows -- */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  align-items: center;
}

.feature-list { display: grid; gap: 1.35rem; }
.feature {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  align-items: start;
}
.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--purple-100);
  color: var(--purple-700);
}
.feature-mark svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.feature p { font-size: .95rem; color: var(--ink-soft); }

.panel {
  background: linear-gradient(160deg, var(--purple-800), var(--purple-950));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-lg);
}
.panel h3 { color: var(--gold-300); font-size: 1.25rem; margin-bottom: 1rem; }
.panel p { color: #cfc3dc; font-size: .97rem; }
.panel dl {
  margin: 1.6rem 0 0;
  display: grid;
  gap: 1rem;
}
.panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.panel dt { color: #b9a9c7; font-size: .9rem; }
.panel dd { margin: 0; font-weight: 700; text-align: right; font-size: .93rem; }

/* ------------------------------------------------------------- steps -- */

.steps {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.4rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-500);
  letter-spacing: -.02em;
  margin-bottom: .6rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: .4rem; color: var(--purple-800); }
.step p { font-size: .92rem; color: var(--ink-soft); }

/* ------------------------------------------------------------ sectors -- */

.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.05rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.chip svg { width: 17px; height: 17px; color: var(--gold-600); }

/* ---------------------------------------------------------------- faq -- */

.faq { display: grid; gap: .75rem; max-width: 860px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.faq details[open] { border-color: rgba(201, 162, 39, .55); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--purple-800);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--gold-600);
  border-bottom: 2px solid var(--gold-600);
  transform: rotate(45deg) translateY(-3px);
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq .faq-body { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); font-size: .96rem; }

/* ------------------------------------------------------------ contact -- */

.contact-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { display: grid; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .9rem;
  align-items: start;
}
.contact-item .feature-mark { width: 44px; height: 44px; }
.contact-item h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em;
                   color: var(--ink-mute); margin-bottom: .25rem; font-weight: 700; }
.contact-item a, .contact-item address {
  font-style: normal;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--purple-800);
  text-decoration: none;
  line-height: 1.5;
}
.contact-item a:hover { color: var(--gold-600); text-decoration: underline; }

.legal-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 1.2rem 1.35rem;
  font-size: .88rem;
  color: var(--ink-mute);
}
.legal-box dl { display: grid; gap: .5rem; margin: 0; }
.legal-box dl > div { display: flex; justify-content: space-between; gap: 1rem; }
.legal-box dt { font-weight: 600; }
.legal-box dd { margin: 0; color: var(--ink); font-variant-numeric: tabular-nums; }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field label { font-size: .88rem; font-weight: 700; color: var(--ink-soft); }
.field label .req { color: #b3261e; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .75rem .9rem;
  font: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: #fff;
  border-color: var(--purple-600);
  outline: none;
  box-shadow: 0 0 0 3px rgba(78, 27, 107, .12);
}
.field .hint { font-size: .8rem; color: var(--ink-mute); }
.form .btn { width: 100%; margin-top: .5rem; }
.form-foot {
  margin-top: .9rem;
  font-size: .82rem;
  color: var(--ink-mute);
  text-align: center;
  transition: color .18s var(--ease);
}
/* Gönderim sonucu: rengi de değişsin ki durum tek bakışta anlaşılsın. */
.form-foot.is-ok    { color: #1a7f4b; font-weight: 600; }
.form-foot.is-error { color: #b3261e; font-weight: 600; }

/* Bal küpü — botlar için gizli alan */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------------------------------------------------------- utilities -- */
/* Inline style yerine sınıf kullanılır: CSP'de style-src 'self' katı
   kalabilsin diye sayfalarda hiç style="" özniteliği bulunmuyor. */
.icon-sprite { display: none; }
.u-mt-lg { margin-top: 2rem; }
.u-mt-xl { margin-top: 2.5rem; }

/* ----------------------------------------------------------- sibling -- */

.sibling {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.35rem, 3vw, 1.9rem) clamp(1.35rem, 3vw, 2.2rem);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius);
}
@media (max-width: 780px) {
  .sibling { grid-template-columns: 1fr; text-align: left; }
}
.sibling h3 { font-size: 1.08rem; margin-bottom: .3rem; color: var(--purple-800); }
.sibling p { font-size: .94rem; color: var(--ink-soft); }
.sibling-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--purple-100);
  color: var(--purple-700);
}
.sibling-mark svg { width: 26px; height: 26px; }

/* ------------------------------------------------------------- ribbon -- */

.ribbon {
  background: linear-gradient(120deg, var(--purple-800), var(--purple-950));
  color: #fff;
}
.ribbon-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.75rem;
  align-items: center;
  padding-block: clamp(2.25rem, 5vw, 3.25rem);
}
@media (max-width: 780px) { .ribbon-inner { grid-template-columns: 1fr; } }
.ribbon h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.ribbon p { margin-top: .6rem; color: #cfc3dc; font-size: 1rem; }
.ribbon-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--purple-950);
  color: #b9a9c7;
  font-size: .93rem;
}
.footer-top {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  padding-block: clamp(2.75rem, 6vw, 4rem);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand img { height: 62px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { max-width: 42ch; }

.footer-col h3 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { text-decoration: none; transition: color .16s var(--ease); }
.footer-col a:hover { color: var(--gold-300); text-decoration: underline; }
.footer-col address { font-style: normal; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
}
.footer-bottom p { color: #8f7fa0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; color: #8f7fa0; }

/* --------------------------------------------------------- whatsapp -- */
/* Yüzen WhatsApp butonu şu an sayfalarda YOK — telefon numarası belli olmadığı
   için kaldırıldı. Stil, numara eklendiğinde tekrar kullanılmak üzere duruyor
   (bkz. docs/telefon-ekleme.md). */

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
  transition: transform .18s var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

/* ------------------------------------------------------- reveal anim -- */

/* İçerik VARSAYILAN OLARAK GÖRÜNÜRDÜR. Gizleme yalnızca <html class="js">
   varken devreye girer — bu sınıfı sayfanın başındaki küçük script ekler.
   Böylece JS yüklenmezse, hata verirse ya da IntersectionObserver desteklenmezse
   sayfanın yarısı boş kalmaz; en kötü ihtimalle animasyon olmaz. */
.reveal {
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------- print -- */

@media print {
  .site-header, .wa-float, .ribbon, .form, .nav-toggle { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .hero { background: none; color: #000; }
}
