/* ==========================================================================
   Milatsan Teknoloji — Tasarım Sistemi
   ========================================================================== */

:root {
  --primary: #1e4fd8;
  --primary-dark: #1739a8;
  --primary-light: #e8eeff;
  --accent: #14b8a6;
  --accent-dark: #0f9488;
  --dark: #0b1f3a;
  --dark-soft: #142b4d;

  --ink: #0f172a;
  --body: #475569;
  --muted: #94a3b8;
  --line: #e2e8f0;
  --line-soft: #eef2f7;
  --surface: #ffffff;
  --surface-alt: #f7f9fc;
  --surface-tint: #f1f5fb;

  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
  --shadow: 0 12px 32px -12px rgba(15, 23, 42, .16);
  --shadow-lg: 0 32px 64px -24px rgba(15, 23, 42, .28);

  --container: 1240px;
  --header-h: 78px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */

*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.icon {
  width: 1.25rem;
  height: 1.25rem;
  max-width: none;
  flex-shrink: 0;
}

button, input, select, textarea { font: inherit; color: inherit; }

a { color: var(--primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary-dark); }

ul, ol { padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.1rem, 1.4rem + 2.9vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.9vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); }
h4 { font-size: 1.125rem; }

p { margin: 0; }

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

:focus-visible {
  outline: 3px solid rgba(30, 79, 216, .45);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */

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

.container-narrow { max-width: 860px; }

.section { padding: clamp(56px, 7vw, 104px) 0; }
.section-sm { padding: clamp(40px, 5vw, 68px) 0; }
.section-alt { background: var(--surface-alt); }
.section-tint { background: linear-gradient(180deg, #fff 0%, var(--surface-tint) 100%); }

.section-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: rgba(255, 255, 255, .78);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.stack { display: flex; flex-direction: column; gap: 16px; }
.row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.row-between { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }

/* ---------- Section heading ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.section-dark .eyebrow { background: rgba(255, 255, 255, .1); color: #7dd3fc; }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.06rem; }

.lead { font-size: 1.1rem; line-height: 1.75; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-size: .96rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .2s, color .2s, border-color .2s;
  box-shadow: 0 12px 24px -12px rgba(30, 79, 216, .7);
}

.btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -14px rgba(30, 79, 216, .8);
}

.btn:active { transform: translateY(0); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-accent { background: var(--accent); box-shadow: 0 12px 24px -12px rgba(20, 184, 166, .75); }
.btn-accent:hover { background: var(--accent-dark); box-shadow: 0 18px 34px -14px rgba(20, 184, 166, .85); }

.btn-dark { background: var(--dark); box-shadow: 0 12px 24px -12px rgba(11, 31, 58, .6); }
.btn-dark:hover { background: var(--dark-soft); }

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: none;
}
.btn-outline:hover { background: var(--surface-alt); border-color: var(--primary); color: var(--primary); }

.btn-ghost-light {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .2); color: #fff; }

.btn-white { background: #fff; color: var(--primary); box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .5); }
.btn-white:hover { background: #f1f5fb; color: var(--primary-dark); }

.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 17px 36px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn:disabled, .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: .94rem;
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease);
}

.site-header.is-stuck { box-shadow: 0 8px 28px -18px rgba(15, 23, 42, .5); }

.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
}
.topbar .container { display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; justify-content: space-between; min-height: 42px; }
.topbar a { color: rgba(255, 255, 255, .85); }
.topbar a:hover { color: #fff; }
.topbar-list { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.topbar-list li { display: flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; opacity: .75; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo-wrap { display: flex; align-items: center; }
.brand img, .brand-logo { max-height: 48px; width: auto; display: block; }
@media (max-width: 768px) {
  .brand img, .brand-logo { max-height: 40px; max-width: 148px; object-fit: contain; }
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: 1.08rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.brand-sub { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.04em;
  box-shadow: 0 10px 20px -10px rgba(30, 79, 216, .8);
}

.nav-menu { display: flex; align-items: center; gap: 4px; }

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: .94rem;
  font-weight: 600;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.is-active { color: var(--primary); background: var(--primary-light); }
.nav-link svg { width: 14px; height: 14px; opacity: .6; transition: transform .2s var(--ease); }

.has-dropdown { position: relative; }
.has-dropdown:hover > .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .24s var(--ease);
}

.dropdown-wide { min-width: 620px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.dropdown-item:hover { background: var(--surface-alt); color: var(--primary); }
.dropdown-item strong { display: block; font-size: .9rem; font-weight: 600; }
.dropdown-item > span:not(.dropdown-icon) > span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}

.dropdown-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  align-self: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
}
.dropdown-icon svg { width: 18px; height: 18px; display: block; margin: auto; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.icon-btn:hover { border-color: var(--primary); color: var(--primary); }
.icon-btn svg { width: 19px; height: 19px; }

.icon-btn .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.nav-toggle { display: none; }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 88vw);
  z-index: 200;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-nav a { display: block; padding: 13px 14px; border-radius: var(--radius-sm); color: var(--ink); font-weight: 600; }
.mobile-nav a:hover { background: var(--surface-alt); color: var(--primary); }
.mobile-nav details > summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 14px; border-radius: var(--radius-sm); color: var(--ink);
  font-weight: 600; cursor: pointer; list-style: none;
}
.mobile-nav details > summary::-webkit-details-marker { display: none; }
.mobile-nav details > summary svg {
  width: 16px;
  height: 16px;
  max-width: none;
  opacity: .55;
  transition: transform .2s var(--ease);
}
.mobile-nav details[open] > summary { color: var(--primary); }
.mobile-nav details[open] > summary svg { transform: rotate(180deg); opacity: .85; }
.mobile-nav details a { padding-left: 30px; font-weight: 500; font-size: .92rem; color: var(--body); }
.mobile-nav-divider { height: 1px; margin: 14px 0; background: var(--line-soft); }
.mobile-nav-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-nav-quick-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
}
.mobile-nav .mobile-nav-quick-item:hover {
  background: var(--surface-alt);
  color: var(--primary);
}
.mobile-nav-quick-item svg { width: 18px; height: 18px; max-width: none; }
.mobile-nav-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(11, 31, 58, .5);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease);
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 118px) 0 clamp(72px, 9vw, 130px);
  background: linear-gradient(135deg, var(--dark) 0%, #16305c 55%, #1a3f7a 100%);
  color: rgba(255, 255, 255, .8);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero::before { width: 520px; height: 520px; top: -190px; right: -130px; background: rgba(30, 79, 216, .5); }
.hero::after { width: 420px; height: 420px; bottom: -180px; left: -100px; background: rgba(20, 184, 166, .32); }

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 40%, transparent 100%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .gradient-text {
  background: linear-gradient(120deg, #60a5fa, #5eead4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub { font-size: 1.12rem; line-height: 1.75; margin-bottom: 32px; max-width: 58ch; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .08);
  color: #bfdbfe;
  font-size: .82rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .22);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 30px; }
.hero-trust li { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: rgba(255, 255, 255, .78); }
.hero-trust svg { width: 19px; height: 19px; color: #5eead4; flex-shrink: 0; }

.hero-visual-wrap { min-width: 0; }

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Demo vitrin */
.hero-showcase {
  position: relative;
  border-radius: calc(var(--radius-lg) + 2px);
  padding: 1px;
  background: linear-gradient(135deg, rgba(96, 165, 250, .55), rgba(94, 234, 212, .45));
  box-shadow: 0 28px 60px -24px rgba(0, 0, 0, .55);
}

.hero-showcase-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 40%, rgba(30, 79, 216, .35), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-showcase-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #0f2748 0%, #122f58 100%);
  border: 1px solid rgba(255, 255, 255, .12);
}

.hero-showcase-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .18);
}

