/* ============================================
   ANILARI YOLLA — Tanıtım Sitesi
   Kağıt beyazı, mürekkep siyahı, cam. Tek sıcaklık kaynağı:
   tek kelimede italik serif. Boşluk çok, çerçeve az.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --paper: #fafafa;
  --paper-alt: #f2f2f0;
  --ink: #111111;
  --ink-soft: #545454;
  --ink-faint: #969696;
  --mist: #ececee;
  --line: rgba(0, 0, 0, 0.08);
}

body {
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Üst menü ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 250, 250, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.site-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link { text-decoration: none; color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-link {
  position: relative;
  padding: 8px 13px;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, color .18s;
}

.nav-link:hover { background: var(--mist); color: var(--ink); }
.nav-link.active { color: var(--ink); font-weight: 700; }

/* Bulunduğunuz sayfa: altında ince çizgi */
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 13px; right: 13px; bottom: 1px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.nav-end { display: flex; align-items: center; gap: 8px; }

.nav-login {
  padding: 9px 14px;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border: 1.5px solid var(--line);
  white-space: nowrap;
  transition: border-color .18s, background .18s;
}

.nav-login:hover { border-color: var(--ink); background: var(--mist); }

.nav-cta {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--ink);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s, opacity .18s;
}

.nav-cta:hover { transform: translateY(-1px); opacity: .9; }

/* ---------- Hamburger ---------- */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.nav-burger span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .2s;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Mobil menü ---------- */
.mobile-menu {
  position: fixed;
  inset: 60px 0 0;
  z-index: 55;
  background: var(--paper);
  padding: 24px 24px calc(32px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: menuIn .22s ease;
}

@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.mobile-menu[hidden] { display: none; }

.mobile-menu-links { display: flex; flex-direction: column; }

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--ink);
  text-decoration: none;
}

.mobile-link svg { color: var(--ink-faint); flex-shrink: 0; }
.mobile-link.active { color: var(--ink); }
.mobile-link.active svg { color: var(--ink); }

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.mobile-menu-actions .btn-ink,
.mobile-menu-actions .btn-ghost { width: 100%; }

.mobile-menu-note {
  margin-top: auto;
  padding-top: 28px;
  font-size: .85rem;
  color: var(--ink-faint);
  text-align: center;
}

.mobile-menu-note a { color: var(--ink-soft); }

body.menu-open { overflow: hidden; }

/* ---------- Tipografi ---------- */
.serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.eyebrow {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

.eyebrow-light { color: rgba(255, 255, 255, .5); }

h1.display {
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -2px;
  font-weight: 800;
  margin-bottom: 22px;
}

h2.section-title {
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: -1.1px;
  font-weight: 800;
  margin-bottom: 16px;
}

.lede {
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 36em;
}

.lede + .lede { margin-top: 14px; }
.lede-light { color: rgba(255, 255, 255, .62); }
.lede strong { color: var(--ink); font-weight: 700; }

/* ---------- Düğmeler ---------- */
.btn-ink, .btn-ghost, .btn-paper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .93rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s, opacity .18s, background .18s, border-color .18s;
}

.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { transform: translateY(-1px); opacity: .9; }

.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--mist); }

.btn-paper { background: #fff; color: var(--ink); }
.btn-paper:hover { transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 84px 0 96px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 56px;
  align-items: center;
}

.hero-actions { display: flex; gap: 10px; margin-top: 30px; flex-wrap: wrap; }

.hero-ticks {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.hero-ticks li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-ticks li::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink);
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
          mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
  flex-shrink: 0;
}

/* ---------- Arka plandaki fotoğraf duvarı ---------- */
.wall {
  position: absolute;
  inset: -8% -2%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 11px;
  pointer-events: none;
  overflow: hidden;
}

.wall-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  animation: wallUp var(--speed, 70s) linear infinite;
  will-change: transform;
}

.wall-col-down { animation-name: wallDown; }

@keyframes wallUp   { from { transform: translateY(0); }    to { transform: translateY(-50%); } }
@keyframes wallDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.wall-frame {
  margin: 0;
  padding: 5px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .08);
  transform: rotate(-.8deg);
  flex-shrink: 0;
}

