:root {
  --ink: #0a0a0a;
  --ink-soft: #3a3a3c;
  --paper: #f5f5f7;
  --paper-deep: #e8e8ed;
  --white: #ffffff;
  --blue: #ff5c00;
  --blue-dark: #c74700;
  --orange: #ff5c00;
  --orange-text: #c14300;
  --acid: #ff5c00;
  --line: rgba(0, 0, 0, 0.12);
  --line-strong: rgba(0, 0, 0, 0.22);
  --muted: #6e6e73;
  --serif: ui-serif, "New York", "Iowan Old Style", "Baskerville", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  --content: 760px;
  --wide: 1180px;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.055);
  --shadow-card:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 2px 5px rgba(10, 10, 10, 0.035),
    0 14px 34px rgba(10, 10, 10, 0.07),
    0 34px 72px rgba(10, 10, 10, 0.035);
  --shadow-card-hover:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 4px 10px rgba(10, 10, 10, 0.055),
    0 22px 48px rgba(10, 10, 10, 0.11),
    0 42px 84px rgba(10, 10, 10, 0.055);
  --shadow-panel:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 3px 8px rgba(10, 10, 10, 0.04),
    0 24px 68px rgba(10, 10, 10, 0.09);
  --shadow-dark-card:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 5px 14px rgba(0, 0, 0, 0.2),
    0 26px 64px rgba(0, 0, 0, 0.3);
}

html[data-theme="light"] { color-scheme: light; }
html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f5f5f7;
  --ink-soft: #c8c8ce;
  --paper: #171719;
  --paper-deep: #232326;
  --white: #0d0d0f;
  --blue-dark: #ff9a62;
  --orange-text: #ff8a4d;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.26);
  --muted: #aaaab2;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.24);
  --shadow-card:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 3px 9px rgba(0, 0, 0, 0.22),
    0 18px 44px rgba(0, 0, 0, 0.38);
  --shadow-card-hover:
    inset 0 1px 0 rgba(255, 255, 255, 0.085),
    0 6px 16px rgba(0, 0, 0, 0.28),
    0 28px 68px rgba(0, 0, 0, 0.5);
  --shadow-panel:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 5px 14px rgba(0, 0, 0, 0.26),
    0 30px 78px rgba(0, 0, 0, 0.44);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before { display: none; }
a { color: var(--blue-dark); text-underline-offset: 4px; text-decoration-thickness: 1px; }
a:hover { color: var(--orange-text); }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  transform: translateY(-170%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}
.site-header[data-scrolled] { box-shadow: 0 7px 24px rgba(0, 0, 0, 0.04); }
.reading-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: var(--reading-progress, 0);
  height: 2px;
  background: var(--orange);
  transition: width 120ms linear;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 48px), var(--wide));
  min-height: 68px;
  margin: auto;
  transition: min-height 180ms ease;
}
.site-header[data-scrolled] .nav { min-height: 60px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.brand-logo {
  display: grid;
  width: 112px;
  height: 42px;
  place-items: center;
  background: transparent;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-separator {
  width: 1px;
  height: 22px;
  background: var(--line-strong);
  transform: translateY(2px);
}
.brand-blog {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1;
  transform: translateY(4px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 560;
  text-decoration: none;
  transition: color 180ms ease;
}
.nav-links a:hover { color: var(--orange-text); }
.nav-cta, .button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white !important;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.button:hover, .nav-cta:hover {
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-1px);
}
.button.secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink) !important;
}
.button.secondary:hover {
  border-color: var(--ink);
  background: var(--paper);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}
.theme-nav-item {
  display: flex;
  align-items: center;
}
.theme-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}
.theme-toggle:hover {
  border-color: var(--orange);
  color: var(--orange-text);
  transform: translateY(-1px);
}
.theme-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.theme-icon-sun { display: none; }
html[data-theme="dark"] .theme-icon-moon { display: none; }
html[data-theme="dark"] .theme-icon-sun { display: block; }
.theme-toggle-label { display: none; }

.shell { width: min(calc(100% - 48px), var(--wide)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--orange-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}
.display-title {
  max-width: 1040px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 7.4vw, 94px);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}
.display-title em {
  color: var(--orange-text);
  font-style: normal;
  font-weight: inherit;
}
.lead {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.012em;
  line-height: 1.5;
}
.home-hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 68px));
  padding: clamp(92px, 11vw, 142px) 0 86px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  place-items: center;
}
.hero-ripple-stage,
.hero-ripple-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home-hero[data-ripple-hero] {
  background: #090806;
  color: var(--white);
}
.hero-ripple-stage {
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--hero-pointer-x) var(--hero-pointer-y), rgba(255, 92, 0, 0.32), transparent 27%),
    radial-gradient(circle at 82% 18%, rgba(255, 92, 0, 0.16), transparent 29%),
    linear-gradient(145deg, #080706 0%, #1c0b03 54%, #070707 100%);
}
.hero-ripple-stage::before {
  position: absolute;
  inset: -18%;
  background:
    linear-gradient(rgba(255, 92, 0, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 92, 0, 0.26) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  opacity: 0.66;
  mask-image: radial-gradient(ellipse at center, black 7%, transparent 72%);
  transform: perspective(720px) rotateX(58deg) scale(1.45) translateY(14%);
  transform-origin: center 72%;
  transition: opacity 500ms ease;
}
.hero-ripple-stage canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: saturate(1.35) contrast(1.08) brightness(1.48);
  mix-blend-mode: screen;
  transition: opacity 750ms ease;
}
.hero-ripple-stage.is-ready canvas { opacity: 1; }
.hero-ripple-stage.is-ready::before { opacity: 0.16; }
.hero-ripple-scrim {
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(7, 7, 7, 0.74) 0%, rgba(7, 7, 7, 0.58) 34%, rgba(7, 7, 7, 0.22) 65%, rgba(7, 7, 7, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.14), rgba(7, 7, 7, 0.46));
}
.home-hero[data-ripple-hero] .display-title {
  color: #fff;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.38);
}
.home-hero[data-ripple-hero] .display-title em { color: #ff6410; }
.home-hero[data-ripple-hero] .eyebrow { color: #ff7a32; }
.home-hero[data-ripple-hero] .lead {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.64);
}
.home-hero[data-ripple-hero] .hero-whatsapp {
  border-color: #fff;
  background: #fff;
  color: #0a0a0a !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}
.home-hero[data-ripple-hero] .hero-whatsapp:hover {
  border-color: #ff6410;
  background: #ff6410;
  color: #fff !important;
}
.home-hero[data-ripple-hero] .button.secondary {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(8, 8, 8, 0.44);
  color: #fff !important;
  backdrop-filter: blur(12px);
}
.home-hero[data-ripple-hero] .button.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.home-hero[data-ripple-hero] .hero-topic-links a {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(7, 7, 7, 0.54);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}
.home-hero[data-ripple-hero] .hero-topic-links a:hover {
  border-color: #ff6a19;
  color: #fff;
}
.home-hero::after {
  display: none;
}
.home-hero[data-ripple-hero]::after { display: none; }
.home-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1040px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.home-hero .eyebrow { justify-content: center; }
.home-hero .display-title {
  max-width: 980px;
  font-size: clamp(62px, 8vw, 108px);
  line-height: 0.92;
}
.home-hero .display-title em {
  display: block;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 0.93em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.05em;
}
.home-hero .lead {
  max-width: 700px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.45fr);
  gap: 76px;
  align-items: end;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.home-hero .hero-whatsapp {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white) !important;
}
.home-hero .hero-whatsapp:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #0a0a0a !important;
}
.hero-phone-inline {
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
  text-decoration: none;
}
.hero-phone-inline:hover { color: var(--orange-text); }
.hero-topic-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-topic-links a {
  position: relative;
  padding: 0 17px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.hero-topic-links a:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translate(50%, -50%);
}
.hero-topic-links a:hover { color: var(--ink); }
.hero-index {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}
.hero-index .number {
  display: block;
  margin-bottom: 56px;
  color: var(--orange-text);
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 70px);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.9;
}
.hero-index p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.section { padding: 112px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 50px;
  text-align: center;
}
.section-title {
  max-width: 860px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.8vw, 60px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
}
.section-note { max-width: 640px; margin: 0; color: var(--muted); font-size: 15px; text-align: center; }
.section-dark .section-note { color: #a1a1a6; }
.section-dark .section-title { color: var(--white); }

.answer-engine {
  padding-top: 86px;
  padding-bottom: 86px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.answer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}
.answer-grid > div {
  position: relative;
  display: flex;
  grid-column: span 2;
  min-height: 230px;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  flex-direction: column;
  text-align: center;
}
.answer-grid dt {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 660;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.answer-grid dd { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.answer-grid > .answer-principle {
  grid-column: span 3;
  min-height: 250px;
  padding: 42px clamp(30px, 5vw, 66px);
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.answer-grid .answer-principle dt {
  margin-bottom: 18px;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 42px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.answer-grid .answer-principle dd {
  max-width: 54ch;
  margin-inline: auto;
  color: inherit;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.74;
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.cluster-card,
.cluster-card:nth-child(n) {
  position: relative;
  grid-column: auto;
  min-height: 360px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #2c2c2e;
  border-radius: var(--radius);
  background: #171717;
  color: var(--white);
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.cluster-card:nth-child(n) .index { color: #6e6e73; }
.cluster-card:hover {
  border-color: var(--orange);
  background: #1e1e1e;
  color: var(--white);
  transform: translateY(-3px);
}
.cluster-card .index {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.04em;
}
.cluster-card h3 {
  max-width: 320px;
  margin: 120px 0 14px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.cluster-card p { max-width: 360px; margin: 0; color: #a1a1a6; font-size: 14px; }
.cluster-card .arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #3a3a3c;
  border-radius: 50%;
  color: var(--orange-text);
  font-size: 19px;
}

/* Home topic chooser: intentionally almost monochrome. */
#konular.section-dark {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
#konular .section-title { color: var(--ink); }
#konular .section-note { color: var(--muted); }
#konular .cluster-card,
#konular .cluster-card:nth-child(n) {
  display: flex;
  min-height: 0;
  padding: 0;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  flex-direction: column;
  text-align: center;
}
.cluster-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.cluster-card-media picture { display: block; width: 100%; height: 100%; }
.cluster-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
#konular .cluster-card:hover .cluster-card-media img { transform: scale(1.025); }
.cluster-card-copy {
  display: flex;
  min-height: 176px;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  flex-direction: column;
}
#konular .cluster-card:hover {
  border-color: var(--ink);
  background: #fafafa;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
#konular .cluster-card .index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  min-width: 42px;
  height: 42px;
  padding-inline: 10px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.86);
  color: white;
  font-size: 13px;
  backdrop-filter: blur(10px);
}
#konular .cluster-card h3 {
  margin: 0 0 13px;
  margin-inline: auto;
  color: var(--ink);
  font-size: 25px;
}
#konular .cluster-card p {
  display: -webkit-box;
  margin-inline: auto;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
#konular .cluster-card .arrow {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 10, 0.86);
  color: white;
  backdrop-filter: blur(10px);
}
#konular .cluster-card:hover .arrow {
  border-color: var(--orange);
  color: var(--orange-text);
}

.decision-section {
  --decision-black: #080808;
  --decision-panel: #121214;
  --decision-paper: #f4f2ed;
  --decision-white: #ffffff;
  position: relative;
  isolation: isolate;
  scroll-margin-top: 72px;
  padding-block: clamp(88px, 10vw, 132px);
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(rgba(8, 8, 8, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.08) 1px, transparent 1px),
    #ff5c00;
  background-size: 34px 34px;
  color: #0a0a0a;
}
.decision-section::before {
  position: absolute;
  top: -280px;
  left: 50%;
  z-index: -1;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(8, 8, 8, 0.18);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}
.decision-section .shell { position: relative; }
.decision-section .decision-frame {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 44px;
  background: var(--decision-black);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.18) inset,
    0 42px 110px rgba(8, 8, 8, 0.34),
    0 14px 34px rgba(8, 8, 8, 0.2);
}
.decision-intro {
  position: relative;
  display: grid;
  min-height: 480px;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
  padding: clamp(54px, 7vw, 82px) clamp(42px, 7vw, 78px) 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 92, 0, 0.2), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--decision-black);
  background-size: auto, 42px 42px, 42px 42px, auto;
  color: #fff;
}
.decision-intro::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 92, 0, 0.72), transparent);
  content: "";
}
.decision-intro .eyebrow {
  width: fit-content;
  margin-bottom: 32px;
  color: #ff7a2d;
}
.decision-intro .eyebrow::before { background: var(--orange); }
.decision-intro h2 {
  max-width: 10.5ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.4vw, 88px);
  font-weight: 640;
  letter-spacing: -0.072em;
  line-height: 0.9;
  text-wrap: balance;
}
.decision-intro h2 em {
  display: block;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 0.9em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.07em;
}
.decision-intro-copy {
  max-width: 48ch;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.7;
}
.decision-status {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 0;
}
.decision-status-copy {
  z-index: 2;
  display: flex;
  grid-area: 1 / 1;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  flex-direction: column;
  text-align: center;
}
.decision-status-copy strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 38px;
  font-style: italic;
  font-variant-numeric: oldstyle-nums;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}
