/* ==========================================================================
   KARE MENÜ — TEMEL TASARIM SİSTEMİ
   ========================================================================== */

:root {
  /* Renkler */
  --ink: #16150F;
  --ink-soft: rgba(22, 21, 15, 0.6);
  --paper: #FFFFFF;
  --paper-soft: rgba(255, 255, 255, 0.85);
  --accent: #C1440E;
  --accent-dark: #9B3608;
  --muted: #6B6659;
  --line: #E7E3D8;

  /* Özellikler kutucukları için renk paleti — sıcak, dingin tonlar */
  --feat-sand: #EFE6D8;
  --feat-sage: #E2E6DC;
  --feat-clay: #E8DEDD;
  --feat-mist: #DEE3E6;
  --feat-khaki: #E9E2D3;
  --feat-teal: #DCE6E2;
  --feat-gold: #E6DCC7;

  /* Tipografi */
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Layout */
  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 20px);
  --header-h: 65px;

  /* Hareket */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 34px;
  width: auto;
}

.brand-logo--footer {
  height: 30px;
}

.btn {
display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 0;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

/* ==========================================================================
   HEADER — sadece logo + nav + burger, CTA yok
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease),
    transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.site-header .nav a {
  color: var(--paper);
}

.site-header.is-glass {
  background: var(--ink-soft);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.site-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-inner {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  display: block;
  padding-bottom: 2px;
}

.nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 0;
  border-bottom: 1px solid var(--accent);
  transform: scaleX(0);
}

.nav a:hover::before {
  width: 40%;
  animation: nav-underline-pulse 1.7s infinite ease-in;
}

.nav a:hover {
  animation: nav-link-pulse 1.7s infinite ease-in;
}

@keyframes nav-link-pulse {
  0% { transform: scale(1); }
  10% { transform: scale(1.08); }
  20% { transform: scale(1); }
  30% { transform: scale(1.08); }
  40% { transform: scale(1); }
}

@keyframes nav-underline-pulse {
  0% { transform: scaleX(0); }
  10% { transform: scaleX(1); }
  20% { transform: scaleX(0); }
  30% { transform: scaleX(1); }
  40% { transform: scaleX(0); }
}

.nav-login {
  opacity: 0.75 !important;
  border-left: 1px solid rgba(250, 248, 243, 0.25);
  padding-left: 20px;
}

/* Burger — sadece mobilde görünür. Menü kapalıyken beyaz ikon (koyu hero/
   header üzerinde), menü açıkken siyah ikon (beyaz drawer'ın üzerinde,
   çünkü buton z-index ile drawer'ın üstünde sabit kalıyor). */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  z-index: 210;
  position: relative;
}

.burger-icon {
  position: absolute;
  width: 25px;
  height: 20px;
  transition: opacity 0.25s var(--ease);
}

.burger-icon--black { opacity: 0; }

.burger.is-open .burger-icon--white { opacity: 0; }
.burger.is-open .burger-icon--black { opacity: 1; }

/* Sağdan kayan mobil menü */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(22, 21, 15, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--paper);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 76px 28px 32px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
}

.mobile-drawer nav a {
  padding: 12px 2px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  position: relative;
  width: fit-content;
}

.mobile-drawer nav a::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  border-bottom: 1px solid var(--accent);
  transform: scaleX(0);
}

.mobile-drawer nav a:hover::before,
.mobile-drawer nav a:active::before {
  width: 100%;
  animation: nav-underline-pulse 1.7s infinite ease-in;
}

.mobile-drawer nav a:hover,
.mobile-drawer nav a:active {
  animation: nav-link-pulse 1.7s infinite ease-in;
}

.mobile-drawer nav a:last-child {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
  /* Fotoğraf gelene kadar nötr bir zemin */
  background: linear-gradient(160deg, #2b281f, #16150f);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(22, 21, 15, 0.82) 0%,
    rgba(22, 21, 15, 0.55) 45%,
    rgba(22, 21, 15, 0.25) 75%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-h) + 40px) var(--pad) 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-copy {
  color: var(--paper);
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--paper-soft);
  margin: 0;
  max-width: 46ch;
}

