/* ==========================================================================
   Resepsiyonist — Marka Tasarım Sistemi
   Koyu-premium iskelet (Sentinel'den uyarlandı) + sesli/misafirperverlik sıcaklığı.
   Vanilla CSS, framework yok. Koyu (varsayılan) + açık/sand tema varyantı.
   ========================================================================== */

/* ---------- Tasarım Belirteçleri (Design Tokens) ---------- */
:root {
  /* Koyu tema (varsayılan) */
  --bg: #0a0f14;
  --bg-alt: #101a27;
  --bg-deep: #060b12;
  --panel: rgba(13, 24, 37, 0.78);
  --panel-strong: rgba(13, 24, 37, 0.94);

  --text: #f6f2ea;
  --text-strong: #ffffff;
  --muted: #a7b0b8;
  --muted-2: #7c8893;

  --accent: #e0a868;        /* sıcak amber/altın — telefon / sıcak karşılama */
  --accent-deep: #c98f4a;
  --accent-2: #34c3a8;      /* turkuaz — "canlı / aktif hat" */
  --accent-2-deep: #1f9b85;

  --ok: #10b981;            /* rezervasyon onay */
  --warn: #f59e0b;
  --danger: #ef4444;

  --line: rgba(224, 168, 104, 0.16);
  --line-strong: rgba(224, 168, 104, 0.30);
  --line-cool: rgba(52, 195, 168, 0.22);

  /* Tipografi */
  --font-sans: "Inter", "Avenir Next", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "JetBrains Mono", "Monaco", "Consolas", monospace;

  /* Tipografi ölçeği (modüler — panellerle ortak ritim) */
  --fs-xs: 0.74rem;
  --fs-sm: 0.85rem;
  --fs-base: 1rem;
  --fs-md: clamp(1rem, 1.6vw, 1.18rem);
  --fs-lg: clamp(1.15rem, 2vw, 1.4rem);
  --fs-xl: clamp(1.7rem, 3.6vw, 2.6rem);
  --fs-2xl: clamp(2.1rem, 5.2vw, 3.6rem);

  /* Boşluk ölçeği (4px tabanlı — tutarlı dikey/yatay ritim) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;

  /* Yarıçap */
  --r-pill: 999px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 12px;
  --r-xs: 8px;

  /* Gölgeler & glow */
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 8px 28px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 18px 56px rgba(0, 0, 0, 0.35);
  --glow-gold: 0 0 0 6px rgba(224, 168, 104, 0.10);
  --glow-cool: 0 0 0 6px rgba(52, 195, 168, 0.10);
  /* Ortak accent halkası (panellerle aynı odak/seçim dili) */
  --ring-accent: 0 0 0 3px rgba(224, 168, 104, 0.32);
  --ring-cool: 0 0 0 3px rgba(52, 195, 168, 0.30);

  /* Düzen */
  --maxw: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --grad-accent: linear-gradient(135deg, var(--accent), var(--accent-deep));
  --grad-duo: linear-gradient(135deg, var(--accent), var(--accent-2));
  --grad-soft: linear-gradient(160deg, rgba(224, 168, 104, 0.10), rgba(52, 195, 168, 0.06));
}

