@charset "UTF-8";
/* ==========================================================================
   Saygınlar Yol Yardım — tema stil sayfası
   Tek dosya, harici bağımlılık yok. Koyu tema, amber acil vurgusu.
   ========================================================================== */

/* --------------------------------------------------------------- 1. FONT */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ------------------------------------------------------------- 2. TOKENS */

:root {
  /* yüzeyler */
  --bg:         oklch(0.145 0.018 258);
  --bg-deep:    oklch(0.115 0.018 258);
  --surface:    oklch(0.195 0.019 258);
  --surface-2:  oklch(0.235 0.021 258);
  --line:       oklch(0.315 0.022 258);
  --line-soft:  oklch(0.265 0.020 258);

  /* metin */
  --text:       oklch(0.965 0.006 250);
  --text-2:     oklch(0.815 0.014 252);
  --text-3:     oklch(0.665 0.018 254);

  /* marka */
  --brand:      oklch(0.790 0.165 68);
  --brand-2:    oklch(0.700 0.190 45);
  --brand-ink:  oklch(0.200 0.060 60);
  --brand-soft: oklch(0.790 0.165 68 / 0.12);

  /* yardımcı */
  --wa:         oklch(0.760 0.180 152);
  --wa-dark:    oklch(0.680 0.170 152);
  --ok:         oklch(0.780 0.150 155);

  /* ölçü */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-full: 999px;

  --shadow-1: 0 1px 2px oklch(0 0 0 / 0.35);
  --shadow-2: 0 10px 30px -12px oklch(0 0 0 / 0.60);
  --shadow-3: 0 30px 70px -25px oklch(0 0 0 / 0.75);
  --glow:     0 12px 40px -12px oklch(0.790 0.165 68 / 0.55);

  --wrap: 1200px;
  --pad:  clamp(1rem, 4vw, 2rem);
  --sec:  clamp(3.5rem, 9vw, 7rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bar-h: 68px;   /* alt yapışık bar yüksekliği */
}

/* OKLCH desteklemeyen tarayıcılar için yedek palet */
@supports not (color: oklch(0.5 0.1 250)) {
  :root {
    --bg: #12151d; --bg-deep: #0c0f16; --surface: #1a1f2b; --surface-2: #212836;
    --line: #39414f; --line-soft: #2c3442;
    --text: #f4f6fa; --text-2: #c6ccd8; --text-3: #98a1b2;
    --brand: #ffab3d; --brand-2: #f97316; --brand-ink: #3a2408; --brand-soft: rgba(255,171,61,.12);
    --wa: #25d366; --wa-dark: #1eb356; --ok: #34d399;
  }
}

/* -------------------------------------------------------------- 3. RESET */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: var(--bar-h);        /* mobildeki alt yapışık bar payı */
}
@media (min-width: 861px) { body { padding-bottom: 0; } }

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.022em; text-wrap: balance; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--brand); color: var(--brand-ink); }

/* ------------------------------------------------------------- 4. LAYOUT */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.wrap--narrow { max-width: 860px; }

.section { padding-block: var(--sec); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
.section--alt { background: var(--bg-deep); }

.sec-head { max-width: 780px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
}
.sec-head--center .eyebrow::before { display: none; }

h1, .h1 { font-size: clamp(2.1rem, 5.6vw, 3.9rem); }
h2, .h2 { font-size: clamp(1.75rem, 3.9vw, 2.7rem); }
h3, .h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.lead { font-size: clamp(1.03rem, 1.7vw, 1.2rem); color: var(--text-2); }
.muted { color: var(--text-3); }

/* --------------------------------------------------------- 5. BUTONLAR */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.5rem;
  border-radius: var(--r-full);
  font-weight: 800; font-size: .98rem; letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background-color .2s;
  will-change: transform;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--call {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--brand-ink);
  box-shadow: var(--glow);
}
.btn--call:hover { box-shadow: 0 18px 50px -12px oklch(0.790 0.165 68 / 0.7); }

