:root {
  /* Color */
  --bg: oklch(1 0 0);
  --surface: oklch(0.965 0.012 230);
  --ink: oklch(0.18 0.025 230);
  --muted: oklch(0.42 0.02 230);
  --primary: oklch(0.42 0.12 230);
  --primary-deep: oklch(0.28 0.08 230);
  --accent: oklch(0.72 0.155 75);
  --accent-deep: oklch(0.58 0.14 70);
  --wa: oklch(0.55 0.14 155);
  --dark: oklch(0.14 0.02 230);
  --on-dark: oklch(0.97 0.01 230);
  --white: oklch(1 0 0);
  --line: oklch(0.9 0.015 230);

  /* Type */
  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body: "Karla", system-ui, sans-serif;

  /* Spacing scale (4px base) */
  --s-1: 0.25rem;   /* 4 */
  --s-2: 0.5rem;    /* 8 */
  --s-3: 0.75rem;   /* 12 */
  --s-4: 1rem;      /* 16 */
  --s-5: 1.25rem;   /* 20 */
  --s-6: 1.5rem;    /* 24 */
  --s-7: 2rem;      /* 32 */
  --s-8: 2.5rem;    /* 40 */
  --s-9: 3rem;      /* 48 */
  --s-10: 4rem;     /* 64 */
  --s-11: 5rem;     /* 80 */
  --s-12: 6rem;     /* 96 */

  --gutter: clamp(1.25rem, 4vw, 2rem);
  --container: 72.5rem; /* 1160 */
  --gap: var(--s-3);
  --gap-lg: var(--s-6);
  --section-y: clamp(3.5rem, 7vw, 5.5rem);
  --radius: 0.45rem;
  --radius-sm: 0.35rem;
  --radius-lg: 0.6rem;
  --header-h: 4.25rem;
  --btn-h: 3rem;
  --btn-px: 1.25rem;
  --sticky-h: 3.5rem;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.2, 0, 0, 1);
  --dur-fast: 180ms;
  --dur-med: 320ms;
  --dur-reveal: 420ms;

  --z-header: 40;
  --z-sticky: 50;
  --z-float: 55;
  --z-nav: 60;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--primary);
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-wrap: balance;
  margin: 0 0 var(--s-3);
}

p {
  margin: 0 0 var(--s-4);
  text-wrap: pretty;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--s-4);
  top: -4rem;
  background: var(--accent);
  color: var(--white);
  padding: var(--s-3) var(--s-4);
  z-index: 100;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: var(--s-4);
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background var(--dur-med) var(--ease-out);
}

.site-header.is-scrolled {
  background: color-mix(in oklch, var(--bg) 94%, transparent);
}

.header-inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}

.brand:hover { color: var(--ink); }

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  line-height: 0;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 1px 2px color-mix(in oklch, var(--dark) 12%, transparent);
}

.brand-mark-bg {
  fill: var(--primary-deep);
}

.brand-mark-icon {
  fill: var(--accent);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.2rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--s-1);
}

.nav-desktop a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 0 0.7rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease-io), background var(--dur-fast) var(--ease-io);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--ink);
  background: var(--surface);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  min-width: 0;
}

.header-cta-btn {
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  padding: 0;
  justify-content: center;
  gap: 0;
  border: 1px solid transparent;
  box-shadow: none;
  border-radius: var(--radius);
}

.header-cta-btn:hover {
  transform: none;
  filter: brightness(1.06);
}

.header-cta .btn-wa {
  background: var(--wa);
  color: var(--white);
  border-color: var(--wa);
}

.header-cta .btn-wa:hover {
  background: var(--wa);
  color: var(--white);
  border-color: var(--wa);
  filter: brightness(1.06);
}

.header-cta .btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.header-cta .btn-primary:hover {
  background: var(--primary-deep);
  color: var(--white);
  border-color: var(--primary-deep);
  filter: none;
}

.header-cta-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shop-icon,
.header-cta .wa-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  flex-shrink: 0;
}

/* ---------- Buttons (tek yükseklik, simetri) ---------- */
.btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: var(--btn-h);
  height: var(--btn-h);
  padding: 0 var(--btn-px);
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease-io),
    background var(--dur-fast) var(--ease-io),
    border-color var(--dur-fast) var(--ease-io),
    box-shadow var(--dur-fast) var(--ease-io),
    opacity var(--dur-fast) var(--ease-io);
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

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

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px color-mix(in oklch, var(--accent) 28%, transparent);
}

.btn-accent:hover {
  background: var(--accent-deep);
  color: var(--white);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
  display: none;
}

