/* ==========================================================================
   OFFERTIGO — tema1 (public site)  ·  v2 "Deep Navy / Offertigo Blue"

   Tasarım kararları (2026-09-15, kullanıcı isteği: "daha modern ve profesyonel,
   Bestofferten'deki tasarım yapısını referans al"):
     · Kabuk ve dil Bestofferten tema2'nin aynısı: koyu lacivert header/hero/footer,
       beyaz gövde, yuvarlak (pill) düğmeler, yumuşak gölgeli kartlar.
     · Renk Offertigo'nun: marka mavisi + camgöbeği ikinci aksan — firma panelindeki
       "Ocean" temasıyla (panel_theme_ocean.css) aynı aile; site ile panel bir ürün gibi durur.
     · Logo koyu zeminde BEYAZ sürümü (site_setting.Logo3) — koyu logo lacivertte kaybolur.
     · Metinler admin'den (langs.SiteTexts, *_setting_lang.SiteTexts); CSS metin taşımaz.
     · Bestofferten'den BİLEREK ayrışır (kullanıcı, 2026-09-15: "birebir olmasın"): koyu
       zeminlerde (hero, giriş paneli, çağrı bandı, sayfa başlığı) nokta deseni YOK,
       header'ın altında çizgi YOK.

   Bölümler:
      1. Belirteçler & temel            9. Nasıl çalışır
      2. Tipografi & bölüm başlıkları  10. Çağrı bandı (CTA)
      3. Butonlar & form kontrolleri   11. Sayfa başlığı · breadcrumb · prose (CMS)
      4. Header · navigasyon · dil     12. İletişim
      5. Mobil menü (offcanvas)        13. Sonuç / 404
      6. Giriş / kayıt ekranları       14. Alt bilgi
      7. Hero                           15. Yardımcılar · eski sınıf uyumu
      8. Özellik paneli · içerik blokları 16. Duyarlılık & erişilebilirlik
   ========================================================================== */

/* ── 1. Belirteçler & temel ─────────────────────────────────────────────── */
:root {
  /* Kabuk (koyu) */
  --navy:        #0a1622;
  --navy-2:      #0f2031;
  --navy-3:      #163049;
  --navy-line:   rgba(255, 255, 255, .10);

  /* Offertigo mavisi + camgöbeği */
  --brand:       #0b8cf5;
  --brand-600:   #0a78d6;
  --brand-700:   #0863b3;
  --brand-300:   #7cc6ff;
  --brand-soft:  #e9f4ff;
  --brand-ring:  rgba(11, 140, 245, .22);
  --cyan:        #19c6d8;
  --cyan-soft:   #e3f8fa;

  --accent:      #fbbf24;
  --ok:          #12a150;
  --ok-soft:     #e8f7ee;

  /* Açık gövde */
  --ink:         #0e1a28;
  --ink-2:       #566779;
  --ink-3:       #8795a5;
  --line:        #e4e9f0;
  --line-2:      #eff3f8;
  --bg:          #ffffff;
  --bg-soft:     #f5f8fc;
  --danger:      #dc2626;
  --danger-soft: #fef2f2;

  /* Biçim */
  --r-xl:  28px;
  --r-lg:  20px;
  --r:     14px;
  --r-sm:  10px;
  --pill:  999px;

  --sh-sm: 0 1px 2px rgba(14, 26, 40, .06), 0 2px 6px rgba(14, 26, 40, .04);
  --sh:    0 4px 12px rgba(14, 26, 40, .06), 0 12px 32px rgba(14, 26, 40, .07);
  --sh-lg: 0 8px 24px rgba(10, 22, 34, .10), 0 32px 64px rgba(10, 22, 34, .16);
  --sh-brand: 0 6px 18px rgba(11, 140, 245, .28);

  --t:   .18s cubic-bezier(.4, 0, .2, 1);
  --t-3: .32s cubic-bezier(.4, 0, .2, 1);

  --head: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Bootstrap 5.3 bağlantı rengi üçlüden okunur (--bs-link-color yetmez). */
  --bs-link-color-rgb: 8, 99, 179;
  --bs-link-hover-color-rgb: 10, 120, 214;
  --bs-primary: #0b8cf5;
  --bs-primary-rgb: 11, 140, 245;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: var(--brand-700); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--brand-600); }
::selection { background: var(--brand-ring); }

