/* =========================
   GLOBAL
========================= */
:root {
  /* Claude-style palette: warm ivory + terracotta orange */
  --bg: #F0EEE6;
  --surface: #FFFFFF;
  --surface-2: #FAF9F5;
  --text: #1F1E1D;
  --muted: #5E5C57;
  --line: #E3DFD3;
  --accent: #D97757;
  --accent-text: #FFFFFF;
  --accent-soft: rgba(217, 119, 87, 0.10);
  --accent-border: rgba(217, 119, 87, 0.28);
  --ink-border: rgba(31, 30, 29, 0.08);
  --max: 1120px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

#contact {
  padding-bottom: 40px;
}

/* =========================
   BRAND
========================= */
.brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.5px;
  gap: 10px; /* 🔥 bunu düşürdük */
}

.brand-logo {
  height: 28px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
  transform: translateY(1px);
}

.brand .dot {
  color: var(--accent);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 10px 25px rgba(217, 119, 87, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(217, 119, 87, 0.32);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(31, 30, 29, 0.18);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(31, 30, 29, 0.05);
}

/* =========================
   NAVBAR
========================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(240, 238, 230, 0.88);
  border-bottom: 1px solid rgba(31, 30, 29, 0.07);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
}

.nav.scrolled {
  background: rgba(250, 249, 245, 0.94);
  border-bottom: 1px solid rgba(31, 30, 29, 0.1);
  box-shadow: 0 10px 30px rgba(31, 30, 29, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
  transition: min-height 0.25s ease;
  position: relative;
}

.nav.scrolled .nav-inner {
  min-height: 64px;
}

.nav.scrolled .brand {
  transform: scale(0.96);
}

.nav.scrolled .nav-links a {
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-size: 15px;
  position: relative;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.lang-switch {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.lang-switch:hover {
  color: var(--accent);
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

/* =========================
   MOBILE MENU
========================= */
.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  padding: 40px 0 40px;
  overflow-x: clip; /* ::before süs dairesi mobilde yatay scroll yaratmasın */
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 87, 0.14), transparent 70%);
  top: -100px;
  left: -100px;
  z-index: 0;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

/* marquee gibi geniş içerik grid kolonunu şişirmesin */
.hero-grid > * {
  min-width: 0;
}

.hero-content {
  padding-top: 80px;
  transform: none;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 14px;
  font-weight: 700;
}

h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  margin: 0 0 18px;
  max-width: 12ch;
  letter-spacing: -1px;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 20px;
  line-height: 1.7;
}

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

.user-location {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  color: var(--muted);

  margin-bottom: 16px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22A35D;

  box-shadow: 0 0 6px rgba(34, 163, 93, 0.5);
}

.icon-shell {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(217,119,87,0.12), rgba(217,119,87,0.05));
  border: 1px solid rgba(217,119,87,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 8px 24px rgba(31,30,29,0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.icon-shell svg {
  width: 21px;
  height: 21px;
  stroke: var(--accent);
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* =========================
   CLIENT STRIP
========================= */

.client-logo-marquee {
  width: 100%;
  max-width: 560px;
  height: 90px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 6px;
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: logoScroll 28s linear infinite;
  will-change: transform;
}

.client-logo-track img {
  height: 58px;
  width: auto;
  max-width: 180px;

  display: block;
  flex: 0 0 auto;

  object-fit: contain;
  /* logolar beyaz tasarlandı — açık zeminde koyulaştır */
  filter: invert(1) !important;
  opacity: 0.75;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 17px));
  }
}

.client-logo-marquee::before,
.client-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.client-logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.client-logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
/* =========================
   HERO FORM CARD
========================= */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-top: 62px;
}

/* kart kabuğu yok — form doğrudan fildişi zeminde */
.hero-form-card {
  width: 100%;
  max-width: 440px;
}

.hero-form-card h3 {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: -0.3px;
}

.hero-form-card > p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.hero-form-card .audit-form {
  padding-top: 0;
}

.hero-form-card .audit-field {
  margin-bottom: 16px;
}

.hero-form-card .form-row {
  gap: 18px;
}

