/* Uygulama ile uyum: turuncu #fca311 (App.jsx), font Inter (tailwind.config.js) */
html[data-theme="dark"] {
  --bg-deep: #0f0e0c;
  --bg-card: rgba(26, 24, 20, 0.78);
  --text: #f4eee0;
  --muted: #a8a29e;
  --cyan: #fca311;
  --violet: #fbbf24;
  --rose: #fb923c;
  --amber: #fcd34d;
  --lime: #fde68a;
  --border: rgba(252, 163, 17, 0.22);
  --header-bg: rgba(15, 14, 12, 0.88);
  --f-card-bg: rgba(22, 20, 17, 0.68);
  --cta-inner-bg: rgba(12, 11, 9, 0.96);
  --grid-line: rgba(255, 255, 255, 0.045);
  --radius: 20px;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, sans-serif;
}

html[data-theme="light"] {
  --bg-deep: #f4eee0;
  --bg-card: rgba(255, 255, 255, 0.92);
  --text: #121212;
  --muted: #57534e;
  --cyan: #d97706;
  --violet: #ea580c;
  --rose: #c2410c;
  --amber: #b45309;
  --lime: #92400e;
  --border: rgba(18, 17, 14, 0.12);
  --header-bg: rgba(255, 252, 248, 0.92);
  --f-card-bg: rgba(255, 255, 255, 0.96);
  --cta-inner-bg: rgba(255, 253, 250, 0.98);
  --grid-line: rgba(18, 17, 14, 0.07);
  --radius: 20px;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  /* Yapışkan üst bar # hedeflerini kapatmasın */
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* İlk yük: içerik “pat” diye gelmesin; JS yoksa (html.js yok) sayfa normal görünür */
html.js body {
  opacity: 0;
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js body.site-enter {
  opacity: 1;
}

a {
  color: inherit;
}

.wrap {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* ——— Ambient background ——— */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orb-float 18s ease-in-out infinite;
}

.orb-a {
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  background: radial-gradient(circle, rgba(252, 163, 17, 0.42), transparent 70%);
  top: -8%;
  left: -10%;
  animation-delay: 0s;
}

.orb-b {
  width: min(480px, 85vw);
  height: min(480px, 85vw);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.38), transparent 70%);
  top: 30%;
  right: -15%;
  animation-delay: -6s;
  animation-duration: 22s;
}

.orb-c {
  width: min(400px, 70vw);
  height: min(400px, 70vw);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.32), transparent 70%);
  bottom: -5%;
  left: 25%;
  animation-delay: -12s;
  animation-duration: 20s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, 6%) scale(1.05);
  }
  66% {
    transform: translate(-3%, 4%) scale(0.95);
  }
}