.btn--wa { background: var(--wa); color: #06301a; box-shadow: 0 12px 34px -14px var(--wa); }
.btn--wa:hover { background: oklch(0.80 0.18 152); }

.btn--ghost {
  background: oklch(1 0 0 / 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: oklch(1 0 0 / 0.10); border-color: var(--brand); }

.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.05rem; }
.btn--sm { padding: .6rem 1.05rem; font-size: .88rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------- 6. BAŞLIK */

.hdr {
  position: sticky; top: 0; z-index: 60;
  background: oklch(0.145 0.018 258 / 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color .3s, border-color .3s;
}
.hdr.is-stuck {
  background: oklch(0.125 0.018 258 / 0.92);
  border-bottom-color: var(--line-soft);
}
@supports not (color: oklch(0.5 0.1 250)) {
  .hdr { background: rgba(18,21,29,.75); }
  .hdr.is-stuck { background: rgba(12,15,22,.94); }
}

.hdr__in {
  display: flex; align-items: center; gap: 1rem;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; flex: none; }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  display: grid; place-items: center;
  box-shadow: var(--glow);
}
.brand__mark svg { width: 25px; height: 25px; }
.brand__name {
  font-weight: 800; font-size: 1.02rem; letter-spacing: -0.03em; line-height: 1.15;
  white-space: nowrap; display: block;
}
.brand__sub {
  display: block; font-size: .66rem; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; color: var(--brand); white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: .15rem; flex: none; }
.nav a {
  padding: .5rem .7rem; border-radius: var(--r-sm);
  font-size: .92rem; font-weight: 600; color: var(--text-2);
  white-space: nowrap;
  transition: color .2s, background-color .2s;
}
.nav a:hover, .nav a.is-active { color: var(--text); background: oklch(1 0 0 / 0.06); }

.hdr__cta { display: flex; align-items: center; gap: .5rem; margin-left: auto; flex: none; }

.hdr__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .9rem; border-radius: var(--r-full);
  border: 1px solid var(--line); background: oklch(1 0 0 / 0.04);
  font-weight: 800; font-size: .93rem; letter-spacing: -0.01em;
  white-space: nowrap;
  transition: border-color .2s, background-color .2s;
}
.hdr__phone:hover { border-color: var(--brand); background: var(--brand-soft); }
.hdr__phone svg { width: 17px; height: 17px; color: var(--brand); }

.burger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: oklch(1 0 0 / 0.04);
  place-items: center;
}
.burger svg { width: 22px; height: 22px; }

.mnav { display: none; border-top: 1px solid var(--line-soft); background: var(--bg-deep); }
.mnav.is-open { display: block; }
.mnav ul { padding: .6rem 0 1.1rem; }
.mnav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem var(--pad); font-weight: 600; color: var(--text-2);
  border-bottom: 1px solid var(--line-soft);
}
.mnav a:last-child { border-bottom: 0; }
.mnav a::after { content: "→"; color: var(--text-3); }

@media (max-width: 1230px) {
  .nav { display: none; }
  .burger { display: grid; }
}
@media (max-width: 700px) {
  .hdr__phone span { display: none; }
  .hdr__phone { padding: .6rem; }
}
@media (max-width: 560px) {
  .brand__sub { display: none; }
  .brand__name { font-size: .98rem; }
  .hdr__in { min-height: 64px; }
}

/* ----------------------------------------------------------- 7. HERO */

.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem); }

.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 90%;
  background:
    radial-gradient(60% 55% at 18% 8%,  oklch(0.790 0.165 68 / .18), transparent 65%),
    radial-gradient(50% 50% at 88% 12%, oklch(0.560 0.150 250 / .20), transparent 62%);
  filter: blur(10px);
}
.hero__bg::after {
  /* ince grain: gradyanlara doku katar */
  content: ""; position: absolute; inset: 0; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}
.hero__grid--loc { grid-template-columns: 1.15fr .85fr; }
@media (max-width: 940px) {
  .hero__grid, .hero__grid--loc { grid-template-columns: 1fr; }
}

.pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem .9rem .45rem .55rem; border-radius: var(--r-full);
  background: var(--brand-soft); border: 1px solid oklch(0.790 0.165 68 / 0.28);
  font-size: .84rem; font-weight: 700; color: var(--brand);
}
.pulse {
  width: 9px; height: 9px; border-radius: 50%; background: var(--ok); flex: none;
  box-shadow: 0 0 0 0 oklch(0.780 0.150 155 / .7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px oklch(0.780 0.150 155 / 0); }
  100% { box-shadow: 0 0 0 0  oklch(0.780 0.150 155 / 0); }
}

.hero__title { margin: 1.1rem 0 1rem; }
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { font-size: clamp(1.02rem, 1.7vw, 1.18rem); color: var(--text-2); max-width: 56ch; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__note {
  margin-top: 1.15rem; font-size: .89rem; color: var(--text-3);
  display: flex; align-items: flex-start; gap: .5rem;
}
.hero__note svg { width: 16px; height: 16px; color: var(--ok); flex: none; margin-top: .28em; }

/* hero görsel kartı */
.hero__media { position: relative; }
.shot {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-3);
  aspect-ratio: 4 / 5;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(0.115 0.018 258 / .85) 0%, transparent 45%);
}
.shot__tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .85rem; border-radius: var(--r-full);
  background: oklch(0.115 0.018 258 / .72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: .82rem; font-weight: 700;
}

