/* =====================================================================
   İmge Dijital — Column sistemi ("cool dawn altında derin lacivert defter")
   Açık zemin #f6f6f8 · beyaz kartlar · yumuşak çok katmanlı gölgeler
   Indigo lacivert #111a4a ana yapı · seafoam yeşil veri/kod (marka teal ailesi)
   Tek turuncu #ec652b yüksek-sinyal aksan (sayfada tek yüzey) · 8px köşeler
   Inter (SuisseIntl yerine) · JetBrains Mono (mono/kod) · editoryal sıkı tracking
   ===================================================================== */
:root {
  --navy: #111a4a;          /* indigo navy — ana yapı, CTA, başlık, logo */
  --ink: #011821;           /* midnight ink — koyu yüzey */
  --slate: #3b3e47;         /* slate ink — güçlü gövde */
  --steel: #7c7f88;         /* steel — baskın gövde/link */
  --fog: #a9acb6;           /* ikon/placeholder */
  --mist: #cbcccf;          /* en açık metin */
  --silver: #e3e4e8;        /* kart/çizgi kenarı */
  --canvas: #f6f6f8;        /* sayfa zemini */
  --white: #ffffff;
  --charcoal: #232730;

  --orange: #ec652b;        /* signal orange — sayfada tek yüksek-sinyal yüzey */
  --peach: #f2936b;
  --sea-600: #44b48b;       /* seafoam — veri/kod (marka teal ailesi) */
  --sea-700: #167e6c;       /* koyu seafoam — sayı/vurgu */
  --sea-400: #94efb7;       /* açık seafoam — string */
  --sky: #88deeb;

  /* gölge dili */
  --sh-sm: rgba(18,22,30,.024) 0 1px 4px 0, rgba(18,22,30,.05) 0 1px 0 0, rgba(18,22,30,.06) 0 0 0 1px;
  --sh-md: rgba(17,26,74,.05) 0 8px 16px 0, rgba(17,26,74,.05) 0 4px 8px 0, rgba(17,26,74,.06) 0 0 0 1px;
  --sh-xl: rgba(0,0,0,.02) 0 40px 32px 0, rgba(0,0,0,.03) 0 22px 18px 0, rgba(0,0,0,.03) 0 12px 10px 0, rgba(0,0,0,.04) 0 7px 5px 0, rgba(0,0,0,.07) 0 3px 2px 0;
  --sh-widget: rgba(30,30,44,.15) 24px 48px 64px 0, rgb(255,255,255) 0 0 0 1px inset;
  --sh-btn: rgba(17,26,74,.14) 0 1px 3px 0, rgba(17,26,74,.08) 0 1px 0 0, rgba(255,255,255,.35) 0 1px 0 0 inset;

  --max: 1200px;
  --gap: 72px;
  --radius: 8px;
  --body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ===== RESET / BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body); color: var(--slate); background: var(--canvas);
  line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--body); color: var(--navy); font-weight: 600; letter-spacing: -.02em; }
::selection { background: var(--navy); color: #fff; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }

a:focus-visible, button:focus-visible {
  outline: none; box-shadow: 0 0 0 2px var(--canvas), 0 0 0 4px var(--navy); border-radius: var(--radius);
}

/* ===== TAG / EYEBROW (nokta önekli etiket) ===== */
.overline, .eyebrow, .tag-dot {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--body);
  text-transform: uppercase; font-size: 12px; font-weight: 500; letter-spacing: .08em;
  color: var(--navy); background: none; border: 0; padding: 0; margin-bottom: 18px;
}
.overline::before, .eyebrow::before, .tag-dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 9999px; background: var(--sea-600); flex-shrink: 0;
}
.section-head .eyebrow { justify-content: center; }
.accent { color: var(--sea-700); }