.btn-ghost-solid {
  background: var(--bg);
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost-solid:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-wa {
  background: var(--wa);
  color: var(--white);
}

.btn-wa:hover {
  color: var(--white);
  filter: brightness(1.05);
}

.btn-phone {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.header-actions .btn {
  height: 2.5rem;
  min-height: 2.5rem;
  padding-inline: 1rem;
  font-size: 0.88rem;
}

.header-actions .header-cta-btn {
  padding-inline: 0;
}

.wa-icon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  overflow: visible;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: var(--ink);
  transition: transform var(--dur-fast) var(--ease-io);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

.nav-mobile {
  display: grid;
  gap: 0;
  padding: var(--s-2) var(--gutter) var(--s-5);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav-mobile[hidden] { display: none; }

.nav-mobile a:not(.btn) {
  text-decoration: none;
  padding: var(--s-4) 0;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  min-height: 3rem;
  display: flex;
  align-items: center;
}

.nav-mobile .btn {
  margin-top: var(--s-4);
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(86vh, 820px);
  color: var(--on-dark);
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--dark);
}

.hero-media img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--dark) 45%, transparent) 0%, color-mix(in oklch, var(--dark) 62%, transparent) 45%, color-mix(in oklch, var(--dark) 78%, transparent) 100%),
    linear-gradient(90deg, color-mix(in oklch, var(--dark) 72%, transparent), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: calc(var(--header-h) + var(--s-6)) 0 var(--s-8);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin: 0 0 var(--s-4);
  padding: 0.4rem 0.75rem;
  min-height: 2rem;
  border: 1px solid color-mix(in oklch, var(--white) 28%, transparent);
  background: color-mix(in oklch, var(--dark) 35%, transparent);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.35s var(--ease-out) 0.05s forwards;
}

.hero-chip::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 25%, transparent);
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 9.5vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-4);
  padding-top: 0.08em;
  overflow: visible;
  clip-path: inset(0 100% 0 0);
  animation: revealX 0.55s var(--ease-out) 0.08s forwards;
}

.hero-brand span {
  display: block;
  white-space: nowrap;
}

.hero h1 {
  font-size: clamp(1.55rem, 4.2vw, 2.35rem);
  font-weight: 700;
  max-width: 18ch;
  margin-bottom: var(--s-3);
  opacity: 0;
  animation: fadeUp 0.4s var(--ease-out) 0.22s forwards;
}

.hero-lead {
  max-width: 42ch;
  color: color-mix(in oklch, var(--on-dark) 84%, transparent);
  font-size: 1.05rem;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.4s var(--ease-out) 0.32s forwards;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: var(--gap);
  margin-top: var(--s-6);
  max-width: 28rem;
  opacity: 0;
  animation: fadeUp 0.4s var(--ease-out) 0.4s forwards;
}

.hero-actions .btn {
  width: 100%;
  min-width: 0;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2) var(--s-4);
  opacity: 0;
  animation: fadeUp 0.4s var(--ease-out) 0.48s forwards;
}

.hero-trust li {
  font-size: 0.84rem;
  font-weight: 600;
  color: color-mix(in oklch, var(--on-dark) 78%, transparent);
  padding-left: var(--s-4);
  position: relative;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--accent);
}

.stats-band {
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding: var(--s-5) 0;
}

.stats-band > .container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  width: 100%;
  margin: 0;
}

.stat {
  --i: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-4) var(--s-3);
  text-align: center;
  min-height: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
}

.js .stats-strip .stat {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--dur-reveal) var(--ease-out),
    transform var(--dur-reveal) var(--ease-out);
  transition-delay: calc(var(--i) * 55ms);
}

.js .stats-strip.is-in .stat {
  opacity: 1;
  transform: none;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.stat span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
}

.stats-strip--boxed {
  width: 100%;
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-y) 0;
}

.section--flush-top {
  padding-top: 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: var(--s-7);
}

.section-head > :last-child {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--s-3);
}

.eyebrow-on-dark {
  color: var(--accent);
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
  margin-top: var(--s-6);
}

.section-actions--start {
  margin-top: 0;
}

.section-actions .btn {
  flex: 0 1 auto;
}

.section-actions--equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 32rem;
  width: 100%;
}

.section-actions--stack-end {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: stretch;
  gap: var(--s-2);
  margin-left: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .section-actions--stack-end {
    justify-items: end;
    margin-left: auto;
    width: min(100%, 18rem);
  }
}

.section-actions--stack-end .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.cta-panel .section-actions--equal {
  max-width: none;
}

