:root {
  --bg: #060816;
  --bg-soft: #0c1226;
  --bg-card: rgba(255,255,255,0.06);
  --text: #f5f7ff;
  --muted: #aeb7d0;
  --line: rgba(255,255,255,0.08);
  --primary: #6ea8fe;
  --primary-2: #8ef7ff;
  --accent: #b388ff;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 22px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(110,168,254,0.10), transparent 30%),
    radial-gradient(circle at top right, rgba(179,136,255,0.12), transparent 26%),
    linear-gradient(180deg, #050814 0%, #09111f 50%, #060816 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a {
  text-decoration: none;
  color: inherit;
}

button, input, textarea {
  font: inherit;
  outline: none;
  border: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section { padding: 110px 0; }

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--primary-2);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.35s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 12px 30px rgba(110,168,254,0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(110,168,254,0.35);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.03);
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.07);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(6, 8, 22, 0.62);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.logo-text {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  color: #dbe4ff;
  font-weight: 600;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transition: 0.3s ease;
}

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

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.mobile-toggle span {
  position: absolute;
  left: 12px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

.mobile-toggle span:first-child { top: 18px; }
.mobile-toggle span:last-child { top: 28px; }

.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 70px 0 40px;
}

.hero-left h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.hero-left h1 span {
  display: block;
  margin-top: 14px;
  background: linear-gradient(90deg, #ffffff 10%, var(--primary-2) 45%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 338px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.stat-card {
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.stat-card strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  height: 620px;
  display: flex;
  align-items: flex-start; /* değişti */
  justify-content: center;
  padding-top: 40px; /* yeni */
}
.main-screen {
  width: 100%;
  max-width: 540px;
  border-radius: 28px;
  padding: 16px;
  transform: perspective(1200px) rotateY(-10deg) rotateX(6deg);
  overflow: hidden;
  margin-top: -200px;
}

.screen-top {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.screen-content {
  padding: 30px 18px 26px;
}

.screen-badge {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary-2);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.screen-content h2 {
  font-family: "Manrope", sans-serif;
  font-size: 2.1rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.screen-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
  text-align: center;
}

.floating-panel {
  position: absolute;
  padding: 18px 20px;
  border-radius: 18px;
  max-width: 240px;
}

.floating-panel span {
  display: block;
  color: var(--primary-2);
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  font-weight: 800;
}

.panel-a {
  top: -242px;
  left: -20px;
  animation: floatY 4.5s ease-in-out infinite;
}

.panel-b {
  right: -10px;
  bottom: 195px;
  animation: floatY 5s ease-in-out infinite reverse;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.orb-1 {
  width: 380px;
  height: 380px;
  background: rgba(110,168,254,0.18);
  top: 90px;
  left: -70px;
  animation: drift 10s linear infinite alternate;
}

.orb-2 {
  width: 340px;
  height: 340px;
  background: rgba(179,136,255,0.20);
  right: -60px;
  top: 160px;
  animation: drift 9s linear infinite alternate-reverse;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 80%);
  opacity: 0.35;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Mouse gövdesi */
.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  position: relative;
}

/* İçteki scroll noktası */
.wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.6s infinite;
}

/* Animasyon */
@keyframes scrollWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}
.mouse {
  box-shadow: 0 0 12px rgba(110,168,254,0.4);
}

.brands-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

.brands-track {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #dbe4ff;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.services-grid,
.demo-grid,
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card,
.demo-card,
.result-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.35s ease;
}

.service-card:hover,
.demo-card:hover,
.result-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(110,168,254,0.25);
}

.service-number {
  font-size: 0.9rem;
  color: var(--primary-2);
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}

.service-card h3,
.demo-content h3,
.result-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.service-card p,
.demo-content p,
.result-card p {
  color: var(--muted);
  line-height: 1.8;
}

.demo-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
}

.demo-visual {
  min-height: 180px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.demo-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary-2);
  font-weight: 700;
}

