/* ============================================================
   MCSİPARİŞ — Swiss / International Typographic Style
   Monochrome + single signal red. Archivo only.
   ============================================================ */

:root {
  --paper: #FFFFFF;
  --ink: #0A0A0A;
  --red: #E4002B;
  --red-deep: #C30024; /* erişilebilir kırmızı: küçük UI metni gerekirse */
  --gray: #6B6B6B;
  --hairline: #E4E4E4;

  --maxw: 1320px;
  --gutter: 24px;
  --col-gap: 24px;

  /* vw katsayısı düşürüldü: Türkçe uzun kelimelerde taşma önlenir */
  --fs-hero: clamp(3rem, 7.5vw, 8rem);
  --fs-section: clamp(2.3rem, 5.4vw, 4.6rem);
  --fs-stat: clamp(2.6rem, 6vw, 4.6rem);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden; /* uzun başlıkta yatay scroll güvencesi */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

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

/* ---- Layout grid ---- */
.grid-container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: clamp(72px, 11vw, 150px);
  padding-bottom: clamp(72px, 11vw, 150px);
  border-top: 1px solid var(--hairline);
}

/* ---- Section heads (12-col, left aligned) ---- */
.section-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gap);
  margin-bottom: clamp(48px, 7vw, 90px);
  align-items: end;
}
.section-index {
  grid-column: 1 / span 12;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 22px;
}
.section-title {
  grid-column: 1 / span 7;
  font-size: var(--fs-section);
  font-weight: 800;
  /* Türkçe diakritik için nefes: çok satırlı başlıkta üst nokta kırpılmaz */
  line-height: 0.98;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  margin: 0;
}
.section-lead {
  grid-column: 9 / span 4;
  font-size: 1.05rem;
  color: var(--gray);
  font-weight: 400;
  margin: 0;
  padding-bottom: 0.4em;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-weight: 900;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-list a:hover::after,
.nav-list a:focus-visible::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 44px;
}
.link-action {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}
.link-action::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.link-action:hover::after,
.link-action:focus-visible::after { transform: scaleX(1); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  line-height: 1;
}
.btn-lg { padding: 18px 32px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover, .btn-red:focus-visible { background: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--ink); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover, .btn-outline:focus-visible { background: var(--ink); color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-dark:hover, .btn-outline-dark:focus-visible { background: #fff; color: var(--ink); }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---- Hamburger / mobile menu ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil menü: yumuşak yükseklik/opaklık geçişi (anında belirme yok) */
.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: var(--paper);
  border-top: 0 solid var(--hairline);
  padding: 0 var(--gutter);
  transition: max-height 0.34s ease, opacity 0.24s ease, padding 0.34s ease, border-width 0.2s ease;
}
.mobile-menu.is-open {
  max-height: 460px;
  opacity: 1;
  border-top: 1px solid var(--hairline);
  padding: 8px var(--gutter) 24px;
}
.mobile-menu a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
}
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.22s ease;
}
.mobile-menu a:hover::after,
.mobile-menu a:focus-visible::after,
.mobile-menu a:active::after { width: 36px; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-cta {
  color: var(--red);
  font-weight: 800;
}
.mobile-cta:hover::after,
.mobile-cta:focus-visible::after { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(56px, 8vw, 110px) 0 clamp(64px, 9vw, 120px); }
.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gap);
  align-items: start;
}
.hero-text { grid-column: 1 / span 7; }

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 30px;
}
.kicker-num { color: var(--red); }
.kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairline);
  max-width: 120px;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 900;
  /* line-height 0.92: iki satırlı Türkçe başlıkta İ/Ş/Ğ üst noktaları çakışmaz */
  line-height: 0.92;
  letter-spacing: -0.035em;
  /* uzun bölünemez kelime (Restoranınızın) taşmasın */
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  overflow: visible;
  padding-top: 0.04em; /* üst noktaya nefes */
  margin: 0 0 34px;
}
.accent-red { color: var(--red); }

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--gray);
  font-weight: 400;
  max-width: 32em;
  margin: 0 0 40px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Live panel ---- */
