@charset "UTF-8";
/* ==========================================================================
   NEV-A DENT — Ortak Stil Dosyası
   assets/css/style.css
   --------------------------------------------------------------------------
   TEMA DEĞİŞTİRME:
   Aşağıda iki tema bloğu var. Şu an MAVİ TEMA aktif.
   Yeşile geçmek için: MAVİ bloğu yorum satırına al, YEŞİL bloğun yorumunu kaldır.
   Değişken isimleri iki temada da aynı — başka hiçbir yeri değiştirmeniz gerekmez.
   ========================================================================== */

/* ==========================================================================
   1) TEMA — MAVİ  (AKTİF)
   ========================================================================== */
:root {
  --bg: #f1f6fb; /* sayfa zemini */
  --paper: #ffffff; /* kart zemini */
  --tint: #e4eef8; /* yumuşak vurgu zemini */
  --ink: #0b1f3a; /* ana metin / koyu lacivert */
  --ink-2: #2d4665; /* ikincil metin */
  --muted: #6d839e; /* soluk metin */
  --brand: #1668c4; /* ana marka rengi */
  --brand-deep: #0e4b93; /* koyu ton (hover) */
  --brand-soft: #8fc9f2; /* açık vurgu */
  --dark: #08182e; /* koyu bölüm zemini */
  --dark-2: #0e2542;
  --on-dark: #e6eff8; /* koyu zemin üzeri metin */
  --line: rgba(11, 31, 58, 0.13);
  --line-2: rgba(11, 31, 58, 0.075);
  --ring: rgba(22, 104, 196, 0.16);
}

/* ==========================================================================
   1-B) TEMA — YEŞİL  (PASİF — kullanmak için yorumu kaldırın, üsttekini yoruma alın)
   ==========================================================================
:root{
  --bg:#F3F6F4;
  --paper:#FFFFFF;
  --tint:#E4EFEA;
  --ink:#0B211B;
  --ink-2:#2E4A42;
  --muted:#6B827B;
  --brand:#0E7A57;
  --brand-deep:#08553B;
  --brand-soft:#8FE9C6;
  --dark:#08170F;
  --dark-2:#0E2A1F;
  --on-dark:#E9F4EF;
  --line:rgba(11,33,27,.13);
  --line-2:rgba(11,33,27,.075);
  --ring:rgba(14,122,87,.16);
}
   ========================================================================== */

/* ==========================================================================
   2) TASARIM TOKENLARI (temadan bağımsız)
   ========================================================================== */
:root {
  --ff-display: 'Fraunces', ui-serif, Georgia, 'Times New Roman', serif;
  --ff-body:
    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif;

  --step--1: clamp(0.78rem, 0.76rem + 0.12vw, 0.86rem);
  --step-0: clamp(0.95rem, 0.92rem + 0.18vw, 1.05rem);
  --step-1: clamp(1.1rem, 1.03rem + 0.35vw, 1.3rem);
  --step-2: clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem);
  --step-3: clamp(1.7rem, 1.4rem + 1.4vw, 2.6rem);
  --step-4: clamp(2.1rem, 1.55rem + 2.6vw, 3.9rem);

  --wrap: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --sec: clamp(4.2rem, 8vw, 6.8rem);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --hdr: 68px;
  --ease: cubic-bezier(0.22, 0.75, 0.28, 1);

  /* Gölgeler bilinçli olarak çok hafif tutuldu — hairline çizgiler taşıyor */
  --sh-1: 0 1px 2px rgba(11, 31, 58, 0.04);
  --sh-2: 0 1px 3px rgba(11, 31, 58, 0.05);
}

/* ==========================================================================
   3) TEMEL
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}
body.is-locked {
  overflow: hidden;
  touch-action: none;
}
img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-variation-settings: 'opsz' 96;
}
p {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
:focus-visible {
  outline: 2.5px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow {
  max-width: 900px;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 0 0 10px 0;
}
.skip:focus {
  left: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
   4) ORTAK PARÇALAR
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}
.eyebrow::before {
  width: 24px;
  height: 9px;
  border-radius: 9px 9px 2px 2px;
  flex: none;
}
.sec-head {
  max-width: 56ch;
}
.sec-head h2 {
  font-size: var(--step-3);
}
.sec-head p {
  margin-top: 1rem;
  color: var(--ink-2);
}
.sec-head--center {
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
}
.sec-head--center p {
  margin-inline: auto;
}

.btn {
  --bg-btn: var(--brand);
  --fg: #fff;
  --bd: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.55rem;
  border-radius: 100px;
  border: 1.5px solid var(--bd);
  background: var(--bg-btn);
  color: var(--fg);
  font-weight: 700;
  font-size: var(--step-0);
  letter-spacing: -0.01em;
  cursor: pointer;
  min-height: 50px;
  transition:
    background 0.28s var(--ease),
    color 0.28s,
    border-color 0.28s,
    transform 0.28s var(--ease);
}
.btn:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--ghost {
  --bg-btn: transparent;
  --fg: var(--ink);
  --bd: var(--line);
}
.btn--ghost:hover {
  background: var(--paper);
  border-color: var(--brand);
  color: var(--brand);
}
.btn--light {
  --bg-btn: #fff;
  --fg: var(--ink);
}
.btn--light:hover {
  background: var(--tint);
}
.btn--wa {
  --bg-btn: #1fa855;
}
.btn--wa:hover {
  background: #17853f;
}
.btn--sm {
  padding: 0.65rem 1.1rem;
  font-size: var(--step--1);
  min-height: 42px;
}
.btn--block {
  width: 100%;
}
.btn svg {
  flex: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--paper);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink-2);
}

/* ==========================================================================
   5) SCROLL İLERLEME + HEADER
   ========================================================================== */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  z-index: 120;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(
    90deg,
    var(--brand-soft),
    var(--brand) 60%,
    var(--brand-deep)
  );
}
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--hdr);
  display: flex;
  align-items: center;
}
.hdr::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(241, 246, 251, 0.88);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-2);
  transition: opacity 0.35s var(--ease);
}
.hdr.is-stuck::before {
  opacity: 1;
}
.hdr .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}
.brand__mark {
  width: 148px;
  flex: none;
}
.brand__txt {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
}
.brand__sub {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-top: 3px;
}