.grid-floor {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
  animation: grid-drift 40s linear infinite;
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 200px, 200px 0;
  }
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(16px) saturate(1.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: flex;
  animation: brand-pop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes brand-pop {
  from {
    transform: scale(0) rotate(-20deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.brand-img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

html[data-theme="dark"] .brand-img {
  background: linear-gradient(155deg, #2a2621, #171513);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(252, 163, 17, 0.22);
}

.brand-name {
  background: linear-gradient(105deg, var(--text) 0%, #fca311 35%, #f59e0b 65%, #ea580c 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine-text 6s ease-in-out infinite;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.theme-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(252, 163, 17, 0.08);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.theme-toggle:hover {
  background: rgba(252, 163, 17, 0.16);
  box-shadow: 0 0 24px rgba(252, 163, 17, 0.2);
}

.theme-toggle:active {
  transform: scale(0.96);
}

.theme-icon {
  position: absolute;
}

html[data-theme="dark"] .theme-icon-sun {
  opacity: 1;
}

html[data-theme="dark"] .theme-icon-moon {
  opacity: 0;
  pointer-events: none;
}

html[data-theme="light"] .theme-icon-sun {
  opacity: 0;
  pointer-events: none;
}

html[data-theme="light"] .theme-icon-moon {
  opacity: 1;
}

@keyframes shine-text {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.nav {
  display: flex;
  gap: clamp(1rem, 3vw, 1.75rem);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transition: width 0.25s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

.btn-mini {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  display: none;
}

@media (min-width: 720px) {
  .btn-mini {
    display: inline-flex;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #fca311, #f59e0b);
  color: #12100e;
  box-shadow: 0 0 0 0 rgba(252, 163, 17, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(252, 163, 17, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-glow {
  animation: btn-pulse 3s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(252, 163, 17, 0.28);
  }
  50% {
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.45);
  }
}

.btn-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: btn-shine 3.5s ease-in-out infinite;
}

@keyframes btn-shine {
  0% {
    transform: translateX(-100%);
  }
  25%,
  100% {
    transform: translateX(100%);
  }
}

.btn-ico {
  font-size: 1.1rem;
  opacity: 0.9;
}

.btn-ico.play {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 2px solid currentColor;
  position: relative;
}

.btn-ico.play::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent currentColor;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 1rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 12px var(--rose);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 1.1rem;
  font-weight: 800;
}

.title-line {
  display: block;
}

.title-gradient {
  background: linear-gradient(100deg, var(--cyan) 0%, var(--violet) 40%, var(--rose) 85%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-flow 5s ease infinite;
}

@keyframes gradient-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-prose {
  max-width: 38rem;
}

.hero-prose .lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero-prose .lead:last-child {
  margin-bottom: 1.5rem;
}

.lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36rem;
}

.lead-tight {
  font-size: 1.02rem;
  line-height: 1.7;
  opacity: 0.96;
}

.hero-prose strong {
  color: var(--text);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  opacity: 0.85;
}

.hint code {
  font-size: 0.85em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 6px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 960px) {
  .hero-visual {
    min-height: 420px;
  }
}

.hero-orbit {
  --orbit-box: min(312px, 78vw);
  width: var(--orbit-box);
  height: var(--orbit-box);
  /* Kesik halka inset:14px ile hizalı — kart merkezi halka üzerinde */
  --orbit-r: calc(var(--orbit-box) / 2 - 15px);
  position: relative;
  margin-inline: auto;
}

.orbit-spin {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: hero-orbit-spin 44s linear infinite;
  animation-play-state: running;
}

html.js body:not(.site-enter) .orbit-spin {
  animation-play-state: paused;
}

html.js body.site-enter .orbit-spin {
  animation-delay: 0.55s;
}

@keyframes hero-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.orbit-ring {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 2px dashed rgba(252, 163, 17, 0.38);
}

.orbit-slot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: rotate(calc(var(--i) * 60deg)) translateY(calc(-1 * var(--orbit-r)));
  transform-origin: center center;
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 44%;
  height: 44%;
  transform: translate(-50%, -50%);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(252, 163, 17, 0.22), rgba(245, 158, 11, 0.3));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7%;
  box-shadow: 0 0 52px rgba(252, 163, 17, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.orbit-core-inner {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  animation: core-breathe 4s ease-in-out infinite;
}

.orbit-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
}

html[data-theme="dark"] .orbit-logo {
  background: linear-gradient(160deg, #2a2621, #141210);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

html[data-theme="light"] .orbit-core {
  background: linear-gradient(145deg, rgba(252, 163, 17, 0.15), rgba(255, 255, 255, 0.6));
}

@keyframes core-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.float-card {
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 0.12rem;
  font-size: 0.72rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  max-width: 118px;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
}

.float-card--orbit {
  position: relative;
  left: 50%;
  /* Slot rotate(i*60deg) ile düzeltme — animasyon gecikmesi/paused iken de dik dursun */
  transform: translate(-50%, -50%) rotate(calc(var(--i) * -60deg));
  max-width: min(136px, 38vw);
  min-width: 96px;
  padding: 0.68rem 0.78rem;
  gap: 0.22rem;
  font-size: 0.7rem;
  line-height: 1.28;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  animation: orbit-card-counter 44s linear infinite;
  animation-fill-mode: backwards;
  animation-play-state: running;
}

html.js body:not(.site-enter) .float-card--orbit {
  animation-play-state: paused;
}

html.js body.site-enter .float-card--orbit {
  animation-delay: 0.55s;
}

.float-card--orbit .fc-t {
  max-width: 100%;
  line-height: 1.22;
  overflow-wrap: break-word;
  hyphens: manual;
}

@keyframes orbit-card-counter {
  from {
    transform: translate(-50%, -50%) rotate(calc(var(--i) * -60deg));
  }
  to {
    transform: translate(-50%, -50%) rotate(calc(var(--i) * -60deg - 360deg));
  }
}

.fc-icon {
  font-size: 1.1rem;
}

.fc-t {
  color: var(--muted);
  font-weight: 500;
}

.fc-n {
  font-weight: 700;
  color: var(--text);
}

/* ——— Vizyon / CEO metni ——— */
.vision {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.vision-inner {
  max-width: 920px;
  margin-inline: auto;
}

.vision-head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.vision-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
}

.vision-kicker {
  margin: 0 auto;
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.vision-kicker strong {
  color: var(--text);
  font-weight: 600;
}

.vision-columns {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .vision-columns {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem 1.5rem;
  }

  .vision-block-wide {
    grid-column: 1 / -1;
  }
}

.vision-block {
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

html[data-theme="light"] .vision-block {
  box-shadow: 0 10px 32px rgba(28, 25, 21, 0.08);
}

.vision-h {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fca311;
}

html[data-theme="light"] .vision-h {
  color: #b45309;
}

.vision-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.vision-block p strong {
  color: var(--text);
  font-weight: 600;
}

/* ——— Section heads ——— */
.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  font-weight: 800;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 1.02rem;
}

.section-head p strong {
  color: var(--text);
  font-weight: 600;
}

.section-sub {
  margin: 1.1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--muted);
  opacity: 0.95;
}

.section-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.6rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: rgba(252, 163, 17, 0.1);
  color: var(--text);
}

html[data-theme="light"] .pill {
  background: rgba(252, 163, 17, 0.14);
}

.pill--pop {
  opacity: 0;
  transform: translateY(14px) scale(0.94);
}

.section-head.reveal.is-visible .pill--pop {
  animation: pill-pop-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--pill-i, 0) * 0.1s + 0.12s);
}

@keyframes pill-pop-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section-head.reveal.is-visible .pill--pulse {
  animation: pill-pop-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    pill-glow 2.8s ease-in-out infinite;
  animation-delay: calc(var(--pill-i, 0) * 0.1s + 0.12s), calc(var(--pill-i, 0) * 0.1s + 0.7s);
}

@keyframes pill-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(252, 163, 17, 0);
  }
  50% {
    box-shadow: 0 0 18px rgba(252, 163, 17, 0.35);
  }
}

.h2-animated {
  position: relative;
  display: inline-block;
}

.h2-animated::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.4rem;
  width: 0;
  height: 3px;
  border-radius: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #fca311, #f59e0b, #ea580c);
  transition: width 0.05s ease;
}

.section-head.reveal.is-visible .h2-animated::after {
  animation: h2-line-grow 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

@keyframes h2-line-grow {
  to {
    width: min(220px, 72vw);
  }
}

/* ——— Exams bento ——— */
.exams {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: clip;
}

.exams-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 90% 55% at 50% -5%, rgba(252, 163, 17, 0.14), transparent 52%),
    radial-gradient(ellipse 55% 45% at 100% 35%, rgba(245, 158, 11, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 60%, rgba(249, 115, 22, 0.08), transparent 45%);
  animation: exams-bg-breathe 16s ease-in-out infinite;
}

@keyframes exams-bg-breathe {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.04) translateY(1%);
  }
}

.exams-wrap {
  position: relative;
  z-index: 1;
}

.exam-bento {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .exam-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exam-yks {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .exam-bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 1.1rem;
    align-items: stretch;
  }

  .exam-yks {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .exam-lgs {
    grid-column: 3;
    grid-row: 1;
  }

  .exam-kpss {
    grid-column: 1;
    grid-row: 2;
  }

  .exam-ydt {
    grid-column: 2;
    grid-row: 2;
  }

  .exam-uni {
    grid-column: 3;
    grid-row: 2;
  }
}

.exam-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.35rem 1.5rem;
  padding-right: 2.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.35s ease;
  animation: exam-tile-glow 5.5s ease-in-out infinite;
  animation-delay: calc(var(--tile-i, 0) * 0.45s);
}

@media (min-width: 960px) {
  .exam-tile {
    min-height: 300px;
  }
}

@keyframes exam-tile-glow {
  0%,
  100% {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(252, 163, 17, 0);
  }
  50% {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28), 0 0 28px rgba(252, 163, 17, 0.12);
  }
}