.section-actions--equal .btn {
  width: 100%;
  min-width: 0;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.2;
  padding-inline: 0.85rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity var(--dur-reveal) var(--ease-out),
    transform var(--dur-reveal) var(--ease-out),
    filter var(--dur-reveal) var(--ease-out);
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--gap);
}

.step {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.step-n {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.step h3 {
  font-size: 1.4rem;
  margin: 0;
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* Expertise / Uzmanlık */
.expertise-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}

.expertise-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  min-height: 100%;
  box-shadow: 0 1px 0 color-mix(in oklch, var(--ink) 4%, transparent);
  transition:
    border-color var(--dur-med) var(--ease-io),
    transform var(--dur-med) var(--ease-io),
    box-shadow var(--dur-med) var(--ease-io);
}

.expertise-card:hover {
  color: var(--ink);
  border-color: color-mix(in oklch, var(--primary) 35%, var(--line));
  transform: translateY(-4px);
  box-shadow:
    0 14px 32px color-mix(in oklch, var(--dark) 12%, transparent),
    0 2px 0 color-mix(in oklch, var(--accent) 35%, transparent);
}

.expertise-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark);
}

.expertise-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(transparent, color-mix(in oklch, var(--dark) 55%, transparent));
  pointer-events: none;
}

.expertise-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}

.expertise-card:hover .expertise-card-media img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.expertise-badge {
  position: absolute;
  left: var(--s-3);
  top: var(--s-3);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0 0.65rem;
  border: 1px solid color-mix(in oklch, var(--white) 18%, transparent);
  background: color-mix(in oklch, var(--dark) 55%, transparent);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.expertise-card-body {
  padding: var(--s-5) var(--s-5) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--surface) 70%, var(--bg)), var(--bg));
}

.expertise-card-body h2,
.expertise-card-body h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  margin: 0;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: var(--s-3);
}

.expertise-card-body h2::after,
.expertise-card-body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.75rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--dur-med) var(--ease-out);
}

.expertise-card:hover .expertise-card-body h2::after,
.expertise-card:hover .expertise-card-body h3::after {
  width: 2.75rem;
}

.expertise-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.expertise-card-body li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
}

.expertise-card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 16%, transparent);
}

.expertise-more {
  margin-top: var(--s-1);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.expertise-more::after {
  content: "→";
  transition: transform var(--dur-fast) var(--ease-io);
}

.expertise-card:hover .expertise-more::after {
  transform: translateX(4px);
}

/* Services */
.service-bands,
.value-banners {
  display: grid;
  gap: var(--s-5);
}

.service-band,
.value-banner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 18rem;
  background: var(--dark);
  color: var(--on-dark);
  overflow: hidden;
  text-decoration: none;
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px color-mix(in oklch, var(--dark) 14%, transparent);
}

.service-band:hover,
.value-banner:hover {
  color: var(--on-dark);
}

.value-banner-media,
.service-band > img {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
  background: var(--dark);
}

.value-banner-media img,
.service-band img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.value-banner:hover .value-banner-media img,
.service-band:hover img {
  transform: scale(1.05);
}

.value-banner-body,
.service-band-body {
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-3);
  background: linear-gradient(160deg, var(--dark), var(--primary-deep));
}

.service-band-body {
  position: absolute;
  inset: 0;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent, color-mix(in oklch, var(--dark) 88%, transparent)),
    linear-gradient(90deg, color-mix(in oklch, var(--dark) 55%, transparent), transparent);
}

.value-banner-body .eyebrow,
.service-band-body .eyebrow {
  color: var(--accent);
  margin-bottom: 0;
}

.value-banner h3,
.service-band h2,
.service-band h3 {
  font-size: clamp(1.75rem, 3.8vw, 2.45rem);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.value-banner p,
.service-band p {
  max-width: 38ch;
  color: color-mix(in oklch, var(--on-dark) 82%, transparent);
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.value-chips {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.value-chips li {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.band-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-1);
}

.band-link::after {
  content: "→";
  transition: transform var(--dur-fast) var(--ease-io);
}

.service-band:hover .band-link::after {
  transform: translateX(4px);
}

/* Split */
.split {
  display: grid;
  gap: var(--s-7);
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  height: 100%;
  border-radius: var(--radius-lg);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 20rem;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(transparent, color-mix(in oklch, var(--dark) 40%, transparent));
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0 0;
  display: grid;
  gap: var(--s-3);
}

.feature-list--tight {
  margin-top: var(--s-7);
  max-width: 40rem;
}

.feature-list li {
  padding-left: var(--s-5);
  position: relative;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 2px;
}

.surface { background: var(--surface); }

/* Areas */
.area-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}

.area-card {
  position: relative;
  min-height: 15rem;
  overflow: hidden;
  color: var(--on-dark);
  background: var(--dark);
  border-radius: var(--radius-lg);
}

.area-card img {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.area-card:hover img {
  transform: scale(1.04);
}

.area-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--s-5);
  display: grid;
  gap: var(--s-2);
  background: linear-gradient(transparent, color-mix(in oklch, var(--dark) 90%, transparent));
}