.nav {
  display: none;
}
@media (min-width: 1000px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
  }
  .nav a {
    position: relative;
    padding: 0.55rem 0.85rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--ink-2);
    transition:
      color 0.22s,
      background 0.22s;
  }
  .nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.3rem;
    translate: -50% 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
    opacity: 0;
    scale: 0.4;
    transition:
      opacity 0.25s var(--ease),
      scale 0.25s var(--ease);
  }
  .nav a:hover {
    color: var(--ink);
    background: var(--tint);
  }
  .nav a.is-active {
    color: var(--brand);
  }
  .nav a.is-active::after {
    opacity: 1;
    scale: 1;
  }
  .hdr__cta {
    display: inline-flex;
  }
}
.hdr__cta {
  display: none;
}

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  cursor: pointer;
  transition: border-color 0.25s;
}
.burger:hover {
  border-color: var(--brand);
}
.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.38s var(--ease),
    width 0.38s var(--ease);
}
.burger span:nth-child(1) {
  width: 20px;
}
.burger span:nth-child(2) {
  width: 14px;
  align-self: flex-start;
}
.burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.burger[aria-expanded='true'] span:nth-child(2) {
  width: 20px;
  transform: translateY(-3.5px) rotate(-45deg);
}
@media (min-width: 1000px) {
  .burger {
    display: none;
  }
}

/* ==========================================================================
   6) MOBİL SIDEBAR
   ========================================================================== */
.scrim {
  position: fixed;
  inset: 0;
  z-index: 108;
  background: rgba(8, 24, 46, 0.44);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s;
}
.scrim.is-open {
  opacity: 1;
  visibility: visible;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: min(86vw, 384px);
  height: 100vh;
  height: 100dvh;
  background: var(--paper);
  border-left: 1px solid var(--line-2);
  transform: translateX(101%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: calc(env(safe-area-inset-top) + 1.1rem) 1.4rem
    calc(env(safe-area-inset-bottom) + 1.4rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}
.drawer__close {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.22s,
    border-color 0.22s;
}
.drawer__close:hover {
  background: var(--tint);
  border-color: var(--brand);
}
.drawer__nav {
  display: flex;
  flex-direction: column;
}
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0.2rem;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line-2);
  opacity: 0;
  transform: translateX(20px);
  transition:
    color 0.22s,
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
}
.drawer.is-open .drawer__nav a {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.08s + var(--i) * 0.05s);
}
.drawer__nav a span {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 700;
}
.drawer__nav a:hover,
.drawer__nav a.is-active {
  color: var(--brand);
}
.drawer__foot {
  margin-top: auto;
  padding-top: 1.8rem;
  display: grid;
  gap: 0.6rem;
}
.drawer__meta {
  margin-top: 1.2rem;
  font-size: var(--step--1);
  color: var(--muted);
  line-height: 1.8;
}
.drawer__meta strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

