:root {
  color-scheme: only light;
  --brand: #C8651F;
  --brand-dark: #A4531C;
  --brand-deep: #6E3A12;
  --brand-tint: #F6E7D3;
  --ink: #2B2118;
  --ink-soft: #5C4B3A;
  --ink-faint: #9A8468;
  --cream: #F3EAD8;
  --paper: #FFFFFF;
  --line: #E0D0B4;
  --green: #5B8266;
  --radius: 14px;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: clip;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 234, 216, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 38px; width: auto; }
footer .logo img { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.nav-links a:hover { color: var(--brand); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--brand); color: #fff;
  padding: 11px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-ghost:hover { background: var(--brand-tint); }
.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--ink); cursor: pointer; }

/* ---------- hero ---------- */
.hero { padding: 72px 0 80px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  grid-template-areas: 'copy stage' 'store stage';
  gap: 0 48px; align-items: center;
}
.hero-copy { grid-area: copy; align-self: end; }
.hero-grid > .store-row { grid-area: store; align-self: start; }
.phone-stage { grid-area: stage; }
.kicker {
  display: inline-block; background: var(--brand-tint); color: var(--brand-deep);
  font-size: 13px; font-weight: 800; letter-spacing: 1.5px;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
}
h1 {
  font-size: clamp(38px, 5.4vw, 58px);
  font-weight: 800; line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 20px;
}
h1 em { font-style: normal; color: var(--brand); }
.lead { font-size: 19px; color: var(--ink-soft); max-width: 480px; margin-bottom: 30px; }
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff;
  padding: 10px 20px; border-radius: 12px;
  transition: transform .15s, opacity .2s;
}
.store-btn:hover { transform: translateY(-2px); opacity: .9; }
.store-btn.soon { position: relative; cursor: default; }
.store-btn.soon:hover { transform: none; opacity: 1; }
.soon-badge {
  position: absolute; top: -10px; right: -8px;
  background: var(--brand); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .8px;
  padding: 3px 8px; border-radius: 999px;
  box-shadow: 0 4px 10px -4px rgba(164, 83, 28, .6);
}
.store-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-btn small { display: block; font-size: 10px; font-weight: 500; opacity: .75; line-height: 1.2; }
.store-btn strong { display: block; font-size: 16px; font-weight: 700; line-height: 1.2; }
.try-hint {
  margin-top: 26px; font-size: 14px; font-weight: 600; color: var(--brand);
  display: flex; align-items: center; gap: 8px;
}
.try-hint svg { width: 18px; height: 18px; }

/* ---------- phone demo ---------- */
.phone-stage { display: flex; flex-direction: column; align-items: center; gap: 16px; position: relative; }
.phone-glow {
  position: absolute; inset: 10% 15%; border-radius: 50%;
  background: var(--brand-tint); z-index: 0;
}
.phone {
  position: relative; z-index: 1;
  width: 280px; height: 560px;
  background: var(--ink); border-radius: 42px; padding: 12px;
  box-shadow: 0 30px 60px -20px rgba(38, 24, 15, 0.35);
}
.phone-notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 24px; background: var(--ink); border-radius: 999px; z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%; background: #0C1928;
  border-radius: 32px; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.app-panes { flex: 1; position: relative; min-height: 0; }