/* Açık / sand tema varyantı */
[data-theme="light"] {
  --bg: #f3ecdc;
  --bg-alt: #ece2cf;
  --bg-deep: #e8dfca;
  --panel: hsla(40, 64%, 95%, 0.85);
  --panel-strong: hsla(41, 73%, 96%, 0.94);

  --text: #2e2820;
  --text-strong: #1a1610;
  --muted: #6b6053;
  --muted-2: #6a604f;        /* WCAG AA (≥4.5) için koyulaştırıldı */

  --accent: #855f1c;         /* WCAG AA (≥4.5) için koyulaştırıldı */
  --accent-deep: #6b4d18;
  --accent-2: #1f9b85;
  --accent-2-deep: #16786a;

  --line: rgba(124, 96, 52, 0.18);
  --line-strong: rgba(124, 96, 52, 0.30);
  --line-cool: rgba(31, 155, 133, 0.22);

  --shadow: 0 20px 50px rgba(60, 40, 10, 0.10), 0 3px 10px rgba(60, 40, 10, 0.05);
  --shadow-sm: 0 8px 24px rgba(60, 40, 10, 0.08);
  --shadow-md: 0 14px 38px rgba(60, 40, 10, 0.10);
  --glow-gold: 0 0 0 6px rgba(154, 115, 39, 0.10);
  --ring-accent: 0 0 0 3px rgba(133, 95, 28, 0.28);
  --ring-cool: 0 0 0 3px rgba(31, 155, 133, 0.26);
  --grad-soft: linear-gradient(160deg, rgba(133, 95, 28, 0.10), rgba(31, 155, 133, 0.07));
}

/* ---------- Sıfırlama / temel ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  /* Hareket azaltıldığında giriş animasyonunu atla, içeriği hemen göster
     (JS .in eklemese de görünür kalır). */
  .reveal { opacity: 1 !important; transform: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 12% -5%, rgba(224, 168, 104, 0.08), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(52, 195, 168, 0.06), transparent 26%),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  background-attachment: fixed;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--accent);
  color: #0a0f14;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-weight: 700;
}
.skip-link:focus { left: 16px; }

/* ---------- Tipografi ---------- */
h1, h2, h3, h4 {
  color: var(--text-strong);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--muted);
  max-width: 60ch;
}

.gradient-text {
  background: var(--grad-duo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Düzen yardımcıları ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: clamp(64px, 9vw, 112px); position: relative; }

/* Sticky nav (72px) altında kalmasın diye anchor hedeflerine üst boşluk.
   Hem cross-page (#aydinlatma) hem JS-siz tarayıcı sıçramaları için. */
:target,
section[id],
[id^="panel-"] { scroll-margin-top: 88px; }
.section-head { max-width: 64ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }

.grid { display: grid; gap: clamp(16px, 2.4vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 940px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
/* Tablet ara kademe (768px): 4'lü ızgaralar 2'ye, nefes alan boşluk azalır */
@media (max-width: 768px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  section { padding-block: clamp(48px, 8vw, 80px); }
  .section-head { margin-bottom: clamp(28px, 4vw, 40px); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-accent);
  color: #1a1206;
  box-shadow: 0 10px 26px rgba(224, 168, 104, 0.28);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(224, 168, 104, 0.4); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(224, 168, 104, 0.06); }

.btn-cool {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-2-deep));
  color: #04120e;
  box-shadow: 0 10px 26px rgba(52, 195, 168, 0.26);
}

.btn-lg { padding: 16px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* Pill sweep efekti */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }

/* ---------- Rozet / etiket ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
  backdrop-filter: blur(10px);
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-2);
}
.badge.live .dot {
  background: var(--ok);
  animation: pulse-dot 1.8s var(--ease) infinite;
}

/* ---------- Kart (cam panel) ---------- */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(22px, 3vw, 32px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
/* yumuşak iç parıltı — hover'da kartın panel diliyle "ısınması" */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card .icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: rgba(224, 168, 104, 0.12);
  border: 1px solid var(--line);
  color: var(--accent);
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover .icon { transform: scale(1.06); box-shadow: var(--glow-gold); }
.card.cool .icon { background: rgba(52, 195, 168, 0.12); color: var(--accent-2); border-color: var(--line-cool); }
.card.cool:hover .icon { box-shadow: var(--glow-cool); }
/* Tonlu-daire ikon varyantı (panel diliyle ortak) */
.card .icon.round,
.icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(224, 168, 104, 0.12);
  border: 1px solid var(--line-strong);
  color: var(--accent);
}
.card.cool .icon.round,
.icon-circle.cool { background: rgba(52, 195, 168, 0.12); color: var(--accent-2); border-color: var(--line-cool); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* üstte ince accent çizgi (soft-glow ::after üzerinde kalmalı) */
.card.lined::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-duo);
  opacity: 0.5;
  z-index: 2;
  transition: opacity 0.3s var(--ease);
}
.card.lined:hover::before { opacity: 0.85; }

