/* ==========================================================================
   QRNexst — tema token'ları
   ========================================================================== */

:root {
  --bg: #ffffff;
  --text: #0a0a0a;
  --text-soft: #4a4a4a;
  --muted: #939393;
  --border: rgba(10, 10, 10, 0.08);
  --border-strong: rgba(10, 10, 10, 0.16);

  --card-glass: rgba(255, 255, 255, 0.58);
  --card-border: rgba(10, 10, 10, 0.05);
  --card-shadow: 0 14px 40px rgba(30, 20, 10, 0.05);

  --surface: #efefef;
  --surface-2: #fafafa;
  --pill-bg: rgba(255, 255, 255, 0.72);

  --grad-from: #0a0a0a;
  --grad-to: #9a9a9a;

  --arc-color: #e7eaf3;
  --ring-color: rgba(95, 115, 205, 0.16);

  --accent: #ff5d18;
  --glow-text: #1b0b04;

  /* hero glow katmanları */
  --ga1: #ffc9ab;
  --ga2: #ffd9c4;
  --gb1: #ff9a5e;
  --gb2: #ffb489;
  --gc1: #f4581c;
  --gc2: #ff7a3c;

  /* showcase gradyan kartlar */
  --show-grad-a: #ffd9c4;
  --show-grad-b: #ffc2a0;
  --show-grad-c: #ffcdb2;
  --show-base-1: #fff5ee;
  --show-base-2: #ffe4d3;
  --dim-color: rgba(60, 25, 8, 0.55);

  --cta-bg: #0a0a0a;
  --cta-text: #ffffff;

  --cube-top: #f4f4f2;
  --cube-left: #e0e0de;
  --cube-right: #cfcfcd;
  --cube-cell: rgba(20, 20, 20, 0.82);

  --maze-stroke: #d9d9d9;
  --faq-glow-core: rgba(255, 255, 255, 1);
  --faq-glow-edge: rgba(255, 255, 255, 0);

  --header-blur-bg: rgba(255, 255, 255, 0);
}

[data-theme="dark"] {
  --bg: #000000;
  --text: #f2f2f2;
  --text-soft: #cfcfcf;
  --muted: #8f8f8f;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.2);

  --card-glass: rgba(255, 255, 255, 0.045);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);

  --surface: #0f0f0f;
  --surface-2: #060606;
  --pill-bg: rgba(255, 255, 255, 0.05);

  --grad-from: #ffffff;
  --grad-to: #6d6d6d;

  --arc-color: rgba(255, 255, 255, 0.045);
  --ring-color: rgba(140, 160, 255, 0.1);
  --glow-text: #ffffff;

  --ga1: #52200a;
  --ga2: #351102;
  --gb1: #93350d;
  --gb2: #62230a;
  --gc1: #ff5a1f;
  --gc2: #b03c0b;

  --show-grad-a: rgba(255, 110, 50, 0.16);
  --show-grad-b: rgba(255, 90, 35, 0.1);
  --show-grad-c: rgba(255, 130, 70, 0.12);
  --show-base-1: #120a05;
  --show-base-2: #1c0e06;
  --dim-color: rgba(255, 220, 200, 0.5);

  --cta-bg: #ffffff;
  --cta-text: #0a0a0a;

  --cube-top: #232323;
  --cube-left: #191919;
  --cube-right: #101010;
  --cube-cell: rgba(255, 255, 255, 0.72);

  --maze-stroke: #383838;
  --faq-glow-core: rgba(255, 255, 255, 0.08);
  --faq-glow-edge: rgba(255, 255, 255, 0);
}

/* ==========================================================================
   Temel
   ========================================================================== */

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }

h1, h2, h3 {
  font-weight: 400;
  letter-spacing: -0.02em;
}

::selection { background: rgba(255, 93, 24, 0.25); }

section[id] { scroll-margin-top: 90px; }

/* konteyner */
.header-inner,
.features-intro,
.feature-grid,
.showcase,
.faq-head,
.faq-list,
.footer-grid {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4.5vw, 56px);
}

/* gradyan metin */
.grad {
  background: linear-gradient(100deg, var(--grad-from) 10%, var(--grad-to) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* reveal animasyonu */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* pill rozet */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--pill-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(20, 10, 5, 0.05);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-soft);
  width: max-content;
}
.pill-star {
  width: 13px;
  height: 13px;
  fill: currentColor;
  opacity: 0.85;
}
.hero-copy > .pill {
  border-color: var(--accent);
}

/* butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 27px;
  border-radius: 999px;
  font-size: 15px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}
.btn:active { transform: scale(0.96); }
.btn-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.btn:hover .btn-icon { transform: translateY(3px); }
.btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.btn-primary:hover { background: #e94d0c; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 18px 0;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: padding .28s ease, background .28s ease;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.header-brand-logo {
  width: 66px;
  height: auto;
  display: block;
  filter: invert(1);
  transition: width .28s ease, transform .3s ease, opacity .3s ease;
}
.brand:hover .header-brand-logo { transform: translateY(-1px); }
[data-theme="dark"] .header-brand-logo { filter: none; }
.brand-mark {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.brand-badge {
  width: 27px;
  height: auto;
  filter: drop-shadow(0 2px 5px rgba(255, 93, 24, 0.28));
}
.footer-brand .brand-badge { width: 24px; }

.main-nav {
  display: none;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  position: relative;
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.25s ease;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--text); }
.main-nav a.is-active { color: var(--text); }
.nav-dot {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.main-nav a.is-active .nav-dot {
  opacity: 1;
  transform: scale(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: width .28s ease, height .28s ease, background 0.25s ease, transform 0.2s ease;
}
.theme-toggle:hover { background: var(--surface); }
.theme-toggle:active { transform: scale(0.9); }
.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.6;
  stroke-linecap: round;
}
.icon-moon { display: none; fill: var(--text); stroke: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

.header-cta {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 21px;
  border-radius: 999px;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-size: 13px;
  box-shadow: 0 10px 26px rgba(10, 5, 0, 0.14);
  transition: height .28s ease, padding .28s ease, opacity 0.25s ease, transform 0.2s ease;
}
.header-cta:hover { opacity: 0.82; }
.header-cta:active { transform: scale(0.95); }

.menu-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  transition: width .28s ease, height .28s ease;
}
.menu-toggle span {
  display: block;
  width: 21px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1023px) {
  .site-header.is-compact { padding-block: 10px; }
  .site-header.is-compact .header-brand-logo { width: 56px; }
  .site-header.is-compact .theme-toggle,
  .site-header.is-compact .menu-toggle {
    width: 36px;
    height: 36px;
  }
  .site-header.is-compact .header-cta {
    height: 38px;
    padding-inline: 18px;
  }
}

@media (min-width: 1024px) {
  .site-header.is-compact { padding-block: 12px; }
  .site-header.is-compact .header-brand-logo { width: 58px; }
  .site-header.is-compact .theme-toggle {
    width: 36px;
    height: 36px;
  }
  .site-header.is-compact .header-cta {
    height: 38px;
    padding-inline: 18px;
  }
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* mobil menü */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 90px clamp(24px, 8vw, 48px) 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.mobile-nav a {
  font-size: 26px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav .mobile-nav-cta {
  margin-top: 26px;
  border: 0;
  border-radius: 999px;
  background: var(--cta-bg);
  color: var(--cta-text);
  text-align: center;
  font-size: 16px;
  padding: 16px 0;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 84px;
  overflow: hidden;
}

.hero-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ring {
  position: absolute;
  border: 1px solid var(--ring-color);
  border-radius: 50%;
  display: block;
}
.ring-1 { width: 54vw; aspect-ratio: 1; right: -12vw; top: -14vw; }
.ring-2 { width: 76vw; aspect-ratio: 1; right: -22vw; top: -24vw; }
.ring-3 { width: 100vw; aspect-ratio: 1; right: -32vw; top: -34vw; }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
  overflow: hidden;
}