.area-card h3 {
  font-size: 1.45rem;
  margin: 0;
}

.area-card p {
  margin: 0;
  color: color-mix(in oklch, var(--on-dark) 82%, transparent);
  font-size: 0.95rem;
}

/* Reference carousel */
.section-refs {
  overflow: hidden;
}

.ref-carousel {
  container-type: inline-size;
  overflow: hidden;
  margin-top: var(--s-2);
  padding-inline: var(--gutter);
}

.ref-carousel-track {
  display: flex;
  width: max-content;
  gap: 0.85rem;
  animation: refMarquee 48s linear infinite;
  will-change: transform;
}

.ref-carousel:hover .ref-carousel-track {
  animation-play-state: paused;
}

.ref-carousel figure {
  --ref-gap: 0.85rem;
  --ref-cols: 1.35;
  position: relative;
  margin: 0;
  flex: 0 0 calc((100cqi - (var(--ref-cols) - 1) * var(--ref-gap)) / var(--ref-cols));
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark);
}

.ref-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.01);
  transition:
    filter 0.4s var(--ease-out),
    transform 0.55s var(--ease-out);
}

.ref-carousel figure:hover img {
  filter: grayscale(0);
  transform: scale(1.06);
}

.ref-carousel figcaption {
  position: absolute;
  left: var(--s-3);
  bottom: var(--s-3);
  z-index: 1;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
  text-shadow: 0 2px 10px color-mix(in oklch, var(--dark) 70%, transparent);
}

.ref-carousel figure:hover figcaption {
  opacity: 1;
  transform: none;
}

.ref-carousel figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(transparent, color-mix(in oklch, var(--dark) 65%, transparent));
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
  pointer-events: none;
}

.ref-carousel figure:hover::after {
  opacity: 1;
}

@keyframes refMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (min-width: 640px) {
  .ref-carousel figure {
    --ref-cols: 2.4;
  }
}

@media (min-width: 960px) {
  .ref-carousel figure {
    --ref-cols: 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ref-carousel-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ref-carousel figure {
    --ref-cols: 2;
  }

  .ref-carousel figure[aria-hidden="true"] {
    display: none;
  }
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: var(--s-7);
}

.faq-list {
  display: grid;
  gap: var(--s-2);
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 0 var(--s-5);
  border-radius: var(--radius);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  min-height: 3.75rem;
  padding: var(--s-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 0.7rem;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 0.7rem;
  transition: transform var(--dur-fast) var(--ease-io), opacity var(--dur-fast) var(--ease-io);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq-item p {
  color: var(--muted);
  padding: 0 0 var(--s-5);
  margin: 0;
  max-width: 60ch;
}

/* Districts */
.district-groups {
  display: grid;
  gap: var(--s-8);
}

.district-groups h2 {
  margin-bottom: var(--s-4);
}

.district-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.district-cloud a,
.district-cloud span,
.service-chip-grid span,
.service-chip-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 var(--s-3);
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast) var(--ease-io), color var(--dur-fast) var(--ease-io), background var(--dur-fast) var(--ease-io);
}

.district-cloud a:hover,
.service-chip-grid a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: color-mix(in oklch, var(--primary) 6%, var(--bg));
}

.service-chip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.service-chip-grid span,
.service-chip-grid a {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.7rem 0.85rem;
  text-align: center;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .service-chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .service-chip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.district-list {
  display: grid;
  gap: var(--s-2);
}

.district-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--bg);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  border-radius: var(--radius);
  transition: border-color var(--dur-fast) var(--ease-io), color var(--dur-fast) var(--ease-io), background var(--dur-fast) var(--ease-io);
}

.district-list a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: color-mix(in oklch, var(--primary) 5%, var(--bg));
}

.district-list a span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.district-list a:hover span:last-child {
  color: var(--primary);
}

.neighborhood-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.neighborhood-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 5.25rem;
  padding: 0.9rem 0.75rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  background: color-mix(in oklch, var(--surface) 85%, var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color var(--dur-fast) var(--ease-io),
    background var(--dur-fast) var(--ease-io),
    color var(--dur-fast) var(--ease-io),
    transform var(--dur-fast) var(--ease-io),
    box-shadow var(--dur-fast) var(--ease-io);
}

