/* ============================================================
   Monsivo — tanıtım sitesi
   Palet: krem zemin · espresso nötr · bakır aksan (logodan)
   Tipografi: Fraunces (başlık, serif) + Instrument Sans (gövde)
   Boşluk sistemi: 8px tabanlı (8/16/24/32/48/64/96/128)
   ============================================================ */

/* ---------- Fontlar (yerel, CDN yok) ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/fraunces-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+1E00-1E9F, U+2020, U+20A0-20AB, U+20AD-20C0, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/instrument-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/instrument-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+1E00-1E9F, U+2020, U+20A0-20AB, U+20AD-20C0, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokenler ---------- */
:root {
  --bg: #faf6f0;
  --bg-2: #f2ebe1;
  --card: #fffdfa;
  --ink: #271b11;
  --ink-soft: #6b5c4c;
  --line: rgba(39, 27, 17, 0.1);
  --line-strong: rgba(39, 27, 17, 0.16);
  --copper: #b0714b;
  --copper-deep: #8f5430;
  --copper-soft: rgba(176, 113, 75, 0.12);
  --gold: #8c7a45;
  --shell: rgba(39, 27, 17, 0.045);
  --shadow-ambient: 0 0 0 1px rgba(39, 27, 17, 0.05),
    0 1px 2px rgba(39, 27, 17, 0.04), 0 24px 48px -24px rgba(90, 55, 28, 0.2);
  --shadow-float: 0 0 0 1px rgba(39, 27, 17, 0.05),
    0 2px 4px rgba(39, 27, 17, 0.04), 0 32px 64px -28px rgba(90, 55, 28, 0.28);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);

  /* 8px boşluk ölçeği */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s6: 48px;
  --s8: 64px;
  --s12: 96px;
  --s16: 128px;
}

:root[data-theme="dark"] {
  --bg: #17120e;
  --bg-2: #1e1813;
  --card: #221b15;
  --ink: #f2eadf;
  --ink-soft: #b3a595;
  --line: rgba(242, 234, 223, 0.12);
  --line-strong: rgba(242, 234, 223, 0.2);
  --copper: #d19e76;
  --copper-deep: #c08757;
  --copper-soft: rgba(209, 158, 118, 0.14);
  --gold: #b3a26a;
  --shell: rgba(242, 234, 223, 0.05);
  --shadow-ambient: 0 0 0 1px rgba(242, 234, 223, 0.07),
    0 1px 2px rgba(0, 0, 0, 0.3), 0 24px 48px -24px rgba(0, 0, 0, 0.5);
  --shadow-float: 0 0 0 1px rgba(242, 234, 223, 0.09),
    0 2px 4px rgba(0, 0, 0, 0.3), 0 32px 64px -28px rgba(0, 0, 0, 0.6);
}

