/* ==========================================================================
   Özdemir Asansör — Arhavi / Artvin
   Renkler logodan türetildi: mürekkep siyahı + logo kırmızısı #e11015.
   ========================================================================== */

/* ---------- yazı tipleri (self-host, harici istek yok) ---------- */
/* Latin — sayfanın gövdesi */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  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;
}
/* Latin genişletilmiş — Türkçe ş, ğ, İ burada */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  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;
}
/* Gürcüce — yalnızca /ka/ sayfalarında indirilir */
@font-face {
  font-family: 'Noto Sans Georgian';
  src: url('/assets/fonts/noto-sans-georgian.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0589, U+10A0-10FF, U+1C90-1CBA, U+1CBD-1CBF, U+205A, U+2D00-2D2F, U+2E31;
}

/* ---------- tokenlar ---------- */
:root {
  --bg: #ffffff;
  --bg-alt: #f4f6f8;
  --surface: #ffffff;
  --surface-2: #f8f9fb;
  --ink: #14161a;
  --ink-2: #4c5563;
  --ink-3: #6f7887;
  --line: #e0e4ea;
  --line-2: #cfd5de;

  --brand: #e11015;          /* dolgu / buton */
  --brand-hover: #b90d11;
  --brand-text: #c30d12;     /* zemin üstünde okunan kırmızı */
  --brand-soft: rgba(225, 16, 21, .09);
  --on-brand: #ffffff;

  --band-bg: #14161a;
  --band-ink: #f2f4f7;
  --band-ink-2: #a9b2c0;

  --shadow-s: 0 1px 2px rgba(16, 20, 28, .06), 0 2px 8px rgba(16, 20, 28, .05);
  --shadow-m: 0 2px 6px rgba(16, 20, 28, .07), 0 12px 32px rgba(16, 20, 28, .09);

  --r: 10px;
  --r-s: 7px;
  --wrap: 1160px;
  --pad: clamp(1rem, 4vw, 2rem);

  --font: 'Inter', 'Noto Sans Georgian', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color-scheme: light;
}

/* Varsayılan AÇIK temadır — sistem koyu modda olsa bile. Koyu tema yalnızca
   ziyaretçi başlıktaki düğmeye basınca (data-theme="dark") devreye girer. */
:root[data-theme='dark'] {
  --bg: #0e1014;
  --bg-alt: #14171d;
  --surface: #171a21;
  --surface-2: #1c2029;
  --ink: #eef1f5;
  --ink-2: #b4bcc9;
  --ink-3: #8e97a6;
  --line: #262c36;
  --line-2: #333a46;

  --brand: #e5252a;
  --brand-hover: #f2454a;
  --brand-text: #ff6b6f;
  --brand-soft: rgba(229, 37, 42, .14);

  --band-bg: #171a21;
  --band-ink: #eef1f5;
  --band-ink-2: #a0a9b7;

  --shadow-s: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-m: 0 2px 6px rgba(0, 0, 0, .4), 0 14px 36px rgba(0, 0, 0, .45);
  color-scheme: dark;
}

/* ---------- temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 104px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
:lang(ka) body, body:lang(ka) { line-height: 1.75; }

img, svg, iframe { max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.18; letter-spacing: -.018em; margin: 0; text-wrap: balance; }
:lang(ka) h1, :lang(ka) h2, :lang(ka) h3 { letter-spacing: 0; line-height: 1.3; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.icon { width: 1.15em; height: 1.15em; flex: none; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: var(--on-brand);
  padding: .7rem 1.1rem; border-radius: 0 0 var(--r-s) 0; font-weight: 600;
}
.skip:focus { left: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2.5px solid var(--brand-text);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- logo ---------- */
/* Logo üç satırlık bir kilit (Arhavi / ÖZDEMİR / Asansör). Küçük boyda üst ve alt
   satırlar okunmaz hale geldiği için başlıkta cömert yer ayrılıyor. */
.logo { display: block; width: auto; height: 68px; color: var(--ink); }
.logo--ftr { height: 56px; }
@media (max-width: 860px) { .logo { height: 50px; } }
@media (max-width: 560px) { .logo { height: 42px; } }

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .72rem 1.15rem;
  border: 1px solid transparent; border-radius: var(--r-s);
  font-weight: 650; font-size: .95rem; letter-spacing: -.01em;
  text-decoration: none; cursor: pointer;
  transition: background-color .16s, color .16s, border-color .16s, transform .16s;
}
.btn:active { transform: translateY(1px); }
.btn--brand { background: var(--brand); color: var(--on-brand); }
.btn--brand:hover { background: var(--brand-hover); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: var(--surface-2); }
.btn--onband { background: var(--brand); color: var(--on-brand); }
.btn--onband:hover { background: var(--brand-hover); }
.btn--lg { padding: .95rem 1.5rem; font-size: 1.02rem; }
.btn--block { width: 100%; justify-content: center; }

.iconbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: .3rem;
  min-width: 42px; height: 42px; padding: 0 .55rem;
  background: transparent; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r-s);
  cursor: pointer; font: inherit; font-size: .9rem; font-weight: 600;
  transition: border-color .16s, background-color .16s;
}
.iconbtn:hover { border-color: var(--line-2); background: var(--surface-2); }

/* tema düğmesi: açık temada ay, koyu temada güneş ikonu */
.only-dark { display: none; }
.only-light { display: inline-flex; }
:root[data-theme='dark'] .only-dark { display: inline-flex; }
:root[data-theme='dark'] .only-light { display: none; }

/* ---------- başlık / header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr__in { display: flex; align-items: center; gap: 1rem; min-height: 96px; }
@media (max-width: 860px) { .hdr__in { min-height: 80px; } }
@media (max-width: 560px) { .hdr__in { min-height: 72px; } }
.hdr__logo { display: flex; flex: none; }
.hdr__nav { margin-inline-start: auto; }
.hdr__nav ul { display: flex; gap: .35rem; }
.hdr__nav a {
  display: block; padding: .5rem .8rem; border-radius: var(--r-s);
  text-decoration: none; font-weight: 550; font-size: .95rem; color: var(--ink-2);
  transition: color .16s, background-color .16s;
}
.hdr__nav a:hover { color: var(--ink); background: var(--surface-2); }
.hdr__nav a[aria-current] { color: var(--ink); font-weight: 650; }
.hdr__nav a[aria-current]::after {
  content: ''; display: block; height: 2.5px; margin-top: 3px;
  background: var(--brand); border-radius: 2px;
}
/* ---------- açılır alt menü (Çözümlerimiz) ---------- */
.hdr__nav li { position: relative; }
.hasmenu > a { display: flex; align-items: center; gap: .3rem; }
.hasmenu > a .icon { width: .95rem; height: .95rem; transition: transform .18s; }
.hasmenu:hover > a .icon, .hasmenu:focus-within > a .icon { transform: rotate(180deg); }

/* `.hdr__nav ul` flex tanımlıyor ve özgüllüğü daha yüksek — burada .hdr__nav ile eziyoruz */
.hdr__nav .submenu {
  display: block;
  position: absolute; top: 100%; inset-inline-start: 0; z-index: 10;
  min-width: 232px; padding: .35rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-m);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s, transform .16s, visibility .16s;
}
/* fare bağlantıdan panele geçerken menü kapanmasın diye araya köprü */
.hasmenu::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 10px; }
.hasmenu:hover .submenu,
.hasmenu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }

.hdr__nav .submenu a {
  display: block; padding: .55rem .7rem; border-radius: var(--r-s);
  font-size: .92rem; font-weight: 550; color: var(--ink-2); text-decoration: none;
  white-space: nowrap;
}
.hdr__nav .submenu a:hover { background: var(--brand-soft); color: var(--brand-text); }
.hdr__nav .submenu a::after { content: none; }

