/* ==========================================================================
   FURNIGO — Mobilya Lojistiği
   Design system  ·  2026 revizyonu
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Marka */
  --fg-blue:        #235CF2;
  --fg-blue-600:    #1B4BD1;
  --fg-blue-700:    #1740AE;
  --fg-blue-50:     #EEF3FE;
  --fg-blue-100:    #DCE6FD;
  --fg-blue-200:    #B9CDFB;

  /* Koyu lacivert / füme */
  --fg-navy:        #08122B;
  --fg-navy-800:    #0D1B3D;
  --fg-navy-700:    #14264F;
  --fg-navy-600:    #1D3364;

  /* Nötr */
  --fg-ink:         #0B1220;
  --fg-slate-700:   #334155;
  --fg-slate-500:   #64748B;
  --fg-slate-400:   #94A3B8;
  --fg-line:        #E3E8F0;
  --fg-line-soft:   #EEF1F7;
  --fg-bg:          #FFFFFF;
  --fg-bg-soft:     #F6F8FB;
  --fg-bg-softer:   #FAFBFD;

  /* Vurgu (sınırlı) */
  --fg-amber:       #FCB421;
  --fg-wood:        #C9A87D;
  --fg-green:       #159A6C;

  /* Tipografi */
  --ff-display: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Ölçü */
  --wrap:        1280px;
  --wrap-narrow: 960px;
  --gut:         24px;
  --sec-y:       112px;

  /* Yuvarlama */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Gölge */
  --sh-sm:  0 1px 2px rgba(11,18,32,.05), 0 1px 3px rgba(11,18,32,.06);
  --sh:     0 4px 12px rgba(11,18,32,.06), 0 2px 4px rgba(11,18,32,.04);
  --sh-md:  0 12px 28px rgba(11,18,32,.09), 0 4px 10px rgba(11,18,32,.05);
  --sh-lg:  0 28px 60px rgba(8,18,43,.16), 0 8px 20px rgba(8,18,43,.08);
  --sh-blue:0 18px 40px rgba(35,92,242,.28);

  /* Geçiş */
  --tr:      200ms cubic-bezier(.4,0,.2,1);
  --tr-slow: 420ms cubic-bezier(.22,.61,.36,1);

  --hdr-h: 78px;
}

@media (max-width: 991px) { :root { --sec-y: 72px; --hdr-h: 68px; } }
@media (max-width: 575px) { :root { --sec-y: 56px; --gut: 18px; } }

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-slate-700);
  background: var(--fg-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--fg-blue); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--fg-blue-700); }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
figure { margin: 0; }

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

::selection { background: var(--fg-blue); color: #fff; }

/* ---------- 3. Tipografi ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  color: var(--fg-ink);
  margin: 0 0 .5em;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  text-wrap: balance;
}

h1, .t-h1 { font-size: clamp(2.25rem, 1.35rem + 3.6vw, 4.1rem); }
h2, .t-h2 { font-size: clamp(1.8rem, 1.25rem + 2.2vw, 2.9rem); }
h3, .t-h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); letter-spacing: -.02em; }
h4, .t-h4 { font-size: clamp(1.15rem, 1.03rem + .5vw, 1.375rem); letter-spacing: -.015em; font-weight: 700; }
h5, .t-h5 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.01em; }
h6, .t-h6 { font-size: .9375rem; font-weight: 700; letter-spacing: -.005em; }

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

.lede {
  font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem);
  line-height: 1.6;
  color: var(--fg-slate-500);
}
.t-sm  { font-size: .9375rem; }
.t-xs  { font-size: .8125rem; }
.t-mono{ font-variant-numeric: tabular-nums; }

strong, b { font-weight: 700; color: var(--fg-ink); }

/* ---------- 4. Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--sec-y); }
.section--tight { padding-block: calc(var(--sec-y) * .66); }
.section--soft  { background: var(--fg-bg-soft); }
.section--dark  { background: var(--fg-navy); color: rgba(255,255,255,.76); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5, .section--dark h6 { color: #fff; }
.section--dark .lede { color: rgba(255,255,255,.7); }
.section--dark strong { color: #fff; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 991px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* form + yan sütun */
.grid-form { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 48px; }
@media (max-width: 991px) { .grid-form { grid-template-columns: minmax(0,1fr); gap: 34px; } }
@media (max-width: 640px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0,1fr); } }

.stack   { display: grid; gap: 20px; }
.cluster { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- 5. Bölüm başlığı ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-body);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--fg-blue);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--fg-blue); flex: none;
}
.section--dark .eyebrow { color: var(--fg-blue-200); }
.section--dark .eyebrow::before { background: var(--fg-blue-200); }

.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head p { margin-top: 18px; }
@media (max-width: 767px) { .sec-head { margin-bottom: 36px; } }

.sec-head--split {
  display: flex; gap: 40px;
  align-items: flex-end; justify-content: space-between;
  max-width: none;
}
.sec-head--split > div:first-child { max-width: 680px; }
@media (max-width: 900px) { .sec-head--split { flex-direction: column; align-items: flex-start; gap: 22px; } }

