/* ============================================================
   Valestra Sigorta — tasarım sistemi
   Yön: klasik-güven / "premium kurumsal". Palet doğrudan logodan
   türetilmiştir: lacivert #1B2847 + beyaz, şampanya altını vurgu,
   sıcak krem kağıt zemin. Tipografi: Cormorant Garamond (logonun
   Trajan benzeri serifine yakın) + Manrope gövde.

   TEK KAYNAK-DOĞRU: bu blok tüm platformların (site, Instagram,
   TikTok, Linktree) ortak paletidir. Değişiklik burada yapılır,
   sunum/kaynak/marka.css içine de aynısı kopyalanmıştır.
   ============================================================ */

/* ============================================================
   YAZI TİPLERİ — yerel barındırma (self-host)
   ------------------------------------------------------------
   NEDEN GOOGLE CDN'İ KULLANILMIYOR
   Fontları fonts.gstatic.com'dan çekmek, her ziyaretçinin IP
   adresini Google'a aktarır. IP kişisel veridir; AB mahkemeleri
   (Münih kararı) bunu açık rıza olmadan ihlal saydı — gerekçe,
   aktarımın "zorunlu" olmaması, çünkü yerel barındırma kolay bir
   alternatif. Ayrıca çerez politikamız "üçüncü taraf aracı
   yüklenmiyor" diyor; CDN kullanmak bu beyanı yanlış kılardı.

   TEKNİK NOT
   Her iki aile de DEĞİŞKEN (variable) fonttur: tek dosya tüm
   ağırlıkları taşır, bu yüzden font-weight bir ARALIK olarak
   yazılır. Ağırlık başına ayrı dosya indirmeye gerek yoktur.

   Alt kümeler Google'ın kendi bölümlemesiyle aynı: `latin` temel
   karakterler, `latin-ext` Türkçe'nin ğ/ş/İ gibi harflerini içerir.
   unicode-range sayesinde tarayıcı yalnızca gerçekten kullanılan
   dosyayı indirir.

   Dosyalar Google Fonts'tan bir kez indirildi (SIL Open Font
   License — bkz. fonts/OFL-*.txt), çalışma zamanında dış istek yok.
   ============================================================ */

@font-face {
  font-family: "Manrope"; font-style: normal; font-weight: 200 800;
  font-display: swap;
  src: url("/static/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope"; font-style: normal; font-weight: 200 800;
  font-display: swap;
  src: url("/static/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 300 700;
  font-display: swap;
  src: url("/static/fonts/cormorant-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 300 700;
  font-display: swap;
  src: url("/static/fonts/cormorant-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* --- Marka (logodan örneklendi) --- */
  --lacivert: #1b2847;      /* logo zemini — ana marka rengi */
  --brand: #1b2847;
  --brand-600: #121b31;     /* daha koyu — hover/derin zemin */
  --brand-400: #2e3f68;     /* açık lacivert — çizgi/vurgu */
  --brand-100: #dde2ee;     /* çok açık lacivert — focus halkası */

  /* --- Altın vurgu (CTA + detay) --- */
  --accent: #c6a15b;
  --accent-600: #a8843c;
  --accent-100: #f2e8d4;
  --accent-soft: #e8d9b5;

  --ink: #131a2b;
  --ink-2: #2b3550;
  --paper: #f6f3ec;
  --paper-2: #fdfbf6;
  --card: #ffffff;
  --muted: #646b80;

  --line: rgba(27, 40, 71, 0.14);
  --line-soft: rgba(27, 40, 71, 0.08);
  --shadow-sm: 0 2px 8px rgba(27, 40, 71, 0.07);
  --shadow-md: 0 14px 40px -18px rgba(27, 40, 71, 0.32);
  --shadow-lg: 0 40px 80px -32px rgba(27, 40, 71, 0.45);

  /* koyu zemin üstü metin kademeleri */
  --on-dark: #f6f3ec;
  --on-dark-70: rgba(246, 243, 236, 0.72);
  --on-dark-50: rgba(246, 243, 236, 0.52);
  --on-dark-12: rgba(246, 243, 236, 0.14);

  --wa: #25d366;
  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.06; letter-spacing: -0.005em; margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 100px; border: 0; cursor: pointer;
  font-family: var(--sans); font-weight: 700; font-size: .98rem; line-height: 1;
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-accent { --btn-bg: var(--accent); --btn-fg: #1b2847; }
.btn-accent:hover { background: var(--accent-600); }
.btn-brand { --btn-bg: var(--brand); --btn-fg: #fff; }
.btn-brand:hover { background: var(--brand-600); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-wa { --btn-bg: var(--wa); --btn-fg: #06331b; }
.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.2) blur(10px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled { border-color: var(--line-soft); background: color-mix(in srgb, var(--paper) 94%, transparent); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--brand), var(--brand-600));
  color: var(--on-dark); font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.brand-text { font-family: var(--sans); font-size: 1.24rem; letter-spacing: -.02em; color: var(--ink); }
.brand-text em { font-style: normal; font-weight: 500; color: var(--brand); margin-left: 3px; }
.brand-light .brand-text, .brand-light .brand-text em { color: var(--on-dark); }

.nav { display: flex; gap: 30px; }
.nav a { font-weight: 600; font-size: .96rem; color: var(--ink-2); position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width .25s ease; border-radius: 2px; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

/* Telefon numarasi header'dan kaldirildi; footer ve /iletisim sayfasinda duruyor. */
.header-cta { display: flex; align-items: center; gap: 18px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 7vw, 92px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(27,40,71,.13), transparent 55%),
    radial-gradient(90% 80% at -5% 110%, rgba(198,161,91,.16), transparent 55%);
}
.hero::after { /* ince nokta dokusu */
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(27,40,71,.07) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: linear-gradient(180deg, #000, transparent 75%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }

.hero-title { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 600; margin: 20px 0 0; }
.hero-title .accent { color: var(--brand); position: relative; white-space: nowrap; }
.hero-title .accent::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .13em; height: .20em; z-index: -1;
  background: var(--accent-soft); border-radius: 3px; opacity: .85;
}
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 46ch; margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-stats { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat strong { font-family: var(--serif); font-size: 1.9rem; display: block; line-height: 1; }
.hero-stat span { font-size: .82rem; color: var(--muted); font-weight: 600; }

/* Hero kart: hızlı branş seçimi */
.hero-card {
  background: var(--card); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft);
  position: relative;
}
.hero-card h3 { font-family: var(--sans); font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; }
.hero-card .hint { font-size: .86rem; color: var(--muted); margin: 4px 0 18px; }
.quick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.quick-item {
  display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: var(--radius-sm);
  background: var(--paper-2); border: 1px solid var(--line-soft); cursor: pointer;
  text-align: left; font-family: var(--sans); font-weight: 700; font-size: .95rem; color: var(--ink);
  transition: transform .16s ease, border-color .2s ease, box-shadow .2s ease;
}
.quick-item:hover { transform: translateY(-2px); border-color: var(--brand); box-shadow: var(--shadow-sm); }
.quick-item .qi-ikon { font-size: 1.4rem; }
.hero-card .card-foot { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: .82rem; color: var(--muted); }
.shield { color: var(--brand); font-weight: 800; }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--paper-2); }
.trust-inner { display: flex; align-items: center; gap: 32px; padding: 22px 0; flex-wrap: wrap; justify-content: space-between; }
.trust-label { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.trust-logos { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.trust-logos span {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--ink-2);
  opacity: .78; transition: opacity .2s ease;
}
.trust-logos span:hover { opacity: 1; }

/* ---------- Section base ---------- */
section.block { padding: clamp(56px, 8vw, 104px) 0; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Branch grid ---------- */
.brans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.brans-card {
  position: relative; text-align: left; cursor: pointer;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px 24px; overflow: hidden;
  transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
  font-family: var(--sans);
}
.brans-card::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, var(--brand-100), transparent 70%); opacity: 0; transition: opacity .3s ease;
}
.brans-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.brans-card:hover::before { opacity: 1; }
.brans-ikon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; font-size: 1.7rem;
  background: var(--paper); border: 1px solid var(--line-soft); margin-bottom: 18px;
}
.brans-card h3 { font-family: var(--sans); font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; }
.brans-card p { color: var(--muted); font-size: .92rem; margin: 6px 0 0; }
.brans-card .go {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-weight: 700; font-size: .9rem; color: var(--brand);
}
.brans-card .go svg { transition: transform .2s ease; }
.brans-card:hover .go svg { transform: translateX(4px); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--paper-2); border: 1px solid var(--line-soft); }
.step .num {
  counter-increment: step; font-family: var(--serif); font-size: 2.4rem; color: var(--accent); line-height: 1;
}
.step .num::before { content: "0" counter(step); }
.step h3 { font-family: var(--sans); font-weight: 800; font-size: 1.15rem; margin: 14px 0 8px; }
.step p { color: var(--muted); font-size: .96rem; }
.step-line { position: absolute; top: 46px; right: -13px; color: var(--line); z-index: 1; }

/* ---------- Why / features ---------- */
.why { background: var(--brand); color: var(--on-dark); border-radius: 32px; padding: clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.why::before { content:""; position:absolute; inset:0; background: radial-gradient(80% 120% at 100% 0, rgba(198,161,91,.20), transparent 55%); }
.why-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.why h2 { color: var(--on-dark); font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.why .eyebrow { color: var(--accent); }
.why-list { display: grid; gap: 18px; margin-top: 8px; }
.why-item { display: flex; gap: 16px; }
.why-item .tick { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; background: rgba(198,161,91,.16); color: var(--accent); display: grid; place-items: center; font-weight: 800; }
.why-item h4 { font-family: var(--sans); font-weight: 800; font-size: 1.02rem; color: var(--on-dark); }
.why-item p { color: var(--on-dark-70); font-size: .92rem; margin: 3px 0 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  padding: 4px 22px; transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 0; font-family: var(--sans); font-weight: 700; font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: 0 0 auto; transition: transform .25s ease; color: var(--brand); font-size: 1.3rem; }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq p.answer { color: var(--muted); margin: 0 0 20px; font-size: .98rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; background: linear-gradient(150deg, var(--brand-400), var(--brand-600)); color: #fff; border-radius: 32px; padding: clamp(44px, 6vw, 72px); position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px); background-size: 22px 22px; opacity:.5; }
.cta-band h2 { position: relative; color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-band p { position: relative; color: rgba(255,255,255,.85); max-width: 52ch; margin: 16px auto 30px; }
.cta-band .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand); color: rgba(246,243,236,.82); padding: 64px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-size: .92rem; margin: 14px 0 0; max-width: 34ch; }
.footer-muted { color: var(--on-dark-50) !important; font-size: .85rem; }
.footer-col h4 { font-family: var(--sans); font-weight: 800; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: .94rem; padding: 5px 0; color: var(--on-dark-70); }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--on-dark-12); font-size: .82rem; color: var(--on-dark-50); }

/* ---------- Simple content pages ---------- */
.page-hero { padding: clamp(48px, 7vw, 88px) 0 clamp(32px, 4vw, 48px); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-top: 16px; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 60ch; margin-top: 16px; }
.prose { max-width: 760px; }
.prose h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.prose p { color: var(--ink-2); margin: 0 0 16px; }
.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 30px 0; }
.info-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px; }
.info-card .ic-ikon { font-size: 1.6rem; }
.info-card h3 { font-family: var(--sans); font-weight: 800; font-size: 1.05rem; margin: 12px 0 6px; }
.info-card p { color: var(--muted); font-size: .93rem; margin: 0; }
.info-card a { color: var(--brand); font-weight: 700; }

/* ============================================================
   Teklif modalı + dinamik form
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(19, 26, 43, .58); backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; animation: fade .2s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--paper-2); border-radius: 26px; width: min(560px, 100%);
  max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  animation: pop .28s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes pop { from { transform: translateY(16px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }

.modal-head { position: sticky; top: 0; background: var(--paper-2); padding: 24px 28px 16px; border-bottom: 1px solid var(--line-soft); z-index: 2; }
.modal-head .mh-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.modal-head .mh-ikon { font-size: 1.8rem; }
.modal-head h3 { font-family: var(--serif); font-size: 1.5rem; margin-top: 10px; }
.modal-head p { color: var(--muted); font-size: .9rem; margin: 4px 0 0; }
.modal-close { background: var(--paper); border: 1px solid var(--line); width: 38px; height: 38px; border-radius: 11px; cursor: pointer; font-size: 1.1rem; color: var(--ink); display: grid; place-items: center; transition: background .2s; }
.modal-close:hover { background: #fff; }

.modal-body { padding: 22px 28px 28px; }
.form-row { margin-bottom: 16px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label.fld { display: block; }
label.fld span { display: block; font-weight: 700; font-size: .84rem; margin-bottom: 6px; color: var(--ink-2); }
label.fld .yardim { font-weight: 500; font-size: .78rem; color: var(--muted); margin-top: 4px; }
.input {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--line);
  background: #fff; font-family: var(--sans); font-size: 1rem; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-100); }

.kvkk { display: flex; gap: 12px; align-items: flex-start; padding: 14px; background: var(--paper); border-radius: 12px; border: 1px solid var(--line-soft); margin: 20px 0 6px; }
.kvkk input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--brand); flex: 0 0 auto; }
.kvkk label { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.kvkk a { color: var(--brand); font-weight: 700; text-decoration: underline; }

.form-error { display: none; background: #fdecec; color: #a12727; border: 1px solid #f3c6c6; border-radius: 12px; padding: 12px 14px; font-size: .9rem; font-weight: 600; margin-bottom: 14px; }
.form-error.show { display: block; }

/* Honeypot tuzağı (bkz. app.js honeypotHTML).
   `display:none` KULLANILMAZ: bazı botlar gizli alanları atlar. Ekran dışına
   taşımak, insan için görünmez ama bot için "normal" bir alan bırakır. */
.tuzak {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* Sonuç ekranı (teklif kartları) */
.result-head { text-align: center; padding: 6px 0 20px; }
.result-head .badge { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-100); color: var(--brand-600); font-weight: 700; font-size: .8rem; padding: 7px 14px; border-radius: 100px; }
.result-head h3 { font-family: var(--serif); font-size: 1.6rem; margin: 14px 0 6px; }
.result-head p { color: var(--muted); font-size: .92rem; }
/* Örnek prim uyarısı — mock sağlayıcı devredeyken fiyat listesinin ÜSTÜNDE.
   Altın zemin + lacivert metin: paletin kuralı gereği altın üstüne beyaz
   yazılmaz (kontrast 2.1:1). Bu haliyle 8.9:1 — AAA. */
.ornek-uyari {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--accent-100); border: 1.5px solid var(--accent-soft);
  border-left: 4px solid var(--accent-600);
  border-radius: var(--radius-sm); padding: 13px 15px; margin: 4px 0 2px;
  font-size: .855rem; line-height: 1.5; color: var(--ink-2);
}
.ornek-uyari strong { display: block; color: var(--brand); font-weight: 800; margin-bottom: 2px; }
.ornek-uyari .ou-ikon {
  flex: 0 0 21px; height: 21px; margin-top: 1px;
  display: grid; place-items: center;
  background: var(--accent-600); color: #fff;
  border-radius: 50%; font-weight: 800; font-size: .8rem; line-height: 1;
}

.offer-list { display: grid; gap: 12px; margin: 18px 0; }
/* Örnek modda "en uygun" vurgusunu kıs: gerçek bir karşılaştırma değil. */
.offer-list.ornek .offer:first-child { border-color: var(--line-soft); box-shadow: none; }
.offer {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: #fff; border: 1.5px solid var(--line-soft); border-radius: 14px; padding: 16px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.offer:first-child { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-100); }
.offer .o-firma { font-weight: 800; font-size: 1rem; }
.offer .o-urun { font-size: .8rem; color: var(--muted); }
.offer .o-prim { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.offer .o-prim small { font-family: var(--sans); font-size: .72rem; font-weight: 700; color: var(--muted); display: block; text-align: right; }
.best-tag { font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--brand); }
.result-actions { display: grid; gap: 10px; margin-top: 18px; }
.result-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 12px; }

.spinner { width: 44px; height: 44px; border: 4px solid var(--accent-100); border-top-color: var(--accent-600); border-radius: 50%; animation: spin 1s linear infinite; margin: 30px auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-wrap { text-align: center; padding: 20px 0 40px; }
.loading-wrap p { color: var(--muted); font-weight: 600; }

/* ---------- Reveal on load ---------- */
.reveal { opacity: 0; transform: translateY(18px); animation: reveal .7s cubic-bezier(.2,.7,.3,1) forwards; }
@keyframes reveal { to { opacity: 1; transform: none; } }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .15s; } .d3 { animation-delay: .25s; }
.d4 { animation-delay: .35s; } .d5 { animation-delay: .45s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: 2; }
  .brans-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step-line { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .info-cards { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 560px) {
  .brans-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   CİLA KATMANI — logo entegrasyonu + kurumsal rötuşlar
   (2026-07-26, gerçek logo eklendikten sonra)
   ============================================================ */

/* ---------- Logolu marka kilidi ---------- */
.brand-logo { height: 34px; width: auto; display: block; }
/* Header logosu arka plan görselidir (bkz. base.html): tarayıcı gizli olanı
   indirmesin diye. Oran 793×200 → 3.965; yükseklikten genişlik türetilir. */
.site-header .brand-logo {
  width: 135px; height: 34px;
  background-repeat: no-repeat; background-position: left center; background-size: contain;
}
.site-footer .brand-logo { height: 48px; }
.brand-divider { width: 1px; height: 26px; background: var(--line); }
.brand-tag {
  font-family: var(--sans); font-weight: 700; font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
  line-height: 1.25; max-width: 8ch;
}
.brand-light .brand-tag { color: var(--accent-soft); }
.brand-light .brand-divider { background: var(--on-dark-12); }

/* ---------- Altın ince çizgi (bölüm ayracı) ---------- */
.rule-gold {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, var(--accent) 22%, var(--accent) 78%, transparent);
  opacity: .5;
}

/* ---------- Header: altın alt vurgu + daha yumuşak geçiş ---------- */
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.site-header.scrolled::after { opacity: .55; }
.header-inner { position: relative; }

/* ---------- Hero: logo filigranı + altın rozet ---------- */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 9px; border-radius: 100px;
  background: var(--card); border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  font-size: .8rem; font-weight: 700; color: var(--ink-2);
}
.hero-badge .hb-ikon {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent-100); color: var(--accent-600); font-size: .72rem; font-weight: 900;
}
/* (.hero-watermark kaldırıldı — yerini .hero-monogram + .site-backdrop aldı) */

/* ---------- Trust strip: metin logolar için altın ayraç ---------- */
.trust-logos span { position: relative; letter-spacing: .01em; }
.trust-logos span + span::before {
  content: ""; position: absolute; left: -15px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: .55;
}

/* ---------- Branş kartı: altın üst şerit ---------- */
.brans-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.brans-card:hover::after { transform: scaleX(1); }
.brans-card .go { color: var(--accent-600); }

/* ---------- Adım numaraları: altın ---------- */
.step .num { color: var(--accent-600); }

/* ---------- CTA bandı: altın buton kontrastı ---------- */
.cta-band .btn-accent { --btn-bg: var(--accent-soft); --btn-fg: #1b2847; }
.cta-band .btn-accent:hover { background: #ffffff; }


/* ---------- Footer: logo bloğu + sosyal ikonlar ---------- */
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--on-dark-12); color: var(--on-dark);
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.footer-social a:hover { background: var(--accent); color: #1b2847; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.site-footer { position: relative; }
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-600), var(--accent), var(--accent-600));
  opacity: .8;
}