/* ---------- Zemin ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-padding-top: 96px;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
}

::selection {
  background: var(--copper);
  color: #fff8f2;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}

.num {
  font-variant-numeric: tabular-nums;
}

a {
  color: inherit;
}

img, svg {
  max-width: 100%;
  display: block;
}

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

.skip-link {
  position: fixed;
  top: var(--s1);
  left: var(--s1);
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: var(--s1) var(--s2);
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - var(--s4), 1120px);
  margin-inline: auto;
}

section {
  padding-block: var(--s12);
}
@media (min-width: 768px) {
  section {
    padding-block: var(--s16);
  }
}

/* ---------- Kesit işareti (numara + italik serif + çizgi) ---------- */
.kicker {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s2);
}
.kicker .no {
  font-size: 13px;
  font-weight: 600;
  color: var(--copper-deep);
  font-variant-numeric: tabular-nums;
}
.kicker .word {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--copper-deep);
  white-space: nowrap;
}
.kicker .rule {
  flex: 1;
  height: 1px;
  background: var(--line-strong);
  min-width: 32px;
}
.kicker.light .no,
.kicker.light .word { color: #d19e76; }
.kicker.light .rule { background: rgba(242, 234, 223, 0.2); }

/* ---------- Film greni (sabit katman) ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
}
:root[data-theme="dark"] body::after { opacity: 0.07; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  padding: 10px 12px 10px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform 0.5s var(--ease), background-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.btn:active {
  transform: scale(0.98);
}
.btn .btn-orb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.5s var(--ease);
}
.btn:hover .btn-orb {
  transform: translate(3px, -1px) scale(1.05);
}
.btn .btn-orb svg {
  width: 14px;
  height: 14px;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-ambient);
}
.btn-primary:hover {
  box-shadow: var(--shadow-float);
}
.btn-primary .btn-orb {
  background: var(--copper);
  color: #fff8f2;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.btn-ghost:hover {
  background: var(--copper-soft);
}
.btn-ghost .btn-orb {
  background: var(--copper-soft);
  color: var(--copper-deep);
}

/* ---------- Ada nav ---------- */
.nav {
  position: fixed;
  top: var(--s2);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 10px 10px 10px 20px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 0 1px var(--line);
  transition: box-shadow 0.6s var(--ease), background-color 0.5s var(--ease);
  width: max-content;
  max-width: calc(100vw - var(--s4));
}
.nav.is-scrolled {
  box-shadow: var(--shadow-float);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-brand .mark {
  width: 30px;
  height: 22px;
}
.nav-brand .wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transform: translateY(-1px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.4s var(--ease), background-color 0.4s var(--ease);
}
.nav-links a:hover {
  color: var(--ink);
  background: var(--copper-soft);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav-cta:hover {
  box-shadow: var(--shadow-ambient);
}
.nav-cta:active {
  transform: scale(0.98);
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: var(--copper-soft);
  color: var(--copper-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.5s var(--ease);
}
.theme-toggle:active {
  transform: scale(0.92);
}
.theme-toggle svg {
  width: 17px;
  height: 17px;
}
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
:root:not([data-theme="dark"]) .theme-toggle .icon-sun { display: none; }

/* Hamburger */
.nav-burger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: var(--copper-soft);
  cursor: pointer;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 11px;
  width: 16px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}
.nav-burger span:nth-child(1) { top: 15px; }
.nav-burger span:nth-child(2) { top: 21px; }
body.menu-open .nav-burger span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}
body.menu-open .nav-burger span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

/* Mobil tam ekran menü */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--s3);
  text-align: center;
}
.mobile-menu a {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 9vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: inline-block;
  transform: translateY(48px);
  opacity: 0;
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease);
}
body.menu-open .mobile-menu a {
  transform: translateY(0);
  opacity: 1;
}
body.menu-open .mobile-menu li:nth-child(1) a { transition-delay: 0.1s; }
body.menu-open .mobile-menu li:nth-child(2) a { transition-delay: 0.16s; }
body.menu-open .mobile-menu li:nth-child(3) a { transition-delay: 0.22s; }
body.menu-open .mobile-menu li:nth-child(4) a { transition-delay: 0.28s; }
body.menu-open .mobile-menu li:nth-child(5) a { transition-delay: 0.34s; }
body.menu-open .mobile-menu li:nth-child(6) a { transition-delay: 0.4s; }

@media (max-width: 860px) {
  .nav-links, .nav .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav { gap: var(--s2); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-content: center;
  padding-top: var(--s16);
  padding-bottom: var(--s8);
}
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(52% 44% at 78% 6%, rgba(176, 113, 75, 0.14), transparent 70%),
    radial-gradient(40% 36% at 8% 88%, rgba(140, 122, 69, 0.1), transparent 70%);
}
:root[data-theme="dark"] .hero-mesh {
  background:
    radial-gradient(52% 44% at 78% 6%, rgba(209, 158, 118, 0.1), transparent 70%),
    radial-gradient(40% 36% at 8% 88%, rgba(179, 162, 106, 0.07), transparent 70%);
}
.hero-watermark {
  position: absolute;
  right: -4%;
  top: 6%;
  width: min(56vw, 720px);
  pointer-events: none;
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  display: grid;
  gap: var(--s6);
}
.hero-mock {
  position: relative;
}
.float-card {
  position: absolute;
  z-index: 2;
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow-float);
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12.5px;
  line-height: 1.35;
}
.float-card .fc-ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--copper-soft);
  color: var(--copper-deep);
}
.float-card .fc-ic svg { width: 16px; height: 16px; }
.float-card b { display: block; font-size: 13px; }
.float-card span { color: var(--ink-soft); font-size: 11.5px; }
.fc1 {
  top: -22px;
  right: -14px;
  transform: rotate(2deg);
}
.fc2 {
  bottom: -20px;
  left: -18px;
  transform: rotate(-2deg);
}
.fc2 .fc-score {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--copper-deep);
}
/* Mobil: yüzen kartlar panonun altına statik olarak iner */
@media (max-width: 1000px) {
  .hero-watermark { display: none; }
  .hero-mock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s2);
  }
  .hero-mock .shell {
    grid-column: 1 / -1;
    order: -1;
  }
  .float-card {
    position: static;
    transform: none;
  }
}
@media (max-width: 600px) {
  .hero-mock { grid-template-columns: 1fr; }
}
.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  max-width: 17ch;
  margin-top: var(--s3);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper-deep);
}
.hero-sub {
  max-width: 54ch;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  margin-top: var(--s2);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s4);
}

