/* ============================================================
   Salun pazarlama sitesi — görsel dil
   Sıcak zemin + mor marka rengi + amber vurgu.
   ============================================================ */

:root {
  --bg: #F7F6F2;
  --surface: #FFFFFF;
  --ink: #17151F;
  --ink-soft: #3D3A4A;
  --muted: #6E6A7C;
  --line: #E7E3EF;
  --brand: #6D28D9;
  --brand-strong: #5B21B6;
  --brand-soft: #F1EBFB;
  --accent: #D97706;
  --accent-soft: #FDF3E3;
  --ok: #16A34A;
  --radius: 6px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(23, 21, 31, .05), 0 4px 16px rgba(23, 21, 31, .05);
  --shadow-lg: 0 12px 48px rgba(23, 21, 31, .12);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 4px; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn .ico { flex-shrink: 0; transition: transform .25s ease; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 20px rgba(109, 40, 217, .28); }
.btn-primary:hover { background: var(--brand-strong); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(23, 21, 31, .06); }
.btn-outline { background: var(--surface); color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline:hover .ico { transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 17px; border-radius: 4px; }
.btn-amber { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(217, 119, 6, .25); }
.btn-amber:hover { background: #B45309; transform: translateY(-2px); }
.btn-cta:hover .ico { transform: translateX(4px); }
.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.22) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  pointer-events: none;
}
.btn-cta:hover::after { transform: translateX(120%); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 246, 242, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
body.has-premium-hero .site-header {
  background: rgba(247, 246, 242, .72);
  border-bottom-color: transparent;
}
body.has-premium-hero .site-header.is-solid {
  background: rgba(247, 246, 242, .94);
  border-bottom-color: var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.brand-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 180px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .2s ease;
}
.brand:hover .brand-logo {
  transform: scale(1.03);
  opacity: .92;
}
.brand--on-dark .brand-logo {
  height: 38px;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 12px; border-radius: 4px; font-weight: 600; font-size: 14.5px;
  color: var(--ink-soft); background: none; border: none; cursor: pointer; font-family: var(--font);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-link > .ico {
  opacity: .5;
  transition: transform .25s ease, opacity .15s, color .15s;
}
.nav-link:hover,
.nav-link.is-active {
  background: rgba(23, 21, 31, .05);
  color: var(--ink);
}
.nav-link.is-active {
  color: var(--brand-strong);
  background: var(--brand-soft);
}
.nav-item:hover > .nav-link > .ico,
.nav-item.open > .nav-link > .ico {
  transform: rotate(180deg);
  opacity: .85;
  color: var(--brand);
}
.nav-item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(23, 21, 31, .14);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 80;
  display: flex; flex-direction: column; gap: 1px;
}
.dropdown a,
.drop-link {
  display: block;
  padding: 9px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background .15s, color .15s, padding-left .15s;
  position: relative;
}
.drop-link:hover,
.dropdown a:hover {
  background: rgba(241, 235, 251, .7);
  color: var(--brand-strong);
  padding-left: 16px;
}
.nav-item:hover > .dropdown,
.nav-item.open > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown.mega {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 0 0;
  width: min(720px, calc(100vw - 48px));
  left: 50%;
  transform: translate(-50%, 8px);
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.nav-item:hover > .dropdown.mega,
.nav-item.open > .dropdown.mega {
  transform: translate(-50%, 0);
}
.drop-col {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 16px 14px 14px;
  border-right: 1px solid var(--line);
}
.drop-col:last-of-type,
.drop-col--accent { border-right: none; }
.drop-col--accent {
  background: linear-gradient(180deg, rgba(109, 40, 217, .04) 0%, rgba(109, 40, 217, .02) 100%);
}
.drop-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  padding: 0 10px 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.drop-col--accent .drop-title { color: var(--brand); border-bottom-color: rgba(109, 40, 217, .15); }
.dropdown.mega .drop-link {
  padding: 8px 10px;
  font-size: 13.5px;
  font-weight: 600;
}
.dropdown.mega .drop-link:hover { padding-left: 14px; }
.mega-foot {
  grid-column: 1 / -1;
  padding: 0;
  border-top: 1px solid var(--line);
  background: rgba(247, 246, 242, .65);
}
.mega-foot a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand);
  border-radius: 0;
}
.mega-foot a:hover {
  background: rgba(109, 40, 217, .06);
  color: var(--brand-strong);
  padding-left: 24px;
  transform: none;
}
.mega-foot a .ico {
  opacity: .7;
  transition: transform .25s ease;
}
.mega-foot a:hover .ico {
  transform: translateX(4px);
  opacity: 1;
}
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: all .2s; }