/* ---------- Yüzen WhatsApp butonu ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 18px 13px 15px; border-radius: 100px;
  background: var(--wa); color: #06331b; font-weight: 800; font-size: .92rem;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, .6);
  transition: transform .2s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(37, 211, 102, .7); }
.wa-float svg { width: 22px; height: 22px; }
@media (max-width: 560px) {
  .wa-float { right: 14px; bottom: 14px; padding: 14px; }
  .wa-float span { display: none; }
}

/* ---------- Görünürlüğe girince ortaya çık (IntersectionObserver) ---------- */
.io { opacity: 0; transform: translateY(22px); transition: opacity .65s cubic-bezier(.2,.7,.3,1), transform .65s cubic-bezier(.2,.7,.3,1); }
.io.in { opacity: 1; transform: none; }

/* ---------- Menüyü atlama bağlantısı ---------- */
/* Görünmez ama DOM'da ilk sırada: Tab'a basan kullanıcı ilk bunu bulur ve
   header'ı atlayıp doğrudan içeriğe geçer. Odaklanınca görünür olur. */
.atla {
  position: fixed; top: 10px; left: 10px; z-index: 300;
  transform: translateY(-160%);
  padding: 12px 20px; border-radius: 100px;
  background: var(--brand); color: var(--on-dark);
  font-weight: 700; font-size: .92rem; box-shadow: var(--shadow-md);
  transition: transform .2s ease;
}
.atla:focus { transform: none; outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Odak görünürlüğü (erişilebilirlik) ---------- */
:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 2px solid var(--accent-600); outline-offset: 3px; border-radius: 6px;
}

/* ---------- Seçim rengi ---------- */
::selection { background: var(--accent-soft); color: var(--brand); }

@media (max-width: 960px) {
  .brand-tag, .brand-divider { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .io { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   TEMİNAT BELGELERİ — teklif modalında şirketlerin resmî PDF'leri
   (server/services/documents.py -> app.js belgelerHTML)
   ============================================================ */
.belgeler {
  margin-top: 20px; padding: 0 16px;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
}
.belgeler summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 0; font-weight: 800; font-size: .94rem; color: var(--ink);
}
.belgeler summary::-webkit-details-marker { display: none; }
.belgeler summary::after {
  content: "+"; font-size: 1.25rem; font-weight: 700; color: var(--accent-600);
  transition: transform .25s ease; line-height: 1;
}
.belgeler[open] summary::after { transform: rotate(45deg); }
.belge-sayi {
  margin-left: auto; margin-right: 4px;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 999px;
  background: var(--accent-100); color: var(--accent-600);
}
.belge-not {
  font-size: .8rem; color: var(--muted); line-height: 1.5;
  margin: 0 0 14px; padding-top: 2px; border-top: 1px solid var(--line-soft);
}

.belge-grup { margin-bottom: 14px; }
.belge-sirket {
  font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 7px;
}
.belge {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; margin-bottom: 6px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--line-soft);
  transition: border-color .18s ease, transform .18s ease, box-shadow .2s ease;
}
.belge:hover { border-color: var(--accent); transform: translateX(2px); box-shadow: var(--shadow-sm); }
.belge-ikon {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--brand); color: var(--accent-soft);
  font-size: .58rem; font-weight: 800; letter-spacing: .06em;
}
.belge-yazi { flex: 1 1 auto; min-width: 0; }
.belge-ad {
  display: block; font-size: .86rem; font-weight: 700; color: var(--ink); line-height: 1.35;
}
.belge-tur { display: block; font-size: .74rem; color: var(--muted); margin-top: 2px; }
.belge-ok { flex: 0 0 auto; color: var(--accent-600); font-size: .95rem; opacity: .7; }
.belge:hover .belge-ok { opacity: 1; }
svg.belge-ok { width: 16px; height: 16px; }

@media (max-width: 560px) {
  .belge-ad { font-size: .82rem; }
  .belgeler summary { font-size: .88rem; }
}

/* ============================================================
   TEMİNAT KAPSAMI — "bu sigorta bana ne sağlar" (teklif sonucu)
   ============================================================ */