.neighborhood-grid a strong {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.neighborhood-grid a span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--dur-fast) var(--ease-io);
}

.neighborhood-grid a:hover {
  border-color: color-mix(in oklch, var(--primary) 35%, var(--line));
  background: var(--bg);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px color-mix(in oklch, var(--dark) 8%, transparent);
}

.neighborhood-grid a:hover span {
  color: var(--primary);
}

#populer-mahalleler .text-accent {
  color: var(--primary);
}

#populer-mahalleler .section-head p strong {
  color: var(--ink);
  font-weight: 700;
}

/* HTML sitemap */
.sitemap-page {
  display: grid;
  gap: var(--s-7);
}

.sitemap-block h2 {
  margin: 0 0 var(--s-3);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.sitemap-list a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.sitemap-list a:hover {
  color: var(--primary);
}

.sitemap-list--grid {
  grid-template-columns: 1fr;
  gap: 0.45rem 1rem;
}

@media (min-width: 640px) {
  .sitemap-list--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .sitemap-list--grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact */
.contact-layout {
  display: grid;
  gap: var(--gap);
  align-items: stretch;
}

.contact-panel,
.cta-panel {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 100%;
  height: 100%;
}

.contact-panel {
  background: var(--dark);
  color: var(--on-dark);
  justify-content: center;
}

.contact-panel a { color: var(--accent); }

.contact-panel h2,
.cta-panel h2 {
  margin: 0 0 var(--s-2);
}

.contact-panel > p,
.cta-panel > p {
  margin: 0 0 var(--s-3);
  font-size: 0.95rem;
}

.cta-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  justify-content: center;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: var(--s-3) 0 0;
  display: grid;
  gap: var(--s-3);
}

.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.form {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-3);
}

.form-hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.form label {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--s-2);
  font-weight: 600;
  font-size: 0.92rem;
}

.form-label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  line-height: 1.2;
}

.form .req {
  color: var(--accent-deep);
  font-weight: 700;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: var(--btn-h);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  padding: 0.8rem var(--s-4);
  font: inherit;
  border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast) var(--ease-io), box-shadow var(--dur-fast) var(--ease-io);
}

.form input:hover,
.form textarea:hover,
.form select:hover {
  border-color: color-mix(in oklch, var(--primary) 35%, var(--line));
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary) 18%, transparent);
}

.form textarea {
  min-height: 9.5rem;
  resize: vertical;
  padding-top: var(--s-3);
}

.form .btn {
  justify-self: start;
  min-width: 11rem;
}

.form-row {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}

.form-contact {
  margin-top: var(--s-4);
}

.form-contact textarea {
  min-height: 7.5rem;
}

.form-contact > .btn {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}

.contact-layout--page .contact-panel,
.contact-layout--page .cta-panel {
  padding: var(--s-6);
}

.contact-layout--page .cta-panel .form-hint {
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-compact {
  margin-top: var(--s-3);
  gap: var(--s-3);
}

.form-compact label {
  gap: 0.35rem;
  font-size: 0.88rem;
}

.form-compact input,
.form-compact textarea {
  min-height: 2.6rem;
  padding: 0.65rem 0.85rem;
}

.form-compact textarea {
  min-height: 5rem;
}

.form-compact .btn {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  margin-top: 0.15rem;
}

.cta-panel .alert {
  margin-top: var(--s-3);
  margin-bottom: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
}

.form-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

.alert {
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin: var(--s-4) 0 0;
  min-height: var(--btn-h);
  display: flex;
  align-items: center;
}

.alert-success {
  background: color-mix(in oklch, oklch(0.75 0.12 145) 18%, var(--bg));
  color: oklch(0.32 0.08 145);
}

.alert-error {
  background: color-mix(in oklch, oklch(0.65 0.18 25) 16%, var(--bg));
  color: oklch(0.35 0.12 25);
}

.page-hero {
  padding: var(--s-8) 0 var(--s-7);
  background: linear-gradient(180deg, var(--surface), var(--bg));
}

.page-hero .container {
  display: grid;
  gap: 0;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.25rem);
  max-width: 14ch;
  margin-bottom: var(--s-3);
}

.page-hero--about h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.85rem, 5.2vw, 3.75rem);
}

@media (max-width: 420px) {
  .page-hero--about h1 {
    white-space: normal;
  }
}