/* --- Drawer Dropdown (Mobil Hizmetler) --- */
.drawer-dropdown {
  border-bottom: 1px solid var(--line-2);
}
.drawer-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0.2rem;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
  opacity: 0;
  transform: translateX(20px);
  transition:
    color 0.22s,
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
}
.drawer-dropdown summary::marker,
.drawer-dropdown summary::-webkit-details-marker {
  display: none;
}
.drawer.is-open .drawer-dropdown summary {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.08s + var(--i) * 0.05s);
}
.drawer-dropdown summary span {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.drawer-dropdown summary .dd-icon {
  transition: transform 0.3s var(--ease);
}
.drawer-dropdown[open] summary .dd-icon {
  transform: rotate(180deg);
}
.drawer-dropdown-content {
  padding: 0.25rem 0 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.drawer-dropdown-content a {
  font-family: var(--ff-body) !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  padding: 0.4rem 0.8rem !important;
  border-bottom: none !important;
  border-radius: 8px;
  color: var(--ink-2);
  opacity: 1 !important;
  transform: none !important;
  transition: background 0.2s, color 0.2s;
}
.drawer-dropdown-content a:hover {
  background: var(--tint);
  color: var(--brand);
}
.drawer-dropdown-content a:last-child {
  font-weight: 700 !important;
  color: var(--brand);
}

/* ==========================================================================
   7) HERO (anasayfa)
   ========================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--hdr) + clamp(2.2rem, 7vw, 4.2rem));
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      60% 55% at 82% 8%,
      color-mix(in srgb, var(--brand-soft) 42%, transparent),
      transparent 70%
    ),
    radial-gradient(
      55% 50% at 6% 88%,
      color-mix(in srgb, var(--tint) 92%, transparent),
      transparent 72%
    );
}
.hero__grid {
  display: grid;
  gap: clamp(2.2rem, 5vw, 3.4rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.06fr 0.94fr;
    gap: clamp(2.8rem, 5vw, 4.2rem);
  }
}
.tagpill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem 0.4rem 0.45rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink-2);
}
.tagpill b {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.6rem;
}
.hero h1 {
  font-size: var(--step-4);
  margin-top: 1.2rem;
}
.hero h1 .lead {
  display: block;
  color: var(--brand);
  position: relative;
  width: fit-content;
  max-width: 100%;
}
.hero h1 .lead::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.1em;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--brand-soft), transparent);
  transform-origin: 0 50%;
  transform: scaleX(0);
  animation: swash 1s 0.6s var(--ease) forwards;
}
@keyframes swash {
  to {
    transform: scaleX(1);
  }
}
.hero__lede {
  margin-top: 1.4rem;
  font-size: var(--step-1);
  color: var(--ink-2);
  max-width: 46ch;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.9rem;
}
.hero__actions .btn {
  flex: 1 1 auto;
}
@media (min-width: 520px) {
  .hero__actions .btn {
    flex: 0 0 auto;
  }
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 1.8rem;
  font-size: var(--step--1);
  color: var(--muted);
  font-weight: 600;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero__trust svg {
  color: var(--brand);
}

.arch {
  position: relative;
  border-radius: min(50vw, 300px) min(50vw, 300px) var(--r-lg) var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/4.6;
  background: linear-gradient(
    165deg,
    var(--brand),
    var(--brand-deep) 55%,
    var(--dark)
  );
  border: 1px solid var(--line-2);
  isolation: isolate;
  margin: 0;
}
.arch::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(8, 24, 46, 0.5), transparent 44%);
}
.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.arch__mono {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 0;
  font-family: var(--ff-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.13);
}
.arch__cap {
  position: absolute;
  z-index: 3;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.arch__cap b {
  font-size: 0.9rem;
  display: block;
}
.arch__cap small {
  font-size: 0.72rem;
  opacity: 0.8;
}
.arch__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-soft);
  flex: none;
  box-shadow: 0 0 0 0 rgba(143, 201, 242, 0.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(143, 201, 242, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(143, 201, 242, 0);
  }
}

/* ==========================================================================
   8) İSTATİSTİK / İLETİŞİM ŞERİDİ
   ========================================================================== */
.band {
  position: relative;
  z-index: 3;
  margin-top: clamp(1rem, 3vw, 1.8rem);
}
.band__card {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  padding: clamp(1.3rem, 3vw, 2rem);
  display: grid;
  gap: clamp(1.1rem, 3vw, 1.8rem);
}
@media (min-width: 840px) {
  .band__card {
    grid-template-columns: auto 1px 1fr;
    align-items: center;
  }
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.stat__n {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat__n em {
  font-style: normal;
  color: var(--brand);
}
.stat__l {
  font-size: var(--step--1);
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.35rem;
}
.band__div {
  background: var(--line-2);
  width: 100%;
  height: 1px;
}
@media (min-width: 840px) {
  .band__div {
    height: 70px;
    width: 1px;
  }
}
.contacts {
  display: grid;
  gap: 0.6rem;
}
@media (min-width: 560px) {
  .contacts {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--bg);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.contact:hover {
  border-color: var(--brand);
  background: var(--paper);
}
.contact__i {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--brand);
}
.contact small {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.contact b {
  font-size: 0.88rem;
  font-weight: 700;
  word-break: break-word;
}

/* ==========================================================================
   9) BÖLÜMLER
   ========================================================================== */
.sec {
  padding-block: var(--sec);
}
.sec2 {
  padding-block: 40px;
}
.sec--paper {
  background: var(--paper);
  border-block: 1px solid var(--line-2);
}
.sec--tint {
  background: var(--tint);
  border-block: 1px solid var(--line-2);
}
.sec--ink {
  background: var(--dark);
  color: var(--on-dark);
}
.sec--ink h2,
.sec--ink h3,
.sec--ink h4 {
  color: #fff;
}
.sec--ink .sec-head p {
  color: #9fb4cc;
  color: color-mix(in srgb, var(--on-dark) 72%, transparent);
}
.sec--ink .eyebrow {
  color: var(--brand-soft);
}
.sec--ink .eyebrow::before {
  background: linear-gradient(180deg, #fff, var(--brand-soft));
}

/* ==========================================================================
   10) TEDAVİ KARTLARI
   ========================================================================== */
.cards {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .cards--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  position: relative;
  display: block;
  padding: 1.4rem 1.3rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s,
    background 0.35s;
}
.sec--paper .card {
  background: var(--bg);
}
.sec--tint .card,
.sec--ink .card {
  background: var(--paper);
}
.card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  background: var(--paper);
}
.card:hover::before {
  transform: scaleX(1);
}
.card__i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--brand);
  border-radius: 25px 25px 9px 9px;
  background: var(--tint);
  border: 1px solid var(--line-2);
  margin-bottom: 1rem;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}
.card:hover .card__i {
  background: var(--brand);
  color: #fff;
}
.card h3 {
  font-size: var(--step-1);
}
.card p {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.68;
}
.card__link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
}
.card__link svg {
  transition: transform 0.3s var(--ease);
}
.card:hover .card__link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   11) RENK SKALASI ARACI
   ========================================================================== */
.shade {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3.2rem);
  align-items: center;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}
