/* ════════════════════════════════════════════════════════════
   FEVZİYE KAYA · ERGOTERAPİST — TASARIM SİSTEMİ
   "Sıcak resimli kitap" estetiği: kâğıt zemin, mürekkep kontur,
   mercan & hardal vurgular, çıkartma (sticker) kartlar.
   ════════════════════════════════════════════════════════════ */

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

:root {
  /* Zemin & mürekkep */
  --paper:      #FFF6EA;
  --paper-deep: #FBEDD9;
  --card:       #FFFDF8;
  --ink:        #1E3431;
  --ink-soft:   #445A55;
  --ink-faint:  #6E8079;

  /* Vurgular */
  --coral:       #EF6144;
  --coral-deep:  #D94E32;
  --coral-soft:  #FCDCD2;
  --amber:       #FFC23E;
  --amber-soft:  #FFE9B8;
  --teal:        #2E7F6F;
  --teal-soft:   #D2E8E0;
  --sky:         #8EC5D6;
  --sky-soft:    #DEEEF3;
  --blush:       #F7C2B4;

  /* Tipografi */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Figtree', -apple-system, 'Segoe UI', sans-serif;

  /* Çıkartma stili */
  --line: 2px solid var(--ink);
  --pop:  6px 6px 0 var(--ink);
  --pop-sm: 4px 4px 0 var(--ink);
  --radius: 20px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Kâğıt dokusu */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: var(--font-display); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--amber); color: var(--ink); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* ── ORTAK BAŞLIK ÖĞELERİ ─────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.heading {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
}
.heading em {
  font-style: italic;
  font-weight: 600;
  color: var(--teal);
}