.exam-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: var(--tile-accent, linear-gradient(135deg, var(--cyan), var(--violet)));
  transition: opacity 0.3s ease;
}

.exam-tile:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.exam-tile:hover::before {
  opacity: 0.22;
}

.exam-shine {
  position: absolute;
  inset: -60% -40%;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 62%
  );
  transform: translateX(-60%) rotate(11deg);
  animation: exam-shine-sweep 5.2s ease-in-out infinite;
  animation-delay: calc(var(--tile-i, 0) * 0.65s);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

@keyframes exam-shine-sweep {
  0%,
  100% {
    transform: translateX(-65%) rotate(11deg);
  }
  45% {
    transform: translateX(55%) rotate(11deg);
  }
  55% {
    transform: translateX(55%) rotate(11deg);
  }
}

.exam-ico {
  position: absolute;
  top: 1.15rem;
  right: 1rem;
  font-size: 1.55rem;
  line-height: 1;
  z-index: 4;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  animation: exam-ico-float 4.5s ease-in-out infinite;
  animation-delay: calc(var(--tile-i, 0) * 0.55s);
}

.exam-tile:has(.exam-tag) .exam-ico {
  top: 3.15rem;
}

@keyframes exam-ico-float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}

.exam-detail {
  margin: 0.7rem 0 0;
  font-size: 0.84rem;
  line-height: 1.62;
  color: var(--muted);
  opacity: 0.9;
}

.exam-yks {
  --tile-accent: linear-gradient(135deg, #fca311, #ea580c);
}

.exam-lgs {
  --tile-accent: linear-gradient(135deg, #fbbf24, #f97316);
}

.exam-kpss {
  --tile-accent: linear-gradient(135deg, #fb923c, #fca311);
}

.exam-ydt {
  --tile-accent: linear-gradient(135deg, #f59e0b, #ea580c);
}

.exam-uni {
  --tile-accent: linear-gradient(135deg, #fcd34d, #d97706);
}

.exam-tile h3,
.exam-body,
.exam-detail,
.exam-tag,
.exam-chips,
.exam-foot {
  position: relative;
  z-index: 3;
}

.exam-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 0;
}

.exam-tile h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.exam-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.exam-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  background: rgba(252, 163, 17, 0.22);
  color: #fca311;
  margin-bottom: 0.75rem;
}

html[data-theme="light"] .exam-tag {
  color: #b45309;
}

.exam-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.exam-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.exam-stat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.38rem 0.55rem;
  border-radius: 8px;
  background: rgba(252, 163, 17, 0.1);
  border: 1px solid rgba(252, 163, 17, 0.22);
  color: var(--text);
  animation: exam-stat-breathe 3.2s ease-in-out infinite;
}

.exam-stat:nth-child(2) {
  animation-delay: 0.35s;
}

.exam-stat:nth-child(3) {
  animation-delay: 0.7s;
}

@keyframes exam-stat-breathe {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(252, 163, 17, 0.22);
  }
  50% {
    transform: translateY(-2px);
    border-color: rgba(252, 163, 17, 0.45);
    box-shadow: 0 4px 14px rgba(252, 163, 17, 0.15);
  }
}

.exam-chips li {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.exam-chips li:hover {
  transform: scale(1.06);
  border-color: rgba(252, 163, 17, 0.45);
  box-shadow: 0 0 14px rgba(252, 163, 17, 0.2);
}

/* ——— Features ——— */
.features {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: clip;
}

.features-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 70% 50% at 20% 80%, rgba(252, 163, 17, 0.1), transparent 50%),
    radial-gradient(ellipse 65% 45% at 85% 15%, rgba(249, 115, 22, 0.09), transparent 48%);
  animation: features-bg-drift 18s ease-in-out infinite;
}