/* ---------- Hero — premium kurumsal ---------- */
.hero {
  position: relative;
  padding: 40px 0 48px;
  overflow: hidden;
  color: var(--ink);
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(109, 40, 217, .14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 10%, rgba(217, 119, 6, .12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 80% 90%, rgba(109, 40, 217, .08) 0%, transparent 55%);
}
.hero-shell {
  position: relative;
  z-index: 2;
}
.hero-top {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.hero-copy {
  max-width: 560px;
}
.hero-brand {
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: .9;
  margin-bottom: 18px;
  color: var(--ink);
}
.hero-brand::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.hero h1 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 16px;
  max-width: 14ch;
  color: var(--ink);
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  max-width: 40ch;
  margin: 0 0 28px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hero-note {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

/* Ürün paneli */
.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: heroPanelIn .9s .12s cubic-bezier(.16,1,.3,1) both;
}
.hero-panel-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(90deg, #3B0764, var(--brand-strong));
  color: #fff;
}
.hero-panel-dots {
  display: flex;
  gap: 5px;
}
.hero-panel-dots i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255,255,255,.35);
  display: block;
}
.hero-panel-bar strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.hero-panel-live {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #FDE68A;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-panel-live::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FBBF24;
  box-shadow: 0 0 0 0 rgba(251, 191, 36, .55);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, .55); }
  70% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}
.hero-panel-body { padding: 18px; }
.hero-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.hero-kpi > div {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}
.hero-kpi span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.hero-kpi strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero-agenda {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-agenda-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.hero-agenda-row.is-accent {
  border-color: rgba(109, 40, 217, .28);
  background: var(--brand-soft);
}
.hero-agenda-row time {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
}
.hero-agenda-row strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.hero-agenda-row div span {
  font-size: 12px;
  color: var(--muted);
}
.hero-agenda-row em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* Hero altı özellik bento */
.home-highlights {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 56px;
}
.hero-features {
  padding-top: 0;
  border-top: none;
}
.hero-features-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.hero-features-eyebrow {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand);
  margin-bottom: 6px;
}
.hero-features-head h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: none;
}
.hero-features-head a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding-bottom: 2px;
}
.hero-features-head a .ico { transition: transform .25s ease; }
.hero-features-head a:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.hero-features-head a:hover .ico { transform: translateX(4px); }

.hero-feature-bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.hero-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .22s, transform .22s, box-shadow .22s, background .22s;
}
.hero-feature::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.hero-feature:hover {
  border-color: rgba(109, 40, 217, .28);
  box-shadow: 0 14px 32px rgba(23, 21, 31, .08);
  transform: translateY(-4px);
}
.hero-feature:hover::after { transform: scaleX(1); }

.hero-feature--lead {
  grid-row: span 2;
  padding: 24px 24px 22px;
  background:
    linear-gradient(160deg, rgba(109, 40, 217, .06) 0%, transparent 42%),
    var(--surface);
  border-color: rgba(109, 40, 217, .16);
  justify-content: flex-start;
}
.hero-feature--lead strong { font-size: 22px; }
.hero-feature--lead .hero-feature-text { font-size: 15px; max-width: 32ch; margin-bottom: 8px; }

.hero-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.hero-feature-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--muted);
  opacity: .7;
}
.hero-feature-ico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  transition: background .2s, color .2s, transform .25s cubic-bezier(.16,1,.3,1);
}
.hero-feature--lead .hero-feature-ico {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}
.hero-feature:hover .hero-feature-ico {
  background: var(--brand);
  color: #fff;
  transform: scale(1.05) rotate(-5deg);
}
.hero-feature strong {
  display: block;
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.hero-feature-text {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 500;
}
.hero-feature-go {
  margin-top: auto;
  padding-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s, transform .2s;
}
.hero-feature:hover .hero-feature-go {
  opacity: 1;
  transform: none;
}
.hero-feature-go .ico { transition: transform .25s ease; }
.hero-feature:hover .hero-feature-go .ico { transform: translateX(3px); }

.hero-feature-mini {
  margin: 8px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.hfm-row {
  display: grid;
  grid-template-columns: 48px 1fr 10px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  animation: hfm-pulse 4s ease-in-out infinite;
}
.hfm-row:nth-child(2) { animation-delay: .6s; }
.hfm-row:nth-child(3) { animation-delay: 1.2s; }
.hfm-row b {
  font-size: 12px;
  font-weight: 800;
  color: var(--brand);
}
.hfm-row span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.hfm-row i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E7E3EF;
}
.hfm-row i.is-ok { background: var(--ok, #16A34A); box-shadow: 0 0 0 3px rgba(22,163,74,.15); }
@keyframes hfm-pulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

@keyframes heroPanelIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .hero-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-copy { max-width: none; }
  .hero h1 { max-width: none; }
  .hero-feature-bento { grid-template-columns: 1fr 1fr; }
  .hero-feature--lead { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 640px) {
  .hero { padding: 24px 0 36px; }
  .hero-kpi { grid-template-columns: 1fr; }
  .hero-agenda-row { grid-template-columns: 48px 1fr; }
  .hero-agenda-row em { grid-column: 2; }
  .hero-feature-bento { grid-template-columns: 1fr; }
  .hero-features-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-feature-go { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-panel { animation: none; }
  .btn-cta::after,
  .hero-panel-live::before,
  .brand-logo,
  .nav-link > .ico,
  .hfm-row,
  .hero-feature-ico { animation: none !important; transition: none !important; }
}

/* ---------- Bölüm başlıkları ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-eyebrow { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--brand); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Özellik grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: all .25s ease; position: relative;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(109, 40, 217, .3); }
.feature-num { font-size: 13px; font-weight: 800; color: var(--brand); opacity: .6; margin-bottom: 14px; letter-spacing: .06em; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 15px; }
.feature-card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--brand); }

/* ---------- Adımlar ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  text-align: center; padding: 36px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
}
.step-num {
  width: 52px; height: 52px; margin: 0 auto 20px; border-radius: 4px;
  background: var(--brand-soft); color: var(--brand); display: grid; place-items: center;
  font-size: 20px; font-weight: 800;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Sektör kartları ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: border-color .22s, transform .22s, box-shadow .22s;
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  opacity: 0;
  transition: opacity .22s;
}
.audience-card:hover {
  border-color: rgba(109, 40, 217, .28);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(23, 21, 31, .08);
}
.audience-card:hover::before { opacity: 1; }
.audience-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.audience-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  transition: background .2s, color .2s, transform .25s;
}
.audience-card:hover .audience-ico {
  background: var(--brand);
  color: #fff;
  transform: rotate(-6deg) scale(1.04);
}
.audience-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.audience-card h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}
.audience-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.audience-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  color: var(--brand);
  opacity: .85;
}
.audience-go .ico { transition: transform .25s ease; }
.audience-card:hover .audience-go { opacity: 1; }
.audience-card:hover .audience-go .ico { transform: translateX(3px); }

/* ---------- Anasayfa duyurular (editoryal) ---------- */
.news-section {
  background:
    linear-gradient(180deg, #EFEAF8 0%, var(--bg) 42%, var(--bg) 100%);
}
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.news-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 8px 0 0;
  color: var(--ink);
}
.news-all {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s, color .2s;
}
.news-all:hover {
  color: var(--brand-strong);
  border-bottom-color: var(--brand);
}
.news-stage {
  position: relative;
}
.news-slides {
  position: relative;
  min-height: 420px;
}
.news-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1), visibility .55s;
}
.news-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.news-media {
  display: block;
  position: relative;
  overflow: hidden;
  background: #E8E0F5;
  min-height: 360px;
  border-radius: 4px 0 0 4px;
}
.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 6s ease;
}
.news-slide.is-active .news-media img {
  transform: scale(1.06);
}
.news-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 40px 44px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: none;
  border-radius: 0 4px 4px 0;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
}
.news-cat {
  color: var(--brand);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}