@media (min-width: 940px) {
  .shade {
    grid-template-columns: 1fr 0.95fr;
  }
}
.shade__stage {
  position: relative;
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem) clamp(1.1rem, 3vw, 1.9rem);
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.shade__teeth {
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
}
.shade__readout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}
.shade__val {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
}
.shade__val small {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-soft);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.shade__delta {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--on-dark) 70%, transparent);
  text-align: right;
  line-height: 1.5;
}
.shade__delta b {
  color: var(--brand-soft);
  font-size: 1.5rem;
  font-family: var(--ff-display);
  display: block;
  line-height: 1;
}
.shade__slider {
  width: 100%;
  margin-top: 1.4rem;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.shade__slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 100px;
  background: linear-gradient(90deg, #d8c094, #efe3cb 45%, #fdfcf7);
}
.shade__slider::-moz-range-track {
  height: 6px;
  border-radius: 100px;
  background: linear-gradient(90deg, #d8c094, #efe3cb 45%, #fdfcf7);
}
.shade__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -9px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--brand);
}
.shade__slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--brand);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1.1rem;
}
.chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: color-mix(in srgb, var(--on-dark) 82%, transparent);
  border-radius: 100px;
  padding: 0.4rem 0.8rem;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.22s,
    color 0.22s,
    border-color 0.22s;
}
.chip:hover {
  border-color: var(--brand-soft);
}
.chip[aria-pressed='true'] {
  background: var(--brand-soft);
  color: var(--dark);
  border-color: var(--brand-soft);
}
.shade__note {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--on-dark) 55%, transparent);
  line-height: 1.6;
  max-width: 46ch;
}
.ticks {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.ticks li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.94rem;
}
.ticks svg {
  flex: none;
  margin-top: 4px;
  color: var(--brand-soft);
}
.sec--ink .ticks li {
  color: color-mix(in srgb, var(--on-dark) 84%, transparent);
}
.sec .ticks svg {
  color: var(--brand);
}

/* ==========================================================================
   12) ŞİKÂYET YÖNLENDİRİCİ (interaktif)
   ========================================================================== */
.router {
  margin-top: clamp(2rem, 5vw, 2.8rem);
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 900px) {
  .router {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}
.router__opts {
  display: grid;
  gap: 0.55rem;
}
@media (min-width: 520px) {
  .router__opts {
    grid-template-columns: 1fr 1fr;
  }
}
.router__opt {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-align: left;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--paper);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    border-color 0.22s,
    background 0.22s,
    transform 0.22s var(--ease);
}
.router__opt:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.router__opt[aria-pressed='true'] {
  border-color: var(--brand);
  background: var(--tint);
  color: var(--brand-deep);
}
.router__opt i {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--tint);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 0.9rem;
}
.router__opt[aria-pressed='true'] i {
  background: var(--brand);
  color: #fff;
}
.router__res {
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  background: var(--paper);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  min-height: 220px;
}
.router__res h3 {
  font-size: var(--step-2);
  margin-top: 0.35rem;
}
.router__tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 800;
}
.router__res p {
  margin-top: 0.7rem;
  color: var(--ink-2);
  font-size: 0.94rem;
  line-height: 1.7;
}
.router__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.1rem;
}
.router__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}
.router__empty {
  color: var(--muted);
  font-size: 0.94rem;
  display: grid;
  place-items: center;
  min-height: 180px;
  text-align: center;
  line-height: 1.7;
}

/* ==========================================================================
   13) DİŞ HARİTASI (interaktif — hizmetler sayfası)
   ========================================================================== */
.toothmap {
  display: grid;
  gap: 1.6rem;
  margin-top: clamp(2rem, 5vw, 2.8rem);
}
@media (min-width: 920px) {
  .toothmap {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}
.toothmap__stage {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: clamp(1rem, 3vw, 1.8rem);
}
.toothmap__svg {
  width: 100%;
  height: auto;
}
.toothmap__svg .t {
  fill: #fbf8f1;
  stroke: var(--line);
  stroke-width: 1.2;
  cursor: pointer;
  transition:
    fill 0.2s,
    stroke 0.2s;
}
.toothmap__svg .t:hover {
  fill: var(--brand-soft);
  stroke: var(--brand);
}
.toothmap__svg .t.is-sel {
  fill: var(--brand);
  stroke: var(--brand-deep);
}
.toothmap__svg .n {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 700;
  fill: var(--muted);
  text-anchor: middle;
  pointer-events: none;
}
.toothmap__lbl {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  fill: var(--muted);
  text-anchor: middle;
}
.toothmap__info {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: clamp(1.2rem, 3vw, 1.7rem);
  min-height: 230px;
}
.toothmap__no {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.toothmap__info h3 {
  font-size: var(--step-2);
  margin-top: 0.4rem;
}
.toothmap__info p {
  color: var(--ink-2);
  font-size: 0.93rem;
  margin-top: 0.6rem;
  line-height: 1.7;
}
.toothmap__list {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}
.toothmap__list li {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--ink-2);
}
.toothmap__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex: none;
}