/* ---------- 6. Butonlar ---------- */
.btn {
  --btn-bg: var(--fg-blue);
  --btn-fg: #fff;
  --btn-bd: var(--fg-blue);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 44px;                 /* dokunma hedefi */
  padding: 15px 28px;
  font-family: var(--ff-body);
  font-size: .9375rem; font-weight: 600; letter-spacing: -.005em;
  line-height: 1.2;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r-sm);
  cursor: pointer;
  text-align: center;
  transition: background var(--tr), border-color var(--tr), color var(--tr),
              transform var(--tr), box-shadow var(--tr);
}
.btn:hover {
  --btn-bg: var(--fg-blue-600);
  --btn-bd: var(--fg-blue-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh-blue);
}
.btn:active { transform: translateY(0); }
.btn .ico { flex: none; width: 17px; height: 17px; transition: transform var(--tr); }
.btn:hover .ico { transform: translateX(3px); }

.btn--ghost   { --btn-bg: transparent; --btn-fg: var(--fg-ink); --btn-bd: var(--fg-line); }
.btn--ghost:hover { --btn-bg: var(--fg-ink); --btn-bd: var(--fg-ink); box-shadow: var(--sh-md); }

.btn--light   { --btn-bg: #fff; --btn-fg: var(--fg-navy); --btn-bd: #fff; }
.btn--light:hover { --btn-bg: var(--fg-blue-50); --btn-bd: var(--fg-blue-50); --btn-fg: var(--fg-navy); box-shadow: var(--sh-lg); }

.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.34); }
.btn--outline-light:hover { --btn-bg: rgba(255,255,255,.1); --btn-bd: rgba(255,255,255,.6); color: #fff; box-shadow: none; }

.btn--amber { --btn-bg: var(--fg-amber); --btn-fg: #16202F; --btn-bd: var(--fg-amber); }
.btn--amber:hover { --btn-bg: #E8A408; --btn-bd: #E8A408; --btn-fg: #16202F; box-shadow: 0 16px 34px rgba(252,180,33,.34); }

.btn--sm  { padding: 11px 20px; font-size: .875rem; }
.btn--lg  { padding: 18px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9375rem; color: var(--fg-blue);
}
.link-arrow .ico { width: 16px; height: 16px; transition: transform var(--tr); }
.link-arrow:hover .ico { transform: translateX(4px); }

/* ---------- 7. Header ---------- */
.hdr {
  position: fixed; inset: 0 0 auto; z-index: 960;
  height: var(--hdr-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background var(--tr-slow), box-shadow var(--tr-slow), border-color var(--tr-slow);
  border-bottom: 1px solid transparent;
}
.hdr__inner {
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding-inline: var(--gut);
  display: flex; align-items: center; gap: 32px;
}
.hdr__logo { flex: none; display: block; }
.hdr__logo img { height: 34px; width: auto; transition: filter var(--tr-slow); }

.hdr__nav { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.hdr__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-size: .9375rem; font-weight: 600; letter-spacing: -.005em;
  color: var(--fg-slate-700);
  background: none; border: 0; cursor: pointer;
  border-radius: var(--r-sm);
  transition: color var(--tr), background var(--tr);
}
.hdr__link:hover, .hdr__link[aria-expanded="true"] { color: var(--fg-blue); background: var(--fg-blue-50); }
.hdr__link[aria-current="page"] { color: var(--fg-blue); }
.hdr__link .caret { width: 13px; height: 13px; transition: transform var(--tr); }
.hdr__link[aria-expanded="true"] .caret { transform: rotate(180deg); }

.hdr__actions { flex: none; display: flex; align-items: center; gap: 10px; }

/* Scrolled / solid */
.hdr.is-solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--fg-line);
  box-shadow: 0 1px 0 rgba(11,18,32,.04), 0 8px 24px rgba(11,18,32,.05);
}

/* Hero üzerinde şeffaf + açık renk */
.hdr.is-over-hero:not(.is-solid) .hdr__link { color: rgba(255,255,255,.88); }
.hdr.is-over-hero:not(.is-solid) .hdr__link:hover,
.hdr.is-over-hero:not(.is-solid) .hdr__link[aria-expanded="true"] { color: #fff; background: rgba(255,255,255,.12); }
.hdr.is-over-hero:not(.is-solid) .hdr__logo img { filter: brightness(0) invert(1); }
.hdr.is-over-hero:not(.is-solid) .btn--ghost { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.34); }
.hdr.is-over-hero:not(.is-solid) .btn--ghost:hover { --btn-bg: rgba(255,255,255,.12); --btn-bd: rgba(255,255,255,.6); }
.hdr.is-over-hero:not(.is-solid) .hdr__burger span { background: #fff; }

/* Dropdown */
.hdr__drop-wrap { position: relative; }
.hdr__drop {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translate(-50%, 8px);
  min-width: 620px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 4px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
}
.hdr__drop-wrap.is-open .hdr__drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.drop-item {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 13px 14px; border-radius: var(--r);
  transition: background var(--tr);
}
.drop-item:hover { background: var(--fg-blue-50); }
.drop-item__ico {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--fg-blue-50); color: var(--fg-blue);
}
.drop-item:hover .drop-item__ico { background: var(--fg-blue); color: #fff; }
.drop-item__ico svg { width: 19px; height: 19px; }
.drop-item__t { display: block; font-family: var(--ff-display); font-weight: 700; font-size: .9375rem; color: var(--fg-ink); margin-bottom: 2px; }
.drop-item__d { display: block; font-size: .8125rem; line-height: 1.45; color: var(--fg-slate-500); }

/* Burger */
.hdr__burger {
  display: none; flex: none;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 0; cursor: pointer;
  position: relative;
}
.hdr__burger span {
  position: absolute; left: 11px; width: 22px; height: 2px;
  background: var(--fg-ink); border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr), background var(--tr);
}
.hdr__burger span:nth-child(1) { top: 15px; }
.hdr__burger span:nth-child(2) { top: 21px; }
.hdr__burger span:nth-child(3) { top: 27px; }
.hdr__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hdr__burger.is-open span:nth-child(2) { opacity: 0; }
.hdr__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
  .hdr__nav, .hdr__actions .btn--ghost { display: none; }
  .hdr__burger { display: block; }
  .hdr__actions { margin-left: auto; }
}
@media (max-width: 560px) {
  .hdr__actions .btn { padding: 11px 16px; font-size: .875rem; }
  .hdr__logo img { height: 29px; }
}

/* Mobil çekmece */
.mnav {
  position: fixed; inset: 0; z-index: 940;
  background: #fff;
  padding: calc(var(--hdr-h) + 16px) var(--gut) 40px;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--tr-slow), transform var(--tr-slow), visibility var(--tr-slow);
}
.mnav.is-open { opacity: 1; visibility: visible; transform: none; }
.mnav__list { display: grid; gap: 2px; }
.mnav__link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%;
  padding: 16px 4px;
  font-family: var(--ff-display); font-size: 1.125rem; font-weight: 700;
  color: var(--fg-ink);
  background: none; border: 0; border-bottom: 1px solid var(--fg-line-soft);
  text-align: left; cursor: pointer;
}
.mnav__link .caret { width: 16px; height: 16px; color: var(--fg-slate-400); transition: transform var(--tr); }
.mnav__link[aria-expanded="true"] .caret { transform: rotate(180deg); }
.mnav__sub { display: none; padding: 6px 0 14px 4px; }
.mnav__sub.is-open { display: grid; gap: 2px; }
.mnav__sub a { padding: 11px 0 11px 16px; font-size: .9375rem; font-weight: 500; color: var(--fg-slate-500); border-left: 2px solid var(--fg-line); }
.mnav__sub a:hover { color: var(--fg-blue); border-left-color: var(--fg-blue); }
.mnav__foot { margin-top: 28px; display: grid; gap: 12px; }
.mnav__meta { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--fg-line-soft); font-size: .875rem; color: var(--fg-slate-500); display: grid; gap: 8px; }
.mnav__meta a { color: var(--fg-ink); font-weight: 600; }
body.nav-lock { overflow: hidden; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  background: var(--fg-navy);
  color: rgba(255,255,255,.78);
  padding-top: calc(var(--hdr-h) + 84px);
  padding-bottom: 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(102deg, rgba(8,18,43,.95) 0%, rgba(8,18,43,.86) 34%, rgba(8,18,43,.55) 62%, rgba(8,18,43,.34) 100%),
    linear-gradient(180deg, rgba(8,18,43,.62) 0%, rgba(8,18,43,0) 26%, rgba(8,18,43,.62) 100%);
}
.hero__glow {
  position: absolute; z-index: -1;
  width: 760px; height: 760px; border-radius: 50%;
  left: -300px; top: -320px;
  background: radial-gradient(circle, rgba(35,92,242,.30) 0%, rgba(35,92,242,0) 68%);
  pointer-events: none;
}
.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 64px; align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero__lede { font-size: clamp(1.0625rem, 1rem + .4vw, 1.25rem); color: rgba(255,255,255,.76); max-width: 560px; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  font-size: .8125rem; font-weight: 600; letter-spacing: .02em;
  color: rgba(255,255,255,.9);
  margin-bottom: 26px;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fg-amber); flex: none; margin-left: 6px; }