.hero-showcase-bar-title {
  margin-left: auto;
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .48);
}

.hero-showcase-bar-ref {
  font-size: .68rem;
  color: rgba(255, 255, 255, .55);
  max-width: 42%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-showcase-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}

.hero-showcase-bar span:first-child { background: #f87171; }
.hero-showcase-bar span:nth-child(2) { background: #fbbf24; }
.hero-showcase-bar span:nth-child(3) { background: #4ade80; }

.hero-showcase-bar em {
  margin-left: 0;
}

.hero-showcase-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0b1f3a;
}

.hero-demo-mock {
  position: relative;
  padding: 18px 18px 20px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #0b1f3a 0%, #132f55 48%, #0f766e 145%);
}

.hero-demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.hero-demo-metric {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .06);
}

.hero-demo-metric small {
  display: block;
  font-size: .68rem;
  color: rgba(255, 255, 255, .52);
  margin-bottom: 4px;
}

.hero-demo-metric strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.hero-demo-metric.is-up strong { color: #6ee7b7; }
.hero-demo-metric.is-down strong { color: #93c5fd; }

.hero-demo-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 92px;
  padding-top: 8px;
}

.hero-demo-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #60a5fa, #1e4fd8);
  transform-origin: bottom;
  animation: heroBarGrow 2.8s ease-in-out infinite alternate;
}

.hero-demo-chart span:nth-child(odd) { animation-delay: -.6s; background: linear-gradient(180deg, #5eead4, #0d9488); }
.hero-demo-chart span:nth-child(3n) { animation-delay: -1.2s; }

.hero-demo-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(96, 165, 250, .08) 48%, transparent 100%);
  animation: heroScan 3.6s linear infinite;
  pointer-events: none;
}

@keyframes heroBarGrow {
  from { transform: scaleY(.72); opacity: .75; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes heroScan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Animasyonlu sonuç kartları */
.hero-results {
  padding: 16px 16px 14px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 44px -24px rgba(0, 0, 0, .45);
}

.hero-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-results-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

.hero-results-live .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .18);
  animation: heroPulse 2s ease-in-out infinite;
}

.hero-results-count {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
}

.hero-results-viewport {
  height: 108px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
}

.hero-results-track {
  display: flex;
  flex-direction: column;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.hero-result-card {
  flex: 0 0 108px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 4px 2px;
  opacity: .45;
  transform: scale(.96);
  transition: opacity .45s ease, transform .45s ease;
}

.hero-result-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-result-card.is-nudge {
  animation: heroCardNudge .55s cubic-bezier(.36, .07, .19, .97);
}

.hero-results.is-cta-hover .hero-result-card.is-active {
  box-shadow: 0 0 0 1px rgba(94, 234, 212, .25);
  border-radius: 14px;
}

.hero-result-metric {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.hero-result-metric svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-result-metric strong {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1;
}

.hero-result-metric span {
  flex: 1 1 100%;
  font-size: .82rem;
  color: rgba(255, 255, 255, .68);
  font-weight: 500;
}

.hero-result-metric.trend-up svg { color: #6ee7b7; }
.hero-result-metric.trend-down svg { color: #93c5fd; }

.hero-result-person {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hero-result-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 79, 216, .35), rgba(20, 184, 166, .28));
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.hero-result-person strong {
  display: block;
  font-size: .86rem;
  color: #fff;
  line-height: 1.2;
}

.hero-result-person small {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.hero-results-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.hero-results-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  transition: width .25s ease, background .25s ease;
}

.hero-results-dots span.is-active {
  width: 18px;
  background: #5eead4;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .65; transform: scale(.92); }
}

@keyframes heroCardNudge {
  0%, 100% { transform: translateX(0) scale(1); }
  20% { transform: translateX(-4px) scale(1.01); }
  40% { transform: translateX(4px) scale(1.01); }
  60% { transform: translateX(-3px) scale(1); }
  80% { transform: translateX(3px) scale(1); }
}

/* Referans logo şeridi */
.hero-logos {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
}

.hero-logos-label {
  display: block;
  margin-bottom: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .48);
}

.hero-logos-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.hero-logos-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: heroLogoMarquee 32s linear infinite;
}

.hero-logos-marquee:hover .hero-logos-track { animation-play-state: paused; }

.hero-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 40px;
  padding: 0 14px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.hero-logo-item img {
  display: block;
  max-height: 26px;
  max-width: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform .25s ease, opacity .25s ease;
}

.hero-logos-marquee:hover .hero-logo-item img { transform: scale(1.04); }

.hero-logo-fallback {
  padding: 4px 0;
  font-size: .72rem;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}

@keyframes heroLogoMarquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .hero-results-track,
  .hero-demo-chart span,
  .hero-demo-scan,
  .hero-logos-track,
  .hero-results-live .dot { animation: none !important; transition: none !important; }
}

/* Eski hero kartları (başka sayfalarda kullanılıyorsa) */
.hero-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
}