/* ── 2. Tipografi & bölüm başlıkları ───────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--head);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.021em;
  color: var(--ink);
  margin-top: 0;
}

.section       { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-soft  { background: var(--bg-soft); }
.section-line  { border-top: 1px solid var(--line); }

.section-head        { max-width: 720px; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--body);
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand-700); background: var(--brand-soft);
  padding: .34rem .72rem; border-radius: var(--pill);
  margin-bottom: 1rem;
}
.eyebrow.on-dark { color: var(--brand-300); background: rgba(11, 140, 245, .16); }

.section-title { font-size: clamp(1.65rem, 3.1vw, 2.5rem); font-weight: 800; margin-bottom: .7rem; }
.section-lead  { color: var(--ink-2); font-size: 1.06rem; margin-bottom: 0; }

.text-gradient {
  background: linear-gradient(96deg, var(--brand) 10%, var(--cyan) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── 3. Butonlar & form kontrolleri ────────────────────────────────────── */
.btn {
  --btn-y: .78rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--head); font-weight: 700; font-size: .96rem;
  padding: var(--btn-y) 1.5rem;
  border-radius: var(--pill); border: 1px solid transparent;
  line-height: 1.25; white-space: nowrap;
  transition: background-color var(--t), border-color var(--t), color var(--t),
              transform var(--t), box-shadow var(--t);
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { box-shadow: 0 0 0 4px var(--brand-ring); }

.btn-brand,
.btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.btn-brand:hover, .btn-brand:focus,
.btn-primary:hover, .btn-primary:focus,
.btn-primary:active, .btn-primary.active { background: var(--brand-600); border-color: var(--brand-600); color: #fff; box-shadow: 0 8px 22px rgba(11, 140, 245, .34); }

.btn-ink { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-ink:hover, .btn-ink:focus { background: var(--navy-3); border-color: var(--navy-3); color: #fff; }

.btn-ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover, .btn-ghost:focus { border-color: var(--brand); color: var(--brand-700); background: var(--brand-soft); }

.btn-outline-primary { background: transparent; border: 1.5px solid var(--brand); color: var(--brand-700); }
.btn-outline-primary:hover, .btn-outline-primary:focus { background: var(--brand); border-color: var(--brand); color: #fff; }

.btn-outline-light { background: transparent; border-color: rgba(255, 255, 255, .3); color: #fff; }
.btn-outline-light:hover, .btn-outline-light:focus { background: #fff; border-color: #fff; color: var(--navy); }

.btn-lg    { --btn-y: 1rem; font-size: 1.02rem; padding-left: 1.9rem; padding-right: 1.9rem; }
.btn-sm    { --btn-y: .48rem; font-size: .87rem; padding-left: 1.05rem; padding-right: 1.05rem; }
.btn-block { display: flex; width: 100%; }
.w-100.btn { display: flex; }

.btn-link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--head); font-weight: 700; font-size: .95rem; color: var(--brand-700);
}
.btn-link-arrow i { transition: transform var(--t); }
.btn-link-arrow:hover i { transform: translateX(4px); }

/* Form kontrolleri — text/select aynı yükseklik, textarea istisna */
.form-control, .form-select {
  min-height: 52px;
  border-radius: var(--r); border: 1.5px solid var(--line);
  padding: .74rem 1rem; font-size: 1rem; line-height: 1.5; color: var(--ink);
  background-color: #fff;
  box-shadow: inset 0 1px 2px rgba(14, 26, 40, .035);
  transition: border-color var(--t), box-shadow var(--t), background-color var(--t);
}
.form-control::placeholder { color: var(--ink-3); }
.form-control:hover:not(:focus):not(:disabled),
.form-select:hover:not(:focus):not(:disabled) { border-color: #c9d5e3; }
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-ring); outline: 0; }
.form-control:disabled, .form-control[readonly], .form-select:disabled { background-color: var(--bg-soft); color: var(--ink-2); box-shadow: none; }
textarea.form-control { min-height: 132px; line-height: 1.6; resize: vertical; }
.form-control.is-invalid, .field.has-error .form-control { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(220, 38, 38, .10); background-image: none; padding-right: 1rem; }

.form-label { font-family: var(--head); font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: .45rem; }
.form-check-input { width: 1.1rem; height: 1.1rem; margin-top: .22rem; border: 1.5px solid #c3cfdd; }
.form-check-input:checked { background-color: var(--brand); border-color: var(--brand); }
.form-check-input:focus { box-shadow: 0 0 0 4px var(--brand-ring); border-color: var(--brand); }
.form-check-label { color: var(--ink-2); font-size: .92rem; }
.form-text { color: var(--ink-3); font-size: .83rem; }

.field { margin-bottom: 1rem; }
.field .field-label { display: block; font-family: var(--head); font-weight: 600; font-size: .92rem; margin-bottom: .45rem; color: var(--ink); }
.field .req { color: var(--danger); margin-left: .15rem; }
.field .help { display: block; color: var(--ink-3); font-size: .83rem; margin-top: .35rem; }
.field .error { display: block; color: var(--danger); font-size: .84rem; font-weight: 600; margin-top: .35rem; }

/* İkonlu girdi: ikon solda, göz düğmesi sağda */
.input-icon { position: relative; }
.input-icon > i { position: absolute; left: 1.05rem; top: 26px; transform: translateY(-50%); color: var(--ink-3); pointer-events: none; }
.input-icon > .form-control { padding-left: 2.75rem; }
.input-icon:has(.pw-toggle) > .form-control { padding-right: 3rem; }
.pw-toggle {
  position: absolute; right: .45rem; top: 26px; transform: translateY(-50%);
  width: 38px; height: 38px; border: 0; border-radius: var(--r-sm);
  background: transparent; color: var(--ink-3); cursor: pointer;
  transition: color var(--t), background-color var(--t);
}
.pw-toggle:hover { color: var(--brand-700); background: var(--brand-soft); }

/* ── 4. Header · navigasyon · dil ──────────────────────────────────────── */
/* Bulanıklık ::before katmanında: backdrop-filter uygulanan öğe `position: fixed` çocukları
   için containing block olur ve header içindeki offcanvas ekranı kaplayamazdı (BO notu). */
.site-header {
  position: sticky; top: 0; z-index: 1030;
  transition: box-shadow var(--t);
}
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(10, 22, 34, .9);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  transition: background-color var(--t);
}
.site-header.is-scrolled::before { background: rgba(10, 22, 34, .97); }
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(10, 22, 34, .28); }
.site-header .navbar { padding: .7rem 0; }

.brand-mark {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--head); font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; color: #fff;
}
.brand-mark:hover { color: #fff; opacity: .92; }
.brand-mark img { height: 44px; width: auto; display: block; }
@media (min-width: 1400px) { .brand-mark img { height: 50px; } }

.header-compact { gap: .35rem; margin-left: auto; margin-right: .4rem; }
.header-compact-btn,
.header-compact .lang-compact .nav-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; padding: 0;
  border-radius: var(--pill); border: 1px solid var(--navy-line);
  color: rgba(255, 255, 255, .82); font-size: .98rem; line-height: 1;
  transition: color var(--t), background-color var(--t), border-color var(--t);
}
.header-compact-btn:hover, .header-compact-btn:focus,
.header-compact .lang-compact .nav-link:hover { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .2); }
.header-compact .lang-compact .nav-link::after { display: none; }
.header-compact .lang-compact .dropdown-menu { position: absolute; top: 100%; right: 0; left: auto; margin-top: .45rem; max-width: calc(100vw - 1.5rem); }