.hero-video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1c0500;
}
.hero-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), transparent 22% 72%, rgba(0,0,0,.28)),
    radial-gradient(circle at center, transparent 48%, rgba(0,0,0,.2) 100%);
}
.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-glow {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.glow-layer {
  position: absolute;
  border-radius: 50%;
  width: var(--gsize);
  aspect-ratio: 1;
}
.glow-a {
  --gsize: min(125vw, 900px);
  background: radial-gradient(circle, var(--ga1) 0%, var(--ga2) 46%, transparent 70%);
}
.glow-b {
  --gsize: min(92vw, 640px);
  background: radial-gradient(circle, var(--gb1) 0%, var(--gb2) 52%, transparent 72%);
}
.glow-c {
  --gsize: min(62vw, 430px);
  background: radial-gradient(circle, var(--gc1) 0%, var(--gc2) 55%, transparent 76%);
}

/* etiket kartı (gerçek baskı tasarımı) */
.qr-tag {
  position: relative;
  width: clamp(280px, 82vw, 400px);
  transform: perspective(1100px) rotateX(5deg) rotateZ(-6deg);
  filter: drop-shadow(0 40px 50px rgba(25, 5, 0, 0.45));
  animation: tag-float 7s ease-in-out infinite;
}
@keyframes tag-float {
  50% { transform: perspective(1100px) rotateX(5deg) rotateZ(-6deg) translateY(-9px); }
}
.qr-tag-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.qr-slot {
  position: absolute;
  left: 60.1%;
  top: 26.4%;
  width: 30.8%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.qr-slot .qr-pattern {
  width: 100%;
  aspect-ratio: 1;
  color: #0b0b0b;
}
.qr-center-dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 23%;
  height: 23%;
  border-radius: 18%;
  background: #ffffff;
  display: grid;
  place-items: center;
}
.qr-center-dot img {
  width: 78%;
  height: auto;
}

/* hero metin */
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px clamp(20px, 6vw, 40px) 70px;
}

.hero-title {
  position: relative;
  width: 100%;
  margin-top: 26px;
  font-size: clamp(38px, 9.6vw, 64px);
  line-height: 1.16;
  min-height: calc(3em * 1.16);
}
.title-variant {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
}
.title-variant.is-active {
  opacity: 1;
  transform: none;
}

.hero-lede {
  max-width: 470px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* ==========================================================================
   Özellikler
   ========================================================================== */

.features {
  position: relative;
  padding: 52px 0 40px;
  overflow: hidden;
}

.features-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ring-f1 { width: 40vw; aspect-ratio: 1; left: -14vw; top: 34%; border-color: rgba(255, 120, 60, 0.16); }
.ring-f2 { width: 30vw; aspect-ratio: 1; left: -10vw; top: 42%; border-color: rgba(255, 120, 60, 0.12); }
.features-blob {
  position: absolute;
  left: -18vw;
  top: 30%;
  width: 46vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 130, 70, 0.14) 0%, transparent 65%);
}

.features-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  margin-bottom: clamp(68px, 9vw, 108px);
  text-align: center;
}
.features-intro-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
}
.features-intro-copy > .pill {
  border-color: var(--accent);
}
.features-intro-copy h2 {
  margin-top: 22px;
  font-size: clamp(34px, 7.4vw, 54px);
  line-height: 1.14;
}
.features-intro-copy p {
  margin: 20px auto 0;
  max-width: 570px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.66;
}

/* QR küpü */
.cube-stage {
  position: relative;
  width: min(66vw, 340px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
}
.cube-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -1%;
  width: 74%;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(14, 11, 9, 0.34) 0%, rgba(14, 11, 9, 0.14) 46%, transparent 74%);
  filter: blur(13px);
  transform: scaleY(.72);
}
[data-theme="dark"] .cube-stage::after {
  background: radial-gradient(ellipse, rgba(255, 93, 24, 0.3) 0%, rgba(64, 17, 2, 0.52) 38%, rgba(0, 0, 0, 0.9) 68%, transparent 78%);
}
.qr-sculpture {
  position: relative;
  z-index: 2;
  width: 108%;
  max-width: 450px;
  height: auto;
  display: block;
  border-radius: 0;
  mix-blend-mode: normal;
  filter: drop-shadow(0 24px 30px rgba(25, 28, 34, .18));
  animation: sculpture-bob 8s ease-in-out infinite;
}
@keyframes sculpture-bob {
  50% { transform: translateY(-10px) rotate(.4deg); }
}
[data-theme="dark"] .qr-sculpture {
  mix-blend-mode: normal;
  opacity: 1;
}
model-viewer.qr-sculpture-3d {
  aspect-ratio: 1;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: transparent;
  filter: none;
  cursor: grab;
}
model-viewer.qr-sculpture-3d:active {
  cursor: grabbing;
}
.qr-cube {
  --s: min(38vw, 196px);
  position: relative;
  width: var(--s);
  height: var(--s);
  transform-style: preserve-3d;
  transform: rotateX(-26deg) rotateY(-42deg);
  animation: cube-bob 8s ease-in-out infinite;
}
@keyframes cube-bob {
  50% { transform: rotateX(-26deg) rotateY(-42deg) translateY(-10px); }
}
.cube-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--cube-cell);
}
.cube-face svg { position: absolute; inset: 6%; width: 88%; height: 88%; }
.cube-top {
  background: var(--cube-top);
  transform: rotateX(90deg) translateZ(calc(var(--s) / 2));
}
.cube-left {
  background: var(--cube-left);
  transform: translateZ(calc(var(--s) / 2));
}
.cube-right {
  background: var(--cube-right);
  transform: rotateY(90deg) translateZ(calc(var(--s) / 2));
}
.cube-frag {
  position: absolute;
  width: 13%;
  aspect-ratio: 1;
  background: var(--cube-left);
  color: var(--cube-cell);
  transform: rotateX(-26deg) rotateY(-42deg);
  overflow: hidden;
}
.cube-frag svg { position: absolute; inset: 8%; width: 84%; height: 84%; }
.frag-1 { left: 4%; top: 16%; animation: frag-drift 9s ease-in-out infinite; }
.frag-2 { right: 2%; bottom: 14%; width: 9%; animation: frag-drift 7s ease-in-out infinite reverse; }
@keyframes frag-drift {
  50% { transform: rotateX(-26deg) rotateY(-42deg) translateY(-14px); }
}

/* özellik kartları */
@property --feature-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.feature-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--accent);
  background: var(--card-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--card-shadow);
  padding: 28px 26px 30px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(30, 20, 10, 0.09);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(
    from var(--feature-border-angle),
    transparent 0deg 250deg,
    rgba(255, 93, 24, .14) 272deg,
    rgba(255, 214, 194, .96) 304deg,
    var(--accent) 328deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter:
    drop-shadow(0 0 4px rgba(255, 93, 24, .72))
    drop-shadow(0 0 9px rgba(255, 93, 24, .42));
  animation: feature-border-orbit 3.6s linear infinite;
}
.feature-card:nth-child(2)::before { animation-delay: -.6s; }
.feature-card:nth-child(3)::before { animation-delay: -1.2s; }
.feature-card:nth-child(4)::before { animation-delay: -1.8s; }
.feature-card:nth-child(5)::before { animation-delay: -2.4s; }
.feature-card:nth-child(6)::before { animation-delay: -3s; }
@keyframes feature-border-orbit {
  to { --feature-border-angle: 360deg; }
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.tint-peach::after {
  background: linear-gradient(150deg, rgba(255, 130, 70, 0.11), transparent 55%);
}
.tint-violet::after {
  background: linear-gradient(215deg, rgba(125, 115, 255, 0.13), transparent 55%);
}
.feature-icon {
  width: 48px;
  height: 48px;
  padding: 11px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--text) 4%, transparent);
  border: 1px solid var(--card-border);
  fill: none;
  stroke: var(--text);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 18px;
  transition: transform 0.35s ease, background 0.35s ease;
}
.feature-card:hover .feature-icon {
  transform: translateY(-3px) rotate(-4deg);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.01em;
}
.feature-card p {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.64;
  color: var(--muted);
}