.hero-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-card-dots { display: flex; gap: 6px; }
.hero-card-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, .22); }
.hero-card-dots span:first-child { background: #f87171; }
.hero-card-dots span:nth-child(2) { background: #fbbf24; }
.hero-card-dots span:nth-child(3) { background: #4ade80; }
.hero-card-title { font-size: .82rem; color: rgba(255, 255, 255, .6); font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; }

.hero-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.hero-stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
}
.hero-stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.hero-stat span { font-size: .8rem; color: rgba(255, 255, 255, .62); }

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  font-size: .85rem;
  font-weight: 600;
  animation: float 5s ease-in-out infinite;
}
.hero-float-1 { bottom: -22px; left: -18px; }
.hero-float-2 { top: -20px; right: -14px; animation-delay: -2.5s; }
.hero-float .ico {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--primary-light); color: var(--primary);
}
.hero-float .ico svg { width: 17px; height: 17px; }
.hero-float small { display: block; font-size: .72rem; font-weight: 500; color: var(--muted); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* Hero — anasayfa talep kutusu */
.hero-lead-col { min-width: 0; }

.hero-lead-box {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, .45);
  margin-bottom: 24px;
}

.hero-lead-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.hero-lead-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(20, 184, 166, .18);
  color: #5eead4;
  flex-shrink: 0;
}

.hero-lead-icon svg { width: 20px; height: 20px; }

.hero-lead-head strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.hero-lead-head p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.5;
  margin: 0;
}

.hero-lead-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-lead-chip {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .88);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .76rem;
  line-height: 1.35;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
  text-align: left;
}

.hero-lead-chip:hover,
.hero-lead-chip.is-active {
  background: rgba(30, 79, 216, .35);
  border-color: rgba(125, 211, 252, .55);
  color: #fff;
}

.hero-lead-form .field label {
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
  margin-bottom: 6px;
}

.hero-lead-form textarea,
.hero-lead-form input[type="text"],
.hero-lead-form input[type="tel"] {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(11, 31, 58, .55);
  color: #fff;
  border-radius: 12px;
  padding: 11px 13px;
  font-size: .92rem;
}

.hero-lead-form textarea::placeholder,
.hero-lead-form input::placeholder { color: rgba(255, 255, 255, .38); }

.hero-lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.hero-lead-contact-prefs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.hero-lead-pref {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .88);
  font-size: .86rem;
  cursor: pointer;
}

.hero-lead-pref input { accent-color: var(--accent); }

.hero-lead-pref span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-lead-pref svg { width: 16px; height: 16px; }

.hero-lead-kvkk {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0 12px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.45;
}

.hero-lead-kvkk a { color: #7dd3fc; text-decoration: underline; }

.hero-lead-submit { width: 100%; justify-content: center; margin-top: 4px; }

#heroLeadAlert { margin-bottom: 10px; }

@media (max-width: 640px) {
  .hero-lead-row { grid-template-columns: 1fr; }
}

/* ---------- Marquee (logos / keywords) ---------- */

.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--line-soft);
  background: var(--surface-alt);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .92rem; font-weight: 600; color: var(--muted); white-space: nowrap;
}
.marquee-item svg { width: 17px; height: 17px; color: var(--accent); }

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

/* ---------- Cards ---------- */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }

.card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-light), #f0fdfa);
  color: var(--primary);
  transition: all .3s var(--ease);
}
.card-icon svg { width: 27px; height: 27px; }
.card:hover .card-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; }

.card-thumb {
  display: block;
  margin: -30px -30px 20px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface-tint), var(--primary-light));
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.card:hover .card-thumb img { transform: scale(1.06); }

.card h3 { margin-bottom: 11px; font-size: 1.2rem; }
.card p { font-size: .945rem; margin-bottom: 18px; }
.card .card-foot { margin-top: auto; padding-top: 6px; }

.card-list { margin-bottom: 20px; display: grid; gap: 9px; }
.card-list li { display: flex; gap: 9px; align-items: flex-start; font-size: .89rem; }
.card-list svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.price-tag small { font-size: .78rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-tag .strike { font-size: .95rem; font-weight: 500; color: var(--muted); text-decoration: line-through; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--surface-alt);
  color: var(--body);
  font-size: .76rem;
  font-weight: 600;
}
.badge-pill svg { width: 13px; height: 13px; }
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-accent { background: #ccfbf1; color: var(--accent-dark); }
.badge-success { background: #dcfce7; color: #15803d; }
.badge-warning { background: #fef3c7; color: #b45309; }
.badge-danger { background: #fee2e2; color: #b91c1c; }
.badge-muted { background: var(--surface-tint); color: var(--muted); }

.card-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
}

/* Media card (references, blog) */

.media-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.media-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.media-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface-tint), var(--primary-light));
}
.media-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.media-card:hover .media-thumb img { transform: scale(1.06); }

.media-thumb-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--primary);
  opacity: .35;
}
.media-thumb-placeholder svg { width: 54px; height: 54px; }

.media-body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.media-body h3 { font-size: 1.12rem; margin-bottom: 10px; }
.media-body p { font-size: .91rem; margin-bottom: 16px; }
.media-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 13px; }
.media-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* ---------- Feature / process ---------- */

.feature-row { display: flex; gap: 18px; align-items: flex-start; }
.feature-row .ico {
  display: grid; place-items: center; flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--primary-light); color: var(--primary);
}
.feature-row .ico svg { width: 23px; height: 23px; }
.feature-row h4 { margin-bottom: 6px; }
.feature-row p { font-size: .92rem; }

.section-dark .feature-row .ico { background: rgba(255, 255, 255, .1); color: #5eead4; }

.step-card {
  position: relative;
  padding: 30px 26px 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: all .3s var(--ease);
}
.step-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.step-num {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-size: 1.05rem; font-weight: 800;
  box-shadow: 0 10px 20px -10px rgba(30, 79, 216, .8);
}
.step-card h4 { margin-bottom: 9px; }
.step-card p { font-size: .9rem; }

/* ---------- Stats ---------- */

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }

.stat-box {
  padding: 28px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
}
.stat-box strong {
  display: block;
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.7rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.035em;
  line-height: 1.1;
}
.stat-box span { font-size: .88rem; font-weight: 600; color: var(--body); }

.section-dark .stat-box { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .1); }
.section-dark .stat-box strong { color: #5eead4; }
.section-dark .stat-box span { color: rgba(255, 255, 255, .68); }

/* ---------- Slider ---------- */

.slider { position: relative; }

.slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > * { flex: 0 0 clamp(280px, 33%, 400px); scroll-snap-align: start; }

.slider-nav { display: flex; gap: 10px; }
.slider-btn {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.slider-btn svg { width: 18px; height: 18px; }

/* ---------- Accordion ---------- */

.accordion { display: grid; gap: 12px; }

.accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.accordion details[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
  font-weight: 650;
  color: var(--ink);
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '';
  flex-shrink: 0;
  width: 11px; height: 11px;
  border-right: 2.2px solid var(--muted);
  border-bottom: 2.2px solid var(--muted);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .28s var(--ease), border-color .2s;
}
.accordion details[open] summary::after { transform: rotate(-135deg); border-color: var(--primary); }
.accordion .accordion-body { padding: 0 22px 21px; font-size: .95rem; }

/* ---------- Breadcrumbs ---------- */

.page-head {
  padding: 40px 0 34px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--surface-alt), #fff);
}
.page-head h1 { margin-bottom: 12px; }
.page-head p { max-width: 72ch; font-size: 1.03rem; }

.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 14px; font-size: .84rem; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--line); }
.breadcrumbs a { color: var(--muted); font-weight: 500; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs li[aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- Prose ---------- */

.prose { font-size: 1.02rem; line-height: 1.82; color: var(--body); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 1.9em; font-size: 1.65rem; }
.prose h3 { margin-top: 1.6em; font-size: 1.3rem; }
.prose h4 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: .5em; }
.prose li::marker { color: var(--primary); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); font-weight: 650; }
.prose img { border-radius: var(--radius); margin-block: 1.6em; }
.prose blockquote {
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--primary);
  color: var(--ink);
  font-size: 1.06rem;
  font-style: italic;
}
.prose table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.prose th, .prose td { padding: 11px 14px; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--surface-alt); color: var(--ink); font-weight: 650; }
.prose code {
  padding: 2px 7px;
  border-radius: 6px;
  background: var(--surface-tint);
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: .88em;
  color: var(--primary-dark);
}
.prose pre {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #e2e8f0;
  overflow-x: auto;
}
.prose pre code { background: none; color: inherit; padding: 0; }