.hdr__tools { display: flex; align-items: center; gap: .5rem; margin-inline-start: auto; }
.hdr__nav + .hdr__tools { margin-inline-start: .5rem; }
.hdr__burger { display: none; }

/* dil seçici */
.langpick { position: relative; }
.langpick__cur { font-variant: tabular-nums; }
.langpick__menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 6px); z-index: 5;
  min-width: 168px; padding: .3rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-m);
}
.langpick__menu[hidden] { display: none; }
.langpick__menu a {
  display: block; padding: .55rem .7rem; border-radius: var(--r-s);
  text-decoration: none; font-size: .93rem; color: var(--ink-2);
}
.langpick__menu a:hover { background: var(--surface-2); color: var(--ink); }
.langpick__menu a[aria-current] { color: var(--ink); font-weight: 650; background: var(--brand-soft); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60rem 30rem at 88% -12%, var(--brand-soft), transparent 62%),
    linear-gradient(180deg, var(--surface-2), transparent 45%);
}
.hero__in {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.hero__title {
  margin-top: .7rem; max-width: 17ch;
  font-size: clamp(2.15rem, 6vw, 4.1rem);
  font-weight: 820; letter-spacing: -.03em;
}
:lang(ka) .hero__title { font-size: clamp(1.9rem, 5vw, 3.4rem); font-weight: 700; max-width: 20ch; }
.hero__lead {
  margin-top: 1.1rem; max-width: 54ch;
  font-size: clamp(1.03rem, 1.4vw, 1.2rem); color: var(--ink-2);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.9rem; }
/* Görsel yok; rozet şeridi hero'nun tabanını kurar ve genişliği dengeler. */
/* Rozetler: çizgi ayraç yok — her biri kendi kutusunda, aralarında eşit boşluk.
   Böylece kaç sütuna düşerse düşsün maddeler birbirine yapışmıyor. */
.hero__badges {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem;
  margin-top: 2.8rem;
}
.badge__box {
  display: flex; flex-direction: column; gap: .7rem;
  padding: 1.1rem 1.1rem 1.15rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-s);
  font-size: .95rem; color: var(--ink-2); font-weight: 600; line-height: 1.4;
}
.badge__ico {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-width: 54px; height: 54px; padding-inline: .6rem; border-radius: var(--r-s);
  background: var(--brand-soft); color: var(--brand-text);
}
.badge__ico .icon { width: 1.2rem; height: 1.2rem; }
/* Belge işaretleri: TSE tescilli bir markadır, rengi ve biçimi tema ile değişmez.
   Okunabilmeleri için nötr zeminli, daha geniş bir alan veriliyor. */
/* Zemin diğer rozetlerle aynı kalır; yalnızca genişlik farklı. */
.badge__ico--marks { padding-inline: .85rem; gap: .85rem; }
/* TSE-HYB yedi karakter taşıyor; okunması için CE'den belirgin biçimde geniş */
.badge__ico--marks .icon--tse { width: 4.3rem; height: 2.5rem; }
.badge__ico--marks .icon--ce  { width: 2.4rem; height: 1.6rem; color: var(--ink); }

@media (max-width: 1060px) { .hero__badges { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .hero__badges { grid-template-columns: 1fr; } }

/* ---------- sayısal veriler ---------- */
.stats { background: var(--bg-alt); border-block: 1px solid var(--line); }
.stats__in {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  padding-block: clamp(1.8rem, 3.5vw, 2.6rem);
}
.stat { display: flex; flex-direction: column; gap: .35rem; }
.stat__value {
  display: flex; align-items: center; gap: .55rem;
  font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 820; letter-spacing: -.03em;
  color: var(--brand-text); font-variant-numeric: tabular-nums; line-height: 1.05;
}
.stat__ico { display: inline-flex; color: var(--ink); }
.stat__ico .icon { width: 1.9rem; height: 1.9rem; }
.stat__label { font-size: .93rem; color: var(--ink-2); font-weight: 550; max-width: 22ch; }
@media (max-width: 860px) { .stats__in { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1.2rem; } }
@media (max-width: 420px) { .stats__in { grid-template-columns: 1fr; } }

.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--brand-text);
}
:lang(ka) .eyebrow { letter-spacing: .06em; text-transform: none; font-size: .85rem; }
.eyebrow--hero { display: inline-flex; align-items: center; gap: .55rem; }
.eyebrow--hero::before { content: ''; width: 26px; height: 3px; background: var(--brand); border-radius: 2px; }