.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero__proof li {
  display: flex; align-items: center; gap: 9px;
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.72);
}
.hero__proof svg { width: 17px; height: 17px; color: var(--fg-blue-200); flex: none; }

/* Hero görsel kartı */
.hero__media { position: relative; }
.hero__card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,.14);
  aspect-ratio: 4 / 3.1;
}
.hero__card img,
.hero__card video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hareketi azalt tercihi: videoyu durdurup posteri göster */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero__video + img { display: block; }
}
.hero__chip {
  position: absolute; left: -26px; bottom: 34px;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  max-width: 290px;
}
.hero__chip .ic {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--fg-blue); color: #fff;
}
.hero__chip .ic svg { width: 21px; height: 21px; }
.hero__chip b { display: block; font-family: var(--ff-display); font-size: .9375rem; color: var(--fg-ink); line-height: 1.3; }
.hero__chip span { display: block; font-size: .8125rem; color: var(--fg-slate-500); line-height: 1.4; margin-top: 2px; }

@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: minmax(0,1fr); gap: 52px; }
  .hero__media { max-width: 620px; }
  .hero__chip { left: auto; right: 18px; bottom: -18px; }
}
@media (max-width: 767px) {
  .hero { padding-top: calc(var(--hdr-h) + 52px); padding-bottom: 64px; }
  .hero__card { aspect-ratio: 4 / 3; border-radius: var(--r-lg); }
  .hero__chip { position: static; max-width: none; margin-top: 16px; border-radius: var(--r); }
  .hero__cta { margin-bottom: 30px; }
  .hero__cta .btn { flex: 1 1 100%; }
}