@keyframes features-bg-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  33% {
    transform: translate(2%, -1%) rotate(1deg);
    opacity: 0.92;
  }
  66% {
    transform: translate(-2%, 1%) rotate(-0.8deg);
    opacity: 0.96;
  }
}

.features-wrap {
  position: relative;
  z-index: 1;
}

.feature-showcase {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .feature-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

.f-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--f-card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.35s ease;
}

.f-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(252, 163, 17, 0.35);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35), 0 0 40px rgba(252, 163, 17, 0.12);
}

.f-border-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 0;
  box-shadow: inset 0 0 0 1px rgba(252, 163, 17, 0.12);
  animation: f-border-pulse 3.4s ease-in-out infinite;
  animation-delay: calc(var(--fc-i, 0) * 0.35s);
}

@keyframes f-border-pulse {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px rgba(252, 163, 17, 0.1), 0 0 20px rgba(252, 163, 17, 0.06);
  }
  50% {
    box-shadow: inset 0 0 0 2px rgba(252, 163, 17, 0.28), 0 0 32px rgba(252, 163, 17, 0.18);
  }
}

.f-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(252, 163, 17, 0.38), transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: glow-pulse 5s ease-in-out infinite;
  animation-delay: calc(var(--fc-i, 0) * 0.4s);
}

.f-glow-violet {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.42), transparent 70%);
}

.f-glow-rose {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 70%);
}

.f-glow-amber {
  background: radial-gradient(circle, rgba(253, 224, 71, 0.32), transparent 70%);
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.f-emoji {
  position: relative;
  z-index: 2;
  font-size: 2.15rem;
  display: block;
  margin-bottom: 0.75rem;
  animation: emoji-combo 4.2s ease-in-out infinite;
  animation-delay: calc(var(--fc-i, 0) * 0.25s);
  filter: drop-shadow(0 6px 14px rgba(252, 163, 17, 0.25));
}

@keyframes emoji-combo {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  20% {
    transform: translateY(-4px) rotate(-6deg);
  }
  40% {
    transform: translateY(0) rotate(6deg);
  }
  60% {
    transform: translateY(-3px) rotate(-4deg);
  }
  80% {
    transform: translateY(0) rotate(4deg);
  }
}

.f-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.f-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.f-detail {
  position: relative;
  z-index: 2;
  margin: 0.65rem 0 0;
  font-size: 0.86rem;
  line-height: 1.62;
  color: var(--muted);
  opacity: 0.9;
}

/* ——— CTA + İletişim ——— */
.cta-band {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(3rem, 8vw, 5rem);
  overflow: clip;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 45% at 50% 100%, rgba(252, 163, 17, 0.12), transparent 55%);
  opacity: 0.9;
}

.cta-band > .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: calc(var(--radius) + 10px);
  padding: 1px;
  background: linear-gradient(120deg, var(--cyan), var(--violet), var(--rose), var(--cyan));
  background-size: 300% 300%;
  animation: border-flow 8s ease infinite;
}

.cta-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 85% 70% at 50% 0%, rgba(252, 163, 17, 0.18), transparent 62%);
  pointer-events: none;
  animation: cta-glow-opacity 5s ease-in-out infinite;
}

@keyframes cta-glow-opacity {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.95;
  }
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.35rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius) + 9px);
  background: var(--cta-inner-bg);
  backdrop-filter: blur(20px);
}

.cta-grid {
  display: grid;
  gap: 1.5rem 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .cta-grid {
    grid-template-columns: 1fr minmax(200px, 240px);
    align-items: center;
  }
}

@media (max-width: 799px) {
  .cta-aside {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-mini {
    text-align: center;
  }
}

.cta-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fca311;
}

html[data-theme="light"] .cta-eyebrow {
  color: #b45309;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  margin: 0 0 0.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 40rem;
}

.cta-checklist {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.cta-checklist li {
  margin-bottom: 0.4rem;
}

.cta-checklist li::marker {
  color: #fca311;
}

.cta-aside {
  display: grid;
  gap: 0.65rem;
}

.cta-mini {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(252, 163, 17, 0.06);
  animation: cta-mini-float 5s ease-in-out infinite;
}

.cta-mini--b {
  animation-delay: -1.2s;
}

.cta-mini--c {
  animation-delay: -2.4s;
}

@keyframes cta-mini-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.cta-mini-val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}