/* ---------- bölümler ---------- */
.sec { padding-block: clamp(3rem, 6.5vw, 5rem); }
.sec--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.sec__title { margin-top: .55rem; font-size: clamp(1.6rem, 3.1vw, 2.35rem); font-weight: 780; }
.sec__lead { margin-top: .9rem; max-width: 62ch; color: var(--ink-2); font-size: 1.05rem; }

.grid { display: grid; gap: 1.1rem; margin-top: 2.4rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

/* hizmet kartı */
.card {
  position: relative; display: flex; flex-direction: column;
  padding: 1.7rem 1.5rem 1.4rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-s);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.card::before {
  content: ''; position: absolute; left: 1.5rem; right: 1.5rem; top: 0;
  height: 3px; background: var(--brand); border-radius: 0 0 3px 3px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.card:hover { border-color: var(--line-2); box-shadow: var(--shadow-m); transform: translateY(-2px); }
.card:hover::before { transform: scaleX(1); }

.card__top { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.card__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: var(--r-s);
  background: var(--surface-2); border: 1px solid var(--line); color: var(--ink);
  transition: border-color .18s, background-color .18s;
}
.card:hover .card__mark { border-color: var(--brand); background: var(--brand-soft); }
.card__num { font-size: .95rem; font-weight: 700; color: var(--line-2); font-variant-numeric: tabular-nums; }
.card__title { margin-top: 1.15rem; font-size: 1.2rem; font-weight: 700; }
.card__text { margin-top: .7rem; color: var(--ink-2); font-size: .97rem; }
.card__link {
  display: inline-flex; align-self: flex-start; align-items: center; gap: .4rem;
  margin-top: auto; padding-top: 1.2rem;
  color: var(--brand-text); font-weight: 650; font-size: .93rem; text-decoration: none;
}
.card__link .icon { transition: transform .18s; }
.card:hover .card__link .icon { transform: translateX(3px); }

/* neden biz */
.feat { padding: 1.35rem 1.3rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.feat__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin-bottom: .9rem;
  background: var(--brand-soft); color: var(--brand-text); border-radius: var(--r-s);
}
.feat__ico .icon { width: 1.35rem; height: 1.35rem; }
.feat h3 { font-size: 1.05rem; font-weight: 700; }
.feat p { margin-top: .55rem; color: var(--ink-2); font-size: .94rem; }

/* süreç */
.steps {
  display: grid; gap: 1.1rem; margin-top: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 195px), 1fr));
  counter-reset: step;
}
.step { position: relative; padding-top: 1.3rem; border-top: 2px solid var(--line); }
.step::after {
  content: ''; position: absolute; top: -2px; left: 0; width: 34px; height: 2px; background: var(--brand);
}
.step__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; margin-bottom: .6rem;
  background: var(--ink); color: var(--bg); border-radius: 50%;
  font-size: .85rem; font-weight: 700; font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1rem; font-weight: 700; }
.step p { margin-top: .45rem; color: var(--ink-2); font-size: .92rem; }