.teminatlar {
  margin-top: 20px; padding: 18px;
  background: var(--paper-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
}
.tem-baslik { font-family: var(--serif); font-size: 1.22rem; color: var(--ink); }
.tem-ozet { font-size: .88rem; font-weight: 700; color: var(--ink-2); margin: 6px 0 15px; line-height: 1.45; }

.tem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tem-kol + .tem-kol { padding-left: 18px; border-left: 1px solid var(--line-soft); }
.tem-etiket {
  font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 8px;
}
.tem-etiket.temel { color: var(--brand); }
.tem-etiket.ek { color: var(--accent-600); }

.tem-liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.tem-liste li {
  position: relative; padding-left: 19px;
  font-size: .82rem; line-height: 1.4; color: var(--ink-2);
}
/* Madde işareti maskeyle çizilir, "✓" karakteriyle değil: karakter sistem
   yazı tipinden gelir (Windows/macOS/Android'de farklı kalınlık, kimi
   Android sürümünde renkli emoji). Maske her yerde aynı çizgiyi verir ve
   rengi background-color'dan alır. */
.tem-liste li::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 12px; height: 12px; background-color: var(--brand);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.tem-liste li.ek::before {
  background-color: var(--accent-600);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}
.tem-yok { font-size: .8rem; color: var(--muted); line-height: 1.45; }

.tem-uyari {
  margin-top: 15px; padding: 12px 14px; border-radius: 10px;
  background: var(--accent-100); border-left: 3px solid var(--accent);
  font-size: .8rem; line-height: 1.5; color: var(--ink-2);
}
.tem-uyari strong {
  display: block; font-size: .66rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--accent-600); margin-bottom: 4px;
}

/* ---------- Teklif PDF'i indir ---------- */
.pdf-indir {
  display: flex; align-items: center; gap: 13px;
  margin-top: 14px; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--card); border: 1.5px solid var(--brand);
  transition: background .18s ease, transform .18s ease, box-shadow .22s ease;
}
.pdf-indir:hover {
  background: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.pdf-ikon {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--brand); color: var(--accent-soft);
  font-size: .6rem; font-weight: 800; letter-spacing: .05em;
  transition: background .18s ease, color .18s ease;
}
.pdf-indir:hover .pdf-ikon { background: var(--accent); color: var(--brand); }
.pdf-yazi { flex: 1 1 auto; font-size: .92rem; font-weight: 600; color: var(--ink); transition: color .18s ease; }
.pdf-yazi strong { font-weight: 800; color: var(--brand); transition: color .18s ease; }
.pdf-indir:hover .pdf-yazi, .pdf-indir:hover .pdf-yazi strong { color: var(--on-dark); }
.pdf-ok { flex: 0 0 auto; font-size: 1.05rem; font-weight: 800; color: var(--accent-600); transition: color .18s ease; }
.pdf-indir:hover .pdf-ok { color: var(--accent-soft); }

@media (max-width: 560px) {
  .tem-grid { grid-template-columns: 1fr; gap: 14px; }
  .tem-kol + .tem-kol { padding-left: 0; border-left: 0; padding-top: 14px; border-top: 1px solid var(--line-soft); }
}

/* ============================================================
   İKON SİSTEMİ  (templates/_ikonlar.html)
   ------------------------------------------------------------
   Emoji yerine tek SVG sprite. `currentColor` ile bulunduğu bağlamın
   rengini alır; boyut font-size'a değil açık width/height'a bağlıdır
   ki her yerde aynı optik ağırlıkta dursun.
   ============================================================ */