/* ==========================================================================
   ÜST NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg-deep) 72%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.12rem;
  color: var(--text-strong);
}
.brand .logo { width: 34px; height: 34px; flex: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  padding: 9px 12px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;            /* "Nasıl Çalışır" / "KVKK & Güvenlik" tek satırda kalsın */
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.theme-toggle:hover { border-color: var(--accent); transform: rotate(15deg); }
.theme-toggle .sun { display: none; }
[data-theme="light"] .theme-toggle .sun { display: block; }
[data-theme="light"] .theme-toggle .moon { display: none; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--r-xs);
  color: var(--text);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 16px var(--gutter) 26px;
    background: var(--panel-strong);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; font-size: 1rem; }
  .nav .desktop-cta { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding-top: clamp(48px, 7vw, 80px); padding-bottom: clamp(56px, 8vw, 96px); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-copy { animation: heroReveal 0.9s var(--ease) both; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .nowrap { white-space: nowrap; }
.hero .lead { font-size: clamp(1.05rem, 1.8vw, 1.28rem); margin-bottom: 28px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof svg { color: var(--accent-2); flex: none; }

/* Hero sweep + glow arka plan */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(224, 168, 104, 0.14), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
  animation: glowShift 9s ease-in-out infinite alternate;
}

/* Hero görsel: canlı çağrı / transkript mock */
.call-mock {
  background: var(--panel-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: 22px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  animation: cardFadeIn 1s var(--ease) 0.2s both;
  position: relative;
}
.call-mock::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), transparent 40%, var(--accent-2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  pointer-events: none;
}
.call-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.call-id { display: flex; align-items: center; gap: 12px; }
.call-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-accent);
  color: #1a1206;
}
.call-id strong { display: block; color: var(--text-strong); font-size: 0.95rem; }
.call-id small { color: var(--muted-2); font-size: 0.8rem; }
.live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.74rem; font-weight: 700;
  color: var(--ok);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.08);
}
.live-pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ok);
  animation: pulse-dot 1.6s var(--ease) infinite;
}

.transcript { display: flex; flex-direction: column; gap: 12px; }
.bubble {
  max-width: 86%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: cardFadeIn 0.5s var(--ease) both;
}
.bubble.caller {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
}
.bubble.agent {
  align-self: flex-end;
  background: rgba(224, 168, 104, 0.12);
  border: 1px solid var(--line-strong);
  border-bottom-right-radius: 5px;
  color: var(--text);
}
.bubble .who {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 3px;
}
.bubble.agent .who { color: var(--accent); }

.call-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ok);
}
.call-foot svg { flex: none; }

/* ==========================================================================
   ROZET ŞERİDİ (güven / sosyal kanıt)
   ========================================================================== */
.trust-strip { padding-block: clamp(28px, 4vw, 40px); border-block: 1px solid var(--line); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 32px;
}
.trust-row .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  font-weight: 700;
}
.trust-row .pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--muted);
}
.trust-row .pill svg { color: var(--accent); flex: none; }

/* ==========================================================================
   GÜVEN BANDI (.trust-band) — kayan/akan logo & rozet şeridi
   main.js bu yapıyı kullanabilir; .trust-strip ile aynı krem dili.
   ========================================================================== */
.trust-band {
  padding-block: clamp(24px, 3.5vw, 36px);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% -40%, rgba(224, 168, 104, 0.06), transparent 60%),
    var(--bg-alt);
  overflow: hidden;
}
.trust-band .trust-band-label {
  display: block;
  text-align: center;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  font-weight: 700;
  margin-bottom: 18px;
}
.trust-band-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 36px;
}
.trust-band-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--muted);
  opacity: 0.9;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}