/* Fosforlu kalem vurgusu */
.mark {
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
.mark::after {
  content: '';
  position: absolute;
  left: -.1em; right: -.15em;
  bottom: .04em;
  height: .42em;
  background: var(--amber);
  border-radius: 3px;
  transform: rotate(-1deg);
  z-index: -1;
}
.mark--coral::after { background: var(--coral-soft); }
.mark--sky::after   { background: var(--sky-soft); }

.lead {
  margin-top: 18px;
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 600px;
}

/* ── BUTONLAR ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  padding: 14px 28px;
  border: var(--line);
  border-radius: 999px;
  box-shadow: var(--pop-sm);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover  { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px);  box-shadow: 1px 1px 0 var(--ink); }

.btn--coral { background: var(--coral); color: #FFF8F0; }
.btn--coral:hover { background: var(--coral-deep); }
.btn--paper { background: var(--card); color: var(--ink); }
.btn--paper:hover { background: var(--amber-soft); }
.btn--amber { background: var(--amber); color: var(--ink); }

/* ── NAVBAR ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 246, 234, .92);
  backdrop-filter: blur(12px);
  border-bottom: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-mark {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--amber);
  border: var(--line);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .3s ease;
}
.nav-brand:hover .nav-mark { transform: rotate(14deg); }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.nav-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.nav-role {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}
.nav-links > li > a:not(.btn) {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-links > li > a:not(.btn):hover { background: var(--amber-soft); color: var(--ink); }
.nav-links .btn { padding: 10px 22px; font-size: .88rem; margin-left: 10px; }

.hamburger {
  display: none;
  width: 46px; height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: var(--card);
  border: var(--line);
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--ink);
}
.hamburger span {
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  display: block;
  transition: transform .25s, opacity .25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: var(--line);
  background: var(--paper);
  padding: 10px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 15px 28px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.mobile-menu a + a { border-top: 1.5px dashed rgba(30, 52, 49, .2); }

/* ── DEKORATİF ÖĞELER ─────────────────────────────────────── */
.doodle {
  position: absolute;
  pointer-events: none;
  color: var(--ink);
}
.doodle--float  { animation: float 5s ease-in-out infinite; }
.doodle--spin   { animation: spinSlow 14s linear infinite; }
.doodle--coral  { color: var(--coral); }
.doodle--amber  { color: var(--amber); }
.doodle--teal   { color: var(--teal); }
.doodle--sky    { color: var(--sky); }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-12px) rotate(5deg); }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ── KAYAN ŞERİT (MARQUEE) ────────────────────────────────── */
.marquee {
  background: var(--ink);
  border-top: var(--line);
  border-bottom: var(--line);
  padding: 13px 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  font-weight: 500;
  color: var(--paper);
  white-space: nowrap;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.marquee span::after { content: '✦'; color: var(--amber); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── ÇIKARTMA KARTI ───────────────────────────────────────── */
.sticker {
  background: var(--card);
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--pop);
}

/* ── BÖLÜM ────────────────────────────────────────────────── */
.section { padding: 104px 0; position: relative; }
.section-header { margin-bottom: 56px; position: relative; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════
   ANA SAYFA
   ════════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 158px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 8px 18px 8px 12px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 28px;
  animation: heroIn .7s ease both;
}
.hero-badge .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.hero-title {
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.015em;
  margin-bottom: 26px;
  animation: heroIn .7s .08s ease both;
}
.hero-title em { font-style: italic; color: var(--teal); }
.hero-text {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 38px;
  animation: heroIn .7s .16s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  animation: heroIn .7s .24s ease both;
}
.hero-note {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-faint);
  animation: heroIn .7s .32s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* Hero görseli — kemer biçimli çerçeve */
.hero-figure { position: relative; animation: heroIn .8s .2s ease both; }
.hero-arch {
  background: var(--teal-soft);
  border: var(--line);
  border-radius: 200px 200px 26px 26px;
  box-shadow: var(--pop);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.hero-arch img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--teal);
}
.photo-placeholder svg { opacity: .5; }
.photo-placeholder span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .65;
}
.hero-sticker {
  position: absolute;
  background: var(--card);
  border: var(--line);
  border-radius: 16px;
  box-shadow: var(--pop-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
}
.hero-sticker--1 { top: 9%; left: -52px; transform: rotate(-5deg); animation: float 6s ease-in-out infinite; }
.hero-sticker--2 { bottom: 7%; right: -34px; transform: rotate(3deg); animation: float 7s 1s ease-in-out infinite; }
.hero-sticker .ic {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 10px;
}
.hero-sticker--1 .ic { background: var(--amber); }
.hero-sticker--2 .ic { background: var(--coral-soft); }
.hero-sticker small {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  color: var(--ink-faint);
}

/* ── HİZMETLER ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.service-card {
  padding: 36px 34px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.service-card:nth-child(odd)  { transform: rotate(-.4deg); }
.service-card:nth-child(even) { transform: rotate(.4deg); }
.service-card:nth-child(odd):hover  { transform: rotate(-.4deg) translate(-3px, -3px); }
.service-card:nth-child(even):hover { transform: rotate(.4deg) translate(-3px, -3px); }

.service-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.service-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 16px;
  box-shadow: 3px 3px 0 var(--ink);
}
.service-icon--amber { background: var(--amber); }
.service-icon--coral { background: var(--coral-soft); }
.service-icon--teal  { background: var(--teal-soft); }
.service-icon--sky   { background: var(--sky-soft); }
.service-card h3 {
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.service-card > p {
  font-size: .97rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span {
  font-size: .73rem;
  font-weight: 700;
  padding: 5px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
}

/* ── YAKLAŞIM (koyu bölüm) ───────────────────────────────── */
.approach {
  background: var(--ink);
  color: var(--paper);
  border-top: var(--line);
  border-bottom: var(--line);
  overflow: hidden;
}
.approach .eyebrow { color: var(--amber); }
.approach .eyebrow::before { background: var(--amber); }
.approach .heading em { color: var(--amber); }
.approach .lead { color: rgba(255, 246, 234, .72); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.step {
  background: rgba(255, 246, 234, .05);
  border: 2px dashed rgba(255, 246, 234, .3);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.step:hover {
  background: rgba(255, 246, 234, .1);
  border-color: var(--amber);
  transform: translateY(-5px);
}
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.step h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: .9rem; color: rgba(255, 246, 234, .72); }

/* ── HAKKIMDA ─────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-figure { position: relative; }
.about-blob {
  background: var(--coral-soft);
  border: var(--line);
  border-radius: 45% 55% 52% 48% / 50% 45% 55% 50%;
  box-shadow: var(--pop);
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  position: relative;
}
.about-blob img { width: 100%; height: 100%; object-fit: cover; }
.about-blob .photo-placeholder { color: var(--coral-deep); }
.about-stamp {
  position: absolute;
  right: -26px; bottom: 26px;
  width: 108px; height: 108px;
  animation: spinSlow 18s linear infinite;
}
.about-stamp .stamp-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  animation: spinSlow 18s linear infinite reverse;
}
.about-text > p {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.about-text > p strong { color: var(--ink); }
.about-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.about-fact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 9px 18px 9px 13px;
  font-size: .85rem;
  font-weight: 700;
}
.about-fact svg { color: var(--coral); flex-shrink: 0; }
.about-fact a { color: var(--coral-deep); }
.about-fact a:hover { text-decoration: underline; }

/* ── SSS ──────────────────────────────────────────────────── */
.faq-wrap { max-width: 780px; }
.faq-item {
  background: var(--card);
  border: var(--line);
  border-radius: 18px;
  box-shadow: var(--pop-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item.open { box-shadow: var(--pop); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}
.faq-chevron {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  background: var(--amber);
  border: var(--line);
  border-radius: 50%;
  transition: transform .3s ease, background .3s ease;
}
.faq-chevron svg { width: 16px; height: 16px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--coral); color: #FFF8F0; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-body p {
  padding: 0 26px 24px;
  font-size: .96rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.faq-item.open .faq-body { max-height: 340px; }

/* ── HİZMET BÖLGESİ ───────────────────────────────────────── */
.region { background: var(--paper-deep); border-top: var(--line); }
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.region-card {
  padding: 24px 26px;
  border-radius: 18px;
  transition: transform .2s ease;
}
.region-card:hover { transform: translateY(-4px) rotate(-.6deg); }
.region-card .region-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  margin-bottom: 12px;
}
.region-card:nth-child(1) .region-tag { background: var(--amber); }
.region-card:nth-child(2) .region-tag { background: var(--sky-soft); }
.region-card:nth-child(3) .region-tag { background: var(--coral-soft); }
.region-card:nth-child(4) .region-tag { background: var(--teal-soft); }
.region-card:nth-child(5) .region-tag { background: var(--blush); }
.region-card h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 5px; }
.region-card p { font-size: .88rem; color: var(--ink-faint); }
.region-cta {
  background: var(--teal);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}
.region-cta p { font-size: .95rem; font-weight: 600; color: rgba(255, 246, 234, .9); }
.region-cta .btn { box-shadow: 4px 4px 0 rgba(0, 0, 0, .35); }

/* ── AİLE YORUMLARI ───────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -18px; left: 22px;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  background: var(--amber);
  border: var(--line);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  padding-top: 10px;
}
.review-card:nth-child(3n+2)::before { background: var(--coral-soft); }
.review-card:nth-child(3n)::before   { background: var(--sky-soft); }
.review-card p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  flex: 1;
  margin: 10px 0 18px;
}
.review-who {
  display: flex;
  align-items: center;
  gap: 11px;
  border-top: 1.5px dashed rgba(30, 52, 49, .2);
  padding-top: 16px;
}
.review-who .avatar {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  border: var(--line);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
}
.review-who strong { font-size: .88rem; display: block; line-height: 1.3; }
.review-who small { font-size: .75rem; font-weight: 600; color: var(--ink-faint); }
@media (max-width: 920px) { .reviews-grid { grid-template-columns: 1fr; max-width: 460px; } }

/* ── BLOG ─────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translate(-3px, -3px) rotate(-.5deg); box-shadow: 9px 9px 0 var(--ink); }
.blog-thumb {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  border-bottom: var(--line);
  position: relative;
  overflow: hidden;
}
.blog-thumb--amber { background: var(--amber-soft); }
.blog-thumb--coral { background: var(--coral-soft); }
.blog-thumb--sky   { background: var(--sky-soft); }
.blog-thumb--teal  { background: var(--teal-soft); }
.blog-thumb--blush { background: var(--blush); }
.blog-thumb svg { transition: transform .35s ease; }
.blog-card:hover .blog-thumb svg { transform: scale(1.12) rotate(-4deg); }
.blog-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  margin-bottom: 14px;
}
.blog-body h3 {
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.32;
  margin-bottom: 10px;
}
.blog-body > p {
  font-size: .89rem;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 20px;
}
.blog-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 800;
  color: var(--coral-deep);
}
.blog-more svg { transition: transform .2s ease; }
.blog-card:hover .blog-more svg { transform: translateX(5px); }

/* ── İLETİŞİM ─────────────────────────────────────────────── */
.contact { background: var(--paper-deep); border-top: var(--line); }
.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.contact-aside > p {
  font-size: 1.04rem;
  color: var(--ink-soft);
  margin-bottom: 34px;
  max-width: 400px;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}
.contact-line .ic {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--card);
  border: var(--line);
  border-radius: 13px;
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--coral-deep);
}
.contact-line-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.contact-line-value { font-size: 1rem; font-weight: 700; }
.contact-line-value a:hover { color: var(--coral-deep); }