.demo-visual-360 span {
  position: relative;
  z-index: 3;
  font-size: 2rem;
  font-weight: 900;
}

.ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
}

.ring-1 { width: 80px; height: 80px; animation: pulseRing 3s infinite; }
.ring-2 { width: 120px; height: 120px; animation: pulseRing 3s 0.5s infinite; }
.ring-3 { width: 160px; height: 160px; animation: pulseRing 3s 1s infinite; }

.phone-frame,
.qr-phone,
.mockup-phone {
  width: 130px;
  height: 240px;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(180deg, #11172d, #070b17);
  border: 1px solid rgba(255,255,255,0.08);
}

.phone-screen,
.qr-screen,
.mockup-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  color: #101828;
  padding: 14px;
}

.menu-header,
.qr-title {
  font-weight: 800;
  margin-bottom: 12px;
}

.menu-item,
.qr-product {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.92rem;
}

.qr-category {
  font-size: 0.86rem;
  margin-bottom: 10px;
  color: #4f46e5;
  font-weight: 700;
}

.law-screen,
.digital-card,
.mockup-window {
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
}

.law-top,
.mockup-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-bottom: 16px;
}

.digital-card span {
  display: block;
  color: var(--primary-2);
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.digital-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.digital-card p,
.law-screen p,
.mockup-content p {
  color: var(--muted);
  line-height: 1.7;
}

.sector-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.sector-tab {
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: 0.3s ease;
}

.sector-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.sector-panels {
  position: relative;
}

.sector-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  border-radius: 28px;
  padding: 30px;
}

.sector-panel.active {
  display: grid;
}

.sector-info h3,
.immersive-left h2,
.qr-content h2,
.contact-left h2,
.cta-box h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.sector-info p,
.immersive-left p,
.qr-content p,
.contact-left p,
.cta-box p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.sector-info ul,
.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.sector-info li,
.feature-list li {
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.immersive-grid,
.qr-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.panorama-card {
  border-radius: 28px;
  padding: 30px;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.panorama-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: panoramaMove 14s linear infinite;
}

.panorama-item {
  width: 220px;
  height: 220px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(110,168,254,0.18), rgba(179,136,255,0.16));
  border: 1px solid rgba(255,255,255,0.08);
}

.results-grid {
  grid-template-columns: repeat(4, 1fr);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline-item {
  padding: 28px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
  margin-bottom: 18px;
}

.timeline-item h3 {
  font-family: "Manrope", sans-serif;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.timeline-item p {
  color: var(--muted);
  line-height: 1.8;
}

.cta-box {
  border-radius: 32px;
  padding: 50px;
  text-align: center;
}

.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-point {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.contact-point strong {
  display: block;
  margin-bottom: 6px;
}

.contact-point span { color: var(--muted); }

.contact-form {
  border-radius: 28px;
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 16px;
  padding: 18px 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #96a2c2;
}

.form-btn {
  width: 100%;
  margin-top: 14px;
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo { margin-bottom: 10px; }

.footer p {
  color: var(--muted);
  max-width: 560px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #dbe4ff;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: radial-gradient(#fff 0.5px, transparent 0.5px);
  background-size: 5px 5px;
  z-index: 1;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(110,168,254,0.16), transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: transform 0.08s linear;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.floating { animation: floatY 4s ease-in-out infinite; }
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes drift {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(30px, -20px, 0); }
}

@keyframes bounceSoft {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.6; }
  70% { transform: scale(1.1); opacity: 0.1; }
  100% { transform: scale(1.2); opacity: 0; }
}

@keyframes panoramaMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-240px); }
}