.hero__float {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem 1rem; border-radius: var(--r);
  background: oklch(0.195 0.019 258 / .92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
}
.hero__float--tl { top: -14px; left: -14px; }
.hero__float--br { right: -14px; bottom: 22%; }
.hero__float b { display: block; font-size: 1.2rem; line-height: 1.1; }
.hero__float span { font-size: .76rem; color: var(--text-3); }
.hero__float i {
  width: 36px; height: 36px; border-radius: 11px; flex: none;
  display: grid; place-items: center; background: var(--brand-soft); color: var(--brand);
}
.hero__float i svg { width: 19px; height: 19px; }
@media (max-width: 940px) {
  .hero__float--tl { display: none; }
  .hero__float--br { right: 8px; bottom: 12px; }
}

/* güven şeridi */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); overflow: hidden;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.trust > div { background: var(--bg); padding: 1.15rem 1rem; text-align: center; }
.trust b { display: block; font-size: clamp(1.25rem, 2.6vw, 1.75rem); letter-spacing: -0.03em; }
.trust span { font-size: .8rem; color: var(--text-3); }
@media (max-width: 640px) { .trust { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------------- 8. KART / GRID */

.grid { display: grid; gap: 1.1rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s var(--ease), background-color .25s;
}
.card:hover { border-color: var(--line); transform: translateY(-3px); background: var(--surface-2); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-2); font-size: .96rem; }

.card__icon {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 1.1rem;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand);
  border: 1px solid oklch(0.790 0.165 68 / .2);
}
.card__icon svg { width: 23px; height: 23px; }

/* bento: ilk kart geniş ve fotoğraflı */
.bento { display: grid; gap: 1.1rem; grid-template-columns: repeat(4, 1fr); }
.bento > *:nth-child(1) {
  grid-column: span 2; grid-row: span 2;
  display: flex; flex-direction: column;
}
.bento > *:nth-child(1) .card__icon { width: 56px; height: 56px; }
.bento > *:nth-child(1) .card__icon svg { width: 28px; height: 28px; }
.bento > *:nth-child(1) h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.bento > *:nth-child(1) p { font-size: 1.02rem; }

.card__photo {
  margin: 1.4rem -1.6rem -1.6rem; flex: 1; min-height: 190px;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line-soft);
}
.card__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); }
.card__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(0.195 0.019 258 / .55), transparent 55%);
}
@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento > *:nth-child(1) { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento > *:nth-child(1) { grid-column: auto; }
}

/* ------------------------------------------------------------ 9. SÜREÇ */

.steps { counter-reset: s; display: grid; gap: 1.1rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 4.2rem; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: -.15rem;
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.35rem; font-weight: 800; color: var(--brand-ink);
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  box-shadow: var(--glow);
}
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--text-2); font-size: .96rem; }

/* ------------------------------------------------------ 10. USP / LİSTE */

.checks { display: grid; gap: 1.1rem; }
.checks li { display: flex; gap: .9rem; align-items: flex-start; }
.checks svg { width: 22px; height: 22px; color: var(--brand); flex: none; margin-top: .2rem; }
.checks b { display: block; margin-bottom: .1rem; }
.checks p { color: var(--text-2); font-size: .95rem; }

/* --------------------------------------------------------- 11. GALERİ */

.gal { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
@media (max-width: 900px) { .gal { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gal { grid-template-columns: repeat(2, 1fr); } }

.gal figure {
  position: relative; overflow: hidden; border-radius: var(--r);
  border: 1px solid var(--line-soft); background: var(--surface);
  aspect-ratio: 3 / 4; cursor: zoom-in;
}
.gal img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease), filter .4s;
  filter: saturate(.92);
}
.gal figure:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gal figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem .8rem .7rem;
  font-size: .78rem; font-weight: 600; color: var(--text);
  background: linear-gradient(to top, oklch(0.115 0.018 258 / .92), transparent);
  opacity: 0; transform: translateY(6px); transition: .3s var(--ease);
}
.gal figure:hover figcaption { opacity: 1; transform: none; }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: oklch(0.08 0.01 258 / .93);
  backdrop-filter: blur(6px);
  place-items: center; padding: 1.5rem;
}
.lb.is-open { display: grid; }
.lb img { max-height: 86vh; max-width: 100%; border-radius: var(--r); box-shadow: var(--shadow-3); }
.lb__x {
  position: absolute; top: 1rem; right: 1rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.4rem;
}
.lb__nav {
  position: absolute; top: 50%; translate: 0 -50%;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.3rem;
}
.lb__nav--prev { left: 1rem; }
.lb__nav--next { right: 1rem; }