/* hakkımızda — metin uzun, okuma sütunu dar tutulur, bölge kutusu yapışır */
.about { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.about__text { max-width: 68ch; }
.about__text p { margin-top: 1rem; color: var(--ink-2); font-size: 1.02rem; }
.about__text .sec__title + p { margin-top: 1.3rem; }
.about__block { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.about__block h3 { font-size: 1.22rem; font-weight: 760; }
.about__block h3::after {
  content: ''; display: block; width: 34px; height: 3px; margin-top: .55rem;
  background: var(--brand); border-radius: 2px;
}
.about__region { position: sticky; top: 120px; }
.about__region { padding: 1.4rem 1.4rem 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.about__region h3 { display: flex; align-items: center; gap: .5rem; font-size: 1rem; font-weight: 700; }
.about__region h3 .icon { color: var(--brand-text); }
.about__region ul { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.about__region li {
  padding: .34rem .7rem; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 999px; font-size: .87rem; color: var(--ink-2); font-weight: 550;
}

/* ---------- anasayfadaki çözümler şeridi ---------- */
.solstrip {
  display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1rem;
  margin-top: 2.2rem; padding: 1.1rem 1.3rem;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r);
}
.solstrip__title {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3);
}
:lang(ka) .solstrip__title { letter-spacing: .04em; text-transform: none; font-size: .88rem; }
.solstrip__list { display: flex; flex-wrap: wrap; gap: .45rem; }
.solstrip__list a {
  display: inline-block; padding: .35rem .75rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  font-size: .88rem; font-weight: 600; color: var(--ink-2); text-decoration: none;
}
.solstrip__list a:hover { border-color: var(--brand); color: var(--brand-text); }
.solstrip__all {
  display: inline-flex; align-items: center; gap: .4rem; margin-inline-start: auto;
  color: var(--brand-text); font-weight: 650; font-size: .92rem; text-decoration: none;
}

/* ---------- çözümler: dikey akan geniş satırlar ---------- */
.ph { display: block; }
.ph img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
:root[data-theme='dark'] .ph img { filter: brightness(.9) contrast(1.02); }

.sollist { display: grid; gap: clamp(3rem, 6vw, 5rem); }

/* Fotoğraf metinden geniş; satırlar dönüşümlü olarak yer değiştirir. */
.sol {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center;
  scroll-margin-top: 120px;
}
.sol:nth-child(even) .sol__media { order: 2; }

.sol__media {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--r); background: var(--surface-2);
  box-shadow: var(--shadow-m);
}
.sol__media::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
  background: var(--brand);
}
.sol__media .ph img { transition: transform .5s ease; }
.sol:hover .sol__media .ph img { transform: scale(1.025); }

.sol__body { display: flex; flex-direction: column; align-items: flex-start; }
.sol__num {
  font-size: .85rem; font-weight: 700; color: var(--brand-text);
  font-variant-numeric: tabular-nums; letter-spacing: .1em;
}
.sol__title { margin-top: .5rem; font-size: clamp(1.4rem, 2.6vw, 1.95rem); font-weight: 760; }
.sol__title::after {
  content: ''; display: block; width: 40px; height: 3px; margin-top: .7rem;
  background: var(--brand); border-radius: 2px;
}
.sol__text { margin-top: 1.1rem; color: var(--ink-2); font-size: 1.02rem; max-width: 46ch; }
.sol__cta { margin-top: 1.6rem; }

@media (max-width: 900px) {
  .sol { grid-template-columns: 1fr; gap: 1.4rem; }
  .sol:nth-child(even) .sol__media { order: 0; }
  .sol__text { max-width: none; }
}

/* çağrı bandı */
.band { background: var(--band-bg); color: var(--band-ink); }
.band__in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: clamp(2rem, 4vw, 3rem);
}
.band h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); font-weight: 760; }
.band p { margin-top: .5rem; color: var(--band-ink-2); max-width: 56ch; }