.navbar-toggler { padding: .4rem .55rem; border-radius: var(--r-sm); color: #fff; border: 0; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(255, 255, 255, .18); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-nav { gap: .15rem; }
.site-nav .nav-link {
  font-family: var(--head); font-weight: 600; font-size: .95rem;
  color: rgba(255, 255, 255, .76);
  padding: .5rem .95rem !important; border-radius: var(--pill);
  transition: color var(--t), background-color var(--t);
}
.site-nav .nav-link:hover, .site-nav .nav-link:focus { color: #fff; background: rgba(255, 255, 255, .08); }
.site-nav .nav-link.active { color: #fff; background: rgba(11, 140, 245, .2); }
.site-nav .dropdown-menu,
.lang-switcher .dropdown-menu {
  border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh);
  padding: .35rem; min-width: 11rem; margin-top: .4rem;
}
.site-nav .dropdown-item,
.lang-switcher .dropdown-item { border-radius: var(--r-sm); font-size: .92rem; font-weight: 600; padding: .55rem .7rem; color: var(--ink); }
.site-nav .dropdown-item:hover, .lang-switcher .dropdown-item:hover { background: var(--bg-soft); color: var(--brand-700); }
.site-nav .dropdown-item.active, .site-nav .dropdown-item:active,
.lang-switcher .dropdown-item.active, .lang-switcher .dropdown-item:active { background: var(--brand-soft); color: var(--brand-700); }

.lang-switcher .nav-link {
  color: rgba(255, 255, 255, .84); font-weight: 700; font-size: .85rem;
  padding: .45rem .75rem; border-radius: var(--pill); border: 1px solid var(--navy-line);
}
.lang-switcher .nav-link:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.lang-switcher .nav-link::after { margin-left: .4rem; opacity: .6; }
.lang-switcher .lang-code { text-transform: uppercase; letter-spacing: .04em; }

.login-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--head); font-weight: 600; font-size: .92rem; white-space: nowrap;
  color: rgba(255, 255, 255, .8);
  padding: .5rem .9rem; border-radius: var(--pill); border: 1px solid var(--navy-line);
  transition: color var(--t), background-color var(--t), border-color var(--t);
}
.login-link:hover, .login-link:focus { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .2); }
.login-link.active { color: #fff; background: rgba(11, 140, 245, .2); border-color: rgba(11, 140, 245, .45); }

/* ── 5. Mobil menü (offcanvas) — yalnız XL altı ────────────────────────── */
@media (max-width: 1199.98px) {
  .site-offcanvas {
    width: min(360px, 86vw);
    background: var(--navy-2); color: #fff;
    border-left: 1px solid var(--navy-line);
    box-shadow: -24px 0 60px rgba(4, 10, 18, .45);
  }
  .site-offcanvas .offcanvas-header { padding: 1rem 1.15rem; border-bottom: 1px solid var(--navy-line); }
  .site-offcanvas .offcanvas-title { font-family: var(--head); font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .62); }
  .site-offcanvas .btn-close { opacity: .7; }
  .site-offcanvas .btn-close:hover { opacity: 1; }
  .site-offcanvas .offcanvas-body { display: flex; flex-direction: column; padding: 1rem 1.15rem 1.6rem; gap: 1.1rem; }
  .site-offcanvas .site-nav { gap: .1rem; }
  .site-offcanvas .site-nav .nav-link { padding: .7rem .9rem !important; font-size: 1rem; }
  .site-offcanvas .dropdown-menu {
    position: static !important; transform: none !important; float: none; width: auto; min-width: 0;
    background: rgba(255, 255, 255, .05); border: 0; box-shadow: none;
    border-radius: var(--r); padding: .3rem; margin: .2rem 0 .4rem .85rem;
  }
  .site-offcanvas .dropdown-item { color: rgba(255, 255, 255, .76); white-space: normal; }
  .site-offcanvas .dropdown-item:hover, .site-offcanvas .dropdown-item:focus { background: rgba(255, 255, 255, .09); color: #fff; }
  .site-offcanvas .header-actions { flex-direction: column; align-items: stretch !important; gap: .6rem !important; padding-top: 1rem; border-top: 1px solid var(--navy-line); }
  .site-offcanvas .header-actions .btn { width: 100%; }
  .site-offcanvas .header-actions .login-link,
  .site-offcanvas .header-actions .lang-switcher { display: none; }
}

/* ── 6. Giriş / kayıt ekranları ────────────────────────────────────────── */
.auth-section { padding: 64px 0 88px; background: var(--bg-soft); position: relative; }
.auth-shell {
  max-width: 1040px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--sh-lg); overflow: hidden;
}
.auth-shell.is-narrow { max-width: 560px; }