.decision-progress-track {
  --decision-progress: 0%;
  position: relative;
  display: block;
  width: 188px;
  height: 188px;
  grid-area: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: conic-gradient(
    var(--orange) 0 var(--decision-progress),
    rgba(255, 255, 255, 0.13) var(--decision-progress) 100%
  );
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.025),
    0 26px 54px rgba(0, 0, 0, 0.28);
}
.decision-progress-track i {
  position: absolute;
  inset: 10px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 34%, rgba(255, 92, 0, 0.13), transparent 42%),
    var(--decision-panel);
}
.decision-meta {
  display: flex;
  grid-area: 2 / 1;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  list-style: none;
}
.decision-meta li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}
.decision-workspace {
  min-width: 0;
  padding: 0 28px 28px;
  background: var(--decision-black);
}
.decision-desk {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.decision-desk fieldset {
  display: flex;
  min-width: 0;
  min-height: 360px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 26px;
  background: var(--decision-paper);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 44px rgba(0, 0, 0, 0.16);
  flex-direction: column;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.decision-desk fieldset.is-complete {
  border-color: rgba(255, 92, 0, 0.72);
  box-shadow:
    inset 0 4px 0 var(--orange),
    0 24px 54px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
.decision-desk legend {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 18px;
  padding: 0 0 30px;
  color: #0a0a0a;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.04em;
  line-height: 1.05;
  flex-direction: column;
  text-align: center;
}
.decision-desk legend b {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 5px 10px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: var(--decision-black);
  color: #fff;
  font-weight: 650;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.decision-desk legend span {
  width: 100%;
  color: #d94e00;
  font-size: 38px;
  line-height: 0.8;
  text-align: center;
}
.decision-desk fieldset.is-complete legend b::after {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-left: 9px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #0a0a0a;
  content: "✓";
  font-size: 11px;
  vertical-align: 3px;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
}
.choice-grid label { position: relative; cursor: pointer; }
.choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.choice-grid label span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: flex-start;
  padding: 11px 14px;
  border: 1px solid rgba(8, 8, 8, 0.15);
  border-radius: 14px;
  background: #fff;
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 630;
  line-height: 1.25;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.choice-grid label:hover span {
  border-color: rgba(8, 8, 8, 0.48);
  background: #fff;
  box-shadow: 0 9px 22px rgba(8, 8, 8, 0.08);
  transform: translateY(-2px);
}
.choice-grid label span::before {
  display: grid;
  width: 24px;
  height: 24px;
  margin-right: 11px;
  place-items: center;
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 50%;
  background: transparent;
  content: "";
  flex: 0 0 auto;
}
.choice-grid input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }
.choice-grid input:checked + span {
  border-color: #0a0a0a;
  background: #0a0a0a;
  color: #fff;
  box-shadow:
    inset 4px 0 0 var(--orange),
    0 12px 26px rgba(8, 8, 8, 0.16);
  transform: translateY(-2px);
}
.choice-grid input:checked + span::before {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: inset 0 0 0 6px #0a0a0a;
}
.decision-form-footer {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 2px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: var(--decision-panel);
}
#rehber-bulucu .decision-submit {
  min-width: 218px;
  justify-content: space-between;
  border-color: var(--orange);
  background: var(--orange);
  color: #0a0a0a !important;
  flex: 0 0 auto;
  box-shadow: 0 14px 32px rgba(255, 92, 0, 0.22);
}
#rehber-bulucu .decision-submit:hover {
  border-color: #fff;
  background: #fff;
  color: #0a0a0a !important;
  transform: translateY(-2px);
}
#rehber-bulucu .decision-submit span { color: #0a0a0a; transition: color 160ms ease; }
.form-hint {
  margin: 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.5;
}
.decision-result {
  scroll-margin-top: 110px;
  margin-top: 12px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(8, 8, 8, 0.14);
  border-radius: 28px;
  background: var(--decision-paper);
  color: #0a0a0a;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.decision-result[hidden] { display: none; }
.decision-result::before {
  display: block;
  margin-bottom: 14px;
  color: var(--orange-text);
  content: "KİŞİSEL OKUMA ROTASI";
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.15em;
}
.decision-result h3 {
  margin: 0 0 9px;
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 50px);
  font-weight: 640;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.decision-result p { max-width: 760px; color: #66666b; }
.decision-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  counter-reset: route;
  list-style: none;
}
.decision-links a {
  display: block;
  height: 100%;
  padding: 20px;
  border: 1px solid rgba(8, 8, 8, 0.14);
  border-radius: 16px;
  background: #fff;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 620;
  line-height: 1.35;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.decision-links a::before {
  display: block;
  margin-bottom: 20px;
  color: var(--orange-text);
  counter-increment: route;
  content: "0" counter(route);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 650;
}
.decision-links a:hover {
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(8, 8, 8, 0.1);
  transform: translateY(-3px);
}
.decision-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.guide-library { border-top: 1px solid var(--line); background: var(--paper); }
.library-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 36px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}
.search-field { flex: 1; }
.search-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 18px 0 44px;
  border: 0;
  border-radius: 12px;
  background:
    linear-gradient(45deg, transparent 47%, #8e8e93 48% 52%, transparent 53%) 25px 28px / 7px 7px no-repeat,
    radial-gradient(circle, transparent 47%, #8e8e93 50% 60%, transparent 63%) 15px 13px / 17px 17px no-repeat,
    var(--paper);
  color: var(--ink);
  outline: 0;
}
.search-field input:focus { box-shadow: inset 0 0 0 2px var(--orange); }
.search-field input::placeholder { color: #8e8e93; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chips button, .article-tools button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 620;
}
.filter-chips button:hover, .article-tools button:hover { color: var(--ink); background: var(--paper); }
.filter-chips button.is-active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.library-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.library-grid [data-guide-card][hidden] { display: none; }
.empty-state {
  margin: 0 0 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (min-width: 1041px) {
  .library-grid > .article-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}
.article-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.article-card:hover {
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}
.article-card picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper);
}
.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.article-card:hover img { transform: scale(1.018); }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.card-meta span:first-child { color: var(--orange-text); }
.article-card h3 {
  min-height: 2.18em;
  margin: 18px 0 12px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 630;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
}
.article-card .card-body { text-align: center; }
.article-card .card-meta { justify-content: center; }
.article-card h3 a { color: var(--ink); text-decoration: none; }
.article-card p { margin-top: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.card-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}
.card-link:hover { color: var(--orange-text); }

.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.project-card picture { aspect-ratio: 1; }
.project-card h3 { font-size: 30px; }
.project-card-links {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 16px;
  margin-top: auto;
}
.project-card-links .card-link { margin-top: 0; }
.external-project-link {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
  text-decoration: none;
}
.external-project-link:hover { color: var(--orange-text); }
.project-home-section { border-top: 1px solid var(--line); background: var(--white); }
.project-inline {
  margin: 54px 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  background: var(--paper);
}
.project-inline::after { display: none; }
.project-inline > span, .project-source .label {
  display: block;
  margin-bottom: 9px;
  color: var(--orange-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.project-inline h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 630;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.project-inline p { max-width: 650px; margin: 0 0 14px; color: var(--ink-soft); }
.project-inline a { color: var(--ink); font-weight: 650; }
.project-inline a:hover { color: var(--orange-text); }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #303033;
  border-bottom: 1px solid #303033;
}
.proof-strip > * { min-height: 170px; padding: 28px 24px; border-right: 1px solid #303033; }
.proof-strip > *:last-child { border-right: 0; }
.proof-strip strong {
  display: block;
  margin-bottom: 14px;
  color: var(--orange-text);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}
.proof-strip b { color: var(--white); }
.proof-strip p { color: #8e8e93; font-size: 13px; }
.proof-intro { background: transparent; }

/* A shared editorial numeral signature across navigation, steps and proof. */
.hero-index .number,
.cluster-card .index,
.decision-desk legend span,
.decision-links a::before,
.proof-strip strong {
  font-family: var(--serif);
  font-style: italic;
  font-variant-numeric: oldstyle-nums;
  font-feature-settings: "onum" 1;
  font-weight: 500;
  letter-spacing: -0.085em;
}
#konular .cluster-card .index {
  border-color: rgba(255, 92, 0, 0.5);
  box-shadow: 3px 3px 0 rgba(255, 92, 0, 0.72);
  font-size: 15px;
}
.decision-links a::before { font-size: 22px; }

.breadcrumb { margin-bottom: 26px; color: var(--muted); font-size: 12px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumb li:not(:last-child)::after { margin-left: 8px; content: " /"; color: #c7c7cc; }
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-text); }
.article-hero {
  padding: 78px 0 72px;
  background: var(--white);
}
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.72fr);
  gap: 76px;
  align-items: center;
}
.article-hero h1 {
  max-width: 800px;
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(48px, 5.8vw, 72px);
  font-weight: 680;
  letter-spacing: -0.06em;
  line-height: 0.99;
}
.article-hero-grid > div:first-child {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.article-hero .article-deck { text-align: center; }
.article-hero .article-byline,
.article-hero .article-tools { justify-content: center; }
.article-deck { max-width: 720px; color: var(--ink-soft); font-size: 18px; line-height: 1.55; }
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
}
.article-byline a { color: var(--ink); font-weight: 620; text-decoration: none; }
.article-byline a:hover { color: var(--orange-text); }
.article-tools { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 18px; }
.article-tools button {
  min-height: 38px;
  padding-inline: 12px;
  border-color: var(--line);
  background: var(--white);
}
.tool-status { min-height: 1.5em; margin-left: 4px; color: var(--orange-text); font-size: 12px; font-weight: 620; }
.article-cover {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.article-cover img { width: 100%; }
.project-cover picture { display: block; aspect-ratio: 1; }
.project-cover img { height: 100%; object-fit: cover; }

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, var(--content));
  justify-content: center;
  gap: 72px;
  padding: 72px 24px 120px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.article-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 126px);
  overflow: auto;
}
.article-toc strong {
  display: block;
  margin-bottom: 17px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.article-toc ol { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.article-toc a {
  display: block;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease;
}
.article-toc a:hover, .article-toc a[aria-current] {
  border-color: var(--orange);
  color: var(--ink);
}
.article-main { min-width: 0; }
.quick-answer, .audience-box, .method-box {
  margin-bottom: 20px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.quick-answer { border-left: 3px solid var(--orange); background: var(--white); box-shadow: var(--shadow-soft); }
.quick-answer .label, .audience-box .label, .method-box .label {
  display: block;
  margin-bottom: 11px;
  color: var(--orange-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.quick-answer h2, .audience-box h2 { margin: 0 0 9px; font-size: 24px; letter-spacing: -0.03em; }
.quick-answer p:last-child, .method-box p:last-child { margin-bottom: 0; }
.audience-box ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 14px;
}
.method-box p { color: var(--muted); font-size: 13px; }
.article-copy { color: #1d1d1f; font-family: var(--sans); }
.article-copy > p, .article-copy > ul, .article-copy > ol, .article-copy > blockquote {
  font-size: 18px;
  line-height: 1.72;
}
.article-copy p { margin: 0 0 25px; }
.article-copy h2 {
  scroll-margin-top: 105px;
  margin: 72px 0 22px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.article-copy h2::before {
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--orange);
  content: "";
}
.article-copy h3 {
  margin: 40px 0 14px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 630;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.article-copy h4 { font-family: var(--display); }
.article-copy ul, .article-copy ol { padding-left: 25px; }
.article-copy li { margin-bottom: 10px; }
.article-copy a { color: var(--ink); font-weight: 620; text-decoration-color: var(--orange-text); }
.article-copy a:hover { color: var(--orange-text); }
.article-copy table {
  width: 100%;
  margin: 36px 0;
  border-collapse: separate;
  border: 1px solid var(--line);
  border-radius: 16px;
  border-spacing: 0;
  overflow: hidden;
  font-size: 13px;
}
.article-copy th, .article-copy td {
  padding: 15px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.article-copy th:last-child, .article-copy td:last-child { border-right: 0; }
.article-copy tr:last-child td { border-bottom: 0; }
.article-copy th { background: var(--paper); color: var(--ink); font-weight: 650; }
.article-copy tr:nth-child(even) td { background: #fbfbfd; }
.article-copy blockquote, .callout {
  margin: 36px 0;
  padding: 26px 28px;
  border: 0;
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--paper);
  color: var(--ink-soft);
}
.callout-title { margin-top: 0; color: var(--ink); font-weight: 650; }
.faq { border-top: 1px solid var(--line); }
.faq-item, .faq details { padding: 21px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { margin-top: 0; }
.faq details summary { cursor: pointer; font-size: 17px; font-weight: 620; }
.faq details p { padding-top: 15px; color: var(--muted); }
.table-wrap { width: 100%; overflow-x: auto; border-radius: 16px; }
.sources { margin-top: 74px; padding-top: 36px; border-top: 1px solid var(--line); }
.sources h2 { margin-top: 0; font-size: 30px; letter-spacing: -0.04em; }
.sources p { color: var(--muted); }
.sources ol { padding-left: 22px; font-size: 13px; }
.sources li { margin-bottom: 12px; }
.sources a { color: var(--ink); overflow-wrap: anywhere; }
.sources a:hover { color: var(--orange-text); }
.article-cta {
  margin-top: 70px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: white;
}
.article-cta h2 {
  max-width: 650px;
  margin: 0 0 13px;
  color: white;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 630;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.article-cta p { color: #a1a1a6; }
.article-cta .button { border-color: var(--orange); background: var(--orange); color: #0a0a0a !important; }
.article-cta .button:hover { border-color: white; background: white; color: var(--ink) !important; }
.article-cta .button.secondary { border-color: #3a3a3c; background: transparent; color: white !important; }
.related-section { padding: 100px 0; border-top: 1px solid var(--line); background: var(--paper); }

.contact-conversion {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 72px;
  padding: 88px 0;
  background: #050505;
  color: #fff;
}
.contact-conversion::before { display: none; }
.contact-conversion-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.contact-conversion-copy { width: 100%; }
.contact-conversion-copy .eyebrow { justify-content: center; color: #ff8a4d; }
.contact-conversion-copy h2 {
  max-width: 820px;
  margin: 0 auto;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1;
}
.contact-conversion-copy h2 em {
  color: #ff6410;
  font-family: var(--display);
  font-style: italic;
}
.contact-conversion-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.65;
}
.contact-conversion-copy ul {
  display: flex;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.contact-conversion-copy li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 650;
}
.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.contact-conversion .contact-channel-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.contact-channel {
  position: relative;
  display: flex;
  min-height: 210px;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid transparent;
  border-radius: 20px;
  color: #0a0a0a;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.contact-conversion .contact-channel {
  min-height: 190px;
  align-items: center;
  padding: 28px 26px;
  text-align: center;
}
.contact-conversion .contact-channel strong { margin-inline: auto; }
.contact-conversion .contact-channel small { width: 100%; justify-content: center; }
.contact-channel:hover {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.2);
}
.contact-channel-index {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-channel strong {
  max-width: 290px;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 640;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.contact-channel small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  font-weight: 680;
}
.contact-channel-phone { background: #ff6410; color: #0a0a0a; }
.contact-channel-whatsapp { border-color: #d8d8d8; background: #fff; color: #0a0a0a; }
.contact-channel-email { border-color: #303033; background: #171719; color: #fff; }

.contact-conversion .contact-channel {
  min-height: 150px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 26px 20px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  text-align: center;
}
.contact-conversion .contact-channel:last-child { border-right: 0; }
.contact-conversion .contact-channel-index { color: rgba(255, 255, 255, 0.44); }
.contact-conversion .contact-channel strong {
  margin-inline: auto;
  color: #fff;
  font-size: clamp(20px, 2vw, 26px);
}
.contact-conversion .contact-channel-phone strong { color: #ff7a2d; }
.contact-conversion .contact-channel small {
  width: auto;
  justify-content: center;
  color: rgba(255, 255, 255, 0.58);
}
.contact-conversion .contact-channel:hover {
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  box-shadow: none;
  transform: none;
}

.contact-page-hero {
  min-height: 700px;
  background:
    linear-gradient(rgba(255, 92, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 92, 0, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 78% 32%, rgba(255, 92, 0, 0.2), transparent 26%),
    var(--white);
  background-size: 44px 44px, 44px 44px, auto, auto;
}
.contact-page-hero .shell {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.contact-page-hero .breadcrumb { align-self: stretch; }
.contact-page-hero .eyebrow { justify-content: center; }
.contact-page-hero h1 { max-width: 1000px; }
.contact-page-hero h1 em { color: var(--orange); font-family: var(--display); font-style: italic; }
.contact-page-hero .lead { max-width: 700px; margin-inline: auto; }
.contact-hero-phone {
  display: grid;
  min-width: min(100%, 520px);
  margin-top: 42px;
  padding: 22px 26px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.contact-hero-phone:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #0a0a0a;
  transform: translateY(-3px);
}
.contact-hero-phone span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-hero-phone strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.055em;
}
.contact-hero-phone small { margin-top: 8px; font-size: 12px; font-weight: 650; }
.contact-page-section { background: var(--paper); }
.contact-page-section .section-head { margin-bottom: 48px; }
.contact-brief-section { background: var(--white); }
.contact-brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}
.contact-brief-copy { position: sticky; top: 110px; }
.contact-brief-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.7; }
.contact-brief-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.contact-brief-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.contact-brief-list > li > span {
  color: var(--orange-text);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}
.contact-brief-list strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.035em;
}
.contact-brief-list p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.contact-final { padding: 94px 0; background: var(--orange); color: #0a0a0a; }
.contact-final-inner { text-align: center; }
.contact-final p {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.contact-final h2 {
  margin: 16px 0 34px;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 86px);
  letter-spacing: -0.065em;
  line-height: 0.95;
}
.contact-final .button { border-color: #0a0a0a; background: #0a0a0a; color: #fff !important; }
.contact-final .button:hover { border-color: #fff; background: #fff; color: #0a0a0a !important; }
.contact-final .button.secondary { border-color: rgba(10, 10, 10, 0.48); background: transparent; color: #0a0a0a !important; }
.contact-final .button.secondary:hover { border-color: #0a0a0a; background: rgba(255, 255, 255, 0.28); }

.project-hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 92, 0, 0.1), transparent 30%),
    var(--white);
}
.project-copy > p:first-child { font-size: 21px; line-height: 1.64; }
.project-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 40px 0;
}
.project-facts > div {
  min-height: 165px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}
.project-facts strong { display: block; margin-bottom: 12px; color: var(--ink); font-size: 13px; }
.project-facts strong::before { display: block; width: 22px; height: 2px; margin-bottom: 13px; background: var(--orange); content: ""; }
.project-facts span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.project-source {
  margin-top: 68px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.project-source h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 630;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.project-live-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 17px 20px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.project-live-link:hover { border-color: var(--orange); background: var(--orange); color: white; }
.project-live-link small { color: #a1a1a6; font-weight: 500; }
.project-live-link:hover small { color: white; }
.project-index-hero { padding-bottom: 92px; border-bottom: 1px solid var(--line); }
.project-index { background: var(--paper); }
.project-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 0 0 52px;
  padding: 30px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}
.project-intro p { margin: 0; color: var(--muted); font-size: 16px; }

.page-hero {
  padding: 108px 0 76px;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 92, 0, 0.08), transparent 32%),
    var(--white);
}
.page-hero .shell {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.page-hero h1 {
  max-width: 930px;
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
}
.page-hero .lead { margin: 0 auto; text-align: center; }
.page-hero .breadcrumb { align-self: center; }
.category-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.content-page {
  max-width: var(--content);
  margin: 0 auto;
  padding: 64px 24px 120px;
  color: #1d1d1f;
  font-size: 18px;
  line-height: 1.72;
}
.content-page h2 {
  margin-top: 62px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.content-page h2::before { display: block; width: 30px; height: 2px; margin-bottom: 17px; background: var(--orange); content: ""; }
.content-page .principle {
  margin: 20px 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.content-page .principle strong {
  display: block;
  margin-bottom: 9px;
  color: var(--orange-text);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.category-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
  margin: 20px 0 80px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.category-intro h2 { margin-top: 0; font-size: 28px; letter-spacing: -0.035em; }
.category-intro > div { text-align: center; }
.category-intro .eyebrow { justify-content: center; }
.category-intro ol { margin: 0; padding-left: 22px; }
.category-intro li { margin-bottom: 14px; }

.site-footer {
  position: relative;
  padding: 0;
  border-top: 1px solid #2a2a2a;
  background: #080808;
  color: rgba(255, 255, 255, 0.58);
}
.footer-inner {
  display: flex;
  min-height: 330px;
  align-items: center;
  padding-block: 48px 24px;
  flex-direction: column;
  text-align: center;
}
.footer-logo {
  display: block;
  width: 136px;
  margin: 0;
  border-radius: 12px;
  outline-offset: 6px;
  transition: opacity 180ms ease, transform 180ms ease;
}
.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-logo:hover {
  opacity: 0.78;
  transform: translateY(-2px);
}
.footer-statement {
  max-width: 540px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.65;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  text-decoration: none;
  transition: color 160ms ease;
}
.site-footer a:hover { color: white; }
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.025em;
}
.footer-contact a:first-child { color: rgba(255, 255, 255, 0.82); }
.footer-bottom {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #242424;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.045em;
}
.footer-bottom span + span::before {
  margin-right: 20px;
  content: "·";
}
.article-whatsapp-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 20px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}
.article-whatsapp-link:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #0a0a0a;
  transform: translateY(-2px);
}
.article-intent-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 34px;
  align-items: center;
  margin: 24px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #090909;
  color: #fff;
}
.article-intent-cta span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-intent-cta h2 {
  margin: 10px 0 8px;
  color: #fff;
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.article-intent-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}
.article-intent-cta > div:last-child {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-direction: column;
}
.article-intent-cta .button {
  width: 100%;
  border-color: var(--orange);
  background: var(--orange);
  color: #0a0a0a !important;
}
.article-intent-cta .text-link { color: rgba(255, 255, 255, 0.78); font-size: 11px; }
html[data-theme="dark"] .article-intent-cta .button {
  border-color: var(--orange);
  background: var(--orange);
  color: #0a0a0a !important;
}
.section-dark .hero-grid {
  justify-items: center;
  text-align: center;
}
.section-dark .hero-grid .lead { margin-inline: auto; }
.contact-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(12, 12, 13, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.contact-float a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 680;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}
.contact-float svg { width: 21px; height: 21px; }
.phone-float { background: #fff; color: #0a0a0a !important; }
.phone-float svg { fill: currentColor; }
.phone-float:hover { background: var(--orange); transform: translateY(-2px); }
.whatsapp-float { background: #171719; }
.whatsapp-float svg { width: 25px; height: 25px; fill: #25d366; }
.whatsapp-float:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.whatsapp-float:hover svg { fill: #fff; }

html[data-theme="dark"] body { background: var(--white); color: var(--ink); }
html[data-theme="dark"] .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(13, 13, 15, 0.86);
}
html[data-theme="dark"] .site-header[data-scrolled] { box-shadow: 0 7px 24px rgba(0, 0, 0, 0.32); }
html[data-theme="dark"] .brand-logo img { filter: brightness(0) invert(1); }
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background: #1a1a1d;
  color: #f5f5f7;
}
html[data-theme="dark"] .nav-links {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(13, 13, 15, 0.98);
}
html[data-theme="dark"] .nav-links a:hover { background: #1a1a1d; }
html[data-theme="dark"] .nav-cta,
html[data-theme="dark"] .button {
  border-color: #f5f5f7;
  background: #f5f5f7;
  color: #0a0a0a !important;
}
html[data-theme="dark"] .nav-cta:hover,
html[data-theme="dark"] .button:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff !important;
}
html[data-theme="dark"] .button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
  color: #f5f5f7 !important;
}
html[data-theme="dark"] .button.secondary:hover {
  border-color: #f5f5f7;
  background: #1d1d20;
}
html[data-theme="dark"] .hero-topic-links a,
html[data-theme="dark"] .hero-index {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(24, 24, 27, 0.86);
}
html[data-theme="dark"] .section-dark {
  background: #050505;
  color: #fff;
}
html[data-theme="dark"] .section-dark .section-title,
html[data-theme="dark"] .proof-strip b { color: #fff; }
html[data-theme="dark"] #konular .cluster-card:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: #1a1a1d;
  color: var(--ink);
}
html[data-theme="dark"] .library-toolbar { background: rgba(24, 24, 27, 0.92); }
html[data-theme="dark"] .article-card:hover { border-color: rgba(255, 255, 255, 0.3); }
html[data-theme="dark"] .article-copy,
html[data-theme="dark"] .content-page { color: var(--ink); }
html[data-theme="dark"] .article-copy tr:nth-child(even) td { background: #1b1b1e; }
html[data-theme="dark"] .article-cta {
  background: #050505;
  color: #fff;
}
html[data-theme="dark"] .article-cta h2 { color: #fff; }
html[data-theme="dark"] .article-cta .button {
  border-color: var(--orange);
  background: var(--orange);
  color: #0a0a0a !important;
}
html[data-theme="dark"] .article-cta .button:hover {
  border-color: #fff;
  background: #fff;
  color: #0a0a0a !important;
}
html[data-theme="dark"] .article-cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff !important;
}
html[data-theme="dark"] .contact-final .button.secondary {
  border-color: rgba(10, 10, 10, 0.48);
  background: transparent;
  color: #0a0a0a !important;
}
html[data-theme="dark"] .contact-final .button.secondary:hover {
  border-color: #0a0a0a;
  background: rgba(255, 255, 255, 0.28);
  color: #0a0a0a !important;
}
html[data-theme="dark"] .project-live-link {
  border-color: #f5f5f7;
  background: #f5f5f7;
  color: #0a0a0a;
}
html[data-theme="dark"] .project-live-link small { color: #555; }

/* Centered monochrome article system.
   Article pages deliberately keep a black hero and a white reading canvas in
   both themes so hierarchy and long-form contrast stay predictable. */
.article-page .article-hero {
  padding: clamp(68px, 9vw, 112px) 0 82px;
  border-bottom: 1px solid #242424;
  background: #050505;
  color: #fff;
}
.article-page .article-hero .shell { width: min(calc(100% - 48px), 1040px); }
.article-page .article-hero .breadcrumb {
  margin-bottom: 38px;
  color: #8e8e93;
  text-align: center;
}
.article-page .article-hero .breadcrumb ol { justify-content: center; }
.article-page .article-hero .breadcrumb li:not(:last-child)::after { color: #555; }
.article-page .article-hero-grid {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  gap: 46px;
}
.article-page .article-hero h1 {
  max-width: 19ch;
  margin-inline: auto;
  color: #fff;
  hyphens: auto;
  text-align: center;
  text-wrap: balance;
}
.article-page .article-hero .eyebrow {
  justify-content: center;
  color: #fff;
}
.article-page .article-hero .article-deck {
  margin-inline: auto;
  color: #c7c7cc;
}
.article-page .article-hero .article-byline { color: #9d9da3; }
.article-page .article-hero .article-byline a { color: #fff; }
.article-page .article-hero .article-tools button {
  border-color: #3a3a3c;
  background: #050505;
  color: #f5f5f7;
}
.article-page .article-hero .article-tools button:hover {
  border-color: #fff;
  background: #fff;
  color: #050505;
}
.article-page .article-whatsapp-link {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #666;
}
.article-page .article-whatsapp-link:hover {
  color: #fff;
  text-decoration-color: #fff;
}
.article-page .article-cover {
  width: min(100%, 860px);
  margin-inline: auto;
  border-color: #2d2d2f;
  background: #f5f1ea;
  box-shadow: none;
}
.article-page .article-hero-visual {
  width: min(100%, 1040px);
  margin: 0 auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: #050505;
}
.article-page .article-hero-visual picture {
  display: block;
  overflow: hidden;
  border: 1px solid #242427;
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background: #050505;
}
.article-page .article-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-page .article-hero-visual figcaption {
  display: flex;
  max-width: 780px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 0;
  color: #8e8e93;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}
.article-page .article-hero-visual figcaption::before {
  width: 22px;
  height: 1px;
  flex: 0 0 auto;
  background: #ff5c00;
  content: "";
}
.article-page .article-hero-visual-fallback picture { background: #f5f1ea; }

.article-page .article-layout {
  grid-template-columns: minmax(0, 820px);
  gap: 42px;
  padding: 78px 24px 124px;
  border-top: 0;
  background: #fff;
  color: #0a0a0a;
}
.article-page .article-toc {
  position: relative;
  top: auto;
  max-height: none;
  padding: 30px;
  border: 1px solid #d7d7da;
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
}
.article-page .article-toc strong { color: #0a0a0a; }
.article-page .article-toc ol {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}
.article-page .article-toc a {
  padding: 11px 4px;
  border-left: 0;
  border-bottom: 1px solid #e3e3e6;
  color: #5b5b60;
  text-align: center;
}
.article-page .article-toc a:hover,
.article-page .article-toc a[aria-current] {
  border-color: #0a0a0a;
  color: #0a0a0a;
}
.article-page .article-main,
.article-page .quick-answer,
.article-page .audience-box,
.article-page .method-box,
.article-page .project-inline,
.article-page .article-copy,
.article-page .sources,
.article-page .article-cta {
  text-align: center;
}
.article-page .quick-answer,
.article-page .audience-box,
.article-page .method-box {
  border-color: #d7d7da;
  background: #fff;
  color: #0a0a0a;
  box-shadow: none;
}
.article-page .quick-answer { border-left-width: 1px; border-top: 3px solid #0a0a0a; }
.article-page .quick-answer .label,
.article-page .audience-box .label,
.article-page .method-box .label {
  color: #5b5b60;
}
.article-page .audience-box ul {
  grid-template-columns: 1fr 1fr;
  padding: 0;
  color: #3a3a3c;
  list-style: none;
}
.article-page .method-box p { color: #5b5b60; }
.article-page .project-inline {
  border-color: #d7d7da;
  border-left-width: 1px;
  background: #f5f5f7;
  color: #0a0a0a;
}
.article-page .project-inline > span { color: #5b5b60; }
.article-page .project-inline p { margin-inline: auto; color: #3a3a3c; }
.article-page .project-inline a { color: #0a0a0a; }
.article-page .article-copy,
html[data-theme="dark"] .article-page .article-copy { color: #1d1d1f; }
.article-page .article-copy h2::before {
  margin-inline: auto;
  background: #0a0a0a;
}
.article-page .article-copy ul,
.article-page .article-copy ol {
  padding-left: 0;
  list-style-position: inside;
}
.article-page .article-copy a {
  color: #0a0a0a;
  text-decoration-color: #777;
}
.article-page .article-copy th,
.article-page .article-copy td { text-align: center; }
.article-page .article-copy th { background: #f2f2f4; color: #0a0a0a; }
.article-page .article-copy tr:nth-child(even) td,
html[data-theme="dark"] .article-page .article-copy tr:nth-child(even) td { background: #fafafa; }
.article-page .article-copy blockquote,
.article-page .callout {
  border-left: 0;
  border-top: 2px solid #0a0a0a;
  border-radius: var(--radius-sm);
  background: #f5f5f7;
  color: #3a3a3c;
}
.article-page .callout-title,
.article-page .sources h2,
.article-page .sources a { color: #0a0a0a; }
.article-page .sources p,
.article-page .sources ol { color: #5b5b60; }
.article-page .sources ol { padding-left: 0; list-style-position: inside; }
.article-page .faq details p { color: #5b5b60; }
.article-page .article-cta {
  border: 1px solid #0a0a0a;
  background: #050505;
  color: #fff;
}
.article-page .article-cta h2 { margin-inline: auto; color: #fff; }
.article-page .article-cta p { color: #b8b8bd; }
.article-page .article-cta .hero-actions { justify-content: center; }
.article-page .related-section {
  border-top-color: #d7d7da;
  background: #fff;
  color: #0a0a0a;
  text-align: center;
}
.article-page .related-section .section-title { color: #0a0a0a; }
.article-page .related-section .section-note { margin-inline: auto; color: #5b5b60; }
.article-page .related-section .article-card {
  border-color: #d7d7da;
  background: #fff;
  color: #0a0a0a;
}
.article-page .related-section .article-card h3 a,
.article-page .related-section .card-link { color: #0a0a0a; }
.article-page .related-section .article-card p { color: #5b5b60; }
.article-page .contact-conversion {
  background: #050505;
}
.article-page .contact-conversion::before { display: none; }
.article-page .contact-conversion-inner {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  text-align: center;
}
.article-page .contact-conversion-copy h2,
.article-page .contact-conversion-copy > p:not(.eyebrow) { margin-inline: auto; }
.article-page .contact-conversion-copy .eyebrow,
.article-page .contact-conversion-copy ul { justify-content: center; }
.article-page .contact-conversion .contact-channel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.article-page .contact-conversion .contact-channel { align-items: center; text-align: center; }

.home-offer-paths {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.home-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.home-offer-grid > a {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  flex-direction: column;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}
.home-offer-grid > a:hover {
  border-color: var(--ink);
  background: var(--white);
  color: var(--ink);
  transform: translateY(-3px);
}
.home-offer-grid > a > span {
  color: var(--orange-text);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}
.home-offer-grid h2 {
  margin: 52px 0 14px;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.home-offer-grid p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.home-offer-grid b {
  margin-top: auto;
  font-size: 12px;
}

.ads-landing-page {
  --ads-dark: #090909;
  --ads-panel: #171719;
  --ads-warm: #ff6410;
  padding-bottom: 0;
}
.ads-landing-page .contact-float {
  display: none;
}
.ads-hero {
  padding: clamp(48px, 6vw, 78px) 0;
  overflow: hidden;
  border-bottom: 1px solid #2b2b2e;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 100, 16, 0.16), transparent 25%),
    var(--ads-dark);
  color: #fff;
}
.ads-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(40px, 6vw, 78px);
  align-items: center;
}
.ads-breadcrumb { margin-bottom: 26px; }
.ads-breadcrumb ol { justify-content: flex-start; }
.ads-breadcrumb a,
.ads-breadcrumb li { color: rgba(255, 255, 255, 0.58); }
.ads-hero .eyebrow { color: #ff7b35; }
.ads-hero-copy h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 670;
  letter-spacing: -0.064em;
  line-height: 0.95;
  text-wrap: balance;
}
.ads-hero-copy h1 em {
  display: block;
  margin-top: 4px;
  color: var(--ads-warm);
  font-family: var(--serif);
  font-size: 0.94em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.055em;
}
.ads-hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.55;
}
.ads-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.ads-hero .ads-primary-cta {
  border-color: var(--ads-warm);
  background: var(--ads-warm);
  color: #090909 !important;
}
.ads-hero .ads-primary-cta:hover {
  border-color: #fff;
  background: #fff;
}
.ads-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff !important;
}
.ads-hero .button.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.ads-hero-call {
  display: inline-flex;
  margin-top: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}
.ads-hero-call:hover { border-color: var(--ads-warm); color: #fff; }
.ads-hero-note {
  max-width: 630px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.55;
}
.ads-hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(23, 23, 25, 0.86);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}
.ads-hero-panel > span {
  color: #ff7b35;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.ads-hero-panel > strong {
  display: block;
  margin: 12px 0 22px;
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.ads-hero-panel ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}
.ads-hero-panel li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.ads-hero-panel li b { color: var(--ads-warm); font-family: var(--serif); font-style: italic; }
.ads-hero-panel > a {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}
.ads-trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.ads-trust-strip .shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ads-trust-strip span {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.ads-trust-strip span:first-child { border-left: 1px solid var(--line); }
.ads-trust-strip b {
  color: var(--orange-text);
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
}
.ads-fit-section { background: var(--white); }
.ads-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ads-fit-grid article {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.ads-fit-grid article > span {
  color: var(--orange-text);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}
.ads-fit-grid h2 {
  margin: 64px 0 14px;
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.ads-fit-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.ads-brief-section {
  scroll-margin-top: 86px;
  border-top: 1px solid #29292c;
  border-bottom: 1px solid #29292c;
  background: var(--ads-dark);
  color: #fff;
}
.ads-brief-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}
.ads-brief-intro { position: sticky; top: 110px; }
.ads-brief-intro .eyebrow { color: #ff7b35; }
.ads-brief-intro .section-title { color: #fff; text-align: left; }
.ads-brief-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.62); }
.ads-brief-intro ul { margin: 30px 0 0; padding: 0; list-style: none; }
.ads-brief-intro li {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}
.ads-brief-form {
  overflow: hidden;
  border: 1px solid #d8d8dc;
  border-radius: 28px;
  background: #fff;
  color: #0a0a0a;
}
.ads-brief-form fieldset {
  margin: 0;
  padding: 28px;
  border: 0;
  border-bottom: 1px solid #dfdfe3;
}
.ads-brief-form legend {
  padding: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.035em;
}
.ads-brief-form legend span {
  margin-right: 10px;
  color: #c14300;
  font-family: var(--serif);
  font-style: italic;
}
.ads-brief-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}
.ads-brief-choices label { cursor: pointer; }
.ads-brief-choices input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.ads-brief-choices span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid #d6d6da;
  border-radius: 12px;
  background: #f7f7f8;
  font-size: 12px;
  font-weight: 620;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.ads-brief-choices input:checked + span {
  border-color: #0a0a0a;
  background: #0a0a0a;
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--ads-warm);
}
.ads-brief-choices input:focus-visible + span {
  outline: 3px solid var(--ads-warm);
  outline-offset: 2px;
}
.ads-brief-submit {
  width: calc(100% - 56px);
  margin: 28px;
  border-color: var(--ads-warm);
  background: var(--ads-warm);
  color: #0a0a0a !important;
}
.ads-brief-status {
  min-height: 22px;
  margin: -16px 28px 22px;
  color: #616166;
  font-size: 11px;
  text-align: center;
}

.ads-scope-section { background: var(--paper); }
.ads-scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}
.ads-scope-grid > div .section-title { text-align: left; }
.ads-check-list {
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}
.ads-check-list li {
  position: relative;
  padding: 20px 44px 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
}
.ads-check-list li::after {
  position: absolute;
  top: 18px;
  right: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--orange-text);
  content: "✓";
  font-size: 12px;
}
.ads-scope-grid aside {
  padding: 38px;
  border-radius: 28px;
  background: var(--ads-dark);
  color: #fff;
}
.ads-scope-grid aside > span {
  color: #ff7b35;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ads-scope-grid aside h3 {
  margin: 18px 0 30px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}
.ads-scope-grid aside ul { margin: 0; padding: 0; list-style: none; }
.ads-scope-grid aside li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}
.ads-scope-grid aside .text-link { display: inline-block; margin-top: 28px; color: #fff; font-size: 12px; }

.ads-process-section { background: var(--white); }
.ads-process-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(54px, 8vw, 110px);
}
.ads-process-heading .section-title { text-align: left; }
.ads-process-heading > p:not(.eyebrow) { color: var(--muted); }
.ads-process-grid > ol { margin: 0; padding: 0; border-top: 1px solid var(--line-strong); list-style: none; }
.ads-process-grid > ol > li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.ads-process-grid > ol > li > span {
  color: var(--orange-text);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}
.ads-process-grid h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.04em;
}
.ads-process-grid li p { margin: 0; color: var(--muted); font-size: 14px; }
.ads-proof-section,
.ads-faq-section { background: var(--paper); }
.ads-project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ads-guide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ads-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 110px);
}
.ads-faq-grid .section-title { text-align: left; }
.ads-faq-grid details { border-top: 1px solid var(--line-strong); }
.ads-faq-grid details:last-child { border-bottom: 1px solid var(--line-strong); }
.ads-faq-grid summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.035em;
  cursor: pointer;
  list-style: none;
}
.ads-faq-grid summary::-webkit-details-marker { display: none; }
.ads-faq-grid summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--orange-text);
  content: "+";
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
}
.ads-faq-grid details[open] summary::after { content: "−"; }
.ads-faq-grid details p {
  max-width: 62ch;
  margin: -4px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.ads-final-cta {
  padding: 110px 0;
  background: var(--ads-dark);
  color: #fff;
  text-align: center;
}
.ads-final-cta .eyebrow { justify-content: center; color: #ff7b35; }
.ads-final-cta h2 {
  max-width: 1040px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 86px);
  letter-spacing: -0.065em;
  line-height: 0.96;
}
.ads-final-cta h2 em {
  color: var(--ads-warm);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}
.ads-final-cta > .shell > p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px auto 48px;
  color: rgba(255, 255, 255, 0.64);
}
.ads-final-cta .contact-channel-grid { text-align: left; }

.ads-mobile-rail { display: none; }

.privacy-notice {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid #f0b18e;
  border-radius: var(--radius);
  background: #fff4ed;
  color: #3b1d0d;
}
.privacy-notice strong { display: block; margin-bottom: 8px; }
.privacy-notice p { margin: 0; font-size: 14px; }
.content-page code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.86em;
}
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.footer-links button:hover { color: #fff; }
.consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 160;
  display: grid;
  width: min(920px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 22px;
  border: 1px solid #3a3a3c;
  border-radius: 20px;
  background: rgba(9, 9, 9, 0.97);
  color: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}
.consent-banner[hidden] { display: none; }
.consent-copy strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.03em;
}
.consent-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.55;
}
.consent-copy a { color: #fff; }
.consent-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-direction: row;
}
.consent-actions button {
  min-width: 148px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: #171719;
  color: #fff;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
}
.consent-actions button:last-child {
  border-color: rgba(255, 255, 255, 0.32);
  background: #171719;
  color: #fff;
}
.consent-actions button:hover,
.consent-actions button:focus-visible {
  border-color: var(--ads-warm, #ff6410);
  outline: 0;
}

/* Premium depth: layered shadows keep cards crisp on both light and dark surfaces. */
.article-card,
#konular .cluster-card,
.answer-grid > div:not(.answer-principle),
.home-offer-grid > a,
.ads-fit-grid article,
.quick-answer,
.audience-box,
.method-box,
.project-facts > div,
.contact-channel-phone,
.contact-channel-whatsapp {
  box-shadow: var(--shadow-card);
}

.category-intro,
.decision-frame,
.ads-brief-form {
  box-shadow: var(--shadow-panel);
}

.cluster-card,
.answer-grid > .answer-principle,
.ads-hero-panel,
.ads-scope-grid aside,
.contact-channel-email {
  box-shadow: var(--shadow-dark-card);
}

#konular .cluster-card {
  box-shadow: var(--shadow-card);
}

.article-card:hover,
#konular .cluster-card:hover,
.home-offer-grid > a:hover,
.contact-channel:hover {
  box-shadow: var(--shadow-card-hover);
}

.article-card,
.cluster-card,
.home-offer-grid > a,
.contact-channel {
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (min-width: 781px) {
  .ads-landing-page .contact-float { display: none; }
}

@keyframes article-hero-reveal {
  from { opacity: 0; clip-path: inset(0 48% round 28px); }
  to { opacity: 1; clip-path: inset(0 round 28px); }
}

html[data-enhanced="true"] .article-page .article-hero-visual picture {
  animation: article-hero-reveal 760ms 160ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
html[data-enhanced="true"] .home-hero .eyebrow,
html[data-enhanced="true"] .home-hero .display-title,
html[data-enhanced="true"] .home-hero .lead,
html[data-enhanced="true"] .home-hero .hero-actions,
html[data-enhanced="true"] .home-hero .hero-topic-links {
  animation: rise-in 650ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}
html[data-enhanced="true"] .home-hero .display-title { animation-delay: 60ms; }
html[data-enhanced="true"] .home-hero .lead { animation-delay: 120ms; }
html[data-enhanced="true"] .home-hero .hero-actions { animation-delay: 180ms; }
html[data-enhanced="true"] .home-hero .hero-topic-links { animation-delay: 230ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .hero-ripple-stage canvas { display: none; }
}

@media (max-width: 1040px) {
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 12px; }
  .nav-cta { padding-inline: 14px; }
  .hero-grid, .article-hero-grid { grid-template-columns: 1fr; }
  .hero-index { max-width: 360px; }
  .article-cover { max-width: 760px; }
  .cluster-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cluster-card, .cluster-card:nth-child(n) { min-height: 280px; }
  .cluster-card h3 { margin-top: 72px; }
  .decision-links { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .featured-guides-section .feature-grid > .article-card:last-child:nth-child(odd),
  .latest-section .feature-grid > .article-card:last-child:nth-child(odd),
  .related-section .feature-grid > .article-card:last-child:nth-child(odd) {
    width: calc(50% - 10px);
    grid-column: 1 / -1;
    justify-self: center;
  }
  .article-layout { grid-template-columns: minmax(0, var(--content)); }
  .article-toc {
    position: relative;
    top: auto;
    max-height: none;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
  }
  .article-toc ol { grid-template-columns: 1fr 1fr; }
  .category-intro { grid-template-columns: 1fr; }
  .contact-conversion-inner, .contact-brief-grid { grid-template-columns: 1fr; }
  .contact-conversion .contact-channel-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-conversion .contact-channel { min-height: 190px; }
  .contact-brief-copy { position: static; }
}

@media (max-width: 780px) {
  body[data-menu-open] { overflow: hidden; }
  body[data-decision-visible] .contact-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px));
  }
  .nav { width: min(calc(100% - 28px), var(--wide)); min-height: 64px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 3px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
  }
  .nav-links[data-open] { display: flex; }
  .nav-links a { display: block; min-height: 44px; padding: 11px 13px; border-radius: 10px; font-size: 14px; }
  .nav-links a:hover { background: var(--paper); }
  .theme-nav-item { padding: 3px 6px; }
  .theme-toggle {
    width: 100%;
    min-height: 44px;
    height: auto;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
  }
  .theme-toggle-label { display: inline; font-size: 14px; font-weight: 600; }
  .nav-cta { width: 100%; }
  .shell { width: min(calc(100% - 28px), var(--wide)); }
  .home-hero { min-height: auto; padding: 76px 0 62px; }
  .hero-ripple-stage canvas { display: none; }
  .hero-ripple-stage {
    background:
      radial-gradient(circle at 70% 18%, rgba(255, 92, 0, 0.34), transparent 29%),
      linear-gradient(145deg, #080706 0%, #211006 58%, #080808 100%);
  }
  .hero-ripple-stage::before {
    inset: -28%;
    background-size: 38px 38px;
    opacity: 0.58;
    transform: perspective(560px) rotateX(57deg) scale(1.5) translateY(15%);
  }
  .hero-ripple-scrim {
    background:
      radial-gradient(ellipse at 50% 42%, rgba(7, 7, 7, 0.82), rgba(7, 7, 7, 0.55) 72%, rgba(7, 7, 7, 0.28)),
      linear-gradient(180deg, rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.48));
  }
  .display-title { font-size: clamp(46px, 14vw, 66px); }
  .home-hero .display-title { font-size: clamp(50px, 14vw, 66px); }
  .home-hero .lead { margin-top: 24px; font-size: 17px; }
  .home-hero .hero-actions { margin-top: 30px; }
  .hero-phone-inline { margin-top: 18px; }
  .home-hero .hero-topic-links { margin-top: 34px; padding-top: 19px; }
  .hero-grid { gap: 48px; }
  .hero-index { width: 100%; max-width: none; }
  .hero-index .number { margin-bottom: 30px; }
  .section { padding: 76px 0; }
  .section-head { align-items: center; flex-direction: column; gap: 18px; margin-bottom: 36px; text-align: center; }
  .section-title { font-size: clamp(38px, 11vw, 52px); }
  .answer-grid { grid-template-columns: 1fr; }
  .answer-grid > div,
  .answer-grid > .answer-principle { grid-column: auto; min-height: 0; }
  .cluster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .cluster-card-copy { min-height: 166px; padding: 20px 14px; }
  #konular .cluster-card h3 { font-size: clamp(20px, 5.7vw, 26px); }
  #konular .cluster-card p { font-size: 11px; line-height: 1.5; -webkit-line-clamp: 3; }
  .cluster-card, .cluster-card:nth-child(n) { min-height: 250px; }
  .decision-section { padding-block: 64px; background-size: 28px 28px; }
  .decision-section .shell { width: min(calc(100% - 20px), var(--wide)); }
  .decision-section .decision-frame { border-radius: 28px; }
  .decision-intro {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 42px 26px 36px;
  }
  .decision-intro h2 {
    max-width: 8.4ch;
    font-size: clamp(50px, 14.5vw, 66px);
  }
  .decision-intro-copy { max-width: 38ch; }
  .decision-status {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 24px;
    justify-items: stretch;
    align-items: center;
  }
  .decision-progress-track { width: 104px; height: 104px; }
  .decision-progress-track i { inset: 7px; }
  .decision-status-copy { width: 104px; }
  .decision-status-copy strong { font-size: 27px; }
  .decision-status-copy span { max-width: 8ch; line-height: 1.2; }
  .decision-meta {
    grid-area: 1 / 2;
    align-items: stretch;
    gap: 6px;
    margin: 0;
    flex-direction: column;
  }
  .decision-meta li { width: fit-content; padding: 5px 9px; }
  .decision-workspace { padding: 0 10px 10px; }
  .decision-desk { grid-template-columns: 1fr; gap: 10px; }
  .decision-desk fieldset {
    min-height: 0;
    padding: 25px 20px 22px;
    border-radius: 20px;
  }
  .decision-desk legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-bottom: 22px;
    font-size: 19px;
    text-align: center;
    flex-direction: column;
  }
  .decision-desk legend span { width: 100%; min-width: 0; font-size: 27px; text-align: center; }
  .choice-grid label span { justify-content: flex-start; padding-inline: 16px; text-align: left; }
  .decision-form-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 20px;
    text-align: center;
  }
  #rehber-bulucu .decision-submit { width: 100%; grid-row: 1; }
  .form-hint { max-width: none; text-align: center; }
  .decision-result { padding: 28px 22px; border-radius: 20px; }
  .library-toolbar { align-items: stretch; flex-direction: column; }
  .filter-chips { display: grid; grid-template-columns: 1fr 1fr; }
  .filter-chips button { width: 100%; }
  .feature-grid, .library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .featured-guides-section .feature-grid > .article-card:last-child:nth-child(odd),
  .latest-section .feature-grid > .article-card:last-child:nth-child(odd),
  .related-section .feature-grid > .article-card:last-child:nth-child(odd) {
    width: calc(50% - 6px);
    grid-column: 1 / -1;
    justify-self: center;
  }
  .project-grid, .project-intro { grid-template-columns: 1fr; }
  .feature-grid .article-card { border-radius: 16px; }
  .feature-grid .card-body { padding: 15px 14px 14px; }
  .feature-grid .card-meta {
    gap: 4px;
    font-size: 8px;
    line-height: 1.35;
  }
  .feature-grid .card-meta span:last-child::before { margin-inline: 3px 1px; content: "·"; }
  .feature-grid .article-card h3 {
    margin: 11px 0 8px;
    font-size: clamp(17px, 4.7vw, 21px);
    line-height: 1.08;
  }
  .feature-grid .article-card p {
    display: -webkit-box;
    margin-bottom: 8px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .feature-grid .card-link {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding-top: 8px;
    font-size: 11px;
  }
  .project-card-links { align-items: center; flex-direction: column; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip > * { min-height: 140px; border-bottom: 1px solid #303033; }
  .article-hero { padding: 52px 0 50px; }
  .article-hero-grid { gap: 38px; }
  .article-hero h1 { font-size: clamp(42px, 12.5vw, 58px); }
  .article-layout { gap: 36px; padding: 38px 14px 84px; }
  .article-toc ol { grid-template-columns: 1fr; }
  .quick-answer, .audience-box, .method-box { padding: 23px; }
  .audience-box ul { grid-template-columns: 1fr; }
  .article-copy > p, .article-copy > ul, .article-copy > ol, .article-copy > blockquote { font-size: 17px; }
  .article-copy h2 { margin-top: 58px; }
  .article-copy table { min-width: 620px; }
  .project-inline, .project-source { padding: 24px; }
  .project-facts { grid-template-columns: 1fr; }
  .project-facts > div { min-height: 0; }
  .project-live-link { align-items: start; flex-direction: column; }
  .article-cta { padding: 30px 25px; }
  .article-cta h2 { font-size: 32px; }
  .contact-conversion { padding: 72px 0; }
  .contact-conversion-copy { text-align: center; }
  .contact-conversion-copy .eyebrow { justify-content: center; }
  .contact-conversion-copy > p:not(.eyebrow) { margin-inline: auto; }
  .contact-conversion-copy ul { justify-content: center; }
  .contact-conversion .contact-channel-grid,
  .contact-channel-grid { grid-template-columns: 1fr; }
  .contact-conversion .contact-channel,
  .contact-channel { min-height: 160px; }
  .contact-conversion .contact-channel {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .contact-conversion .contact-channel:last-child { border-bottom: 0; }
  .contact-page-hero { min-height: 620px; }
  .contact-brief-list li { grid-template-columns: 42px 1fr; }
  .contact-final { padding: 76px 0; }
  .page-hero { padding: 74px 0 54px; }
  .page-hero h1 { font-size: clamp(46px, 13vw, 64px); }
  .content-page { padding: 42px 14px 84px; font-size: 17px; }
  .footer-inner { min-height: 360px; padding: 42px 6px 22px; }
  .footer-links { max-width: 340px; gap: 10px 18px; }
  .footer-contact { gap: 8px; flex-wrap: wrap; }
  .footer-contact span { display: none; }
  .footer-contact a { width: 100%; }
  .article-page .article-hero { padding: 52px 0 50px; }
  .article-page .article-hero .shell { width: min(calc(100% - 28px), 1040px); }
  .article-page .article-hero-grid { gap: 38px; }
  .article-page .article-hero-visual picture {
    border-radius: 20px;
    aspect-ratio: 4 / 3;
  }
  .article-page .article-hero-visual figcaption {
    padding-inline: 8px;
    font-size: 11px;
  }
  .article-page .article-layout { gap: 36px; padding: 38px 14px 84px; }
  .article-page .article-toc { padding: 22px; }
  .article-page .article-toc ol,
  .article-page .audience-box ul,
  .article-page .contact-conversion .contact-channel-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    align-items: center;
    gap: 8px;
    flex-direction: column;
    line-height: 1.5;
  }
  .footer-bottom span + span::before { display: none; }
}

@media (max-width: 460px) {
  body { padding-bottom: 72px; }
  .brand-logo { width: 92px; height: 34px; }
  .brand-separator { display: none; }
  .brand-blog { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-topic-links { gap: 6px; }
  .hero-topic-links a { padding-inline: 10px; font-size: 11px; }
  .filter-chips { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > * { border-right: 0; }
  .article-byline { flex-direction: column; gap: 5px; }
  .article-tools { display: grid; grid-template-columns: 1fr 1fr; }
  .article-tools button { width: 100%; }
  .contact-float {
    right: 12px;
    bottom: 10px;
    left: 12px;
    justify-content: stretch;
    padding: 5px;
  }
  .contact-float a { flex: 1; }
}

@media (max-width: 350px) {
  .shell { width: min(calc(100% - 20px), var(--wide)); }
  .feature-grid, .library-grid { gap: 8px; }
  .featured-guides-section .feature-grid > .article-card:last-child:nth-child(odd),
  .latest-section .feature-grid > .article-card:last-child:nth-child(odd),
  .related-section .feature-grid > .article-card:last-child:nth-child(odd) {
    width: calc(50% - 4px);
  }
  .feature-grid .card-body { padding: 12px 10px 10px; }
  .feature-grid .card-meta span:last-child { display: none; }
  .feature-grid .article-card h3 { font-size: 16px; }
  .feature-grid .article-card p { font-size: 10px; -webkit-line-clamp: 2; }
}

@media (max-width: 1040px) {
  .ads-hero-grid { grid-template-columns: 1fr; }
  .ads-hero-panel { display: none; }
  .ads-brief-grid,
  .ads-scope-grid,
  .ads-process-grid,
  .ads-faq-grid { gap: 54px; }
}

@media (max-width: 780px) {
  .ads-landing-page { padding-bottom: 72px; }
  .home-offer-paths { padding: 76px 0; }
  .home-offer-grid,
  .ads-fit-grid,
  .ads-brief-grid,
  .ads-scope-grid,
  .ads-process-grid,
  .ads-faq-grid,
  .article-intent-cta { grid-template-columns: 1fr; }
  .home-offer-grid > a { min-height: 250px; }
  .home-offer-grid h2 { margin-top: 42px; }
  .ads-hero { padding: 42px 0 50px; }
  .ads-breadcrumb { margin-bottom: 24px; }
  .ads-hero-copy h1 {
    font-size: clamp(42px, 12.5vw, 56px);
    letter-spacing: -0.058em;
    line-height: 0.96;
  }
  .ads-hero-lead { margin-top: 22px; font-size: 16px; }
  .ads-hero-actions { align-items: stretch; flex-direction: column; }
  .ads-hero-actions .button { width: 100%; }
  .ads-hero-call { justify-content: center; }
  .ads-hero-note { text-align: center; }
  .ads-trust-strip .shell { grid-template-columns: 1fr 1fr; }
  .ads-trust-strip span:nth-child(odd) { border-left: 1px solid var(--line); }
  .ads-trust-strip span { min-height: 92px; }
  .ads-fit-grid article { min-height: 240px; }
  .ads-fit-grid h2 { margin-top: 44px; }
  .ads-brief-intro { position: static; }
  .ads-brief-intro .section-title,
  .ads-scope-grid > div .section-title,
  .ads-process-heading .section-title,
  .ads-faq-grid .section-title { text-align: center; }
  .ads-brief-intro { text-align: center; }
  .ads-brief-intro .eyebrow { justify-content: center; }
  .ads-brief-intro li { text-align: left; }
  .ads-brief-choices { grid-template-columns: 1fr; }
  .ads-brief-form fieldset { padding: 24px 20px; }
  .ads-brief-submit { width: calc(100% - 40px); margin: 24px 20px; }
  .ads-brief-status { margin-inline: 20px; }
  .ads-scope-grid aside { padding: 28px; }
  .ads-process-grid > ol > li { grid-template-columns: 50px 1fr; }
  .ads-project-grid { grid-template-columns: 1fr; }
  .ads-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ads-final-cta { padding: 82px 0; }
  .ads-final-cta h2 { font-size: clamp(48px, 13vw, 64px); }
  .ads-mobile-rail {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 145;
    display: grid;
    min-height: 68px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #343438;
    background: rgba(8, 8, 9, 0.97);
    box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
  }
  .ads-mobile-rail a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    border-right: 1px solid #343438;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
  .ads-mobile-rail a:first-child {
    background: var(--ads-warm);
    color: #090909;
  }
  .ads-mobile-rail a:last-child { border-right: 0; }
  .ads-mobile-rail span { font-size: 12px; font-weight: 760; }
  .ads-mobile-rail small {
    overflow: hidden;
    max-width: 100%;
    padding-inline: 6px;
    color: currentColor;
    font-size: 8px;
    opacity: 0.68;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .consent-banner {
    bottom: 80px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .consent-actions { flex-direction: row; }
  .consent-actions button { min-width: 0; flex: 1; }
}

@media (max-width: 460px) {
  .ads-trust-strip .shell { width: 100%; }
  .ads-trust-strip span { padding: 14px 8px; font-size: 10px; }
  .ads-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .consent-banner {
    right: 12px;
    bottom: 82px;
    left: 12px;
    width: auto;
    padding: 18px;
  }
  .consent-actions { flex-direction: column; }
  .ads-mobile-rail small { display: none; }
}

@media print {
  @page { margin: 17mm; }
  body { background: white; color: black; font-size: 11pt; }
  .site-header, .site-footer, .article-toc, .article-cover, .article-tools,
  .related-section, .article-cta, .contact-conversion, .contact-final,
  .contact-float, .reading-progress, .consent-banner { display: none !important; }
  .article-hero { padding: 0 0 10mm; border-bottom: 1px solid #bbb; }
  .article-hero-grid, .article-layout { display: block; padding: 0; }
  .article-layout { border: 0; background: white; }
  .article-main { max-width: none; }
  .article-hero h1 { font-size: 30pt; }
  .article-deck { font-size: 12pt; }
  .quick-answer, .audience-box, .method-box { break-inside: avoid; box-shadow: none; background: white; }
  .article-copy h2, .sources h2 { break-after: avoid; page-break-after: avoid; }
  .article-copy table, .article-copy blockquote, .sources li { break-inside: avoid; }
  .article-copy a::after, .sources a::after {
    content: " (" attr(href) ")";
    font-size: 8pt;
    font-weight: 400;
  }
}