.wall-frame:nth-child(even) { transform: rotate(1deg); }
.wall-frame:nth-child(3n)   { transform: rotate(-1.6deg); }

.wall-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;   /* dikey kare */
  object-fit: cover;
  border-radius: 5px;
  filter: saturate(1.15) contrast(1.08);
}

/* Yatay kareler */
.wall-frame-wide img { aspect-ratio: 4 / 3; }

/*
  Perde: duvarın üstüne kağıt beyazı bir katman. Ortada neredeyse opak,
  kenarlarda şeffaf — böylece kareler kenarlarda görünür, metin ortada okunur kalır.
*/
.wall-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    /* metnin oturduğu sol yarı ekstra sakinleşsin */
    linear-gradient(100deg, rgba(250, 250, 250, .93) 0%, rgba(250, 250, 250, .78) 34%, rgba(250, 250, 250, .12) 62%, rgba(250, 250, 250, 0) 100%),
    radial-gradient(100% 78% at 44% 46%, rgba(250, 250, 250, .9) 26%, rgba(250, 250, 250, .6) 52%, rgba(250, 250, 250, .22) 78%, rgba(250, 250, 250, .08) 100%),
    linear-gradient(to bottom, var(--paper) 0%, rgba(250, 250, 250, 0) 13%, rgba(250, 250, 250, 0) 86%, var(--paper) 100%);
}

/* ---------- İMZA: masa kartı ---------- */
.table-card-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.table-card {
  position: relative;
  z-index: 3;
  width: 268px;
  padding: 26px 24px 22px;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  transform: rotate(-2.2deg);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, .06),
    0 2px 3px rgba(0, 0, 0, .05),
    0 24px 50px rgba(0, 0, 0, .13);
}

.table-card::after {
  content: '';
  position: absolute;
  inset: 3px -3px -3px 3px;
  background: #eeeeee;
  border-radius: 4px;
  z-index: -1;
}

.table-card-eyebrow {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.table-card-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.55rem;
  margin: 6px 0 16px;
}

.table-card img { width: 172px; height: 172px; display: block; margin: 0 auto; }

.table-card-hint {
  margin-top: 14px;
  font-size: .73rem;
  color: var(--ink-faint);
  line-height: 1.5;
}

.table-card-note {
  position: relative;
  z-index: 3;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-faint);
  background: rgba(250, 250, 250, .8);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ============================================
   GERÇEKLER ŞERİDİ
   ============================================ */