/* ==========================================================================
   14) ÖZELLİKLER / SÜREÇ
   ========================================================================== */
.feats {
  display: grid;
  gap: 1.5rem 2.3rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 700px) {
  .feats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-2);
}
.feat__i {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 20px 20px 8px 8px;
  background: var(--tint);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
}
.feat h3 {
  font-size: var(--step-1);
}
.feat p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.68;
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 820px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step {
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  background: var(--paper);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s;
}
.step:hover {
  transform: translateY(-3px);
  border-color: var(--line);
}
.step__n {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}
.step__n::after {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--line);
}
.step h3 {
  font-size: var(--step-1);
}
.step p {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.66;
}

/* ==========================================================================
   15) HEKİMLER
   ========================================================================== */
.docs {
  display: grid;
  gap: 1.2rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 640px) {
  .docs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .docs {
    grid-template-columns: repeat(3, 1fr);
  }
}
.doc {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s;
}
.doc:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}
.doc__ph {
  aspect-ratio: 4/3.4;
  background: linear-gradient(165deg, var(--tint), var(--bg));
  position: relative;
  overflow: hidden;
}
.doc__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--ease);
}
.doc:hover .doc__ph img {
  transform: scale(1.04);
}
.doc__ph::after {
  content: 'NA';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(11, 31, 58, 0.12);
  z-index: 0;
}
.doc__b {
  padding: 1.25rem;
}
.doc__b h3 {
  font-size: var(--step-1);
}
.doc__role {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.doc__b p {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.66;
}

/* ==========================================================================
   16) YORUM CAROUSEL (tek sıra)
   ========================================================================== */
.carousel {
  margin-top: clamp(2rem, 5vw, 3rem);
}
.carousel__viewport {
  overflow: hidden;
}
.carousel__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 100%;
  padding-inline: 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media (min-width: 700px) {
  .carousel__slide {
    flex-basis: 50%;
  }
}
@media (min-width: 1050px) {
  .carousel__slide {
    flex-basis: 33.3333%;
  }
}
.carousel__track {
  margin-inline: -0.5rem;
}
.quote {
  height: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.sec--paper .quote {
  background: var(--bg);
}
.quote__stars {
  display: flex;
  gap: 2px;
  color: #e0a32e;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.quote blockquote {
  margin: 0;
}
.quote p {
  font-size: 0.94rem;
  line-height: 1.72;
  color: var(--ink-2);
}
.quote__who {
  margin-top: auto;
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.quote__av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  flex: none;
}
.quote__who b {
  display: block;
  font-size: 0.88rem;
}
.quote__who small {
  color: var(--muted);
  font-size: 0.76rem;
}
.carousel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
}
.carousel__dots {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 100px;
  border: 0;
  background: var(--line);
  cursor: pointer;
  transition:
    width 0.3s var(--ease),
    background 0.3s;
}
.carousel__dot[aria-current='true'] {
  width: 26px;
  background: var(--brand);
}
.carousel__arrows {
  display: flex;
  gap: 0.45rem;
}
.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  transition:
    background 0.22s,
    border-color 0.22s,
    color 0.22s;
}
.carousel__btn:hover:not(:disabled) {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* ==========================================================================
   17) SSS — ortalanmış
   ========================================================================== */
.faq {
  max-width: 860px;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  display: grid;
  gap: 0.7rem;
}
.faq__item {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.faq__item:has(.faq__q[aria-expanded='true']) {
  border-color: var(--brand);
}
.faq__h {
  margin: 0;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-display);
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.25s;
}
.faq__q:hover {
  color: var(--brand);
}
.faq__num {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--tint);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 800;
  transition:
    background 0.3s,
    color 0.3s;
}
.faq__q[aria-expanded='true'] .faq__num {
  background: var(--brand);
  color: #fff;
}
.faq__txt {
  flex: 1;
}
.faq__ic {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.4s var(--ease),
    color 0.3s;
}
.faq__ic::before,
.faq__ic::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.35s var(--ease),
    opacity 0.25s;
}
.faq__ic::before {
  width: 11px;
  height: 1.8px;
}
.faq__ic::after {
  width: 1.8px;
  height: 11px;
}
.faq__q[aria-expanded='true'] .faq__ic {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: rotate(180deg);
}
.faq__q[aria-expanded='true'] .faq__ic::after {
  transform: scaleY(0);
  opacity: 0;
}
.faq__a {
  overflow: hidden;
  height: 0;
  transition: height 0.4s var(--ease);
}
.faq__a > div {
  padding: 0 1.4rem 1.35rem 3.7rem;
  color: var(--ink-2);
  font-size: 0.94rem;
  line-height: 1.75;
}
.faq__foot {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.faq__foot a {
  color: var(--brand);
  font-weight: 700;
}

/* ==========================================================================
   18) İLETİŞİM / FORM / HARİTA
   ========================================================================== */
.contact-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.4rem);
  margin-top: clamp(2rem, 5vw, 2.8rem);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
  }
}
.form {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: clamp(1.3rem, 3vw, 1.9rem);
}
.form__row {
  display: grid;
  gap: 0;
}
@media (min-width: 560px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
    gap: 0 0.8rem;
  }
}
.field {
  margin-bottom: 0.85rem;
}
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.82rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  font-size: 1rem;
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%236D839E' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--paper);
  box-shadow: 0 0 0 4px var(--ring);
}
.form .btn {
  margin-top: 0.4rem;
}
.form__note {
  margin-top: 0.85rem;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

/* Harita — kaymayı önlemek için sabit oran */
.map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--tint);
  aspect-ratio: 16/11;
  width: 100%;
}
@media (min-width: 900px) {
  .map {
    aspect-ratio: 16/10;
  }
}
.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.info-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}
.info {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1.05rem;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
}
.info__i {
  flex: none;
  color: var(--brand);
  margin-top: 2px;
}
.info b {
  display: block;
  font-size: 0.93rem;
}
.info span {
  font-size: 0.85rem;
  color: var(--muted);
}
.info a {
  color: var(--brand);
  font-weight: 600;
}

