/* ==========================================================================
   TÜRKEL TEMİZLİK — Tasarım Sistemi
   Konsept: temizlik + su → TEAL (turkuaz) + MERCAN (coral) vurgu
   Font: Plus Jakarta Sans  |  Damla motifli, ferah, modern
   ========================================================================== */

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

:root {
  /* Teal — ana marka */
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --teal-950: #042f2e;

  /* Mercan — vurgu */
  --coral-300: #ffb4a8;
  --coral-400: #ff8a7a;
  --coral-500: #f97363;
  --coral-600: #e5543f;

  --whatsapp: #25d366;

  /* Nötrler */
  --ink:        #0f172a;
  --ink-soft:   #334155;
  --muted:      #64748b;
  --line:       #e2e8f0;
  --bg:         #ffffff;
  --bg-alt:     #f6faf9;   /* çok hafif teal tonu */
  --bg-deep:    #042f2e;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', 'Playfair Display', Georgia, 'Times New Roman', serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-full: 999px;

  --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 8px 24px -8px rgba(13,148,136,.18);
  --shadow-lg: 0 24px 60px -20px rgba(4,47,46,.28);
  --glow:      0 18px 50px -14px rgba(20,184,166,.5);

  --container: 1180px;
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { color: var(--ink); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }

/* Editoryal serif — başlıklarda lüks/restorasyon hissi (iki referans da sans; bu ayrışma sağlar) */
.hero h1, .section-head h2, .page-header h1, .cta-band h2, .prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.08;
}
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--teal-400); outline-offset: 2px; border-radius: 4px; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); color: #cbd5e1; }
.section--deep h2, .section--deep h3 { color: #fff; }

.section-head { max-width: 640px; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-700); background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: .35rem .8rem; border-radius: var(--r-full); margin-bottom: 1rem;
}
.section--deep .eyebrow { color: var(--teal-200); background: rgba(45,212,191,.08); border-color: rgba(45,212,191,.2); }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: .75rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--deep .section-head p { color: #94a3b8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: var(--r-full);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

.btn-primary { background: linear-gradient(120deg, var(--teal-500), var(--teal-700)); color: #fff; box-shadow: var(--glow); }
.btn-primary:hover { box-shadow: 0 22px 55px -12px rgba(20,184,166,.6); }

.btn-coral { background: linear-gradient(120deg, var(--coral-400), var(--coral-600)); color: #fff; box-shadow: 0 16px 40px -14px rgba(229,84,63,.5); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1eb659; }

.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline { background: #fff; color: var(--teal-700); border-color: var(--teal-200); }
.btn-outline:hover { border-color: var(--teal-500); background: var(--teal-50); }

/* ==========================================================================
   HEADER — üst utility bar + sticky nav  (referans sitelerden farklı)
   ========================================================================== */
.topbar {
  background: var(--teal-950); color: #99f6e4;
  font-size: .84rem; font-weight: 500;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 1rem; }
.topbar a { color: #ccfbf1; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 1.5rem; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__item svg { width: 15px; height: 15px; color: var(--teal-400); }
.topbar__social { display: flex; gap: .9rem; }
@media (max-width: 720px) { .topbar__left .topbar__item--hours { display: none; } .topbar__social { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 1rem; }

.logo { display: inline-flex; align-items: center; gap: .6rem; }
.logo__mark { flex: none; filter: drop-shadow(0 4px 10px rgba(13,148,136,.35)); }
.logo__text { font-weight: 800; font-size: 1.25rem; letter-spacing: -.03em; line-height: 1; }
.logo__sub { font-weight: 700; margin-left: .3ch; }

.main-nav ul { display: flex; gap: .3rem; }
.main-nav a {
  display: block; padding: .55rem .9rem; border-radius: var(--r-full);
  font-weight: 600; font-size: .96rem; color: var(--ink-soft); transition: all .2s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--teal-700); background: var(--teal-50); }

.header-actions { display: flex; align-items: center; gap: .6rem; }

.hamburger {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: #fff; box-shadow: var(--shadow-lg); padding: 6rem 1.5rem 2rem;
    transform: translateX(100%); transition: transform .3s var(--ease); z-index: 55;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: .25rem; }
  .main-nav a { padding: .9rem 1rem; font-size: 1.05rem; }
  .hamburger { display: flex; }
  .header-actions .btn span.hide-sm { display: none; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(4,47,46,.4); opacity: 0; visibility: hidden; transition: .3s; z-index: 54; }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}

/* ==========================================================================
   HERO — asimetrik, damla motifli  (referanslardan farklı kompozisyon)
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: #faf6ef url('/assets/img/hero.webp') no-repeat right center;
  background-size: cover;
  min-height: clamp(520px, 58vw, 780px);
  display: flex; align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
/* Sol krem perde — metin okunur kalsın; halı sağda net görünür */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(100deg,
    rgba(250,246,239,.98) 0%, rgba(250,246,239,.94) 34%,
    rgba(250,246,239,.55) 48%, rgba(250,246,239,0) 58%);
}
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: center; }
.hero-copy { max-width: 600px; }
@media (max-width: 940px) {
  .hero { background-position: 74% center; min-height: auto; padding-block: 2.5rem 3rem; }
  .hero::before { background: linear-gradient(180deg, rgba(250,246,239,.95) 0%, rgba(250,246,239,.82) 100%); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

.hero__trust { display: inline-flex; align-items: center; gap: .6rem; background: #fff; border: 1px solid var(--teal-100); border-radius: var(--r-full); padding: .45rem .9rem .45rem .5rem; box-shadow: var(--shadow-sm); font-size: .88rem; font-weight: 600; color: var(--ink); }
.hero__trust .stars { color: #f59e0b; letter-spacing: 1px; }
.hero__avatars { display: inline-flex; }
.hero__avatars span { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; background: var(--teal-300); }
.hero__avatars span:first-child { margin-left: 0; }

.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 1.25rem 0 1rem; letter-spacing: -.03em; }
.hero h1 .grad { background: linear-gradient(120deg, var(--teal-500), var(--coral-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__desc { font-size: 1.12rem; color: var(--ink-soft); max-width: 34rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__note { margin-top: 1rem; font-size: .92rem; color: var(--muted); }

.hero__points { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 1.6rem; }
.hero__points li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink); font-size: .96rem; }
.hero__points .tick { display: inline-flex; width: 20px; height: 20px; align-items: center; justify-content: center; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); }
.hero__points .tick svg { width: 12px; height: 12px; }

/* Hero görsel — "Lüks & Restorasyon" showcase paneli (diagonal kesim + amblem) */
.hero-visual { position: relative; }
.hero-showcase {
  position: relative; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 3/4;
  background: transparent;                 /* arkadaki banner halısı kartın içinden görünür */
  border: 1.5px solid rgba(255,255,255,.6);
}
/* Sol krem panel — diagonal seam ile fotoğrafın üzerine biner */
.hero-showcase__panel {
  position: absolute; inset: 0; z-index: 1;
  clip-path: polygon(0 0, 74% 0, 52% 100%, 0 100%);
  background: linear-gradient(160deg, #f8f4ec 0%, #efe8db 100%);
  display: flex; flex-direction: column; justify-content: center; gap: .85rem;
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
}
.hero-showcase__pattern {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .9;
  clip-path: polygon(0 0, 74% 0, 52% 100%, 0 100%);
  background-image:
    repeating-linear-gradient(45deg, rgba(13,148,136,.16) 0 1.5px, transparent 1.5px 16px),
    repeating-linear-gradient(-45deg, rgba(13,148,136,.11) 0 1.5px, transparent 1.5px 16px);
}
.hero-showcase__emblem {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(160deg, #fff, #f3ede1);
  box-shadow: 0 10px 26px -10px rgba(13,148,136,.5);
}
.hero-showcase__emblem svg { width: 40px; height: 40px; }
.hero-showcase__label { position: relative; z-index: 2; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.3rem, 2.9vw, 1.85rem); line-height: 1.04; letter-spacing: .005em;
  text-transform: uppercase; color: var(--teal-800); max-width: 6.5em; }
.hero-showcase__sub { position: relative; z-index: 2; font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--teal-600); }
.hero-showcase__hand { position: absolute; z-index: 3; top: 34%; left: 54%; width: 56px; height: 56px;
  pointer-events: none; filter: drop-shadow(0 8px 12px rgba(15,23,42,.28)); animation: handTap 2.6s ease-in-out infinite; }
@keyframes handTap { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-4px,-6px); } }
.hero-card {
  position: absolute; z-index: 3; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: .8rem 1rem; display: flex; align-items: center; gap: .7rem; border: 1px solid var(--line);
}
.hero-card--tl { top: -3%; left: 2%; }
.hero-card--br { bottom: 6%; right: -6%; }
.hero-card__icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: linear-gradient(120deg, var(--teal-500), var(--teal-700)); }
.hero-card--br .hero-card__icon { background: linear-gradient(120deg, var(--coral-400), var(--coral-600)); }
.hero-card strong { display: block; color: var(--ink); font-size: .95rem; }
.hero-card small { color: var(--muted); font-size: .8rem; }

@media (max-width: 560px) {
  .hero-card { display: none; }
}

/* ==========================================================================
   Trust strip (logolar/istatistik)
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.25rem 1rem; }
.stat__num { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--teal-700); line-height: 1; letter-spacing: -.03em; }
.stat__label { margin-top: .4rem; font-size: .92rem; color: var(--muted); font-weight: 600; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Service cards
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.6rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--teal-400), var(--coral-400)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-200); }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-50); color: var(--teal-600); margin-bottom: 1rem; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .96rem; }
.card__link { display: inline-flex; align-items: center; gap: .3rem; margin-top: .9rem; color: var(--teal-700); font-weight: 700; font-size: .92rem; }
.card__link svg { width: 15px; height: 15px; transition: transform .2s; }
.card:hover .card__link svg { transform: translateX(3px); }

/* ==========================================================================
   "Nasıl çalışır" — 4 adım
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: .5rem; }
.step__num {
  counter-increment: step; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 1.15rem;
  color: #fff; background: linear-gradient(120deg, var(--teal-500), var(--teal-700)); margin-bottom: 1rem;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .94rem; }

/* ==========================================================================
   Öncesi / Sonrası kaydırmalı karşılaştırma
   ========================================================================== */
.ba {
  --pos: 50%;
  position: relative; max-width: 760px; margin-inline: auto; aspect-ratio: 16/11;
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  touch-action: none; user-select: none; cursor: ew-resize; background: var(--teal-100);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__before { z-index: 1; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: #fff; z-index: 2; box-shadow: 0 0 8px rgba(0,0,0,.25); }
.ba__handle {
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%,-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md);
  display: grid; place-items: center; color: var(--teal-700);
}
.ba__handle svg { width: 22px; height: 22px; }
.ba:focus-visible { outline: 3px solid var(--teal-400); outline-offset: 3px; }
.ba__tag {
  position: absolute; bottom: 14px; z-index: 2; font-size: .74rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: #fff; padding: .35rem .8rem; border-radius: var(--r-full);
  background: rgba(4,47,46,.72); backdrop-filter: blur(4px);
}
.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; background: rgba(13,148,136,.85); }

/* ==========================================================================
   Galeri (admin yüklemeli)
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery__item { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1; background: var(--teal-100); box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__empty { grid-column: 1 / -1; text-align: center; padding: 3rem 1rem; color: var(--muted); border: 2px dashed var(--line); border-radius: var(--r-md); }

/* ==========================================================================
   Sosyal medya — yana kayan (marquee) şerit
   ========================================================================== */
.social-marquee {
  overflow: hidden; padding-block: .5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.social-track { display: flex; gap: 1rem; width: max-content; animation: socialScroll 55s linear infinite; }
.social-marquee:hover .social-track { animation-play-state: paused; }
@keyframes socialScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .social-track { animation: none; overflow-x: auto; }
}
.social-card {
  position: relative; flex: 0 0 auto; width: 264px; aspect-ratio: 1;
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--teal-100);
}
.social-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.social-card:hover img { transform: scale(1.06); }
.social-card__badge {
  position: absolute; top: .6rem; right: .6rem; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #f9737f, #d6249f 45%, #285AEB 130%); box-shadow: var(--shadow-sm);
}
.social-card__badge--facebook { background: #1877f2; }
.social-card__badge svg { width: 17px; height: 17px; }
.social-card__overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: .85rem;
  background: linear-gradient(to top, rgba(4,47,46,.55), transparent 45%);
  color: #fff; font-weight: 700; font-size: .85rem; opacity: 0; transition: opacity .25s;
}
.social-card:hover .social-card__overlay { opacity: 1; }

/* ==========================================================================
   Videolar (tıkla-oynat facade — performans + gizlilik)
   ========================================================================== */
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .videos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .videos { grid-template-columns: 1fr; } }
.yt {
  position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  aspect-ratio: 16/9; border-radius: var(--r-md); overflow: hidden; background: #000;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.yt:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.yt img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.yt:hover img { transform: scale(1.05); }
.yt__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(4,47,46,.25); transition: background .2s;
}
.yt:hover .yt__play { background: rgba(4,47,46,.15); }
.yt__play svg { width: 34px; height: 34px; color: #fff; }
.yt__play::before {
  content: ""; position: absolute; width: 66px; height: 66px; border-radius: 50%;
  background: linear-gradient(120deg, var(--coral-500), var(--coral-600)); box-shadow: var(--shadow-md);
}
.yt__play svg { position: relative; z-index: 1; margin-left: 3px; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Neden biz
   ========================================================================== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem 2rem; }
@media (max-width: 860px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .features { grid-template-columns: 1fr; } }
.feature { display: flex; gap: 1rem; }
.feature__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(45,212,191,.14); color: var(--teal-300); }
.section--deep .feature p { color: #94a3b8; }
.feature h3 { font-size: 1.08rem; margin-bottom: .3rem; }

/* ==========================================================================
   Müşteri yorumları
   ========================================================================== */
.reviews-summary { display: inline-flex; align-items: center; gap: .6rem; margin-top: .6rem; font-weight: 700; color: var(--ink); }
.reviews-summary .stars { color: #f59e0b; letter-spacing: 2px; }
.reviews-summary small { color: var(--muted); font-weight: 600; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews { grid-template-columns: 1fr; } }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.5rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .8rem; }
.review__stars { color: #f59e0b; letter-spacing: 2px; font-size: .95rem; }
.review__text { color: var(--ink-soft); font-size: .97rem; }
.review__who { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-400), var(--teal-700)); color: #fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.review__name { font-weight: 700; color: var(--ink); font-size: .95rem; }
.review__meta { color: var(--muted); font-size: .82rem; }

/* ==========================================================================
   SSS (accordion)
   ========================================================================== */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq__q::after { content: "+"; font-size: 1.6rem; font-weight: 400; color: var(--teal-600); transition: transform .3s; flex: none; }
.faq__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a > div { padding-bottom: 1.25rem; color: var(--muted); }

/* ==========================================================================
   Blog / rehber kartları
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__cover { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--teal-100); }
.post-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.post-card:hover .post-card__cover img { transform: scale(1.05); }
.post-card__body { padding: 1.35rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card__date { color: var(--teal-600); font-size: .8rem; font-weight: 700; }
.post-card h2, .post-card h3 { font-size: 1.12rem; line-height: 1.3; }
.post-card h2 a:hover { color: var(--teal-700); }
.post-card p { color: var(--muted); font-size: .93rem; flex: 1; }
.post-card .card__link { margin-top: .4rem; }

/* ==========================================================================
   Bölgeler
   ========================================================================== */
.areas { display: flex; flex-wrap: wrap; gap: .6rem; }
.areas li { background: #fff; border: 1px solid var(--line); border-radius: var(--r-full); padding: .5rem 1rem; font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.areas li::before { content: "📍 "; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: linear-gradient(120deg, var(--teal-700), var(--teal-900)); border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; top: -40%; left: -10%; width: 60%; aspect-ratio: 1; background: radial-gradient(circle, rgba(45,212,191,.3), transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: .6rem; }
.cta-band p { color: #99f6e4; max-width: 40rem; margin: 0 auto 1.6rem; }
.cta-band .btn-group { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--teal-950); color: #94a3b8; padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: #94a3b8; transition: color .2s; }
.site-footer a:hover { color: var(--teal-300); }
.footer-links li { margin-bottom: .55rem; }
.footer-about p { margin: 1rem 0; font-size: .94rem; }
.footer-contact li { display: flex; gap: .6rem; margin-bottom: .7rem; font-size: .94rem; }
.footer-contact svg { flex: none; width: 18px; height: 18px; color: var(--teal-400); margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.4rem 0; font-size: .86rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }

/* ==========================================================================
   Yüzen aksiyon butonları (mobil dönüşüm)
   ========================================================================== */
.floating-cta { position: fixed; right: 1rem; bottom: 1rem; z-index: 50; display: flex; flex-direction: column; gap: .7rem; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); }
.fab svg { width: 26px; height: 26px; }
.fab--wa { background: var(--whatsapp); animation: pulse 2.4s infinite; }
.fab--call { background: linear-gradient(120deg, var(--teal-500), var(--teal-700)); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (min-width: 941px) { .floating-cta { display: none; } }

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Page header (iç sayfalar) ---------- */
.page-header { background: linear-gradient(160deg, var(--teal-950), var(--teal-800)); color: #ccfbf1; padding-block: clamp(2.5rem, 6vw, 4rem); }
.page-header h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: .5rem; }
.page-header p { color: #99f6e4; max-width: 42rem; }
.breadcrumb { display: flex; gap: .5rem; font-size: .86rem; color: #5eead4; margin-bottom: 1rem; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Prose (blog / metin) ---------- */
.prose { max-width: 720px; }
.prose p { margin-bottom: 1.1rem; }
.prose h2 { font-size: 1.6rem; margin: 2rem 0 .8rem; }
.prose h3 { font-size: 1.3rem; margin: 1.6rem 0 .6rem; }
.prose ul { margin: 0 0 1.1rem 1.2rem; list-style: disc; }
.prose li { margin-bottom: .4rem; }

/* Hizmet detay sayfası — premium teal içerik stili */
.prose--service h2 {
  position: relative; padding-left: 1rem; margin-top: 2.4rem;
  font-size: 1.7rem; color: var(--teal-900);
}
.prose--service h2::before {
  content: ""; position: absolute; left: 0; top: .12em; bottom: .12em; width: 5px;
  border-radius: 3px; background: linear-gradient(var(--teal-500), var(--coral-500));
}
/* Fayda listesi — check rozetli */
.prose--service .svc-benefits { list-style: none; margin: 1.25rem 0 1.5rem; display: grid; gap: .8rem; }
.prose--service .svc-benefits li {
  position: relative; padding: 1rem 1.15rem 1rem 3rem; margin: 0;
  background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: var(--r-md);
  color: var(--ink-soft);
}
.prose--service .svc-benefits li strong { color: var(--teal-900); }
.prose--service .svc-benefits li::before {
  content: ""; position: absolute; left: .9rem; top: 1.05rem; width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
/* Süreç — numaralı */
.prose--service .svc-steps { list-style: none; counter-reset: svcstep; margin: 1.25rem 0 1.5rem; display: grid; gap: .9rem; }
.prose--service .svc-steps li {
  position: relative; padding: 1rem 1.15rem 1rem 3.4rem; margin: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); color: var(--ink-soft);
}
.prose--service .svc-steps li strong { color: var(--teal-900); }
.prose--service .svc-steps li::before {
  counter-increment: svcstep; content: counter(svcstep);
  position: absolute; left: .85rem; top: .9rem; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: .95rem; color: #fff;
  background: linear-gradient(120deg, var(--teal-500), var(--teal-700));
}
/* Sayfa sonu CTA kutusu */
.svc-cta {
  margin-top: 2rem; padding: 1.6rem 1.75rem; border-radius: var(--r-md);
  background: linear-gradient(120deg, var(--teal-50), #fff); border: 1px solid var(--teal-100);
}
.svc-cta__lead { margin-bottom: 1rem; color: var(--teal-900); font-size: 1.05rem; }