/* ---------- 9. İstatistik bandı ---------- */
.stats {
  position: relative; z-index: 2;
  margin-top: -58px;
}
.stats__box {
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 44px 20px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
}
.stat { text-align: center; padding: 8px 14px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 1px; background: var(--fg-line-soft);
}
.stat__n {
  display: block;
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.6rem, 1.15rem + 1.5vw, 2.35rem);
  letter-spacing: -.03em; line-height: 1.05;
  color: var(--fg-ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.stat__n .suf { color: var(--fg-blue); }
.stat__l { display: block; font-size: .8125rem; font-weight: 600; letter-spacing: .01em; color: var(--fg-slate-500); line-height: 1.4; }
.stat__n.is-ph {
  font-size: .8125rem; font-weight: 700; letter-spacing: .04em;
  color: var(--fg-blue); background: var(--fg-blue-50);
  border: 1px dashed var(--fg-blue-200);
  border-radius: 6px; padding: 7px 8px; display: block;
}

.stats__note {
  margin: 18px 0 0;
  text-align: center;
  font-size: .8125rem;
  color: var(--fg-slate-400);
}

@media (max-width: 1100px) {
  .stats__box { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px 0; padding: 34px 14px; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(3n+2)::before, .stat:nth-child(3n)::before { display: block; }
}
@media (max-width: 600px) {
  .stats { margin-top: -34px; }
  .stats__box { grid-template-columns: repeat(2, minmax(0,1fr)); border-radius: var(--r-lg); }
  .stat::before { display: none !important; }
  .stat:nth-child(2n)::before { display: block !important; }
}

/* ---------- 10. Hizmet kartları ---------- */
.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--tr-slow), box-shadow var(--tr-slow), border-color var(--tr-slow);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--fg-blue-200); }
.svc-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--fg-bg-soft); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 640ms cubic-bezier(.22,.61,.36,1); }
.svc-card:hover .svc-card__media img { transform: scale(1.05); }
.svc-card__num {
  position: absolute; left: 16px; top: 16px;
  min-width: 34px; height: 34px; padding-inline: 10px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(8,18,43,.72);
  backdrop-filter: blur(6px);
  color: #fff; font-family: var(--ff-display); font-weight: 700; font-size: .8125rem;
  font-variant-numeric: tabular-nums;
}
.svc-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-size: 1.1875rem; margin-bottom: 10px; }
.svc-card__body p { font-size: .9375rem; color: var(--fg-slate-500); margin-bottom: 20px; }
.svc-card__body .link-arrow { margin-top: auto; }

/* ---------- 11. Furnigo Flow ---------- */
.flow { position: relative; }
.flow__rail {
  position: relative;
  display: grid; grid-template-columns: repeat(9, minmax(0,1fr));
  margin-bottom: 52px;
}
.flow__rail::before {
  content: ""; position: absolute; left: 5.55%; right: 5.55%; top: 21px;
  height: 2px; background: rgba(255,255,255,.14); border-radius: 2px;
}
.flow__rail::after {
  content: ""; position: absolute; left: 5.55%; top: 21px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--fg-blue), var(--fg-blue-200));
  width: var(--flow-progress, 0%);
  transition: width var(--tr-slow);
}
.flow__step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 0 4px;
  background: none; border: 0; cursor: pointer;
  text-align: center;
}
.flow__dot {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 800; font-size: .875rem;
  font-variant-numeric: tabular-nums;
  background: var(--fg-navy-700);
  border: 2px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.6);
  transition: all var(--tr);
}
.flow__step:hover .flow__dot { border-color: var(--fg-blue-200); color: #fff; }
.flow__step.is-active .flow__dot {
  background: var(--fg-blue); border-color: var(--fg-blue); color: #fff;
  box-shadow: 0 0 0 6px rgba(35,92,242,.2);
  transform: scale(1.06);
}
.flow__step.is-done .flow__dot { background: var(--fg-blue-700); border-color: var(--fg-blue-700); color: #fff; }
.flow__label { font-size: .8125rem; font-weight: 600; line-height: 1.3; color: rgba(255,255,255,.6); transition: color var(--tr); }
.flow__step.is-active .flow__label, .flow__step:hover .flow__label { color: #fff; }

.flow__panel {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.86fr);
  gap: 48px; align-items: center;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 44px;
}
.flow__pane { display: none; }
.flow__pane.is-active { display: contents; }
.flow__copy .n {
  display: inline-block;
  font-family: var(--ff-display); font-weight: 800; font-size: .75rem;
  letter-spacing: .12em; color: var(--fg-blue-200);
  margin-bottom: 14px;
}
.flow__copy h3 { color: #fff; margin-bottom: 14px; }
.flow__copy p { color: rgba(255,255,255,.72); margin-bottom: 22px; }
.flow__list { display: grid; gap: 11px; }
.flow__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .9375rem; color: rgba(255,255,255,.72); }
.flow__list svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--fg-blue-200); }
.flow__img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh-lg); }
.flow__img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 991px) {
  .flow__rail { display: none; }
  .flow__panel { display: block; padding: 0; background: none; border: 0; }
  .flow__pane { display: block !important; position: relative; padding: 0 0 30px 40px; }
  .flow__pane::before {
    content: ""; position: absolute; left: 15px; top: 34px; bottom: -4px;
    width: 2px; background: rgba(255,255,255,.14);
  }
  .flow__pane:last-child::before { display: none; }
  .flow__pane::after {
    content: ""; position: absolute; left: 6px; top: 6px;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--fg-blue); border: 4px solid var(--fg-navy);
    box-shadow: 0 0 0 2px var(--fg-blue);
  }
  .flow__img { display: none; }
  .flow__copy h3 { font-size: 1.25rem; }
  .flow__copy p { margin-bottom: 14px; }
}