/* ---------- Forms ---------- */

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.form-grid[hidden],
[data-corporate-fields][hidden] {
  display: none !important;
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }

.field label, .form-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
}
.field label .req, .form-label .req { color: var(--danger); }

.input, .field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.input::placeholder, .field input::placeholder, .field textarea::placeholder { color: var(--muted); }

.input:focus, .field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 79, 216, .1);
}

.field textarea { min-height: 130px; resize: vertical; line-height: 1.65; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 42px;
}

.field-hint { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.field-error { font-size: .8rem; color: var(--danger); font-weight: 500; }
.has-error .input, .has-error input, .has-error select, .has-error textarea { border-color: var(--danger); }

.check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .9rem;
  cursor: pointer;
  line-height: 1.6;
}
.check input[type="checkbox"], .check input[type="radio"] {
  width: 19px; height: 19px; margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

/* İletişim / teklif — iletişim tercihi pill radio */
.form-prefs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.form-pref {
  position: relative;
  cursor: pointer;
}

.form-pref input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.form-pref-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: .9rem;
  font-weight: 600;
  color: var(--body);
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
  user-select: none;
}

.form-pref-box svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--muted);
  transition: color .2s;
}

.form-pref:hover .form-pref-box {
  border-color: rgba(30, 79, 216, .35);
  background: var(--surface-alt);
}

.form-pref input:checked + .form-pref-box {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(30, 79, 216, .1);
}

.form-pref input:checked + .form-pref-box svg {
  color: var(--primary);
}

.form-pref input:focus-visible + .form-pref-box {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* KVKK onay kutusu */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.form-consent:hover {
  border-color: rgba(30, 79, 216, .25);
  background: #fff;
}

.form-consent:has(input:checked) {
  border-color: rgba(30, 79, 216, .45);
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(30, 79, 216, .08);
}

.form-consent input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.form-consent-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 2px solid var(--line);
  border-radius: 6px;
  background: #fff;
  position: relative;
  transition: border-color .2s, background .2s;
}

.form-consent-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .15s var(--ease);
}

.form-consent input:checked ~ .form-consent-box {
  background: var(--primary);
  border-color: var(--primary);
}

.form-consent input:checked ~ .form-consent-box::after {
  transform: rotate(45deg) scale(1);
}

.form-consent input:focus-visible ~ .form-consent-box {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.form-consent-text {
  font-size: .86rem;
  line-height: 1.55;
  color: var(--body);
}

.form-consent-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent-text a:hover {
  color: var(--primary-dark);
}

.radio-cards { display: grid; gap: 12px; }
.radio-card {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 17px 19px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.radio-card:hover { border-color: var(--primary); background: var(--surface-alt); }
.radio-card:has(input:checked) { border-color: var(--primary); background: var(--primary-light); }
.radio-card input { margin-top: 3px; accent-color: var(--primary); width: 19px; height: 19px; flex-shrink: 0; }
.radio-card strong { display: block; font-size: .95rem; color: var(--ink); }
.radio-card span { display: block; font-size: .83rem; color: var(--muted); }

.honeypot { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; }

/* ---------- Alerts ---------- */

.alert {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .92rem;
  line-height: 1.6;
}
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.alert-error, .alert-danger { background: #fef2f2; border-color: #fecaca; color: #b91c1c; }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: #b45309; }
.alert-info { background: var(--primary-light); border-color: #c7d7fe; color: var(--primary-dark); }
.alert ul { margin-top: 6px; padding-left: 18px; list-style: disc; }

/* ---------- Tables ---------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
}

.table { width: 100%; border-collapse: collapse; font-size: .91rem; }
.table th {
  padding: 14px 16px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 650;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}
.table td { padding: 15px 16px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: var(--surface-alt); }
.table .num { text-align: right; font-variant-numeric: tabular-nums; }

/* ---------- Footer ---------- */

.site-footer {
  padding-top: clamp(52px, 6vw, 78px);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: var(--body);
  font-size: .93rem;
  border-top: 1px solid var(--line);
}
.site-footer h4 { margin-bottom: 20px; color: var(--ink); font-size: .93rem; letter-spacing: .05em; text-transform: uppercase; }
.site-footer a { color: var(--body); }
.site-footer a:hover { color: var(--primary); }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(0, 1fr)) minmax(200px, 1.15fr);
  gap: 28px 22px;
  align-items: start;
  padding-bottom: 28px;
}
.footer-col,
.footer-brand,
.footer-col-contact {
  min-width: 0;
}
.footer-col h4,
.footer-col-contact h4 {
  margin-top: 0;
}

.footer-brand img { max-height: 52px; margin-bottom: 18px; }
.footer-brand p { margin-bottom: 22px; line-height: 1.75; }

.footer-links { display: grid; gap: 11px; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity .2s;
}
.footer-links a:hover::before { opacity: 1; }

.footer-guide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.footer-guide-title {
  margin: 0;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-guide-links {
  display: flex;
  flex: 1 1 280px;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  min-width: 0;
  line-height: 1.55;
}
.footer-guide-sep {
  margin: 0 .62em;
  color: var(--muted);
  font-size: .95em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.footer-guide-links a {
  display: inline;
  color: var(--body);
  font-size: .86rem;
  white-space: nowrap;
  text-decoration: none;
}
.footer-guide-links a:hover { color: var(--primary); }

.footer-contact { display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-contact strong { display: block; color: var(--ink); font-weight: 600; }
.footer-contact span { line-height: 1.55; word-break: break-word; }

.social-row { display: flex; gap: 10px; }
.social-row a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface);
  color: var(--body);
  transition: all .22s var(--ease);
}
.social-row a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--body); }
.footer-bottom a:hover { color: var(--primary); }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 20px; }