.hero-form-card .audit-urgency {
  margin: 2px 0 18px;
}

.hero-form-note {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}


/* =========================
   COMMON SECTIONS
========================= */
.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.5px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  opacity: 0.8;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 20px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--ink-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(31, 30, 29, 0.04);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 87, 0.3);
  box-shadow: 0 12px 28px rgba(31, 30, 29, 0.08);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

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

/* =========================
   TRUST / STATS
========================= */
.trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: #C05E3D;
  font-size: 13px;
  font-weight: 600;
}

/* =========================
   POSITIONING
========================= */
.positioning {
  padding-top: 60px;
}

.positioning .section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.positioning .section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.5px;
}

.positioning .section-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.positioning .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.positioning .positioning-card {
  min-width: 0;
}

.positioning-card {
  background: linear-gradient(180deg, #FFFFFF, #FAF9F5);
  border: 1px solid var(--ink-border);
  transition: 0.25s ease;
  text-align: center;
}

.positioning-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.positioning-card:hover .icon-shell {
  transform: translateY(-4px) scale(1.05);
  background: rgba(217,119,87,0.16);
}

.positioning-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 119, 87, 0.3);
}

.positioning-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.positioning-card p {
  color: var(--muted);
  font-size: 15px;
}

/* =========================
   DIFFERENCE SECTION
========================= */
.difference-section {
  padding-top: 70px;
}

.difference-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.difference-panel,
.difference-visual {
  background: linear-gradient(180deg, #FFFFFF, #FAF9F5);
  border: 1px solid var(--ink-border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(31, 30, 29, 0.04);
}

.difference-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  background: rgba(31, 30, 29, 0.05);
  border-radius: 14px;
  margin-bottom: 22px;
}

.diff-tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.diff-tab.active {
  background: #FFFFFF;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(31, 30, 29, 0.08);
}

.difference-company {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(31, 30, 29, 0.03);
  border: 1px solid rgba(31, 30, 29, 0.06);
  margin-bottom: 18px;
}

.difference-company-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(217, 119, 87, 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.difference-company p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.difference-metrics {
  display: none;
  gap: 12px;
}

.difference-metrics.active {
  display: grid;
}

.difference-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(31, 30, 29, 0.03);
  border: 1px solid rgba(31, 30, 29, 0.06);
}

.difference-metric span {
  color: var(--text);
  font-weight: 600;
}

.difference-metric strong {
  min-width: 64px;
  text-align: center;
  padding: 7px 12px;
  border-radius: 10px;
  transition: transform 0.25s ease;
  font-size: 15px;
}

.metric-bad {
  background: rgba(216, 58, 46, 0.1);
  color: #C0392B;
}

.metric-good {
  background: rgba(34, 163, 93, 0.12);
  color: #1E7E43;
}

.difference-map {
  display: none;
}

.difference-map.active {
  display: block;
}

/* =========================
   BEFORE / AFTER GEÇİŞ EFEKTLERİ
========================= */
/* display:none → grid/block geçişi transition'ı öldürür;
   keyframe animasyonları ise her açılışta yeniden tetiklenir */
.difference-metrics.active .difference-metric {
  animation: metricIn 0.45s ease backwards;
}

.difference-metrics.active .difference-metric:nth-child(2) { animation-delay: 0.09s; }
.difference-metrics.active .difference-metric:nth-child(3) { animation-delay: 0.18s; }
.difference-metrics.active .difference-metric:nth-child(4) { animation-delay: 0.27s; }

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

/* JS sayarken rozeti hafifçe büyüt */
.counter.counting {
  transform: scale(1.12);
}

.difference-map.active {
  animation: mapIn 0.5s ease;
}

@keyframes mapIn {
  from { opacity: 0; transform: scale(0.985); }
  to   { opacity: 1; transform: none; }
}

/* harita noktaları sahte-rastgele sırayla pop'lasın */
.difference-map.active .map-grid span {
  animation: dotPop 0.4s ease backwards;
}

.difference-map.active .map-grid span:nth-child(2n) { animation-delay: 0.07s; }
.difference-map.active .map-grid span:nth-child(3n) { animation-delay: 0.15s; }
.difference-map.active .map-grid span:nth-child(5n) { animation-delay: 0.23s; }
.difference-map.active .map-grid span:nth-child(7n) { animation-delay: 0.31s; }

@keyframes dotPop {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .difference-metrics.active .difference-metric,
  .difference-map.active,
  .difference-map.active .map-grid span {
    animation: none;
  }

  .counter.counting {
    transform: none;
  }
}

.map-background {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 540px;
  border-radius: 20px;
  background-image: url('/images/map-bg.webp');
  background-size: cover;
  background-position: center;
}

/* Şehir bazlı harita arka planları (EN: Chicago, TR: İstanbul) */
.map--chicago { background-image: url('/images/map-chicago.webp'); }
.map--istanbul { background-image: url('/images/map-istanbul.webp'); }

.map-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.10);
}