/* ---------- 12. Split (görsel + metin) ---------- */
.split {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 68px; align-items: center;
}
.split--reverse .split__media { order: 2; }

/* Panoramik fotoğraf: sağa taşarak genişler, metin sütununu daraltmaz */
.split--media-bleed { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 52px; }
.split--media-bleed .split__media--pano {
  /* Sağa taşar ama kenarda her zaman boşluk kalır; köşe yuvarlaklığı korunur. */
  margin-right: calc(-1 * min(120px, max(0px, (100vw - var(--wrap)) / 2)));
}
.split__media--pano img {
  aspect-ratio: 7 / 5;
  object-fit: cover;
  object-position: center 45%;
}

@media (max-width: 991px) {
  .split--media-bleed { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .split--media-bleed .split__media--pano { margin-right: 0; }
  .split__media--pano img { aspect-ratio: 16 / 10; }
}

@media (max-width: 991px) {
  .split { grid-template-columns: minmax(0,1fr); gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .split__media--tall img { aspect-ratio: 4/3; }
  .split__tile { width: 140px; right: -12px; bottom: -18px; border-width: 5px; }
}

/* ---------- 13. Özellik listesi ---------- */
.feat { display: flex; gap: 18px; align-items: flex-start; }
.feat__ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--fg-blue-50); color: var(--fg-blue);
}
.feat__ico svg { width: 22px; height: 22px; }
.section--dark .feat__ico { background: rgba(255,255,255,.08); color: var(--fg-blue-200); }
.feat h4 { margin-bottom: 7px; }
.feat p { font-size: .9375rem; color: var(--fg-slate-500); margin: 0; }
.section--dark .feat p { color: rgba(255,255,255,.68); }

.feat-card {
  padding: 32px 30px;
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: var(--r-lg);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  height: 100%;
}
.feat-card:hover { border-color: var(--fg-blue-200); box-shadow: var(--sh-md); transform: translateY(-3px); }
.feat-card .feat__ico { margin-bottom: 20px; }

.check-list { display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .9375rem; }
.check-list svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--fg-blue); }
.section--dark .check-list svg { color: var(--fg-blue-200); }
.section--dark .check-list li { color: rgba(255,255,255,.74); }

/* ---------- 14. Teknoloji / dashboard mock ---------- */
.dash {
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  font-size: 13px;
}
.dash__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--fg-line-soft);
  background: var(--fg-bg-softer);
}
.dash__bar .dots { display: flex; gap: 6px; }
.dash__bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--fg-line); display: block; }
.dash__bar .ttl { margin-left: 8px; font-size: 12px; font-weight: 600; color: var(--fg-slate-500); }
.dash__bar .tag {
  margin-left: auto; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--fg-blue); background: var(--fg-blue-50); padding: 4px 9px; border-radius: 5px;
}
.dash__body { padding: 20px; display: grid; gap: 16px; }
.dash__kpis { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.dash__kpi { padding: 13px 14px; border: 1px solid var(--fg-line-soft); border-radius: 10px; background: var(--fg-bg-softer); }
.dash__kpi b { display: block; font-family: var(--ff-display); font-size: 20px; font-weight: 800; color: var(--fg-ink); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.dash__kpi span { display: block; font-size: 11px; color: var(--fg-slate-500); margin-top: 3px; }
.dash__chart { display: flex; align-items: flex-end; gap: 7px; height: 108px; padding: 14px 14px 0; border: 1px solid var(--fg-line-soft); border-radius: 10px; }
.dash__chart i { flex: 1; background: var(--fg-blue-100); border-radius: 3px 3px 0 0; display: block; transition: height var(--tr-slow); }
.dash__chart i.hi { background: var(--fg-blue); }
.dash__rows { border: 1px solid var(--fg-line-soft); border-radius: 10px; overflow: hidden; }
.dash__row { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 10px; align-items: center; padding: 11px 14px; border-bottom: 1px solid var(--fg-line-soft); }
.dash__row:last-child { border-bottom: 0; }
.dash__row span { font-size: 12px; color: var(--fg-slate-500); }
.dash__row span:first-child { color: var(--fg-ink); font-weight: 600; }
.pill { font-size: 10.5px; font-weight: 700; padding: 4px 9px; border-radius: 100px; white-space: nowrap; }
.pill--ok  { background: #E6F6EF; color: #0E7A55; }
.pill--go  { background: var(--fg-blue-50); color: var(--fg-blue-700); }
.pill--wait{ background: #FFF5E0; color: #A8700A; }
@media (max-width: 520px) {
  .dash__kpis { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dash__row { grid-template-columns: 1fr auto; }
  .dash__row span:nth-child(2) { display: none; }
}

/* --- Çok ekranlı panel --- */
.dash__tabs {
  display: flex; gap: 4px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--fg-line-soft);
  background: #fff;
  overflow-x: auto;
  scrollbar-width: none;
}
.dash__tabs::-webkit-scrollbar { display: none; }
.dash__tab {
  flex: none;
  padding: 7px 13px;
  font-size: 11.5px; font-weight: 600; letter-spacing: -.005em;
  color: var(--fg-slate-500);
  background: none; border: 0; border-radius: 7px;
  cursor: pointer; white-space: nowrap;
  transition: background var(--tr), color var(--tr);
}
.dash__tab:hover { background: var(--fg-bg-soft); color: var(--fg-ink); }
.dash__tab.is-active { background: var(--fg-blue); color: #fff; }

.dash__live {
  margin-left: auto; flex: none;
  display: inline-flex; align-items: center; gap: 6px;
  padding-inline: 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--fg-green);
}
.dash__live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--fg-green);
  animation: dashPulse 1.8s ease-in-out infinite;
}
@keyframes dashPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.82); } }
@media (prefers-reduced-motion: reduce) { .dash__live i { animation: none; } }