/* ---------- Mockup çerçevesi (çift kabuk) ---------- */
.shell {
  background: var(--shell);
  padding: var(--s1);
  border-radius: 28px;
  box-shadow: var(--shadow-ambient);
}
.core {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5),
    0 0 0 1px var(--line);
}
:root[data-theme="dark"] .core {
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06), 0 0 0 1px var(--line);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 12px var(--s2);
  border-bottom: 1px solid var(--line);
}
.browser-bar .dots {
  display: flex;
  gap: 6px;
}
.browser-bar .dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
}
.browser-bar .url {
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--bg-2);
  border-radius: 999px;
  padding: 4px 14px;
}

/* Hero pano taslağı */
.dash {
  padding: var(--s3);
  display: grid;
  gap: var(--s3);
  font-size: 13px;
}
.dash-note {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
}
.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s2);
}
.kpi {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: var(--s2);
  display: grid;
  gap: 2px;
}
.kpi b {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.kpi span {
  color: var(--ink-soft);
  font-size: 12px;
}
.kpi .up { color: var(--gold); }
.dash-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--s2);
}
.panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: var(--s2);
}
.panel h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--s2);
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
}
.bars i {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--copper), color-mix(in oklab, var(--copper) 55%, var(--bg)));
  min-height: 12%;
}
.bars i.hot { background: linear-gradient(180deg, var(--copper-deep), var(--copper)); }
.bar-labels {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.bar-labels span {
  flex: 1;
  text-align: center;
  font-size: 10.5px;
  color: var(--ink-soft);
}
.rows {
  display: grid;
  gap: 10px;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 8px;
  font-size: 12.5px;
}
.row:last-child { border-bottom: 0; padding-bottom: 0; }
.row .who {
  display: flex;
  align-items: center;
  gap: 8px;
}
.row .avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--copper-soft);
  color: var(--copper-deep);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
}
.pill {
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
}
.pill.ok { background: rgba(140, 122, 69, 0.14); color: var(--gold); }
.pill.warn { background: rgba(176, 82, 60, 0.12); color: #a34a33; }
:root[data-theme="dark"] .pill.warn { color: #d98a70; }

@media (max-width: 700px) {
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .dash-split { grid-template-columns: 1fr; }
}

/* ---------- Güven bandı ---------- */
.trust {
  padding-block: 0;
}
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: var(--s3);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--s2) var(--s4);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}
.trust-strip .sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  flex: none;
}

/* ---------- Neden Monsivo (karşılaştırma) ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  align-items: start;
}
.cmp-card {
  border-radius: 24px;
  padding: var(--s4);
  display: grid;
  gap: var(--s3);
  align-content: start;
}
.cmp-card h3 {
  font-size: 21px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cmp-card h3 small {
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.cmp-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--s2);
}
.cmp-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
}
.cmp-card li svg {
  width: 17px;
  height: 17px;
  flex: none;
  margin-top: 4px;
}
.cmp-before {
  background: var(--bg-2);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--ink-soft);
}
.cmp-before li svg { color: var(--ink-soft); opacity: 0.7; }
.cmp-after {
  background: var(--card);
  box-shadow: var(--shadow-float);
}
.cmp-after li svg { color: var(--copper-deep); }
@media (min-width: 861px) {
  .cmp-after { transform: translateY(calc(-1 * var(--s3))); }
}
@media (max-width: 860px) {
  .compare { grid-template-columns: 1fr; }
}

/* ---------- SSS ---------- */
.faq {
  max-width: 760px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--copper-deep); }
.faq .plus {
  position: relative;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--copper-soft);
}
.faq .plus::before,
.faq .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.6px;
  border-radius: 2px;
  background: var(--copper-deep);
  transform: translate(-50%, -50%);
  transition: transform 0.5s var(--ease);
}
.faq .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq details[open] .plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq details[open] .plus::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.faq details p {
  padding: 0 0 var(--s3);
  color: var(--ink-soft);
  max-width: 62ch;
  font-size: 15.5px;
}