.btn-hero {
  background: var(--accent);
  color: var(--paper);
}

.btn-hero:hover { background: var(--accent-dark); }

.hero-mockup {
  display: flex;
  justify-content: center;
  animation: mockup-in 0.9s var(--ease) 0.2s both;
}

@keyframes mockup-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.phone-mock {
  position: relative;
  width: min(385px, 100%);
  aspect-ratio: 385 / 750;
}

.phone-mock-screen {
  position: absolute;
  left: 7.013%;
  top: 3.333%;
  width: 85.714%;
  height: 93.467%;
  border-radius: 0;
  overflow: hidden;
  background: var(--paper);
}

.phone-mock-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-live-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  height: 828px;
  border: 0;
  pointer-events: none;
  transform-origin: top left;
  background: var(--paper);
}

/* ==========================================================================
   ÖZELLİKLER — 9 öğeli bento grid
   Masaüstü: 6 sütun · Tablet (≤1100px): 4 sütun · Mobil (≤640px): 2 sütun
   ========================================================================== */

.features {
  padding: 50px var(--pad);
}

.features-inner {
max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.features-header {
max-width: 46ch;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.features-eyebrow-label {
font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

.features-title {
font-size: clamp(20px, 3.2vw, 25px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

.features-lead {
font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.feat-grid-wrap {
  background: #F6F3EC;
  border-radius: 0;
  padding: 20px;
}

.feat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.5fr) minmax(0, 1.5fr) minmax(0, 1fr);
  grid-template-rows: 90px 150px 100px 100px;
  gap: 12px;
  grid-template-areas:
    "a c e h"
    "a f f f"
    "a g g i"
    "st g g i";
}

.feat-stats {
  grid-area: st;
  display: flex;
  gap: 12px;
}

.feat-stats .feat-item { flex: 1; }

.feat-item {
  background: #fff;
  border-radius: 0;
}

.feat-a { grid-area: a; }

.feat-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.feat-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2b281f;
}

.feat-photo-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,21,15,0) 35%, rgba(22,21,15,0.85) 100%);
}

.feat-photo-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feat-photo-text h3 {
  color: var(--paper);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.feat-photo-text p {
  color: rgba(250, 248, 243, 0.85);
  font-size: 12.5px;
  line-height: 1.4;
  margin: 0;
}

.feat-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feat-tag {
  display: inline-block;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--muted);
}

.feat-tag--light { color: rgba(250, 248, 243, 0.75); }