.news-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
}
.news-copy h3 a {
  color: var(--ink);
  text-decoration: none;
}
.news-copy h3 a:hover { color: var(--brand-strong); }
.news-copy > p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 36em;
}
.news-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  align-self: flex-start;
}
.news-read:hover { color: var(--brand-strong); }
.news-read span { transition: transform .25s ease; }
.news-read:hover span { transform: translateX(3px); }

.news-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: center;
  margin-top: 18px;
}
.news-progress {
  grid-column: 1 / -1;
  height: 2px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}
.news-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform-origin: left center;
}
.news-progress-bar.is-running {
  animation: news-progress linear forwards;
  animation-duration: var(--news-dur, 5.5s);
}
@keyframes news-progress {
  from { width: 0; }
  to { width: 100%; }
}
.news-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.news-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: scale(1.04);
}
.news-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  min-width: 3.2em;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.news-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-self: end;
  max-width: min(100%, 640px);
}
.news-thumbs::-webkit-scrollbar { display: none; }
.news-thumb {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 200px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  color: var(--muted);
  transition: background .2s, border-color .2s, color .2s;
}
.news-thumb:hover {
  background: rgba(255,255,255,.7);
  color: var(--ink);
}
.news-thumb.is-active {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.news-thumb-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--brand);
}
.news-thumb-title {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .news-slide,
  .news-media img,
  .news-progress-bar.is-running { animation: none !important; transition: none !important; }
  .news-slide.is-active .news-media img { transform: none; }
}