.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 0 0 8px;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  filter: grayscale(.35) contrast(1.05);
}

.payment-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 0 8px;
  text-align: center;
  margin-top: 12px;
}
.site-footer .payment-trust {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 22px;
}
.payment-trust-band,
.payment-trust-iyzico {
  max-width: 100%;
  height: auto;
  margin-top: 6px;
}
.payment-trust--horizontal {
  margin-top: 14px;
}
.payment-trust--horizontal .payment-trust-iyzico { max-height: 36px; }
.payment-trust-ssl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: .78rem;
  color: var(--muted);
}
.payment-trust-ssl svg { width: 14px; height: 14px; flex-shrink: 0; }
.side-card .payment-trust {
  padding: 12px 0 0;
  margin-top: 14px;
}

/* ---------- Floating actions ---------- */

.float-actions {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.float-btn {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 28px -10px rgba(0, 0, 0, .42);
  transition: transform .22s var(--ease);
}
.float-btn:hover { transform: scale(1.08); color: #fff; }
.float-btn svg { width: 25px; height: 25px; }
.float-whatsapp { background: #25d366; }
.float-phone { background: var(--primary); }
.float-top { background: var(--dark); opacity: 0; visibility: hidden; }
.float-top.is-visible { opacity: 1; visibility: visible; }

/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 110;
  width: min(380px, calc(100vw - 32px));
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  animation: cookie-in .35s var(--ease);
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent-inner { display: grid; gap: 14px; }
.cookie-consent-text {
  margin: 0;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--body);
}
.cookie-consent-text a {
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-consent-actions .btn {
  padding: 9px 16px;
  font-size: .82rem;
}
@keyframes cookie-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Pagination ---------- */

.pagination { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 44px; }
.pagination a, .pagination span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 600;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.pagination .is-active { background: var(--primary); border-color: var(--primary); color: #fff; }
.pagination .is-disabled { opacity: .4; pointer-events: none; }

/* ---------- Empty state ---------- */

.empty-state {
  padding: 56px 30px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  text-align: center;
}
.empty-state svg { width: 52px; height: 52px; margin: 0 auto 18px; color: var(--muted); opacity: .7; }
.empty-state h3 { margin-bottom: 9px; font-size: 1.14rem; }
.empty-state p { margin-bottom: 20px; font-size: .93rem; }

/* ---------- Misc ---------- */

.divider { height: 1px; background: var(--line-soft); border: 0; }

.sticky-side { position: sticky; top: calc(var(--header-h) + 24px); }

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 44px;
  align-items: start;
}

.side-card {
  padding: 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.side-card + .side-card { margin-top: 20px; }
.side-card h3 { font-size: 1.1rem; margin-bottom: 16px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.gallery-grid img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

.ref-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.ref-gallery-item {
  display: block;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.ref-gallery-item:hover,
.ref-gallery-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
  outline: none;
}
.ref-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  image-rendering: auto;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, .88);
}
.gallery-lightbox[hidden] { display: none !important; }
.gallery-lightbox-inner {
  position: relative;
  max-width: min(1100px, 96vw);
  max-height: 92vh;
  width: 100%;
}
.gallery-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.gallery-lightbox-caption {
  margin-top: 12px;
  text-align: center;
  color: #f8fafc;
  font-size: .95rem;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}
.gallery-lightbox-close {
  top: -52px;
  right: 0;
}
.gallery-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}
.gallery-lightbox-nav.prev { left: -56px; }
.gallery-lightbox-nav.next { right: -56px; }
@media (max-width: 720px) {
  .gallery-lightbox-nav.prev { left: 8px; }
  .gallery-lightbox-nav.next { right: 8px; }
  .gallery-lightbox-close { top: 8px; right: 8px; }
}

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; color: #fff; }

.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .8rem; }
.fw-600 { font-weight: 600; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.w-100 { width: 100%; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 1200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11, 31, 58, .55); backdrop-filter: blur(2px); }
.modal-dialog {
  position: relative;
  width: min(100%, 520px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.modal-head h2 { margin: 0; font-size: 1.15rem; }
.modal-body { padding: 20px; }
.modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  background: #f8fafc;
}
.modal .alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: .9rem;
}

/* ---------- Teklif Al modal ---------- */
.quote-modal .modal-head {
  align-items: flex-start;
  flex-shrink: 0;
}

.quote-modal-dialog {
  width: min(100%, 560px);
  max-height: min(92vh, 680px);
  display: flex;
  flex-direction: column;
}

.quote-modal-sub {
  margin: 4px 0 0;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}

.quote-modal-form {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}

.quote-modal-body {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  padding: 16px 20px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.quote-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-modal-grid .field-full { grid-column: 1 / -1; }

.quote-modal-body .field { gap: 5px; }
.quote-modal-body .field label { font-size: .84rem; }
.quote-modal-body .field input,
.quote-modal-body .field select,
.quote-modal-body .field textarea {
  padding: 10px 12px;
  font-size: .92rem;
}
.quote-modal-body .field textarea {
  min-height: 68px;
  resize: vertical;
}

.quote-modal-extras {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-modal-extras-label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.quote-modal-extras .form-prefs { margin-top: 0; gap: 8px; }
.quote-modal-extras .form-pref-box { padding: 9px 14px; font-size: .86rem; }

.form-consent-compact {
  margin-top: 0;
  padding: 10px 12px;
  gap: 10px;
}

.form-consent-compact .form-consent-box {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.form-consent-compact .form-consent-text {
  font-size: .78rem;
  line-height: 1.45;
}

.quote-modal-foot {
  flex-shrink: 0;
  padding: 12px 20px;
}

.quote-modal #quoteFormAlert {
  margin-top: 12px;
}

@media (max-width: 560px) {
  .quote-modal { align-items: flex-end; padding: 0; }
  .quote-modal-dialog {
    width: 100%;
    max-height: 94vh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .quote-modal-grid { grid-template-columns: 1fr; }
  .quote-modal-foot {
    flex-direction: column-reverse;
    gap: 8px;
  }
  .quote-modal-foot .btn { width: 100%; justify-content: center; }
}

@media (max-height: 640px) {
  .quote-modal-dialog { max-height: 98vh; }
  .quote-modal-body { padding: 12px 16px; }
  .quote-modal-body .field textarea { min-height: 56px; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual-wrap,
  .hero-visual { max-width: 620px; width: 100%; margin-inline: auto; }
  .detail-layout { grid-template-columns: 1fr; }
  .sticky-side { position: static; }
  .dropdown-wide { min-width: 480px; }
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 520px;
  }
}

@media (max-width: 900px) {
  .nav-menu, .topbar-list.is-secondary, .nav-desktop-only { display: none; }
  .nav-toggle { display: grid; }
  .navbar { gap: 10px; }
  .nav-actions { gap: 6px; }
  .brand { min-width: 0; flex: 1 1 auto; }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
  .footer-col-contact {
    grid-column: 1 / -1;
  }
  .footer-map iframe { height: 200px; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  :root { --header-h: 58px; }
  .site-header .container { padding-left: 14px; padding-right: 14px; }
  .navbar { min-height: var(--header-h); gap: 8px; }
  .brand img, .brand-logo { max-height: 34px; max-width: 112px; }
  .icon-btn { width: 38px; height: 38px; border-radius: 10px; }
  .icon-btn svg { width: 17px; height: 17px; }
  body { font-size: 15.5px; }
  .card, .side-card { padding: 24px; }
  .media-body { padding: 20px; }
  .hero-result-card {
    grid-template-columns: 1fr;
    flex-basis: 132px;
    gap: 8px;
  }
  .hero-results-viewport { height: 132px; }
  .hero-demo-metrics { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .hero-demo-metric strong { font-size: .92rem; }
  .hero-float { display: none; }
  .btn { padding: 13px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-col-contact { grid-column: auto; }
  .footer-guide {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 0 20px;
  }
  .footer-guide-links { flex: 1 1 auto; width: 100%; }
  .footer-guide-links a { white-space: normal; }
  .footer-map iframe { height: 180px; }
  .slider-track > * { flex: 0 0 86%; }
  .float-btn { width: 50px; height: 50px; }
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
  .cookie-consent-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ---------- SEO landing pages ---------- */

.seo-landings-section { padding-top: 56px; }

.seo-landing-grid { gap: 24px; }

.seo-landing-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 30px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.seo-landing-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--line-soft));
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
}
.seo-landing-card-badge {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 12%, #fff);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.seo-landing-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--surface-alt);
  color: var(--primary);
}
.seo-landing-card-icon .icon { width: 24px; height: 24px; }
.seo-landing-card h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--ink);
}
.seo-landing-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
  flex: 1;
}
.seo-landing-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
}
.seo-landing-card-link .icon { width: 16px; height: 16px; }

.seo-landing-prose figure { margin-block: 1.8em; }
.seo-landing-prose figcaption {
  margin-top: .65em;
  font-size: .88rem;
  color: var(--muted);
  text-align: center;
}
.seo-landing-media {
  margin-block: 1.6em 1.9em;
}
.seo-landing-media figure {
  margin: 0;
}
.seo-landing-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  margin-block: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface-alt, #f1f5f9);
}
.seo-landing-media--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.seo-landing-media--grid[data-count="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.seo-landing-media--grid[data-count="3"] figure:first-child {
  grid-column: 1 / -1;
}
.seo-landing-media--grid[data-count="3"] figure:first-child img {
  aspect-ratio: 21 / 9;
}
.seo-landing-media--grid figcaption {
  margin-top: .5em;
  font-size: .82rem;
}
@media (max-width: 720px) {
  .seo-landing-media--grid,
  .seo-landing-media--grid[data-count="3"] {
    grid-template-columns: 1fr;
  }
  .seo-landing-media--grid[data-count="3"] figure:first-child {
    grid-column: auto;
  }
  .seo-landing-media--grid[data-count="3"] figure:first-child img {
    aspect-ratio: 16 / 9;
  }
}
.seo-landing-faq h2 { font-size: 1.65rem; margin-bottom: 0; }
.seo-landing-cta .btn-block + .btn-block { margin-top: 10px; }