/* zuhya tarzı kare ızgara: 7×7 = 49 nokta, haritada ortalanmış */
.map-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(7, 44px);
  gap: 12px 14px;
  justify-content: center;
  align-content: center;
  z-index: 1;
  padding: 24px;
}

.map-grid span {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  box-sizing: border-box;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(0, 0, 0, 0.06);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
}

/* Sıralama renk katmanları (Local Falcon / zuhya skalası) */
.dot-green { background: #16a34a; }              /* 1-3  : ilk sıra */
.dot-orange { background: #f5912b; }             /* 11-15: orta */
.dot-red { background: #e23a2c; }                /* 16-20: kötü */
.dot-dred { background: #9d1c12; }               /* 20+  : sıralama dışı */

/* Harita üzeri tarama bilgisi rozeti (zuhya'daki "49 pts · 7×7 grid") */
.map-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.map-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.22);
}

.map-attribution {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 8px;
  border-radius: 999px;
}

/* =========================
   HOW IT WORKS SECTION
========================= */
#process .section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

#process .process-vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
  width: 100%;
}

#process .process-vertical::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: rgba(217, 119, 87, 0.22);
}

#process .process-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
  width: 100%;
}

#process .process-step::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 2px;
  height: calc(100% + 22px);
  background: linear-gradient(to bottom, var(--accent), rgba(217, 119, 87, 0.15));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease;
  z-index: 1;
}

#process .process-step.visible-step::before {
  transform: scaleY(1);
}

#process .process-step:last-child::before {
  display: none;
}

#process .process-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(217, 119, 87, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  z-index: 2;
  transition: 0.25s ease;
  padding: 0;
  line-height: 0;
  position: relative;
}

#process .process-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

#process .process-content {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #FFFFFF, #FAF9F5);
  border: 1px solid var(--ink-border);
  border-radius: 18px;
  padding: 22px 28px;
  box-shadow: 0 2px 12px rgba(31, 30, 29, 0.04);
  transition: 0.25s ease;
  min-width: 0;
}

#process .process-inline {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

#process .process-inline strong {
  display: inline-flex;
  align-items: baseline;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.25s ease;
}

#process .process-inline span:first-child {
  opacity: 0.5;
  margin-right: 4px;
}

#process .process-step:hover .process-icon {
  transform: scale(1.08);
  background: var(--accent-soft);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(217, 119, 87, 0.25);
}

#process .process-step:hover .process-inline strong {
  color: var(--accent);
}

#process .process-step:hover .process-content {
  transform: translateY(-3px);
  border-color: rgba(217, 119, 87, 0.3);
  box-shadow: 0 10px 30px rgba(31, 30, 29, 0.08);
}

#process .process-step:hover .process-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  border: 1px solid rgba(217, 119, 87, 0.25);
  animation: iconPulse 1.2s ease-out infinite;
}

/* =========================
   FAQ
========================= */
.faq-pill-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.faq-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF, #FAF9F5);
  border: 1px solid var(--ink-border);
  transition: 0.25s ease;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: 0.3s ease;
}

.faq-item:hover::before,
.faq-item[open]::before {
  background: var(--accent);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  background: transparent;
}

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