/* ==========================================================================
   19) İÇ SAYFA BAŞLIĞI
   ========================================================================== */
.page-hero {
  position: relative;
  padding-top: calc(var(--hdr) + clamp(2.4rem, 7vw, 4rem));
  padding-bottom: clamp(2.2rem, 5vw, 3.2rem);
  background: linear-gradient(135deg, var(--tint) 0%, color-mix(in srgb, var(--brand-soft) 15%, var(--tint)) 50%, var(--tint) 100%);
  border-bottom: 1px solid var(--line-2);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(55% 70% at 85% 0%, color-mix(in srgb, var(--brand-soft) 45%, transparent), transparent 68%),
    radial-gradient(40% 50% at 10% 100%, color-mix(in srgb, var(--brand-soft) 20%, transparent), transparent 60%);
}

/* Floating tooth icons — pure CSS, GPU-accelerated, zero JS */
@keyframes tooth-drift-1 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  20%  { transform: translate(40px, -30px) rotate(20deg); }
  40%  { transform: translate(-15px, -50px) rotate(-10deg); }
  60%  { transform: translate(25px, 10px) rotate(15deg); }
  80%  { transform: translate(-30px, -20px) rotate(-8deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes tooth-drift-2 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(-35px, 25px) rotate(-18deg); }
  50%  { transform: translate(20px, 45px) rotate(12deg); }
  75%  { transform: translate(-10px, -15px) rotate(-6deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes tooth-drift-3 {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%  { transform: translate(30px, 35px) rotate(25deg) scale(1.08); }
  66%  { transform: translate(-20px, 10px) rotate(-15deg) scale(0.95); }
  100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

.page-hero__tooth {
  position: absolute;
  z-index: 0;
  opacity: 0.07;
  will-change: transform;
  pointer-events: none;
  color: var(--brand);
  font-size: 28px;
  line-height: 1;
}
/* --- 12 ikonun konumu ve hızları (masaüstü) --- */
.page-hero__tooth:nth-child(1) {
  top: 10%; right: 6%; font-size: 48px;
  animation: tooth-drift-1 8s ease-in-out infinite;
  opacity: 0.08;
}
.page-hero__tooth:nth-child(2) {
  top: 60%; right: 14%; font-size: 32px;
  animation: tooth-drift-2 10s ease-in-out infinite;
  opacity: 0.06;
}
.page-hero__tooth:nth-child(3) {
  top: 15%; left: 4%; font-size: 42px;
  animation: tooth-drift-3 9s ease-in-out infinite;
  opacity: 0.07;
}
.page-hero__tooth:nth-child(4) {
  bottom: 12%; left: 10%; font-size: 26px;
  animation: tooth-drift-1 11s ease-in-out infinite reverse;
  opacity: 0.05;
}
.page-hero__tooth:nth-child(5) {
  top: 35%; right: 28%; font-size: 22px;
  animation: tooth-drift-2 7s ease-in-out infinite;
  opacity: 0.06;
}
.page-hero__tooth:nth-child(6) {
  bottom: 20%; right: 4%; font-size: 38px;
  animation: tooth-drift-3 9.5s ease-in-out infinite;
  opacity: 0.05;
}
.page-hero__tooth:nth-child(7) {
  top: 8%; left: 32%; font-size: 18px;
  animation: tooth-drift-1 12s ease-in-out infinite;
  opacity: 0.06;
}
.page-hero__tooth:nth-child(8) {
  top: 50%; left: 22%; font-size: 34px;
  animation: tooth-drift-2 8.5s ease-in-out infinite reverse;
  opacity: 0.05;
}
.page-hero__tooth:nth-child(9) {
  bottom: 8%; right: 35%; font-size: 20px;
  animation: tooth-drift-3 7.5s ease-in-out infinite;
  opacity: 0.06;
}
.page-hero__tooth:nth-child(10) {
  top: 25%; right: 48%; font-size: 28px;
  animation: tooth-drift-1 10.5s ease-in-out infinite;
  opacity: 0.04;
}
.page-hero__tooth:nth-child(11) {
  top: 70%; left: 40%; font-size: 24px;
  animation: tooth-drift-2 9s ease-in-out infinite reverse;
  opacity: 0.05;
}
.page-hero__tooth:nth-child(12) {
  top: 5%; right: 22%; font-size: 16px;
  animation: tooth-drift-3 11s ease-in-out infinite;
  opacity: 0.06;
}

/* Mobilde son 4'ü gizle (%30 azalt: 12 → 8) */
@media (max-width: 768px) {
  .page-hero__tooth:nth-child(n+9) {
    display: none;
  }
  .page-hero__tooth { font-size: 20px; }
  .page-hero__tooth:nth-child(1) { font-size: 36px; }
  .page-hero__tooth:nth-child(3) { font-size: 30px; }
  .page-hero__tooth:nth-child(6) { font-size: 28px; }
}

.page-hero::after {
  content: none;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__tooth { animation: none !important; }
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}
.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1rem;
}
.crumb a:hover {
  color: var(--brand);
}
.crumb svg {
  opacity: 0.5;
}
.page-hero h1 {
  font-size: var(--step-3);
}
.page-hero p {
  margin-top: 1rem;
  color: var(--ink-2);
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

/* ==========================================================================
   20) BLOG
   ========================================================================== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: clamp(1.8rem, 4vw, 2.4rem);
}
.filter {
  padding: 0.55rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--paper);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition:
    background 0.22s,
    color 0.22s,
    border-color 0.22s;
}
.filter:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.filter[aria-pressed='true'] {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.posts {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.6rem;
}
@media (min-width: 640px) {
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
.post {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s;
}
.post:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}
.post__ph {
  aspect-ratio: 16/10;
  background: linear-gradient(150deg, var(--tint), var(--bg));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.post__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--ease);
}
.post:hover .post__ph img {
  transform: scale(1.04);
}
.post__ph span {
  position: absolute;
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(11, 31, 58, 0.1);
  z-index: 0;
}
.post__cat {
  position: absolute;
  z-index: 2;
  left: 0.8rem;
  top: 0.8rem;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.post__b {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.post__b h3 {
  font-size: var(--step-1);
  line-height: 1.2;
}
.post__b p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.post__more {
  margin-top: auto;
  padding-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
}
.post__more svg {
  transition: transform 0.3s var(--ease);
}
.post:hover .post__more svg {
  transform: translateX(4px);
}
.post--wide {
  grid-column: 1/-1;
}
@media (min-width: 800px) {
  .post--wide {
    flex-direction: row;
  }
  .post--wide .post__ph {
    flex: 0 0 44%;
    aspect-ratio: auto;
  }
  .post--wide .post__b {
    padding: clamp(1.4rem, 3vw, 2.2rem);
    justify-content: center;
  }
  .post--wide h3 {
    font-size: var(--step-2);
  }
}

.pager {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2.5rem;
}
.pager a,
.pager span {
  min-width: 42px;
  height: 42px;
  padding: 0 0.8rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    background 0.22s,
    color 0.22s,
    border-color 0.22s;
}
.pager a:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.pager .is-current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-2);
}
.pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-2);
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.pagination__btn:hover:not(.pagination__btn--disabled) {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--tint);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.06);
}
.pagination__btn--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination__btn svg {
  transition: transform 0.25s var(--ease);
}
.pagination__btn--prev:hover svg {
  transform: translateX(-3px);
}
.pagination__btn--next:hover svg {
  transform: translateX(3px);
}
.pagination__nums {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.pagination__num {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink-2);
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.pagination__num:hover:not(.pagination__num--active) {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}
.pagination__num--active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--brand) 30%, transparent);
}
.pagination__dots {
  min-width: 32px;
  height: 40px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .pagination {
    gap: 0.3rem;
  }
  .pagination__btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.78rem;
  }
  .pagination__num {
    min-width: 36px;
    height: 36px;
    font-size: 0.82rem;
    border-radius: 8px;
  }
  .pagination__dots {
    min-width: 24px;
    height: 36px;
  }
}

/* ==========================================================================
   21) HİZMET DETAY
   ========================================================================== */
.detail {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 1000px) {
  .detail {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}
.prose h2 {
  font-size: var(--step-2);
  margin-top: 2.4rem;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-size: var(--step-1);
  margin-top: 1.8rem;
}
.prose p {
  margin-top: 1rem;
  color: var(--ink-2);
  line-height: 1.8;
}
.prose ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}
.prose ul li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--ink-2);
  line-height: 1.7;
}
.prose ul li::before {
  content: '';
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 0.6rem;
}
.prose ol {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  counter-reset: p;
}
.prose ol li {
  counter-increment: p;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--ink-2);
  line-height: 1.7;
}
.prose ol li::before {
  content: counter(p);
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--tint);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  font-family: var(--ff-body);
}
.callout {
  margin-top: 1.6rem;
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--brand);
  background: var(--tint);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.callout b {
  display: block;
  margin-bottom: 0.35rem;
}
.callout p {
  margin-top: 0;
  font-size: 0.92rem;
}