.dash__screen { display: none; }
.dash__screen.is-active { display: grid; gap: 14px; }

/* İzleme zaman çizelgesi */
.trace__head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-bottom: 12px; border-bottom: 1px solid var(--fg-line-soft);
}
.trace__head b { font-family: var(--ff-display); font-size: 13px; color: var(--fg-ink); }
.trace__head span { font-size: 11px; color: var(--fg-slate-500); }
.trace__bar { height: 5px; border-radius: 3px; background: var(--fg-line-soft); overflow: hidden; }
.trace__bar i { display: block; height: 100%; width: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--fg-blue), var(--fg-blue-200)); }
.trace__list { display: grid; gap: 0; }
.trace__step {
  display: grid; grid-template-columns: 15px 1fr auto; gap: 11px;
  align-items: start; padding: 8px 0; position: relative;
}
.trace__step::before {
  content: ""; position: absolute; left: 7px; top: 22px; bottom: -6px;
  width: 1.5px; background: var(--fg-line);
}
.trace__step:last-child::before { display: none; }
.trace__dot {
  width: 15px; height: 15px; border-radius: 50%;
  border: 2px solid var(--fg-blue); background: var(--fg-blue);
  display: grid; place-items: center; margin-top: 2px;
}
.trace__dot svg { width: 9px; height: 9px; color: #fff; }
.trace__step.is-now .trace__dot { background: #fff; box-shadow: 0 0 0 3px rgba(35,92,242,.18); }
.trace__step.is-next .trace__dot { background: #fff; border-color: var(--fg-line); }
.trace__t { font-size: 12px; font-weight: 600; color: var(--fg-ink); line-height: 1.35; }
.trace__m { display: block; font-size: 11px; font-weight: 400; color: var(--fg-slate-500); margin-top: 1px; }
.trace__time { font-size: 10.5px; color: var(--fg-slate-400); white-space: nowrap; font-variant-numeric: tabular-nums; padding-top: 2px; }
.trace__step.is-next .trace__t, .trace__step.is-next .trace__time { color: var(--fg-slate-400); }

/* Doluluk çubukları */
.dash__meters { display: grid; gap: 9px; }
.meter { display: grid; grid-template-columns: 78px 1fr 56px; gap: 10px; align-items: center; }
.meter span:first-child { font-size: 11.5px; color: var(--fg-ink); font-weight: 600; }
.meter span:last-child { font-size: 11px; color: var(--fg-slate-500); text-align: right;
  font-variant-numeric: tabular-nums; white-space: nowrap; }
.meter i { display: block; height: 7px; border-radius: 4px; background: var(--fg-line-soft); position: relative; overflow: hidden; }
.meter i::after {
  content: ""; position: absolute; inset: 0 auto 0 0; width: var(--v, 50%);
  border-radius: 4px; background: var(--fg-blue);
}
.meter.is-warn i::after { background: var(--fg-amber); }

@media (max-width: 520px) {
  .dash__tab { font-size: 11px; padding: 7px 10px; }
  .dash__live { display: none; }
  .meter { grid-template-columns: 64px 1fr 52px; }
  .trace__time { display: none; }
}

/* ---------- 15. Referans / logo ---------- */
.logo-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 18px 56px;
}
.logo-strip img {
  height: 34px; width: auto; max-width: 150px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .5;
  transition: filter var(--tr), opacity var(--tr);
}
.logo-strip img:hover { filter: none; opacity: 1; }
@media (max-width: 575px) { .logo-strip { gap: 16px 32px; } .logo-strip img { height: 26px; } }

.case {
  display: grid; grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
}
.case__head { padding: 26px 28px 20px; border-bottom: 1px solid var(--fg-line-soft); }
.case__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.case__brand img { height: 26px; width: auto; max-width: 110px; object-fit: contain; }
.case__brand .x { color: var(--fg-slate-400); font-size: .875rem; font-weight: 600; }
.case__brand b { font-family: var(--ff-display); font-size: .9375rem; color: var(--fg-ink); }
.case__body { padding: 24px 28px 28px; display: grid; gap: 18px; }
.case__block h5 { font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-blue); margin-bottom: 7px; }
.case__block p { font-size: .9375rem; color: var(--fg-slate-500); margin: 0; }
.case__metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 4px; }
.case__metric { padding: 12px 10px; text-align: center; background: var(--fg-bg-soft); border-radius: 10px; }
.case__metric b { display: block; font-family: var(--ff-display); font-size: .9375rem; color: var(--fg-ink); }
.case__metric span { display: block; font-size: .6875rem; color: var(--fg-slate-500); margin-top: 3px; line-height: 1.3; }

.ph {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  color: var(--fg-blue); background: var(--fg-blue-50);
  border: 1px dashed var(--fg-blue-200); border-radius: 5px;
  padding: 3px 7px; font-family: var(--ff-body);
}