/* ===== BUTONLAR (8px, editoryal) ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-weight: 500; font-size: 14px; letter-spacing: 0;
  padding: 12px 22px; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: background .16s ease, box-shadow .16s ease, transform .16s ease, color .16s ease, border-color .16s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--sh-btn); }
.btn-primary:hover { background: #17225e; transform: translateY(-1px); }
.btn-secondary, .btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover, .btn-outline:hover { background: rgba(17,26,74,.05); }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--sh-sm); }
.btn-white:hover { background: #fff; transform: translateY(-1px); box-shadow: var(--sh-md); }
/* turuncu buton yalnız CTA bandında (yüksek sinyal) */
.btn-accent { background: var(--orange); color: #fff; box-shadow: var(--sh-btn); }
.btn-accent:hover { background: #d8551d; transform: translateY(-1px); }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,246,248,.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .2s, background .2s;
}
.header.scrolled { background: rgba(255,255,255,.85); border-bottom-color: var(--silver); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--body); font-weight: 400; font-size: 14px; letter-spacing: 0;
  color: var(--slate); transition: color .15s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links .nav-cta {
  color: #fff; background: var(--navy); font-weight: 500; padding: 9px 18px;
  border-radius: var(--radius); box-shadow: var(--sh-btn);
}
.nav-links .nav-cta:hover { color: #fff; background: #17225e; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO (split: metin + kod/veri kartı) ===== */
.vb-hero { background: var(--canvas); position: relative; overflow: hidden; }
.vb-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 60% at 82% 20%, rgba(136,222,235,.18), transparent 60%),
    radial-gradient(38% 55% at 92% 70%, rgba(68,180,139,.12), transparent 60%);
}
.vb-hero-inner {
  position: relative; z-index: 1;
  padding: clamp(64px, 10vw, 128px) 32px clamp(56px, 8vw, 104px);
  max-width: 900px;
}
.vb-hero-title {
  font-size: clamp(40px, 6vw, 64px); line-height: 1.02; letter-spacing: -.03em; color: var(--navy);
  max-width: 18ch;
}
.vb-lede {
  font-family: var(--body); font-size: clamp(16px, 1.6vw, 18px); line-height: 1.55; color: var(--steel);
  max-width: 52ch; margin: 22px 0 30px; border: 0; padding: 0;
}
.vb-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.vb-hero-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.vb-hero-meta li { font-family: var(--body); font-size: 13px; color: var(--steel); display: inline-flex; align-items: center; gap: 8px; }
.vb-hero-meta .dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--sea-600); }