.page-hero > .container > p,
.page-hero p {
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.page-hero .section-actions {
  margin-top: var(--s-5);
}

.page-hero--split {
  padding: var(--s-6) 0 0;
}

.page-hero--split > .container {
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
}

.page-hero--split + .section.section--flush-top {
  padding-top: 0;
}

.page-hero-split {
  display: grid;
  gap: var(--s-5);
  align-items: center;
}

.page-hero-copy .eyebrow {
  margin-bottom: var(--s-2);
}

.page-hero-copy h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: var(--s-2);
  max-width: none;
  line-height: 1.05;
}

.page-hero-copy h1:not(:has(.page-hero-line)) {
  display: block;
  white-space: nowrap;
  font-size: clamp(1.85rem, 5vw, 3.5rem);
}

.page-hero-line {
  display: block;
  white-space: nowrap;
}

.page-hero-split .section-actions--stack-end {
  margin-top: 0;
  margin-left: 0;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.page-bolgeler .float-wa {
  display: none;
}

@media (min-width: 768px) {
  .page-hero-split {
    grid-template-columns: 1.2fr auto;
    gap: var(--s-7);
    align-items: center;
  }

  .page-hero-split .section-actions--stack-end {
    justify-self: end;
    width: 17.5rem;
    max-width: 17.5rem;
  }
}

.breadcrumbs {
  margin-bottom: var(--s-4);
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  min-height: 1.5rem;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: color-mix(in oklch, var(--muted) 60%, transparent);
}

.breadcrumbs a {
  text-decoration: none;
  color: var(--muted);
}

.breadcrumbs a:hover { color: var(--primary); }

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
}

.service-detail-media {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto var(--section-y);
  overflow: hidden;
  height: clamp(16rem, 42vw, 28rem);
  border-radius: var(--radius-lg);
}

/* Blog / Bilgi Bankası */
.blog-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 100%;
}

.blog-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  height: 100%;
}

.blog-card-body time {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.blog-card-body h2,
.blog-card-body h3 {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
  min-height: calc(1.3em * 2);
}

.blog-card-body h2 a,
.blog-card-body h3 a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
}

.blog-card-body h2 a:hover,
.blog-card-body h3 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  min-height: calc(1.45em * 3);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.blog-card-body .band-link {
  margin-top: auto;
  padding-top: var(--s-2);
}

.article-layout {
  display: grid;
  gap: var(--s-7);
  align-items: start;
}

.article-body {
  max-width: 46rem;
}

.article-lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.article-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: var(--s-7);
}

.article-body p {
  color: color-mix(in oklch, var(--ink) 88%, var(--muted));
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.site-footer {
  margin-top: var(--section-y);
}

.footer-visual {
  position: relative;
  min-height: 22rem;
  color: var(--on-dark);
  overflow: hidden;
}

.footer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  min-height: 22rem;
}

.footer-visual-overlay {
  position: relative;
  z-index: 1;
  min-height: 22rem;
  display: flex;
  align-items: center;
  padding: var(--s-8) 0;
  background: linear-gradient(
    90deg,
    color-mix(in oklch, var(--dark) 78%, transparent) 0%,
    color-mix(in oklch, var(--dark) 45%, transparent) 55%,
    transparent 100%
  ),
  linear-gradient(
    180deg,
    color-mix(in oklch, var(--dark) 35%, transparent),
    color-mix(in oklch, var(--dark) 55%, transparent)
  );
}

.footer-visual-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-3);
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  padding-top: 0.06em;
  white-space: nowrap;
}

.footer-lead {
  max-width: 40ch;
  color: color-mix(in oklch, var(--on-dark) 85%, transparent);
  margin: 0;
}

.footer-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: var(--gap);
  margin-top: var(--s-2);
  max-width: 28rem;
}

.footer-cta-row .btn {
  width: 100%;
  min-width: 0;
}

.footer-grid {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: var(--s-8) 0;
  display: grid;
  gap: var(--s-7);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 var(--s-3);
}

.footer-copy {
  color: var(--muted);
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-2);
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  min-height: 1.75rem;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: var(--s-4) 0 var(--s-6);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2) var(--s-6);
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

/* Sticky + float */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: var(--sticky-h);
  box-shadow: 0 -8px 24px color-mix(in oklch, var(--dark) 16%, transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  text-decoration: none;
  height: 100%;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.sticky-bar a:hover { color: var(--white); }

.sticky-call { background: var(--accent); }
.sticky-call:hover { background: var(--accent-deep); }
.sticky-wa { background: var(--wa); }

.sticky-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  display: block;
}

.sticky-bar strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.float-wa {
  position: fixed;
  right: var(--gutter);
  bottom: var(--gutter);
  z-index: var(--z-float);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 24px color-mix(in oklch, var(--wa) 40%, transparent);
  transition: transform var(--dur-fast) var(--ease-io);
}