@media (max-width: 1100px) {
  .hero-inner,
  .immersive-grid,
  .qr-grid,
  .contact-grid,
  .sector-panel,
  .timeline,
  .results-grid,
  .services-grid,
  .demo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .mobile-toggle { display: block; }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 30px 0px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(6, 8, 22, 0.9);
  }

  .mobile-menu.open {
    max-height: 340px;
    padding-top: 18px;
  }

  .mobile-btn { width: 100%; }

  .hero-inner,
  .services-grid,
  .demo-grid,
  .sector-panel,
  .immersive-grid,
  .qr-grid,
  .results-grid,
  .timeline,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .demo-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 50px 0 177px;
  }

  .hero-left h1 {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

  .hero-visual {
    height: 480px;
  }

    .panel-a {
        left: 152px;
        top: -59px;
    }
  .panel-b {
    right: 0;
    bottom: 30px;
  }
@media (max-width: 820px) {
  .panel-a,
  .panel-b,
  .floating-panel {
    display: none !important;
  }
}
  .main-screen {
    margin-top: -67px;
      transform: perspective(1200px) rotateY(-10deg) rotateX(6deg);
  }

  .cta-box {
    padding: 34px 24px;
  }
}
.experience-real-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.real-tour-stage {
  border-radius: 28px;
  padding: 14px;
  min-height: 640px;
  overflow: hidden;
}

.real-tour-stage iframe {
  width: 100%;
  height: 100%;
  min-height: 610px;
  border: 0;
  border-radius: 22px;
  background: #0b1020;
}

.real-tour-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.real-tour-btn {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: 0.3s ease;
}

.real-tour-btn:hover {
  transform: translateY(-2px);
}

.real-tour-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

@media (max-width: 1100px) {
  .experience-real-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .real-tour-stage {
    min-height: auto;
  }

  .real-tour-stage iframe {
    min-height: 460px;
  }
}
.experience-grid,
.qr-live-grid {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.tour-copy-card {
  height: 100%;
  padding: 30px;
  border-radius: 28px;
}

.mini-label {
  color: var(--primary-2);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: 14px;
}

.tour-copy-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.tour-copy-card p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.tour-legend {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.tour-legend span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dbe4ff;
}

.tour-legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: inline-block;
}

.tour-stage {
  border-radius: 28px;
  padding: 18px;
  min-height: 620px;
  overflow: hidden;
}

.tour-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tour-btn {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: 0.3s ease;
}

.tour-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.tour-frame {
  height: 540px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b1020;
}

.aframe-tour {
  width: 100%;
  height: 100%;
}

.qr-phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-phone-premium {
  width: 100%;
  max-width: 420px;
  min-height: 760px;
  border-radius: 36px;
}

.qr-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.qr-phone-top span {
  width: 56px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
}

.qr-phone-top strong {
  font-size: 0.85rem;
  color: #dbe4ff;
  letter-spacing: 0.08em;
}

.qr-restaurant-hero {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(110,168,254,0.18), rgba(179,136,255,0.16));
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}

.qr-restaurant-hero p {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.qr-restaurant-hero span {
  color: var(--muted);
  font-size: 0.95rem;
}

.qr-restaurant-hero button {
  background: #fff;
  color: #101828;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
}

.qr-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.qr-tab {
  flex: 1;
  min-height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.qr-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.qr-products {
  display: grid;
  gap: 14px;
}

.qr-product-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.qr-product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.qr-product-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.qr-product-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.qr-product-card strong {
  font-size: 1.05rem;
  color: var(--primary-2);
  white-space: nowrap;
}

.showroom-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.showroom-chip {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.showroom-chip.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.showroom-card {
  border-radius: 26px;
  padding: 24px;
  min-height: 300px;
  transition: 0.35s ease;
}

.showroom-card:hover {
  transform: translateY(-8px);
  border-color: rgba(110,168,254,0.25);
}

.showroom-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.showroom-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--primary-2);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.showroom-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.showroom-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.showroom-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.showroom-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: #eaf0ff;
}

@media (max-width: 1100px) {
  .experience-grid,
  .qr-live-grid,
  .showroom-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .experience-grid,
  .qr-live-grid,
  .showroom-grid {
    grid-template-columns: 1fr;
  }

  .tour-stage {
    min-height: auto;
  }

  .tour-frame {
    height: 420px;
  }

  .qr-phone-premium {
    min-height: auto;
  }
}
.qr-live-grid-pro {
  align-items: center;
}

.qr-phone-pro {
  padding: 8px;
  max-width: 430px;
  min-height: 860px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
}

.qr-device-top {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.qr-notch {
  width: 88px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}

.qr-app {
  border-radius: 32px;
  overflow: hidden;
  background: #0d1324;
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 800px;
  display: flex;
  flex-direction: column;
}

.qr-cover {
  position: relative;
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(8,12,24,0.08), rgba(8,12,24,0.68)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.qr-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(7,12,22,0.8));
}

.qr-cover-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
}