/* ==========================================================================
   Ürün & Tarz
   ========================================================================== */

.showcase {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 64px;
}

.show-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(115% 85% at 10% 10%, var(--show-grad-a) 0%, transparent 55%),
    radial-gradient(110% 95% at 92% 26%, var(--show-grad-b) 0%, transparent 62%),
    radial-gradient(130% 120% at 50% 100%, var(--show-grad-c) 0%, transparent 60%),
    linear-gradient(160deg, var(--show-base-1) 0%, var(--show-base-2) 100%);
  transition: background 0.3s ease;
}
[data-theme="dark"] .show-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.show-main {
  --gallery-rgb: 255, 93, 24;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding: clamp(30px, 6vw, 76px);
}

.product-shader {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: .82;
}

.show-main::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 64% 52% at 34% 30%, rgba(var(--gallery-rgb), .2), transparent 74%),
    linear-gradient(135deg, rgba(var(--gallery-rgb), .14), transparent 45%, rgba(var(--gallery-rgb), .08));
  transition: background .35s ease;
}

[data-theme="dark"] .show-main::after {
  background:
    radial-gradient(ellipse 62% 56% at 34% 30%, rgba(var(--gallery-rgb), .14), transparent 72%),
    linear-gradient(135deg, rgba(var(--gallery-rgb), .08), transparent 44%, rgba(var(--gallery-rgb), .12));
}

.show-main > .show-main-visual,
.show-main > .show-main-copy {
  position: relative;
  z-index: 2;
}