.hero-panel {
  grid-column: 9 / span 4;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--ink);
}
.panel-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.panel-time {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.panel-row { padding: 18px 20px; border-bottom: 1px solid var(--hairline); }
.panel-row:last-child { border-bottom: none; }

.metric-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.metric-value {
  display: block;
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric-value.sm { font-size: 2rem; }
.metric-frac { color: var(--gray); font-weight: 600; }
/* delta: kırmızı yerine ink — küçük metinde 4.5:1 sınırını zorlamaz.
   Aksan, ok işaretiyle (büyük rakamla aynı satır hissi) korunur. */
.metric-delta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.metric-delta .arrow { color: var(--red); font-weight: 900; }

.panel-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.panel-two .metric-block { padding: 18px 20px; }
.panel-two .bordered { border-left: 1px solid var(--hairline); }

/* ---- Bar chart ---- */
.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 70px;
  margin-top: 4px;
}
.bar {
  flex: 1;
  height: var(--h);
  background: var(--ink);
}
.bar.tall { background: var(--red); }

/* ---- Orders ---- */
.order-list { list-style: none; margin: 6px 0 0; padding: 0; }
.order-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.9rem;
}
.order-list li:last-child { border-bottom: none; padding-bottom: 0; }
.ot { font-weight: 700; }
.os {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}
/* "Ödendi" aksanı: küçük metinde erişilebilir koyu kırmızı */
.os.accent-red { color: var(--red-deep); }

.panel-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.foot-data { font-size: 0.86rem; color: var(--gray); }
.foot-data strong { color: var(--ink); font-weight: 800; }

/* ============================================================
   STATS — dev grotesk rakamlar
   ============================================================ */
.stats { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(40px, 5vw, 64px) 0;
  border-left: 1px solid var(--hairline);
  padding-left: 28px;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  display: block;
  font-size: var(--fs-stat);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   FEATURES — typographic grid (no card-sea)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.feature {
  padding: 40px 34px 46px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background 0.2s ease;
}
.feature::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.28s ease;
}
.feature:hover { background: #FAFAFA; }
.feature:hover::after,
.feature:focus-within::after { width: 100%; }
/* Swiss disiplini: numara varsayılan mürekkep, kırmızı yalnız hover/seçili aksan */
.feature-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  transition: color 0.2s ease;
}
.feature:hover .feature-num,
.feature:focus-within .feature-num { color: var(--red); }
.feature-title {
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 14px;
}
.feature-desc {
  font-size: 0.97rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   INTEGRATIONS — kapalı hairline çerçeve (feature-grid ritmiyle uyumlu)
   ============================================================ */
.integ-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.integ {
  padding: 34px 40px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background 0.2s ease;
}
.integ::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.28s ease;
}
.integ:hover { background: #FAFAFA; }
.integ:hover::after,
.integ:focus-within::after { width: 100%; }
.integ-title {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  line-height: 1.25;
}
/* küçük etiket: kırmızı yerine gri caps — küçük metinde aksan kuralına uyum */
.integ-meta {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}
.integ-desc {
  font-size: 0.94rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--hairline);
}
.plan {
  display: flex;
  flex-direction: column;
  padding: 40px 34px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.plan-featured {
  background: var(--ink);
  color: #fff;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.plan-flag {
  position: absolute;
  top: 0; right: 0;
  background: var(--red);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
}
.plan-head {
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--hairline);
}
.plan-featured .plan-head { border-bottom-color: rgba(255,255,255,0.22); }
.plan-name {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 0; }
.price-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.price-per {
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
}
.plan-featured .price-per { color: rgba(255,255,255,0.6); }

.plan-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  flex: 1;
}
.plan-list li {
  position: relative;
  padding: 11px 0 11px 22px;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--hairline);
}
.plan-featured .plan-list li { border-bottom-color: rgba(255,255,255,0.14); }
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 1px;
  background: var(--red);
}
.plan-list li.excluded { color: var(--gray); }
.plan-list li.excluded::before { background: var(--gray); }

.plan-featured .btn-red { background: var(--red); }
.plan-featured .btn-red:hover, .plan-featured .btn-red:focus-visible { background: #fff; color: var(--ink); }

.price-note {
  margin: 34px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--ink);
  color: #fff;
  border-top: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gap);
  align-items: end;
}
.cta-text { grid-column: 1 / span 7; }
.cta-side { grid-column: 9 / span 4; }
.section-index.light { color: var(--red); }
.cta-title {
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
  hyphens: auto;
  margin: 20px 0 0;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  margin: 0 0 28px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--ink);
  padding-top: clamp(56px, 7vw, 90px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1.4fr;
  gap: var(--col-gap);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.footer-brand .brand { display: inline-block; margin-bottom: 18px; }
.footer-desc {
  font-size: 0.92rem;
  color: var(--gray);
  margin: 0;
  max-width: 30em;
  line-height: 1.55;
}
.footer-head {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--ink);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  font-size: 0.92rem;
  color: var(--gray);
  position: relative;
  transition: color 0.18s ease;
}
.footer-col a:hover,
.footer-col a:focus-visible { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px var(--gutter);
  border-top: 1px solid var(--hairline);
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.footer-legal a { color: var(--gray); }
.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--red); }
.footer-legal span { color: var(--hairline); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Ara breakpoint: 7 kolona kilitli başlık taşmadan önce 12 kolona genişlesin */
@media (max-width: 1180px) {
  .hero-text { grid-column: 1 / span 12; margin-bottom: 48px; }
  .hero-panel { grid-column: 1 / span 7; }
  .section-title { grid-column: 1 / span 9; }
}

@media (max-width: 1040px) {
  .hero-panel { grid-column: 1 / span 12; max-width: 460px; }
  .section-title { grid-column: 1 / span 12; }
  .section-lead { grid-column: 1 / span 12; margin-top: 24px; }
  .cta-text, .cta-side { grid-column: 1 / span 12; }
  .cta-side { margin-top: 36px; }
}

@media (max-width: 880px) {
  .main-nav, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / span 2; }
}