.contact-form { padding: 44px 42px; position: relative; }
.contact-form > h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form > .form-sub {
  font-size: .9rem;
  color: var(--ink-faint);
  margin-bottom: 30px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: var(--line);
  border-radius: 13px;
  font-size: 1rem; /* 16px altı iOS Safari'de odakta otomatik zoom tetikler */
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: box-shadow .15s ease, background .15s ease;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #FFFFFF;
  box-shadow: 3px 3px 0 var(--ink);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A8B0AC; font-weight: 500; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; }
.form-note {
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-faint);
  margin-top: 14px;
}
.form-success {
  display: none;
  padding: 22px;
  border: var(--line);
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 800;
  text-align: center;
  margin-top: 18px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255, 246, 234, .6);
  padding: 64px 0 32px;
  border-top: var(--line);
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1.5px dashed rgba(255, 246, 234, .18);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .nav-mark { box-shadow: 3px 3px 0 rgba(0, 0, 0, .4); }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--paper);
  line-height: 1.2;
}
.footer-role {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
}
.footer-desc { font-size: .9rem; line-height: 1.75; max-width: 380px; }
.footer-col-title {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 246, 234, .4);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255, 246, 234, .65);
  transition: color .2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-links li { font-size: .92rem; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
}
.footer-bottom a { color: var(--amber); }