.qr-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.qr-brand-badge {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 30px rgba(110,168,254,0.3);
}

.qr-brand-row h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.qr-brand-row p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.qr-cover-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qr-cover-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(10px);
}

.qr-app-body {
  padding: 18px 16px 20px;
  flex: 1;
  background: linear-gradient(180deg, #0d1324 0%, #111a31 100%);
}

.qr-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}

.qr-search-box svg {
  width: 18px;
  height: 18px;
  fill: #9fb0d8;
  flex-shrink: 0;
}

.qr-search-box input {
  flex: 1;
  background: transparent;
  color: #fff;
  border: none;
  outline: none;
}

.qr-search-box input::placeholder {
  color: #90a0c5;
}

.qr-tabs-pro {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 18px;
  scrollbar-width: none;
}

.qr-tabs-pro::-webkit-scrollbar {
  display: none;
}

.qr-tabs-pro .qr-tab {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.qr-tabs-pro .qr-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
}

.qr-section-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.qr-section-top h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.qr-section-top p {
  color: var(--muted);
  font-size: 0.88rem;
}

.qr-count {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--primary-2);
  font-size: 12px;
  white-space: nowrap;
  font-weight: 700;
}

.pro-menu-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qr-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  transition: 0.3s ease;
}

.qr-item:hover {
  transform: translateY(-2px);
  border-color: rgba(110,168,254,0.24);
  background: rgba(255,255,255,0.065);
}

.qr-item img {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

.qr-item-content {
  flex: 1;
  min-width: 0;
}

.qr-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.qr-item-head h5 {
  font-size: 1rem;
  line-height: 1.3;
}

.qr-item-head strong {
  color: var(--primary-2);
  font-size: 0.98rem;
  white-space: nowrap;
}

.qr-item-content p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.qr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qr-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  color: #dbe4ff;
  font-size: 11px;
  font-weight: 700;
}

.qr-sticky-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
}

.qr-sticky-bar strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.qr-sticky-bar span {
  color: var(--muted);
  font-size: 0.8rem;
}

.qr-sticky-bar button {
  min-width: 120px;
  min-height: 46px;
  border-radius: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  cursor: pointer;
}

@media (max-width: 820px) {
  .qr-phone-pro {
    min-height: auto;
  }

  .qr-app {
    min-height: auto;
  }

  .qr-item {
    align-items: flex-start;
  }

  .qr-item img {
    width: 78px;
    height: 78px;
  }
}
@media (max-width: 820px) {
  .hero-stats {
    display: flex;
    flex-direction: row; /* yan yana */
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .hero-stats > div {
    flex: 1; /* eşit genişlik */
    text-align: center;
  }
  .stat-card.floating {
    width: 103px;
  }
  .stat-card{
    min-width: 104px !important;
  }
}
@media (max-width: 820px) {
  .brands-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 4px;
    scroll-snap-type: x mandatory;
  }

  .brands-track::-webkit-scrollbar {
    display: none;
  }

  .brands-track > * {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }
}
@media (max-width: 820px) {
  .brands-track > * {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 10px 16px;
  }
}
@media (max-width: 820px) {
  .brands-track > * {
    width: 155px;
    height: 70px;
  }
}
@media (max-width: 820px) {
  .brands-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 820px) {


  .btn {
    padding: 0 8px;
  }
}