/* ---------- Blog makale ---------- */
.article-top {
  padding: 36px 0 0;
  background:
    linear-gradient(180deg, #EFEAF8 0%, var(--bg) 100%);
}
.article-top-inner { max-width: 760px; }
.article-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
}
.article-crumb a { color: var(--muted); }
.article-crumb a:hover { color: var(--brand); }
.article-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 5px 11px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.article-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 16px;
}
.article-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 42em;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
}
.article-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line);
}
.article-cover { padding-bottom: 8px; }
.article-cover-frame {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(23, 21, 31, .1);
  background: var(--brand-soft);
  aspect-ratio: 16 / 9;
}
.article-cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-main {
  padding: 40px 0 56px;
  background: var(--bg);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
}
.article-prose {
  max-width: none;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 40px 44px;
  box-shadow: var(--shadow-sm);
}
.article-prose.prose h2:first-child,
.article-prose.prose h3:first-child,
.article-prose.prose p:first-child { margin-top: 0; }
.article-prose.prose h2 {
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 36px;
}
.article-prose.prose h2:first-child { border-top: none; padding-top: 0; }
.article-prose.prose ul li::marker { color: var(--brand); }
.article-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-aside-card {
  background: linear-gradient(160deg, #1A1528 0%, #2D1B4E 100%);
  color: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-aside-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.article-aside-card strong {
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.article-aside-card p {
  margin: 0 0 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.45;
}
.article-aside-card .btn { align-self: flex-start; margin-top: 4px; }
.article-aside-link {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
}
.article-aside-link:hover { color: #fff; }
.article-back {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
}
.article-back:hover { color: var(--brand); }
.article-related {
  padding: 48px 0 64px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.article-related-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.article-related-head h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
.article-related-head a {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.article-related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}
.article-related-cover {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: var(--brand-soft);
  border: 1px solid var(--line);
}
.article-related-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.article-related-card:hover .article-related-cover img { transform: scale(1.04); }
.article-related-card h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0;
  color: var(--ink);
}
.article-related-date {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}
.blog-rail-cat {
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand);
}
.post-cat {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-soft);
  padding: 4px 10px; border-radius: 4px; margin-bottom: 4px;
}

/* ---------- Fiyat kartları ---------- */
.billing-toggle {
  display: inline-flex; padding: 4px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 4px; gap: 4px; margin: 0 auto 48px;
}
.billing-toggle button {
  padding: 12px 30px; border-radius: 3px; border: none; background: none; cursor: pointer;
  font-family: var(--font); font-weight: 800; font-size: 14px; color: var(--muted); position: relative;
  transition: all .2s;
}
.billing-toggle button.active { background: var(--ink); color: #fff; }
.toggle-badge {
  position: absolute; top: -10px; right: -10px; background: var(--ok); color: #fff;
  font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 3px;
}
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan-card {
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 34px; position: relative; transition: all .25s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.highlight { border-color: var(--brand); box-shadow: 0 12px 48px rgba(109, 40, 217, .15); }
.plan-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; padding: 6px 14px; border-radius: 3px;
}
.plan-name { font-size: 22px; font-weight: 800; letter-spacing: .02em; }
.plan-desc { color: var(--muted); font-size: 14px; margin: 6px 0 26px; }
.plan-price { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; }
.plan-price small { font-size: 16px; color: var(--muted); font-weight: 700; }
.plan-savings { color: var(--ok); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; }
.plan-list { list-style: none; margin: 28px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.plan-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.plan-list li.not { color: #B4AFC2; }
.plan-list .tick { color: var(--ok); flex-shrink: 0; margin-top: 3px; }
.plan-list .dash { color: #C9C4D6; flex-shrink: 0; margin-top: 3px; }
.plan-cta { width: 100%; }

/* Karşılaştırma tablosu */
.compare-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.compare-table th, .compare-table td { padding: 15px 18px; text-align: center; font-size: 14px; border-bottom: 1px solid var(--line); }
.compare-table th { font-weight: 800; background: #FBFAF7; }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; font-weight: 700; color: var(--ink-soft); }
.compare-table .cat-row td { background: var(--brand-soft); color: var(--brand-strong); font-weight: 800; text-align: left; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.tick-ic { color: var(--ok); font-weight: 800; }
.cross-ic { color: #D4CFE0; font-weight: 800; }

/* ---------- Referanslar ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.quote-card blockquote { font-size: 15px; color: var(--ink-soft); margin-bottom: 22px; font-weight: 500; }
.quote-who { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 4px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); font-weight: 800; font-size: 15px;
}
.quote-who strong { display: block; font-size: 15px; }
.quote-who span { font-size: 13px; color: var(--muted); }

/* ---------- SSS ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 16px; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--brand); font-weight: 600; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ---------- Büyük CTA ---------- */
.big-cta {
  background: linear-gradient(135deg, #1E1B2E, #2E1065);
  border-radius: var(--radius-lg); padding: 72px 40px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.big-cta::after {
  content: ''; position: absolute; top: -120px; right: -80px; width: 340px; height: 340px;
  border-radius: 50%; background: radial-gradient(closest-side, rgba(168, 85, 247, .35), transparent);
}
.big-cta h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; position: relative; z-index: 1; }
.big-cta p { color: rgba(255, 255, 255, .75); font-size: 17px; margin-bottom: 32px; position: relative; z-index: 1; }
.big-cta .btn { position: relative; z-index: 1; }

/* ---------- İçerik / detay sayfaları — kompakt hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 32px 0 24px;
  background: var(--bg);
  text-align: left;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 70% at 0% 0%, rgba(109, 40, 217, .1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 55% at 100% 40%, rgba(217, 119, 6, .08) 0%, transparent 50%);
}
.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, .85fr);
  gap: 28px 40px;
  align-items: center;
}
.page-hero-copy { min-width: 0; max-width: 560px; }
.page-hero .hero-badge { margin-bottom: 12px; }
.page-hero-brand {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: .9;
  margin: 0 0 12px;
  color: var(--ink);
}
.page-hero-brand::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.page-hero h1 {
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.page-hero--about h1 { max-width: 18ch; }
.page-hero .subtitle {
  font-size: 16px;
  color: var(--brand);
  font-weight: 700;
  margin: 0 0 10px;
}
.page-hero .intro {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 46ch;
}
.page-hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Sağ taraf — sayfaya özel hareketli sahneler */
.page-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.phv {
  position: relative;
  width: 240px;
  height: 220px;
}

/* —— Hakkımızda: dikey hikaye rayı —— */
.phv-about { display: flex; flex-direction: column; justify-content: center; gap: 14px; padding-left: 28px; }
.phv-rail {
  position: absolute; left: 10px; top: 18px; bottom: 18px; width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  border-radius: 2px;
  opacity: .35;
}
.phv-node {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px 12px 18px;
  box-shadow: var(--shadow-sm);
  animation: phv-slide-in .8s cubic-bezier(.16,1,.3,1) both;
}
.phv-node::before {
  content: '';
  position: absolute; left: -24px; top: 50%; width: 12px; height: 12px;
  margin-top: -6px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(109,40,217,.15);
  animation: phv-pulse-soft 2.4s ease-in-out infinite;
}
.phv-node--2 { animation-delay: .15s; }
.phv-node--2::before { background: var(--accent); box-shadow: 0 0 0 4px rgba(217,119,6,.18); animation-delay: .4s; }
.phv-node--3 { animation-delay: .3s; }
.phv-node--3::before { animation-delay: .8s; }
.phv-node strong { display: block; font-size: 20px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.phv-node span { font-size: 12px; font-weight: 600; color: var(--muted); }

/* —— Paketler: yelpaze kartlar —— */
.phv-pricing { perspective: 600px; }
.phv-plan {
  position: absolute;
  width: 132px;
  padding: 14px 14px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.phv-plan em { display: block; font-style: normal; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 4px; }
.phv-plan b { font-size: 22px; font-weight: 800; letter-spacing: -.03em; }
.phv-plan--a { left: 8px; top: 28px; transform: rotate(-8deg); animation: phv-sway 5s ease-in-out infinite; }
.phv-plan--c { right: 4px; bottom: 24px; transform: rotate(7deg); animation: phv-sway 5.5s ease-in-out infinite reverse; }
.phv-plan--b {
  left: 50%; top: 50%; width: 148px; margin: -48px 0 0 -74px;
  border-color: rgba(109,40,217,.35);
  background: linear-gradient(180deg, #fff, #F8F5FF);
  box-shadow: 0 16px 36px rgba(91,33,182,.18);
  z-index: 2;
  animation: phv-pop 3.2s ease-in-out infinite;
}
.phv-plan--b i {
  display: inline-block; margin-top: 8px; font-style: normal;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: #fff; background: var(--brand); padding: 3px 8px; border-radius: 3px;
}
.phv-chip {
  position: absolute; right: 10px; top: 12px; z-index: 3;
  font-size: 11px; font-weight: 800; color: var(--accent);
  background: #FFF7ED; border: 1px solid rgba(217,119,6,.25);
  padding: 5px 10px; border-radius: 999px;
  animation: phv-float-y 3.6s ease-in-out infinite;
}

/* —— İletişim: sohbet —— */
.phv-contact { display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.phv-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px; font-weight: 600; line-height: 1.4;
  animation: phv-slide-in .7s cubic-bezier(.16,1,.3,1) both;
}
.phv-bubble--in {
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  border-bottom-left-radius: 4px;
}
.phv-bubble--out {
  align-self: flex-end;
  background: var(--brand);
  color: #fff;
  border-bottom-right-radius: 4px;
  animation-delay: .25s;
  position: relative;
}
.phv-typing {
  display: inline-flex; gap: 3px; margin-left: 6px; vertical-align: middle;
}
.phv-typing i {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.85);
  animation: phv-typing 1.2s ease-in-out infinite;
}
.phv-typing i:nth-child(2) { animation-delay: .15s; }
.phv-typing i:nth-child(3) { animation-delay: .3s; }
.phv-channels {
  display: flex; gap: 8px; margin-top: 4px;
  animation: phv-slide-in .7s .45s both;
}
.phv-channels span {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
  color: var(--brand);
  animation: phv-float-y 3.8s ease-in-out infinite;
}
.phv-channels span:nth-child(2) { animation-delay: .4s; color: var(--accent); }
.phv-channels span:nth-child(3) { animation-delay: .8s; }

/* —— Blog: yazı kağıdı —— */
.phv-blog { position: relative; }
.phv-paper {
  position: absolute; left: 28px; right: 28px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.phv-paper--back { top: 28px; height: 140px; transform: rotate(-6deg); opacity: .55; }
.phv-paper--mid { top: 36px; height: 140px; transform: rotate(3deg); opacity: .8; }
.phv-paper--front {
  top: 44px; height: 140px; padding: 22px 18px; z-index: 2;
  animation: phv-paper 4.5s ease-in-out infinite;
}
.phv-line {
  display: block; height: 8px; border-radius: 4px; background: #E7E3EF; margin-bottom: 12px;
  transform-origin: left center;
  animation: phv-write 3.2s ease-in-out infinite;
}
.phv-line--short { width: 62%; animation-delay: .2s; }
.phv-line--mid { width: 78%; animation-delay: .4s; }
.phv-cursor {
  display: inline-block; width: 2px; height: 14px; background: var(--brand);
  animation: phv-blink 1s steps(1) infinite;
}
.phv-pen {
  position: absolute; right: 18px; bottom: 18px; z-index: 3;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: #FFF7ED; color: var(--accent); border-radius: 10px;
  border: 1px solid rgba(217,119,6,.2);
  animation: phv-pen 3.5s ease-in-out infinite;
}

/* —— Özellik: akış düğümleri —— */
.phv-feature { position: relative; }
.phv-feat-core {
  position: absolute; left: 50%; top: 50%; width: 68px; height: 68px;
  margin: -34px 0 0 -34px; z-index: 2;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #7C3AED, #5B21B6);
  color: #fff; border-radius: 16px;
  box-shadow: 0 14px 30px rgba(91,33,182,.35);
  animation: phv-pop 3.6s ease-in-out infinite;
}
.phv-feat-card {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 12px; font-weight: 700; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  animation: phv-float-y 4s ease-in-out infinite;
}
.phv-feat-card .ico { color: var(--brand); }
.phv-feat-card--1 { top: 18px; left: 8px; }
.phv-feat-card--2 { top: 22px; right: 6px; animation-delay: .5s; }
.phv-feat-card--2 .ico { color: var(--accent); }
.phv-feat-card--3 { bottom: 16px; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.phv-feat-lines {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: .45;
}
.phv-dash {
  stroke: var(--brand); stroke-width: 1.5; stroke-dasharray: 5 5;
  animation: phv-dash 12s linear infinite;
}

/* —— Sektör: ikon + yörünge noktaları —— */
.phv-sector { display: grid; place-items: center; }
.phv-blob {
  position: absolute; width: 150px; height: 150px; border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  background: radial-gradient(circle at 30% 30%, rgba(109,40,217,.18), rgba(217,119,6,.12) 60%, transparent 70%);
  animation: phv-morph 8s ease-in-out infinite;
}
.phv-sector-icon {
  position: relative; z-index: 2;
  width: 88px; height: 88px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  color: var(--brand); box-shadow: var(--shadow-md, 0 12px 28px rgba(23,21,31,.1));
  animation: phv-pop 4s ease-in-out infinite;
}
.phv-sector-tag {
  position: absolute; bottom: 18px; z-index: 3;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand-strong); background: var(--brand-soft);
  padding: 5px 10px; border-radius: 4px;
  animation: phv-float-y 3.5s ease-in-out infinite;
}
.phv-orbit-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--brand);
  animation: phv-orbit 7s linear infinite;
}
.phv-orbit-dot--1 { animation-delay: 0s; }
.phv-orbit-dot--2 { background: var(--accent); animation-delay: -1.75s; }
.phv-orbit-dot--3 { animation-delay: -3.5s; }
.phv-orbit-dot--4 { background: var(--accent); animation-delay: -5.25s; width: 6px; height: 6px; margin: -3px 0 0 -3px; }

/* —— Yasal: belge + mühür —— */
.phv-legal { position: relative; }
.phv-doc {
  position: absolute; left: 50%; width: 120px; height: 150px; margin-left: -60px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.phv-doc--1 { top: 24px; transform: rotate(-10deg); opacity: .55; }
.phv-doc--2 { top: 30px; transform: rotate(5deg); opacity: .8; }
.phv-doc--3 {
  top: 36px; z-index: 2; padding: 22px 16px; display: flex; flex-direction: column; gap: 10px;
  animation: phv-paper 5s ease-in-out infinite;
}
.phv-doc--3 span { display: block; height: 7px; border-radius: 4px; background: #E7E3EF; }
.phv-doc--3 span:nth-child(2) { width: 70%; }
.phv-doc--3 span:nth-child(3) { width: 85%; }
.phv-seal {
  position: absolute; right: 28px; bottom: 22px; z-index: 3;
  width: 52px; height: 52px; display: grid; place-items: center;
  background: linear-gradient(145deg, #7C3AED, #5B21B6); color: #fff;
  border-radius: 50%; box-shadow: 0 10px 24px rgba(91,33,182,.35);
  animation: phv-seal 3.8s ease-in-out infinite;
}

@keyframes phv-slide-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes phv-pulse-soft {
  0%, 100% { box-shadow: 0 0 0 4px rgba(109,40,217,.12); }
  50% { box-shadow: 0 0 0 8px rgba(109,40,217,.06); }
}
@keyframes phv-sway {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-6px); }
}
@keyframes phv-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes phv-plan-pop {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.04); }
}
.phv-plan--b { animation-name: phv-plan-pop; }
.phv-feat-core { animation-name: phv-plan-pop; }
.phv-sector-icon { animation: phv-icon-pop 4s ease-in-out infinite; }
@keyframes phv-icon-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes phv-float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.phv-feat-card--3 {
  animation-name: phv-float-x;
}
@keyframes phv-float-x {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-7px); }
}
@keyframes phv-typing {
  0%, 80%, 100% { opacity: .35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}
@keyframes phv-write {
  0%, 100% { transform: scaleX(.35); opacity: .5; }
  40%, 70% { transform: scaleX(1); opacity: 1; }
}
@keyframes phv-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
@keyframes phv-pen {
  0%, 100% { transform: translate(0,0) rotate(-12deg); }
  50% { transform: translate(-10px, -14px) rotate(-28deg); }
}
@keyframes phv-paper {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-1.5deg); }
}
@keyframes phv-dash {
  to { stroke-dashoffset: -80; }
}
@keyframes phv-morph {
  0%, 100% { border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; transform: rotate(0deg); }
  50% { border-radius: 55% 45% 42% 58% / 52% 55% 45% 48%; transform: rotate(8deg); }
}
@keyframes phv-orbit {
  from { transform: rotate(0deg) translateX(88px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(88px) rotate(-360deg); }
}
@keyframes phv-seal {
  0%, 100% { transform: scale(1) rotate(-8deg); }
  50% { transform: scale(1.08) rotate(4deg); }
}

@media (max-width: 860px) {
  .page-hero { padding: 24px 0 20px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .page-hero-visual { min-height: 160px; order: -1; }
  .phv { width: 200px; height: 180px; transform: scale(.92); }
  .page-hero-copy { max-width: none; text-align: center; margin: 0 auto; }
  .page-hero .intro { margin-left: auto; margin-right: auto; }
  .page-hero-brand::after { margin-left: auto; margin-right: auto; }
  .page-hero-ctas { justify-content: center; }
  .page-hero--about h1 { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .phv *, .phv-dash, .phv-orbit-dot { animation: none !important; }
}

/* ---------- Hakkımızda — içerik ---------- */
.about-stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 28px 0;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.about-stat {
  padding: 8px 12px;
  border-left: 2px solid rgba(109, 40, 217, .35);
}
.about-stat strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 4px;
}
.about-stat span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: start;
}
.about-story-copy h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 10px 0 18px;
  max-width: 12ch;
}
.about-story-copy p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 48ch;
}
.about-story-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.about-panel-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.about-panel-row:last-child { border-bottom: none; }
.about-panel-row span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.about-panel-row strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-value {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.about-value:hover {
  border-color: rgba(109, 40, 217, .3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.about-value-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--brand);
  margin-bottom: 14px;
}
.about-value h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.about-value p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 960px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-values { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 3px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  border: 1px solid rgba(109, 40, 217, .18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 48px 0; }
.detail-list { max-width: 680px; margin: 0 auto; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.detail-list li {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  padding: 16px 22px; font-weight: 600; font-size: 15px; color: var(--ink-soft);
  display: flex; gap: 12px; align-items: flex-start;
}
.detail-list .tick { color: var(--ok); flex-shrink: 0; margin-top: 2px; }

/* Yazı içeriği (legal, blog) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 26px; margin: 40px 0 14px; }
.prose h3 { font-size: 20px; margin: 30px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); }
.prose strong { color: var(--ink); font-weight: 800; }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: var(--ink-soft); }
.prose li { margin-bottom: 8px; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; font-size: 14px; }
.prose img { border-radius: var(--radius); margin: 24px 0; }
.prose a { color: var(--brand); font-weight: 600; }

/* ---------- Anasayfa kurumsal SEO bloğu ---------- */
.seo-corp {
  border-top: 1px solid var(--line);
}
.seo-corp-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.seo-corp-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.seo-corp-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.seo-corp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.seo-corp-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.seo-corp-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.seo-corp-block p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}
.seo-corp-block p:last-child { margin-bottom: 0; }
.seo-corp-block ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-corp-block li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 14px;
  border-left: 2px solid rgba(109, 40, 217, .35);
  line-height: 1.45;
}
.seo-corp-block a {
  color: var(--brand);
  font-weight: 700;
}
.seo-corp-block a:hover { color: var(--brand-strong); }

@media (max-width: 860px) {
  .seo-corp-grid { grid-template-columns: 1fr; }
}

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: all .25s; display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-cover { aspect-ratio: 16/9; object-fit: cover; width: 100%; background: var(--brand-soft); }
.post-cover-ph { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--brand-soft), var(--accent-soft)); display: grid; place-items: center; color: var(--brand); font-weight: 800; font-size: 24px; }
.post-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-date { font-size: 13px; color: var(--muted); font-weight: 600; }
.post-body h3 { font-size: 18px; }
.post-body p { font-size: 14.5px; color: var(--muted); flex: 1; }

/* ---------- Form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 22px 26px; }
.info-card strong { display: block; margin-bottom: 4px; font-size: 15px; }
.info-card a, .info-card span { color: var(--muted); font-size: 15px; font-weight: 600; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 4px; border: 1.5px solid var(--line);
  font-family: var(--font); font-size: 15px; background: #FBFAF7; transition: border-color .15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.alert { padding: 14px 20px; border-radius: 4px; font-weight: 600; font-size: 14.5px; margin-bottom: 20px; }
.alert-ok { background: #EAF7EE; color: #15803D; border: 1px solid #BBE5C8; }
.alert-err { background: #FDECEC; color: #B91C1C; border: 1px solid #F5C6C6; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 120px 24px; }
.notfound h1 { font-size: 80px; color: var(--brand); }
.notfound p { color: var(--muted); font-size: 18px; margin: 12px 0 32px; }

/* ---------- Footer — premium kurumsal ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(109, 40, 217, .35) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 100% 20%, rgba(217, 119, 6, .22) 0%, transparent 50%),
    linear-gradient(165deg, #1A0B2E 0%, #17151F 48%, #120C1C 100%);
  color: #C9C4D6;
  padding: 0;
  margin-top: 0;
}
.footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  opacity: .7;
}

.footer-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 56px 24px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-cta-copy h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
  margin-bottom: 10px;
  line-height: 1.15;
}
.footer-cta-copy p {
  font-size: 16px;
  color: #B7B0C9;
  max-width: 42ch;
  line-height: 1.55;
}
.footer-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.footer-cta-outline {
  background: rgba(255,255,255,.06) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.28) !important;
}
.footer-cta-outline:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: #fff !important;
}

.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 2.2fr;
  gap: 48px;
  padding: 48px 24px 40px;
}
.footer-brand .brand {
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand > p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #9B95AD;
  max-width: 320px;
  margin-bottom: 22px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 280px;
}
.footer-contact a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: border-color .2s, background .2s;
}
.footer-contact a:hover {
  background: rgba(109, 40, 217, .18);
  border-color: rgba(167, 139, 250, .35);
}
.footer-contact span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #7A748E;
}
.footer-contact strong {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
.footer-cols > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(217, 119, 6, .55);
  width: fit-content;
}
.footer-cols a {
  font-size: 14.5px;
  font-weight: 600;
  color: #9B95AD;
  transition: color .15s, transform .15s;
}
.footer-cols a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 24px 28px;
  font-size: 13px;
  color: #7A748E;
}
.footer-copy {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 0;
  line-height: 1.5;
}
.footer-dot {
  opacity: .45;
  user-select: none;
}
.kirpi-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C4B5FD;
  font-weight: 700;
  transition: color .2s ease;
}
.kirpi-credit:hover {
  color: #FBBF24;
}
.kirpi-ico {
  display: block;
  flex-shrink: 0;
  color: #C4B5FD;
  transition: color .2s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
  transform-origin: 60% 80%;
}
.kirpi-credit:hover .kirpi-ico {
  color: #FBBF24;
  animation: kirpi-bounce .7s ease;
}
.kirpi-spikes {
  transform-origin: 16px 14px;
  transition: transform .35s ease;
}
.kirpi-credit:hover .kirpi-spikes {
  animation: kirpi-spikes .7s ease;
}
.kirpi-eye,
.kirpi-nose {
  transition: transform .25s ease;
}
.kirpi-credit:hover .kirpi-eye {
  transform: translateY(-0.4px) scale(1.08);
}
@keyframes kirpi-bounce {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-3px) rotate(-8deg); }
  50% { transform: translateY(-1px) rotate(6deg); }
  75% { transform: translateY(-3px) rotate(-4deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@keyframes kirpi-spikes {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.12) translateY(-1px); }
  70% { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .kirpi-credit:hover .kirpi-ico,
  .kirpi-credit:hover .kirpi-spikes { animation: none; }
}

/* ---------- Animasyon ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .feature-grid, .quote-grid, .audience-grid, .benefit-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-cta { flex-direction: column; align-items: flex-start; padding-top: 48px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .news-head { flex-direction: column; align-items: flex-start; }
  .news-slide { grid-template-columns: 1fr; }
  .news-media {
    min-height: 240px;
    aspect-ratio: 16 / 10;
    border-radius: 4px 4px 0 0;
  }
  .news-copy {
    border-left: 1px solid var(--line);
    border-radius: 0 0 4px 4px;
    padding: 28px 24px;
  }
  .news-controls { grid-template-columns: 1fr; }
  .news-thumbs { justify-self: stretch; max-width: none; }
  .article-layout { grid-template-columns: 1fr; gap: 24px; }
  .article-aside { position: static; flex-direction: row; flex-wrap: wrap; align-items: center; }
  .article-aside-card { flex: 1 1 240px; }
  .article-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .main-nav {
    position: fixed; inset: 72px 0 auto 0; background: var(--surface);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 12px 20px 24px; gap: 2px; flex: none;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    display: none; max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-ghost { display: none; }
  .dropdown, .dropdown.mega {
    position: static; opacity: 1; visibility: visible; transform: none !important;
    box-shadow: none; border: none; width: auto; padding: 0 0 8px 12px; display: none;
    left: auto;
  }
  .nav-item.open .dropdown { display: flex; flex-direction: column; }
  .nav-item.open .dropdown.mega {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
  }
  .drop-col {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
  }
  .drop-col--accent { background: transparent; }
  .mega-foot { margin-top: 0; }
  .mega-foot a { padding: 12px 10px; }
  .nav-link { width: 100%; justify-content: space-between; }
}
@media (max-width: 640px) {
  .feature-grid, .quote-grid, .audience-grid, .benefit-grid, .post-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 640px; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-cta-actions { width: 100%; }
  .footer-cta-actions .btn { flex: 1; justify-content: center; }
  .news-slides { min-height: 0; }
  .news-copy h3 { font-size: 22px; }
  .news-thumb { max-width: 160px; }
  .article-prose { padding: 24px 20px 32px; }
  .article-title { font-size: 26px; }
  .article-lead { font-size: 16px; }
  .article-related-grid { grid-template-columns: 1fr; }
  .article-aside { flex-direction: column; align-items: stretch; }
}

/* ---------- Yukarı çık ---------- */
.back-top {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 9990;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow: 0 8px 24px rgba(109, 40, 217, .35);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.9);
  transition: opacity .28s ease, visibility .28s ease, transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .2s;
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  animation: back-top-bob 2.4s ease-in-out infinite;
}
.back-top:hover {
  animation: none;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(109, 40, 217, .45);
}
.back-top:active { transform: translateY(0) scale(.96); }
.back-top-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(109, 40, 217, .35);
  animation: back-top-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
.back-top.is-visible .back-top-ring { opacity: 1; }
.back-top-ico {
  position: relative;
  z-index: 1;
  transition: transform .25s ease;
}
.back-top:hover .back-top-ico { transform: translateY(-2px); }
@keyframes back-top-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes back-top-pulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .back-top.is-visible,
  .back-top-ring { animation: none; }
}
@media (max-width: 640px) {
  .back-top {
    right: 16px;
    bottom: 88px;
    width: 44px;
    height: 44px;
  }
}