/* ---------- Bölüm başlıkları ---------- */
.section-head {
  display: grid;
  gap: var(--s2);
  max-width: 640px;
  margin-bottom: var(--s8);
}
.section-head.centered {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 48px);
}
.section-head p {
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---------- Bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s2);
}
.bento .shell {
  border-radius: 24px;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.bento .shell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}
.bento .core {
  border-radius: 17px;
  height: 100%;
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.b-wide-l { grid-column: span 7; grid-row: span 2; }
.b-side { grid-column: span 5; }
.b-third { grid-column: span 4; }
@media (max-width: 860px) {
  .b-wide-l, .b-side, .b-third { grid-column: span 12; grid-row: auto; }
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--copper-soft);
  color: var(--copper-deep);
  display: grid;
  place-items: center;
  flex: none;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}
.bento h3 {
  font-size: 22px;
  font-weight: 550;
}
.bento p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 46ch;
}
.bento .mini {
  margin-top: auto;
  padding-top: var(--s2);
}

/* skor halkası (Performans kartı) */
.score-demo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  border-top: 1px dashed var(--line);
  padding-top: var(--s3);
  margin-top: auto;
}
.score-ring {
  width: 92px;
  height: 92px;
  flex: none;
}
.score-legend {
  display: grid;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.score-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 8px;
  background: var(--copper);
}
.score-legend .l2 i { background: var(--gold); }
.score-legend .l3 i { background: var(--line-strong); }