.seo-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 1.4em 0 1.8em;
}
.seo-feature-card {
  padding: 16px 18px;
  border: 1px solid var(--line-soft, #e2e8f0);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
}
.seo-feature-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink, #0f172a);
  font-size: .95rem;
}
.seo-feature-card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--muted, #64748b);
}
.seo-landing-prose .seo-feature-grid + * { margin-top: 1.2em; }
.seo-landing-prose h2 { scroll-margin-top: 90px; }

.seo-district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 1.5em 0 2em;
}

.seo-district-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft, #e2e8f0);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.seo-district-link:hover {
  border-color: var(--primary, #1e4fd8);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.seo-district-link strong {
  font-size: .95rem;
  color: var(--ink, #0f172a);
}

.seo-district-link span {
  font-size: .75rem;
  color: var(--muted, #64748b);
  line-height: 1.35;
}

@media (max-width: 768px) {
  .seo-landing-grid { grid-template-columns: 1fr; }
  .seo-district-grid { grid-template-columns: 1fr 1fr; }
}

.order-track-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.order-track-timeline li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 12px 4px;
}
.order-track-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 34px;
  width: 2px;
  height: calc(100% - 12px);
  background: var(--line-soft);
}
.order-track-timeline li.is-done:not(:last-child)::after { background: #86efac; }
.order-track-dot {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid var(--line-soft);
  background: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.order-track-timeline li.is-done .order-track-dot {
  border-color: var(--success);
  background: #dcfce7;
}
.order-track-timeline li.is-current .order-track-dot {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 79, 216, .12);
}
.order-track-timeline li.is-cancelled .order-track-dot {
  border-color: #ef4444;
  background: #fee2e2;
}
.order-track-label { font-weight: 600; }
.order-track-timeline li.is-current .order-track-label { color: var(--primary); }
.order-track-message {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--surface-alt);
  border-left: 3px solid var(--primary);
}
.order-track-message p {
  margin-top: 8px;
  white-space: pre-wrap;
}
.readonly-box {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--surface-alt);
  border: 1px solid var(--line-soft);
  white-space: pre-wrap;
  font-size: .92rem;
}