.trust-band-item:hover { opacity: 1; color: var(--text); }
.trust-band-item svg { color: var(--accent); flex: none; }
.trust-band-item.cool svg { color: var(--accent-2); }

/* ==========================================================================
   ÖZELLİKLER
   ========================================================================== */
.card .tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  font-weight: 700;
  margin-top: 14px;
}
.card.cool .tag { color: var(--accent); }

/* ==========================================================================
   NASIL ÇALIŞIR (01 → 04)
   ========================================================================== */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  position: relative;
}
.step .num {
  flex: none;
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  background: rgba(224, 168, 104, 0.1);
  border: 1px solid var(--line-strong);
}
.step-body h3 { margin-bottom: 6px; }
.step-body p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* dikey bağlantı çizgisi */
.step:not(:last-child) .num::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -24px;
  width: 1px;
  background: linear-gradient(var(--line-strong), transparent);
}

/* ==========================================================================
   ÜRÜN ÖNİZLEME / İKİ PANEL
   ========================================================================== */
.panel-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 28px);
}
@media (max-width: 800px) { .panel-preview { grid-template-columns: 1fr; } }

.mock-window {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}
.mock-bar .dots { display: flex; gap: 6px; }
.mock-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.mock-bar .title { font-size: 0.78rem; color: var(--muted-2); margin-left: 8px; font-family: var(--font-mono); }
.mock-body { padding: 18px; }

.mini-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 11px 13px;
  border-radius: var(--r-xs);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  margin-bottom: 9px;
  font-size: 0.85rem;
}
.mini-row:last-child { margin-bottom: 0; }
.mini-row .l { display: flex; flex-direction: column; gap: 2px; }
.mini-row .l strong { color: var(--text-strong); font-weight: 600; }
.mini-row .l span { color: var(--muted-2); font-size: 0.78rem; }
.mini-row .s {
  font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill);
}
.s.ok { color: var(--ok); background: rgba(16, 185, 129, 0.12); }
.s.amber { color: var(--warn); background: rgba(245, 158, 11, 0.12); }
.s.cool { color: var(--accent-2); background: rgba(52, 195, 168, 0.12); }

.stat-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stat-tile {
  padding: 14px;
  border-radius: var(--r-xs);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}
.stat-tile .v { font-size: 1.4rem; font-weight: 800; color: var(--text-strong); font-family: var(--font-mono); }
.stat-tile .k { font-size: 0.72rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== Demo: ürün-sadık panel cilası ===== */
/* mini-row: avatar baş harfleri + esnek metin */
.mini-row .l { flex: 1; min-width: 0; }
.mini-row .l strong, .mini-row .l span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }
.ava {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  color: var(--accent); background: rgba(224, 168, 104, 0.14); border: 1px solid var(--line-strong);
}
.ava.cool  { color: var(--accent-2); background: rgba(52, 195, 168, 0.14); border-color: var(--line-cool); }
.ava.amber { color: var(--warn); background: rgba(245, 158, 11, 0.14); border-color: rgba(245, 158, 11, 0.30); }
.mini-row.hot { border-color: var(--line-strong); background: rgba(224, 168, 104, 0.07); }

.mock-head-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mock-head-row strong { font-size: 0.9rem; color: var(--text-strong); }
.mock-chip { font-size: 0.68rem; font-weight: 700; color: var(--accent-2); background: rgba(52, 195, 168, 0.12); padding: 3px 9px; border-radius: var(--r-pill); }