.faq-item p {
  padding: 0 26px 22px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item:hover {
  border-color: rgba(217, 119, 87, 0.3);
  box-shadow: 0 10px 30px rgba(31, 30, 29, 0.08);
  transform: translateY(-2px);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

@keyframes iconPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* =========================
   REVEAL ANIMATION
========================= */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item[open] p {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
/* =========================
   FOOTER
========================= */
footer {
  padding: 28px 0 24px;
  border-top: 1px solid var(--ink-border);
  margin-top: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  color: var(--muted);
  font-size: 14px;
}

.footer-left,
.footer-right {
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-right {
    text-align: left !important;
  }

  .footer-right div[style*="justify-content:flex-end"] {
    justify-content: flex-start !important;
  }
}
      
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px; /* yakın ama yapışık değil */
  margin-bottom: 6px;
}

.footer-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.footer-title {
  font-weight: 800;
  color: var(--text);
  letter-spacing: 1px;
  font-size: 15px;
}

.footer-title .dot {
  color: var(--accent);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .difference-wrap,
  .positioning .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-right {
    padding-top: 24px;
  }

  .map-background {
    min-height: 420px;
  }

  .map-grid {
    grid-template-columns: repeat(7, 34px);
    gap: 7px 8px;
    padding: 16px;
  }

  .map-grid span {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    font-size: 12px;
    border-width: 1.5px;
  }

  .map-chip {
    font-size: 11px;
    padding: 6px 10px;
    top: 10px;
    left: 10px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--surface-2);
    border-top: 1px solid var(--ink-border);
    box-shadow: 0 16px 30px rgba(31, 30, 29, 0.1);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }
}

/* =========================
   Global highlight class
========================= */

.highlight {
  font-family: 'Great Vibes', cursive;
  color: var(--accent);
  font-weight: 400;
  /* el yazısı fontun x-yüksekliği düşük — her yerde aynı oranda büyüt */
  font-size: 1.35em;
  line-height: 1;
  display: inline-block;
  position: relative;
  padding-right: 0.08em; /* italik kuyruklar kesilmesin */
}

/* =========================
   APPLY FORM
========================= */
.apply-page {
  padding-top: 40px;
}

.apply-form {
  max-width: 560px;
}

/* plan kartı kaldırıldı — tek kolon form ortalanır */
.apply-form.solo {
  margin: 0 auto;
}

/* ana sayfa lead formu (cta-box içinde) */
.cta-box .lead-form {
  margin-bottom: 0;
}

/* =========================
   AUDIT FORM (free analysis)
========================= */
.audit-note {
  font-weight: 600;
  color: var(--text) !important;
}

.audit-steps {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.audit-steps li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.audit-steps li span {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: #C05E3D;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(5px);
}

.audit-form {
  text-align: left;
  padding-top: 8px;
}

.audit-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.audit-field {
  margin-bottom: 24px;
}

.audit-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.2px;
}

.audit-form input[type="text"],
.audit-form input[type="email"],
.audit-form input[type="tel"],
.audit-form input[type="url"] {
  width: 100%;
  padding: 10px 2px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(31, 30, 29, 0.25);
  border-radius: 0;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease;
}

.audit-form input:focus {
  outline: none;
  border-bottom-color: var(--accent);
  box-shadow: 0 1px 0 0 var(--accent);
}

.audit-form input::placeholder {
  color: #A8A498;
}

.audit-urgency {
  margin: 4px 0 28px;
}

.audit-urgency-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}

.urgency-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.urgency-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.urgency-options label {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(31, 30, 29, 0.22);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s ease;
}

.urgency-options label:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.urgency-options input:checked + label {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.audit-form .btn {
  width: 100%;
  border-radius: 999px;
  padding: 16px 22px;
}

@media (max-width: 900px) {
  .audit-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* =========================
   HERO NEWSLETTER
========================= */
.hero-newsletter {
  margin-top: 22px;
  max-width: 460px;
}

.hero-newsletter-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 14px;
}

.hero-newsletter-title strong {
  color: var(--accent);
  font-weight: 700;
}

.newsletter-form {
  text-align: left;
}

.newsletter-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.newsletter-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 4px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(31, 30, 29, 0.25);
  border-radius: 0;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-bottom-color: var(--accent);
  box-shadow: 0 1px 0 0 var(--accent);
}