/* ---------- 16. CTA bandı ---------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--fg-navy);
  border-radius: var(--r-xl);
  padding: 76px 64px;
  color: rgba(255,255,255,.76);
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,18,43,.97) 0%, rgba(8,18,43,.9) 50%, rgba(8,18,43,.7) 100%);
}
.cta-band h2 { color: #fff; max-width: 680px; }
.cta-band p { max-width: 580px; color: rgba(255,255,255,.72); margin-bottom: 32px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band__note { margin-top: 28px; font-size: .875rem; color: rgba(255,255,255,.55); }
@media (max-width: 767px) {
  .cta-band { padding: 46px 24px; border-radius: var(--r-lg); }
  .cta-band__actions .btn { flex: 1 1 100%; }
}

/* ---------- 17. Akordiyon / SSS ---------- */
.acc { display: grid; gap: 12px; }
.acc__item {
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.acc__item.is-open { border-color: var(--fg-blue-200); box-shadow: var(--sh); }
.acc__btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--ff-display); font-size: 1rem; font-weight: 700;
  color: var(--fg-ink); text-align: left; line-height: 1.4;
}
.acc__btn .ic {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--fg-bg-soft); color: var(--fg-slate-500);
  transition: transform var(--tr), background var(--tr), color var(--tr);
}
.acc__btn .ic svg { width: 14px; height: 14px; }
.acc__item.is-open .acc__btn .ic { background: var(--fg-blue); color: #fff; transform: rotate(45deg); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--tr-slow); }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p { padding: 0 24px 22px; font-size: .9375rem; color: var(--fg-slate-500); margin: 0; }
@media (max-width: 575px) { .acc__btn { padding: 17px 18px; font-size: .9375rem; } .acc__panel p { padding: 0 18px 18px; } }

/* ---------- 18. Sayfa başlığı (iç sayfalar) ---------- */
.phead {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--fg-navy);
  color: rgba(255,255,255,.76);
  padding-top: calc(var(--hdr-h) + 72px);
  padding-bottom: 76px;
}
.phead__bg { position: absolute; inset: 0; z-index: -2; }
.phead__bg img { width: 100%; height: 100%; object-fit: cover; }
.phead__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,18,43,.96) 0%, rgba(8,18,43,.86) 52%, rgba(8,18,43,.62) 100%);
}
.phead h1 { color: #fff; max-width: 860px; margin-bottom: 18px; }
.phead p { max-width: 640px; color: rgba(255,255,255,.72); font-size: clamp(1rem, .96rem + .3vw, 1.1875rem); }
.phead__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 13px; }
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .8125rem; margin-bottom: 22px; color: rgba(255,255,255,.5); }
.crumb a { color: rgba(255,255,255,.72); }
.crumb a:hover { color: #fff; }
.crumb span[aria-current] { color: rgba(255,255,255,.9); }
@media (max-width: 767px) { .phead { padding-top: calc(var(--hdr-h) + 44px); padding-bottom: 52px; } }

/* ---------- 19. Form ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
@media (max-width: 640px) { .form__row { grid-template-columns: minmax(0,1fr); } }

.field { display: grid; gap: 7px; }
.field > label {
  font-size: .8125rem; font-weight: 600; color: var(--fg-ink);
  display: flex; align-items: center; gap: 5px;
}
.field > label .req { color: var(--fg-blue); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--ff-body); font-size: .9375rem;
  color: var(--fg-ink);
  background: #fff;
  border: 1.5px solid var(--fg-line);
  border-radius: var(--r-sm);
  transition: border-color var(--tr), box-shadow var(--tr);
  appearance: none;
}
.field textarea { resize: vertical; min-height: 118px; line-height: 1.55; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2364748B' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
  padding-right: 40px; cursor: pointer;
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-slate-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--fg-blue);
  box-shadow: 0 0 0 4px rgba(35,92,242,.13);
}
.field.is-error input, .field.is-error select, .field.is-error textarea { border-color: #DC2626; }
.field.is-error .err { display: block; }
.err { display: none; font-size: .75rem; color: #DC2626; font-weight: 500; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-block;
  padding: 10px 17px;
  font-size: .875rem; font-weight: 600;
  color: var(--fg-slate-700);
  background: #fff;
  border: 1.5px solid var(--fg-line);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--tr);
}
.chip span:hover { border-color: var(--fg-blue-200); color: var(--fg-blue); }
.chip input:checked + span { background: var(--fg-blue); border-color: var(--fg-blue); color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--fg-blue); outline-offset: 3px; }

.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .8125rem; color: var(--fg-slate-500); line-height: 1.55; }
.consent input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--fg-blue); }

.form__status { display: none; padding: 14px 18px; border-radius: var(--r-sm); font-size: .875rem; font-weight: 500; }
.form__status.is-on { display: block; }
.form__status--ok  { background: #E6F6EF; color: #0E7A55; border: 1px solid #BFE8D6; }
.form__status--err { background: #FEF2F2; color: #B91C1C; border: 1px solid #FCD9D9; }

.form-card {
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: 38px;
}
@media (max-width: 575px) { .form-card { padding: 24px 20px; border-radius: var(--r); } }

/* ---------- 20. İletişim kutuları ---------- */
.ct-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: var(--r);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.ct-card:hover { border-color: var(--fg-blue-200); box-shadow: var(--sh); }
.ct-card__ico { flex: none; width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--fg-blue-50); color: var(--fg-blue); }
.ct-card__ico svg { width: 21px; height: 21px; }
.ct-card h4 { font-size: .9375rem; margin-bottom: 5px; }
.ct-card p, .ct-card a { font-size: .9375rem; color: var(--fg-slate-500); margin: 0; }
.ct-card a { display: block; }
.ct-card a:hover { color: var(--fg-blue); }