/* operatör: canlı çağrı kartı + dalga formu */
.live-call {
  position: relative; display: flex; flex-direction: column; gap: 10px; padding: 14px;
  border-radius: var(--r-xs);
  background: linear-gradient(135deg, rgba(52, 195, 168, 0.10), rgba(224, 168, 104, 0.06));
  border: 1px solid var(--line-cool);
}
.lc-pulse {
  position: absolute; top: 14px; right: 14px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent-2); animation: lcpulse 1.8s infinite;
}
@keyframes lcpulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 195, 168, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(52, 195, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 195, 168, 0); }
}
.lc-meta strong { display: block; font-size: 0.85rem; color: var(--text-strong); font-family: var(--font-mono); }
.lc-meta span { font-size: 0.76rem; color: var(--muted-2); }
.waveform { display: flex; align-items: center; gap: 3px; height: 28px; }
.waveform i { flex: 1; background: var(--grad-duo); border-radius: 2px; height: 30%; animation: wave 1.1s ease-in-out infinite; }
.waveform i:nth-child(odd) { animation-delay: -0.55s; }
.waveform i:nth-child(3n)  { animation-delay: -0.30s; }
.waveform i:nth-child(4n)  { animation-delay: -0.80s; }
@keyframes wave { 0%, 100% { height: 22%; } 50% { height: 90%; } }

/* stat-tile mini trend çubukları */
.stat-tile .spark { display: flex; align-items: flex-end; gap: 3px; height: 18px; margin-top: 8px; }
.stat-tile .spark i { flex: 1; background: var(--accent); opacity: 0.55; border-radius: 1.5px; }