.facts {
  position: relative;
  z-index: 3;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.fact-value { font-size: 1.05rem; font-weight: 800; letter-spacing: -.3px; margin-bottom: 5px; }
.fact-label { font-size: .87rem; color: var(--ink-soft); line-height: 1.6; }

/* ============================================
   BÖLÜMLER
   ============================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--paper-alt); }
.section-head { max-width: 44em; margin-bottom: 48px; }

/* ---------- Sorunlar ---------- */
.problems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.problem {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.problem-no {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}

.problem h3 { font-size: 1.08rem; margin-bottom: 10px; letter-spacing: -.3px; }
.problem p { font-size: .92rem; line-height: 1.68; color: var(--ink-soft); }

/* ---------- Adımlar + telefon ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.steps-list { list-style: none; padding: 0; margin: 0; }

.steps-list li {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.steps-list li:last-child { border-bottom: 1px solid var(--line); }

.step-no {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 800;
}

.steps-list h3 { font-size: 1.05rem; margin-bottom: 7px; letter-spacing: -.3px; }
.steps-list p { font-size: .92rem; line-height: 1.68; color: var(--ink-soft); }

/* Telefon çerçevesi */
.phone-stage { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.phone {
  position: relative;
  width: 100%;
  max-width: 290px;
  padding: 10px;
  background: #111;
  border-radius: 40px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .18), inset 0 0 0 2px #2a2a2a;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone img { display: block; width: 100%; border-radius: 31px; }

.shot-caption {
  font-size: .8rem;
  color: var(--ink-faint);
  line-height: 1.55;
  text-align: center;
  max-width: 34em;
  margin: 14px auto 0;
}

.shot-caption-light { color: rgba(255, 255, 255, .42); }

/* ============================================
   KOYU BANT (canlı galeri)
   ============================================ */
.band {
  background: var(--ink);
  color: #fff;
  padding: 96px 0 0;
  overflow: hidden;
}

.band-head { max-width: 44em; margin-bottom: 44px; }
.band .section-title { color: #fff; }

/* Ekran çerçevesi */
.screen {
  border-radius: 14px;
  overflow: hidden;
  background: #1c1c1e;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .4);
}

.screen-light {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .1);
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.screen-light .screen-bar { background: #f4f4f5; border-bottom-color: var(--line); }

.screen-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.screen-light .screen-bar span { background: #dcdcdf; }
.screen img { display: block; width: 100%; }

/* Yatay akış */
.marquee {
  margin-top: 72px;
  padding-bottom: 72px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 60s linear infinite;
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee-frame {
  width: 170px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  opacity: .78;
}

.marquee-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* ============================================
   ÖZELLİKLER
   ============================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform .2s, box-shadow .2s;
}

.feature:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 0, 0, .06); }

.feature-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.feature h3 { font-size: 1rem; margin-bottom: 8px; letter-spacing: -.2px; }
.feature p { font-size: .89rem; line-height: 1.65; color: var(--ink-soft); }

/* ============================================
   PANEL BÖLÜMÜ
   ============================================ */
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.checks { list-style: none; padding: 0; margin: 0; }

.checks li {
  position: relative;
  padding: 12px 0 12px 30px;
  font-size: .93rem;
  line-height: 1.6;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.checks li:last-child { border-bottom: none; }

.checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 15px;
  width: 16px; height: 16px;
  background: var(--ink);
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/15px no-repeat;
          mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* ============================================
   SESLİ ANI
   ============================================ */
.voice-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.voice-visual {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.voice-bars { display: flex; align-items: center; gap: 5px; height: 120px; }

.voice-bars span {
  width: 5px;
  border-radius: 3px;
  background: var(--ink);
  opacity: .82;
  animation: voiceBar 1.25s ease-in-out infinite;
}

@keyframes voiceBar {
  0%, 100% { height: 8px; }
  50%      { height: 108px; }
}

/* ============================================
   ETKİNLİK TÜRLERİ
   ============================================ */
.event-types {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-types li {
  padding: 11px 20px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-full);
  font-size: .92rem;
  font-weight: 600;
  background: #fff;
  transition: border-color .18s, transform .18s;
}

.event-types li:hover { border-color: var(--ink); transform: translateY(-1px); }

/* ============================================
   SSS
   ============================================ */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.faq-grid .section-head { margin-bottom: 0; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.faq details:first-child { border-top: 1px solid var(--line); }

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 32px 18px 0;
  font-size: .97rem;
  font-weight: 700;
  letter-spacing: -.2px;
  position: relative;
  transition: color .15s;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--ink-soft); }

.faq summary::after {
  content: '';
  position: absolute;
  right: 4px; top: 50%;
  width: 12px; height: 12px;
  margin-top: -6px;
  background: var(--ink-faint);
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center/12px no-repeat;
          mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center/12px no-repeat;
  transition: transform .2s;
}

.faq details[open] summary::after { transform: rotate(180deg); }

.faq details p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--ink-soft);
  padding: 0 24px 20px 0;
  margin-top: -4px;
}

/* ============================================
   KAPANIŞ
   ============================================ */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -.9px;
  margin-bottom: 14px;
}

.cta-band p { color: rgba(255, 255, 255, .68); font-size: .98rem; margin-bottom: 28px; }

/* ============================================
   FORM (iletişim)
   ============================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.quote-form .field { margin-bottom: 16px; }

.quote-form label {
  display: block;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.quote-form .input { width: 100%; }
.quote-form textarea.input { resize: vertical; font-family: inherit; }
.quote-form .btn-ink { width: 100%; margin-top: 6px; }

.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: .8rem; color: var(--ink-faint); margin-top: 12px; line-height: 1.5; }

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: .88rem;
  margin-bottom: 16px;
}

.form-status.ok { display: block; background: #e9f7ef; color: #1e6b3f; }
.form-status.err { display: block; background: #fdecea; color: #b3261e; }

.contact-aside dl { margin-top: 28px; }
.contact-aside dt { font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--ink-faint); margin-bottom: 4px; }
.contact-aside dd { font-size: .95rem; margin-bottom: 18px; }
.contact-aside a { color: var(--ink); }

/* ============================================
   ALT BİLGİ
   ============================================ */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 32px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--ink-faint);
  max-width: 22em;
}

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col h4 {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink-faint);
  margin-bottom: 2px;
}