/* ------------------------------------------------------------- 12. SSS */

.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r); overflow: hidden;
  transition: border-color .25s;
}
.faq details[open] { border-color: oklch(0.790 0.165 68 / .35); background: var(--surface-2); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.35rem; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 11px; height: 11px; flex: none;
  border-right: 2.5px solid var(--brand); border-bottom: 2.5px solid var(--brand);
  rotate: 45deg; transition: rotate .3s var(--ease);
}
.faq details[open] summary::after { rotate: 225deg; }
.faq .faq__a { padding: 0 1.35rem 1.3rem; color: var(--text-2); font-size: .98rem; }

/* ------------------------------------------------------- 13. YORUMLAR */

.revs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
@media (max-width: 1000px) { .revs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .revs { grid-template-columns: 1fr; } }
.rev { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 1.4rem; }
.rev__stars { color: var(--brand); font-size: .95rem; letter-spacing: .12em; margin-bottom: .7rem; }
.rev p { font-size: .95rem; color: var(--text-2); }
.rev footer { margin-top: 1rem; display: flex; align-items: center; gap: .7rem; }
.rev__av {
  width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--brand), var(--brand-2)); color: var(--brand-ink);
  font-weight: 800; font-size: .95rem;
}
.rev__who b { display: block; font-size: .92rem; }
.rev__who span { font-size: .78rem; color: var(--text-3); }

/* --------------------------------------------------------- 14. BÖLGELER */

.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
@media (max-width: 900px) { .areas { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .areas { grid-template-columns: 1fr; } }

.area {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: .95rem 1.15rem; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--line-soft);
  font-weight: 700; font-size: .96rem;
  transition: border-color .2s, background-color .2s, transform .2s var(--ease);
}
.area:hover { border-color: var(--brand); background: var(--surface-2); transform: translateX(3px); }
.area span { font-size: .78rem; font-weight: 600; color: var(--text-3); }
.area:hover span { color: var(--brand); }

/* yoğun mahalle listesi */
.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip {
  padding: .45rem .85rem; border-radius: var(--r-full);
  background: var(--surface); border: 1px solid var(--line-soft);
  font-size: .85rem; font-weight: 600; color: var(--text-2);
  transition: .2s;
}
.chip:hover { border-color: var(--brand); color: var(--text); background: var(--surface-2); }

/* --------------------------------------------------------- 15. CTA BANT */

.cta {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid oklch(0.790 0.165 68 / .3);
  background:
    radial-gradient(80% 140% at 12% 0%, oklch(0.790 0.165 68 / .20), transparent 60%),
    var(--surface);
  padding: clamp(2rem, 5vw, 3.4rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
.cta p { color: var(--text-2); margin-top: .5rem; max-width: 52ch; }
.cta__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ------------------------------------------------------ 16. İÇERİK/PROSE */

.prose { font-size: 1.04rem; color: var(--text-2); }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { color: var(--text); font-size: clamp(1.35rem, 2.6vw, 1.8rem); margin-top: 2.4rem; }
.prose h3 { color: var(--text); margin-top: 1.8rem; }
.prose strong { color: var(--text); font-weight: 800; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { display: grid; gap: .6rem; }
.prose ul li { position: relative; padding-left: 1.5rem; }
.prose ul li::before {
  content: ""; position: absolute; left: .25rem; top: .72em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
}
.prose blockquote {
  border-left: 3px solid var(--brand); padding-left: 1.1rem; color: var(--text-2); font-style: italic;
}

/* GEO: modellerin alıntılayacağı net cevap kutusu */
.answer-box {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--r);
  padding: 1.3rem 1.5rem;
}
.answer-box h2, .answer-box h3 {
  font-size: .78rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 .6rem;
}
.answer-box p { color: var(--text); font-size: 1.02rem; }
.answer-box p + p { margin-top: .6rem; }

/* tablo */
.tbl { width: 100%; border-collapse: collapse; font-size: .95rem; }
.tbl th, .tbl td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.tbl th { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); }
.tbl td b { color: var(--text); }
.tbl td span { display: block; font-size: .86rem; color: var(--text-3); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line-soft); border-radius: var(--r-lg); background: var(--surface); }