/* ===== Örnek çağrı oynatıcı ===== */
.call-player {
  max-width: 720px; margin: 0 auto clamp(24px, 3.5vw, 40px);
  background: var(--panel-strong); border: 1px solid var(--line-strong);
  border-radius: var(--r-md); padding: clamp(16px, 2.4vw, 22px);
  box-shadow: var(--shadow-md, var(--shadow-sm));
}
.cp-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.cp-avatar {
  flex: none; width: 44px; height: 44px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent); background: rgba(224, 168, 104, 0.14); border: 1px solid var(--line-strong);
}
.cp-meta { flex: 1; min-width: 0; }
.cp-meta strong { display: block; color: var(--text-strong); font-size: 0.98rem; }
.cp-meta span { color: var(--muted-2); font-size: 0.8rem; }
.cp-badge {
  flex: none; font-size: 0.68rem; font-weight: 700; color: var(--accent-2);
  background: rgba(52, 195, 168, 0.12); padding: 4px 10px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 6px;
}
.cp-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); }
/* özel oynatıcı (native kontrol yok → indirme/hız menüsü yok) */
.cp-player { display: flex; align-items: center; gap: 13px; }
.cp-player audio { display: none; }
.cp-btn {
  flex: none; width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: #0a0f14; background: var(--grad-accent);
  box-shadow: 0 4px 14px rgba(224, 168, 104, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.cp-btn:hover { transform: scale(1.06); box-shadow: 0 6px 18px rgba(224, 168, 104, 0.45); }
.cp-btn:active { transform: scale(0.97); }
.cp-btn .ic-pause { display: none; }
.cp-player.playing .ic-play { display: none; }
.cp-player.playing .ic-pause { display: inline; }
.cp-cur, .cp-dur { flex: none; font-size: 0.8rem; font-family: var(--font-mono); color: var(--muted-2); min-width: 38px; }
.cp-dur { text-align: right; }
.cp-track {
  flex: 1; height: 8px; border-radius: var(--r-pill); cursor: pointer; position: relative;
  background: rgba(255, 255, 255, 0.10); overflow: hidden;
}
.cp-track:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.cp-prog {
  position: absolute; left: 0; top: 0; height: 100%; width: 0%;
  border-radius: var(--r-pill); background: var(--grad-accent);
}
.cp-note { display: flex; align-items: center; gap: 8px; margin: 13px 0 0; font-size: 0.82rem; color: var(--muted-2); }
.cp-note svg { flex: none; color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .waveform i, .lc-pulse { animation: none; }
  .waveform i { height: 55%; }
}

/* ==========================================================================
   FAYDA / DEĞER ŞERİDİ
   ========================================================================== */
.value-grid .card { text-align: left; }
.value-grid .big {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.value-grid .big small { font-size: 0.9rem; color: var(--muted); font-family: var(--font-sans); font-weight: 600; }

/* ==========================================================================
   KVKK / GÜVENLİK
   ========================================================================== */
.security {
  background:
    radial-gradient(circle at 80% 0%, rgba(52, 195, 168, 0.07), transparent 40%),
    var(--bg-alt);
  border-block: 1px solid var(--line);
}
.security-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.security-list li { display: flex; gap: 13px; align-items: flex-start; }
.security-list .ico {
  flex: none; width: 34px; height: 34px;
  border-radius: var(--r-xs);
  display: grid; place-items: center;
  background: rgba(52, 195, 168, 0.12);
  color: var(--accent-2);
  border: 1px solid var(--line-cool);
}
.security-list strong { color: var(--text-strong); display: block; }
.security-list span { color: var(--muted); font-size: 0.92rem; }

/* ==========================================================================
   FİYATLANDIRMA
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 24px); align-items: stretch; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.price-card { display: flex; flex-direction: column; }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: var(--ring-accent), var(--shadow);
}
@media (min-width: 901px) { .price-card.featured { transform: translateY(-8px); } }
.price-card.featured:hover { box-shadow: var(--ring-accent), var(--shadow); }
.price-card .plan-name {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); font-weight: 700;
}
.price-card .plan-pop {
  align-self: flex-start;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #1a1206; background: var(--accent);
  padding: 4px 11px; border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.price-card .amount { font-size: 1.5rem; font-weight: 800; color: var(--text-strong); margin: 10px 0 4px; }
.price-card .amount small { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.price-card .plan-desc { color: var(--muted); font-size: 0.9rem; min-height: 42px; }
.price-card ul { list-style: none; margin: 18px 0 24px; padding: 0; display: grid; gap: 11px; flex: 1; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--text); }
.price-card li svg { flex: none; color: var(--accent-2); margin-top: 2px; }
.price-card li.muted { color: var(--muted-2); }
.price-card li.muted svg { color: var(--muted-2); }
.price-note { text-align: center; color: var(--muted-2); font-size: 0.85rem; margin-top: 22px; }

/* ==========================================================================
   SSS (accordion)
   ========================================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 12px; background: var(--panel); overflow: hidden; }
.faq-item.open { border-color: var(--line-strong); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  color: var(--text-strong);
  font-size: 1rem; font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-q .chev { flex: none; transition: transform 0.3s var(--ease); color: var(--accent); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-size: 0.94rem; }

/* ==========================================================================
   İLETİŞİM / LEAD FORMU
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info ul { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 18px; }
.contact-info li { display: flex; gap: 13px; align-items: flex-start; }
.contact-info .ico {
  flex: none; width: 38px; height: 38px; border-radius: var(--r-xs);
  display: grid; place-items: center;
  background: rgba(224, 168, 104, 0.1); color: var(--accent);
  border: 1px solid var(--line);
}
.contact-info strong { display: block; color: var(--text-strong); }
.contact-info span, .contact-info a { color: var(--muted); font-size: 0.92rem; }
.contact-info a:hover { color: var(--accent); }

.form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(22px, 3vw, 34px); backdrop-filter: blur(16px); }
.field { margin-bottom: 16px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
@media (max-width: 480px) { .field.row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-xs);
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea { background: rgba(255, 255, 255, 0.6); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--ring-accent);
}
/* Klavye kullanıcıları için ek görünür odak (WCAG 2.4.7) */
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
/* HTML5 doğrulama: geçersiz alanlarda kırmızı kenar (yalnızca dokunulmuşsa) */
.field input:not(:placeholder-shown):invalid,
.field textarea:not(:placeholder-shown):invalid {
  border-color: var(--danger);
}
.field textarea { resize: vertical; min-height: 110px; }
.form .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.82rem; color: var(--muted); margin-bottom: 18px; }
.form .consent input { width: auto; margin-top: 3px; flex: none; }
.form .consent a { color: var(--accent); }

.form-success {
  display: none;
  padding: 18px;
  border-radius: var(--r-sm);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--ok);
  font-weight: 600;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.form-success.show { display: flex; animation: cardFadeIn 0.4s var(--ease); }
.form-success svg { flex: none; }
/* hata durumu: aynı kutu kırmızı tonda (main.js .is-error ekler) */
.form-success.is-error {
  background: rgba(220, 38, 38, 0.10);
  border-color: rgba(220, 38, 38, 0.32);
  color: #dc2626;
}
.form-success.is-error svg { display: none; }

/* ==========================================================================
   SON CTA BANDI
   ========================================================================== */
.cta-band {
  background:
    radial-gradient(circle at 15% 20%, rgba(224, 168, 104, 0.14), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(52, 195, 168, 0.12), transparent 45%),
    var(--bg-alt);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band .lead { margin-inline: auto; margin-bottom: 26px; }
.cta-band .hero-cta { justify-content: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 72px) 28px; background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); margin-bottom: 40px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 34ch; margin-top: 14px; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 0.84rem; color: var(--muted-2);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--r-pill);
  display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--muted);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ==========================================================================
   ÇEREZ BANNER'I (#cookie-banner)
   main.js sayfa yükünde enjekte eder; HTML markup gerekmez.
   localStorage 'resep-cookie-consent' yoksa görünür. KREM dili korunur.
   ========================================================================== */