.auth-aside {
  position: relative; height: 100%; padding: 48px 38px; color: #fff; overflow: hidden;
  background:
    radial-gradient(520px 320px at 15% 0%, rgba(11, 140, 245, .36), transparent 62%),
    radial-gradient(420px 260px at 100% 100%, rgba(25, 198, 216, .20), transparent 60%),
    linear-gradient(170deg, var(--navy-2), var(--navy) 70%, #07111b);
}
.auth-aside > * { position: relative; }
.auth-aside h2 { color: #fff; font-size: 1.55rem; font-weight: 800; margin-bottom: .85rem; }
.auth-aside p { color: rgba(255, 255, 255, .74); font-size: .96rem; margin-bottom: 1.6rem; }
.auth-aside-desc { color: rgba(255, 255, 255, .82); font-size: .96rem; }
.auth-aside-desc h1, .auth-aside-desc h2, .auth-aside-desc h3, .auth-aside-desc h4 { color: #fff; }
.auth-aside-desc a { color: var(--brand-300); }
.auth-perks { list-style: none; padding: 0; margin: 0; }
.auth-perks li { display: flex; align-items: flex-start; gap: .65rem; font-size: .94rem; color: rgba(255, 255, 255, .9); margin-bottom: .75rem; }
.auth-perks i { color: var(--cyan); margin-top: .22rem; flex-shrink: 0; }
.auth-aside-foot { margin-top: 2rem; padding-top: 1.3rem; border-top: 1px solid var(--navy-line); color: rgba(255, 255, 255, .6); font-size: .86rem; }

.auth-card { padding: 46px 42px; }
.auth-head { margin-bottom: 1.6rem; }
.auth-head h1 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); font-weight: 800; margin-bottom: .4rem; }
.auth-head p { color: var(--ink-2); font-size: .95rem; margin: 0; }
.auth-row { display: flex; justify-content: flex-end; align-items: center; margin: -.35rem 0 .2rem; }
.auth-row a { font-size: .89rem; font-weight: 600; color: var(--ink-2); }
.auth-row a:hover { color: var(--brand-700); }
.auth-divider { display: flex; align-items: center; gap: .8rem; margin: 1.3rem 0 1rem; color: var(--ink-3); font-size: .85rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.auth-foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: .6rem;
  margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line-2);
  color: var(--ink-2); font-size: .93rem;
}
.auth-foot-cta { flex-direction: column; align-items: stretch; gap: .75rem; }
.auth-note { margin: 1.2rem 0 0; color: var(--ink-3); font-size: .84rem; line-height: 1.55; }
.auth-note i { color: var(--brand); margin-right: .2rem; }
.auth-terms { display: flex; gap: .6rem; align-items: flex-start; margin: .4rem 0 .2rem; font-size: .9rem; color: var(--ink-2); cursor: pointer; }
.auth-terms input { flex-shrink: 0; margin-top: .2rem; width: 1.05rem; height: 1.05rem; accent-color: var(--brand); }
.auth-summary { border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: .4rem 1rem; margin-bottom: 1rem; background: var(--bg-soft); }
.auth-summary .row-item { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--line); font-size: .93rem; }
.auth-summary .row-item:last-child { border-bottom: 0; }
.auth-summary .row-item span { color: var(--ink-3); }
.auth-summary .row-item strong { text-align: right; color: var(--ink); font-weight: 600; word-break: break-word; }