/* ---------- hizmet detay sayfası ---------- */
.phead { padding-block: clamp(2.2rem, 5vw, 3.6rem) clamp(1.6rem, 3vw, 2.4rem); border-bottom: 1px solid var(--line); background: var(--surface-2); }
.crumbs { display: flex; align-items: center; gap: .25rem; font-size: .88rem; color: var(--ink-3); }
.crumbs a { text-decoration: none; color: var(--ink-2); }
.crumbs a:hover { color: var(--brand-text); }
.crumbs .icon { width: .95rem; height: .95rem; }
.phead__title { margin-top: .8rem; font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; }
.phead__lead { margin-top: .9rem; max-width: 60ch; color: var(--ink-2); font-size: 1.05rem; }
.jump { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.jump a {
  display: inline-block; padding: .45rem .85rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  font-size: .88rem; font-weight: 600; text-decoration: none; color: var(--ink-2);
}
.jump a:hover { border-color: var(--brand); color: var(--brand-text); }

.svc__in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(1.6rem, 4vw, 3.5rem); align-items: start; }
.svc__mark { display: inline-flex; color: var(--ink); margin-bottom: .9rem; }
.svc__lead { margin-top: .9rem; margin-bottom: 1.5rem; color: var(--ink-2); font-size: 1.02rem; }
.svc__points { display: grid; gap: .75rem; padding-top: .4rem; }
.svc__points li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .85rem 1rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-s);
  font-size: .96rem; color: var(--ink-2);
}
.svc__points .icon { color: var(--brand-text); margin-top: .22rem; width: 1.05rem; height: 1.05rem; }

/* ---------- iletişim ---------- */
.sec--contact { border-top: 1px solid var(--line); }
.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(1.5rem, 3.5vw, 2.6rem); margin-top: 2.4rem; align-items: start; }
.contact__info { display: grid; gap: .7rem; align-content: start; }

/* iş yeri fotoğrafı — ziyaretçi geldiğinde dükkânı tanısın diye */
.shopshot {
  margin: 0 0 .5rem; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-s);
}
.shopshot .ph img { aspect-ratio: 4 / 3; }
.shopshot figcaption {
  display: flex; align-items: center; gap: .45rem;
  padding: .7rem 1rem; border-top: 1px solid var(--line);
  font-size: .88rem; font-weight: 600; color: var(--ink-2);
}
.shopshot figcaption .icon { color: var(--brand-text); }

.ccard {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  text-decoration: none; color: inherit;
  transition: border-color .16s, box-shadow .16s;
}
a.ccard:hover { border-color: var(--brand); box-shadow: var(--shadow-s); }
.ccard__ico {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 42px; height: 42px; border-radius: var(--r-s);
  background: var(--surface-2); color: var(--ink-2);
}
.ccard--call .ccard__ico { background: var(--brand); color: var(--on-brand); }
.ccard__body { display: flex; flex-direction: column; min-width: 0; }
.ccard__k { font-size: .8rem; color: var(--ink-3); font-weight: 600; }
.ccard__v { font-size: 1.02rem; font-weight: 680; letter-spacing: -.01em; overflow-wrap: anywhere; }
.ccard--call .ccard__v { font-size: 1.22rem; color: var(--brand-text); font-variant-numeric: tabular-nums; }
.ccard__note { margin-top: .2rem; font-size: .84rem; color: var(--ink-3); }
.ccard > .icon:last-child { margin-inline-start: auto; color: var(--ink-3); }
.ccard--static { cursor: default; }