/* ════════════════════════════════════════════════════════════
   MAKALE SAYFALARI
   ════════════════════════════════════════════════════════════ */
.article-hero {
  padding: 150px 0 72px;
  border-bottom: var(--line);
  position: relative;
  overflow: hidden;
}
.article-hero--amber { background: var(--amber-soft); }
.article-hero--coral { background: var(--coral-soft); }
.article-hero--sky   { background: var(--sky-soft); }
.article-hero--teal  { background: var(--teal-soft); }
.article-hero--blush { background: var(--blush); }
.article-cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: var(--line);
  border-radius: 999px;
  background: var(--card);
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 24px;
}
.article-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  max-width: 820px;
  margin-bottom: 22px;
}
.article-subtitle {
  font-size: 1.13rem;
  color: var(--ink-soft);
  max-width: 660px;
  margin-bottom: 30px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  font-weight: 700;
}
.article-meta .avatar {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  background: var(--card);
  border: var(--line);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
}
.article-meta small {
  display: block;
  font-size: .73rem;
  font-weight: 600;
  color: var(--ink-faint);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  padding: 72px 0 110px;
  align-items: start;
}
.article-body { max-width: 680px; }
.article-body h2 {
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.25;
  margin: 52px 0 18px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 34px 0 12px;
}
.article-body p {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 20px;
}
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body ul { list-style: none; margin-bottom: 22px; }
.article-body ul li {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 11px;
  padding-left: 30px;
  position: relative;
}
.article-body ul li::before {
  content: '✦';
  position: absolute;
  left: 4px;
  color: var(--coral);
  font-size: .85rem;
}

.callout {
  background: var(--amber-soft);
  border: var(--line);
  border-radius: 18px;
  box-shadow: var(--pop-sm);
  padding: 24px 28px;
  margin: 36px 0;
  position: relative;
  transform: rotate(-.4deg);
}
.callout::before {
  content: '!';
  position: absolute;
  top: -16px; left: 22px;
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: #FFF8F0;
  border: var(--line);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.callout p { margin: 0; font-size: .97rem; font-weight: 600; color: var(--ink); line-height: 1.7; }

.article-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; }
.sidebar-card { padding: 28px 26px; }
.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.sidebar-card > p { font-size: .87rem; color: var(--ink-soft); margin-bottom: 18px; }
.sidebar-card .btn { width: 100%; justify-content: center; font-size: .88rem; padding: 12px 20px; }
.sidebar-list { list-style: none; }
.sidebar-list li + li { border-top: 1.5px dashed rgba(30, 52, 49, .2); }
.sidebar-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.45;
  transition: color .2s;
}
.sidebar-list a:hover { color: var(--coral-deep); }
.sidebar-list a::before { content: '→'; color: var(--coral); flex-shrink: 0; }