/* ------------------------------------------------------ 17. BREADCRUMB */

.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; font-size: .85rem; color: var(--text-3); }
.crumb a { color: var(--text-3); transition: color .2s; }
.crumb a:hover { color: var(--brand); }
.crumb span[aria-current] { color: var(--text-2); font-weight: 600; }
.crumb i { font-style: normal; opacity: .5; }

/* ------------------------------------------------------------ 18. BLOG */

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 950px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .posts { grid-template-columns: 1fr; } }

.post {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .25s, transform .25s var(--ease);
}
.post:hover { border-color: var(--brand); transform: translateY(-3px); }
.post__img { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.post__img img { width: 100%; height: 100%; object-fit: cover; }
.post__body { padding: 1.3rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.post__date { font-size: .78rem; color: var(--text-3); font-weight: 600; }
.post h3 { font-size: 1.1rem; }
.post p { font-size: .93rem; color: var(--text-2); }
.post__more { margin-top: auto; color: var(--brand); font-weight: 700; font-size: .9rem; padding-top: .4rem; }

/* ----------------------------------------------------------- 19. FOOTER */

.ftr { background: var(--bg-deep); border-top: 1px solid var(--line-soft); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.ftr__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 900px) { .ftr__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .ftr__grid { grid-template-columns: 1fr; } }
.ftr h4 { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-3); margin-bottom: 1rem; }
.ftr li + li { margin-top: .55rem; }
.ftr a { color: var(--text-2); font-size: .94rem; transition: color .2s; }
.ftr a:hover { color: var(--brand); }
.ftr__about p { color: var(--text-3); font-size: .93rem; margin-top: 1rem; max-width: 42ch; }
.ftr__bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .84rem; color: var(--text-3);
}
.ftr__contact li { display: flex; gap: .7rem; align-items: flex-start; color: var(--text-2); font-size: .94rem; }
.ftr__contact svg { width: 17px; height: 17px; color: var(--brand); flex: none; margin-top: .3rem; }

/* ------------------------------------------------ 20. ALT YAPIŞIK BAR */

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem;
  padding: .55rem var(--pad) calc(.55rem + env(safe-area-inset-bottom));
  background: oklch(0.115 0.018 258 / .88);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-top: 1px solid var(--line-soft);
}
@supports not (color: oklch(0.5 0.1 250)) { .dock { background: rgba(12,15,22,.92); } }

.dock .btn { padding: .85rem 1rem; font-size: 1rem; border-radius: 14px; }
.dock .btn:hover { transform: none; }

.dock__label { display: none; }

/* Yapışık bar yalnızca mobil/tablette. Masaüstünde üst bardaki telefon ve
   WhatsApp butonları zaten sürekli görünür olduğu için gerek yok. */
@media (min-width: 861px) {
  .dock { display: none; }
  body { padding-bottom: 0; }
}

/* --------------------------------------------------------- 21. HAREKET */

[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* LQIP arka planı: görsel yüklenene kadar bulanık önizleme.
   Görselin kendisi asla gizlenmez — JS çalışmasa da içerik görünür kalır. */
.lq { background-size: cover; background-position: center; background-repeat: no-repeat; }
.lq img { animation: imgIn .45s var(--ease) both; }
@keyframes imgIn { from { opacity: .001; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .lq img { animation: none; } }

/* ------------------------------------------------------- 22. YARDIMCI */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--brand); color: var(--brand-ink); padding: .8rem 1.2rem;
  border-radius: 0 0 var(--r) 0; font-weight: 800;
}
.skip:focus { left: 0; }

.stack-sm > * + * { margin-top: .7rem; }
.stack   > * + * { margin-top: 1.2rem; }
.stack-lg > * + * { margin-top: 2rem; }
.center { text-align: center; }
.mt-3 { margin-top: 2rem; }
.divider { height: 1px; background: var(--line-soft); border: 0; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--aside { grid-template-columns: 1.6fr .9fr; align-items: start; gap: clamp(2rem, 4vw, 3rem); }
@media (max-width: 900px) { .split, .split--aside { grid-template-columns: 1fr; } }

.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .8rem; border-radius: var(--r-full);
  background: var(--surface); border: 1px solid var(--line-soft);
  font-size: .82rem; font-weight: 700; color: var(--text-2);
}
.badge svg { width: 14px; height: 14px; color: var(--ok); }