.float-wa:hover {
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
}

.float-wa svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.to-top {
  position: fixed;
  right: var(--gutter);
  bottom: calc(var(--gutter) + 3.25rem + var(--s-3));
  z-index: var(--z-float);
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
  font-size: 1.1rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

@keyframes revealX {
  to { clip-path: inset(0 0 0 0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@keyframes accentPulse {
  0%, 100% { box-shadow: 0 8px 20px color-mix(in oklch, var(--accent) 28%, transparent); }
  50% { box-shadow: 0 10px 28px color-mix(in oklch, var(--accent) 45%, transparent); }
}

@media (max-width: 767px) {
  .page-hero .section-actions:not(.section-actions--equal) .btn-accent {
    flex: 1 1 100%;
  }

  .page-hero .section-actions:not(.section-actions--equal) .btn:not(.btn-accent),
  .section-actions:not(.section-actions--equal) .btn {
    flex: 1 1 calc(50% - (var(--gap) / 2));
  }

  .section-actions--equal .btn {
    min-height: var(--btn-h);
    font-size: 0.92rem;
  }

  .btn {
    white-space: normal;
    text-align: center;
    height: auto;
    min-height: var(--btn-h);
    padding-block: 0.7rem;
    line-height: 1.15;
  }

  .hero-actions .btn,
  .footer-cta-row .btn {
    height: var(--btn-h);
    min-height: var(--btn-h);
    padding-block: 0;
    white-space: nowrap;
  }

  .header-actions .btn {
    height: 2.5rem;
    min-height: 2.5rem;
    padding-block: 0;
    white-space: nowrap;
  }
}

@media (min-width: 640px) {
  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2) var(--s-5);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .neighborhood-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }

  .nav-desktop { display: flex; }
  .btn-ghost { display: inline-flex; }
  .nav-toggle { display: none; }

  .header-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-2);
    min-width: 17.5rem;
  }

  .header-cta-btn {
    width: 100%;
    min-width: 0;
    height: 2.5rem;
    min-height: 2.5rem;
    padding-inline: 0.75rem;
    gap: 0.4rem;
    border: 1px solid transparent;
  }

  .header-cta .btn-wa {
    background: var(--wa);
    color: var(--white);
    box-shadow: 0 6px 16px color-mix(in oklch, var(--wa) 28%, transparent);
  }

  .header-cta .btn-wa:hover {
    color: var(--white);
    filter: brightness(1.05);
    border-color: transparent;
  }

  .header-cta .btn-primary {
    background: var(--primary);
    color: var(--white);
  }

  .header-cta .btn-primary:hover {
    background: var(--primary-deep);
    color: var(--white);
    border-color: transparent;
  }

  .header-cta-label {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }

  .header-cta .shop-icon {
    display: none;
  }

  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
  }

  .stats-band {
    padding: var(--s-6) 0;
  }

  .stat {
    min-height: 5.25rem;
    padding: var(--s-5) var(--s-3);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items: stretch;
  }

  .service-band,
  .value-banner {
    grid-template-columns: 1fr 1fr;
    min-height: 22rem;
  }

  .service-band:nth-child(even) {
    grid-template-columns: 1fr 1fr;
  }

  .service-band:nth-child(even) img { order: 2; }

  .value-banner--flip .value-banner-media {
    order: 2;
  }

  .service-band-body,
  .value-banner-body {
    position: relative;
    background: linear-gradient(155deg, var(--dark) 0%, var(--primary-deep) 100%);
    padding: clamp(1.75rem, 3vw, 3rem);
    justify-content: center;
  }

  .service-band img,
  .value-banner-media,
  .value-banner-media img {
    min-height: 22rem;
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
  }

  .faq-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--s-8);
    align-items: start;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .district-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .neighborhood-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-layout {
    grid-template-columns: 1.35fr 0.75fr;
    gap: var(--s-8);
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: var(--s-7);
  }

  .sticky-bar { display: none; }
  .float-wa,
  .to-top { display: inline-flex; }
}

@media (min-width: 1024px) {
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .neighborhood-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }
}

@media (min-width: 1200px) {
  .neighborhood-grid a strong {
    font-size: 1rem;
  }
}

.section--surface {
  background: var(--surface);
}

/* —— Shop / Mağaza —— */
.shop-section {
  padding-top: var(--s-4);
  padding-bottom: var(--section-y);
}

.shop-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--s-7);
  min-height: clamp(11rem, 28vw, 16rem);
  background: var(--primary-deep);
}