/* ── 7. Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 520px at 90% -10%, rgba(11, 140, 245, .34), transparent 62%),
    radial-gradient(700px 440px at 0% 20%, rgba(25, 198, 216, .16), transparent 60%),
    linear-gradient(168deg, var(--navy-2) 0%, var(--navy) 62%, #07111b 100%);
}
/* Kısa yazım (padding: X 0 Y) KULLANILMAZ: sınıf .container ile aynı öğede, yan boşluğu sıfırlardı. */
.hero-inner { position: relative; z-index: 2; padding-top: 84px; padding-bottom: 150px; }
.hero-claim h1 {
  color: #fff; font-weight: 800; font-size: clamp(2.1rem, 4.6vw, 3.6rem); letter-spacing: -.035em; margin-bottom: 1.1rem;
}
/* Başlık HTML taşır (admin › Slider): eski içerikteki `<i class="child-1">` parçaları satır olur,
   son parça gradient vurgulu — "CRM Umzug Software / Offertigo". `.hl` yeni içerik için. */
.hero-claim h1 i { font-style: normal; }
.hero-claim h1 i.child-1 { display: block; }
.hero-claim h1 i:last-of-type > i.child-1,
.hero-claim h1 .hl {
  background: linear-gradient(96deg, var(--brand-300) 0%, var(--brand) 45%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-claim p.lead { color: rgba(255, 255, 255, .78); font-size: 1.14rem; max-width: 560px; margin-bottom: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255, 255, 255, .08); border: 1px solid var(--navy-line);
  color: #fff; font-size: .8rem; font-weight: 600;
  padding: .42rem .95rem; border-radius: var(--pill); margin-bottom: 1.4rem;
}
.hero-badge i { color: var(--cyan); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; list-style: none; padding: 0; margin: 1.8rem 0 0; }
.hero-points li { display: flex; align-items: center; gap: .45rem; color: rgba(255, 255, 255, .78); font-size: .92rem; }
.hero-points i { color: var(--cyan); font-size: .85rem; }

/* Ekran görüntüsü — "cihaz" çerçevesi + parıltı */
.hero-visual { position: relative; }
.hero-visual::before {
  content: ''; position: absolute; inset: 8% 6% -4%; z-index: 0;
  background: radial-gradient(closest-side, rgba(11, 140, 245, .55), rgba(25, 198, 216, .18) 60%, transparent 75%);
  filter: blur(34px);
}
.hero-frame {
  position: relative; z-index: 1;
  border-radius: 22px; padding: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  transform: perspective(1600px) rotateY(-6deg) rotateX(2deg);
  transition: transform var(--t-3);
}
.hero-frame:hover { transform: perspective(1600px) rotateY(-2deg) rotateX(0); }
.hero-frame img { display: block; width: 100%; border-radius: 14px; }
.hero-frame .frame-dots { display: flex; gap: 6px; padding: 2px 4px 9px; }
.hero-frame .frame-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .28); }