/* ===== BÖLÜM / SECTION-HEAD ===== */
.section { padding: var(--gap) 0; position: relative; }
.section-alt { background: #fff; }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.03em; margin: 0; color: var(--navy);
}
.section-head p { font-family: var(--body); color: var(--steel); font-size: 17px; line-height: 1.5; margin: 16px auto 0; max-width: 58ch; }

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ===== PLATFORM ŞERİDİ ===== */
.platforms { padding: 40px 0; background: #fff; border-top: 1px solid var(--silver); border-bottom: 1px solid var(--silver); }
.platforms-title {
  font-family: var(--body); text-transform: uppercase; letter-spacing: .08em; font-size: 12px;
  font-weight: 500; color: var(--steel); text-align: center; margin-bottom: 24px;
}
.platforms-row { display: flex; flex-wrap: nowrap; align-items: center; justify-content: center; gap: 40px; overflow-x: auto; padding-bottom: 6px; }
.platforms-row img { height: 22px; width: auto; flex-shrink: 0; filter: grayscale(1) brightness(.55); opacity: .65; transition: opacity .18s, filter .18s; }
.platforms-row img:hover { filter: grayscale(0) brightness(1); opacity: 1; }
.platforms-row .wordmark { font-family: var(--body); font-weight: 600; font-size: 18px; color: var(--steel); letter-spacing: -.02em; flex-shrink: 0; opacity: .8; transition: opacity .18s, color .18s; }
.platforms-row .wordmark:hover { opacity: 1; color: var(--navy); }

/* ===== İSTATİSTİK / TAAHHÜT BANDI (seafoam sayılar, çizgisiz) ===== */
.stats { padding: 20px 0 var(--gap); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { padding: 8px 12px; text-align: center; }
.stat-num { display: block; font-family: var(--body); font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--sea-700); line-height: 1.1; letter-spacing: -.02em; }
.stat-label { display: block; font-family: var(--body); font-size: 14px; color: var(--steel); margin-top: 8px; }

/* ===== KARTLAR (hizmetler) — bordered content card ===== */
.card, .svc-card {
  background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column;
}
.card:hover, .svc-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.svc-ico {
  width: 48px; height: 48px; display: grid; place-items: center; font-size: 22px;
  border-radius: var(--radius); background: var(--canvas); box-shadow: inset 0 0 0 1px var(--silver);
  margin-bottom: 18px;
}
.card h3, .svc-card h3 { font-size: 20px; letter-spacing: -.01em; margin-bottom: 10px; color: var(--navy); }
.card p, .svc-card p { font-family: var(--body); color: var(--steel); font-size: 15px; line-height: 1.55; flex: 1; margin-bottom: 18px; }
.svc-cta { font-family: var(--body); font-weight: 500; letter-spacing: 0; font-size: 14px; color: var(--navy); align-self: flex-start; transition: gap .15s, color .15s; display: inline-flex; gap: 6px; }
.svc-cta:hover { color: var(--sea-700); gap: 10px; }
.card-logos { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.card-logos .brand { width: 28px; height: 28px; filter: grayscale(1) brightness(.55); opacity: .7; }

/* ===== HİZMET CAROUSEL (kayan banner) ===== */
.svc-carousel {
  position: relative; overflow: hidden; margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.svc-track { display: flex; width: max-content; animation: svcScroll 26s linear infinite; will-change: transform; }
.svc-carousel:hover .svc-track, .svc-carousel:focus-within .svc-track { animation-play-state: paused; }
.svc-slide {
  flex: 0 0 320px; width: 320px; margin-right: 20px; background: #fff;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
}
.svc-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,26,74,.82), rgba(17,26,74,.12) 54%, rgba(17,26,74,0) 78%); }
.svc-media h3 { position: absolute; left: 16px; right: 16px; bottom: 12px; z-index: 1; color: #fff; font-size: 19px; letter-spacing: -.01em; }
.svc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc-body p { font-family: var(--body); color: var(--steel); font-size: 14px; line-height: 1.5; flex: 1; }
@keyframes svcScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .svc-track { animation: none; }
  .svc-carousel { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ===== SÜREÇ (bağlı zaman çizelgesi) ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before { content: ""; position: absolute; top: 27px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--silver), var(--fog), var(--silver)); z-index: 0; }