.shop-banner img {
  width: 100%;
  height: clamp(11rem, 28vw, 16rem);
  object-fit: cover;
  display: block;
}

.shop-banner-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  max-width: 34rem;
  color: var(--on-dark);
  background: linear-gradient(
    90deg,
    color-mix(in oklch, var(--dark) 78%, transparent) 0%,
    color-mix(in oklch, var(--dark) 45%, transparent) 55%,
    transparent 100%
  );
}

.shop-banner-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--accent) 85%, white);
}

.shop-banner-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--white);
}

.shop-banner-copy > p:last-child {
  margin: 0.55rem 0 0;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: color-mix(in oklch, var(--on-dark) 88%, transparent);
  max-width: 28rem;
}

.shop-layout {
  display: grid;
  gap: var(--s-7);
}

.shop-sidebar-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 var(--s-4);
}

.shop-cat-nav {
  display: grid;
  gap: 0.35rem;
}

.shop-cat-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  padding: 0.7rem 0.85rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--surface);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.shop-cat-nav a span {
  font-size: 0.85rem;
  color: var(--muted);
}

.shop-cat-nav a:hover,
.shop-cat-nav a.is-active {
  border-color: color-mix(in oklch, var(--primary) 35%, var(--line));
  background: color-mix(in oklch, var(--primary) 8%, var(--white));
  color: var(--primary-deep);
}

.shop-sidebar-note {
  margin-top: var(--s-6);
  padding: var(--s-5);
  background: linear-gradient(160deg, color-mix(in oklch, var(--primary) 10%, var(--surface)), var(--surface));
  border-radius: var(--radius);
}

.shop-sidebar-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.shop-sidebar-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.shop-toolbar {
  display: grid;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}

.shop-search input,
.shop-sort select {
  width: 100%;
  height: var(--btn-h);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 0.9rem;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

.shop-result-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--line);
}

.shop-result-meta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
}

.shop-result-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-4);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  text-decoration: none;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-med) var(--ease-out);
}

.product-card:hover .product-card-media img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.25rem 0.5rem;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 0.15rem 0;
  flex: 1;
}

.product-cat {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.product-card-body h3 a {
  text-decoration: none;
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.product-price strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.product-price s {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-price--lg strong {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.product-card-actions {
  display: grid;
  margin-top: auto;
  padding-top: 0.65rem;
}

.product-card-actions .btn {
  justify-content: center;
  width: 100%;
  min-height: 2.55rem;
  padding-inline: 0.55rem;
  font-size: 0.88rem;
}

.product-detail {
  padding-top: var(--s-4);
}

.product-detail-grid {
  display: grid;
  gap: var(--s-7);
  margin-top: var(--s-4);
}

.product-detail-media {
  background: var(--surface);
  border: 1px solid color-mix(in oklch, var(--line) 90%, var(--primary) 10%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(28rem, 72vw);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  max-height: min(32rem, 85vw);
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--surface);
}

.product-detail-info h1 {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.product-sku {
  margin: 0 0 var(--s-4);
  color: var(--muted);
  font-size: 0.92rem;
}

.product-lead {
  margin: var(--s-4) 0;
  color: var(--muted);
  max-width: 36rem;
}

.product-features {
  margin: 0 0 var(--s-5);
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.product-features li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink);
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 1px;
  background: var(--accent);
}

.product-note {
  margin: var(--s-4) 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.shop-grid--related {
  margin-top: var(--s-5);
}

@media (min-width: 720px) {
  .shop-toolbar {
    grid-template-columns: 1fr minmax(11rem, 14rem) auto;
    align-items: center;
  }

  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--s-5);
  }

  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: var(--s-8);
  }

  .product-detail-media {
    min-height: 100%;
  }

  .product-detail-media img {
    max-height: none;
    min-height: 100%;
  }
}

@media (min-width: 960px) {
  .shop-layout {
    grid-template-columns: 15.5rem minmax(0, 1fr);
    gap: var(--s-8);
    align-items: start;
  }

  .shop-sidebar {
    position: sticky;
    top: calc(var(--header-h) + var(--s-4));
  }

  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
}

.shop-page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.shop-page-btn,
.shop-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  min-width: 2.5rem;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}

.shop-page-btn:hover,
.shop-page-num:hover {
  border-color: color-mix(in oklch, var(--primary) 40%, var(--line));
  color: var(--primary-deep);
}

.shop-page-num.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.shop-page-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .js .stats-strip .stat {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-chip,
  .hero-brand,
  .hero h1,
  .hero-lead,
  .hero-actions,
  .hero-trust {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