.hero .carousel-indicators { position: static; margin: 2.2rem 0 0; justify-content: flex-start; }
.hero .carousel-indicators [data-bs-target] { width: 26px; height: 5px; border-radius: 3px; border: 0; background: #fff; opacity: .3; }
.hero .carousel-indicators .active { opacity: 1; background: var(--cyan); }

/* ── 8. Özellik paneli · içerik blokları ───────────────────────────────── */
.feature-panel {
  position: relative; z-index: 3; margin-top: -96px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  padding: 30px;
}
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.feature-tile {
  display: flex; flex-direction: column; gap: .7rem; height: 100%;
  padding: 1.2rem 1.15rem; border-radius: var(--r-lg);
  border: 1.5px solid var(--line-2); background: #fff;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.feature-tile:hover { border-color: rgba(11, 140, 245, .35); box-shadow: 0 10px 26px rgba(11, 140, 245, .12); transform: translateY(-2px); }
.feature-tile .ico {
  width: 48px; height: 48px; border-radius: var(--r); display: grid; place-items: center;
  font-size: 1.15rem; color: var(--brand-700); background: var(--brand-soft);
}
.feature-tile:nth-child(2n) .ico { color: #0b8a99; background: var(--cyan-soft); }
.feature-tile h3 { font-size: 1.02rem; font-weight: 700; margin: 0; }
.feature-tile p { color: var(--ink-2); font-size: .9rem; line-height: 1.5; margin: 0; }

.content-block { padding: 72px 0; }
.content-block + .content-block { padding-top: 0; }
.content-block .block-media { position: relative; }
.content-block .block-media::before {
  content: ''; position: absolute; inset: 10% 8%; z-index: 0; border-radius: 40%;
  background: radial-gradient(closest-side, rgba(11, 140, 245, .16), transparent 70%);
  filter: blur(20px);
}
.content-block .block-media img { position: relative; z-index: 1; display: block; margin: 0 auto; max-height: 440px; object-fit: contain; }
.content-block .block-title { font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 800; margin-bottom: 1rem; }
.content-block .block-title span { color: var(--brand-700); }
.content-block .block-lead { color: var(--ink-2); font-size: 1.05rem; margin-bottom: 1.2rem; }
.block-content { color: var(--ink-2); font-size: 1rem; }
.block-content p { margin-bottom: .9rem; }
.block-content ul { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: .55rem; }
.block-content ul li { position: relative; padding-left: 1.9rem; color: var(--ink); font-weight: 500; }
.block-content ul li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: .72rem;
  position: absolute; left: 0; top: .2rem; width: 1.3rem; height: 1.3rem; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--brand), var(--cyan));
}
.block-content ul li span { background: none !important; }
.block-actions { margin-top: 1.6rem; }
.section-soft.content-block { background: var(--bg-soft); padding: 80px 0; }
.section-soft.content-block + .content-block { padding-top: 72px; }

/* ── 9. Nasıl çalışır ─────────────────────────────────────────────────── */
.steps-flow { position: relative; }
.steps-flow::before {
  content: ''; position: absolute; top: 34px; left: 17%; right: 17%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.flow-card { position: relative; text-align: center; padding: 0 12px; }
.flow-card .num {
  position: relative; z-index: 2;
  width: 68px; height: 68px; margin: 0 auto 1.3rem; border-radius: var(--pill);
  background: #fff; border: 2px solid var(--brand); color: var(--brand-700);
  display: grid; place-items: center; font-family: var(--head); font-weight: 800; font-size: 1.35rem;
  box-shadow: 0 0 0 8px var(--bg-soft), 0 6px 18px rgba(11, 140, 245, .18);
}
.flow-card h3 { font-size: 1.14rem; margin-bottom: .5rem; }
.flow-card p { color: var(--ink-2); font-size: .95rem; margin: 0; }

/* ── 10. Çağrı bandı (CTA) ────────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden; color: #fff;
  border-radius: var(--r-xl); padding: 52px 48px;
  background:
    radial-gradient(600px 320px at 92% 10%, rgba(124, 198, 255, .32), transparent 62%),
    radial-gradient(500px 300px at 0% 100%, rgba(25, 198, 216, .22), transparent 60%),
    linear-gradient(120deg, var(--brand-700) 0%, var(--navy-3) 62%, var(--navy) 100%);
  box-shadow: var(--sh);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.55rem, 2.7vw, 2.2rem); font-weight: 800; margin-bottom: .6rem; }
.cta-band p { color: rgba(255, 255, 255, .84); margin-bottom: 0; }
.cta-band .perks { display: flex; flex-wrap: wrap; gap: .6rem 1.3rem; list-style: none; padding: 0; margin: 1.3rem 0 0; }
.cta-band .perks li { display: flex; align-items: center; gap: .45rem; font-size: .9rem; color: rgba(255, 255, 255, .92); }
.cta-band .perks i { color: var(--brand-300); }
.cta-band .btn-light { background: #fff; color: var(--navy); border-color: #fff; }
.cta-band .btn-light:hover { background: var(--brand-soft); color: var(--brand-700); }

/* ── 11. Sayfa başlığı · breadcrumb · prose (CMS) ─────────────────────── */
.page-head {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 300px at 95% -30%, rgba(11, 140, 245, .30), transparent 62%),
    linear-gradient(170deg, var(--navy-2), var(--navy));
  color: #fff; padding: 56px 0 52px;
}
.page-head > .container { position: relative; }
.page-head h1 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 800; margin-bottom: .45rem; }
.page-head p { color: rgba(255, 255, 255, .74); margin-bottom: 0; max-width: 680px; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; list-style: none; padding: 0; margin: 0 0 1rem; font-size: .86rem; color: rgba(255, 255, 255, .55); }
.crumbs a { color: rgba(255, 255, 255, .78); font-weight: 600; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { opacity: .5; font-size: .7rem; }

.prose-wrap { max-width: 860px; margin: 0 auto; }
.prose-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh); padding: 44px 48px; }
.prose { font-size: 1.03rem; color: var(--ink); line-height: 1.75; }
.prose > :first-child { margin-top: 0; }
.prose h1, .prose h2 { font-size: 1.55rem; margin: 2rem 0 .8rem; }
.prose h3 { font-size: 1.22rem; margin: 1.6rem 0 .6rem; }
.prose h4, .prose h5, .prose h6 { font-size: 1.05rem; margin: 1.4rem 0 .5rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.1rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose img { border-radius: var(--r-lg); margin: .5rem 0; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote { border-left: 3px solid var(--brand); background: var(--bg-soft); padding: 1rem 1.25rem; border-radius: 0 var(--r) var(--r) 0; margin: 1.5rem 0; color: var(--ink-2); }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.2rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: .6rem .8rem; text-align: left; }
.prose th { background: var(--bg-soft); font-weight: 700; }
.page-banner { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh); margin-bottom: 2rem; }
.page-banner img { display: block; width: 100%; }