.show-main-copy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(26px, 4.2vw, 42px);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 26px;
  background: var(--bg);
  box-shadow:
    0 24px 70px rgba(68, 18, 0, .12),
    inset 0 1px 0 color-mix(in srgb, var(--text) 8%, transparent);
}
.show-main-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, transparent 5%, var(--accent) 34%, var(--accent) 66%, transparent 95%);
}
.show-main-copy::after {
  content: none;
}
[data-theme="dark"] .show-main-copy {
  background: #0b0b0b;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255,255,255,.07);
}
.show-main-copy > :not(.retro-phone) {
  position: relative;
  z-index: 2;
}
.retro-phone {
  --phone-rotate: 0deg;
  --phone-scale-x: 1;
  position: absolute;
  z-index: 1;
  width: 238px;
  height: auto;
  overflow: visible;
  pointer-events: none;
  filter: drop-shadow(0 10px 12px rgba(0,0,0,.16));
  transform: scaleX(var(--phone-scale-x)) rotate(var(--phone-rotate));
  transition: opacity .35s ease;
  animation: retro-phone-float 7s ease-in-out infinite;
}
.retro-phone .receiver-handle,
.retro-phone .receiver-cup > ellipse:first-child {
  fill: #f13b25;
  stroke: #1c1018;
  stroke-width: 5;
  stroke-linejoin: round;
}
.retro-phone .receiver-rim {
  fill: #ed2d1d;
  stroke: #1c1018;
  stroke-width: 4;
}
.retro-phone .receiver-shine {
  fill: none;
  stroke: #ff8b78;
  stroke-width: 3;
  opacity: .85;
}
.retro-phone .receiver-holes { fill: #1c1018; }
.retro-phone .receiver-cord,
.retro-phone .receiver-highlight {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.retro-phone .receiver-cord { stroke: #1c1018; stroke-width: 7; }
.retro-phone .receiver-highlight { stroke: #ff8b78; stroke-width: 4; opacity: .8; }
.retro-phone-tr {
  --phone-rotate: -3deg;
  top: -28px;
  right: -42px;
  opacity: .9;
}
.retro-phone-bl {
  --phone-rotate: 3deg;
  --phone-scale-x: -1;
  bottom: -32px;
  left: -42px;
  width: 225px;
  opacity: .82;
  animation-delay: -3.5s;
}
.show-main-copy:hover .retro-phone-tr { opacity: 1; }
.show-main-copy:hover .retro-phone-bl { opacity: .94; }
@keyframes retro-phone-float {
  0%, 100% { transform: scaleX(var(--phone-scale-x)) rotate(var(--phone-rotate)) translateY(0); }
  50% { transform: scaleX(var(--phone-scale-x)) rotate(var(--phone-rotate)) translateY(-5px); }
}
.show-copy-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.show-copy-rail .pill { flex: none; }
.show-copy-rail .pill-solid { border-color: var(--accent); }
.show-copy-code {
  color: color-mix(in srgb, var(--text) 52%, transparent);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.show-main-copy h2 {
  margin-top: 28px;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.show-main-copy h2 span {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.show-main-copy > p {
  margin-top: 24px;
  max-width: 510px;
  padding-left: 17px;
  border-left: 2px solid var(--accent);
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}
[data-theme="dark"] .show-main-copy > p { color: var(--muted); }

.show-list {
  counter-reset: show-feature;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
}
.show-list li {
  counter-increment: show-feature;
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: flex-start;
  min-height: 112px;
  padding: 16px 14px;
  border: 1px solid color-mix(in srgb, var(--text) 9%, transparent);
  border-radius: 16px;
  background: color-mix(in srgb, var(--bg) 28%, transparent);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-soft);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.show-list li:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 34%, transparent);
  background: color-mix(in srgb, var(--accent) 6%, var(--bg) 24%);
}
[data-theme="dark"] .show-list li {
  color: var(--muted);
  background: rgba(255,255,255,.025);
}
.show-list svg {
  flex: none;
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
  opacity: 1;
}

/* renk seçici */
.color-picker {
  display: flex;
  gap: 13px;
  margin-top: 32px;
}
.swatch {
  position: relative;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.swatch:hover { transform: scale(1.12); }
.swatch svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.swatch.is-selected svg {
  opacity: 1;
  transform: none;
}
.swatch.is-selected {
  box-shadow: 0 0 0 2.5px var(--bg), 0 0 0 4.5px var(--text-soft);
}
.swatch-black { background: #101010; color: #ffffff; }
.swatch-white {
  background: linear-gradient(145deg, #ffffff 0%, #d5d5d5 100%);
  color: #444444;
  border: 1px solid rgba(0, 0, 0, 0.14);
}
.swatch-plum { background: #2c0f2e; color: #ffffff; }

/* dikdörtgen etiket mockup */
.show-main-visual {
  display: grid;
  place-items: center;
}
.sticker-stage {
  position: relative;
  padding: 30px 66px 56px 30px;
}
.product-card-stage {
  --gallery-rgb: 255, 93, 24;
  width: min(100%, 660px);
  padding: 34px 30px 54px;
  display: grid;
  place-items: center;
}
.product-card-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 9% 2% 20%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 35%, rgba(var(--gallery-rgb), .24), transparent 48%),
    radial-gradient(ellipse at 50% 74%, rgba(var(--gallery-rgb), .2), transparent 68%);
  filter: blur(30px);
  opacity: .9;
  pointer-events: none;
}
.product-gallery-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 600px);
  border-radius: 10px;
  outline: none;
}
.product-gallery-frame:focus-visible {
  box-shadow: 0 0 0 3px rgba(var(--gallery-rgb), .35);
}
.gallery-filter-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.show-product-card {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 9px;
  outline: 1px solid rgba(255, 255, 255, .42);
  outline-offset: -1px;
  box-shadow:
    0 10px 16px rgba(0, 0, 0, .3),
    0 28px 46px rgba(0, 0, 0, .26),
    0 54px 86px rgba(80, 22, 0, .34),
    0 2px 0 rgba(255, 255, 255, .34) inset;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  transition:
    transform .55s cubic-bezier(.2,.75,.2,1),
    box-shadow .55s ease,
    filter .2s ease-out;
}
.show-card:hover .show-product-card {
  transform: translate3d(0, -5px, 0);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .34),
    0 34px 54px rgba(0, 0, 0, .3),
    0 62px 96px rgba(80, 22, 0, .4),
    0 2px 0 rgba(255, 255, 255, .38) inset;
}
.product-gallery-cursor {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 16, 16, .34);
  box-shadow: 0 12px 26px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.72);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.product-gallery-cursor svg {
  width: 25px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-gallery-frame.is-hovering .product-gallery-cursor {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.product-color-badge {
  position: absolute;
  z-index: 5;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px 8px 8px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  color: #fff;
  background: rgba(12,12,12,.52);
  box-shadow: 0 8px 22px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-color-badge span {
  min-width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgb(var(--gallery-rgb));
  font-size: 9px;
  font-weight: 700;
  transition: background .2s ease;
}
.product-color-badge strong { font-weight: 600; }
.product-color-controls {
  position: relative;
  z-index: 4;
  width: fit-content;
  margin-top: 20px;
  padding: 6px;
  display: flex;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(12,12,12,.26);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.product-color-controls button {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-color-controls button::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid transparent;
  border-radius: inherit;
  transition: border-color .2s ease;
}
.product-color-controls button:hover { transform: translateY(-2px) scale(1.06); }
.product-color-controls button.is-active {
  transform: scale(.88);
  box-shadow: 0 0 0 3px rgba(255,255,255,.95), 0 0 0 5px rgba(var(--gallery-rgb), .62);
}
.product-color-controls button.is-active::after { border-color: rgba(255,255,255,.26); }
.product-gallery-hint {
  position: relative;
  z-index: 4;
  margin: 11px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.56);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-gallery-hint i {
  width: 25px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
}
.product-gallery-frame.is-switching .show-product-card {
  transform: translateY(-4px) scale(.992);
}
.product-card-stage .sticker-shadow {
  left: 50%;
  bottom: 66px;
  width: 74%;
  height: 54px;
  z-index: 1;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(20, 4, 0, .72) 0%, rgba(110, 34, 5, .42) 42%, transparent 72%);
  filter: blur(20px);
}
[data-theme="dark"] .product-card-stage .sticker-shadow {
  background: radial-gradient(ellipse, rgba(0, 0, 0, .92) 0%, rgba(79, 22, 2, .5) 46%, transparent 74%);
}

@media (hover: hover) and (pointer: fine) {
  .product-gallery-frame { cursor: none; }
}
.print-ready {
  width: min(100%, 560px);
  margin-top: 28px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  border-radius: 14px;
  color: var(--text-soft);
  background: color-mix(in srgb, var(--card-glass) 92%, transparent);
  font-size: 12px;
  font-weight: 500;
}
.print-ready::after {
  content: "↗";
  margin-left: auto;
  color: var(--accent);
  font-size: 17px;
  line-height: 1;
}
.print-ready i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ec87d;
  box-shadow: 0 0 0 4px rgba(46,200,125,.12);
}

@media (max-width: 560px) {
  .product-card-stage { padding: 24px 4px 46px; }
  .product-color-badge {
    right: 8px;
    bottom: 8px;
    padding: 6px 9px 6px 6px;
    font-size: 8px;
  }
  .product-color-badge span {
    min-width: 22px;
    height: 22px;
    font-size: 8px;
  }
  .product-color-controls { margin-top: 17px; }
  .product-color-controls button {
    width: 30px;
    height: 30px;
  }
  .product-gallery-hint { margin-top: 10px; }
  .product-gallery-hint span:first-child { display: none; }
  .retro-phone-tr {
    top: 36px;
    right: -36px;
    width: 148px;
    opacity: .74;
  }
  .retro-phone-bl {
    bottom: -20px;
    left: -34px;
    width: 142px;
    opacity: .68;
  }
  .show-copy-rail { align-items: flex-start; }
  .show-copy-code {
    max-width: 112px;
    white-space: normal;
    text-align: right;
    line-height: 1.45;
  }
  .show-list { grid-template-columns: 1fr; }
  .show-list li { min-height: auto; }
}
.sticker {
  transition: background 0.35s ease, color 0.35s ease;
}
.sticker-rect {
  position: relative;
  z-index: 2;
  width: clamp(180px, 46vw, 240px);
  aspect-ratio: 0.68;
  border-radius: 20px;
  padding: 9% 9% 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: perspective(800px) rotateX(5deg) rotateZ(-6deg);
  box-shadow:
    0 34px 60px rgba(150, 55, 10, 0.32),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
}
[data-theme="dark"] .sticker-rect {
  box-shadow: 0 34px 60px rgba(0, 0, 0, 0.55), inset 0 2px 0 rgba(255, 255, 255, 0.14);
}
.sticker-rect .sticker-qr {
  width: 88%;
  aspect-ratio: 1;
}
.sticker-text {
  margin-top: 10%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.35;
}
.sticker-text strong {
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.sticker-text span {
  font-size: clamp(8.5px, 1.6vw, 10px);
  font-weight: 300;
  opacity: 0.75;
}
.sticker-domain {
  margin-top: auto;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* etiket renk durumları */
.sticker.is-white { background: #ffffff; color: #0c0c0c; }
.sticker.is-black { background: #111111; color: #f5f5f5; }
.sticker.is-plum { background: #2c0f2e; color: #f5eef7; }

.sticker-shadow {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 62%;
  height: 40px;
  transform: translateX(-54%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(190, 70, 15, 0.5), transparent 70%);
  filter: blur(18px);
}
[data-theme="dark"] .sticker-shadow {
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.8), transparent 70%);
}

/* ölçü çizgileri */
.dim {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--dim-color);
  white-space: nowrap;
}
.dim i {
  position: relative;
  flex: 1;
  height: 1px;
  background: currentColor;
  min-width: 30px;
}
.dim i::before,
.dim i::after {
  content: "";
  position: absolute;
  top: -3.5px;
  width: 1px;
  height: 8px;
  background: currentColor;
}
.dim i::before { left: 0; }
.dim i::after { right: 0; }
.dim-v {
  right: 8px;
  top: 50%;
  width: clamp(200px, 40vw, 260px);
  transform: translate(50%, -50%) rotate(90deg);
}
.dim-h {
  left: 30px;
  bottom: 16px;
  width: clamp(150px, 34vw, 190px);
}

/* kullanım alanları grid'i */
.uc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
}
.features > .uc-grid {
  position: relative;
  margin-bottom: clamp(48px, 7vw, 76px);
}
.uc-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 300px;
  padding: clamp(26px, 3.6vw, 46px);
  background: var(--bg);
  overflow: hidden;
  transition: background 0.3s ease;
}
[data-theme="dark"] .uc-cell { background: #0b0b0b; }
[data-theme="dark"] .uc-arac {
  background: var(--accent);
}
[data-theme="dark"] .uc-arac .uc-kicker,
[data-theme="dark"] .uc-arac h4 {
  color: #1c0900;
}
[data-theme="dark"] .uc-arac p {
  color: rgba(28, 9, 0, 0.72);
}

.uc-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.uc-cell h4 {
  margin: 0;
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
}
.uc-cell p {
  position: relative;
  z-index: 2;
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--muted);
  max-width: 330px;
}
.uc-cell h4,
.uc-cell .uc-kicker {
  position: relative;
  z-index: 2;
}

.uc-title {
  justify-content: flex-end;
  background: #0d0d0d;
}
[data-theme="dark"] .uc-title { background: #0d0d0d; }
.uc-title::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 77% 22%, rgba(255, 255, 255, .08), transparent 42%),
    linear-gradient(180deg, rgba(13, 13, 13, .03) 18%, rgba(13, 13, 13, .2) 48%, #0d0d0d 88%);
}
.uc-title-qr {
  position: absolute;
  z-index: 3;
  top: 7%;
  right: 5%;
  width: min(43%, 170px);
  height: auto;
  display: block;
  opacity: .86;
  pointer-events: none;
  user-select: none;
  transform: rotate(-2.5deg);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .36));
  transition: transform .65s cubic-bezier(.2,.75,.2,1), opacity .4s ease;
}
.uc-title:hover .uc-title-qr {
  opacity: .96;
  transform: translateY(-5px) rotate(-1.5deg);
}
.uc-title h3 {
  position: relative;
  z-index: 4;
  max-width: 54%;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .72);
  color: #ffffff;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.uc-car {
  position: absolute;
  right: -5%;
  bottom: 7%;
  width: min(58%, 255px);
  fill: none;
  stroke: var(--text);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uc-bag {
  position: absolute;
  right: 9%;
  bottom: -5%;
  padding: 19px 22px 30px;
  border: 2.2px solid var(--text);
  border-radius: 12px;
  transform: rotate(-9deg);
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.18;
}

.uc-illustration {
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
  transform-origin: 60% 80%;
  transition: transform .65s cubic-bezier(.2,.75,.2,1), opacity .4s ease;
}
.uc-car-art {
  right: -2%;
  bottom: -2%;
  width: clamp(280px, 88%, 410px);
  opacity: .88;
  mix-blend-mode: normal;
  filter: drop-shadow(0 15px 18px rgba(20, 20, 20, .1));
}
.uc-suitcase {
  right: 3%;
  bottom: -28%;
  width: clamp(142px, 43%, 206px);
  opacity: .92;
  mix-blend-mode: normal;
  transform: rotate(2deg);
  filter: drop-shadow(0 16px 18px rgba(20, 20, 20, .08));
}
.uc-dog {
  right: -7%;
  bottom: -12%;
  width: clamp(225px, 69%, 330px);
  opacity: .76;
  mix-blend-mode: normal;
  filter: drop-shadow(0 14px 18px rgba(70, 18, 0, .12));
}
[data-theme="dark"] .uc-suitcase {
  opacity: .84;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .36));
}
[data-theme="dark"] .uc-car-art {
  opacity: .96;
  filter: drop-shadow(0 18px 22px rgba(64, 18, 0, .28));
}
[data-theme="dark"] .uc-dog {
  opacity: .8;
  filter: drop-shadow(0 16px 20px rgba(55, 12, 0, .2));
}
.uc-arac:hover .uc-car-art { transform: translateY(-5px) rotate(.2deg); opacity: .94; }
.uc-valiz:hover .uc-suitcase { transform: translateY(-5px) rotate(0deg); }
.uc-pet:hover .uc-dog { transform: translateY(-5px) rotate(-1deg); opacity: .9; }

.uc-pet { background: var(--accent); }
[data-theme="dark"] .uc-pet { background: var(--accent); }
.uc-pet .uc-kicker { color: #1c0900; }
.uc-pet h4 { color: #1c0900; }
.uc-pet p { color: rgba(28, 9, 0, 0.72); }
.uc-key h4,
.uc-key p,
.uc-influencer h4,
.uc-influencer p { max-width: 42%; }
.uc-key-wallet-art {
  right: -2%;
  bottom: -7%;
  width: clamp(185px, 51%, 245px);
  opacity: .88;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .24));
}
.uc-key:hover .uc-key-wallet-art {
  transform: translateY(-5px);
  opacity: 1;
}
.uc-influencer {
  background: var(--accent);
}
[data-theme="dark"] .uc-influencer { background: var(--accent); }
.uc-influencer .uc-kicker,
.uc-influencer h4 { color: #1c0900; }
.uc-influencer p { color: rgba(28, 9, 0, .72); }
.uc-influencer-art {
  right: 0;
  bottom: -6%;
  width: clamp(165px, 44%, 210px);
  opacity: .9;
  filter: drop-shadow(0 14px 18px rgba(70, 18, 0, .12));
}
.uc-influencer:hover .uc-influencer-art {
  transform: translateY(-5px);
  opacity: 1;
}
.uc-paw {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: clamp(78px, 9vw, 112px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(120, 32, 0, 0.55);
}

/* ========================================================================== 
   SSS
   ========================================================================== */

@property --faq-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.faq {
  padding: 110px 0 80px;
}

.faq-head {
  display: block;
  width: min(100%, 760px);
  margin: 0 auto 30px;
  text-align: left;
}
.faq-copy > .pill {
  border-color: var(--accent);
}
.faq-copy h2 {
  margin-top: 18px;
  font-size: clamp(34px, 6vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.faq-copy p {
  margin: 15px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.faq-list {
  width: min(100%, 760px);
  margin-inline: auto;
  padding-inline: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: color-mix(in srgb, var(--card-glass) 94%, var(--bg));
  box-shadow: 0 18px 48px color-mix(in srgb, var(--text) 7%, transparent);
}
.faq-item {
  position: relative;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.faq-item + .faq-item {
  border-top: 1px solid var(--border);
}
.faq-item.open {
  background: color-mix(in srgb, var(--accent) 22%, var(--bg));
  box-shadow:
    inset 0 0 0 1px var(--accent),
    0 0 24px color-mix(in srgb, var(--accent) 22%, transparent);
}
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: conic-gradient(
    from var(--faq-border-angle),
    transparent 0deg 222deg,
    rgba(255, 93, 24, .18) 246deg,
    var(--accent) 282deg,
    #fff2e9 310deg,
    var(--accent) 336deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter:
    drop-shadow(0 0 5px rgba(255, 93, 24, .92))
    drop-shadow(0 0 13px rgba(255, 93, 24, .62));
}
.faq-item.open::before {
  opacity: 1;
  animation: faq-border-orbit 2.4s linear infinite;
}
@keyframes faq-border-orbit {
  to { --faq-border-angle: 360deg; }
}
.faq-item > button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  text-align: left;
}
.faq-num {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.faq-q {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}
.faq-icon {
  flex: none;
  position: relative;
  width: 16px;
  height: 16px;
  opacity: .62;
  transition: transform .25s ease;
}
.faq-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-right: 1.6px solid var(--text);
  border-bottom: 1.6px solid var(--text);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  background: transparent;
  transition: grid-template-rows 0.28s ease, background-color 0.28s ease;
}
.faq-answer > div { overflow: hidden; }
.faq-answer p {
  padding: 0 22px 20px 68px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  background: transparent;
}
.faq-item.open .faq-num {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 18%, var(--surface));
}

/* ==========================================================================
   Sinematik footer — perde efekti
   ========================================================================== */

main {
  --garage-lift-y: 0px;
  position: relative;
  z-index: 2;
  background: var(--bg);
  padding-bottom: 100px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
  transform: translate3d(0, var(--garage-lift-y), 0);
  transform-origin: center bottom;
  transition:
    transform .78s cubic-bezier(.22, .8, .24, 1),
    background 0.25s ease;
}
html.garage-transitioning {
  scroll-behavior: auto;
}
body.garage-transitioning {
  overscroll-behavior: none;
  touch-action: none;
}
body.garage-transitioning main {
  will-change: transform;
  backface-visibility: hidden;
  pointer-events: none;
}
body.garage-active main {
  border-radius: 0 0 38px 38px;
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.28);
}
body.garage-open main {
  pointer-events: none;
}
.main-lift-cue {
  width: max-content;
  margin: 52px auto 0;
  transform: translateY(-72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  pointer-events: none;
  user-select: none;
}
.main-lift-cue svg {
  width: 25px;
  height: 68px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(255, 93, 24, .45));
}
.main-lift-shaft {
  stroke-dasharray: 59 59;
  stroke-dashoffset: 59;
  animation: main-lift-shaft-cycle 2.2s linear infinite;
}
.main-lift-head {
  opacity: 1;
  transform: translateY(56px);
  transform-box: fill-box;
  transform-origin: center;
  animation: main-lift-head-cycle 2.2s linear infinite;
  will-change: transform, opacity;
}
.main-lift-cue span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
@keyframes main-lift-shaft-cycle {
  0% { stroke-dashoffset: 59; opacity: 0; }
  4% { stroke-dashoffset: 59; opacity: 1; }
  72% { stroke-dashoffset: 0; opacity: 1; }
  78% { stroke-dashoffset: 0; opacity: 0; }
  79%, 100% { stroke-dashoffset: 59; opacity: 0; }
}
@keyframes main-lift-head-cycle {
  0% { opacity: 0; transform: translateY(56px); }
  4% { opacity: 1; transform: translateY(56px); }
  72% { opacity: 1; transform: translateY(0); }
  78% { opacity: 0; transform: translateY(0); }
  79%, 100% { opacity: 0; transform: translateY(56px); }
}

.footer-stage {
  position: relative;
  height: 100vh;
  height: 100svh;
  clip-path: inset(0);
}
.footer-stage.garage-ready {
  clip-path: none;
}

.cinematic-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--bg);
  transition: background 0.3s ease;
}

/* aurora + grid zemin */
.footer-aurora {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82vw;
  height: 62vh;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at 50% 50%,
    color-mix(in srgb, var(--accent) 17%, transparent) 0%,
    color-mix(in srgb, var(--accent) 7%, transparent) 42%,
    transparent 70%
  );
  filter: blur(70px);
  animation: footer-breathe 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes footer-breathe {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  to { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

.footer-grid-bg {
  position: absolute;
  inset: 0;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--text) 4%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--text) 4%, transparent) 1px, transparent 1px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}

/* dev arka plan yazısı */
.footer-giant {
  position: absolute;
  bottom: -12vh;
  left: 50%;
  width: min(68vw, 900px);
  aspect-ratio: 1916 / 821;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
}
.footer-giant-model {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-color: transparent;
  filter: drop-shadow(0 20px 34px color-mix(in srgb, var(--accent) 24%, transparent));
}

/* eğik marquee bandı */
.footer-marquee {
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  transform: rotate(-2deg) scale(1.1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 60%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  overflow: hidden;
  z-index: 2;
}
.footer-marquee-track {
  display: flex;
  width: max-content;
  animation: footer-marquee-scroll 42s linear infinite;
}
.footer-marquee-group {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.footer-marquee-group i {
  font-style: normal;
  color: color-mix(in srgb, var(--accent) 65%, transparent);
}
@keyframes footer-marquee-scroll {
  to { transform: translateX(-50%); }
}

/* orta içerik */
.footer-center {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 120px 22px 20px;
  text-align: center;
}

.footer-heading {
  font-size: clamp(42px, 7.4vw, 88px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
  padding-bottom: .14em;
  background: linear-gradient(180deg, var(--text) 0%, color-mix(in srgb, var(--text) 40%, transparent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 22px color-mix(in srgb, var(--text) 14%, transparent));
  margin-bottom: 12px;
}
.footer-heading-bracket {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

/* cam pill'ler */
.glass-pill {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 999px;
  color: var(--text-soft);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--text) 4%, transparent) 0%,
    color-mix(in srgb, var(--text) 1%, transparent) 100%
  );
  border: 1px solid color-mix(in srgb, var(--text) 9%, transparent);
  box-shadow:
    0 10px 30px -10px rgba(0, 0, 0, 0.18),
    inset 0 1px 1px color-mix(in srgb, var(--text) 10%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
  will-change: transform;
}
.glass-pill:hover {
  color: var(--text);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--text) 9%, transparent) 0%,
    color-mix(in srgb, var(--text) 2%, transparent) 100%
  );
  border-color: color-mix(in srgb, var(--text) 22%, transparent);
  box-shadow:
    0 20px 44px -12px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px color-mix(in srgb, var(--text) 22%, transparent);
}
.glass-pill:hover,
.glass-pill:active,
.glass-pill:focus-visible {
  color: var(--glow-text);
  outline: none;
  background: linear-gradient(
    145deg,
    rgba(255, 126, 68, .34) 0%,
    rgba(255, 93, 24, .16) 52%,
    rgba(255, 93, 24, .08) 100%
  );
  border-color: rgba(255, 125, 70, .72);
  box-shadow:
    0 14px 38px -12px rgba(255, 93, 24, .72),
    0 0 0 1px rgba(255, 93, 24, .18),
    inset 0 1px 1px rgba(255, 225, 210, .48),
    inset 0 -10px 24px rgba(255, 73, 0, .1);
}
.footer-pills-primary .glass-pill:nth-child(1).is-auto-glowing {
  --auto-pull-x: -10px;
  animation: primary-pill-pull 4s cubic-bezier(.45, 0, .55, 1);
}
.footer-pills-primary .glass-pill:nth-child(2).is-auto-glowing {
  --auto-pull-x: 10px;
  animation: primary-pill-pull 4s cubic-bezier(.45, 0, .55, 1);
}
.footer-pills-primary .glass-pill::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 126, 68, .34) 0%,
    rgba(255, 93, 24, .16) 52%,
    rgba(255, 93, 24, .08) 100%
  );
  border: 1px solid rgba(255, 125, 70, .72);
  box-shadow:
    0 14px 38px -12px rgba(255, 93, 24, .72),
    0 0 0 1px rgba(255, 93, 24, .18),
    inset 0 1px 1px rgba(255, 225, 210, .48),
    inset 0 -10px 24px rgba(255, 73, 0, .1);
}
.footer-pills-primary .glass-pill.is-auto-glowing::before {
  animation: primary-pill-auto-glow 4s cubic-bezier(.45, 0, .55, 1);
}
@keyframes primary-pill-auto-glow {
  0%, 100% { opacity: 0; }
  46%, 86% { opacity: 1; }
}
@keyframes primary-pill-pull {
  0%, 100% {
    color: var(--text);
    transform: translate(0, 0);
  }
  46% {
    color: var(--glow-text);
    transform: translate(var(--auto-pull-x), -3px);
  }
  86% {
    color: var(--glow-text);
    transform: translate(0, 0);
  }
}
.glass-pill:focus-visible {
  outline: 2px solid rgba(255, 151, 104, .82);
  outline-offset: 3px;
}
.glass-pill svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.glass-pill svg.filled {
  fill: currentColor;
  stroke: none;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.pill-lg {
  padding: 19px 36px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.pill-sm {
  padding: 12px 23px;
  font-size: 13px;
  font-weight: 500;
}
.footer-pills-secondary {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 11px;
}
.footer-pills-secondary .glass-pill:nth-child(5) {
  grid-column: 1 / -1;
  justify-self: center;
}
.footer-pills-secondary .glass-pill:nth-child(1)::after,
.footer-pills-secondary .glass-pill:nth-child(3)::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 50% -1px -1px;
  border: 1px solid var(--accent);
  border-top: 0;
  border-radius: 0 0 999px 999px;
  pointer-events: none;
  clip-path: inset(100% 50% 0 50%);
  animation: footer-bottom-half-pulse 4.4s cubic-bezier(.45, 0, .55, 1) infinite both;
  will-change: clip-path, opacity, filter;
}
.footer-pills-secondary .glass-pill:nth-child(2)::before,
.footer-pills-secondary .glass-pill:nth-child(4)::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -1px -1px 50%;
  border: 1px solid var(--accent);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  pointer-events: none;
  clip-path: inset(0 50% 100% 50%);
  animation: footer-top-half-pulse 4.4s cubic-bezier(.45, 0, .55, 1) infinite both;
  will-change: clip-path, opacity, filter;
}
@keyframes footer-bottom-half-pulse {
  0%, 100% {
    clip-path: inset(100% 50% 0 50%);
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(255, 93, 24, 0));
  }
  4%, 96% { opacity: 1; }
  27.27%, 72.73% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(255, 93, 24, .78));
  }
}
@keyframes footer-top-half-pulse {
  0%, 100% {
    clip-path: inset(0 50% 100% 50%);
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(255, 93, 24, 0));
  }
  4%, 96% { opacity: 1; }
  27.27%, 72.73% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(255, 93, 24, .78));
  }
}
.footer-pills-secondary .glass-pill:nth-child(5)::before,
.footer-pills-secondary .glass-pill:nth-child(5)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 36px;
  height: 74%;
  pointer-events: none;
  opacity: .28;
  animation: footer-end-glow 2.8s ease-in-out infinite;
  will-change: opacity, transform;
}
.footer-pills-secondary .glass-pill:nth-child(5) {
  border-left-color: var(--accent);
  border-right-color: var(--accent);
}
.footer-pills-secondary .glass-pill:nth-child(5)::before {
  left: -36px;
  transform-origin: right center;
  background: radial-gradient(ellipse at 100% 50%, rgba(255, 93, 24, .82), rgba(255, 93, 24, .28) 36%, transparent 72%);
}
.footer-pills-secondary .glass-pill:nth-child(5)::after {
  content: "";
  top: -1px;
  bottom: -1px;
  right: -1px;
  width: 2px;
  height: auto;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 93, 24, .12) 42%, rgba(255, 93, 24, .44) 100%);
  border-right: 1px solid var(--accent);
  opacity: 0;
  clip-path: inset(50% 0 50% 0);
  animation: features-right-border-cap 5s cubic-bezier(.4, 0, .2, 1) infinite;
  will-change: width, clip-path, opacity, box-shadow;
}
@keyframes features-right-border-cap {
  0%, 68%, 100% {
    width: 2px;
    opacity: 0;
    clip-path: inset(50% 0 50% 0);
    box-shadow: 0 0 0 rgba(255, 93, 24, 0);
  }
  6% { opacity: 1; }
  18%, 26% {
    width: 2px;
    opacity: 1;
    clip-path: inset(0 0 0 0);
    box-shadow: 0 0 7px rgba(255, 93, 24, .72);
  }
  42%, 48% {
    width: 34px;
    opacity: 1;
    clip-path: inset(0 0 0 0);
    box-shadow:
      inset -7px 0 14px rgba(255, 93, 24, .2),
      -7px 0 18px rgba(255, 93, 24, .22);
  }
  60% {
    width: 2px;
    opacity: 1;
    clip-path: inset(0 0 0 0);
    box-shadow: 0 0 7px rgba(255, 93, 24, .72);
  }
}
@keyframes footer-end-glow {
  0%, 100% {
    opacity: .28;
    transform: translateY(-50%) scaleX(.58);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
}
.footer-pills-secondary .glass-pill:nth-child(5)::after {
  content: none;
  animation: none;
}
.footer-pills-secondary .glass-pill:nth-child(5)::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: calc(100% - 3px);
  left: auto;
  width: 74px;
  height: 28px;
  border: 0;
  border-radius: 60% 10% 10% 60%;
  clip-path: polygon(100% 16%, 100% 84%, 62% 72%, 0 50%, 62% 28%);
  background: linear-gradient(
    270deg,
    rgba(255, 249, 230, .98) 0%,
    rgba(255, 178, 92, .96) 13%,
    rgba(255, 93, 24, .9) 40%,
    rgba(255, 93, 24, .32) 70%,
    transparent 100%
  );
  filter: drop-shadow(-8px 0 8px rgba(255, 93, 24, .72));
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) scaleX(.08);
  transform-origin: right center;
  animation: features-jet-flame 8s linear infinite;
  will-change: opacity, transform, filter;
}
.footer-pills-secondary .glass-pill:nth-child(5) {
  background-image:
    linear-gradient(90deg, rgba(255, 93, 24, .34) 0%, rgba(255, 93, 24, .12) 100%),
    linear-gradient(270deg, rgba(255, 93, 24, .34) 0%, rgba(255, 93, 24, .12) 100%),
    linear-gradient(145deg,
      color-mix(in srgb, var(--text) 4%, transparent) 0%,
      color-mix(in srgb, var(--text) 1%, transparent) 100%);
  background-position: left center, right center, center;
  background-repeat: no-repeat;
  background-size: 0% 100%, 0% 100%, 100% 100%;
  animation:
    features-border-line-cap 8s cubic-bezier(.4, 0, .2, 1) infinite,
    features-jet-flight 8s linear infinite;
  will-change: background-size, box-shadow, transform, opacity;
}
@keyframes features-border-line-cap {
  0% {
    background-size: 0% 100%, 0% 100%, 100% 100%;
    border-top-color: color-mix(in srgb, var(--text) 9%, transparent);
    border-bottom-color: color-mix(in srgb, var(--text) 9%, transparent);
    border-left-color: var(--accent);
    border-right-color: var(--accent);
    box-shadow:
      0 10px 30px -10px rgba(0, 0, 0, .18),
      inset 0 1px 1px color-mix(in srgb, var(--text) 10%, transparent),
      inset 1px 0 0 rgba(255, 93, 24, .35),
      inset -1px 0 0 rgba(255, 93, 24, .35);
  }
  25%, 100% {
    background-size: 50% 100%, 50% 100%, 100% 100%;
    border-color: var(--accent);
    box-shadow:
      0 10px 30px -10px rgba(0, 0, 0, .18),
      inset 0 1px 1px color-mix(in srgb, var(--text) 10%, transparent),
      inset 28px 0 24px -22px rgba(255, 93, 24, .5),
      inset -28px 0 24px -22px rgba(255, 93, 24, .5);
  }
}
@keyframes features-jet-flight {
  0%, 25% {
    transform: translateX(0);
  }
  32% { transform: translateX(1vw); }
  40% { transform: translateX(6vw); }
  48% { transform: translateX(18vw); }
  55.9% {
    transform: translateX(calc(50vw + 72px));
  }
  55.901% {
    transform: translateX(calc(-50vw - 72px));
    animation-timing-function: cubic-bezier(.18, .65, .22, 1);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes features-jet-flame {
  0%, 25% {
    opacity: 0;
    transform: translateY(-50%) scaleX(.08);
    filter: drop-shadow(-3px 0 3px rgba(255, 93, 24, 0));
  }
  27% {
    opacity: .92;
    transform: translateY(-50%) scaleX(.72);
    filter: drop-shadow(-7px 0 7px rgba(255, 93, 24, .62));
  }
  40% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
    filter: drop-shadow(-10px 0 9px rgba(255, 93, 24, .78));
  }
  55.9% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1.34);
    filter: drop-shadow(-15px 0 12px rgba(255, 93, 24, .9));
  }
  55.901% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1.08);
    filter: drop-shadow(-11px 0 10px rgba(255, 93, 24, .82));
  }
  100% {
    opacity: .92;
    transform: translateY(-50%) scaleX(.78);
    filter: drop-shadow(-8px 0 8px rgba(255, 93, 24, .68));
  }
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.pill-icon {
  width: 46px;
  height: 46px;
  padding: 0;
}
.footer-socials .pill-icon {
  border-color: rgba(255, 93, 24, .62);
}
.footer-socials .pill-icon:hover {
  border-color: var(--accent);
}
.footer-socials .pill-icon::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 126, 68, .34) 0%,
    rgba(255, 93, 24, .16) 52%,
    rgba(255, 93, 24, .08) 100%
  );
  border: 1px solid var(--accent);
  box-shadow:
    0 12px 30px -10px rgba(255, 93, 24, .78),
    0 0 0 1px rgba(255, 93, 24, .2),
    inset 0 1px 1px rgba(255, 225, 210, .48);
}
.footer-socials .pill-icon.is-auto-social-glowing {
  animation: social-pill-lift 1s cubic-bezier(.45, 0, .55, 1);
}
.footer-socials .pill-icon.is-auto-social-glowing::before {
  animation: social-pill-auto-glow 1s cubic-bezier(.45, 0, .55, 1);
}
@keyframes social-pill-lift {
  0%, 100% { transform: translateY(0) scale(1); }
  46% { transform: translateY(-9px) scale(1.055); }
  86% { transform: translateY(0) scale(1); }
}
@keyframes social-pill-auto-glow {
  0%, 100% { opacity: 0; }
  46%, 86% { opacity: 1; }
}
.pill-icon svg { width: 17px; height: 17px; }
.pill-icon svg .dot { fill: currentColor; stroke: none; }