.tbl {
  width: 100%;
  margin-top: 1.2rem;
  border-collapse: collapse;
  font-size: 0.92rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.tbl th,
.tbl td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
}
.tbl th {
  background: var(--tint);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}
.tbl tr:last-child td {
  border-bottom: 0;
}

.aside {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: calc(var(--hdr) + 1rem);
}
@media (max-width: 999px) {
  .aside {
    position: static;
  }
}
.aside__card {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 1.4rem;
}
.aside__card h3 {
  font-size: var(--step-1);
}
.aside__card p {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.aside__card .btn {
  margin-top: 1rem;
}
.aside__facts {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}
.aside__facts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line-2);
  font-size: 0.88rem;
}
.aside__facts div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.aside__facts dt {
  color: var(--muted);
}
.aside__facts dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}
.aside__links {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.8rem;
}
.aside__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    border-color 0.22s,
    background 0.22s;
}
.aside__links a:hover {
  border-color: var(--brand);
  background: var(--tint);
  color: var(--brand);
}

/* ==========================================================================
   22) HAKKIMIZDA
   ========================================================================== */
.timeline {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: 0;
  position: relative;
  max-width: 820px;
}
.tl {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1.2rem;
  padding-bottom: 2rem;
  position: relative;
}
.tl::before {
  content: '';
  position: absolute;
  left: calc(78px + 0.6rem - 1px);
  top: 0.6rem;
  bottom: 0;
  width: 2px;
  background: var(--line-2);
}
.tl:last-child {
  padding-bottom: 0;
}
.tl:last-child::before {
  display: none;
}
.tl__y {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
  text-align: right;
  position: relative;
}
.tl__y::after {
  content: '';
  position: absolute;
  right: -1.05rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  border: 2px solid var(--paper);
  outline: 1px solid var(--line-2);
}
.tl__b h3 {
  font-size: var(--step-1);
}
.tl__b p {
  margin-top: 0.45rem;
  color: var(--ink-2);
  font-size: 0.93rem;
  line-height: 1.72;
}

