/* MCSİPARİŞ — Light Theme */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:   #ffffff;
  --bg2:  #f8fafc;
  --bg3:  #f1f5f9;
  --card: #ffffff;
  --card-border: rgba(0,0,0,0.08);
  --card-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.05);
  --card-shadow-hover: 0 4px 12px rgba(0,0,0,.08), 0 12px 32px rgba(0,0,0,.08);
  --indigo: #6366f1;
  --indigo-dark: #4f46e5;
  --cyan:   #0891b2;
  --purple: #9333ea;
  --orange: #ea580c;
  --green:  #16a34a;
  --pink:   #db2777;
  --red:    #dc2626;
  --text:   #0f172a;
  --text2:  #475569;
  --text3:  #94a3b8;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* ── DECORATIVE BG ── */
.blob-wrap {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .07; }
.blob-1 { width: 700px; height: 700px; background: #6366f1; top: -300px; left: -200px; animation: drift1 22s ease-in-out infinite; }
.blob-2 { width: 600px; height: 600px; background: #a855f7; top: 50%; right: -200px; animation: drift2 28s ease-in-out infinite; }
.blob-3 { width: 500px; height: 500px; background: #22d3ee; bottom: -100px; left: 25%; animation: drift3 20s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(80px,100px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-60px,80px)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(50px,-70px)} }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; padding: 0 2rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.nav-inner { max-width: 1200px; margin: 0 auto; height: 100%; display: flex; align-items: center; gap: 2rem; }
.nav-logo {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-decoration: none; flex-shrink: 0;
}
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--text2); text-decoration: none; font-size: .875rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-right { margin-left: auto; display: flex; gap: .75rem; align-items: center; }
.nav-toggle { display: none; background: none; border: 1px solid var(--card-border); color: var(--text2); padding: .4rem .7rem; border-radius: 8px; cursor: pointer; font-size: 1rem; }

/* ── BUTTONS ── */
.btn-ghost {
  padding: .5rem 1.2rem; border-radius: 8px; font-size: .875rem; font-weight: 600;
  color: var(--text2); background: transparent; border: 1px solid #d1d5db;
  cursor: pointer; text-decoration: none; transition: all .2s; display: inline-block;
}
.btn-ghost:hover { color: var(--text); border-color: #9ca3af; background: var(--bg2); }
.btn-primary {
  padding: .55rem 1.4rem; border-radius: 8px; font-size: .875rem; font-weight: 700;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  color: #fff; border: none; cursor: pointer; text-decoration: none; display: inline-block;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 1px 2px rgba(99,102,241,.3), 0 4px 12px rgba(99,102,241,.2);
}
.btn-primary:hover { opacity: .92; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(99,102,241,.35); }
.btn-lg { padding: .85rem 2rem; border-radius: 12px; font-size: 1rem; }

/* ── LAYOUT ── */
section { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--text3); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--text3); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--text2); }
.breadcrumb .sep { opacity: .4; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block; padding: .3rem 1rem; border-radius: 100px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
}
.label-indigo { background: #eef2ff; color: #4338ca; border: 1px solid #c7d2fe; }
.label-cyan   { background: #ecfeff; color: #0e7490; border: 1px solid #a5f3fc; }
.label-purple { background: #faf5ff; color: #7e22ce; border: 1px solid #e9d5ff; }
.label-orange { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }
.label-green  { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.label-pink   { background: #fdf2f8; color: #be185d; border: 1px solid #fbcfe8; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.08; color: var(--text); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.1; color: var(--text); }
h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.gradient-text {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub { font-size: 1.05rem; color: var(--text2); max-width: 560px; line-height: 1.7; }

/* ── HOME HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 7rem 2rem 5rem; text-align: center;
  background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 60%);
}
.hero-inner { max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; padding: .35rem 1rem;
  border-radius: 100px; background: #eef2ff; border: 1px solid #c7d2fe;
  font-size: .8rem; font-weight: 600; color: #4338ca; margin-bottom: 2rem;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
.hero p { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text2); max-width: 620px; margin: 1.25rem auto 2.5rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }

/* ── PAGE HERO ── */
.page-hero { padding: 7rem 2rem 4rem; background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%); }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: var(--text2); max-width: 640px; margin-bottom: 2rem; line-height: 1.7; }
.page-hero .hero-cta { justify-content: flex-start; margin-bottom: 0; }

/* ── DASHBOARD MOCKUP ── */
.dashboard-mockup {
  background: #ffffff; border: 1px solid #e2e8f0;
  border-radius: 20px; padding: 1.5rem; max-width: 860px; margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.mockup-bar { display: flex; gap: .5rem; margin-bottom: 1rem; }
.mockup-bar span { width: 12px; height: 12px; border-radius: 50%; }
.mockup-bar span:nth-child(1){background:#ef4444} .mockup-bar span:nth-child(2){background:#f59e0b} .mockup-bar span:nth-child(3){background:#22c55e}
.mockup-grid { display: grid; grid-template-columns: 190px 1fr 170px; gap: 1rem; min-height: 280px; }
.mockup-sidebar { background: #f8fafc; border-radius: 12px; border: 1px solid #e2e8f0; padding: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.mockup-nav-item { padding: .45rem .75rem; border-radius: 8px; font-size: .72rem; color: #64748b; display: flex; align-items: center; gap: .5rem; }
.mockup-nav-item.active { background: #eef2ff; color: #4338ca; font-weight: 600; }
.mockup-nav-item .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.mockup-main { display: flex; flex-direction: column; gap: 1rem; }
.mockup-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; }
.mockup-stat { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: .75rem; }
.mockup-stat .label { font-size: .62rem; color: #94a3b8; }
.mockup-stat .value { font-size: 1.05rem; font-weight: 700; margin-top: .2rem; }
.mockup-stat .trend { font-size: .62rem; color: #16a34a; margin-top: .1rem; }
.mockup-chart { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: .75rem; flex: 1; }
.chart-title { font-size: .68rem; color: #94a3b8; margin-bottom: .5rem; }
.chart-bars { display: flex; align-items: flex-end; gap: .3rem; height: 75px; }
.bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(to top, var(--indigo), var(--purple)); animation: growBar .8s ease-out both; }
@keyframes growBar { from{height:0} }
.mockup-right { display: flex; flex-direction: column; gap: .75rem; }
.mockup-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: .75rem; }
.mockup-card .card-label { font-size: .62rem; color: #94a3b8; margin-bottom: .4rem; }
.order-item { display: flex; align-items: center; gap: .4rem; font-size: .68rem; padding: .2rem 0; border-bottom: 1px solid #f1f5f9; color: #475569; }
.order-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ── STATS BAR ── */
.stats-bar { padding: 3rem 2rem; background: var(--bg2); border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-num { font-size: 2.4rem; font-weight: 900; letter-spacing: -.04em; }
.stat-label { font-size: .875rem; color: var(--text2); margin-top: .2rem; }

/* ── FEATURE CARD GRID ── */
.features-section { padding: 5rem 2rem; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feature-card {
  background: var(--card); border: 1px solid #e2e8f0; border-radius: 20px; padding: 2rem;
  text-decoration: none; color: inherit; display: block;
  transition: all .25s; box-shadow: var(--card-shadow);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); border-color: #c7d2fe; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); }
.feature-card p { font-size: .875rem; color: var(--text2); line-height: 1.65; }
.feature-card .card-link { font-size: .8rem; color: var(--indigo); margin-top: 1rem; display: block; font-weight: 600; }

/* ── DETAIL SECTIONS ── */
.detail-section { padding: 5rem 2rem; background: var(--bg); }
.detail-section.alt { background: var(--bg2); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.detail-grid.rev { direction: rtl; }
.detail-grid.rev > * { direction: ltr; }
.detail-content h2 { margin-bottom: 1rem; }
.detail-content > p { color: var(--text2); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--text2); }
.check { width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .72rem; margin-top: 1px; }
.check.indigo { background: #eef2ff; color: #4338ca; }
.check.cyan   { background: #ecfeff; color: #0e7490; }
.check.purple { background: #faf5ff; color: #7e22ce; }
.check.orange { background: #fff7ed; color: #c2410c; }
.check.green  { background: #f0fdf4; color: #15803d; }
.check.pink   { background: #fdf2f8; color: #be185d; }

/* ── VISUAL PANEL ── */
.visual-panel {
  background: var(--card); border: 1px solid #e2e8f0; border-radius: 24px;
  padding: 1.75rem; min-height: 360px; display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--card-shadow);
}
.visual-title { font-size: .68rem; color: var(--text3); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.vdivider { border: none; border-top: 1px solid #f1f5f9; margin: .25rem 0; }

/* masa */
.masa-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .55rem; }
.masa-card { border-radius: 10px; padding: .65rem; font-size: .68rem; font-weight: 600; text-align: center; border: 1px solid; }
.masa-bos   { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.masa-dolu  { background: #fff7ed; border-color: #fed7aa; color: #c2410c; }
.masa-hesap { background: #eef2ff; border-color: #c7d2fe; color: #4338ca; }
.masa-islem { background: #fdf2f8; border-color: #fbcfe8; color: #be185d; }
.masa-num   { font-size: 1.05rem; font-weight: 900; margin-bottom: .1rem; }
.masa-tutar { font-size: .62rem; opacity: .8; }

/* fatura */
.invoice-row { display: flex; align-items: center; gap: .75rem; padding: .6rem .75rem; background: #f8fafc; border-radius: 10px; border: 1px solid #e2e8f0; }
.invoice-icon { font-size: 1.15rem; }
.invoice-info { flex: 1; }
.invoice-name { font-size: .78rem; font-weight: 600; color: var(--text); }
.invoice-vkn  { font-size: .63rem; color: var(--text3); }
.invoice-amount { font-size: .82rem; font-weight: 700; color: #15803d; }
.invoice-badge { font-size: .6rem; font-weight: 700; padding: .18rem .5rem; border-radius: 100px; }
.badge-sent     { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.badge-incoming { background: #ecfeff; color: #0e7490; border: 1px solid #a5f3fc; }
.badge-pending  { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }

/* stok */
.stok-row { display: flex; align-items: center; gap: .75rem; padding: .6rem .75rem; background: #f8fafc; border-radius: 10px; border: 1px solid #e2e8f0; }
.stok-bar-wrap { flex: 1; }
.stok-name  { font-size: .78rem; font-weight: 600; margin-bottom: .28rem; color: var(--text); }
.stok-bar-bg { height: 5px; background: #e2e8f0; border-radius: 100px; overflow: hidden; }
.stok-bar-fill { height: 100%; border-radius: 100px; }
.stok-qty { font-size: .72rem; color: var(--text2); min-width: 55px; text-align: right; }
.stok-low { font-size: .63rem; color: var(--orange); }

/* personel */
.personel-row { display: flex; align-items: center; gap: .75rem; padding: .6rem .75rem; background: #f8fafc; border-radius: 10px; border: 1px solid #e2e8f0; }
.avatar { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; flex-shrink: 0; }
.personel-info { flex: 1; }
.personel-name { font-size: .78rem; font-weight: 600; color: var(--text); }
.personel-role { font-size: .63rem; color: var(--text3); }
.shift-badge { font-size: .63rem; font-weight: 600; padding: .18rem .55rem; border-radius: 100px; }
.shift-on  { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.shift-off { background: #f1f5f9; color: #64748b; border: 1px solid #e2e8f0; }

/* rapor */
.rapor-row { display: flex; align-items: center; gap: .75rem; }
.rapor-label { font-size: .72rem; color: var(--text2); width: 65px; flex-shrink: 0; }
.rapor-track { flex: 1; height: 8px; background: #e2e8f0; border-radius: 100px; overflow: hidden; }
.rapor-fill  { height: 100%; border-radius: 100px; }
.rapor-val   { font-size: .72rem; font-weight: 700; min-width: 52px; text-align: right; color: var(--text); }

/* ── FAQ ── */
.faq-section { padding: 5rem 2rem; background: var(--bg2); }
.faq-section.alt { background: var(--bg); }
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 820px; }
.faq-item { background: var(--card); border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; box-shadow: var(--card-shadow); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text); font-size: .95rem;
  font-weight: 600; padding: 1.25rem 1.5rem; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: inherit;
}
.faq-icon { font-size: 1.2rem; color: #94a3b8; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--indigo); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; font-size: .9rem; color: var(--text2); line-height: 1.7; border-top: 1px solid #f1f5f9; padding-top: 1rem; }

/* ── ENTEGRASYON ── */
.enteg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.enteg-card { background: var(--card); border: 1px solid #e2e8f0; border-radius: 20px; padding: 1.75rem; text-align: center; transition: all .25s; box-shadow: var(--card-shadow); }
.enteg-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); border-color: #c7d2fe; }
.enteg-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.enteg-card h3 { font-size: .98rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); }
.enteg-card p { font-size: .825rem; color: var(--text2); }

/* ── PAKET ── */
.paket-section { padding: 5rem 2rem; background: var(--bg2); }
.paket-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.paket-card {
  background: var(--card); border: 1px solid #e2e8f0; border-radius: 24px; padding: 2rem;
  position: relative; transition: all .25s; box-shadow: var(--card-shadow);
}
.paket-card.featured {
  border-color: var(--indigo); border-width: 2px;
  box-shadow: 0 4px 24px rgba(99,102,241,.15), 0 1px 3px rgba(99,102,241,.1);
}
.paket-card.featured::before {
  content: 'En Popüler'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--indigo), var(--purple)); color: #fff;
  font-size: .68rem; font-weight: 700; padding: .25rem .9rem; border-radius: 100px; white-space: nowrap;
}
.paket-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.paket-name { font-size: .82rem; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.paket-price { font-size: 2.1rem; font-weight: 900; letter-spacing: -.04em; margin-bottom: 1.5rem; color: var(--text); }
.paket-price span { font-size: .95rem; color: var(--text2); font-weight: 400; }
.paket-list { list-style: none; display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.75rem; }
.paket-list li { font-size: .82rem; color: var(--text2); display: flex; gap: .5rem; }
.paket-list .ok { color: var(--green); flex-shrink: 0; }
.paket-list .no { color: #cbd5e1; flex-shrink: 0; }
.btn-paket {
  width: 100%; padding: .75rem; border-radius: 12px; font-size: .88rem; font-weight: 700;
  cursor: pointer; border: 1.5px solid #e2e8f0; background: var(--bg2); color: var(--text2);
  transition: all .2s; text-align: center; display: block; text-decoration: none;
}
.btn-paket:hover { border-color: #9ca3af; color: var(--text); background: #f1f5f9; }
.btn-paket.feat {
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  border-color: transparent; color: #fff;
  box-shadow: 0 2px 8px rgba(99,102,241,.3);
}
.btn-paket.feat:hover { opacity: .93; box-shadow: 0 4px 16px rgba(99,102,241,.4); }

/* ── CTA ── */
.cta-section {
  padding: 6rem 2rem; text-align: center;
  background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 50%, #f0f9ff 100%);
  border-top: 1px solid #e2e8f0;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--text2); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #0f172a; border-top: 1px solid rgba(255,255,255,.06); padding: 3rem 2rem 2rem; color: #94a3b8; font-size: .82rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand p { margin-top: .7rem; line-height: 1.65; max-width: 250px; }
.footer-brand .nav-logo { background: linear-gradient(135deg, #a5b4fc 0%, #e879f9 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
footer h4 { font-size: .78rem; font-weight: 700; color: #e2e8f0; margin-bottom: .85rem; text-transform: uppercase; letter-spacing: .08em; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
footer a { color: #94a3b8; text-decoration: none; transition: color .2s; }
footer a:hover { color: #e2e8f0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ── COMPARE TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.compare-table th { padding: .75rem 1rem; font-size: .8rem; font-weight: 700; color: var(--text2); text-align: left; border-bottom: 2px solid #e2e8f0; background: var(--bg2); }
.compare-table td { padding: .7rem 1rem; font-size: .82rem; border-bottom: 1px solid #f1f5f9; color: var(--text2); }
.compare-table td:first-child { font-weight: 500; color: var(--text); }
.compare-table tr:hover td { background: #fafafa; }
.td-check { color: var(--green); font-weight: 700; }
.td-no { color: #cbd5e1; }
.td-limited { color: var(--orange); font-size: .75rem; font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-grid.rev { direction: ltr; }
  .enteg-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .paket-grid { grid-template-columns: 1fr; max-width: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mockup-grid { grid-template-columns: 1fr; }
  .mockup-sidebar, .mockup-right { display: none; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,.98); border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 2rem; gap: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .enteg-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .paket-grid { max-width: 100%; }
  .faq-list { max-width: 100%; }
}