/* form */
.form { padding: 1.4rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.form__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.field { display: block; margin-bottom: .85rem; }
.field > span { display: block; margin-bottom: .35rem; font-size: .86rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: .68rem .8rem;
  background: var(--bg); color: var(--ink);
  border: 1px solid var(--line-2); border-radius: var(--r-s);
  font: inherit; font-size: .95rem;
  transition: border-color .16s, box-shadow .16s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.form__note { margin-top: .7rem; font-size: .83rem; color: var(--ink-3); text-align: center; }

/* harita */
.map { margin: 1rem 0 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--surface); }
.map iframe { display: block; width: 100%; height: 260px; border: 0; filter: none; }
:root[data-theme='dark'] .map iframe { filter: invert(.92) hue-rotate(180deg) saturate(.75) brightness(.95); }
.map figcaption { padding: .7rem 1rem; border-top: 1px solid var(--line); font-size: .88rem; }
.map figcaption a { display: inline-flex; align-items: center; gap: .4rem; color: var(--brand-text); font-weight: 600; text-decoration: none; }

/* ---------- footer ---------- */
.ftr { background: var(--bg-alt); border-top: 1px solid var(--line); }
.ftr__in {
  display: grid; gap: 2rem;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
  padding-block: clamp(2.2rem, 4vw, 3rem);
}
.ftr__brand p { margin-top: 1rem; max-width: 42ch; color: var(--ink-2); font-size: .94rem; }
.ftr__col h2 { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
:lang(ka) .ftr__col h2 { letter-spacing: .04em; text-transform: none; font-size: .92rem; }
.ftr__col ul { margin-top: 1rem; display: grid; gap: .55rem; }
.ftr__col a, .ftr__col span { display: inline-flex; align-items: center; gap: .5rem; color: var(--ink-2); text-decoration: none; font-size: .94rem; overflow-wrap: anywhere; }
.ftr__col a:hover { color: var(--brand-text); }
.ftr__contact .icon { color: var(--ink-3); }

.ftr__base { padding-block: 1.2rem; border-top: 1px solid var(--line); font-size: .85rem; color: var(--ink-3); }

/* ---------- duyarlılık ---------- */
@media (max-width: 1000px) {
  .about, .svc__in, .contact { grid-template-columns: 1fr; }
  .ftr__in { grid-template-columns: 1fr 1fr; }
  .ftr__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .hdr__burger { display: inline-flex; }
  .hdr__call span { display: none; }
  .hdr__call { padding-inline: .85rem; }
  .hdr__nav + .hdr__tools { margin-inline-start: auto; }

  .hdr__nav {
    /* sticky header konumlandırılmış bir öğedir; nav onun altına yapışır */
    position: absolute; top: 100%; left: 0; right: 0; z-index: 50;
    display: none; padding: .6rem var(--pad) 1.2rem;
    background: var(--bg); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-m);
  }
  .hdr__nav[data-open] { display: block; }
  .hdr__nav ul { flex-direction: column; gap: .15rem; }
  .hdr__nav a { padding: .85rem .6rem; font-size: 1.02rem; border-radius: var(--r-s); }
  .hdr__nav a[aria-current]::after { width: 26px; }

  /* dokunmatikte hover yok — alt menü hep açık, girintili liste olarak durur */
  .hasmenu > a .icon { display: none; }
  .hasmenu::after { content: none; }
  .hdr__nav .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    min-width: 0; padding: 0 0 .5rem .9rem; margin-top: -.2rem;
    background: transparent; border: 0; box-shadow: none;
    border-inline-start: 2px solid var(--line);
  }
  .hdr__nav .submenu a { padding: .5rem .6rem; font-size: .95rem; color: var(--ink-3); white-space: normal; }

  .only-open { display: none; }
  [aria-expanded='true'] .only-open { display: inline-flex; }
  [aria-expanded='true'] .only-closed { display: none; }
}