/* ---------- Nasıl çalışır ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s2);
}
.step {
  grid-column: span 4;
  padding: var(--s4);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow-ambient);
  display: grid;
  gap: var(--s2);
  align-content: start;
}
.step {
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}
.step:nth-child(2) { margin-top: var(--s3); }
.step:nth-child(3) { margin-top: var(--s6); }
.step .no {
  font-family: "Fraunces", Georgia, serif;
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  color: var(--copper);
  line-height: 1;
}
.step h3 { font-size: 21px; }
.step p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 860px) {
  .step { grid-column: span 12; }
  .step:nth-child(2), .step:nth-child(3) { margin-top: 0; }
}

/* ---------- Ekran görüntüleri ---------- */
.shots {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--s3);
  align-items: start;
}
.shots .shell:nth-child(2) { margin-top: var(--s8); }
/* Koyu ürün arayüzü mock'u (temsili) — site temasından bağımsız */
.admin {
  display: flex;
  background: #14100c;
  color: #efe7db;
  font-size: 12px;
  line-height: 1.45;
}
.admin-side {
  width: 148px;
  flex: none;
  border-right: 1px solid rgba(239, 231, 219, 0.08);
  padding: var(--s2);
  display: grid;
  gap: 4px;
  align-content: start;
}
.admin-side .it {
  padding: 6px 10px;
  border-radius: 8px;
  color: rgba(239, 231, 219, 0.5);
  font-size: 11px;
  white-space: nowrap;
}
.admin-side .it.on {
  background: rgba(209, 158, 118, 0.14);
  color: #d19e76;
  font-weight: 600;
}
.admin-main {
  flex: 1;
  min-width: 0;
  padding: var(--s2);
  display: grid;
  gap: var(--s2);
  align-content: start;
}
.adm-label {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(239, 231, 219, 0.45);
}
.adm-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s1);
}
.adm-tiles.three { grid-template-columns: repeat(3, 1fr); }
.adm-tile {
  border: 1px solid rgba(239, 231, 219, 0.09);
  border-radius: 10px;
  padding: 10px 12px;
  display: grid;
  gap: 1px;
  min-width: 0;
}
.adm-tile b {
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
}
.adm-tile b.gold { color: #d1b06a; }
.adm-tile b.copper { color: #d19e76; }
.adm-tile span {
  font-size: 10px;
  color: rgba(239, 231, 219, 0.5);
}
.adm-cols {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s1);
}
.adm-panel {
  border: 1px solid rgba(239, 231, 219, 0.09);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
}
.adm-panel h5 {
  font-size: 11.5px;
  font-weight: 600;
  color: #efe7db;
  display: flex;
  justify-content: space-between;
  gap: var(--s1);
}
.adm-panel h5 small {
  font-weight: 500;
  color: rgba(239, 231, 219, 0.4);
  font-size: 10px;
}
.adm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s1);
  border-bottom: 1px dashed rgba(239, 231, 219, 0.08);
  padding-bottom: 7px;
  font-size: 11.5px;
}
.adm-row:last-child { border-bottom: 0; padding-bottom: 0; }
.adm-pill {
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 9.5px;
  font-weight: 600;
  white-space: nowrap;
  flex: none;
}
.adm-pill.vip { background: rgba(209, 176, 106, 0.16); color: #d1b06a; }
.adm-pill.risk { background: rgba(217, 119, 93, 0.16); color: #d9775d; }
.adm-pill.ok { background: rgba(154, 168, 111, 0.16); color: #aab77e; }
.adm-progress {
  display: grid;
  gap: 6px;
}
.adm-progress .p-row {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 11px;
}
.adm-progress .p-row em {
  font-style: normal;
  width: 88px;
  flex: none;
  color: rgba(239, 231, 219, 0.75);
}
.adm-progress .p-row b {
  font-family: "Fraunces", Georgia, serif;
  width: 24px;
  text-align: right;
  flex: none;
}
.adm-progress .track {
  flex: 1;
  height: 5px;
  border-radius: 99px;
  background: rgba(239, 231, 219, 0.1);
  overflow: hidden;
}
.adm-progress .track i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #96562f, #d19e76);
}
.adm-alarm {
  border: 1px solid rgba(239, 231, 219, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
  display: grid;
  gap: 3px;
  font-size: 10.5px;
  color: rgba(239, 231, 219, 0.6);
}
.adm-alarm .t {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #efe7db;
  font-weight: 600;
}
.shot-note {
  padding: 8px 12px;
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239, 231, 219, 0.4);
  border-top: 1px solid rgba(239, 231, 219, 0.08);
}
@media (max-width: 700px) {
  .admin-side { display: none; }
  .adm-tiles { grid-template-columns: repeat(2, 1fr); }
  .adm-tiles.three { grid-template-columns: repeat(2, 1fr); }
  .adm-cols { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .shots { grid-template-columns: 1fr; }
  .shots .shell:nth-child(2) { margin-top: 0; }
}

/* ---------- KVKK bandı ---------- */
.kvkk {
  background: #221912;
  color: #f2eadf;
  border-radius: 32px;
  margin-inline: auto;
  width: min(100% - var(--s4), 1120px);
  padding: var(--s8) var(--s4);
  position: relative;
  overflow: hidden;
}
:root[data-theme="dark"] .kvkk {
  background: #100c09;
  box-shadow: 0 0 0 1px var(--line);
}
.kvkk::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 80% at 85% 0%, rgba(209, 158, 118, 0.14), transparent 70%);
}
.kvkk-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--s6);
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}
.kvkk h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  color: #f7f1e8;
}
.kvkk .eyebrow {
  background: transparent;
  border-color: rgba(242, 234, 223, 0.25);
  color: #d19e76;
}
.kvkk p {
  color: rgba(242, 234, 223, 0.72);
  margin-top: var(--s2);
  max-width: 46ch;
}
.kvkk ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--s2);
}
.kvkk li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(242, 234, 223, 0.05);
  border: 1px solid rgba(242, 234, 223, 0.1);
  border-radius: 16px;
  padding: var(--s2) var(--s3);
  font-size: 15px;
}
.kvkk li svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 3px;
  color: #d19e76;
}
@media (max-width: 860px) {
  .kvkk-inner { grid-template-columns: 1fr; }
  .kvkk { padding: var(--s6) var(--s3); }
}

/* ---------- Büyük CTA ---------- */
.big-cta {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: var(--s3);
}
.big-cta h2 {
  font-size: clamp(34px, 5vw, 60px);
  max-width: 18ch;
}
.big-cta h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper-deep);
}
.big-cta p {
  color: var(--ink-soft);
  max-width: 48ch;
  font-size: 17px;
}
.big-cta .hero-ctas {
  margin-top: var(--s2);
  justify-content: center;
}
.contact-line {
  margin-top: var(--s3);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.contact-line a {
  color: var(--copper-deep);
  font-weight: 600;
  text-decoration-color: var(--copper);
  text-underline-offset: 3px;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: var(--s8) 0 var(--s6);
  margin-top: var(--s12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s6);
}
.footer-brand {
  display: grid;
  gap: var(--s2);
  align-content: start;
  justify-items: start;
}
.footer-brand .nav-brand .mark { width: 34px; height: 25px; }
.footer-brand p {
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 34ch;
}
footer h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--s2);
  font-weight: 600;
}
footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}
footer ul a {
  text-decoration: none;
  font-size: 15px;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}
footer ul a:hover { color: var(--copper-deep); }
.footer-bottom {
  margin-top: var(--s8);
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s2);
  font-size: 13.5px;
  color: var(--ink-soft);
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