@media (max-width: 680px) {
  :root { --gutter: 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat {
    padding: 32px 0 32px 20px;
    border-left: 1px solid var(--hairline);
    border-top: 1px solid var(--hairline);
  }
  .stat:first-child, .stat:nth-child(2) { border-top: none; }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { padding: 32px 22px 36px; }
  .integ-grid { grid-template-columns: 1fr; }
  .integ { padding: 28px 22px; }
  .price-grid { grid-template-columns: 1fr; border-left: 1px solid var(--hairline); border-right: 1px solid var(--hairline); }
  .plan { border-bottom: 1px solid var(--hairline); }
  .plan-featured { border-right: 1px solid var(--ink); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}/* ============================================================
   MCSİPARİŞ — Swiss sistemi · ALT SAYFA BİLEŞENLERİ
   (homepage style.css'in devamı — aynı tokenlar: --ink --red --gray --hairline)
   ============================================================ */

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 30px;
}
.breadcrumb a { color: var(--gray); transition: color 0.18s ease; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--red); }
.breadcrumb .sep { color: var(--hairline); }

/* ---- Page hero (alt sayfa başlığı) ---- */
.page-hero {
  padding: clamp(40px, 6vw, 78px) 0 clamp(52px, 8vw, 96px);
  border-bottom: 1px solid var(--ink);
}
.page-title {
  font-size: clamp(2.5rem, 6.2vw, 5.4rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0 0 30px;
  max-width: 17ch;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  padding-top: 0.04em;
}
.page-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  color: var(--gray);
  max-width: 48ch;
  margin: 0 0 38px;
  line-height: 1.55;
}

/* ============================================================
   DETAIL — iki kolonlu, alternalı (içerik + görsel panel)
   ============================================================ */
.detail {
  padding: clamp(60px, 9vw, 118px) 0;
  border-top: 1px solid var(--hairline);
}
.detail:first-of-type { border-top: none; }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gap);
  align-items: center;
}
.detail-text { grid-column: 1 / span 5; }
.detail-visual { grid-column: 7 / span 6; }
/* ters dizilim */
.detail.rev .detail-text { grid-column: 8 / span 5; }
.detail.rev .detail-visual { grid-column: 1 / span 6; grid-row: 1; }

.detail-title {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 18px 0 18px;
  overflow-wrap: break-word;
  hyphens: auto;
}
.detail-lead {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0 0 8px;
  max-width: 42ch;
}

/* ---- feature-list (kırmızı kareli onay, emoji YOK) ---- */
.feature-list { list-style: none; margin: 24px 0 0; padding: 0; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.97rem;
  line-height: 1.45;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .tick {
  flex: none;
  width: 18px; height: 18px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.feature-list .tick::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--red);
}

/* ============================================================
   PANEL — görsel illüstrasyonlar için Swiss primitifleri
   ============================================================ */
.panel {
  border: 1px solid var(--ink);
  background: var(--paper);
}
.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.panel-title .pt-meta { color: var(--gray); font-weight: 600; }
.panel-pad { padding: 18px; }
.panel-sect {
  padding: 16px 18px;
  border-bottom: 1px solid var(--hairline);
}
.panel-sect:last-child { border-bottom: none; }

/* etiketli satır: ad + değer */
.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.9rem;
}
.data-row:last-child { border-bottom: none; }
.data-row .dl { color: var(--gray); }
.data-row .dv { font-weight: 700; }
.data-row .dv.red { color: var(--red-deep); }