.app-pane {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  opacity: 0; transform: translateX(22px);
  transition: opacity .38s ease, transform .38s ease;
  pointer-events: none;
}
.app-pane.active { opacity: 1; transform: none; pointer-events: auto; }
.app-head { background: #3B5578; padding: 34px 12px 9px; display: flex; align-items: center; flex-shrink: 0; }
.app-head .brand { font-size: 12px; font-weight: 800; color: var(--brand); letter-spacing: .5px; }
.app-head .title { flex: 1; text-align: center; font-size: 12px; font-weight: 700; color: #fff; margin-right: 28px; }
.app-body { flex: 1; overflow: hidden; padding: 9px 10px; display: flex; flex-direction: column; gap: 7px; min-height: 0; }
.app-sub { font-size: 9.5px; color: #8FA3B8; }
.seg { display: flex; background: #152538; border-radius: 8px; padding: 3px; flex-shrink: 0; }
.seg span { flex: 1; text-align: center; font-size: 9px; font-weight: 700; color: #8FA3B8; padding: 5px 0; border-radius: 6px; cursor: pointer; }
.seg span.on { background: #24384F; color: #fff; }
.rest-list { display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.rest-card { background: #152538; border-radius: 10px; padding: 8px 9px; display: flex; align-items: center; gap: 8px; opacity: 0; animation: rise .4s ease forwards; }
.rest-logo { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: #fff; }
.rest-info { flex: 1; min-width: 0; }
.rest-info b { display: block; font-size: 10.5px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rest-info small { display: block; font-size: 8.5px; color: #8FA3B8; }
.rest-info .stars { color: var(--brand); font-weight: 700; }
.rest-side { text-align: right; flex-shrink: 0; }
.rest-side b { font-size: 10px; font-weight: 800; color: var(--brand); }
.rest-side small { display: block; font-size: 8px; color: #8FA3B8; }
@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.app-tabbar { background: #3B5578; display: flex; align-items: flex-end; padding: 6px 4px 12px; position: relative; flex-shrink: 0; transition: opacity .35s ease; }
.splash-body { flex: 1; display: flex; align-items: center; justify-content: center; background: #FFFFFF; border-radius: 32px; }
.splash-body img { width: 160px; height: auto; animation: splashin 1s cubic-bezier(.34, 1.4, .5, 1) both; }
@keyframes splashin {
  0% { opacity: 0; transform: scale(.4) translateY(18px); }
  55% { opacity: 1; }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.phone-screen:has(#pane-splash.active) .app-tabbar { opacity: 0; pointer-events: none; }
.app-tab { flex: 1; text-align: center; color: #C3CFDD; font-size: 7.5px; font-weight: 700; cursor: pointer; }
.app-tab svg { width: 15px; height: 15px; display: block; margin: 0 auto 2px; }
.app-tab.on { color: var(--brand); }
.app-tab.dim { opacity: .55; cursor: default; }
.tab-spacer { flex: 1; }
.qr-fab {
  position: absolute; left: 50%; top: -20px; transform: translateX(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand); border: 4px solid #0C1928; color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  animation: pulse 2.4s ease-in-out infinite;
}
.qr-fab svg { width: 20px; height: 20px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 101, 31, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(200, 101, 31, 0); }
}
.search-box { background: #152538; border-radius: 8px; padding: 7px 10px; font-size: 10px; font-weight: 600; color: #fff; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.search-box small { color: #8FA3B8; font-size: 9px; }
.chip-row { display: flex; gap: 5px; flex-shrink: 0; flex-wrap: wrap; }
.chip { font-size: 8.5px; font-weight: 700; color: #8FA3B8; border: 1px solid #24384F; border-radius: 999px; padding: 3px 9px; }
.chip.on { color: var(--brand); border-color: var(--brand); }
.sort-row { display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.sort-toggle { display: flex; background: #152538; border-radius: 999px; padding: 2px; }
.sort-toggle span { font-size: 8.5px; font-weight: 700; color: #8FA3B8; padding: 3px 10px; border-radius: 999px; }
.sort-toggle span.on { background: var(--brand); color: #fff; }
.food-row { background: #152538; border-radius: 10px; padding: 7px 9px; display: flex; align-items: center; gap: 8px; opacity: 0; animation: rise .4s ease forwards; }
.food-img { width: 26px; height: 26px; border-radius: 6px; flex-shrink: 0; }
.food-info { flex: 1; min-width: 0; }
.food-info b { display: block; font-size: 10px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.food-info small { display: block; font-size: 8.5px; color: #8FA3B8; }
.food-price { font-size: 10.5px; font-weight: 800; color: var(--brand); white-space: nowrap; }
.best-tag { display: inline-block; font-size: 7px; font-weight: 800; background: rgba(29,158,117,.18); color: #35C896; border-radius: 4px; padding: 1px 5px; margin-left: 4px; vertical-align: 1px; }
.qr-stage { flex: 1; background: #060B12; display: flex; align-items: center; justify-content: center; position: relative; }
.qr-frame { width: 128px; height: 128px; position: relative; }
.qr-frame::before, .qr-frame::after, .qr-frame i::before, .qr-frame i::after { content: ''; position: absolute; width: 22px; height: 22px; border: 3px solid #fff; }
.qr-frame::before { top: -8px; left: -8px; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.qr-frame::after { top: -8px; right: -8px; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; }
.qr-frame i::before { bottom: -8px; left: -8px; border-right: none; border-top: none; border-radius: 0 0 0 6px; }
.qr-frame i::after { bottom: -8px; right: -8px; border-left: none; border-top: none; border-radius: 0 0 6px 0; }
.qr-img { width: 100%; height: 100%; border-radius: 6px; object-fit: cover; display: block; }
.scan-line { position: absolute; left: 4px; right: 4px; height: 2px; background: var(--brand); border-radius: 2px; animation: scan 1.6s ease-in-out infinite; }
@keyframes scan { 0%, 100% { top: 8%; } 50% { top: 88%; } }
.qr-banner {
  position: absolute; top: 10px; left: 10px; right: 10px; z-index: 2;
  background: #5B8266; color: #fff; font-size: 9px; font-weight: 700;
  border-radius: 8px; padding: 7px 9px;
  opacity: 0; animation: rise .35s 8s ease forwards;
}
.menu-row { display: flex; justify-content: space-between; align-items: center; background: #152538; border-radius: 8px; padding: 7px 9px; opacity: 0; animation: rise .4s ease forwards; }
.menu-row span { font-size: 10px; font-weight: 600; color: #fff; }
.menu-row b { font-size: 10.5px; font-weight: 800; color: var(--brand); }
.compare-chip {
  background: rgba(29,158,117,.14); border: 1px solid rgba(29,158,117,.4);
  border-radius: 8px; padding: 6px 9px; font-size: 8.5px; line-height: 1.5;
  color: #B9E7D6; flex-shrink: 0;
  opacity: 0; animation: rise .4s .7s ease forwards;
}
.compare-chip b { color: #35C896; }
.map-stage { flex: 1; position: relative; overflow: hidden; }
.map-stage svg.roads { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin {
  position: absolute; width: 30px; height: 30px; border-radius: 50%;
  border: 2.5px solid var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.4);
}

/* ---------- sections ---------- */
section { padding: 76px 0; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800; letter-spacing: -1px; line-height: 1.15;
  margin-bottom: 14px;
}
.section-lead { font-size: 17px; color: var(--ink-soft); max-width: 560px; margin-bottom: 40px; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.quote-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px;
}
.quote-card { transition: opacity .6s ease; }
.quote-tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
  color: var(--brand-deep); background: var(--brand-tint);
  padding: 4px 11px; border-radius: 999px; margin-bottom: 12px;
}
.quote-tag.alt { color: #0F6B4E; background: #E2F4EC; }
.quote-card.quote-fade { opacity: 0; }
.quote-card p { font-size: 17px; font-style: italic; font-weight: 600; color: var(--ink-soft); min-height: 55px; }
.quote-card small { display: block; margin-top: 10px; font-size: 13px; color: var(--ink-faint); font-weight: 600; }
.punchline { font-size: 20px; font-weight: 800; color: var(--brand); }

.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -18px rgba(38,24,15,.2); }
.step-num {
  position: absolute; top: 22px; right: 24px;
  font-size: 42px; font-weight: 800; color: var(--brand-tint); line-height: 1;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--brand-tint); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-icon svg { width: 26px; height: 26px; }
.step-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.step-card p { font-size: 15px; color: var(--ink-soft); }

.biz-band {
  background: var(--ink); border-radius: 20px; color: #fff;
  padding: 44px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.biz-band h2 { color: #fff; margin-bottom: 8px; font-size: 28px; }
.biz-band p { color: rgba(255,255,255,.7); font-size: 16px; max-width: 480px; }
.biz-badges { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.biz-badge {
  font-size: 13px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.12); border-radius: 999px; padding: 6px 14px;
}

.cta-final { text-align: center; }
.cta-final .store-row { justify-content: center; margin-top: 8px; }

/* ---------- footer ---------- */
footer { background: var(--paper); border-top: 1px solid var(--line); padding: 44px 0 28px; }
.foot-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 30px; }
.foot-about { max-width: 320px; }
.foot-about p { font-size: 14px; color: var(--ink-soft); margin-top: 10px; }
.sosyal { display: flex; gap: 10px; margin-top: 16px; }
.sosyal a {
  width: 36px; height: 36px; border: 1.5px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-dark); transition: background .15s, border-color .15s, color .15s;
}
.sosyal a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.sosyal svg { width: 17px; height: 17px; }
.foot-col h5, .foot-h {
  display: block; font-size: 13px; font-weight: 800; letter-spacing: 1px; color: var(--ink-faint); margin-bottom: 12px; }
.foot-col a { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); padding: 4px 0; }
.foot-col a:hover { color: var(--brand); }
.foot-base {
  border-top: 1px solid var(--line); padding-top: 20px;
  font-size: 13px; color: var(--ink-faint);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

/* ---------- inner pages ---------- */
.page-head { padding: 64px 0 20px; }
.page-head h1 { font-size: clamp(32px, 4.5vw, 46px); }
.page-head .lead { margin-bottom: 0; }
.prose { max-width: 720px; padding-bottom: 80px; }
.prose h2 { font-size: 24px; margin: 40px 0 12px; }
.prose h3 { font-size: 18px; font-weight: 800; margin: 28px 0 10px; }
.prose p, .prose li { font-size: 16px; color: var(--ink-soft); margin-bottom: 12px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose a { color: var(--brand); font-weight: 700; }
.prose a.btn { color: #fff; }
.prose strong { color: var(--ink); }
.notice {
  background: var(--brand-tint); border-radius: var(--radius);
  padding: 18px 22px; font-size: 15px; color: var(--brand-deep); margin: 20px 0;
}

/* ---------- forms ---------- */
.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 36px; max-width: 640px; margin-top: 8px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 14px; font-weight: 700; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 11px 14px; outline: none; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); margin: 6px 0 20px; }
.check-row input { margin-top: 4px; accent-color: var(--brand); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .qr-fab, .scan-line, .rest-card, .food-row, .menu-row, .compare-chip, .qr-banner, .tap-hint { animation: none; opacity: 1; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero { padding: 44px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: 'copy' 'stage' 'store'; gap: 0; }
  .hero-copy { align-self: auto; margin-bottom: 40px; }
  .hero-grid > .store-row { align-self: auto; justify-content: center; }
  .quote-grid, .step-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 18px 24px; align-items: flex-start; gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .biz-band { padding: 32px 26px; }
  section { padding: 56px 0; }
}

/* ---------- asistan orzo v5: highlight ---------- */
.cat-wrap {
  position: absolute; bottom: -6px; left: 50%;
  width: 170px; z-index: 5; cursor: pointer; user-select: none;
}
.cat { width: 140px; height: 120px; display: block; margin: 0 auto; }
.cat-wrap.running .cat { animation: walkbob .34s ease-in-out infinite alternate; }
@keyframes walkbob {
  from { transform: translateY(0) rotate(1.5deg); }
  to { transform: translateY(-8px) rotate(-2deg); }
}
.cat-wrap:active .cat { opacity: .85; }
.cat-tail { transform-origin: 102px 110px; animation: tailwag 3s ease-in-out infinite; }
@keyframes tailwag {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(10deg); }
}
.cat-eyes { transform-origin: 58px 40px; animation: blink 4.5s infinite; transition: transform .4s ease; }
@keyframes blink {
  0%, 90%, 100% { transform: scaleY(1); }
  93% { transform: scaleY(.08); }
  96% { transform: scaleY(1); }
}
.cat-wrap.peeking .cat-eyes { animation: none; transform: scale(1.16); }
.cat-wrap.peeking .cat-pupils { animation: peekpupil 2.1s ease-in-out infinite; }
@keyframes peekpupil {
  0%, 100% { transform: translate(0, 0); }
  30% { transform: translate(-2.5px, 0); }
  60% { transform: translate(2.5px, -1px); }
}
.cat-paw { transform-origin: 51px 100px; transition: transform .3s ease; }
.cat-wrap.pointing .cat-paw { transform: translate(-12px, -14px) rotate(-32deg); }
.cat-bubble {
  position: absolute; left: 146px; bottom: 118px; width: 208px; z-index: 6;
  background: var(--paper); border: 2px solid var(--brand);
  border-radius: 34px 46px 38px 48px / 46px 36px 48px 38px;
  padding: 16px 20px; text-align: center;
  font-size: 15px; font-weight: 600; line-height: 1.5; color: var(--ink);
  box-shadow: 0 8px 20px -10px rgba(31, 31, 31, .2);
  opacity: 0; transform: rotate(-2deg) scale(.85) translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.cat-wrap.arrived .cat-bubble { opacity: 1; transform: none; }
.cat-bubble::after {
  content: ''; position: absolute; left: -18px; bottom: 14px;
  width: 14px; height: 12px;
  border-radius: 55% 45% 50% 50% / 60% 55% 45% 50%;
  background: var(--paper); border: 2px solid var(--brand);
}
.cat-bubble::before {
  content: ''; position: absolute; left: -30px; bottom: 2px;
  width: 8px; height: 7px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--brand);
}
.cat-bubble.speak { animation: speak .4s ease; }
@keyframes speak {
  0% { transform: rotate(-2deg) scale(.92); }
  60% { transform: rotate(1.2deg) scale(1.03); }
  100% { transform: rotate(0deg); }
}
.pointed {
  transform: scale(1.3); position: relative; z-index: 7; border-radius: 10px;
  animation: spotlight 1.1s ease-in-out infinite;
  transition: transform .25s;
}
@keyframes spotlight {
  0%, 100% { box-shadow: 0 0 0 3px rgba(200, 101, 31, .55), 0 0 16px 5px rgba(200, 101, 31, .35); }
  50% { box-shadow: 0 0 0 8px rgba(200, 101, 31, .15), 0 0 22px 9px rgba(200, 101, 31, .12); }
}
.rate-box { background: #152538; border-radius: 10px; padding: 12px; display: flex; align-items: center; gap: 10px; }
.rate-stars { color: var(--brand); font-size: 16px; letter-spacing: 2px; }
.rate-score { display: flex; align-items: baseline; gap: 6px; }
.rate-score b { font-size: 15px; color: #fff; }
.rate-score small { font-size: 9px; color: #8FA3B8; }
.rate-cats { display: flex; gap: 6px; }
.rate-cats span { flex: 1; text-align: center; background: #152538; border-radius: 8px; padding: 7px 0; font-size: 9px; font-weight: 700; color: var(--brand); }
.fav-btn {
  border: 1px solid var(--brand); background: rgba(200, 101, 31, .12); color: var(--brand);
  border-radius: 10px; padding: 9px 0; font-size: 11px; font-weight: 800;
  font-family: inherit; cursor: pointer; width: 100%;
}
.review-card { background: #152538; border-radius: 10px; padding: 9px 11px; }
.review-card b { font-size: 10.5px; color: #fff; }
.review-card small { font-size: 9px; color: var(--brand); margin-left: 6px; font-weight: 700; }
.review-card p { font-size: 9.5px; color: #8FA3B8; margin-top: 3px; line-height: 1.4; }
.puan-item { opacity: 0; animation: rise .4s ease forwards; }
.qr-fab.pointed { position: absolute; left: 50%; top: -20px; transform: translateX(-50%) scale(1.22); border-radius: 50%; z-index: 7; }
.app-tabbar:has(.pointed) { z-index: 6; }
@media (max-width: 1460px) {
  .cat-bubble { left: 142px; width: 180px; font-size: 13.5px; padding: 14px 15px; }
}
@media (max-width: 1240px) {
  .cat-wrap { bottom: auto; top: 100%; margin-top: 2px; }
  .cat-bubble {
    left: auto; right: 140px; top: -4px; bottom: auto; width: 300px;
    font-size: 14.5px; padding: 15px 18px;
    border-radius: 26px 32px 28px 34px / 32px 26px 34px 28px;
  }
  .cat-bubble::after {
    left: auto; right: -17px; top: 22px; bottom: auto;
    width: 13px; height: 11px;
  }
  .cat-bubble::before { display: none; }
  .phone-stage { margin-bottom: 214px; }
}
@media (max-width: 860px) {
  .cat-wrap { width: 150px; }
  .cat { width: 116px; height: 100px; }
  .cat-bubble { right: 126px; width: min(300px, 64vw); font-size: 15px; }
  .bubble-next { padding: 9px 18px; font-size: 14px; }
  .phone-stage { margin-bottom: 218px; }
}
@media (max-width: 360px) {
  .phone { width: 252px; height: 512px; }
  .cat-bubble { right: 118px; width: 58vw; }
  .phone-stage { margin-bottom: 240px; }
}
@media (prefers-reduced-motion: reduce) {
  .cat-wrap { transition: none !important; }
  .cat, .cat-tail, .cat-eyes, .cat-bubble.speak, .cat-wrap.running .cat,
  .cat-wrap.peeking .cat-pupils, .pointed { animation: none !important; }
  .pointed { box-shadow: 0 0 0 3px rgba(200, 101, 31, .55); }
  .cat-bubble { opacity: 1; transform: none; }
}


/* ---------- isletme planlari ---------- */
.plan-ilke {
  max-width: 640px; margin: 26px auto 0; background: var(--ink); color: #fff;
  border-radius: 16px; padding: 16px 26px; text-align: center; font-size: 15px; font-weight: 700;
}
.plan-ilke b { color: var(--brand); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 30px 26px; display: flex; flex-direction: column; position: relative;
}
.plan-card.populer { border: 2px solid var(--brand); box-shadow: 0 18px 40px -22px rgba(164, 83, 28, .45); }
.pop-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.plan-card h2 { font-size: 20px; margin: 0; }
.plan-icin { font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; min-height: 42px; }
.plan-fiyat { margin: 16px 0 4px; }
.plan-fiyat b { font-size: 38px; font-weight: 800; letter-spacing: -1px; }
.plan-fiyat span { font-size: 14px; color: var(--ink-soft); font-weight: 700; }
.plan-taahhut { font-size: 12px; color: var(--ink-faint); font-weight: 700; margin-bottom: 18px; }
.plan-ozellik { list-style: none; border-top: 1px solid var(--line); padding: 16px 0 0 0; margin: 0; flex: 1; }
.plan-ozellik li { display: flex; gap: 9px; font-size: 14px; padding: 6px 0; align-items: flex-start; }
.plan-ozellik .ok { color: var(--green); font-weight: 800; flex-shrink: 0; }
.plan-ozellik .devral { color: var(--brand-deep); font-weight: 800; font-size: 13px; padding-bottom: 8px; }
.plan-btn { display: block; text-align: center; margin-top: 20px; }
.plan-btn.dis { background: var(--paper); color: var(--brand); border: 2px solid var(--line); }
.plan-btn.dis:hover { background: var(--brand-tint); }
.plan-notlar { max-width: 640px; margin: 30px auto 0; font-size: 13px; color: var(--ink-soft); text-align: center; }
.plan-sss { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; margin-bottom: 10px; }
.plan-sss summary { font-weight: 800; font-size: 15px; cursor: pointer; }
.plan-sss p { font-size: 14px; color: var(--ink-soft); margin-top: 8px; margin-bottom: 0; }
@media (max-width: 860px) {
  .plan-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-card.populer { order: -1; }
}

/* ---------- isletmeler hero sahnesi ---------- */
.biz-hero {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 48px; align-items: center;
}
.biz-scene svg { width: 100%; height: auto; display: block; }
@media (max-width: 860px) {
  .biz-hero { grid-template-columns: 1fr; gap: 28px; }
  .biz-scene { max-width: 340px; margin: 0 auto; }
}

/* ---------- misyon bandi ---------- */
.mission { background: var(--brand-tint); text-align: center; padding: 64px 0; }
.mission .kicker { background: var(--paper); margin-bottom: 18px; }
.mission-text {
  font-size: clamp(20px, 2.6vw, 28px); font-weight: 700; line-height: 1.45;
  letter-spacing: -0.5px; color: var(--brand-deep);
  max-width: 800px; margin: 0 auto;
}

/* ---------- balon devam dugmesi ---------- */
#bubbleText { display: block; }
.bubble-next {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 10px; padding: 6px 16px;
  background: var(--brand); color: #fff;
  border: none; border-radius: 999px;
  font-family: inherit; font-size: 13px; font-weight: 700;
  cursor: pointer;
  animation: pulse 2.4s ease-in-out infinite;
  transition: background .2s;
}
.bubble-next:hover { background: var(--brand-dark); }
@media (prefers-reduced-motion: reduce) {
  .bubble-next { animation: none; }
}


/* ---------- vintage tipografi katmani ---------- */
h1, h2, h3, h4, h5, .kicker, .btn, .bubble-next, .nav-links a, .nav-toggle,
.foot-h, .quote-tag, .pop-tag, .soon-badge, .step-num, .biz-badge,
.plan-card h2, .store-btn strong, .store-btn small, .try-hint, .punchline {
  font-family: 'Bree Serif', 'Lora', serif;
  font-weight: 400;
}
h1 { letter-spacing: 0; }
h1 em { color: var(--brand); }
.lead, .section-lead, .plan-icin, .prose p { font-family: 'Lora', Georgia, serif; }
.quote-card p { font-family: 'Lora', Georgia, serif; }


/* ---------- vintage sikilastirma katmani ---------- */
:root { --radius: 10px; --maxw: 1040px; --paper: #FBF5E7; }
section { padding: 60px 0; }
.page-head { padding: 50px 0 16px; }
h1 { font-size: clamp(34px, 5vw, 50px); line-height: 1.1; }
.lead { font-size: 18px; }
.section-lead { margin-bottom: 30px; }
.kicker { border-radius: 6px; letter-spacing: .6px; }
.btn, .bubble-next, .store-btn { border-radius: 8px; }
.soon-badge { border-radius: 4px; }
.biz-band { border-radius: 14px; }
.plan-card { border-radius: 12px; }
.plan-ilke { border-radius: 10px; }
.plan-sss, .notice, .form-card { border-radius: 8px; }
.quote-card p { font-style: italic; }
body { line-height: 1.55; }
@media (max-width: 860px) { section { padding: 48px 0; } }


/* ---------- kagit greni ---------- */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}