#cookie-banner {
  position: fixed;
  left: 50%;
  bottom: clamp(12px, 3vw, 24px);
  transform: translateX(-50%) translateY(8px);
  z-index: 180;
  width: min(720px, calc(100% - 2 * var(--gutter)));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  padding: clamp(16px, 2.2vw, 20px) clamp(18px, 2.6vw, 24px);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--panel-strong);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  /* Giriş animasyonu — JS .show eklediğinde devreye girer */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s linear 0.4s;
}
#cookie-banner.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s;
}
#cookie-banner .cookie-text {
  flex: 1 1 280px;
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
#cookie-banner .cookie-text strong { color: var(--text-strong); display: block; margin-bottom: 3px; font-size: 0.95rem; }
#cookie-banner .cookie-text a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
#cookie-banner .cookie-text a:hover { color: var(--accent-deep); }
#cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: none;
}
/* Banner butonları .btn ailesiyle uyumlu küçük varyant */
#cookie-banner .btn { padding: 11px 20px; font-size: 0.9rem; }
@media (max-width: 560px) {
  #cookie-banner { flex-direction: column; align-items: stretch; text-align: left; }
  #cookie-banner .cookie-actions { width: 100%; }
  #cookie-banner .cookie-actions .btn { flex: 1; }
}

/* ==========================================================================
   SCROLL-IN ANİMASYON (IntersectionObserver ile)
   ========================================================================== */
/* Yalnızca JS varken gizle (html.js); JS yoksa içerik görünür kalır.
   main.js IntersectionObserver ile görünür olunca .in ekler. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
/* Yan giriş varyantları (additive — istenirse .reveal yanında kullanılır) */
.js .reveal.from-left { transform: translateX(-28px); }
.js .reveal.from-right { transform: translateX(28px); }
.reveal.from-left.in, .reveal.from-right.in { transform: none; }

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes glowShift {
  from { transform: translate(0, 0) scale(1); opacity: 0.7; }
  to   { transform: translate(-30px, 30px) scale(1.1); opacity: 1; }
}
@keyframes goldenPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 168, 104, 0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(224, 168, 104, 0); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50%      { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
}
@keyframes pulse-border {
  0%, 100% { border-color: var(--line); }
  50%      { border-color: var(--accent); }
}