.ikon {
  width: 1.25em; height: 1.25em;
  flex: 0 0 auto; display: inline-block; vertical-align: -0.28em;
  color: inherit;
  /* ÖNEMLİ: çizim nitelikleri BURADA tanımlanmalı, sprite'ın <svg> kökünde
     değil. <use> gölge ağacı, sprite kökünün sunum niteliklerini değil
     kendisini çağıran elemanın kalıtımını alır; kökte bırakılırsa ikonlar
     çizgi yerine dolu siyah leke olarak görünür. */
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Branş kartı: kutunun içinde lacivert çizgi ikon, hover'da altın */
.brans-ikon { color: var(--brand); transition: color .22s ease, background .22s ease, border-color .22s ease; }
.brans-ikon .ikon { width: 27px; height: 27px; }
.brans-card:hover .brans-ikon { color: var(--accent-600); background: #fff; border-color: var(--accent-soft); }

/* Hero hızlı seçim listesi */
.quick-item .qi-ikon { display: grid; place-items: center; color: var(--brand); font-size: 1rem; }
.quick-item .qi-ikon .ikon { width: 22px; height: 22px; }
.quick-item:hover .qi-ikon { color: var(--accent-600); }

/* Hero rozeti, KVKK kilidi ve "neden biz" tikleri */
.hero-badge .hb-ikon .ikon { width: 13px; height: 13px; vertical-align: -0.15em; }
.shield .ikon { width: 15px; height: 15px; vertical-align: -0.2em; }
.why-item .tick .ikon { width: 16px; height: 16px; vertical-align: -0.2em; }

/* İletişim / hakkımızda kartları */
.info-card .ic-ikon { color: var(--brand); }
.info-card .ic-ikon .ikon { width: 26px; height: 26px; }

/* Teklif modalı */
.modal-head .mh-ikon { color: var(--brand); line-height: 0; }
.modal-head .mh-ikon .ikon { width: 30px; height: 30px; }
.modal-close svg { width: 15px; height: 15px; }

/* Kart içi "Teklif al →" oku */
.brans-card .go .ikon { width: 15px; height: 15px; }

/* Metin bağlantısı (bölüm başlığı altındaki rehber linki) */
.metin-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-weight: 700; font-size: .93rem; color: var(--accent-600);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: border-color .2s ease, gap .2s ease;
}
.metin-link:hover { border-color: var(--accent); gap: 11px; }
.metin-link .ikon { width: 15px; height: 15px; }
/* Aynı görünüm <button> üzerinde de kullanılıyor (ör. "Çerez Tercihlerini Aç");
   tarayıcının varsayılan çerçeve/zemin/yazı tipini sıfırla. */
button.metin-link {
  background: none; border: 0; border-bottom: 1.5px solid transparent;
  padding: 0 0 2px; font-family: var(--sans); cursor: pointer;
}

/* Branş sayfalarına iç bağlantı şeridi (ana sayfa) */
.brans-linkleri { margin: 14px 0 0; font-size: .82rem; line-height: 1.9; color: var(--muted); }
.brans-linkleri a { color: var(--muted); border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.brans-linkleri a:hover { color: var(--brand); border-color: var(--accent); }

/* ============================================================
   MARKA FİLİGRANI — sayfanın arkasındaki lacivert monogram
   ------------------------------------------------------------
   Sabit konumlu, çok düşük opaklıkta: kağıt zemine "kabartma mühür"
   hissi verir. Opaklık .05'in üstüne çıkarılmamalı — metin
   kontrastını (WCAG AA) bozar.
   ============================================================ */
.site-backdrop {
  position: fixed; inset: 0; z-index: -3; overflow: hidden; pointer-events: none;
  /* Lacivert atmosfer: köşelerden gelen çok yumuşak marka rengi yıkaması */
  background:
    radial-gradient(70% 55% at 50% 100%, rgba(27, 40, 71, .10), transparent 70%),
    radial-gradient(55% 45% at 100% 0%, rgba(27, 40, 71, .07), transparent 70%);
}
.backdrop-monogram {
  position: absolute; left: 50%; top: 50%;
  width: min(105vh, 88vw); height: auto;
  transform: translate(-50%, -50%);
  opacity: .045;
  filter: saturate(1.15);
}

/* ============================================================
   SİGORTA REHBERİ SAYFASI  (/sigortalar)
   ============================================================ */
.rehber-hero p em { font-style: normal; color: var(--brand); font-weight: 700; }
/* Branş sayfasındaki "← Sigorta Rehberi" üst bağlantısı */
.ust-link { color: inherit; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.ust-link:hover { border-color: currentColor; }
/* Tek branş sayfasında panel doğrudan künyeyle başlar; üstteki boşluk fazla gelir */
.rehber-blok > .rb-kunye:first-child { margin-top: 0; }
.rehber-ozet-kutu {
  display: flex; gap: 13px; align-items: flex-start; max-width: 68ch;
  margin-top: 26px; padding: 15px 18px; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.rehber-ozet-kutu .ikon { width: 20px; height: 20px; color: var(--accent-600); margin-top: 2px; }
.rehber-ozet-kutu p { margin: 0; font-size: .88rem; line-height: 1.55; color: var(--ink-2); }

/* ---------- Yapışkan sekme şeridi ----------
   Sekme davranışını JavaScript ekler (bkz. sigortalar.html). JS yoksa bu
   şerit sıradan bir çapa listesi, paneller de alt alta duran bölümlerdir —
   `.sekmeli` sınıfı ancak script çalıştığında eklenir. */
.rehber-sekmeler {
  position: sticky; top: 74px; z-index: 40;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: saturate(1.2) blur(10px);
  border-block: 1px solid var(--line-soft);
}
.sekme-serit {
  display: flex; gap: 8px; padding: 11px 0; overflow-x: auto;
  scrollbar-width: thin; scroll-snap-type: x proximity;
}
.sekme-serit::-webkit-scrollbar { height: 4px; }
.sekme-serit::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.sekme {
  display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto;
  padding: 9px 15px; border-radius: 100px; scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--line-soft);
  font-size: .86rem; font-weight: 700; color: var(--ink-2); white-space: nowrap;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .18s ease;
}
.sekme .ikon { width: 17px; height: 17px; color: var(--brand); transition: color .2s ease; }
.sekme:hover { border-color: var(--brand); color: var(--ink); transform: translateY(-1px); }

/* Açık sekme: lacivert dolgu + altın ikon — hangi branşta olduğunuz
   şeridin neresine kaydırırsanız kaydırın tek bakışta belli olsun. */
.sekme.acik {
  background: var(--brand); border-color: var(--brand); color: var(--on-dark);
  box-shadow: var(--shadow-sm); transform: none;
}
.sekme.acik .ikon { color: var(--accent-soft); }
.sekme.acik:hover { transform: none; }

/* ---------- Branş paneli ---------- */
.rehber-govde { padding: clamp(40px, 6vw, 72px) 0 clamp(20px, 3vw, 36px); }
.rehber-blok {
  scroll-margin-top: 140px;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 26px;
  padding: clamp(24px, 3.4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.rehber-blok:focus { outline: none; }
.rehber-blok[hidden] { display: none; }
/* Sekme modunda paneller tek tek gösterilir; JS'siz görünümde alt alta
   dizildikleri için aradaki boşluk yalnızca o durumda gerekir. */
.rehber-blok + .rehber-blok { margin-top: 22px; }
.rehber-govde.sekmeli .rehber-blok + .rehber-blok { margin-top: 0; }

/* Sekme değişince panel yumuşak girsin — sayfanın "yer değiştirdiği"
   anlaşılsın ama okumayı geciktirmesin (180 ms). */
.panel-acildi { animation: panel-gir .18s cubic-bezier(.2, .7, .3, 1) both; }
@keyframes panel-gir { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .panel-acildi { animation: none; } }

.rb-head { display: flex; align-items: flex-start; gap: 18px; flex-wrap: wrap; }
.rb-ikon {
  flex: 0 0 auto; width: 58px; height: 58px; border-radius: 17px;
  display: grid; place-items: center; color: var(--brand);
  background: var(--paper); border: 1px solid var(--line-soft);
}
.rb-ikon .ikon { width: 30px; height: 30px; }
.rb-baslik { flex: 1 1 260px; min-width: 0; }
.rb-baslik h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
.rb-baslik p { margin: 5px 0 0; color: var(--muted); font-size: .95rem; }

.rb-rozet {
  display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto;
  padding: 8px 15px; border-radius: 100px;
  font-size: .78rem; font-weight: 800;
}
.rb-rozet .ikon { width: 15px; height: 15px; }
.rb-rozet.zorunlu { background: var(--brand); color: var(--accent-soft); }
.rb-rozet.istege-bagli { background: var(--accent-100); color: var(--accent-600); }

.rb-nedir {
  margin: 22px 0 0; max-width: 78ch;
  font-size: 1.04rem; line-height: 1.68; color: var(--ink-2);
}

/* ---------- Künye: süre / zorunluluk / işlem hızı ---------- */
.rb-kunye {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 26px; border-radius: var(--radius-sm);
  background: var(--paper-2); border: 1px solid var(--line-soft); overflow: hidden;
}
.rb-kunye-hucre { display: flex; gap: 12px; padding: 18px; }
.rb-kunye-hucre + .rb-kunye-hucre { border-left: 1px solid var(--line-soft); }
.rb-kunye-hucre > .ikon { width: 20px; height: 20px; color: var(--accent-600); margin-top: 2px; }
.k-etiket {
  display: block; font-size: .66rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
}
.rb-kunye-hucre strong { display: block; font-size: 1rem; margin: 3px 0 5px; color: var(--ink); }
.k-not { display: block; font-size: .8rem; line-height: 1.5; color: var(--muted); }

/* ---------- İkili kart düzeni: kimler için / ne öder ---------- */
.rb-ikili { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
.rb-kart {
  padding: 20px; border-radius: var(--radius-sm);
  background: var(--paper-2); border: 1px solid var(--line-soft);
}
.rb-kart-baslik {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 800; font-size: .98rem; color: var(--ink);
  margin-bottom: 14px;
}
.rb-kart-baslik .ikon { width: 19px; height: 19px; color: var(--brand); }
.rb-ozet { font-size: .87rem; font-weight: 700; color: var(--ink-2); margin: 0 0 15px; line-height: 1.5; }

.rb-liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.rb-liste li {
  position: relative; padding-left: 26px;
  font-size: .89rem; line-height: 1.55; color: var(--ink-2);
}
.rb-liste.kisi li::before {
  content: ""; position: absolute; left: 6px; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.rb-liste.sayili { counter-reset: ipucu; }
.rb-liste.sayili li { padding-left: 32px; }
.rb-liste.sayili li::before {
  counter-increment: ipucu; content: counter(ipucu);
  position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px; border-radius: 7px;
  display: grid; place-items: center;
  background: var(--brand-100); color: var(--brand-600);
  font-size: .7rem; font-weight: 800;
}
.rb-degil {
  margin: 15px 0 0; padding-top: 13px; border-top: 1px dashed var(--line);
  font-size: .84rem; line-height: 1.55; color: var(--muted);
}
.rb-degil strong { color: var(--ink-2); }

.rb-bilgi { margin-top: 18px; }
.rb-uyari { margin-top: 18px; }
.rb-uyari strong { display: flex; align-items: center; gap: 6px; }
.rb-uyari strong .ikon { width: 13px; height: 13px; }

/* ---------- Alt şerit: belgeler + teklif düğmesi ---------- */
.rb-alt { display: flex; align-items: flex-start; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.rb-belgeler { flex: 1 1 320px; margin-top: 0; }
.rb-cta { flex: 0 0 auto; align-self: flex-start; }
.rb-cta .ikon { width: 15px; height: 15px; }

/* ---------- Karşılaştırma tablosu ---------- */
.tablo-kaydir { overflow-x: auto; border-radius: var(--radius-sm); border: 1px solid var(--line-soft); background: var(--card); }
.rehber-tablo { width: 100%; border-collapse: collapse; min-width: 720px; }
.rehber-tablo th {
  text-align: left; padding: 14px 16px; background: var(--brand); color: var(--accent-soft);
  font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.rehber-tablo td { padding: 14px 16px; border-top: 1px solid var(--line-soft); font-size: .89rem; color: var(--ink-2); vertical-align: middle; }
.rehber-tablo tbody tr:hover { background: var(--paper-2); }
.rehber-tablo .t-ad { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.rehber-tablo .t-ad .ikon { width: 19px; height: 19px; color: var(--brand); }
.rehber-tablo .t-ad a:hover { color: var(--brand); text-decoration: underline; }
.rehber-tablo .t-ozet { color: var(--muted); }
.rehber-tablo .t-cta a { font-weight: 800; color: var(--accent-600); white-space: nowrap; }
.rehber-tablo .t-cta a:hover { text-decoration: underline; }
.t-rozet {
  display: inline-block; padding: 5px 11px; border-radius: 100px;
  font-size: .72rem; font-weight: 800; white-space: nowrap;
}
.t-rozet.zorunlu { background: var(--brand); color: var(--accent-soft); }
.t-rozet.istege-bagli { background: var(--accent-100); color: var(--accent-600); }
.tablo-not { margin: 18px auto 0; max-width: 74ch; text-align: center; font-size: .85rem; line-height: 1.6; color: var(--muted); }

/* Not: .site-header her genişlikte 74px yüksekliğinde sabit durur (menü
   linkleri gizlense de), bu yüzden sekme şeridinin top değeri mobilde de
   74px kalmalı — 0 yapılırsa şerit header'ın altına kayar. */
@media (max-width: 960px) {
  .rb-kunye { grid-template-columns: 1fr; }
  .rb-kunye-hucre + .rb-kunye-hucre { border-left: 0; border-top: 1px solid var(--line-soft); }
  .rb-ikili { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .rb-head { gap: 14px; }
  .rb-ikon { width: 48px; height: 48px; border-radius: 14px; }
  .rb-ikon .ikon { width: 25px; height: 25px; }
  .rb-cta { width: 100%; }
  .backdrop-monogram { width: 130vw; opacity: .04; }
}

/* ============================================================================
   LACİVERT TEPE KATMANI
   ----------------------------------------------------------------------------
   Sayfanın üst bandı (header + hero) markanın laciverti, gövde krem kağıt.
   Klasik kurumsal desen: logo kendi zemininde durur, altın vurgular koyuda
   parlar, uzun okuma alanı ise açık kalıp gözü yormaz.

   Bu blok bilinçli olarak dosyanın SONUNDA durur; yukarıdaki temel kuralları
   ezerek çalışır, böylece açık tema tanımları tek yerde bozulmadan kalır.
   ============================================================================ */

/* ---------- Header: hero üstünde şeffaf, kaydırınca krem ---------- */
.site-header { background: transparent; border-bottom-color: transparent; }
.site-header.scrolled {
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-color: var(--line-soft);
}

/* Hero üstünde beyaz, krem zemine oturunca lacivert logo.
   Arka plan görseli olduğu için tarayıcı yalnızca o an geçerli olanı indirir. */
.site-header .brand-logo { background-image: url("/static/marka/logo-yatay-beyaz.webp"); }
.site-header.scrolled .brand-logo { background-image: url("/static/marka/logo-yatay-lacivert.webp"); }

/* Koyu zemindeki header metinleri */
.site-header:not(.scrolled) .nav a,
.site-header:not(.scrolled) .nav a:hover { color: #fff; }
.site-header:not(.scrolled) .brand-tag { color: var(--accent-soft); }
.site-header:not(.scrolled) .brand-divider { background: var(--on-dark-12); }

/* ---------- Hero blokları: derin lacivert ---------- */
.hero,
.page-hero {
  position: relative;
  /* isolation: negatif z-index'li süsler hero'nun ARKASINA düşmesin diye
     kendi yığın bağlamını kurar. */
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 80% -20%, #2b3c66 0%, transparent 58%),
    linear-gradient(168deg, #141d33 0%, var(--lacivert) 46%, #101827 100%);
  color: var(--on-dark);
  /* Header sticky ve saydam; lacivert onun ARKASINA uzanmalı, yoksa tepede
     krem bir şerit kalır ve beyaz logo görünmez olur. Negatif margin ile
     header'ın kapladığı 74 px geri alınır, aynı miktar padding'e eklenir. */
  margin-top: -74px;
}
.hero { padding-top: calc(74px + clamp(52px, 8vw, 104px)); }
.page-hero {
  padding-top: calc(74px + clamp(44px, 6vw, 82px));
  padding-bottom: clamp(44px, 6vw, 68px);
}

/* Koyu bant içindeki açık kartlar rengi MİRAS ALMAMALI: .hero color'ı
   on-dark, kart zemini beyaz — devralınırsa yazı beyaz üstüne beyaz düşer. */
.hero .hero-card,
.page-hero .rehber-ozet-kutu { color: var(--ink); }

/* Altın ışık yıkaması + ince nokta dokusu (mevcut ::before/::after'ı ezer) */
.hero::before,
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(70% 60% at 6% 108%, rgba(198, 161, 91, .20), transparent 62%),
    radial-gradient(46% 44% at 96% 4%, rgba(198, 161, 91, .11), transparent 62%);
}
.hero::after,
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .45;
  background-image: radial-gradient(rgba(246, 243, 236, .16) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}
/* İçerik süslerin üstünde kalsın */
.hero > .container,
.page-hero > .container { position: relative; z-index: 2; }

/* Koyu banttan krem gövdeye altın kesme çizgisi */
.hero,
.page-hero { border-bottom: 1px solid rgba(198, 161, 91, .38); }

/* ---------- Hero monogramı ---------- */
.hero-monogram {
  position: absolute; z-index: 1; pointer-events: none;
  right: -6%; top: 50%; transform: translateY(-50%);
  width: clamp(360px, 46vw, 640px); opacity: .07;
}
.page-hero .hero-monogram { right: -4%; width: clamp(300px, 34vw, 480px); opacity: .06; }

/* ---------- Koyu zemine göre tipografi ---------- */
.hero .eyebrow,
.page-hero .eyebrow { color: var(--accent-soft); }
.hero .eyebrow::before,
.page-hero .eyebrow::before { background: var(--accent); }

.hero-title { color: var(--on-dark); }
.hero-title .accent { color: var(--accent-soft); }
/* Açık zemindeki altın vurgu şeridi koyuda gereksiz — yerine ince altın alt çizgi */
.hero-title .accent::after {
  background: var(--accent); height: .07em; bottom: .04em; opacity: .55; border-radius: 2px;
}
.hero-sub { color: var(--on-dark-70); }
.hero-stat strong { color: var(--on-dark); }
.hero-stat span { color: var(--on-dark-50); }

.page-hero h1 { color: var(--on-dark); }
/* Sadece sayfa girişindeki paragraf açık renk olmalı. Genel `.page-hero p`
   yazılırsa bu bandın içindeki BEYAZ kartların (ör. .rehber-ozet-kutu)
   metnini de açık renge çevirir ve beyaz üstüne beyaz yazı çıkar. */
.page-hero > .container > p { color: var(--on-dark-70); }

/* Cam rozet */
.hero-badge {
  background: rgba(246, 243, 236, .09); border-color: var(--on-dark-12);
  color: var(--on-dark); box-shadow: none; backdrop-filter: blur(6px);
}
.hero-badge .hb-ikon { background: rgba(198, 161, 91, .22); color: var(--accent-soft); }

/* Koyu zeminde hayalet buton */
.hero .btn-ghost,
.page-hero .btn-ghost { --btn-fg: var(--on-dark); box-shadow: inset 0 0 0 1.5px var(--on-dark-12); }
.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--accent); }

/* Beyaz teklif kartı koyu zeminde yüzsün */
.hero-card { box-shadow: 0 48px 90px -34px rgba(6, 10, 22, .75); border-color: transparent; }

/* ---------- Rehber sayfası koyu başlık uyumu ---------- */
.rehber-hero p em { color: var(--accent-soft); }
.rehber-ozet-kutu { box-shadow: 0 26px 50px -28px rgba(6, 10, 22, .6); border-color: transparent; }

/* ---------- Krem gövdedeki filigran ---------- */
/* Hero artık kendi opak zeminini taşıdığı için sabit filigran yalnızca krem
   bölgede görünür; oradaki lacivert his biraz güçlendirildi. */
.site-backdrop {
  background:
    radial-gradient(75% 55% at 50% 100%, rgba(27, 40, 71, .13), transparent 72%),
    radial-gradient(55% 45% at 100% 0%, rgba(27, 40, 71, .08), transparent 70%);
}
.backdrop-monogram { opacity: .05; }

/* ---------- Tablodaki teklif düğmesi ---------- */
/* Artık bağlantı değil düğme: modalı aynı sayfada açar (bkz. _teklif_modal.html) */
.t-teklif {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--sans); font-size: .89rem; font-weight: 800;
  color: var(--accent-600); white-space: nowrap;
  transition: gap .18s ease;
}
.t-teklif .ikon { width: 14px; height: 14px; }
.t-teklif:hover { gap: 10px; text-decoration: underline; }

/* Rehber CTA bandındaki ikili düğme */
.cta-dugmeler { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-dugmeler .ikon { width: 16px; height: 16px; }

@media (max-width: 560px) {
  .hero-monogram { right: -22%; width: 118vw; opacity: .06; }
  .cta-dugmeler .btn { width: 100%; }
}

/* ============================================================================
   ÇEREZ RIZASI  (static/cerez.js)
   ----------------------------------------------------------------------------
   Bant lacivert zemin + altın kabul düğmesi. "Reddet" ile "Ayarlar" aynı
   görsel ağırlıkta duruyor: reddetmenin kabul etmek kadar kolay görünmesi
   yalnızca estetik değil, geçerli rızanın koşulu.
   ============================================================================ */
.cerez-bant {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 200;
  max-width: 1080px; margin-inline: auto;
  display: none; gap: 24px; align-items: center;
  padding: 22px 26px; border-radius: 18px;
  background: linear-gradient(150deg, var(--brand-400), var(--brand-600));
  color: var(--on-dark);
  border: 1px solid rgba(198, 161, 91, .3);
  box-shadow: 0 30px 70px -20px rgba(6, 10, 22, .7);
}
.cerez-bant.acik { display: flex; animation: cz-gir .32s cubic-bezier(.2, .8, .3, 1) both; }
@keyframes cz-gir { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.cz-yazi { flex: 1 1 auto; min-width: 0; }
.cz-yazi b {
  display: block; margin-bottom: 5px;
  font-family: var(--serif); font-size: 1.24rem; font-weight: 600; color: #fff;
}
.cz-yazi p { margin: 0; font-size: .87rem; line-height: 1.6; color: var(--on-dark-70); }
.cz-yazi a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 2px; }
.cz-yazi a:hover { color: #fff; }

.cz-dugmeler { display: flex; gap: 10px; flex: 0 0 auto; flex-wrap: wrap; }
.cz-btn {
  padding: 12px 22px; border-radius: 100px; cursor: pointer;
  border: 1.5px solid transparent;
  font-family: var(--sans); font-weight: 700; font-size: .88rem; line-height: 1;
  white-space: nowrap; transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.cz-btn-altin { background: var(--accent); color: #1b2847; }
.cz-btn-altin:hover { background: var(--accent-soft); }
.cz-btn-hayalet { background: transparent; border-color: var(--on-dark-12); color: var(--on-dark); }
.cz-btn-hayalet:hover { border-color: var(--accent); color: #fff; }

/* Bant açıkken yüzen WhatsApp düğmesi altında kalıp tıklanamıyor */
body.cerez-bandi-acik .wa-float { opacity: 0; pointer-events: none; }

/* ---------- Ayarlar modalı ---------- */
.cerez-perde {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(19, 26, 43, .58); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease;
}
.cerez-perde.acik { opacity: 1; visibility: visible; }

.cerez-modal {
  position: fixed; z-index: 220; left: 50%; top: 50%;
  transform: translate(-50%, -46%);
  width: min(560px, calc(100vw - 40px)); max-height: 88vh; overflow-y: auto;
  background: var(--paper-2); border-radius: 26px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease, transform .28s cubic-bezier(.2, .9, .3, 1.1);
}
.cerez-modal.acik { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }

.cz-bas {
  position: sticky; top: 0; z-index: 2; background: var(--paper-2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px 16px; border-bottom: 1px solid var(--line-soft);
}
.cz-bas h3 { font-family: var(--serif); font-size: 1.5rem; }
.cz-kapat {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 11px; border: 1px solid var(--line); background: var(--paper);
  color: var(--ink); cursor: pointer; transition: background .2s ease;
}
.cz-kapat:hover { background: #fff; }
.cz-kapat svg { width: 15px; height: 15px; }

.cz-govde { padding: 20px 28px; }
.cz-govde > p { margin: 0 0 16px; font-size: .89rem; line-height: 1.65; color: var(--muted); }
.cz-govde > p strong { color: var(--ink-2); }

.cz-kategori {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-top: 1px solid var(--line-soft);
}
.cz-bilgi { flex: 1 1 auto; }
.cz-bilgi b { font-size: .98rem; color: var(--ink); }
.cz-bilgi p { margin: 4px 0 0; font-size: .84rem; line-height: 1.55; color: var(--muted); }

/* Aç/kapa anahtarı */
.cz-anahtar { position: relative; flex: 0 0 auto; width: 48px; height: 27px; }
.cz-anahtar input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.cz-ray { position: absolute; inset: 0; background: var(--line); border-radius: 27px; transition: background .22s ease; }
.cz-ray::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 21px; height: 21px;
  background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(19, 26, 43, .3);
  transition: transform .22s ease;
}
.cz-anahtar input:checked + .cz-ray { background: var(--brand); }
.cz-anahtar input:checked + .cz-ray::after { transform: translateX(21px); }
/* Zorunlu kategori: açık ama kilitli olduğu belli olsun */
.cz-anahtar input:disabled + .cz-ray { background: var(--accent); opacity: .65; cursor: not-allowed; }
.cz-anahtar input:focus-visible + .cz-ray { outline: 2px solid var(--accent-600); outline-offset: 3px; }

.cz-alt {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end;
  padding: 18px 28px 24px; border-top: 1px solid var(--line-soft);
}
/* Açık zeminde hayalet düğme koyu çerçeveli olmalı */
.cz-alt .cz-btn-hayalet { border-color: var(--line); color: var(--ink); }
.cz-alt .cz-btn-hayalet:hover { border-color: var(--ink); color: var(--ink); }

/* ---------- Footer yasal şeridi ---------- */
.footer-yasal {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 26px;
  padding-top: 26px; margin-top: 34px; border-top: 1px solid var(--on-dark-12);
}
.footer-yasal a,
.footer-yasal .cerez-tercih {
  font-family: var(--sans); font-size: .86rem; color: var(--on-dark-70);
  background: none; border: 0; padding: 0; cursor: pointer;
  transition: color .2s ease;
}
.footer-yasal a:hover,
.footer-yasal .cerez-tercih:hover { color: var(--accent-soft); }
/* Yasal şerit eklendi; alt satırın kendi üst çizgisi artık gereksiz */
.footer-yasal + .footer-bottom { margin-top: 20px; border-top: 0; padding-top: 0; }

@media (max-width: 760px) {
  .cerez-bant { flex-direction: column; align-items: stretch; gap: 16px; padding: 20px; left: 12px; right: 12px; bottom: 12px; }
  .cz-dugmeler { display: grid; grid-template-columns: 1fr 1fr; }
  /* Kabul düğmesi tam satır, ama Reddet'ten daha öne çıkmıyor */
  .cz-dugmeler [data-cz="kabul"] { grid-column: 1 / -1; }
  .cz-btn { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cerez-bant.acik { animation: none; }
  .cerez-perde, .cerez-modal, .cz-ray, .cz-ray::after { transition: none; }
}

/* ============================================================================
   MOBİL MENÜ
   ----------------------------------------------------------------------------
   960 px altında .nav gizleniyordu ve yerine hiçbir şey konmamıştı; mobil
   ziyaretçi yalnızca logoyu ve "Teklif Al" düğmesini görüyordu. Sigorta
   arayanların yaklaşık dörtte üçü mobilden geldiği için bu, sitedeki en büyük
   gezinme açığıydı.

   Açılıp kapanma `hidden` niteliğiyle yapılır (CSS sınıfıyla değil): kapalıyken
   menü erişilebilirlik ağacından da çıkar, ekran okuyucu masaüstünde görünmeyen
   bağlantıları okumaz.
   ============================================================================ */
.menu-ac {
  display: none; /* yalnızca mobilde görünür */
  place-items: center; width: 42px; height: 42px;
  border-radius: 12px; border: 1px solid var(--line); background: transparent;
  color: var(--ink); cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.menu-ac .ikon { width: 20px; height: 20px; }
.menu-ac:hover { background: var(--card); }
/* Koyu hero üstündeyken header saydam: düğme de açık renk olmalı */
.site-header:not(.scrolled) .menu-ac { border-color: var(--on-dark-12); color: var(--on-dark); }
.site-header:not(.scrolled) .menu-ac:hover { background: rgba(246, 243, 236, .1); }

.mobil-perde {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(19, 26, 43, .55); backdrop-filter: blur(3px);
}

.mobil-menu {
  position: fixed; z-index: 95; top: 0; right: 0; bottom: 0;
  width: min(340px, 86vw);
  display: flex; flex-direction: column;
  background: linear-gradient(170deg, var(--brand-400), var(--brand-600));
  color: var(--on-dark);
  box-shadow: -24px 0 60px -20px rgba(6, 10, 22, .7);
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.2, .8, .3, 1);
  overflow-y: auto;
}
.mobil-menu.gir { transform: none; }

.mm-bas {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--on-dark-12);
}
.mm-baslik {
  font-size: .7rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent-soft);
}
.mm-kapat {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 11px; border: 1px solid var(--on-dark-12);
  background: transparent; color: var(--on-dark); cursor: pointer;
  transition: background .2s ease;
}
.mm-kapat:hover { background: rgba(246, 243, 236, .1); }
.mm-kapat .ikon { width: 16px; height: 16px; }

.mm-linkler { display: flex; flex-direction: column; padding: 10px 12px; flex: 1 1 auto; }
.mm-linkler a {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 12px; border-radius: 12px;
  font-weight: 700; font-size: 1.02rem; color: var(--on-dark);
  transition: background .18s ease;
}
.mm-linkler a .ikon { width: 19px; height: 19px; color: var(--accent-soft); }
.mm-linkler a:hover, .mm-linkler a:focus-visible { background: rgba(246, 243, 236, .09); }

.mm-alt {
  display: grid; gap: 12px; padding: 18px 22px 26px;
  border-top: 1px solid var(--on-dark-12);
}
.mm-iletisim {
  display: flex; align-items: center; gap: 11px;
  font-size: .92rem; font-weight: 600; color: var(--on-dark-70);
  transition: color .2s ease;
}
.mm-iletisim .ikon { width: 17px; height: 17px; color: var(--accent-soft); }
.mm-iletisim:hover { color: #fff; }

/* Menü açıkken yüzen WhatsApp düğmesi çekmecenin altında kalıyor */
body.menu-acik .wa-float { opacity: 0; pointer-events: none; }

@media (max-width: 960px) {
  .menu-ac { display: grid; }
  /* Dar ekranda "Teklif Al" + hamburger yan yana sığsın */
  .header-cta { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .mobil-menu { transition: none; }
}

/* ============================================================
   HATA SAYFASI (404 / 429 / 500)
   ------------------------------------------------------------
   Hata bir çıkmaz sokak olmamalı: ziyaretçiye üç net çıkış
   kapısı (teklif, rehber, telefon) ve branş bağlantıları
   sunulur. Düzen /iletisim ile aynı ritmi kullanır.
   ============================================================ */
.hata-yollar {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 34px 0 0;
}
.hata-linkler {
  margin-top: 46px; padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  max-width: 760px;
}
.hata-linkler h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: 1.05rem; margin: 0 0 4px;
}

/* ============================================================
   HASAR REHBERİ (/hasar)
   ------------------------------------------------------------
   Bu sayfanın kullanıcısı diğerlerinden farklı: panik hâlinde,
   muhtemelen telefonda ve tek bir cevabın peşinde. Bu yüzden
   düzen "gezinme" değil "okuma" için kurulur — senaryolar açık
   durur, acil numaralar en tepededir ve dokunma hedefleri
   büyüktür.
   ============================================================ */

/* ---------- Acil numara şeridi (hero içinde, koyu zemin) ---------- */
.hasar-acil-serit {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-top: 30px;
}
.hasar-acil-baslik {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-soft);
  width: 100%; margin-bottom: -2px;
}
.hasar-acil {
  display: flex; flex-direction: column; gap: 2px;
  padding: 11px 18px; border-radius: 14px;
  background: rgba(246, 243, 236, .09);
  box-shadow: inset 0 0 0 1px var(--on-dark-12);
  backdrop-filter: blur(6px);
  transition: background .2s ease, box-shadow .2s ease;
}
.hasar-acil:hover { background: rgba(246, 243, 236, .16); box-shadow: inset 0 0 0 1px var(--accent); }
.hasar-acil strong { font-size: 1.1rem; font-weight: 800; color: var(--on-dark); line-height: 1.1; }
.hasar-acil span { font-size: .74rem; font-weight: 700; color: var(--on-dark-50); letter-spacing: .02em; }
/* Acentenin kendi numarası ayrışmalı: asıl aranması istenen numara bu. */
.hasar-acil-biz { background: rgba(198, 161, 91, .18); box-shadow: inset 0 0 0 1px rgba(198, 161, 91, .5); }
.hasar-acil-biz strong { color: var(--accent-soft); }
.hasar-acil-biz span { color: var(--on-dark-70); }

/* ---------- "Şirketle siz uğraşmayın" bandı ---------- */
.hasar-cagri {
  display: grid; grid-template-columns: 1.6fr auto; gap: 26px; align-items: center;
  background: var(--card); border: 1px solid var(--line-soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius); padding: 26px 30px;
}
.hasar-cagri h2 { font-size: 1.5rem; margin: 0; }
.hasar-cagri p { color: var(--ink-2); margin: 10px 0 0; max-width: 62ch; }
.hasar-cagri-butonlar { display: flex; flex-direction: column; gap: 10px; }

/* ---------- Sayfa içi çapa navigasyonu ---------- */
.hasar-atlama { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hasar-atlama a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 17px; border-radius: 100px;
  background: var(--card); box-shadow: inset 0 0 0 1px var(--line);
  font-family: var(--sans); font-weight: 700; font-size: .88rem; color: var(--ink-2);
  transition: box-shadow .2s ease, color .2s ease;
}
.hasar-atlama a:hover { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--brand); }
.hasar-atlama .ikon { width: 17px; height: 17px; color: var(--accent-600, var(--accent)); }

/* Sticky header çapaya atlarken başlığı örtmesin */
.hasar-bolum { scroll-margin-top: 84px; }
.hasar-bolum .eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.hasar-bolum .eyebrow .ikon { width: 18px; height: 18px; }

/* ---------- Süre / kritik uyarı ---------- */
.hasar-uyari {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff7ea; border: 1px solid #f0dcb4;
  border-radius: 12px; padding: 14px 17px; margin: 0 0 26px;
  font-size: .93rem; color: #7a5312; max-width: 88ch;
}
.hasar-uyari .ikon { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 1px; }

/* ---------- Adımlar + yan sütun ---------- */
.hasar-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: start; }

.hasar-adimlar { list-style: none; counter-reset: adim; margin: 0; padding: 0; }
.hasar-adimlar li {
  counter-increment: adim;
  position: relative; padding: 0 0 22px 54px;
}
/* Adımları birbirine bağlayan dikey çizgi — sürecin akışını gösterir. */
.hasar-adimlar li::after {
  content: ""; position: absolute; left: 17px; top: 38px; bottom: 4px;
  width: 1px; background: var(--line);
}
.hasar-adimlar li:last-child { padding-bottom: 0; }
.hasar-adimlar li:last-child::after { display: none; }
.hasar-adimlar li::before {
  content: counter(adim);
  position: absolute; left: 0; top: 0;
  width: 35px; height: 35px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand); color: #fff;
  font-family: var(--sans); font-weight: 800; font-size: .92rem;
}
.hasar-adimlar h3 {
  font-family: var(--sans); font-weight: 800; font-size: 1.02rem;
  margin: 6px 0 6px;
}
.hasar-adimlar p { color: var(--ink-2); margin: 0; font-size: .95rem; }

.hasar-yan { display: grid; gap: 16px; position: sticky; top: 90px; }
.hasar-belge-kutu, .hasar-brans-kutu {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 22px 24px;
}
.hasar-belge-kutu h3, .hasar-brans-kutu h3 {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 800; font-size: .98rem; margin: 0 0 12px;
}
.hasar-belge-kutu .ikon { width: 18px; height: 18px; color: var(--accent-600, var(--accent)); }
.hasar-belge-kutu ul { margin: 0; padding-left: 18px; }
.hasar-belge-kutu li { color: var(--ink-2); font-size: .92rem; margin-bottom: 7px; }
.hasar-belge-kutu li:last-child { margin-bottom: 0; }
.hasar-brans-not { font-size: .88rem; color: var(--muted); margin: 12px 0 0; }

/* ---------- Haklarınız ---------- */
.hasar-hak-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.hasar-hak {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 24px 26px;
}
.hasar-hak h3 { font-family: var(--sans); font-weight: 800; font-size: 1.02rem; margin: 0 0 8px; }
.hasar-hak p { color: var(--ink-2); font-size: .94rem; margin: 0; }
.hasar-hak a { color: var(--brand); font-weight: 700; border-bottom: 1px solid var(--accent); }

.hasar-sorumluluk {
  margin: 30px 0 0; padding: 16px 20px;
  background: var(--accent-100); border-left: 3px solid var(--accent);
  border-radius: 10px; font-size: .9rem; color: var(--ink-2); max-width: 88ch;
}

@media (max-width: 900px) {
  .hasar-grid { grid-template-columns: 1fr; }
  /* Yan sütun alta indiğinde yapışkanlık anlamını yitirir. */
  .hasar-yan { position: static; }
  .hasar-hak-grid { grid-template-columns: 1fr; }
  .hasar-cagri { grid-template-columns: 1fr; }
  .hasar-cagri-butonlar { flex-direction: row; flex-wrap: wrap; }
}

/* ==========================================================================
   YENİLEME HATIRLATICISI (/yenileme) + TALEP TAKİP (/teklif/{id})
   --------------------------------------------------------------------------
   İki sayfa da aynı iskeleti kullanır: solda beyaz bir kart (form ya da
   sonuç), sağda destekleyici bilgi kartları. Ortak kabuk `.form-kart`tır;
   modal içindeki form stilleri (.fld, .input, .kvkk) zaten global olduğu
   için burada yalnızca kabuk ve yerleşim tanımlanır.
   ========================================================================== */

.form-kart {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 24px 48px -34px rgba(6, 10, 22, .32);
}
.form-kart-sonuc { max-width: 640px; margin-inline: auto; }

.yenileme-duzen, .takip-duzen {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 26px;
  align-items: start;
}
.yenileme-yan, .takip-yan { display: grid; gap: 16px; position: sticky; top: 96px; }
.yenileme-yan .info-card p, .takip-yan .info-card p { line-height: 1.55; }
.takip-yan .info-card a { color: var(--brand); font-weight: 700; border-bottom: 1px solid var(--accent); }

/* ---------- Takip: durum çizelgesi ----------
   Üç adım her zaman görünür; tamamlanan altın, sıradaki lacivert halka,
   gelecek olan soluk. Müşteri "neredeyim" sorusunu tek bakışta yanıtlar. */
.takip-adimlar { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 0; }
.takip-adimlar li {
  display: grid; grid-template-columns: 26px 1fr; gap: 14px;
  padding-bottom: 22px; position: relative;
}
.takip-adimlar li:last-child { padding-bottom: 0; }
/* Adımları birleştiren dikey çizgi; sonuncuda çizilmez. */
.takip-adimlar li:not(:last-child)::before {
  content: ""; position: absolute; left: 12px; top: 22px; bottom: 4px;
  width: 2px; background: var(--line);
}
.takip-adimlar li.tamam:not(:last-child)::before { background: var(--accent); }
.takip-adimlar .ta-nokta {
  width: 26px; height: 26px; border-radius: 50%; background: #fff;
  border: 2px solid var(--line); position: relative; z-index: 1;
}
.takip-adimlar li.tamam .ta-nokta { background: var(--accent); border-color: var(--accent); }
.takip-adimlar li.aktif .ta-nokta { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-100); }
.takip-adimlar strong { display: block; font-size: .98rem; color: var(--ink); }
.takip-adimlar li:not(.tamam):not(.aktif) strong { color: var(--muted); }
.takip-adimlar span:not(.ta-nokta) { font-size: .84rem; color: var(--muted); }

.takip-bekleme { text-align: center; padding: 8px 0 6px; }
.takip-bekleme .spinner { margin: 10px auto 18px; }
.takip-bekleme p { color: var(--ink-2); font-size: .94rem; max-width: 46ch; margin-inline: auto; }

@media (max-width: 900px) {
  .yenileme-duzen, .takip-duzen { grid-template-columns: 1fr; }
  /* Yan sütun alta indiğinde yapışkanlık anlamını yitirir. */
  .yenileme-yan, .takip-yan { position: static; }
}

/* ============================================================
   ETKİLEŞİM KATMANI (21st.dev'den esinlenen mikro-etkileşimler)
   2026-08-15 eklendi. Tamamı EKLEMELİ ve prefers-reduced-motion
   korumalı — bu blok tek parça silinerek eski hâle dönülebilir.
   Davranış JS'i: static/etkilesim.js
   ============================================================ */

/* 1) Hero aurora — lacivert hero'nun arkasında yavaş süzülen altın/mavi
   ışıltı. JS `.hero` içine ilk çocuk olarak enjekte eder. Metin solda,
   ışıltı sağ/derin bölgede ve çok düşük opaklıkta: kontrastı bozmaz. */
.hero-aurora {
  position: absolute; inset: -20% -10% auto auto; z-index: 0;
  width: 70%; height: 140%; pointer-events: none;
  background:
    radial-gradient(38% 45% at 78% 30%, rgba(198,161,91,.22), transparent 70%),
    radial-gradient(40% 40% at 95% 60%, rgba(59,86,150,.28), transparent 72%);
  filter: blur(28px); opacity: .9;
  animation: aurora-suz 14s ease-in-out infinite alternate;
}
.hero > .container { position: relative; z-index: 1; }
@keyframes aurora-suz {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-4%, 3%, 0) scale(1.08); }
}

/* 2) Altın buton "shine" — üzerine gelince soldan sağa geçen ışık huzmesi.
   Kendi box-shadow'u kutunun dışında kaldığı için overflow:hidden onu
   kırpmaz; yalnızca içteki huzmeyi buton sınırına kırpar. */
.btn-accent { position: relative; overflow: hidden; }
.btn-accent::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 60%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-180%) skewX(-18deg); pointer-events: none;
}
.btn-accent:hover::before { animation: btn-parla .85s ease; }
@keyframes btn-parla { to { transform: translateX(320%) skewX(-18deg); } }

/* 3) Kart parıltısı (spotlight) — imleci takip eden yumuşak altın ışık.
   JS her `.quick-item` / `.brans-card` içine `.kart-parilti` ekler ve
   --gx/--gy değişkenlerini günceller. Pseudo çakışması olmasın diye
   gerçek bir child eleman kullanılır. */
.quick-item, .brans-card { position: relative; }
.kart-parilti {
  position: absolute; inset: 0; z-index: 0; border-radius: inherit;
  pointer-events: none; opacity: 0; transition: opacity .3s ease;
  background: radial-gradient(150px 150px at var(--gx,50%) var(--gy,50%),
              rgba(198,161,91,.20), transparent 70%);
}
.quick-item:hover .kart-parilti, .brans-card:hover .kart-parilti { opacity: 1; }

/* 4) Sayaç (count-up) sırasında rakamların zıplamasını engelle: sabit genişlik. */
.hero-stat strong { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .hero-aurora { animation: none; }
  .btn-accent:hover::before { animation: none; }
  .kart-parilti { display: none; }
}

/* ---- ETKİLEŞİM KATMANI · 2. parti (2026-08-15) ----
   Scroll ilerleme çubuğu, SSS akordeon belirişi, kademeli kart girişi.
   Aynı şekilde eklemeli ve reduced-motion korumalı. */

/* 5) Scroll ilerleme çubuğu — sayfanın ne kadarının okunduğunu gösteren
   üst altın çizgi. JS body'ye enjekte eder, genişliği kaydırmayla güncellenir. */
.scroll-ilerleme {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 55;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent), var(--accent-600));
  box-shadow: 0 0 8px rgba(198,161,91,.45); will-change: width;
}

/* 6) Kademeli giriş — branş kartları ve "Nasıl Çalışır" adımları bölüm
   görünür olunca sırayla belirir. `animation` kullanılır (transition DEĞİL):
   böylece kartların hover geçişine dokunmaz, bir kez çalışır. */
.io.in .brans-card { animation: kart-gir .55s cubic-bezier(.2,.7,.3,1) backwards; }
.io.in .step { animation: kart-gir .6s cubic-bezier(.2,.7,.3,1) backwards; }
@keyframes kart-gir { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.io.in .brans-card:nth-child(1) { animation-delay: 0s; }
.io.in .brans-card:nth-child(2) { animation-delay: .06s; }
.io.in .brans-card:nth-child(3) { animation-delay: .12s; }
.io.in .brans-card:nth-child(4) { animation-delay: .18s; }
.io.in .brans-card:nth-child(5) { animation-delay: .24s; }
.io.in .brans-card:nth-child(6) { animation-delay: .30s; }
.io.in .brans-card:nth-child(7) { animation-delay: .36s; }
.io.in .brans-card:nth-child(8) { animation-delay: .42s; }
.io.in .step:nth-child(1) { animation-delay: .05s; }
.io.in .step:nth-child(2) { animation-delay: .16s; }
.io.in .step:nth-child(3) { animation-delay: .27s; }

/* 7) SSS akordeon — bir soru açılırken cevap yumuşakça belirir. Kapanış
   native <details> davranışıdır (aniden); tek-açık mantığı JS'te. */
.faq details[open] p.answer { animation: faq-ac .3s ease; }
@keyframes faq-ac { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .io.in .brans-card, .io.in .step { animation: none; }
  .faq details[open] p.answer { animation: none; }
}

/* ============================================================================
   TİPOGRAFİ RAFİNASYONU  (2026-08-17)
   ----------------------------------------------------------------------------
   Yazı tipleri değişmedi — Cormorant Garamond + Manrope, ikisi de yerelde ve
   DEĞİŞKEN font. Değişen, onların nasıl dizildiği:

     · optik boyutlandırma açıldı (büyük başlıkta ince, küçük metinde tok çizgi)
     · başlık boyutları sabit kademe yerine akışkan clamp() ile bağlandı
     · satır sonu dengeleme (text-wrap: balance / pretty) — tek kelimelik
       "dul" satırlar ve dengesiz başlık kırılmaları kalktı
     · ölçü (measure) sınırlandı: 65-75 karakterden uzun satır okunmuyor
     · rakamlar tablo hizalı ve eski-stil değil astar rakam
     · büyük serif başlıkta harf aralığı hafif sıkıldı (optik düzeltme:
       serifler büyüdükçe aralık geniş GÖRÜNÜR)
   ========================================================================== */

:root {
  /* Akışkan tipografi kademesi — tek kaynak. Sayfalar bu değişkenleri kullanır,
     böylece ölçek tek yerden ayarlanır. */
  --t-hero: clamp(2.7rem, 1.6rem + 4.4vw, 4.6rem);
  --t-h2:   clamp(2rem, 1.45rem + 2.2vw, 3rem);
  --t-h3:   clamp(1.28rem, 1.15rem + .5vw, 1.5rem);
  --t-govde: clamp(1rem, .96rem + .18vw, 1.08rem);
  --olcu: 68ch;          /* rahat okunan azami satır uzunluğu */
}

html {
  /* Serif ve sans birlikte kullanıldığında sans daha büyük GÖRÜNÜR; kök boyut
     sabit kalır, fark aşağıdaki kademede kapatılır. */
  text-size-adjust: 100%;
}

body {
  font-optical-sizing: auto;
  font-synthesis-weight: none;      /* sahte kalın üretme — değişken font zaten taşıyor */
  font-variant-ligatures: common-ligatures contextual;
  font-kerning: normal;
}

/* --- Serif başlıklar: optik harf aralığı + dengeli kırılma --- */
h1, h2, h3, h4 {
  text-wrap: balance;
  font-variant-numeric: lining-nums proportional-nums;
}
.hero-title { font-size: var(--t-hero); letter-spacing: -.018em; line-height: 1.02; }
.section-head h2, .why h2, .cta-band h2 { font-size: var(--t-h2); letter-spacing: -.012em; line-height: 1.06; }
.page-hero h1 { letter-spacing: -.016em; }
/* Sans ile yazılan başlıklarda serif düzeltmesi geçerli değil — geri al. */
.hero-card h3, .brans-card h3, .step h3, .info-card h3,
.why-item h4, .footer-col h4, .faq summary { letter-spacing: -.008em; }

/* --- Gövde metni: ölçü sınırı + akıllı kırılma --- */
p { text-wrap: pretty; }
.hero-sub, .section-head p, .step p, .brans-card p,
.prose p, .page-hero > .container > p { max-width: var(--olcu); }
.prose p { font-size: var(--t-govde); line-height: 1.72; }
/* Türkçe uzun bileşik kelimeler dar ekranda taşmasın */
@media (max-width: 560px) {
  .hero-title, .section-head h2, .page-hero h1 { hyphens: auto; }
}

/* --- Rakamlar: hizalı sütun, zıplamayan sayaç --- */
.hero-stat strong, .o-prim, .offer-list, .kv, .t-prim,
.belge-sayi, .result-note strong { font-variant-numeric: tabular-nums lining-nums; }

/* Cormorant varsayılan olarak ESKİ STİL rakam çizer (3 ve 4 satır altına
   sarkar). "01 02 03" adım numaralarında bu kademeli görünüyordu; kurumsal
   bir sırada astar (lining) rakam daha hizalı durur. */
.step .num, .modal-head h3, .o-prim { font-variant-numeric: lining-nums; }

/* --- Eyebrow: küçük punto + geniş aralıkta ince ayar --- */
.eyebrow { font-size: .72rem; letter-spacing: .18em; }

/* --- Alıntı benzeri vurgular ve ilk harf inceliği --- */
.hero-sub { line-height: 1.62; }
.faq p.answer { max-width: var(--olcu); line-height: 1.7; }


/* ============================================================================
   MARKA VEKTÖR KATMANI  (2026-08-17)
   ----------------------------------------------------------------------------
   Filigran artık raster değil: geometri _ikonlar.html'deki #marka-monogram /
   #marka-mono-sade sembollerinden gelir. Boyalar burada verilir çünkü <use>
   gölge ağacı çağıran elemanın kalıtımını alır.

   KOMPOZİSYON: tek büyük leke yerine "takım" — çok soluk bir döşeme dokusu,
   üstünde farklı boy/açıda üç monogram. Katmanlar farklı hızda kaydığı için
   (etkilesim.js --kaydir) sayfada derinlik hissi oluşur.
   ========================================================================== */

.marka-vektor {
  fill: none;
  stroke: currentColor;
  stroke-width: 5.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.marka-vektor.ince { stroke-width: 3.5; }

/* ---------- Sayfa arkası (fixed) ---------- */
.site-backdrop { color: var(--brand); }

/* Döşeme dokusu: 300 px'lik karoda tek küçük monogram. Kâğıdın kendi
   dokusu gibi durmalı, "desenli duvar kâğıdı" gibi DEĞİL — opaklık .02'yi
   geçmemeli, yoksa metin kontrastını (WCAG AA) yiyor. */
.backdrop-desen {
  position: absolute; inset: -10%;
  opacity: .011;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%231b2847' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='translate(120 118) scale(.5)'%3E%3Cpath d='M16 24 60 106 104 24'/%3E%3Cpath d='M50 70 60 38 70 70'/%3E%3Cpath d='M53.1 60h13.8'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 300px 300px;
  /* Kenarlara doğru sönümle: karo deseni köşede tekrar ettiği belli olmasın */
  mask-image: radial-gradient(120% 100% at 50% 40%, #000 25%, transparent 78%);
}

/* ÖLÇEK NOTU (önemli): stroke-width viewBox biriminde yazılır ve SVG
   büyütülünce onunla birlikte büyür. 700 px'e çıkan bir monogramda 5.5'lik
   çizgi ekranda ~32 px olur — filigran değil, duvar yazısı. Bu yüzden her
   katmanın çizgisi kendi ölçeğine göre ayrı ayrı inceltilmiştir. */
/* PERFORMANS NOTU: bu katmanlara önce kaydırma paralaksı verilmişti
   (will-change + her karede transform) ve geri alındı. Gerekçe: SVG'nin
   transform'u kompozitörde bedava değil, ekran boyutundaki bir vektörü her
   karede yeniden rasterize ettiriyor; üstelik header'ın backdrop-filter'ı
   tam da bu katmanı okuyor, yani maliyet iki kez ödeniyor. Kazanç bunu hak
   etmedi: derinlik hissi zaten boy/opaklık/açı farkından geliyor. */
.backdrop-monogram {
  position: absolute;
  transform: rotate(var(--egim, 0deg));
}
.bm-ana {
  left: 50%; top: 50%; width: min(78vh, 64vw); height: auto;
  margin-left: calc(min(78vh, 64vw) / -2); margin-top: calc(min(78vh, 64vw) / -2);
  opacity: .032; stroke-width: 1.5; --hiz: .5;
}
.bm-1 { left: -4%;  top: 14%;  width: min(22vh, 18vw); opacity: .028; stroke-width: 3;   --hiz: 1.6;  --egim: -12deg; }
.bm-2 { right: -3%; bottom: 8%; width: min(26vh, 21vw); opacity: .025; stroke-width: 2.6; --hiz: -1.1; --egim: 9deg; }

/* ---------- Hero filigranı (koyu bandın içinde) ---------- */
.hero-filigran {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  color: var(--on-dark);
  /* İmleç konumuna göre bütün takım çok az kayar (etkilesim.js --mx/--my) */
  transform: translate3d(calc(var(--mx, 0) * 14px), calc(var(--my, 0) * 10px), 0);
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.hero-filigran svg { position: absolute; }
.hf-ana {
  right: -6%; top: 50%; width: clamp(320px, 40vw, 540px); height: auto;
  transform: translateY(-50%);
  opacity: .11; stroke-width: 1.6;
}
.hf-uydu { opacity: .09; }
.hf-u1 { right: 30%; top: 12%;  width: clamp(64px, 8vw, 104px); stroke-width: 4.5; transform: rotate(-14deg); }
.hf-u2 { right: 7%;  bottom: 9%; width: clamp(44px, 5vw, 74px);  stroke-width: 5.5; transform: rotate(11deg); }

/* Açık zeminli sayfa başlıklarında (varsa) monogram lacivert olur */
.page-hero .hero-filigran { color: var(--on-dark); }
.page-hero .hf-ana { right: -4%; width: clamp(280px, 32vw, 460px); opacity: .075; }
.page-hero .hf-u1 { display: none; }

@media (max-width: 560px) {
  .hf-ana { right: -24%; width: 116vw; opacity: .07; }
  .hf-uydu { display: none; }
  .bm-1, .bm-2 { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-filigran { transform: none; transition: none; }
  .backdrop-monogram { transform: none; }
}


/* ============================================================================
   ETKİLEŞİM KATMANI · 3. parti  (2026-08-17)
   ----------------------------------------------------------------------------
   21st.dev'de yaygın olan hareket dilinin kütüphanesiz karşılıkları. Hepsi
   EKLEMELİ ve prefers-reduced-motion korumalı; davranış static/etkilesim.js.
   ========================================================================== */

/* 8) Başlık kelime kelime beliriş -------------------------------------------
   JS başlıktaki metin düğümlerini kelimelere böler; her kelime kendi
   maskesinin altından yukarı kayar. Etiket yapısı korunur (ör. .accent
   içindeki vurgu şeridi bozulmaz). */
.kelime { display: inline-block; overflow: hidden; vertical-align: bottom; }
.kelime > i {
  display: inline-block; font-style: inherit;
  transform: translateY(105%);
  transition: transform .72s cubic-bezier(.16,.84,.28,1);
}
.bolundu.gorunur .kelime > i { transform: none; }
/* Bölünen hero başlığında blok düzeyindeki .reveal animasyonu devre dışı:
   iki kat beliriş (önce blok, sonra kelimeler) tekrar gibi duruyordu. */
.hero-title.bolundu { opacity: 1; transform: none; animation: none; }

/* Dar ekranda kelime kutuları sökülür. NEDEN: her kelime inline-block
   olduğu için kendi içinde TİRELENEMEZ; "karşılaştırın" gibi uzun Türkçe
   kelimeler 360 px'lik bir ekranda kutudan taşabiliyor. Metin akışı
   okunurluktan önce gelir, efekt burada feda edilir. */
@media (max-width: 600px) {
  .kelime { display: inline; overflow: visible; }
  .kelime > i { display: inline; transform: none; transition: none; }
}

/* 9) Bölüm başlığı altına altın çizginin çizilmesi --------------------------- */
.section-head h2 { position: relative; }
.section-head.cizgi h2::after {
  content: ""; position: absolute; left: 0; bottom: -14px; height: 2px; width: 84px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s cubic-bezier(.2,.7,.3,1) .15s;
}
.section-head.center.cizgi h2::after {
  left: 50%; width: 120px; margin-left: -60px; transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.io.in .section-head.cizgi h2::after { transform: scaleX(1); }

/* 10) Mıknatıs düğme — imleç yaklaşınca düğme ona doğru çok az kayar.
   JS --cx/--cy verir; transform'u .btn'in kendi hover kaldırışıyla
   çakışmasın diye ayrı bir sarmalayıcıya değil, değişkenle aynı transform
   zincirine yazıyoruz. */
.btn.miknatis {
  transform: translate3d(var(--cx, 0px), calc(var(--cy, 0px) + var(--kalk, 0px)), 0);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, background .2s ease;
}
.btn.miknatis:hover { --kalk: -2px; }
.btn.miknatis:active { --kalk: 0px; }

/* 11) Tıklama dalgası (ripple) ----------------------------------------------
   overflow:hidden yalnızca İÇERİDEKİ dalgayı kırpar; düğmenin kendi dış
   gölgesi (hover'daki --shadow-md) kırpılmaz, o kutunun dışındadır. */
.btn { position: relative; overflow: hidden; }
.dalga {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.55), transparent 70%);
  transform: translate(-50%, -50%) scale(0); opacity: .9;
  animation: dalga-yay .6s cubic-bezier(.2,.7,.3,1) forwards;
}
.btn-brand .dalga, .btn-ghost .dalga { background: radial-gradient(circle, rgba(27,40,71,.28), transparent 70%); }
@keyframes dalga-yay { to { transform: translate(-50%, -50%) scale(1); opacity: 0; } }

/* 12) Kart 3B eğilme — imleç kartın neresindeyse kart oraya doğru yatar.
   Parıltı (.kart-parilti) ile aynı olay dinleyicisini paylaşır. */
.brans-grid, .quick-grid { perspective: 900px; }
.brans-card.egilir, .quick-item.egilir {
  transform: perspective(900px)
             rotateX(calc(var(--ry, 0) * -1deg))
             rotateY(calc(var(--rx, 0) * 1deg))
             translateY(var(--kalkis, 0px));
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .2s ease;
}
.brans-card.egilir:hover { --kalkis: -6px; }
.quick-item.egilir:hover { --kalkis: -2px; }
/* preserve-3d + çocuklara translateZ denendi ve GERİ ALINDI: kartın kendisi
   overflow:hidden olduğu için tarayıcı 3B bağlamı zaten düzleştiriyor, buna
   karşılık 8 kartın hepsinde ayrı ayrı katman maliyeti doğuruyordu. */

/* 13) Header: kaydırınca inceler ve camlaşır --------------------------------- */
.site-header .header-inner { transition: height .35s cubic-bezier(.2,.7,.3,1); }
.site-header.scrolled .header-inner { height: 62px; }
/* backdrop-filter değeri BİLEREK artırılmadı. Taban .site-header kuralındaki
   blur(10px) yeterli; yarıçapı büyütmek altındaki sabit filigran katmanının
   her karede yeniden okunması demek ve görsel kazancı yok denecek kadar az.
   Kaydırma durumunu gölge anlatıyor. */
.site-header.scrolled { box-shadow: 0 10px 30px -22px rgba(27,40,71,.55); }
.site-header .brand-logo { transition: width .35s ease, height .35s ease; }
.site-header.scrolled .brand-logo { width: 116px; height: 29px; }

/* 14) Başa dön — ilerleme halkalı yuvarlak düğme ----------------------------- */
.basa-don {
  position: fixed; right: 20px; bottom: 92px; z-index: 59;
  width: 46px; height: 46px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  display: grid; place-items: center;
  background: var(--card); color: var(--brand);
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(.9);
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.7,.3,1), visibility .3s;
}
.basa-don.gorunur { opacity: 1; visibility: visible; transform: none; }
.basa-don:hover { color: var(--accent-600); }
/* İlerleme halkası: --oran 0→1 arasında JS tarafından güncellenir */
.basa-don::before {
  content: ""; position: absolute; inset: -4px; border-radius: 50%; z-index: -1;
  background: conic-gradient(var(--accent) calc(var(--oran, 0) * 360deg), rgba(27,40,71,.13) 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
}
.basa-don .ikon { width: 19px; height: 19px; }
@media (max-width: 560px) { .basa-don { right: 14px; bottom: 82px; } }

/* 15) SSS: artı işareti çarpıya döner, satır altı altın çizgi --------------- */
.faq details { position: relative; overflow: hidden; }
.faq details::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.faq details[open]::after { transform: scaleX(1); }
.faq summary .chev { transition: transform .3s cubic-bezier(.2,.7,.3,1), color .2s ease; }
.faq details[open] summary .chev { color: var(--accent-600); }
.faq summary:hover .chev { color: var(--accent-600); }

/* 16) Güven şeridi: adı üstüne gelince altın nokta büyür -------------------- */
.trust-logos span { padding: 4px 0; }
.trust-logos span::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease; opacity: .7;
}
.trust-logos span:hover::after { transform: scaleX(1); }

/* 17) Sonuç ekranı: teklif satırları sırayla düşer + iskelet parıltısı ------ */
.offer { animation: teklif-gir .5s cubic-bezier(.2,.7,.3,1) backwards; }
@keyframes teklif-gir { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.offer:nth-child(1) { animation-delay: .04s; }
.offer:nth-child(2) { animation-delay: .12s; }
.offer:nth-child(3) { animation-delay: .20s; }
.offer:nth-child(4) { animation-delay: .28s; }
.offer:nth-child(5) { animation-delay: .36s; }

/* Yükleme iskeleti — dönen daire yerine gelecek içeriğin şeklini gösterir.
   Beklemeyi kısa hissettirir çünkü kullanıcı ne geleceğini görür. */
.iskelet { display: grid; gap: 12px; margin: 6px 0 4px; }
.iskelet-satir {
  height: 64px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft); background: var(--paper-2);
  position: relative; overflow: hidden;
}
.iskelet-satir::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(198,161,91,.16) 50%, transparent 80%);
  transform: translateX(-100%);
  animation: iskelet-kay 1.25s ease-in-out infinite;
}
.iskelet-satir:nth-child(2)::after { animation-delay: .12s; }
.iskelet-satir:nth-child(3)::after { animation-delay: .24s; }
@keyframes iskelet-kay { to { transform: translateX(100%); } }
.iskelet-not { text-align: center; color: var(--muted); font-size: .9rem; margin: 14px 0 0; }

/* 18) Metin işaretlerinin yerini alan ikonlar -------------------------------
   ✓ ! ↓ ↗ ↻ karakterleri sprite ikonlarla değiştirildi (bkz. _ikonlar.html).
   Kaplarının boyutları karaktere göre ayarlıydı; SVG'ye göre yeniden verilir. */
.badge .ikon { width: 14px; height: 14px; margin-right: 6px; vertical-align: -2px; }
.ornek-uyari .ou-ikon .ikon { width: 11px; height: 11px; stroke-width: 3.2; }
.pdf-ok .ikon { display: block; width: 17px; height: 17px; }
.belge-ok .ikon { display: block; width: 15px; height: 15px; }
/* Takip bağlantısındaki yuvarlak ok, "PDF" yazısının yerini aldı */
.takip-baglanti .pdf-ikon .ikon { width: 19px; height: 19px; }

@media (prefers-reduced-motion: reduce) {
  .kelime > i { transform: none; transition: none; }
  .section-head.cizgi h2::after { transform: scaleX(1); transition: none; }
  .btn.miknatis { transform: none; }
  .dalga { display: none; }
  .brans-card.egilir, .quick-item.egilir { transform: none; }
  .brans-card.egilir > *, .quick-item.egilir > * { transform: none; }
  .site-header .header-inner, .site-header .brand-logo { transition: none; }
  .basa-don { transition: opacity .01s; }
  .offer { animation: none; }
  .iskelet-satir::after { animation: none; }
  .faq details::after { transition: none; }
}

/* ============================================================================
   CSP YARDIMCI SINIFLARI
   ----------------------------------------------------------------------------
   Bu sınıflar, şablonlardaki `style="..."` niteliklerinin yerine geçer.

   NEDEN
   Zorlayıcı Content-Security-Policy altında `style-src 'self'` demek, satır
   içi stil niteliklerinin ÇALIŞMAMASI demektir. Bunu çalıştırmanın tek yolu
   `'unsafe-inline'` iznini açık bırakmaktı — o izin ise saldırganın
   enjekte ettiği stilin de çalışmasına kapı aralar ve politikayı büyük ölçüde
   anlamsızlaştırır.

   Stiller buraya taşındı; görsel sonuç birebir aynıdır, yalnızca bildirim
   yeri değişti. Yeni bir bölüm eklerken `style=""` YAZMAYIN — buraya bir
   sınıf ekleyin, aksi hâlde bölüm canlıda stilsiz görünür.
   ============================================================================ */

.gizli-sprite { display: none; }

/* Bölüm dolgusu: bir bölüm bir öncekinin hemen ardından geliyorsa üstteki
   boşluk iki kez uygulanmasın. */
.bolum-ust-yok { padding-top: 0; }
.bolum-alt-yok { padding-bottom: 0; }

/* Açık gri zeminli bölüm — sayfa boyunca ritim veren ayraç. */
.bolum-zemin {
  background: var(--paper-2);
  border-block: 1px solid var(--line-soft);
}

.mt-0 { margin-top: 0; }
.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-22 { margin-top: 22px; }
.mt-24 { margin-top: 24px; }
.ml-10 { margin-left: 10px; }

.metin-sonuk { color: var(--muted); }
.metin-kucuk-sonuk { font-size: .9rem; color: var(--muted); }
.metin-koyu-zemin { color: var(--on-dark-70); margin-top: 14px; }

/* Form etiketlerindeki "(opsiyonel)" ibaresi. */
.opsiyonel-etiket { font-weight: 500; color: var(--muted); }

/* KVKK/çerez metinlerindeki alt başlıklar ve vurgulu kutular. */
.prose h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  margin: 26px 0 8px;
}

.prose .kvkk-uyari,
.durum-kutusu {
  background: var(--accent-100);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .92rem;
}

.kvkk-not-metin { font-size: .9rem; color: var(--muted); }

/* Açık rıza kutusu: aydınlatma onayından GÖRSEL olarak da ayrılır ki
   kullanıcı ikisinin farklı şeyler olduğunu görsün (gerekçe:
   server/services/kvkk.py). */
.kvkk-riza { margin-top: 10px; }

.kvkk-not {
  display: block;
  margin-top: 4px;
  font-size: .82rem;
  color: var(--muted);
}