.payment-link-deadline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  background: #fef9c3;
  border: 1px solid #fde047;
  color: #854d0e;
}
.payment-link-deadline.is-expired {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #991b1b;
}
.payment-link-deadline strong { font-size: .95rem; }
.payment-link-deadline span { font-size: .88rem; }
.payment-link-customer-note {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--surface-alt);
  border-left: 3px solid var(--primary);
}
.payment-link-customer-note p {
  margin-top: 8px;
  white-space: pre-wrap;
}
.payment-link-old-price {
  display: block;
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: .85rem;
}
.payment-link-line .payment-link-old-price {
  display: inline-block;
  margin-right: 8px;
}

.time-24-select {
  display: flex;
  align-items: center;
  gap: 8px;
}
.time-24-select select {
  flex: 1;
  min-width: 0;
}
.time-24-sep {
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.expiry-field-group .datetime-24-wrap {
  display: grid;
  grid-template-columns: minmax(160px, 1.4fr) 120px minmax(100px, .8fr);
  gap: 12px;
  align-items: end;
  max-width: 560px;
}
.datetime-24-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.time-24-input {
  font-variant-numeric: tabular-nums;
  letter-spacing: .06em;
  text-align: center;
  font-weight: 600;
}
.datetime-24-switch {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}
@media (max-width: 640px) {
  .expiry-field-group .datetime-24-wrap {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }
  .datetime-24-active { grid-column: 1 / -1; }
}

@media print {
  .site-header, .site-footer, .float-actions, .cookie-consent, .no-print { display: none !important; }
  body { color: #000; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Dijital Araçlar
   ========================================================================== */

.tool-card,
.tool-package-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tool-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 16px;
}

.tool-card-meta {
  margin-top: auto;
  padding-top: 12px;
  color: var(--muted);
  font-size: .88rem;
}

.tool-package-card {
  position: relative;
}

.tool-package-card.is-featured {
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(30, 79, 216, .12);
}

.tool-package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.tool-package-price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tool-package-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: .95rem;
}

.tool-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.tool-submission-card {
  padding: 28px;
  border: 1px solid rgba(30, 79, 216, .14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(30, 79, 216, .04) 0%, #fff 42%);
  box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
}

.tool-submission-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.tool-submission-card__head h3 {
  margin: 4px 0 0;
  font-size: 1.25rem;
}

.tool-submission-card__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--primary);
}

.tool-submission-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.tool-submission-item {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  min-width: 0;
}

.tool-submission-item.is-wide {
  grid-column: 1 / -1;
}

.tool-submission-item dt {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}

.tool-submission-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
}

.tool-submission-item__icon .icon {
  width: 15px;
  height: 15px;
}

.tool-submission-item dd {
  margin: 0;
  min-width: 0;
}

.tool-submission-value,
.tool-submission-link {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  word-break: break-word;
}

.tool-submission-link {
  color: var(--primary);
  text-decoration: none;
}

.tool-submission-link:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .tool-submission-list {
    grid-template-columns: 1fr;
  }

  .tool-submission-card {
    padding: 22px 18px;
  }

  .tool-submission-card__head .btn {
    width: 100%;
    justify-content: center;
  }
}

.tool-steps {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.tool-sale-countdown {
  margin-top: 8px;
}