/* ── 12. İletişim ──────────────────────────────────────────────────────── */
.contact-tiles { margin-top: -56px; position: relative; z-index: 3; }
.contact-tile {
  display: flex; gap: 1rem; align-items: flex-start; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh); padding: 1.35rem 1.4rem;
}
.contact-tile .ico { flex-shrink: 0; width: 50px; height: 50px; border-radius: var(--r); display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-700); font-size: 1.1rem; }
.contact-tile h3 { font-size: 1rem; margin-bottom: .2rem; }
.contact-tile p { color: var(--ink-2); margin: 0; font-size: .95rem; word-break: break-word; }
.contact-tile a { color: var(--ink-2); }
.contact-tile a:hover { color: var(--brand-700); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh); padding: 40px; }
.form-card .form-head { text-align: center; margin-bottom: 1.8rem; }
.form-card .form-head h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 800; margin-bottom: .4rem; }
.form-card .form-head p { color: var(--ink-2); margin: 0; }

/* ── 13. Sonuç / 404 ───────────────────────────────────────────────────── */
.result-section { padding: 96px 0; background: var(--bg-soft); }
.result-card { max-width: 680px; margin: 0 auto; text-align: center; }
.result-card .tick {
  width: 92px; height: 92px; margin: 0 auto 26px; border-radius: var(--pill);
  background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-size: 2.2rem;
  box-shadow: 0 0 0 12px rgba(11, 140, 245, .07);
}
.result-card .code {
  font-family: var(--head); font-weight: 800; font-size: clamp(4.5rem, 12vw, 7.5rem); line-height: 1; letter-spacing: -.05em; margin-bottom: .6rem;
  background: linear-gradient(96deg, var(--brand) 10%, var(--cyan) 90%); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.result-card h1, .result-card h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .7rem; }
.result-card p { color: var(--ink-2); font-size: 1.05rem; margin-bottom: 1.8rem; }
.result-card .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }

/* ── 14. Alt bilgi ─────────────────────────────────────────────────────── */
.site-footer {
  position: relative; background: var(--navy); color: rgba(255, 255, 255, .66);
  padding: 72px 0 28px; border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--brand), var(--cyan)) 1;
}
.site-footer h4 { color: #fff; font-size: .86rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer h4 a { color: #fff; }
.site-footer a { color: rgba(255, 255, 255, .66); font-size: .93rem; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .62rem; }
.site-footer .about { font-size: .94rem; max-width: 340px; margin: 1rem 0 1.2rem; }
.site-footer .brand-mark img { height: 46px; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact i { color: var(--brand-300); margin-top: .3rem; width: 1rem; text-align: center; flex-shrink: 0; }
.footer-social { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--pill); display: grid; place-items: center;
  border: 1px solid var(--navy-line); color: rgba(255, 255, 255, .8); font-size: .95rem;
  transition: background-color var(--t), color var(--t), border-color var(--t);
}
.footer-social a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--navy-line); margin-top: 48px; padding-top: 22px;
  font-size: .85rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom a { font-size: .85rem; }