.footer-col a {
  font-size: .88rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .15s;
}

.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--ink-faint);
}

/* ============================================
   KAYDIRMA İLE BELİRME
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in { opacity: 1; transform: none; }

/* ============================================
   ERİŞİLEBİLİRLİK
   ============================================ */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .wall-col, .marquee-track, .voice-bars span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .feature:hover, .btn-ink:hover, .btn-paper:hover, .nav-cta:hover, .event-types li:hover { transform: none; }
}

/* ============================================
   MOBİL
   ============================================ */
@media (max-width: 980px) {
  .hero-grid, .steps-grid, .panel-grid, .voice-inner, .faq-grid, .form-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .panel-grid > div:first-child { order: 2; }
  .problems, .feature-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid { grid-template-columns: 1fr; gap: 20px; }
  .wall { grid-template-columns: repeat(5, 1fr); }
}

/* Menü: dar ekranda hamburger'e düşer */
@media (max-width: 900px) {
  .nav-links, .nav-login { display: none; }
  .nav-burger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 44px 0 60px; }
  .band { padding-top: 64px; }
  .problems, .feature-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .marquee { margin-top: 48px; padding-bottom: 56px; }
  .marquee-frame { width: 120px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 40px 0 24px; }

  /* Teklif düğmesi hamburger'in yanında sıkışmasın */
  .nav-cta { padding: 9px 14px; font-size: .82rem; }

  /* Telefonda duvar daha seyrek ve daha soluk */
  .wall { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .wall-veil { background:
    radial-gradient(130% 70% at 50% 42%, rgba(250,250,250,.985) 38%, rgba(250,250,250,.9) 62%, rgba(250,250,250,.6) 100%),
    linear-gradient(to bottom, var(--paper) 0%, rgba(250,250,250,0) 12%, rgba(250,250,250,0) 82%, var(--paper) 100%); }
}

@media (max-width: 380px) {
  .nav-cta { display: none; }
}

/* ============================================
   İÇ SAYFALAR
   ============================================ */

/* Sayfa başlığı (hero'nun sade hali) */
.page-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}

.page-hero .display { max-width: 16em; }
.page-hero .lede { margin-top: 4px; }
.page-hero .hero-ticks { margin-top: 24px; }

/* İki sütunlu anlatım blokları */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-reverse .split-copy { order: 2; }
.split-reverse .split-visual { order: 1; }

.split-copy .section-title { margin-top: 14px; }
.split-copy .checks { margin-top: 22px; }
.split-copy .lede + .checks { margin-top: 22px; }

.split-visual { display: flex; flex-direction: column; align-items: center; }
.split-visual .phone { max-width: 270px; }
.split-visual .voice-visual { width: 100%; }

/* Numara etiketi */
.pill {
  display: inline-block;
  padding: 6px 13px;
  border-radius: var(--radius-full);
  background: var(--mist);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Karşılaştırma tablosu ---------- */
.compare {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow-x: auto;
}

.compare table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.compare th,
.compare td {
  padding: 16px 18px;
  text-align: left;
  font-size: .89rem;
  border-bottom: 1px solid var(--line);
}

.compare thead th {
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--ink-faint);
  background: #fbfbfb;
}

.compare tbody td:first-child { font-weight: 700; color: var(--ink); }
.compare tbody tr:last-child td { border-bottom: none; }

.compare .col-us { background: rgba(17, 17, 17, .035); }
.compare thead .col-us { color: var(--ink); background: rgba(17, 17, 17, .06); }