@media (max-width: 560px) {
  .ftr__in { grid-template-columns: 1fr; }
  .btn--lg { width: 100%; justify-content: center; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .band__in .btn { width: 100%; justify-content: center; }
}

@media print {
  .hdr__tools, .hdr__nav, .form, .map, .skip, .band { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ==========================================================================
   Sponsor / iş ortağı şeridi  (blok tipi: sponsors)
   --------------------------------------------------------------------------
   Kayma JS'SİZ: liste iki kez basılır (ikincisi aria-hidden) ve şerit tam
   `-50%` ötelenir — ilk kopyanın sonu ikinci kopyanın başına denk geldiği için
   döngü dikişsiz görünür. Süre, öğe sayısına göre satır içi `--marquee-dur`
   ile gelir (bkz. pages/home.mjs sponsorsSection), böylece az ya da çok marka
   olması hızı değiştirmez.
   ========================================================================== */
.sponsors { overflow: hidden; }
.sponsors__head { margin-bottom: 1.6rem; }

.marquee {
  overflow: hidden;
  /* Kenarlarda yumuşak geçiş: markalar bıçak gibi kesilmesin. */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: marquee-scroll var(--marquee-dur, 40s) linear infinite;
}

/* Okumak isteyen dursun: fare üzerindeyken ya da klavyeyle odaklanınca durur. */
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee__item {
  flex: none;
  font-weight: 650;
  font-size: clamp(.95rem, 2.4vw, 1.15rem);
  letter-spacing: .01em;
  color: var(--ink-2, #4c5563);
  padding: .55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  white-space: nowrap;
}

/* Hareket kısıtlaması açıksa animasyon HİÇ çalışmaz; şerit sıradan, sarmalanan
   bir listeye döner (içerik kaybolmasın diye kopya da gizlenir). */
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: .8rem;
  }
  .marquee__item[aria-hidden="true"] { display: none; }
}

/* ==========================================================================
   Panelden seçilebilen bölüm görünüm seçenekleri
   --------------------------------------------------------------------------
   Bu sınıflar müşterinin panelde seçtiği seçeneklere karşılık gelir; değerler
   panel-core/src/build/sections-repo.mjs STYLE_OPTIONS whitelist'inde tanımlıdır.
   Müşteri serbest CSS yazamaz — yalnızca buradaki sınıflardan birini seçebilir.
   Dosyanın SONUNDA duruyorlar: aynı özgüllükteki bölüm kurallarını (.sec--alt,
   .stats gibi) bilinçli olarak geçersiz kılmaları gerekiyor.
   Renkler değişmez token'lardan geliyor, bu yüzden koyu temada da doğru çalışır.
   ========================================================================== */
.u-bg-plain { background: var(--surface); border-block: 0; }
.u-bg-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }

.u-space-compact { padding-block: clamp(1.6rem, 3.2vw, 2.5rem); }
.u-space-wide { padding-block: clamp(4rem, 8.5vw, 6.5rem); }
/* Şerit bölümlerde dolgu iç sarmalayıcıda; oraya da uygulanmalı. */
.u-space-compact > .wrap > .stats__in,
.u-space-compact > .wrap.stats__in,
.u-space-compact > .wrap.band__in { padding-block: clamp(1.1rem, 2.2vw, 1.6rem); }
.u-space-wide > .wrap > .stats__in,
.u-space-wide > .wrap.stats__in,
.u-space-wide > .wrap.band__in { padding-block: clamp(3rem, 6vw, 4.5rem); }

.u-align-center { text-align: center; }
.u-align-center .eyebrow--hero { justify-content: center; }
.u-align-center .hero__cta,
.u-align-center .hero__badges,
.u-align-center .band__in { justify-content: center; }
.u-align-center .hero__lead,
.u-align-center .sec__lead { margin-inline: auto; }
/* İki sütunlu iç ızgaraları ortalamaya zorlamıyoruz — okunurluk bozulur. */
.u-align-center .about,
.u-align-center .contact,
.u-align-center .card { text-align: left; }

/* Sütun sırasını ters çevirir. `direction` numarası, ızgara tek sütuna
   düştüğünde (≤900px) kaynak sırayı koruduğu için mobilde güvenlidir. */
.u-flip .about,
.u-flip .contact { direction: rtl; }
.u-flip .about > *,
.u-flip .contact > * { direction: ltr; }

/* Kayma hızı — panelde seçilir (STYLE_OPTIONS.speed). Süre satır içi
   `--marquee-dur`'dan geldiği için burada yalnızca çarpan uygulanıyor. */
.u-marquee-slow .marquee__track { animation-duration: calc(var(--marquee-dur, 40s) * 2); }
.u-marquee-fast .marquee__track { animation-duration: calc(var(--marquee-dur, 40s) * 0.5); }

.logo { aspect-ratio: 2.2781; }