.step { position: relative; text-align: center; padding: 0 10px; }
.step-num {
  position: relative; z-index: 1; display: grid; place-items: center; width: 54px; height: 54px;
  border-radius: 9999px; font-family: var(--body); font-weight: 600; font-size: 20px; color: #fff;
  background: var(--navy); box-shadow: 0 0 0 6px rgba(68,180,139,.12); margin: 0 auto 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover .step-num { transform: translateY(-3px); box-shadow: 0 0 0 8px rgba(68,180,139,.18); }
.step h3 { font-size: 17px; margin-bottom: 8px; color: var(--navy); }
.step p { font-family: var(--body); color: var(--steel); font-size: 14.5px; line-height: 1.5; }

/* ===== NEDEN BİZ ===== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { padding: 24px; border-radius: var(--radius); background: #fff; box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.feat-ico { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: var(--radius); font-size: 22px; background: var(--canvas); box-shadow: inset 0 0 0 1px var(--silver); margin-bottom: 16px; }
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { font-family: var(--body); color: var(--steel); font-size: 14.5px; line-height: 1.5; }

/* ===== CTA BANNER — SAYFANIN TEK TURUNCU YÜZEYİ ===== */
.cta-banner {
  margin-top: 44px; background: var(--orange); color: #fff; border-radius: var(--radius); padding: 44px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  box-shadow: var(--sh-md); position: relative; overflow: hidden;
}
.cta-banner::before { content: ""; position: absolute; top: -50%; right: -6%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,255,255,.16), transparent 62%); pointer-events: none; }
.cta-text h3 { font-size: clamp(22px, 3vw, 30px); line-height: 1.12; color: #fff; }
.cta-text p { font-family: var(--body); color: rgba(255,255,255,.9); font-size: 15px; margin-top: 10px; }
.cta-banner .btn-white { background: #fff; color: var(--orange); }
.cta-banner .btn-white:hover { color: #d8551d; }

/* ===== PAKETLER ===== */
.packages { grid-template-columns: repeat(5, 1fr); align-items: stretch; gap: 16px; }
.pkg {
  position: relative; background: #fff; border-radius: var(--radius);
  padding: 24px 20px; display: flex; flex-direction: column; box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pkg:hover { transform: translateY(-5px); z-index: 1; box-shadow: var(--sh-xl); }
.pkg-featured { box-shadow: rgb(17,26,74) 0 0 0 1.5px, rgba(17,26,74,.12) 0 12px 28px 0; }
.pkg-featured::before { content: ""; position: absolute; top: 0; left: 20px; right: 20px; height: 2px; background: var(--navy); }
.pkg-badge {
  position: absolute; top: 16px; right: 16px; background: var(--navy); color: #fff;
  font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: .02em; padding: 4px 10px;
  border-radius: 9999px;
}
.badge-market, .badge-erp { background: var(--canvas); color: var(--sea-700); box-shadow: inset 0 0 0 1px var(--silver); }
.pkg-head { margin-bottom: 14px; padding-top: 4px; min-height: 66px; }
.pkg-head h3 { font-size: 21px; }
.pkg-tag { font-family: var(--body); font-size: 12.5px; letter-spacing: 0; color: var(--steel); margin-top: 6px; }
.pkg-market-logos { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pkg-market-logos .wordmark { font-family: var(--body); font-weight: 600; font-size: 14px; color: var(--steel); }
.pkg-list { margin: 14px 0; flex: 1 1 auto; }
.pkg-list li { font-family: var(--body); font-size: 13.5px; line-height: 1.5; padding: 9px 0 9px 24px; position: relative; border-bottom: 1px solid var(--silver); color: var(--slate); }
.pkg-list li:last-child { border-bottom: 0; }
.pkg-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sea-700); font-weight: 700; }
.pkg-price { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--steel); border-radius: var(--radius); background: var(--canvas); box-shadow: inset 0 0 0 1px var(--silver); text-align: center; padding: 10px; margin-bottom: 14px; }
.pkg-btn { width: 100%; }
.pkg-note { font-family: var(--body); font-size: 13px; color: var(--steel); margin-top: 26px; text-align: center; }

/* ===== BARKOSET (koyu lacivert inversiyon bloğu) ===== */
.barkoset {
  margin-top: 40px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center;
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--sh-md);
  position: relative; overflow: hidden;
}
.barkoset::before { content: ""; position: absolute; top: -30%; left: -8%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(68,180,139,.2), transparent 62%); pointer-events: none; }
.bk-badge { font-family: var(--body); text-transform: uppercase; font-size: 12px; font-weight: 500; letter-spacing: .08em; color: var(--sea-400); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.barkoset h3 { font-size: clamp(24px, 3vw, 34px); color: #fff; }
.bk-hash { color: var(--sea-400); }
.bk-info p { font-family: var(--body); color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.6; margin: 12px 0 22px; max-width: 540px; }
.bk-info p strong { color: #fff; }
.bk-features { display: grid; gap: 0; }
.bk-features li { font-family: var(--body); display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 14px; color: rgba(255,255,255,.9); }
.bk-features li:last-child { border-bottom: 0; }
.bk-features li span { flex-shrink: 0; }

/* ===== MÜŞTERİ YORUMLARI ===== */
.testi { background: #fff; border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s; }
.testi:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.testi-stars { color: var(--sea-600); font-size: 16px; letter-spacing: 3px; }
.testi blockquote { font-family: var(--body); font-size: 16px; line-height: 1.55; color: var(--slate); }
.testi figcaption { display: flex; flex-direction: column; margin-top: auto; }
.testi figcaption strong { font-family: var(--body); font-weight: 600; font-size: 15px; color: var(--navy); }
.testi figcaption span { font-family: var(--body); font-size: 12.5px; color: var(--steel); margin-top: 2px; }

/* ===== SSS ===== */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border-radius: var(--radius); background: #fff; box-shadow: var(--sh-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--body); font-weight: 500; font-size: 16px; color: var(--navy); padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item.open .faq-q { color: var(--navy); }
.faq-ico { flex-shrink: 0; width: 24px; height: 24px; border-radius: var(--radius); background: var(--canvas); box-shadow: inset 0 0 0 1px var(--silver); display: grid; place-items: center; font-size: 17px; font-family: var(--body); color: var(--navy); transition: transform .2s, background .15s, color .15s; }
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--navy); color: #fff; box-shadow: none; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { font-family: var(--body); padding: 0 22px 20px; color: var(--steel); font-size: 15px; line-height: 1.6; }

/* ===== İLETİŞİM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: var(--radius); background: #fff; box-shadow: var(--sh-sm); transition: box-shadow .15s, transform .15s; }
a.contact-item:hover { box-shadow: var(--sh-md); transform: translateX(2px); }
.contact-ico { width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--radius); background: var(--canvas); box-shadow: inset 0 0 0 1px var(--silver); font-size: 19px; flex-shrink: 0; }
.contact-item strong { display: block; font-family: var(--body); font-weight: 600; font-size: 15px; color: var(--navy); }
.contact-item span { font-family: var(--body); color: var(--steel); font-size: 14px; }
.socials { display: flex; gap: 10px; padding: 4px 0 0; }
.social { width: 44px; height: 44px; border-radius: var(--radius); background: #fff; box-shadow: var(--sh-sm); display: grid; place-items: center; color: var(--navy); transition: background .15s, color .15s, transform .15s; }
.social:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.map-wrap { position: relative; min-height: 340px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-sm); }
.map-blocked { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 24px; background: var(--canvas); }
.map-blocked p { font-family: var(--body); color: var(--steel); font-size: 14px; max-width: 32ch; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(1) contrast(1.02); }

/* ===== FOOTER (koyu lacivert) ===== */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 0; margin-top: var(--gap); }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 36px; }
.footer-brand .logo-text { font-family: var(--body); font-weight: 600; font-size: 22px; color: #fff; }
.footer-brand p { font-family: var(--body); color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; margin-top: 14px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: var(--radius); background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); display: grid; place-items: center; color: #fff; transition: background .15s; }
.footer-social a:hover { background: rgba(255,255,255,.18); }
.footer-col h4 { font-family: var(--body); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: rgba(255,255,255,.9); margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-family: var(--body); color: rgba(255,255,255,.6); font-size: 14px; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--sea-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-family: var(--body); font-size: 13px; color: rgba(255,255,255,.55); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-family: var(--body); font-size: 13px; color: rgba(255,255,255,.6); }
.footer-legal a:hover { color: #fff; }

/* ===== SABİT BUTONLAR ===== */
.to-top { position: fixed; right: 22px; bottom: calc(92px + var(--consent-h, 0px)); z-index: 450; width: 44px; height: 44px; border-radius: var(--radius); background: #fff; box-shadow: var(--sh-md); color: var(--navy); cursor: pointer; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s, bottom .28s ease; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--navy); color: #fff; }

/* ===== DESTEK MERKEZİ WIDGET ===== */
.support { position: fixed; right: 22px; bottom: calc(22px + var(--consent-h, 0px)); z-index: 500; transition: bottom .28s ease; }
.support-fab {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px 12px 14px;
  border: 0; border-radius: 9999px; background: var(--navy); color: #fff; cursor: pointer;
  font-family: var(--body); font-weight: 500; font-size: 14px; box-shadow: var(--sh-md);
  transition: background .16s, transform .16s;
}
.support-fab:hover { background: #17225e; transform: translateY(-2px); }
.support-fab .fab-label { line-height: 1; }
.support.open .support-fab { background: #17225e; }
.support.open .support-fab .fab-label { display: none; }

.support-panel {
  position: absolute; right: 0; bottom: calc(100% + 12px); width: 348px; max-width: calc(100vw - 36px);
  display: flex; flex-direction: column; max-height: min(600px, 76vh);
  background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--sh-xl);
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(.98); transform-origin: bottom right;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.support.open .support-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.support-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 16px; background: var(--navy); color: #fff; }
.sh-id { display: flex; align-items: center; gap: 12px; }
.s-avatar { width: 38px; height: 38px; flex-shrink: 0; border-radius: 9999px; background: linear-gradient(160deg, var(--sea-600), var(--sea-700)); color: #04221c; display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.support-head strong { display: block; font-family: var(--body); font-weight: 600; font-size: 15px; color: #fff; }
.support-head .sh-id span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.72); margin-top: 2px; }
.s-live { width: 7px; height: 7px; border-radius: 9999px; background: #46d39f; box-shadow: 0 0 0 0 rgba(70,211,159,.6); animation: slive 1.8s infinite; }
@keyframes slive { 0% { box-shadow: 0 0 0 0 rgba(70,211,159,.55); } 70% { box-shadow: 0 0 0 6px rgba(70,211,159,0); } 100% { box-shadow: 0 0 0 0 rgba(70,211,159,0); } }
.support-close { background: rgba(255,255,255,.12); border: 0; color: #fff; width: 30px; height: 30px; border-radius: 9999px; cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.support-close:hover { background: rgba(255,255,255,.24); }

.support-body { flex: 1; overflow-y: auto; padding: 16px; background: var(--canvas); display: flex; flex-direction: column; gap: 10px; }
.msg { display: flex; flex-direction: column; max-width: 86%; }
.msg-bot { align-self: flex-start; align-items: flex-start; }
.msg-user { align-self: flex-end; align-items: flex-end; }
.msg-b { font-family: var(--body); font-size: 14px; line-height: 1.5; padding: 10px 13px; border-radius: 13px; }
.msg-bot .msg-b { background: #fff; color: var(--slate); box-shadow: var(--sh-sm); border-bottom-left-radius: 4px; }
.msg-user .msg-b { background: var(--navy); color: #fff; border-bottom-right-radius: 4px; }
.msg-wa { margin-top: 5px; font-size: 12.5px; font-weight: 500; color: var(--sea-700); }
.msg-wa:hover { color: var(--navy); }
.msg-link { color: var(--sea-700); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.msg-link:hover { color: var(--navy); }
.msg-typing { display: inline-flex; gap: 4px; align-items: center; }
.msg-typing span { width: 6px; height: 6px; border-radius: 9999px; background: var(--fog); animation: tdot 1.2s infinite; }
.msg-typing span:nth-child(2) { animation-delay: .18s; }
.msg-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes tdot { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.support-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 10px 14px; border-top: 1px solid var(--silver); background: #fff; }
.support-chips button { font-family: var(--body); font-size: 12.5px; color: var(--navy); background: var(--canvas); border: 1px solid var(--silver); border-radius: 9999px; padding: 6px 12px; cursor: pointer; transition: background .15s, border-color .15s; }
.support-chips button:hover { background: #eef0f5; border-color: var(--fog); }

.support-input { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: #fff; border-top: 1px solid var(--silver); }
.support-input input { flex: 1; font-family: var(--body); font-size: 14px; color: var(--slate); border: 1px solid var(--silver); border-radius: var(--radius); padding: 10px 12px; background: var(--canvas); }
.support-input input:focus { outline: none; border-color: var(--navy); background: #fff; }
.support-send { flex-shrink: 0; width: 40px; height: 40px; border: 0; border-radius: var(--radius); background: var(--navy); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.support-send:hover { background: #17225e; }
.support-wa { display: block; text-align: center; padding: 10px; font-family: var(--body); font-size: 12.5px; color: var(--steel); background: #fff; border-top: 1px solid var(--silver); }
.support-wa:hover { color: var(--navy); }

@media (max-width: 480px) {
  .support { right: 16px; bottom: calc(16px + var(--consent-h, 0px)); }
  .support-panel { width: calc(100vw - 24px); max-height: 74vh; }
  .to-top { right: 16px; bottom: calc(84px + var(--consent-h, 0px)); }
}

/* ===== ÇEREZ ONAY BANDI ===== */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 400;
  max-width: 760px; margin: 0 auto;
  background: #fff; border-radius: 14px; box-shadow: var(--sh-xl);
  opacity: 0; transform: translateY(14px); transition: opacity .28s ease, transform .28s ease;
}
.cookie.show { opacity: 1; transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 20px; padding: 16px 20px; flex-wrap: wrap; }
.cookie-inner p { font-family: var(--body); font-size: 14px; line-height: 1.5; color: var(--slate); flex: 1; min-width: 240px; }
.cookie-inner a { color: var(--navy); text-decoration: underline; font-weight: 500; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 10px 20px; }
@media (max-width: 520px) {
  .cookie-inner { padding: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== YASAL SAYFALAR ===== */
.legal-head { background: rgba(246,246,248,.8); backdrop-filter: blur(12px); border-bottom: 1px solid var(--silver); position: sticky; top: 0; z-index: 100; }
.legal-head .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.legal-page { padding: 56px 0 96px; }
.legal-page h1 { font-family: var(--body); font-weight: 600; font-size: clamp(30px, 5vw, 48px); letter-spacing: -.03em; margin-bottom: 8px; color: var(--navy); }
.legal-page .updated { font-family: var(--mono); text-transform: uppercase; font-size: 12px; letter-spacing: .06em; color: var(--steel); margin: 16px 0 28px; }
.legal-page h2 { font-size: 20px; margin: 32px 0 10px; color: var(--navy); }
.legal-page p, .legal-page li { font-family: var(--body); color: var(--slate); font-size: 15.5px; line-height: 1.75; }
.legal-page ul { padding-left: 20px; list-style: none; margin: 10px 0; }
.legal-page li { position: relative; padding-left: 4px; }
.legal-page ul li::before { content: "✓"; position: absolute; left: -18px; color: var(--sea-700); }
.legal-page a.back { display: inline-block; margin-top: 32px; font-family: var(--body); font-weight: 500; font-size: 14px; color: var(--navy); }
.legal-page a.back:hover { color: var(--sea-700); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --gap: 56px; }
  .grid-3, .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .steps::before { display: none; }
  .packages { grid-template-columns: repeat(2, 1fr); }
  .barkoset { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .nav-links {
    position: fixed; top: 64px; right: 0; width: 80%; max-width: 320px; height: calc(100vh - 64px);
    background: #fff; border-left: 1px solid var(--silver); box-shadow: var(--sh-md);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 24px; transform: translateX(100%); transition: transform .3s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 15px 0; font-size: 15px; border-bottom: 1px solid var(--silver); }
  .nav-links .nav-cta { margin-top: 16px; justify-content: center; padding: 13px; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .grid-3, .features, .steps, .packages { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .vb-hero-actions .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation: none !important; }
}