.values {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 700px) {
  .values {
    grid-template-columns: repeat(3, 1fr);
  }
}
.value {
  padding: 1.5rem 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
}
.value__n {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tint);
  line-height: 1;
  -webkit-text-stroke: 1px var(--brand-soft);
}
.value h3 {
  font-size: var(--step-1);
  margin-top: 0.7rem;
}
.value p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.gallery {
  display: grid;
  gap: 0.8rem;
  margin-top: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery figure {
  margin: 0;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(150deg, var(--tint), var(--bg));
  border: 1px solid var(--line-2);
  position: relative;
  display: grid;
  place-items: center;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--ease);
}
.gallery figure:hover img {
  transform: scale(1.05);
}
.gallery figcaption {
  position: absolute;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  z-index: 0;
}

/* ==========================================================================
   23) CTA ŞERİDİ
   ========================================================================== */
.cta {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 5vw, 3rem);
  display: grid;
  gap: 1.4rem;
  align-items: center;
}
@media (min-width: 820px) {
  .cta {
    grid-template-columns: 1fr auto;
  }
}
.cta h2 {
  font-size: var(--step-2);
  color: #fff;
}
.cta p {
  margin-top: 0.6rem;
  color: color-mix(in srgb, var(--on-dark) 72%, transparent);
  max-width: 52ch;
}
.cta__act {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.cta .btn--ghost {
  --fg: #fff;
  --bd: rgba(255, 255, 255, 0.25);
}
.cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

/* ==========================================================================
   24) FOOTER
   ========================================================================== */
.ftr {
  background: var(--dark);
  color: #9fb4cc;
  color: color-mix(in srgb, var(--on-dark) 72%, transparent);
  padding-block: clamp(3rem, 7vw, 4.2rem) 2rem;
}
.ftr__grid {
  display: grid;
  gap: 2.1rem;
}
@media (min-width: 760px) {
  .ftr__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}
.ftr h4 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-soft);
  font-weight: 800;
  margin: 0 0 1rem;
}
.ftr a {
  transition: color 0.22s;
}
.ftr a:hover {
  color: #fff;
}
.ftr__links {
  display: grid;
  gap: 0.55rem;
  font-size: 0.92rem;
}
.ftr__brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 36ch;
}
.ftr .brand__name {
  color: #fff;
}
.ftr .brand__sub {
  color: color-mix(in srgb, var(--on-dark) 50%, transparent);
}
.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.socials a:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.ftr__bot {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--on-dark) 50%, transparent);
}

/* ==========================================================================
   25) MOBİL ALT AKSİYON ÇUBUĞU
   ========================================================================== */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  padding: 0.45rem 0.55rem calc(0.45rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--line-2);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.dock.is-on {
  transform: translateY(0);
}
.dock a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0.5rem 0.2rem;
  border-radius: 13px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink-2);
}
.dock a:active {
  background: var(--tint);
}
.dock a.is-primary {
  background: var(--brand);
  color: #fff;
}
.dock svg {
  width: 19px;
  height: 19px;
}
@media (min-width: 1000px) {
  .dock {
    display: none;
  }
}
@media (max-width: 999px) {
  .ftr {
    padding-bottom: calc(2rem + 74px);
  }
}

/* ==========================================================================
   26) REVEAL ANİMASYONLARI
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 85ms);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
[data-reveal='fade'] {
  transform: none;
}
[data-reveal='right'] {
  transform: translateX(-22px);
}
[data-reveal='scale'] {
  transform: scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero h1 .lead::after {
    transform: scaleX(1);
  }
}
.map iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 350px;
  border: 0;
  border-radius: var(--r-md);
}