.feat-b, .feat-c, .feat-d, .feat-e, .feat-h {
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feat-b { background: var(--feat-sand); }
.feat-c { grid-area: c; background: var(--feat-sage); }
.feat-d { background: var(--feat-clay); }
.feat-e { grid-area: e; background: var(--feat-mist); }
.feat-h { grid-area: h; background: var(--feat-teal); }

.feat-icon {
  width: 20px;
  height: 20px;
  color: var(--ink);
}

.feat-b h3, .feat-c h3, .feat-d h3, .feat-e h3, .feat-h h3 {
  font-size: 12.5px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.feat-f {
  grid-area: f;
  background: var(--accent);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.feat-f h3 {
  color: var(--paper);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.feat-f p {
  color: rgba(250, 248, 243, 0.85);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.feat-g { grid-area: g; background: var(--feat-khaki); }

.feat-i {
  grid-area: i;
  background: var(--feat-gold);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.feat-i .feat-icon { flex: none; color: var(--accent); }

.feat-i h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

/* Tablet + Mobil — 1024px altında sade 2 sütunlu düzen
   (4 sütunlu ara hâl kartları çok küçük/okunaksız yaptığı için kaldırıldı) */
@media (max-width: 1024px) {
  .feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    grid-template-areas:
      "a a"
      "st st"
      "c e"
      "h i"
      "f f"
      "g g";
    gap: 10px;
  }

  .feat-a { min-height: 100px; }
  .feat-g { min-height: 150px; }
}

/* ==========================================================================
   FİYATLANDIRMA — masaüstü tablo + mobil sekmeli görünüm
   ========================================================================== */

.pricing {
  padding: 50px var(--pad);
}

.pricing-inner {
max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.pricing-header {
  max-width: 46ch;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pricing-eyebrow-label {
font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

.pricing-title {
font-size: clamp(20px, 3.2vw, 25px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

.pricing-lead {
font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* Paket rengi gradyanları */
.pricing-grad-menu { background: linear-gradient(135deg, #8BC34A, #005088); }
.pricing-grad-web { background: linear-gradient(135deg, #9C27B0, #00BCD4); }
.pricing-grad-webplus { background: linear-gradient(135deg, #E91E63, #FF9800); }

/* ============== MASAÜSTÜ TABLO ============== */

.pricing-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: stretch;
}

.pricing-row--head { align-items: end; }
.pricing-row--alt { background: #F2F2F0; }
.pricing-row--last .pricing-cell,
.pricing-row--last .pricing-feature { padding-bottom: 14px; }

.pricing-plan {
  padding: 18px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  border-radius: 0;
  position: relative;
  color: #fff;
}

.pricing-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-name { font-size: 14px; font-weight: 600; }
.pricing-price { font-size: 22px; font-weight: 300; }
.pricing-price small { font-size: 11px; font-weight: 400; color: rgba(255, 255, 255, 0.8); }

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--ink);
  font-size: 9px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pricing-feature {
  padding: 12px 16px 12px 4px;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.pricing-cell {
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-cell--dash { color: #C7C2B4; }

.pricing-icon-check {
  width: 15px;
  height: 15px;
  color: var(--ink);
  flex: none;
}

.pricing-icon-dash {
  width: 12px;
  height: 12px;
  color: #C7C2B4;
  flex: none;
}

.pricing-fit {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.pricing-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 14px;
  margin-top: -14px;
}

@media (max-width: 900px) {
  .pricing-table { min-width: 640px; }
}

.pricing-note {
  font-size: 12.5px;
  color: var(--muted);
}

.pricing-note a { text-decoration: underline; color: var(--ink); }

/* ============== MOBİL: SEKME + TEK PAKET DETAYI ============== */

.pricing-mobile-only {
  display: none;
}

.pricing-tabs {
  display: flex;
  background: var(--feat-sand);
  border-radius: 0;
  padding: 4px;
  gap: 4px;
}

.pricing-tab {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 6px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 0;
  cursor: pointer;
}

.pricing-tab.is-active { color: #fff; }
.pricing-tab[data-plan="menu"].is-active { background: linear-gradient(135deg, #8BC34A, #005088); }
.pricing-tab[data-plan="web"].is-active { background: linear-gradient(135deg, #9C27B0, #00BCD4); }
.pricing-tab[data-plan="webplus"].is-active { background: linear-gradient(135deg, #E91E63, #FF9800); }

.pricing-mobile-panel { display: none; }
.pricing-mobile-panel.is-active { display: flex; flex-direction: column; gap: 16px; }

.pricing-mobile-price {
  border-radius: 0;
  padding: 22px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.pricing-mobile-features { display: flex; flex-direction: column; }

.pricing-mfeature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.pricing-mfeature:last-child { border-bottom: none; }

@media (max-width: 640px) {
  .pricing-desktop-only { display: none; }
  .pricing-mobile-only { display: flex; flex-direction: column; gap: 16px; }
}

/* Önizleme dolgu alanı (gerçek sitede kaldırılacak) */
.scroll-filler {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  border-bottom: 1px solid var(--line);
}

/* ==========================================================================
FOOTER
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: var(--paper-soft);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px var(--pad) 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--paper-soft);
  max-width: 260px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--paper); }

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 243, 0.12);
}

.footer-legal,
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px var(--pad) 28px;
  font-size: 13px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
}

.footer-legal a:hover { color: var(--paper); }

.footer-copy { margin: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .nav.is-desktop { display: none; }
  .burger { display: flex; }

  .header-inner { position: relative; justify-content: center; }
  .brand { position: absolute; left: 50%; transform: translateX(-50%); }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: calc(var(--header-h) + 24px);
  }

  .hero-mockup { order: -1; }

  .footer-inner { flex-direction: column; gap: 32px; }
}

/* Masaüstü genişliğinde mobil menü her koşulda kapalı kalmalı — tablet
   yatay/dikey döndüğünde "is-open" class'ı JS tarafından sıfırlanmasa
   bile burada zorla gizleniyor. */
@media (min-width: 901px) {
  .drawer-overlay,
  .mobile-drawer {
    display: none !important;
  }
}

/* ==========================================================================
   SSS — çizgisiz, çok sütunlu akordeon
   Masaüstü: 3 sütun · Tablet (≤900px): 2 sütun · Mobil (≤640px): 1 sütun
   ========================================================================== */

.faq {
  padding: 50px var(--pad);
}

.faq-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.faq-eyebrow-label {
font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

.faq-title {
font-size: clamp(20px, 3.2vw, 25px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

.faq-header {
  max-width: 46ch;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-lead {
font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.faq-item { border-radius: 0; overflow: hidden; }
.faq-color-1 { background: var(--feat-mist); }
.faq-color-2 { background: var(--feat-sand); }
.faq-color-3 { background: var(--feat-sage); }

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
}

.faq-question span:first-child {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.faq-item.is-open .faq-question span:first-child {
  white-space: normal;
}

.faq-icon {
  flex: none;
  display: flex;
  transition: transform 0.2s var(--ease);
}

.faq-icon-svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  padding: 0 18px 16px;
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .faq-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   DEMO — sabit arka plan fotoğraf (parallax) + scroll'da yumuşak zoom
   ========================================================================== */

.demo {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.demo-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/demo-bg.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #2b281f;
}

@media (max-width: 640px) {
  .demo-bg { background-attachment: scroll; height: 500px; }
}

.demo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 21, 15, 0.25), rgba(22, 21, 15, 0.5));
}

.demo-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: var(--pad);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.demo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
}
.demo-header {
max-width: 46ch;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.demo-eyebrow-label {
font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

.demo-title {
font-size: clamp(20px, 3.2vw, 25px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--paper);
}

.demo-lead {
font-size: 15px;
    color: rgba(250, 248, 243, 0.75);
  max-width: 42ch;
  margin: 0;
}

.demo-btn {
  background: var(--accent);
  color: var(--paper);
text-transform: uppercase;
}

.demo-btn:hover { background: var(--accent-dark); }

.demo-qr {
background: var(--paper);
  border-radius: 0;
  padding: 10px 10px 15px 10px;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.demo-qr img {
  width: 200px;
  height: 200px;
}

.demo-qr-caption {
  font-size: 15px;
  color: var(--muted);
}

.demo-qr-url {
  font-size: 15px;
  color: #B8B2A2;
}

@media (max-width: 900px) {
  .demo-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .demo-copy { align-items: center; }
}


/* ==========================================================================
   İLETİŞİM — form + iletişim bilgileri
   ========================================================================== */

.contact {
  padding: 50px var(--pad);
  background: #F6F3EC;
}

.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-eyebrow-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}

.contact-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

.contact-lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 38ch;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
}

.contact-details a { font-weight: 600; }
.contact-details a:hover { color: var(--accent); }

.contact-details-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.contact-form {
  background: #fff;
  border-radius: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}

.contact-optional {
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.contact-field input,
.contact-field textarea {
  font-family: var(--font);
  font-size: 14px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-submit {
  background: var(--accent);
  color: var(--paper);
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.contact-submit:hover { background: var(--accent-dark); }
.contact-submit:disabled { opacity: 0.6; cursor: default; }

.contact-feedback {
  font-size: 13px;
}

.contact-feedback:empty {
  display: none;
}

.contact-feedback.is-success { color: #3B6D11; }
.contact-feedback.is-error { color: #C1440E; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-field-row { grid-template-columns: 1fr; }
}