/* durum etiketleri (monokrom + kırmızı; renk yerine kontrast) */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid var(--hairline);
  color: var(--gray);
  white-space: nowrap;
}
.tag-ink { border-color: var(--ink); color: var(--ink); }
.tag-red { background: var(--red); border-color: var(--red); color: #fff; }

/* mini ızgara (masa planı vb.) */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.mini-cell {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 12px 8px;
  text-align: center;
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.mini-cell .mc-num { font-weight: 800; font-size: 1.02rem; letter-spacing: -0.02em; }
.mini-cell .mc-state {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.mini-cell.is-fill { background: var(--ink); color: #fff; }
.mini-cell.is-fill .mc-state { color: rgba(255,255,255,0.6); }
.mini-cell.is-red { background: var(--red); color: #fff; }
.mini-cell.is-red .mc-state { color: rgba(255,255,255,0.78); }

/* mini-grid lejantı */
.mini-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}
.mini-legend span { display: inline-flex; align-items: center; gap: 7px; }
.mini-legend i { width: 10px; height: 10px; display: inline-block; border: 1px solid var(--ink); }
.mini-legend i.fill { background: var(--ink); }
.mini-legend i.red { background: var(--red); border-color: var(--red); }

/* yatay bar (stok / rapor ilerleme) */
.hbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline);
}
.hbar:last-child { border-bottom: none; }
.hbar-name { width: 36%; font-size: 0.88rem; font-weight: 600; }
.hbar-track { flex: 1; height: 8px; background: #EFEFEF; position: relative; }
.hbar-fill { position: absolute; left: 0; top: 0; height: 100%; background: var(--ink); }
.hbar-fill.low { background: var(--red); }
.hbar-val { width: 70px; text-align: right; font-size: 0.82rem; font-weight: 700; }
.hbar-val.low { color: var(--red-deep); }

/* satır + avatar (personel / fatura) */
.list-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline);
}
.list-row:last-child { border-bottom: none; }
.avatar {
  width: 38px; height: 38px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex: none;
}
.list-row .lr-main { flex: 1; min-width: 0; }
.list-row .lr-title { font-size: 0.9rem; font-weight: 700; }
.list-row .lr-sub { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }

/* mini bar grafik (panel içi) — homepage .bars/.bar ile uyumlu */
.bars-axis {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray);
}
.bars-axis span { flex: 1; text-align: center; }

/* büyük metrik satırı (rapor/e-fatura paneli) */
.metric-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.metric-line .ml-value {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric-line .ml-delta { font-size: 0.84rem; font-weight: 700; }
.metric-line .ml-delta .arrow { color: var(--red); font-weight: 900; }

/* ============================================================
   FAQ — Swiss akordeon (hairline satırlar, + → x)
   ============================================================ */
.faq {
  padding: clamp(60px, 9vw, 118px) 0;
  border-top: 1px solid var(--hairline);
}
.faq-list { border-top: 1px solid var(--ink); max-width: 920px; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  color: var(--ink);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.faq-icon {
  flex: none;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gray);
  transition: transform 0.25s ease, color 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 520px; }
.faq-a-inner {
  padding: 0 0 26px;
  max-width: 70ch;
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.62;
}

/* ============================================================
   COMPARE TABLE (fiyatlar — plan farkları)
   ============================================================ */
.compare { padding: clamp(60px, 9vw, 118px) 0; border-top: 1px solid var(--hairline); }
.compare-scroll { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 620px; }
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
}
.compare-table thead th {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  vertical-align: bottom;
}
.compare-table thead th.is-feat { color: var(--red); }
.compare-table tbody td.col-feat { font-weight: 600; }
.compare-table tbody tr:hover td { background: #FAFAFA; }
.compare-table td.cell { text-align: center; }
.c-yes { display: inline-block; width: 9px; height: 9px; background: var(--red); }
.c-no { display: inline-block; width: 12px; height: 1px; background: var(--gray); vertical-align: middle; }
.c-text { font-size: 0.82rem; font-weight: 600; }

/* ============================================================
   ALT SAYFA CTA (ink zemin, çapraz linkler)
   ============================================================ */
.page-cta { background: var(--ink); color: #fff; padding: clamp(64px, 9vw, 120px) 0; }
.page-cta .ct-index { color: var(--red); }
.page-cta .ct-title {
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 18px 0 18px;
  max-width: 20ch;
}
.page-cta .ct-sub { color: rgba(255,255,255,0.62); font-size: 1.05rem; margin: 0 0 32px; max-width: 48ch; }
.page-cta .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.page-cta .cta-links {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}
.page-cta .cta-links .cl-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.page-cta .cta-links a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}
.page-cta .cta-links a:hover, .page-cta .cta-links a:focus-visible { color: var(--red); }

/* ============================================================
   RESPONSIVE — alt sayfa bileşenleri
   ============================================================ */
@media (max-width: 1040px) {
  .detail-text { grid-column: 1 / span 12; }
  .detail-visual { grid-column: 1 / span 12; grid-row: auto; margin-top: 36px; max-width: 520px; }
  .detail.rev .detail-text { grid-column: 1 / span 12; }
  .detail.rev .detail-visual { grid-column: 1 / span 12; grid-row: auto; }
}
@media (max-width: 680px) {
  .mini-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-visual { margin-top: 28px; }
  .hbar-name { width: 42%; }
}


/* ---- Çoklu sayfa navigasyonu (6 öğe + aktif durum) ---- */
.nav-list { gap: 26px; }
.nav-list a.active { color: var(--ink); }
.nav-list a.active::after { transform: scaleX(1); }
.mobile-menu a.active { color: var(--red); }
@media (max-width: 1180px) {
  .nav-list { gap: 18px; }
  .nav-list a { font-size: 0.78rem; }
  .nav-actions { margin-left: 22px; gap: 16px; }
}


/* ============================================================
   MCSİPARİŞ — Swiss · YASAL SAYFALAR
   (Gizlilik Politikası / Kullanım Şartları / KVKK)
   ============================================================ */

.legal-hero {
  padding: clamp(40px, 6vw, 78px) 0 clamp(40px, 6vw, 70px);
  border-bottom: 1px solid var(--ink);
}
.legal-meta {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 24px 0 0;
}
.legal-meta strong { color: var(--ink); font-weight: 800; }

.legal { padding: clamp(48px, 7vw, 92px) 0 clamp(64px, 9vw, 120px); }
.legal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gap);
  align-items: start;
}