.newsletter-form input[type="email"]::placeholder {
  color: #A8A498;
}

.newsletter-form .btn {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 12px 24px;
  white-space: nowrap;
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  cursor: pointer;
}

.newsletter-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
  flex: 0 0 auto;
  cursor: pointer;
}

.newsletter-status {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
}

.newsletter-status:empty {
  display: none;
}

.newsletter-status.is-success {
  color: #2F855A;
}

.newsletter-status.is-error {
  color: #C0392B;
}

@media (max-width: 900px) {
  .newsletter-row {
    flex-wrap: wrap;
  }

  .newsletter-form input[type="email"],
  .newsletter-form .btn {
    flex: 1 1 100%;
  }
}

/* =========================
   MINI CLOSING CTA
========================= */
.cta-mini {
  text-align: center;
  padding-top: 40px;
}

.cta-mini .audit-steps {
  display: inline-block;
  text-align: left;
  margin: 0 auto 30px;
}

/* =========================
   ACCESSIBILITY
========================= */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .client-logo-track {
    animation: none;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.apply-title {
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.apply-title-light {
  font-weight: 600;
}

.apply-title-strong {
  font-weight: 800;
  letter-spacing: -0.8px;
}

.apply-sub {
  color: var(--text);
  letter-spacing: 0.2px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.apply-sub strong {
  letter-spacing: 0.25px;
}

.apply-form .btn {
  margin-top: 8px;
}

.apply-title-icon {
  color: var(--accent);
  margin-right: 8px;
}

/* =========================
   THANK YOU PAGE
========================= */
.thankyou-page {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 72px 0 36px;
}

.thankyou-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 36px 38px;
  background: linear-gradient(180deg, #FFFFFF, #FAF9F5);
  border: 1px solid var(--ink-border);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(31,30,29,0.1);
}

.thankyou-check-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
}

.thankyou-check-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,119,87,0.18), rgba(217,119,87,0.04));
  border: 1px solid rgba(217,119,87,0.18);
  animation: thankyouPulse 2.2s ease-in-out infinite;
}