/* alt bar */
.footer-bottombar {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(22px, 4.5vw, 52px) 30px;
}
.footer-copy {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  order: 2;
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 5.625px;
  color: var(--muted);
  font-size: 5.625px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  order: 1;
}
.footer-credit-mark {
  display: inline-flex;
  align-items: center;
  padding: 4.375px 6.875px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  background: #070707;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.footer-credit:hover .footer-credit-mark {
  transform: translateY(-2px);
  border-color: rgba(255, 93, 24, .48);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}
.footer-credit-mark img {
  display: block;
  width: 51.25px;
  height: auto;
}
.footer-love {
  padding: 12px 22px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: default;
  order: 1;
}
.footer-love b {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer-love .heart {
  font-style: normal;
  font-size: 14px;
  color: var(--accent);
  animation: footer-heartbeat 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
@keyframes footer-heartbeat {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px color-mix(in srgb, var(--accent) 50%, transparent)); }
  15%, 45% { transform: scale(1.25); filter: drop-shadow(0 0 11px color-mix(in srgb, var(--accent) 85%, transparent)); }
  30% { transform: scale(1); }
}
.footer-top {
  width: 48px;
  height: 48px;
  padding: 0;
  order: 3;
}
.footer-top svg {
  transition: transform 0.3s ease;
}
.footer-top:hover svg { transform: translateY(-4px); }