.cta-mini-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}

/* İletişim paneli */
.contact-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: calc(var(--radius) + 6px);
  padding: 1px;
  background: linear-gradient(135deg, rgba(252, 163, 17, 0.45), rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.35));
  background-size: 200% 200%;
  animation: border-flow 10s ease infinite;
}

.contact-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 90% 55% at 100% 0%, rgba(252, 163, 17, 0.12), transparent 58%);
  pointer-events: none;
  animation: cta-glow-opacity 6s ease-in-out infinite;
  animation-delay: -1.5s;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem 2rem;
  padding: clamp(1.35rem, 3.5vw, 2rem);
  border-radius: calc(var(--radius) + 5px);
  background: var(--bg-card);
  backdrop-filter: blur(14px);
}

@media (min-width: 720px) {
  .contact-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.contact-col--main h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
}

.contact-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 36rem;
}

.contact-mail {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fca311;
  text-decoration: none;
  border-bottom: 2px solid rgba(252, 163, 17, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-mail:hover {
  color: #fdba74;
  border-color: rgba(252, 163, 17, 0.7);
  transform: translateX(2px);
}

html[data-theme="light"] .contact-mail {
  color: #c2410c;
}

.contact-col--meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-sla {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-meta-title {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fca311;
}

html[data-theme="light"] .contact-meta-title {
  color: #b45309;
}

.contact-topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

@media (min-width: 520px) {
  .contact-topics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-topics li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(252, 163, 17, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-topics li:hover {
  transform: translateY(-2px);
  border-color: rgba(252, 163, 17, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.ct-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.ct-desc {
  font-size: 0.68rem;
  line-height: 1.4;
  color: var(--muted);
}

.inline-link {
  color: var(--cyan);
  font-weight: 600;
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
  margin-right: 0.25rem;
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-inner a:hover {
  color: var(--cyan);
}

.sep {
  opacity: 0.35;
}

/* ——— Scroll reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js body {
    opacity: 1 !important;
    transition: none !important;
  }

  .orb,
  .grid-floor,
  .orbit-ring,
  .orbit-spin,
  .orbit-core,
  .orbit-core-inner,
  .float-card,
  .float-card--orbit,
  .btn-shine::before,
  .btn-glow,
  .title-gradient,
  .brand-name,
  .cta-shell,
  .f-glow,
  .f-emoji,
  .eyebrow-dot,
  .exams-bg,
  .features-bg,
  .exam-tile,
  .exam-shine,
  .exam-ico,
  .f-border-glow,
  .section-head.reveal.is-visible .pill--pop,
  .section-head.reveal.is-visible .pill--pulse,
  .exam-stat,
  .cta-mini,
  .cta-glow,
  .contact-glow,
  .contact-panel,
  .mock-phone,
  .mock-phone-glint,
  .mock-side-glow,
  .mf-card,
  .mf-bar,
  .mf-arena-live,
  .mf-timer::after,
  .mf-ring-big,
  .mf-store-tile,
  .mf-b1,
  .mf-b2,
  .mf-b3,
  .mf-b4,
  .mockups-eyebrow-dot,
  .mf-ai-spark,
  .mf-ai-line--glow,
  .mf-ai-cta {
    animation: none !important;
  }

  .mock-track {
    transition: none !important;
  }

  .mock-detail,
  .mock-bullets li {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .mock-detail:not(.is-active) {
    display: none;
  }

  .cta-glow,
  .contact-glow {
    opacity: 0.72;
  }

  .pill--pop {
    opacity: 1;
    transform: none;
  }

  .h2-animated::after,
  .section-head.reveal.is-visible .h2-animated::after {
    animation: none !important;
    width: min(220px, 72vw);
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .orbit-core-inner {
    transform: none;
  }

  .float-card--orbit {
    animation: none !important;
    transform: translate(-50%, -50%) rotate(calc(var(--i) * -60deg));
  }

  .contact-panel {
    background: linear-gradient(135deg, rgba(252, 163, 17, 0.38), rgba(249, 115, 22, 0.26));
  }
}

@media (max-width: 719px) {
  .nav {
    gap: 0.65rem;
    font-size: 0.78rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 52%;
  }

  .nav a::after {
    bottom: -2px;
  }

  .header-actions .btn-mini {
    display: none;
  }
}

/* Açık tema ince ayar */
html[data-theme="light"] .float-card {
  box-shadow: 0 14px 36px rgba(28, 25, 21, 0.1);
}

html[data-theme="light"] .ambient .orb {
  opacity: 0.38;
}

html[data-theme="light"] .eyebrow {
  color: #b45309;
}

html[data-theme="light"] .theme-toggle {
  background: rgba(252, 163, 17, 0.12);
}

/* ——— Yasal metin sayfaları (Gizlilik / Kullanım koşulları) ——— */
body.legal-body {
  position: relative;
  z-index: 1;
}

.legal-main {
  padding: clamp(1.25rem, 4vw, 2rem) 0 clamp(3rem, 8vw, 5rem);
}

.legal-doc {
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(1.35rem, 4vw, 2.5rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

html[data-theme="light"] .legal-doc {
  box-shadow: 0 16px 40px rgba(28, 25, 21, 0.08);
}

.legal-doc h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.legal-meta {
  margin: 0 0 1.75rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.legal-doc h2 {
  margin: 2.25rem 0 0.65rem;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc h3 {
  margin: 1.35rem 0 0.45rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}

.legal-doc p,
.legal-doc li {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--muted);
}

.legal-doc p {
  margin: 0 0 0.85rem;
}

.legal-doc ul,
.legal-doc ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-doc li {
  margin-bottom: 0.4rem;
}

.legal-doc strong {
  color: var(--text);
  font-weight: 700;
}

.legal-doc a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-doc a:hover {
  color: var(--rose);
}

.legal-note {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(252, 163, 17, 0.08);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

.legal-nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cyan);
  text-decoration: none;
}

.legal-back:hover {
  color: var(--rose);
}

.legal-footer-links {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-footer-links a {
  color: var(--cyan);
  font-weight: 600;
  margin-right: 1rem;
}

/* ——— App mockups (interactive) ——— */
.app-mockups {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  --mock-index: 0;
  --mock-slide-count: 5;
}

.mockups-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(252, 163, 17, 0.14), transparent 55%),
    radial-gradient(80% 60% at 10% 80%, rgba(251, 146, 60, 0.1), transparent 50%);
  pointer-events: none;
}

.section-head--mockups {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.mockups-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.mockups-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--rose));
  box-shadow: 0 0 16px rgba(252, 163, 17, 0.55);
  animation: mock-dot-pulse 2.4s ease-in-out infinite;
}

@keyframes mock-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.mockups-lead {
  margin: 0.75rem auto 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.mockups-lead kbd {
  font-family: ui-monospace, monospace;
  font-size: 0.82em;
  padding: 0.12rem 0.35rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
}

.mockups-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.mockups-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.mock-phone {
  position: relative;
  width: min(280px, 86vw);
  perspective: 900px;
  animation: mock-phone-float 7s ease-in-out infinite;
}

@keyframes mock-phone-float {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateY(-10px) rotateX(4deg) rotateY(-5deg);
  }
}

.mock-phone-glint {
  position: absolute;
  inset: -12% -20%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.07) 48%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.06) 52%,
    transparent 60%
  );
  transform: translateX(-30%);
  animation: mock-glint-sweep 5.5s ease-in-out infinite;
  pointer-events: none;
  border-radius: 40px;
  z-index: 3;
}

@keyframes mock-glint-sweep {
  0%,
  100% {
    transform: translateX(-40%);
    opacity: 0.35;
  }
  45% {
    opacity: 0.85;
  }
  55% {
    transform: translateX(40%);
    opacity: 0.85;
  }
}

.mock-phone-frame {
  position: relative;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(60, 55, 48, 0.95), rgba(18, 16, 14, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(252, 163, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 1;
}

html[data-theme="light"] .mock-phone-frame {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(230, 225, 216, 0.98));
  box-shadow: 0 22px 50px rgba(28, 25, 21, 0.12), 0 0 0 1px rgba(18, 17, 14, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mock-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 22px;
  background: #0c0b0a;
  border-radius: 0 0 14px 14px;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] .mock-phone-notch {
  background: #1c1917;
}

.mock-phone-screen {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19.2;
  background: #0a0908;
}

.mock-track {
  display: flex;
  width: calc(var(--mock-slide-count, 5) * 100%);
  height: 100%;
  transform: translateX(calc(var(--mock-index, 0) * -100% / var(--mock-slide-count, 5)));
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.mock-slide {
  position: relative;
  width: calc(100% / var(--mock-slide-count, 5));
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.mock-fake {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 1.85rem 0.85rem 0.85rem;
  background: linear-gradient(180deg, #161311 0%, #0c0b09 100%);
  font-size: 0.72rem;
  color: #e7e5e4;
}

html[data-theme="light"] .mock-fake {
  background: linear-gradient(180deg, #fafaf9 0%, #e7e5e4 100%);
  color: #1c1917;
}

.mock-cap {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.mock-fake--ai {
  padding: 1.75rem 0.75rem 0.75rem;
  background: linear-gradient(165deg, #1a1520 0%, #0c0b09 55%, #12100e 100%);
}

html[data-theme="light"] .mock-fake--ai {
  background: linear-gradient(165deg, #faf5ff 0%, #e7e5e4 100%);
}

.mf-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fde68a;
  margin-bottom: 0.45rem;
}

.mf-ai-spark {
  display: inline-block;
  color: #fca311;
  animation: mock-ai-spark 1.8s ease-in-out infinite;
}

@keyframes mock-ai-spark {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: rotate(25deg) scale(1.15);
    opacity: 0.75;
  }
}

.mf-ai-hint {
  margin: 0 0 0.55rem;
  font-size: 0.62rem;
  line-height: 1.45;
  font-weight: 600;
  color: #d6d3d1;
}

html[data-theme="light"] .mf-ai-hint {
  color: #44403c;
}

.mf-ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.65rem;
}

.mf-ai-chip {
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.22rem 0.38rem;
  border-radius: 8px;
  background: rgba(252, 163, 17, 0.18);
  border: 1px solid rgba(252, 163, 17, 0.35);
  color: #fef3c7;
}

html[data-theme="light"] .mf-ai-chip {
  color: #78350f;
}

.mf-ai-preview {
  border-radius: 12px;
  padding: 0.55rem 0.5rem;
  margin-bottom: 0.55rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(252, 163, 17, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

html[data-theme="light"] .mf-ai-preview {
  background: rgba(255, 255, 255, 0.65);
}

.mf-ai-line {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
}

.mf-ai-line--short {
  width: 58%;
}

.mf-ai-line--glow {
  background: linear-gradient(90deg, rgba(252, 163, 17, 0.15), rgba(252, 163, 17, 0.75), rgba(252, 163, 17, 0.15));
  background-size: 200% 100%;
  animation: mock-ai-scan 2.2s linear infinite;
}

@keyframes mock-ai-scan {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.mf-ai-cta {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 900;
  padding: 0.45rem 0.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #fca311, #ea580c);
  color: #0c0a09;
  box-shadow: 0 6px 20px rgba(252, 163, 17, 0.35);
  animation: mock-ai-cta-pulse 2.5s ease-in-out infinite;
}

@keyframes mock-ai-cta-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(252, 163, 17, 0.35);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 28px rgba(252, 163, 17, 0.45);
  }
}

.mock-thumb-row--five .mock-tab {
  padding: 0.38rem 0.65rem;
  font-size: 0.72rem;
}

.mock-thumb-row--five .mock-tab-ico {
  font-size: 0.95rem;
}

.mf-top {
  display: flex;
  gap: 4px;
  margin-bottom: 0.65rem;
  opacity: 0.45;
}

.mf-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #78716c;
}

.mf-title {
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.mf-card {
  border-radius: 14px;
  padding: 0.65rem 0.7rem;
  margin-bottom: 0.5rem;
  background: rgba(252, 163, 17, 0.1);
  border: 1px solid rgba(252, 163, 17, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: mock-card-pop 3.8s ease-in-out infinite;
}

.mf-card--dim {
  opacity: 0.55;
  animation-delay: -1.2s;
}

@keyframes mock-card-pop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.mf-chip {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  background: rgba(252, 163, 17, 0.25);
  color: #fef3c7;
  margin-bottom: 0.35rem;
}

html[data-theme="light"] .mf-chip {
  color: #78350f;
}

.mf-q {
  margin: 0;
  font-weight: 600;
  line-height: 1.35;
  font-size: 0.68rem;
}

.mf-row {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.mf-pill {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.12rem 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.mf-pill--bad {
  background: rgba(248, 113, 113, 0.2);
  color: #fecaca;
}

.mf-pill--ok {
  background: rgba(52, 211, 153, 0.18);
  color: #a7f3d0;
}

.mf-bar {
  margin-top: 0.75rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(252, 163, 17, 0.2), rgba(252, 163, 17, 0.85), rgba(252, 163, 17, 0.25));
  background-size: 200% 100%;
  animation: mock-bar-flow 2.2s linear infinite;
}

@keyframes mock-bar-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.mock-fake--arena {
  padding-top: 2rem;
}

.mf-arena-head {
  font-size: 0.62rem;
  font-weight: 800;
  color: #fca311;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mf-arena-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: mock-live-blink 1.2s ease-in-out infinite;
}

@keyframes mock-live-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.mf-arena-q {
  font-weight: 700;
  font-size: 0.68rem;
  line-height: 1.35;
  margin-bottom: 0.55rem;
}

.mf-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.mf-opt {
  text-align: center;
  padding: 0.4rem 0.2rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.65rem;
}

.mf-opt--x {
  border-color: rgba(252, 163, 17, 0.45);
  background: rgba(252, 163, 17, 0.12);
}

.mf-arena-foot {
  margin-top: 0.75rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: #a8a29e;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mf-timer {
  display: inline-block;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: rgba(252, 163, 17, 0.35);
  overflow: hidden;
  position: relative;
}

.mf-timer::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: #fca311;
  border-radius: inherit;
  animation: mock-timer 1.6s ease-in-out infinite alternate;
}

@keyframes mock-timer {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120%);
  }
}

.mock-fake--quest {
  padding-top: 2rem;
}

.mf-quest-title {
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.mf-quest-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.mf-quest-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.68rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mf-quest-done {
  color: #86efac;
}

.mf-check {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.25);
  border: 1px solid rgba(34, 197, 94, 0.45);
  position: relative;
}

.mf-check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #4ade80;
  border-width: 0 2px 2px 0;
  transform: rotate(38deg);
}

.mf-ring {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(252, 163, 17, 0.45);
}

.mf-ring-big {
  margin: 0 auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid rgba(252, 163, 17, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 30%, rgba(252, 163, 17, 0.2), transparent 65%);
  box-shadow: 0 0 40px rgba(252, 163, 17, 0.15);
  animation: mock-ring-breathe 3.2s ease-in-out infinite;
}

@keyframes mock-ring-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.mf-ring-num {
  font-weight: 900;
  font-size: 1.1rem;
  color: #fca311;
}

.mf-ring-lbl {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mock-fake--marketplace {
  padding-top: 2rem;
}

.mf-store-title {
  font-weight: 900;
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.mf-store-sub {
  margin: 0 0 0.75rem;
  font-size: 0.58rem;
  font-weight: 700;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mf-store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.mf-store-tile {
  position: relative;
  border-radius: 12px;
  padding: 0.5rem 0.45rem 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(252, 163, 17, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  animation: mock-store-pop 3s ease-in-out infinite;
}

.mf-store-tile:nth-child(2) {
  animation-delay: -0.6s;
}
.mf-store-tile:nth-child(3) {
  grid-column: 1 / -1;
  animation-delay: -1.2s;
}

@keyframes mock-store-pop {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(252, 163, 17, 0.2);
  }
  50% {
    transform: translateY(-2px);
    border-color: rgba(252, 163, 17, 0.4);
  }
}

.mf-store-tile--accent {
  background: rgba(252, 163, 17, 0.12);
  border-color: rgba(252, 163, 17, 0.45);
}

.mf-store-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 0.45rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.1rem 0.25rem;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.25);
  color: #bbf7d0;
}

.mf-store-name {
  font-size: 0.62rem;
  font-weight: 800;
  color: #fef3c7;
}

html[data-theme="light"] .mf-store-name {
  color: #78350f;
}

.mf-store-price {
  font-size: 0.55rem;
  font-weight: 700;
  color: #fca311;
}

.mf-store-foot {
  font-size: 0.52rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-fake--stats {
  padding-top: 2rem;
}

.mf-stats-h {
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.mf-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 72px;
  margin-bottom: 0.85rem;
}

.mf-b1,
.mf-b2,
.mf-b3,
.mf-b4 {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, rgba(252, 163, 17, 0.85), rgba(252, 163, 17, 0.15));
  transform-origin: bottom;
  animation: mock-bar-dance 2.6s ease-in-out infinite;
}

.mf-b1 {
  height: 42%;
  animation-delay: 0s;
}
.mf-b2 {
  height: 68%;
  animation-delay: 0.15s;
}
.mf-b3 {
  height: 55%;
  animation-delay: 0.3s;
}
.mf-b4 {
  height: 88%;
  animation-delay: 0.45s;
}

@keyframes mock-bar-dance {
  0%,
  100% {
    transform: scaleY(1);
    filter: brightness(1);
  }
  50% {
    transform: scaleY(1.08);
    filter: brightness(1.12);
  }
}

.mf-stats-row {
  display: flex;
  gap: 0.75rem;
}

.mf-stat {
  flex: 1;
  padding: 0.45rem 0.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.mf-stat strong {
  display: block;
  font-size: 0.85rem;
  color: #fca311;
}

.mf-stat small {
  font-size: 0.55rem;
  color: var(--muted);
  font-weight: 600;
}

.mock-phone-shadow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -14px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45), transparent 70%);
  filter: blur(4px);
  z-index: 0;
}

.mock-thumb-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 100%;
}

.mock-tab {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.mock-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(252, 163, 17, 0.45);
  box-shadow: 0 10px 28px rgba(252, 163, 17, 0.15);
}

.mock-tab.is-active {
  border-color: rgba(252, 163, 17, 0.65);
  background: linear-gradient(135deg, rgba(252, 163, 17, 0.22), rgba(251, 146, 60, 0.12));
  box-shadow: 0 0 0 1px rgba(252, 163, 17, 0.25), 0 12px 32px rgba(252, 163, 17, 0.18);
}

.mock-tab-ico {
  font-size: 1rem;
  line-height: 1;
}

.mock-tab-t {
  white-space: nowrap;
}

.mock-nav {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.mock-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.mock-nav-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(252, 163, 17, 0.5);
  box-shadow: 0 10px 26px rgba(252, 163, 17, 0.18);
}

.mock-side {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  min-height: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.mock-side-glow {
  position: absolute;
  inset: -40% -20%;
  background: conic-gradient(from 120deg, rgba(252, 163, 17, 0.15), transparent, rgba(251, 146, 60, 0.12), transparent);
  animation: mock-side-spin 14s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

@keyframes mock-side-spin {
  to {
    transform: rotate(360deg);
  }
}

.mock-detail {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), max-height 0.5s ease;
}

.mock-detail.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  max-height: 560px;
}

.mock-detail-h {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.mock-detail-num {
  display: inline-block;
  margin-right: 0.45rem;
  font-size: 0.75em;
  font-weight: 900;
  color: #fca311;
  vertical-align: middle;
}

.mock-detail-p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.mock-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mock-bullets li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0;
  transform: translateY(10px);
}

.mock-detail.is-active .mock-bullets li {
  animation: mock-li-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mock-detail.is-active .mock-bullets li:nth-child(1) {
  animation-delay: 0.08s;
}
.mock-detail.is-active .mock-bullets li:nth-child(2) {
  animation-delay: 0.16s;
}
.mock-detail.is-active .mock-bullets li:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes mock-li-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mock-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fca311, #fb923c);
  box-shadow: 0 0 10px rgba(252, 163, 17, 0.45);
}

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

  .mockups-stage {
    order: 0;
  }

  .mock-side {
    order: 1;
    min-height: 0;
  }

  .mock-detail {
    max-height: none;
  }

  .mock-detail:not(.is-active) {
    display: none;
  }

  .mock-detail.is-active {
    max-height: none;
  }
}