.thankyou-check {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: rgba(217,119,87,0.1);
  border: 1px solid rgba(217,119,87,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(217,119,87,0.1);
}

.thankyou-check-svg {
  width: 52px;
  height: 52px;
  transform: rotate(-90deg);
}

.thankyou-check-circle {
  stroke: rgba(217,119,87,0.3);
  stroke-width: 1.5;
}

.thankyou-check-path {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.7s ease forwards 0.2s;
  transform: rotate(90deg);
  transform-origin: center;
}

.thankyou-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.thankyou-title {
  margin: 0 0 16px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.95;
  letter-spacing: -1px;
  text-align: center;
}

.thankyou-title-script {
  display: block;
  font-family: 'Great Vibes', cursive;
  color: var(--accent);
  font-weight: 400;
  line-height: 0.95;
  margin-top: 6px;
}

.thankyou-text {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.thankyou-accent {
  margin: 0 0 24px;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

.thankyou-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.thankyou-loading span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: loadingDots 1.2s infinite ease-in-out;
}

.thankyou-loading span:nth-child(2) {
  animation-delay: 0.15s;
}

.thankyou-loading span:nth-child(3) {
  animation-delay: 0.3s;
}

.thankyou-btn {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  justify-content: center;
  display: inline-flex;
}

.thankyou-footer {
  padding: 0 0 24px;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes thankyouPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes loadingDots {
  0%, 80%, 100% {
    transform: scale(0.7);
    opacity: 0.35;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .thankyou-page {
    min-height: auto;
    padding: 56px 0 28px;
  }

  .thankyou-card {
    padding: 38px 22px 30px;
  }

  .thankyou-title {
    line-height: 1;
  }
}
/* =========================
   Google font
========================= */

.google-font {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  opacity: 0.95;
}

/* =========================
   CONTENT PAGES
   Long-form service / industry / case pages. The homepage does not use these.
========================= */
/* Content-page hero is centred as a block. The homepage hero stays as it is,
   because it is a two-column layout with the audit form beside it. */
.page-hero {
  padding: 56px 0 40px;
  text-align: center;
}
.page-hero h1 {
  margin: 0 auto 16px;
  font-size: clamp(34px, 4.6vw, 52px);
  letter-spacing: -0.5px;
  line-height: 1.15;
  /* The global h1 caps at 12ch for the homepage hero, which breaks these
     longer service titles across three lines. */
  max-width: 20ch;
}
.page-hero .lede {
  margin: 0 auto;
  max-width: 680px;
  font-size: 19px;
  color: var(--muted);
}
.page-hero .page-hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.breadcrumb {
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
/* Inside the centred hero the trail centres with everything else. */
.page-hero .breadcrumb ol {
  justify-content: center;
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--line);
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb [aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

/* Article + sidebar. Single column until there is room for a real side rail. */
.content-layout {
  display: block;
}
@media (min-width: 1000px) {
  /* Only pages that actually have a TOC get the side rail; otherwise the
     second column would just be empty space. */
  .content-layout.has-toc {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 268px;
    gap: 64px;
    align-items: start;
  }
  .content-layout.has-toc > .prose {
    grid-column: 1;
    grid-row: 1;
    /* The grid column sets the width; the article fills the container. */
    max-width: none;
  }
  .content-layout.has-toc > .toc {
    grid-column: 2;
    grid-row: 1;
    position: sticky;
    top: 96px;
    margin-bottom: 0;
  }

  /* No side rail: the article spans the full container so tables and grids
     get the same width as the homepage, while running text keeps a readable
     measure. */
  .content-layout:not(.has-toc) > .prose {
    max-width: none;
  }
  .content-layout:not(.has-toc) > .prose > p,
  .content-layout:not(.has-toc) > .prose > h2,
  .content-layout:not(.has-toc) > .prose > h3,
  .content-layout:not(.has-toc) > .prose > ul,
  .content-layout:not(.has-toc) > .prose > ol,
  .content-layout:not(.has-toc) > .prose > .callout {
    max-width: 880px;
  }
}

/* Table of contents */
.toc {
  background: var(--surface-2);
  border: 1px solid var(--ink-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 40px;
}
.toc h2 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
}
.toc ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.toc li + li {
  margin-top: 8px;
}
.toc li::marker {
  color: var(--accent);
}
.toc a {
  color: var(--muted);
}
.toc a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Long-form body copy */
.prose {
  max-width: 880px;
  font-size: 17px;
  color: var(--text);
}
.prose > * + * {
  margin-top: 18px;
}
.prose h2 {
  margin: 52px 0 4px;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.3px;
  scroll-margin-top: 90px;
}
.prose h3 {
  margin: 34px 0 4px;
  font-size: 21px;
  scroll-margin-top: 90px;
}
.prose p {
  color: var(--muted);
  line-height: 1.75;
}
.prose strong {
  color: var(--text);
}
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose ul,
.prose ol {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.75;
}
.prose li + li {
  margin-top: 8px;
}
.prose li::marker {
  color: var(--accent);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.prose th {
  background: var(--surface-2);
  font-weight: 700;
}
.prose td {
  color: var(--muted);
}
/* Tables must scroll on their own instead of widening the page. */
.table-scroll {
  overflow-x: auto;
}

/* Highlighted aside inside prose */
.callout {
  border: 1px solid var(--accent-border);
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 18px 20px;
}
.callout p {
  margin: 0;
  color: var(--text);
}
.callout p + p {
  margin-top: 10px;
}
.callout strong {
  color: var(--accent);
}

/* Deliverables checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.7;
}
.checklist li + li {
  margin-top: 10px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  width: 5px;
  height: 8px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Service hub cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px 24px 22px;
}
.service-card-icon {
  margin-bottom: 18px;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.service-card p {
  /* Push the link to the bottom so cards in a row line up. */
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
}
.service-card .service-card-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
}
.service-card .service-card-more span {
  transition: transform 0.25s ease;
}
.service-card:hover .service-card-more span {
  transform: translateX(4px);
}
.service-card:hover .icon-shell {
  transform: translateY(-2px);
  border-color: rgba(217, 119, 87, 0.45);
}

/* "Related services" strip at the end of a page */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.related-links a,
.related-links > li > span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--ink-border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 15px;
  color: var(--muted);
  transition: 0.2s ease;
}
.related-links a:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}

@media (max-width: 720px) {
  .page-hero {
    padding: 40px 0 24px;
  }
  .prose {
    font-size: 16px;
  }
}

/* Full-width block between prose sections (card grids, wide tables) */
.wide-block {
  margin-top: 32px;
}
.wide-block--lead {
  margin-top: 0;
  margin-bottom: 56px;
}
.section-lead {
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.3px;
}
.section-lead + .section-lead-sub {
  margin: -12px 0 22px;
  color: var(--muted);
  max-width: 720px;
}
/* The lead block sits directly under the centred hero and above a symmetric
   card grid, so it centres too. */
.wide-block--lead {
  text-align: center;
}
.wide-block--lead .section-lead {
  margin: 0 0 8px;
}
.wide-block--lead .section-lead + .section-lead-sub {
  margin: 0 auto 26px;
}
.wide-block--lead .service-grid {
  text-align: left;
}

/* =========================
   GBP AUDIT TOOL
   Client-side self-audit on /araclar/...
========================= */
.audit-tool {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 1000px) {
  .audit-tool {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
  }
  .audit-result {
    position: sticky;
    top: 96px;
  }
}

.audit-group {
  border: 1px solid var(--ink-border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 8px 24px 24px;
  margin: 0 0 20px;
}
.audit-group legend {
  padding: 0 10px;
  margin-left: -10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.audit-q + .audit-q {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.audit-q-title {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.45;
}
.audit-q-num {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}
.audit-q.is-answered .audit-q-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.audit-q-help {
  margin: 0 0 12px 34px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.audit-q-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 34px;
}
.audit-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  color: var(--muted);
  cursor: pointer;
  transition: 0.18s ease;
}
.audit-option:hover {
  border-color: var(--accent-border);
  background: rgba(217, 119, 87, 0.04);
}
.audit-option input {
  accent-color: var(--accent);
  margin: 0;
}
.audit-option:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
  font-weight: 600;
}

/* Result panel */
.audit-result {
  border: 1px solid var(--ink-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #FFFFFF, var(--surface-2));
  padding: 24px;
  box-shadow: 0 12px 30px rgba(31, 30, 29, 0.05);
}
.audit-score {
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.audit-score-value {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--accent);
}
.audit-score-value small {
  font-size: 20px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
}
.audit-score-progress {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.audit-bar + .audit-bar {
  margin-top: 14px;
}
.audit-bar-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.audit-bar-head strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.audit-bar-track {
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.audit-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.35s ease;
}
.audit-bar.is-weak .audit-bar-fill {
  background: #C0553A;
}
.audit-bar.is-strong .audit-bar-fill {
  background: #22A35D;
}

.audit-verdict {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}
.audit-verdict strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
}
.audit-verdict p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}
.audit-cta {
  width: 100%;
  margin-top: 18px;
  border-radius: 999px;
}

/* Advice block below the tool */
.audit-advice {
  margin-top: 56px;
}
.audit-advice > h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.3px;
  margin: 0 0 20px;
}
.audit-advice-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.audit-advice-item {
  border: 1px solid var(--ink-border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  background: var(--surface);
  padding: 20px 22px;
}
.audit-advice-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.4;
}
.audit-advice-item p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.audit-advice-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

/* `hidden` must win over the display rules above (.btn is inline-flex). */
[hidden] {
  display: none !important;
}

/* Case study cards and pull quote */
.case-card-meta {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent);
}
.case-quote {
  margin: 32px 0 0;
  padding: 22px 24px;
  border-left: 3px solid var(--accent);
  background: var(--surface-2);
  border-radius: 12px;
}
.case-quote p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
}
.case-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-style: normal;
  color: var(--muted);
}

/* Footer phone — shown only where a locale defines one (currently TR). */
.footer-phone {
  font-weight: 700;
  color: var(--text);
}
.footer-phone:hover {
  color: var(--accent);
}