.compare td.yes { color: #1d6b3c; font-weight: 600; }
.compare td.no  { color: #b3261e; }
.compare td.mid { color: var(--ink-soft); }

.compare td.yes::before,
.compare td.no::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 7px;
  vertical-align: -2px;
  background: currentColor;
}

.compare td.yes::before {
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
          mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
}

.compare td.no::before {
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/14px no-repeat;
          mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ---------- Zaman çizelgesi (nasıl çalışır) ---------- */
.timeline { position: relative; padding-left: 34px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--line);
}

.timeline-item { position: relative; padding: 0 0 40px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 5px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ink);
  border: 5px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line);
}

.timeline-when {
  font-size: .73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--ink-faint);
  margin-bottom: 6px;
}

.timeline-item h3 { font-size: 1.08rem; margin-bottom: 8px; letter-spacing: -.3px; }
.timeline-item p { font-size: .93rem; line-height: 1.7; color: var(--ink-soft); max-width: 34em; }

/* ---------- İletişim ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.contact-card h3 { font-size: .98rem; margin-bottom: 8px; }
.contact-card p { font-size: .89rem; line-height: 1.6; color: var(--ink-soft); }
.contact-card a { color: var(--ink); font-weight: 600; }

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse .split-copy { order: 1; }
  .split-reverse .split-visual { order: 2; }
  .contact-cards { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 40px; }
}

/* ============================================
   SADELEŞTİRME — kutuları kaldır, çizgiye indir
   (Hero'ya dokunulmadı.)
   ============================================ */

/* ---------- Sorunlar: kart değil, sütun ---------- */
.problems { grid-template-columns: repeat(3, 1fr); gap: 44px; }

.problem {
  background: none;
  border: none;
  border-top: 2px solid var(--ink);
  border-radius: 0;
  padding: 22px 0 0;
}

.problem-no {
  font-size: .7rem;
  letter-spacing: 1.6px;
  color: var(--ink);
  margin-bottom: 10px;
}

.problem h3 { font-size: 1.12rem; margin-bottom: 10px; }

/* ---------- Özellikler: kutu yok, ince çizgi ---------- */
.feature-grid { gap: 40px 44px; }

.feature {
  background: none;
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 22px 0 0;
  transition: none;
}

.feature:hover { transform: none; box-shadow: none; }

.feature-icon {
  width: auto;
  height: auto;
  background: none;
  color: var(--ink);
  border-radius: 0;
  margin-bottom: 14px;
}

.feature-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.feature h3 { font-size: 1.02rem; margin-bottom: 8px; }

/* ---------- Editoryal fotoğraf bandı ---------- */
.photo-band { padding: 0 0 96px; }

.photo-row {
  display: grid;
  grid-template-columns: 1.2fr .9fr 1.1fr;
  gap: 14px;
  align-items: end;
}

.photo-row figure { margin: 0; }

.photo-row img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.photo-row figure:nth-child(1) img { aspect-ratio: 4 / 5; }
.photo-row figure:nth-child(2) img { aspect-ratio: 3 / 4; }
.photo-row figure:nth-child(3) img { aspect-ratio: 5 / 4; }

.photo-row figcaption {
  margin-top: 10px;
  font-size: .78rem;
  color: var(--ink-faint);
  line-height: 1.5;
}

/* ---------- Kapanış: fotoğraflı ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 96px 48px;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cta-photo) center/cover no-repeat;
  opacity: .38;
  filter: grayscale(.25);
}

.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 17, 17, .55), rgba(17, 17, 17, .82));
}

.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { max-width: 18em; margin-left: auto; margin-right: auto; }
.cta-band p { color: rgba(255, 255, 255, .78); }

/* ---------- Etkinlik türleri: çip değil, dizgi ---------- */
.event-types { gap: 8px; }

.event-types li {
  border: none;
  background: none;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
  padding: 8px 4px;
  margin-right: 20px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.3px;
  transition: border-color .18s;
}

.event-types li:hover { border-color: var(--ink); transform: none; }

@media (max-width: 980px) {
  .problems { grid-template-columns: 1fr; gap: 32px; }
  .photo-row { grid-template-columns: 1fr 1fr; }
  .photo-row figure:nth-child(3) { display: none; }
  .cta-band { padding: 64px 28px; }
}