/* =========================================================================
   23. MOBİL — 900px altı için ayrıntılı düzen
   Not: satır içi grid tanımları burada da ezilir (güvenlik ağı).
   ========================================================================= */

@media (max-width: 900px) {
  .split, .split--aside, .hero__grid, .hero__grid--loc { grid-template-columns: 1fr !important; }

  /* yan panel içerikten sonra gelsin ama iletişim kartı öne çıksın */
  .split--aside > aside { order: 2; }

  .hero { padding-block: 1.5rem 2.5rem; }
  .hero__media { max-width: 460px; margin-inline: auto; width: 100%; }
  .shot { aspect-ratio: 4 / 3.4; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__title { font-size: clamp(1.95rem, 8.4vw, 2.9rem); }

  .cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta__actions { width: 100%; }
  .cta__actions .btn { flex: 1 1 calc(50% - .4rem); }

  .steps { gap: 1.6rem; }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; }

  .section { padding-block: 3rem; }
  .section--tight { padding-block: 2.25rem; }

  /* dokunma hedefleri en az 44px */
  .chip { padding: .62rem 1rem; font-size: .88rem; }
  .area { padding: 1.05rem 1.15rem; }
  .faq summary { padding: 1.1rem 1.15rem; font-size: .98rem; }
  .faq .faq__a { padding: 0 1.15rem 1.2rem; }
  .nav a, .mnav a { min-height: 46px; }

  .card { padding: 1.3rem; }
  .card__photo { margin: 1.2rem -1.3rem -1.3rem; min-height: 170px; }
  .bento > *:nth-child(1) h3 { font-size: 1.3rem; }

  .step { padding-left: 3.6rem; }
  .step::before { width: 44px; height: 44px; font-size: 1.15rem; border-radius: 13px; }

  .hero__float--br { right: 6px; bottom: 6px; padding: .6rem .75rem; }
  .hero__float b { font-size: 1rem; }
  .hero__float span { font-size: .7rem; }
  .hero__float i { width: 30px; height: 30px; border-radius: 9px; }
  .hero__float i svg { width: 16px; height: 16px; }

  .trust > div { padding: 1rem .6rem; }
  .prose { font-size: 1rem; }
  .answer-box { padding: 1.15rem 1.2rem; }

  /* uzun listeler mobilde kutu içinde sıkışmasın */
  .chips { max-height: none !important; }

  /* tablo mobilde kart düzenine döner */
  .tbl-wrap { border: 0; background: none; overflow: visible; }
  .tbl, .tbl tbody, .tbl tr, .tbl td { display: block; width: 100%; }
  .tbl thead { display: none; }
  .tbl tr {
    background: var(--surface); border: 1px solid var(--line-soft);
    border-radius: var(--r); padding: 1.05rem 1.15rem; margin-bottom: .75rem;
  }
  .tbl td { border: 0; padding: .35rem 0; }
  .tbl td::before {
    content: attr(data-label); display: block;
    font-size: .69rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .1em; color: var(--text-3); margin-bottom: .1rem;
  }
  .tbl td:first-child { padding-top: 0; }
  .tbl td:first-child::before { display: none; }
  .tbl td:first-child b { font-size: 1.06rem; }
  .tbl td span { display: block; color: var(--text-2); }

  .ftr__bottom { flex-direction: column; gap: .5rem; }
}

@media (max-width: 430px) {
  /* başlıkta WhatsApp yazısı yerine ikon */
  .hdr__cta .btn--wa span { display: none; }
  .hdr__cta .btn--wa { padding: .6rem .75rem; }
  .brand__mark { width: 38px; height: 38px; border-radius: 11px; }
  .brand__mark svg { width: 22px; height: 22px; }
  .brand__name { font-size: .92rem; }
  .brand__sub { font-size: .6rem; }
  .hdr__in { min-height: 60px; gap: .5rem; }

  .gal { grid-template-columns: repeat(2, 1fr); gap: .55rem; }
  .cta__actions .btn { flex: 1 1 100%; }
  .btn--lg { padding: 1rem 1.4rem; font-size: 1rem; }
}

@media (max-width: 360px) {
  .hero__title { font-size: 1.8rem; }
  .dock .btn { font-size: .92rem; padding: .8rem .6rem; gap: .4rem; }
  .badge { font-size: .76rem; padding: .35rem .65rem; }
}

/* yatay taşmayı kesin olarak engelle */
.wrap, .hero, .section, .ftr { max-width: 100%; }
img, table, pre { max-width: 100%; }