/* ── RANDEVU SİHİRBAZI ────────────────────────────────────── */
.wizard-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
.wizard-progress .bar {
  flex: 1;
  height: 8px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
}
.wizard-progress .bar i {
  display: block;
  height: 100%;
  background: var(--coral);
  border-radius: 999px;
  transition: width .35s ease;
}
.wizard-progress .count {
  font-size: .78rem;
  font-weight: 800;
  color: var(--ink-faint);
  white-space: nowrap;
}

.wizard-step { display: none; animation: stepIn .35s ease; }
.wizard-step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: none; }
}

.wizard-q {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.wizard-hint {
  font-size: .85rem;
  color: var(--ink-faint);
  font-weight: 600;
  margin-bottom: 20px;
}

.chip-group { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.chip {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper);
  border: var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chip:hover { transform: translateY(-2px); box-shadow: 3px 3px 0 var(--ink); }
.chip.selected {
  background: var(--amber);
  box-shadow: 3px 3px 0 var(--ink);
}
.chip::before {
  content: '✓';
  font-weight: 800;
  opacity: 0;
  transform: scale(.4);
  transition: opacity .15s ease, transform .15s ease;
}
.chip.selected::before {
  opacity: 1;
  transform: scale(1);
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.wizard-back {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-faint);
  cursor: pointer;
  padding: 10px 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wizard-back:hover { color: var(--ink); }
.wizard-back[hidden] { display: none; }
.wizard-error {
  display: none;
  font-size: .82rem;
  font-weight: 700;
  color: var(--coral-deep);
  margin-top: 12px;
}
.wizard-error.show { display: block; }

.wizard-summary {
  background: var(--paper);
  border: 1.5px dashed rgba(30, 52, 49, .35);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 22px;
  font-size: .88rem;
  line-height: 1.7;
}
.wizard-summary strong { display: inline-block; min-width: 110px; color: var(--ink-faint); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }

.wizard-send { display: flex; flex-direction: column; gap: 12px; }
.wizard-send .btn { width: 100%; justify-content: center; }
.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1eb455; }

/* ── WHATSAPP SABİT BUTON ─────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #FFFFFF;
  border: var(--line);
  border-radius: 50%;
  box-shadow: var(--pop-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-float:hover { transform: translate(-2px, -2px) rotate(6deg); box-shadow: 6px 6px 0 var(--ink); }
.wa-float:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 560px) {
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* ── HİZMET DETAY SAYFASI ─────────────────────────────────── */
.svc-cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  border: var(--line);
  box-shadow: var(--pop);
  padding: 40px 38px;
  margin-top: 56px;
}
.svc-cta h2 {
  font-family: var(--font-display);
  font-size: 1.55rem !important;
  margin: 0 0 10px !important;
  color: var(--paper);
}
.svc-cta p { color: rgba(255, 246, 234, .75) !important; margin-bottom: 24px !important; }
.svc-cta .btn { box-shadow: 4px 4px 0 rgba(0, 0, 0, .45); }
.svc-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── ERİŞİLEBİLİRLİK / SEO ────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

/* ════════════════════════════════════════════════════════════
   DUYARLI TASARIM
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1180px) {
  .hero-sticker--1 { left: -10px; }
  .hero-sticker--2 { right: -8px; }
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 130px 0 80px; }
  .hero-layout { grid-template-columns: 1fr; gap: 56px; }
  .hero-figure { max-width: 420px; margin: 0 auto; width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 64px; }
  .about-figure { max-width: 380px; }
  .region-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 460px; }
  .contact-layout { grid-template-columns: 1fr; gap: 52px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }

  .article-layout { grid-template-columns: 1fr; gap: 56px; }
  .article-sidebar { position: static; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .section { padding: 76px 0; }
  .steps { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .hero-sticker--1 { display: none; }
  .hero-sticker--2 { right: 4px; bottom: -18px; }
  .about-stamp { right: 0; }
}