.map-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--fg-line); line-height: 0; }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }
@media (max-width: 767px) { .map-frame iframe { height: 300px; } }

/* ---------- 21. Footer ---------- */
.ftr { background: var(--fg-navy); color: rgba(255,255,255,.62); padding-top: 82px; }
.ftr a { color: rgba(255,255,255,.62); }
.ftr a:hover { color: #fff; }
.ftr__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 60px; }
.ftr__logo { display: block; margin-bottom: 20px; }
.ftr__logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.ftr__about { font-size: .9375rem; max-width: 330px; margin-bottom: 26px; }
.ftr h5 { color: #fff; font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.ftr__links { display: grid; gap: 11px; font-size: .9375rem; }
.ftr__contact { display: grid; gap: 15px; font-size: .9375rem; }
.ftr__contact li { display: flex; gap: 11px; align-items: flex-start; }
.ftr__contact svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--fg-blue-200); }
.ftr__contact b { display: block; color: #fff; font-weight: 600; font-size: .8125rem; margin-bottom: 2px; }

.ftr__social { display: flex; gap: 10px; }
.ftr__social a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  transition: all var(--tr);
}
.ftr__social a:hover { background: var(--fg-blue); border-color: var(--fg-blue); transform: translateY(-2px); }
.ftr__social svg { width: 17px; height: 17px; }

.ftr__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 26px 0 32px;
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  align-items: center; justify-content: space-between;
  font-size: .8125rem;
}
.ftr__legal { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.ftr__legal button { background: none; border: 0; padding: 0; cursor: pointer; color: rgba(255,255,255,.62); font-size: .8125rem; }
.ftr__legal button:hover { color: #fff; }

@media (max-width: 991px) { .ftr__top { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 40px; } }
@media (max-width: 575px) {
  .ftr { padding-top: 54px; }
  .ftr__top { grid-template-columns: minmax(0,1fr); gap: 34px; padding-bottom: 40px; }
  .ftr__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- 22. Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  padding: var(--gut);
  background: rgba(8,18,43,.62);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--tr), visibility var(--tr);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  width: 100%; max-width: 760px; max-height: 85vh;
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  transform: translateY(14px) scale(.98);
  transition: transform var(--tr-slow);
}
.modal.is-open .modal__box { transform: none; }
.modal__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; border-bottom: 1px solid var(--fg-line-soft); }
.modal__head h3 { margin: 0; font-size: 1.125rem; }
.modal__x { width: 36px; height: 36px; flex: none; display: grid; place-items: center; border-radius: 9px; background: var(--fg-bg-soft); border: 0; cursor: pointer; color: var(--fg-slate-500); transition: all var(--tr); }
.modal__x:hover { background: var(--fg-line); color: var(--fg-ink); }
.modal__x svg { width: 17px; height: 17px; }
.modal__body { padding: 26px; overflow-y: auto; font-size: .9375rem; }
.modal__body h4 { font-size: 1rem; margin: 26px 0 9px; }
.modal__body h4:first-child { margin-top: 0; }
.modal__body ul { display: grid; gap: 7px; margin: 0 0 16px; padding-left: 20px; }
.modal__body ul li { list-style: disc; }

/* ---------- 23. Yüzen öğeler ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 10px 26px rgba(37,211,102,.4);
  transition: transform var(--tr), box-shadow var(--tr);
}
.wa-float:hover { transform: scale(1.07); color: #fff; box-shadow: 0 14px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 29px; height: 29px; }
@media (max-width: 575px) { .wa-float { width: 50px; height: 50px; right: 15px; bottom: 15px; } .wa-float svg { width: 25px; height: 25px; } }

.cookie {
  position: fixed; left: 20px; bottom: 20px; z-index: 850;
  width: min(380px, calc(100vw - 40px));
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  transform: translateY(24px); opacity: 0; visibility: hidden;
  transition: transform var(--tr-slow), opacity var(--tr-slow), visibility var(--tr-slow);
}
.cookie.is-on { transform: none; opacity: 1; visibility: visible; }
.cookie h5 { margin-bottom: 8px; }
.cookie p { font-size: .8125rem; color: var(--fg-slate-500); margin-bottom: 16px; line-height: 1.55; }
.cookie__actions { display: flex; gap: 9px; }
@media (max-width: 575px) { .cookie { left: 15px; bottom: 80px; padding: 18px; } }

/* ---------- 24. Yardımcılar ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 1100;
  padding: 12px 20px; background: var(--fg-blue); color: #fff;
  border-radius: var(--r-sm); font-weight: 600; font-size: .875rem;
  transition: top var(--tr);
}
.skip-link:focus { top: 12px; color: #fff; }

.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.mt-2{margin-top:8px}.mt-3{margin-top:14px}.mt-4{margin-top:22px}.mt-5{margin-top:32px}.mt-6{margin-top:44px}
.mb-3{margin-bottom:14px}.mb-4{margin-bottom:22px}.mb-5{margin-bottom:32px}.mb-6{margin-bottom:44px}
.text-center{text-align:center}
.w-100{width:100%}

/* Reveal animasyonu */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms cubic-bezier(.22,.61,.36,1), transform 620ms cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* Yazdırma */
@media print {
  .hdr, .mnav, .wa-float, .cookie, .cta-band, .ftr__social { display: none !important; }
  body { color: #000; }
}