/* ---- İçindekiler (yapışkan) ---- */
.legal-toc { grid-column: 1 / span 3; position: sticky; top: 96px; align-self: start; }
.toc-title {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
}
.legal-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  display: block;
  padding: 9px 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--gray);
  border-bottom: 1px solid var(--hairline);
  transition: color 0.18s ease;
}
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero) "  ";
  color: var(--red);
  font-weight: 700;
}
.legal-toc a:hover, .legal-toc a:focus-visible { color: var(--ink); }

/* ---- Gövde / prose ---- */
.legal-body { grid-column: 5 / span 8; }
.legal-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--gray);
  margin: 0 0 4px;
  max-width: 72ch;
}
.prose { counter-reset: sec; max-width: 74ch; }
.prose .sec { padding: 38px 0; border-top: 1px solid var(--hairline); scroll-margin-top: 92px; }
.prose .sec:first-child { border-top: none; padding-top: 22px; }
.prose .sec > h2 {
  counter-increment: sec;
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 18px;
}
.prose .sec > h2::before { content: counter(sec, decimal-leading-zero) " — "; color: var(--red); }
.prose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 26px 0 10px;
}
.prose p { font-size: 1rem; line-height: 1.75; color: #1C1C1C; margin: 0 0 14px; }
.prose ul, .prose ol { margin: 4px 0 18px; padding: 0; list-style: none; }
.prose li { position: relative; padding: 6px 0 6px 26px; font-size: 1rem; line-height: 1.65; color: #1C1C1C; }
.prose ul > li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 9px; height: 1px;
  background: var(--red);
}
.prose ol { counter-reset: li2; }
.prose ol > li { counter-increment: li2; }
.prose ol > li::before {
  content: counter(li2) ".";
  position: absolute;
  left: 0; top: 6px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.92rem;
}
.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}
.prose a:hover, .prose a:focus-visible { color: var(--red); }
.prose strong { font-weight: 700; color: var(--ink); }

/* ---- Doldurulacak placeholder vurgusu ---- */
.ph {
  background: rgba(228, 0, 43, 0.08);
  border-bottom: 1px dashed var(--red);
  padding: 0 3px;
  font-weight: 600;
  white-space: nowrap;
}

/* ---- Yasal sayfa not kutusu (uyarı/bilgi) ---- */
.legal-note {
  margin: 28px 0 0;
  padding: 20px 22px;
  border: 1px solid var(--ink);
  border-left: 3px solid var(--red);
  background: #FAFAFA;
}
.legal-note p { font-size: 0.92rem; line-height: 1.6; color: var(--gray); margin: 0; }
.legal-note strong { color: var(--ink); }

@media (max-width: 1040px) {
  .legal-toc { display: none; }
  .legal-body { grid-column: 1 / span 12; }
  .prose, .legal-lead { max-width: 100%; }
}