.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 1020;
  width: 46px; height: 46px; border-radius: var(--pill); border: 0;
  display: grid; place-items: center; color: #fff; background: var(--brand); box-shadow: var(--sh-brand);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--t), transform var(--t), visibility var(--t), background-color var(--t);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--brand-600); }

/* Form yükleniyor perdesi (contact-form.js) */
.form_loader { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; background: rgba(10, 22, 34, .55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.form_loader > div { display: flex; flex-direction: column; align-items: center; gap: 14px; background: #fff; padding: 26px 34px; border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.loadet_text { font-family: var(--head); font-weight: 700; color: var(--ink); }
.loader_rolling { width: 38px; height: 38px; border-radius: 50%; border: 3px solid var(--brand-soft); border-top-color: var(--brand); animation: of-spin .8s linear infinite; }
@keyframes of-spin { to { transform: rotate(360deg); } }

/* ── 15. Yardımcılar · eski sınıf uyumu ────────────────────────────────── */
.alert-soft { display: flex; gap: .6rem; align-items: flex-start; border-radius: var(--r); border: 1.5px solid var(--line); background: var(--bg-soft); padding: 14px 16px; font-size: .94rem; color: var(--ink-2); margin-bottom: 1rem; }
.alert-soft i { margin-top: .2rem; flex-shrink: 0; }
.alert-soft.is-error { border-color: rgba(220, 38, 38, .3); background: var(--danger-soft); color: #991b1b; }
.alert-soft.is-ok { border-color: rgba(18, 161, 80, .3); background: var(--ok-soft); color: #11703a; }
.alert-soft.is-info { border-color: rgba(11, 140, 245, .3); background: var(--brand-soft); color: var(--brand-700); }
.alert-soft.is-warn { border-color: rgba(217, 119, 6, .35); background: rgba(245, 158, 11, .09); color: #92400e; }
.badge-soft { display: inline-flex; align-items: center; gap: .4rem; background: var(--brand-soft); color: var(--brand-700); font-weight: 700; font-size: .78rem; padding: .32rem .7rem; border-radius: var(--pill); }

/* Eski içerik/şablon sınıfları — CMS gövdelerinde ve özel HTML sayfalarında hâlâ geçiyor. */
.text-primary-custom { color: var(--brand-700) !important; }
.bg-primary-custom { background-color: var(--brand) !important; }
.shadow-custom { box-shadow: var(--sh) !important; }
.page-content-text { font-size: 1.03rem; line-height: 1.75; color: var(--ink); }
.page-content-text img { max-width: 100%; height: auto; border-radius: var(--r-lg); }
.bg-light { background-color: var(--bg-soft) !important; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--brand-ring); outline-offset: 2px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 2000; background: var(--brand); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 var(--r) 0; font-weight: 700; }
.skip-link:focus { left: 0; color: #fff; }

/* ── 16. Duyarlılık & erişilebilirlik ──────────────────────────────────── */
@media (max-width: 1199.98px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991.98px) {
  .section { padding: 64px 0; }
  .hero-inner { padding-top: 56px; padding-bottom: 128px; }
  .hero-visual { margin-top: 3rem; }
  .hero-frame { transform: none; }
  .feature-panel { padding: 22px 18px; margin-top: -84px; }
  .content-block { padding: 56px 0; }
  .content-block .block-media { margin-bottom: 2rem; }
  .steps-flow::before { display: none; }
  .flow-card { text-align: left; display: flex; gap: 1.1rem; align-items: flex-start; padding: 0; }
  .flow-card .num { width: 52px; height: 52px; font-size: 1.15rem; margin: 0; box-shadow: none; flex-shrink: 0; }
  .cta-band { padding: 36px 26px; }
  .auth-section { padding: 36px 0 56px; }
  .auth-aside { display: none; }
  .auth-card { padding: 32px 24px; }
  .prose-card { padding: 30px 24px; }
  .form-card { padding: 28px 22px; }
  .contact-tiles { margin-top: -40px; }
}
@media (max-width: 575.98px) {
  .btn { white-space: normal; text-align: center; }
  .brand-mark img { height: 38px; }
  .section { padding: 52px 0; }
  .hero-claim h1 { font-size: 2.05rem; }
  .hero-claim p.lead { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-head { padding: 40px 0 40px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .hero-frame { transform: none; }
}