/* perde açılış sahnesi — gizli durum yalnızca JS sahneyi kurduğunda (scene-armed) uygulanır */
.footer-heading,
.footer-pills,
.footer-socials,
.footer-bottombar {
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.footer-pills-primary { transition-delay: 0.08s; }
.footer-pills-secondary { transition-delay: 0.16s; }
.footer-socials { transition-delay: 0.24s; }
.footer-bottombar { transition-delay: 0.3s; }
.scene-armed:not(.stage-open) .footer-heading,
.scene-armed:not(.stage-open) .footer-pills,
.scene-armed:not(.stage-open) .footer-socials,
.scene-armed:not(.stage-open) .footer-bottombar {
  opacity: 0;
  transform: translateY(46px);
}

@media (max-width: 700px) {
  .uc-title-qr {
    top: 8%;
    right: 5%;
    width: min(43%, 165px);
  }
  .uc-title h3 {
    max-width: 48%;
    font-size: 36px;
  }

  .faq-copy h2 { text-align: center; }
  .faq-copy > .pill {
    display: flex;
    width: max-content;
    margin-inline: auto;
  }

  .footer-pills-secondary {
    width: 100%;
    display: grid;
    grid-template-columns: 1.45fr 1.1fr .62fr .72fr;
    gap: 10px 5px;
  }
  .footer-pills-secondary .pill-sm {
    width: 100%;
    min-width: 0;
    padding: 10px 6px;
    font-size: clamp(9px, 2.45vw, 11px);
    white-space: nowrap;
  }
  .footer-pills-secondary .pill-sm:nth-child(5) {
    width: max-content;
    grid-column: 1 / -1;
    justify-self: center;
    padding-inline: 23px;
  }

  .uc-valiz h4,
  .uc-valiz p {
    max-width: 54%;
  }
  .uc-valiz .uc-suitcase {
    right: -2%;
    width: 40%;
  }
  .uc-pet h4,
  .uc-pet p {
    max-width: 42%;
  }
  .uc-pet .uc-dog {
    right: -10%;
    bottom: -14%;
    width: 62%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .feature-card {
    min-width: 0;
    padding: 18px 14px 20px;
    border-radius: 19px;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    padding: 9px;
    margin-bottom: 14px;
    border-radius: 12px;
  }
  .feature-card h3 {
    font-size: clamp(13px, 3.75vw, 16px);
    line-height: 1.3;
  }
  .feature-card p {
    margin-top: 9px;
    font-size: clamp(10.5px, 2.75vw, 12px);
    line-height: 1.52;
  }

  .footer-marquee { top: 34px; padding: 11px 0; }
  .footer-center { padding-top: 90px; gap: 20px; }
  .pill-lg { padding: 16px 26px; font-size: 14px; }
  .footer-bottombar { justify-content: center; text-align: center; }
  .footer-giant {
    bottom: -1vh;
    width: 106vw;
  }
}

/* ==========================================================================
   Responsive — tablet ve üstü
   ========================================================================== */

@media (min-width: 700px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-grid { grid-template-columns: 1fr 1fr; }
  .uc-cell { min-height: 380px; }
  .hero-title { font-size: clamp(48px, 7vw, 64px); }
}

@media (min-width: 1024px) {
  .site-header { padding: 22px 0; }
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .main-nav { display: flex; justify-self: center; }
  .menu-toggle { display: none; }

  .hero {
    flex-direction: row;
    align-items: stretch;
    min-height: 100vh;
    padding-top: 0;
  }
  .hero-visual {
    flex: 1.06;
    min-height: 100vh;
  }
  .hero-glow { inset: -12% auto auto -16%; width: 120%; height: 124%; }
  .qr-tag { width: clamp(360px, 33vw, 460px); }
  .hero-copy {
    flex: 1;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    padding: 90px clamp(30px, 5vw, 90px) 60px 10px;
  }
  .hero-title {
    font-size: clamp(44px, 4.6vw, 62px);
    margin-top: 30px;
  }
  .hero-lede { margin-top: 24px; }

  .features { padding-top: 92px; }
  .features-intro {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 0;
    margin-bottom: 108px;
  }
  .features-intro-copy { flex: none; }
  .cube-stage {
    flex: 0 0 auto;
    width: min(40vw, 440px);
    max-width: 440px;
  }
  .qr-cube { --s: min(17vw, 218px); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }

  .show-main {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    min-height: 540px;
  }

  .faq { padding-top: 150px; }
  .faq-head {
    display: block;
  }
  .faq-copy { flex: none; }
}

@media (min-width: 1440px) {
  .hero-title { font-size: 66px; }
}

/* ==========================================================================
   Hareket azaltma
   ========================================================================== */

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