/* ==========================================================================
   Vuqqa Landing Page - Main Stylesheet (2026 Modern Standard)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Brand-Matched Custom Scrollbar (Chrome, Edge, Safari, Firefox)
   -------------------------------------------------------------------------- */
html {
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 #F1F5F9;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 9999px;
  border: 2px solid #F1F5F9;
  transition: background-color 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #0A6CFF;
}

::-webkit-scrollbar-thumb:active {
  background: #0050D8;
}

/* --------------------------------------------------------------------------
   Container & General Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-badge.light {
  color: rgba(255, 255, 255, 0.9);
}

.section-title {
  font-size: clamp(2.1rem, 3.8vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--color-white);
}

.section-desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.82);
}

/* --------------------------------------------------------------------------
   Checklists
   -------------------------------------------------------------------------- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink);
}

.check-item.light {
  color: var(--color-white);
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(10, 108, 255, 0.35);
}

.check-icon svg {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}

/* --------------------------------------------------------------------------
   Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(10, 108, 255, 0.3);
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 108, 255, 0.4);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

/* App Download Badges */
.app-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #050B1B;
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.app-badge-btn:hover {
  background-color: #0E172F;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: var(--color-white);
}

.app-badge-btn svg {
  width: 22px;
  height: 22px;
}

.app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.app-badge-sub {
  font-size: 0.65rem;
  color: #A0AEC0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-badge-main {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 220, 227, 0.6);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(8, 26, 75, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.header-logo:hover {
  opacity: 0.9;
}

.header-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.header-logo-icon img,
.header-logo-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  border-radius: 9px;
}

.header-logo-icon svg {
  width: 20px;
  height: 20px;
}

.header-logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: -0.03em;
}

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-ink);
  position: relative;
  transition: color var(--transition-fast);
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Selector Dropdown */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink);
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  background: var(--color-user-tint);
  border-color: var(--color-outline);
}

.lang-btn svg.pin-icon {
  width: 15px;
  height: 15px;
  color: var(--color-ink);
}

.lang-btn svg.chevron-icon {
  width: 13px;
  height: 13px;
  transition: transform var(--transition-fast);
}

.lang-selector.open .lang-btn svg.chevron-icon {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  min-width: 140px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
}

.lang-selector.open .lang-dropdown {
  display: flex;
  animation: fadeInDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lang-option:hover {
  background: var(--color-user-tint);
}

.lang-option.active {
  color: var(--color-primary);
  font-weight: 700;
  background: var(--color-user-tint);
}

.lang-option svg {
  width: 14px;
  height: 14px;
}

/* Hamburger for Mobile */
.hamburger-btn {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background-color: var(--color-ink);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  padding: 32px 24px;
  display: none;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  overflow-y: auto;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav-link:hover {
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Hero Section (Dark Slate Moody Style matching reference)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 640px;
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 60px;
  background: url('../photos/slider-bg.png') no-repeat right center / cover;
  background-color: #243342;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, #243342 0%, rgba(36, 51, 66, 0.96) 50%, rgba(36, 51, 66, 0.65) 75%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 32px;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-title-accent {
  color: #5BA4FF;
  display: inline;
}

.hero-desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stats .stat-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.hero-stats .stat-icon svg {
  width: 24px;
  height: 24px;
}

.hero-stats .stat-info {
  display: flex;
  flex-direction: column;
}

.hero-stats .stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.hero-stats .stat-label {
  font-size: 0.78125rem;
  color: #94A3B8;
}

/* Hero Right Side - Turkey Map Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 240px;
  height: auto;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.55));
  animation: heroFloat 5s ease-in-out infinite alternate;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-8px);
  }
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
  image-rendering: auto;
  image-rendering: high-quality;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-mockup-wrap:hover .hero-mockup-img {
  transform: translateY(-4px) scale(1.02);
}

/* Hero Floating Annotation Note */
.floating-note {
  position: absolute;
  top: 95px;
  left: calc(100% + 18px);
  right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  z-index: 5;
}

@media (max-width: 1200px) {
  .floating-note {
    top: 85px;
    left: calc(100% + 10px);
    right: auto;
    transform: scale(0.85);
    transform-origin: top left;
  }
}

@media (max-width: 1050px) {
  .floating-note {
    display: none;
  }
}

.note-text {
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  text-align: left;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transform: rotate(-3deg);
  display: inline-block;
}

.note-text.white {
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.note-text.blue {
  color: var(--color-primary);
}

.note-arrow {
  width: 145px;
  height: 52px;
  margin-top: 4px;
  margin-left: -20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
}

/* --------------------------------------------------------------------------
   Category Bar Section
/* --------------------------------------------------------------------------
   3. Category Bar (Pill design with active gradient and circular icons)
   -------------------------------------------------------------------------- */
.category-bar-wrapper {
  position: relative;
  z-index: 20;
  margin-top: -38px;
  margin-bottom: 28px;
}

.category-bar {
  background: var(--color-white);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 9999px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 14px 40px rgba(10, 108, 255, 0.09), 0 4px 14px rgba(8, 26, 75, 0.04);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  gap: 6px;
}

.category-bar::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 14px 7px;
  border-radius: 9999px;
  background: transparent;
  color: var(--color-ink);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: max-content;
  box-sizing: border-box;
  user-select: none;
}

.category-item:not(.active):hover {
  background: #EEF5FF;
  color: var(--color-blue);
  transform: translateY(-1px);
}

.category-item:not(.active):hover .category-icon {
  background: #D9E8FF;
  color: var(--color-blue);
}

.category-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E293B;
  margin-bottom: 5px;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
}

.category-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.category-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: inherit;
  text-align: center;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.category-arrow {
  display: none;
}

/* Active State (Horizontal Gradient Pill) */
.category-item.active {
  flex-direction: row;
  background: linear-gradient(135deg, #1C74FF 0%, #0056EB 100%);
  color: #FFFFFF;
  border-radius: 9999px;
  padding: 7px 14px 7px 8px;
  gap: 8px;
  box-shadow: 0 8px 22px rgba(10, 108, 255, 0.38);
  transform: translateY(-1px);
}

.category-item.active .category-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  margin-bottom: 0;
}

.category-item.active .category-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
}

.category-item.active .category-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
  flex-shrink: 0;
  margin-left: 2px;
}

.category-item.active .category-arrow svg {
  width: 12px;
  height: 12px;
  stroke: #FFFFFF;
}

/* --------------------------------------------------------------------------
   4. Nasıl Çalışır? (How It Works)
   -------------------------------------------------------------------------- */
.how-it-works-section {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px 0;
}

/* Decorative Side Bubbles / Shapes */
.how-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.how-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

.how-shape-left {
  left: 0;
}

.how-shape-right {
  right: 0;
}

.how-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 52px;
}

/* Left Content Column */
.how-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.how-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.how-badge-line {
  width: 85px;
  height: 2px;
  background: #93C5FD;
  border-radius: 2px;
}

.how-content .section-title {
  font-size: 2.75rem;
  line-height: 1.15;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}

.how-content .section-title .dot-accent {
  color: var(--color-primary);
}

.how-content .section-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #64748B;
  max-width: 440px;
  margin-bottom: 0;
}

.how-cta-wrap {
  margin-top: 28px;
  margin-bottom: 24px;
}

/* 3 Trust Badges */
.how-trust-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.how-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 9999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.how-trust-badge:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  transform: translateY(-1px);
}

.how-trust-badge svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Bottom-Left Handwritten Note */
.how-note-left {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 4px;
}

.how-handwriting {
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #94A3B8;
  line-height: 1.15;
}

.how-underline-svg {
  width: 140px;
  height: 14px;
  margin-top: 3px;
}

/* Right Steps Area */
.how-steps-area {
  position: relative;
  padding: 110px 15px 95px 15px;
}

/* Floating Photo Cards */
.how-floating-card {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 16px 36px rgba(15, 23, 42, 0.12));
}

.how-float-img {
  display: block;
  border-radius: 22px;
  border: 3.5px solid #FFFFFF;
  background: #FFFFFF;
}

.how-float-cafe {
  top: -55px;
  right: -32px;
  transform: rotate(4deg);
  width: 220px;
}

.how-float-cafe .how-float-img {
  width: 220px;
  height: auto;
}

.how-float-food {
  bottom: -60px;
  left: -140px;
  transform: rotate(-6deg);
  width: 170px;
}

.how-float-food .how-float-img {
  width: 170px;
  height: auto;
}

/* Floating Pill Tags on Photo Cards */
.how-float-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 9999px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  font-size: 0.78rem;
  font-weight: 600;
  color: #1E293B;
  white-space: nowrap;
  pointer-events: none;
  z-index: 4;
}

.how-tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Gentle Floating Animation for Pill Tags */
@keyframes floatTagCafe {
  0% {
    transform: translateY(0) rotate(-4deg);
  }

  100% {
    transform: translateY(-6px) rotate(-4deg);
  }
}

@keyframes floatTagFood {
  0% {
    transform: translateY(0) rotate(6deg);
  }

  100% {
    transform: translateY(6px) rotate(6deg);
  }
}

.tag-cafe {
  top: 32px;
  left: -44px;
  transform: rotate(-4deg);
  animation: floatTagCafe 3.2s ease-in-out infinite alternate;
  will-change: transform;
}

.tag-cafe .how-tag-icon {
  background: #EBF3FE;
}

.tag-food {
  top: -14px;
  right: -12px;
  transform: rotate(6deg);
  animation: floatTagFood 3.8s ease-in-out infinite alternate;
  animation-delay: 0.4s;
  will-change: transform;
}

.tag-food .how-tag-icon {
  background: #FEE2E2;
}

/* 3 Steps Row */
.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  position: relative;
  transition: transform var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-card-box {
  position: relative;
  width: 145px;
  height: 145px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.step-card-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 27px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}

.step-card:hover .step-card-box {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.10);
  border-color: #CBD5E1;
}

.step-card-circle {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 0.9375rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 2.5px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.step-circle-blue {
  background: #EBF3FE;
  color: #0A6CFF;
}

.step-circle-green {
  background: #DCFCE7;
  color: #10B981;
}

.step-circle-orange {
  background: #FFEDD5;
  color: #F97316;
}

.step-card-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.step-card:hover .step-card-icon {
  transform: scale(1.08);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.step-desc {
  font-size: 0.84rem;
  line-height: 1.5;
  color: #64748B;
  max-width: 160px;
  margin: 0 auto;
}

/* Connector Arrow Between Cards */
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 48px;
  width: 68px;
}

.step-connector-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Bottom-Right Handwritten Note */
.how-note-right {
  position: absolute;
  bottom: -45px;
  right: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  z-index: 2;
}

.how-curved-arrow {
  width: 44px;
  height: 48px;
  flex-shrink: 0;
}

.how-note-right .how-handwriting {
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 700;
  color: #93C5FD;
}

/* --------------------------------------------------------------------------
   Vuqqa Uygulaması (App Showcase - 3 Phones)
   -------------------------------------------------------------------------- */
.showcase-section {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.showcase-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.showcase-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

.showcase-shape-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  height: 280px;
}

.showcase-shape-right {
  right: 0;
  bottom: 0;
  top: auto;
  width: 160px;
  height: 320px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.showcase-download-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 28px;
}

.showcase-install-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.showcase-qr-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-qr-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.showcase-qr-text {
  font-size: 0.78125rem;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.35;
}

.showcase-store-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.showcase-store-badges .app-badge-btn {
  padding: 8px 14px;
  border-radius: 10px;
}

.showcase-phones-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 0;
  width: 100%;
}

/* Desktop 3-column Clustered Layout (> 991px) */
.showcase-card-deck {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 155px));
  gap: 0px;
  align-items: flex-end;
  width: 100%;
  max-width: 465px;
  margin-left: 0;
  margin-right: auto;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  width: 100%;
}

.showcase-card-phone {
  height: 385px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  overflow: visible;
  position: relative;
}

.showcase-phone-mockup {
  height: 360px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  margin-bottom: 16px;
  filter: drop-shadow(0 18px 28px rgba(8, 26, 75, 0.16));
  transition: transform var(--transition-normal);
  image-rendering: auto;
  image-rendering: high-quality;
}

/* Card 1: Map - Tilted counter-clockwise, shifts right into Card 2 */
.showcase-card[data-index="0"] {
  z-index: 2;
}

.showcase-card[data-index="0"] .showcase-phone-mockup {
  transform: scale(1.08) rotate(-3.8deg) translateX(14px);
  transform-origin: 50% 100%;
}

.showcase-card[data-index="0"]:hover .showcase-phone-mockup {
  transform: scale(1.08) rotate(-3.8deg) translateX(14px) translateY(-8px);
}

/* Card 2: Favorites - Upright in the center */
.showcase-card[data-index="1"] {
  z-index: 1;
}

.showcase-card[data-index="1"] .showcase-phone-mockup {
  transform: scale(1.08) rotate(0deg);
}

.showcase-card[data-index="1"]:hover .showcase-phone-mockup {
  transform: scale(1.08) rotate(0deg) translateY(-8px);
}

/* Card 3: Detail - Upright, overlapping Card 2 slightly, in front */
.showcase-card[data-index="2"] {
  z-index: 3;
}

.showcase-card[data-index="2"] .showcase-phone-mockup {
  transform: scale(0.96) rotate(0deg) translateX(-14px);
}

.showcase-card[data-index="2"]:hover .showcase-phone-mockup {
  transform: scale(0.96) rotate(0deg) translateX(-14px) translateY(-8px);
}

.showcase-card-text {
  width: 100%;
  padding: 0 4px;
}

.showcase-phone-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 4px;
  line-height: 1.25;
}

.showcase-phone-desc {
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.35;
  max-width: 145px;
  margin: 0 auto;
}

/* Mobile & Tablet Deck Controls (hidden on desktop) */
.deck-controls,
.deck-swipe-hint {
  display: none;
}

/* Handwritten Floating Note */
.showcase-note {
  position: absolute;
  top: 40px;
  left: 455px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  z-index: 10;
  width: 190px;
}

.showcase-note .note-text {
  font-family: 'Caveat', 'Segoe Print', cursive, sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.12;
  text-align: left;
  color: #0070F3;
  letter-spacing: -0.01em;
  transform: rotate(-3deg);
  white-space: nowrap;
}

.showcase-note .note-arrow {
  width: 85px;
  height: 48px;
  margin-top: 6px;
  margin-left: 5px;
}

/* --------------------------------------------------------------------------
   Vuqqa Kullanıcılarına Özel Fırsatlar (Exclusive Deals)
   -------------------------------------------------------------------------- */
.deals-section {
  background: var(--color-white);
}

.deals-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(8, 26, 75, 0.22);
  background-color: #0b1528;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
  transition: background-image 0.4s ease-in-out;
}

.deals-card.lazy-bg-loaded {
  background-image: url('../photos/firsat-mc-bg/firsat-bg-tr.jpg');
}

.deals-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 42, 0.94) 0%, rgba(8, 20, 42, 0.84) 42%, rgba(8, 20, 42, 0.35) 60%, rgba(8, 20, 42, 0) 80%);
  pointer-events: none;
  z-index: 1;
}

.deals-content {
  padding: 56px 48px;
  max-width: 540px;
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   İşletmeler İçin (For Businesses)
   -------------------------------------------------------------------------- */
.business-section {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.business-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 44px;
}

.business-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.business-badge {
  color: #0066FF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-badge-line {
  width: 26px;
  height: 2px;
  background: #0066FF;
  border-radius: 2px;
  display: inline-block;
}

.business-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
  color: #0F172A;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.business-title-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.business-title-stroke {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 10px;
  pointer-events: none;
  z-index: 0;
}

.business-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #64748B;
  margin-bottom: 28px;
  max-width: 540px;
}

/* 5 Feature Cards Grid */
.business-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.business-feature-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.business-feature-card:hover {
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.business-feature-card.card-span-full {
  grid-column: 1 / -1;
}

.card-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-box svg {
  width: 20px;
  height: 20px;
}

.card-icon-box.icon-blue {
  background: #EFF6FF;
  color: #2563EB;
}

.card-icon-box.icon-orange {
  background: #FFF7ED;
  color: #EA580C;
}

.card-icon-box.icon-green {
  background: #F0FDF4;
  color: #16A34A;
}

.card-icon-box.icon-purple {
  background: #FAF5FF;
  color: #9333EA;
}

.card-icon-box.icon-red {
  background: #FEF2F2;
  color: #EF4444;
}

.card-text-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
  margin: 0;
}

.card-desc {
  font-size: 12px;
  color: #64748B;
  line-height: 1.35;
  margin: 0;
}

.card-arrow {
  margin-left: auto;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.card-arrow svg {
  width: 15px;
  height: 15px;
}

.business-feature-card:hover .card-arrow {
  color: #0066FF;
  transform: translateX(3px);
}

/* CTA Row */
.business-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 6px;
}

.business-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0066FF;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 9999px;
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.32);
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.business-cta-btn:hover {
  background: #0052CC;
  box-shadow: 0 14px 30px rgba(0, 102, 255, 0.42);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.business-cta-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.business-cta-btn:hover svg {
  transform: translateX(3px);
}

.business-cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.cta-note-arrow {
  width: 50px;
  height: 30px;
  flex-shrink: 0;
}

.cta-note-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.cta-note-text {
  font-family: 'Caveat', 'Segoe Print', cursive, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #475569;
  line-height: 1.12;
  white-space: nowrap;
}

.cta-note-stroke {
  width: 42px;
  height: 6px;
  margin-top: 1px;
}

/* Right Visual Area */
.business-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px 10px 40px;
  margin: 0 auto;
}

.business-blob-top {
  position: absolute;
  top: -15px;
  left: calc(50% - 220px);
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(219, 234, 254, 0.85) 0%, rgba(224, 237, 255, 0.4) 65%, transparent 80%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(12px);
}

.business-blob-bottom {
  position: absolute;
  bottom: -15px;
  right: calc(50% - 220px);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(224, 237, 255, 0.8) 0%, rgba(239, 246, 255, 0.3) 65%, transparent 80%);
  border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
  filter: blur(16px);
}

.business-dashed-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 108%;
  height: 108%;
  z-index: 1;
  pointer-events: none;
}

.business-photo-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  max-width: 340px;
  width: 100%;
  aspect-ratio: 1 / 1;
  z-index: 2;
}

.business-photo-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  border-radius: 28px;
  object-fit: cover;
}

/* Floating Metric Cards */
@keyframes floatStatTop {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-7px) rotate(0.4deg);
  }
}

@keyframes floatStatBottom {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(7px) rotate(-0.4deg);
  }
}

.business-metric-card {
  position: absolute;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.business-metric-card:hover {
  animation-play-state: paused;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.business-metric-card.metric-top-right {
  top: 10%;
  left: calc(50% + 50px);
  right: auto;
  animation: floatStatTop 4s ease-in-out infinite;
}

.business-metric-card.metric-bottom-left {
  bottom: 12%;
  right: calc(50% + 40px);
  left: auto;
  animation: floatStatBottom 4.6s ease-in-out infinite 0.8s;
}

.business-metric-card .metric-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.business-metric-card .metric-icon-box svg {
  width: 18px;
  height: 18px;
}

.business-metric-card .metric-icon-box.icon-blue {
  background: #EFF6FF;
  color: #2563EB;
}

.business-metric-card .metric-icon-box.icon-orange {
  background: #FFF7ED;
  color: #EA580C;
}

.business-metric-card .metric-text-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.business-metric-card .metric-title {
  font-size: 11px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  white-space: nowrap;
}

.business-metric-card .metric-value {
  font-size: 14px;
  font-weight: 800;
  color: #16A34A;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.metric-arrow-svg {
  width: 13px;
  height: 13px;
  stroke: #16A34A;
}

/* Corner Note */
.business-corner-note {
  position: absolute;
  bottom: -8px;
  left: calc(50% + 175px);
  right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
  pointer-events: none;
  user-select: none;
  transform: rotate(-3deg);
}

.corner-note-arrow {
  width: 44px;
  height: 36px;
  margin-left: -4px;
  margin-bottom: 2px;
}

.corner-note-text {
  font-family: 'Caveat', 'Segoe Print', cursive, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #475569;
  line-height: 1.18;
  text-align: left;
  white-space: nowrap;
}

/* Blur Leaf Accent */
.business-leaf-blur {
  position: absolute;
  bottom: 25px;
  left: calc(50% + 100px);
  right: auto;
  width: 65px;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(101, 163, 13, 0.45) 0%, rgba(34, 197, 94, 0.25) 45%, transparent 75%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(-25deg);
  filter: blur(14px);
  z-index: 3;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Güçlü Sonuçlar (Dashboard & Management)
   -------------------------------------------------------------------------- */
.results-section {
  background: #F8FAFD;
}

.results-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.results-phones-wrapper {
  position: relative;
  width: 100%;
}

/* Desktop 2-column Grid (> 991px) */
.results-card-deck {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: flex-end;
  width: 100%;
}

.results-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.results-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 108, 255, 0.08);
  color: var(--color-blue);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(10, 108, 255, 0.06);
}

.results-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
  display: inline-block;
}

.results-card-phone {
  height: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

.results-phone-mockup {
  height: 435px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  margin-bottom: 16px;
  filter: drop-shadow(0 22px 36px rgba(8, 26, 75, 0.16));
  transition: transform var(--transition-normal);
  image-rendering: auto;
  image-rendering: high-quality;
}

.results-card:hover .results-phone-mockup {
  transform: translateY(-8px);
}

.results-card-text {
  width: 100%;
}

.results-phone-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.results-phone-desc {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* Tablet & Mobile Controls (hidden on desktop) */
.results-deck-controls,
.results-swipe-hint {
  display: none;
}

/* --------------------------------------------------------------------------
   Türkiye'nin Dört Bir Yanında (Cities Carousel)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Türkiye'nin Dört Bir Yanında (Cities Carousel)
   -------------------------------------------------------------------------- */
.cities-section {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cities-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 32px;
}

.cities-header-left {
  max-width: 540px;
}

.cities-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cities-badge {
  color: #0066FF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cities-badge-line {
  width: 26px;
  height: 2px;
  background: #0066FF;
  border-radius: 2px;
  display: inline-block;
}

.cities-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.18;
  color: #0F172A;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cities-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 20px;
  max-width: 500px;
}

.cities-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #0066FF;
  transition: gap 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.cities-link:hover {
  gap: 12px;
  color: #0052CC;
}

/* Header Right: Map, Cursive Note, Wave & Controls */
.cities-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  width: 100%;
}

.cities-map-visual {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 440px;
  min-height: 130px;
  margin-bottom: 10px;
}

.cities-map-container {
  position: relative;
  width: 235px;
  height: 125px;
  flex-shrink: 0;
}

.cities-turkey-map {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.95;
  filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.06));
}

/* Map Location Pins */
.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.map-pin .pin-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0066FF;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 102, 255, 0.45);
  display: block;
  z-index: 2;
  transition: transform 0.2s ease;
}

.map-pin .pin-large {
  width: 13px;
  height: 13px;
  box-shadow: 0 3px 8px rgba(0, 102, 255, 0.6);
}

.map-pin.pin-istanbul {
  top: 22%;
  left: 24%;
}

.map-pin.pin-izmir {
  top: 58%;
  left: 16%;
}

.map-pin.pin-ankara {
  top: 46%;
  left: 45%;
}

.map-pin.pin-antalya {
  top: 78%;
  left: 32%;
}

.map-pin.pin-east {
  top: 50%;
  left: 82%;
}

/* Map Cursive Note & Wave Flourish */
.cities-map-note-box {
  position: relative;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.cities-map-note {
  font-family: 'Caveat', 'Segoe Print', cursive, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #334155;
  line-height: 1.15;
  text-align: left;
  white-space: nowrap;
  transform: rotate(-3deg);
  margin-bottom: -2px;
}

.cities-wave-flourish {
  width: 170px;
  height: 48px;
  margin-top: -8px;
  margin-left: -35px;
  pointer-events: none;
}

/* Header Carousel Controls */
.cities-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}

.carousel-btn:hover {
  border-color: #0066FF;
  color: #0066FF;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.15);
  transform: translateY(-2px);
}

.carousel-btn svg {
  width: 17px;
  height: 17px;
}

/* Carousel Track & Cards */
.cities-carousel-wrap {
  position: relative;
  width: 100%;
}

.cities-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 22px;
  scroll-snap-type: x mandatory;
}

.cities-carousel::-webkit-scrollbar {
  display: none;
}

.city-card {
  position: relative;
  flex: 0 0 255px;
  width: 255px;
  height: 275px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  background-color: #0B1320;
  scroll-snap-align: start;
  user-select: none;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.15);
}

.city-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  z-index: 1;
}

.city-card:hover .city-card-bg {
  transform: scale(1.06);
}

/* 6. Special Turkey Map Showcase Card (Panoramic All-Turkey Finale) */
.city-card.city-card-map {
  flex: 0 0 460px;
  width: 460px;
  height: 275px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  background-color: #0B1320;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.city-card.city-card-map .city-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  z-index: 1;
}

.city-card.city-card-map:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.15);
}

.city-card.city-card-map:hover .city-card-bg {
  transform: scale(1.06);
}

/* Glassmorphic Pill Badge (Top Left) */
.city-pill-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  padding: 5px 11px;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.pill-pin-icon {
  width: 12px;
  height: 12px;
  stroke: #FFFFFF;
  flex-shrink: 0;
}

/* Bottom Card Overlay with Title and Action Button */
.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.2) 40%, rgba(11, 19, 32, 0.88) 82%, rgba(11, 19, 32, 0.96) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 16px 18px;
  z-index: 2;
  color: #FFFFFF;
}

.city-text-box {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.city-name {
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.city-count {
  font-size: 13px;
  font-weight: 500;
  color: #E2E8F0;
  line-height: 1.2;
  opacity: 0.95;
}

/* Circular Action Button (Bottom Right) */
.city-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.city-action-btn svg {
  width: 16px;
  height: 16px;
  stroke: #FFFFFF;
  transition: transform 0.2s ease;
}

.city-card:hover .city-action-btn {
  background: #0066FF;
  border-color: #0066FF;
  transform: scale(1.06);
}

.city-card:hover .city-action-btn svg {
  transform: translateX(2px);
}

/* Unified Carousel Footer: Progress Bar & Controls */
.cities-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 0 4px;
  width: 100%;
}

.cities-progress-container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cities-progress-track {
  width: 150px;
  height: 4px;
  background: #E2E8F0;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
}

.cities-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: #0066FF;
  border-radius: 9999px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cities-progress-count {
  font-size: 13.5px;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.cities-current-idx {
  color: #0066FF;
  font-weight: 800;
}

.cities-dot.active {
  width: 20px;
  border-radius: 9999px;
  background: #0066FF;
}

/* --------------------------------------------------------------------------
   Footer Section (Istanbul Night Skyline & Wave Header)
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background-color: #061327;
  background-image: url('../photos/footer_istanbul_bg.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  color: #FFFFFF;
  padding-top: 0;
  padding-bottom: 34px;
  overflow: hidden;
  margin-top: auto;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 1;
}

/* Top Wave Transition SVG */
.footer-wave-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: 28px;
}

.footer-wave-svg {
  display: block;
  width: 100%;
  height: 70px;
  border: none;
  outline: none;
}

.footer-container {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 36px;
  gap: 32px;
  flex-wrap: wrap;
}

/* Brand & Slogan */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
}

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

.footer-logo-card {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  overflow: hidden;
}

.footer-logo-card img,
.footer-logo-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  border-radius: 11px;
}

.footer-logo-svg {
  width: 30px;
  height: 30px;
}

.footer-logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.footer-slogan {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #94A3B8;
  font-weight: 500;
}

/* Center Store Badges */
.footer-app-badges {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #050B1B;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 8px 16px;
  color: #FFFFFF;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-badge-btn:hover {
  background-color: #0E172F;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.footer-badge-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-badge-sub {
  font-size: 0.6875rem;
  color: #94A3B8;
  line-height: 1.2;
}

.footer-badge-main {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

/* Right Social Links */
.footer-social-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-social-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-circle-btn:hover {
  background: #0066FF;
  border-color: #0066FF;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35);
}

.social-circle-btn svg {
  width: 17px;
  height: 17px;
}

/* Bottom Row: Copyright & Legal Links */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: #94A3B8;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  margin: 0;
  color: #94A3B8;
  font-weight: 400;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-link-item {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link-item:hover {
  color: #FFFFFF;
}

.footer-pipe {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  user-select: none;
}

/* --------------------------------------------------------------------------
   Floating Bottom Navigation Dock (Mobile & Tablet)
   -------------------------------------------------------------------------- */
.floating-bottom-dock {
  display: none;
  /* Hidden on Desktop (> 1024px) */
  position: fixed;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: linear-gradient(135deg, #0066FF 0%, #0050D8 100%);
  border-radius: 9999px;
  padding: 8px 18px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 34px rgba(0, 102, 255, 0.42), 0 4px 16px rgba(6, 19, 39, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  user-select: none;
  -webkit-user-select: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  position: relative;
  transition: all 0.22s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.dock-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.dock-label {
  display: none;
  /* Clean icon-driven design matching reference */
}

.dock-item:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
}

.dock-item:active {
  transform: scale(0.92);
}

.dock-item.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.dock-item.active .dock-icon {
  transform: scale(1.08);
}

/* Center Highlight: White circular QR / Download action button */
.dock-item-highlight {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 4px;
}

.dock-highlight-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0066FF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20), 0 0 14px rgba(255, 255, 255, 0.45);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dock-icon-highlight {
  width: 24px;
  height: 24px;
  color: #0066FF;
  stroke: #0066FF;
  transition: transform 0.2s ease;
}

.dock-item-highlight:hover .dock-highlight-circle {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24), 0 0 18px rgba(255, 255, 255, 0.6);
}

.dock-item-highlight:active .dock-highlight-circle {
  transform: scale(0.94);
}

.dock-item-highlight.active .dock-highlight-circle {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6), 0 6px 22px rgba(0, 0, 0, 0.28);
}

/* --------------------------------------------------------------------------
   Scroll Up / Back to Top Button
   -------------------------------------------------------------------------- */
.scroll-up-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A6CFF 0%, #0050D8 100%);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(10, 108, 255, 0.40), 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9980;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.28s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.scroll-up-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-up-btn:hover {
  background: linear-gradient(135deg, #0052CC 0%, #003EAA 100%);
  box-shadow: 0 12px 30px rgba(10, 108, 255, 0.55);
  transform: translateY(-3px) scale(1.06);
}

.scroll-up-btn:active {
  transform: translateY(-1px) scale(0.94);
}

.scroll-up-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95), 0 0 0 6px #0A6CFF;
}

.scroll-up-btn svg {
  width: 22px;
  height: 22px;
  stroke: #FFFFFF;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s ease;
}

.scroll-up-btn:hover svg {
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Section Layout & Zero Layout Shift
   -------------------------------------------------------------------------- */
.virtual-section {
  position: relative;
}

.virtual-section-placeholder {
  display: none;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .floating-bottom-dock {
    display: flex;
  }

  /* Scroll-up button positioning avoiding dock & floating TOC */
  .scroll-up-btn {
    right: 18px;
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    width: 42px;
    height: 42px;
  }

  .scroll-up-btn svg {
    width: 20px;
    height: 20px;
  }

  body:has(.legal-page-main) .scroll-up-btn,
  .legal-page-main~.scroll-up-btn {
    bottom: calc(148px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer {
    padding-bottom: calc(130px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .footer-links {
    justify-content: center !important;
  }

  .header-nav {
    display: none !important;
  }

  .header-actions .btn-primary {
    display: none !important;
  }

  .hamburger-btn {
    display: none !important;
  }

  .mobile-drawer {
    display: none !important;
  }

  .hero-section {
    background-position: 75% center;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 50px;
  }

  .hero-section::before {
    width: 100%;
    background: linear-gradient(90deg, rgba(36, 51, 66, 0.98) 0%, rgba(36, 51, 66, 0.92) 55%, rgba(36, 51, 66, 0.65) 80%, rgba(36, 51, 66, 0.35) 100%);
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
    text-align: left;
  }

  .hero-title {
    font-size: 2.15rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-section .app-badges {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
  }

  .hero-section .app-badge-btn {
    padding: 9px 14px;
    min-width: 140px;
  }

  .hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    margin-top: 22px;
    padding-top: 16px;
    flex-wrap: nowrap;
  }

  .hero-mockup-wrap {
    max-width: 260px;
    height: auto;
  }

  .how-it-works-section {
    padding: 70px 0;
  }

  .how-shape {
    width: 90px;
    opacity: 0.85;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .how-content {
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .how-badge-wrapper {
    justify-content: center;
  }

  .how-trust-badges {
    justify-content: center;
  }

  .how-note-left {
    align-items: center;
    margin: 0 auto;
  }

  .how-steps-area {
    max-width: 680px;
    margin: 0 auto;
    padding: 75px 15px 70px 15px;
    width: 100%;
  }

  .steps-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .step-card-box {
    width: 125px;
    height: 125px;
    border-radius: 24px;
    margin-bottom: 14px;
  }

  .step-card-circle {
    top: -10px;
    left: -10px;
    width: 38px;
    height: 38px;
    font-size: 0.8125rem;
  }

  .step-connector {
    margin-top: 36px;
    width: 44px;
  }

  .step-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 0.8125rem;
    max-width: 150px;
  }

  .how-float-cafe {
    width: 140px;
    top: -38px;
    right: -5px;
  }

  .how-float-cafe .how-float-img {
    width: 140px;
  }

  .tag-cafe {
    top: 20px;
    left: -26px;
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  .tag-cafe .how-tag-icon {
    width: 18px;
    height: 18px;
  }

  .how-float-food {
    width: 125px;
    bottom: -45px;
    left: -15px;
  }

  .how-float-food .how-float-img {
    width: 125px;
  }

  .tag-food {
    top: -10px;
    right: -8px;
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  .tag-food .how-tag-icon {
    width: 18px;
    height: 18px;
  }

  .how-note-right {
    bottom: -36px;
    right: 25px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .showcase-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .showcase-shape-left {
    width: 75px;
    height: 180px;
    top: 40%;
    opacity: 0.75;
  }

  .showcase-shape-right {
    width: 90px;
    height: 220px;
    bottom: 0;
    opacity: 0.75;
  }

  .showcase-download-area {
    align-items: center;
    justify-content: center;
  }

  .showcase-install-wrap {
    justify-content: center;
  }

  .showcase-qr-box {
    display: none;
  }

  .showcase-store-badges {
    flex-direction: row;
    gap: 12px;
  }

  .showcase-phones-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    padding-right: 0;
  }

  /* 3D Stacked Deck Carousel on Tablet & Mobile */
  .showcase-card-deck {
    display: block;
    position: relative;
    width: 320px;
    max-width: 86vw;
    height: 520px;
    margin: 0 auto;
    perspective: 1200px;
  }

  .showcase-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: 24px;
    padding: 22px 18px 18px;
    border: 1px solid rgba(10, 108, 255, 0.12);
    box-shadow: 0 16px 36px rgba(8, 26, 75, 0.12), 0 4px 12px rgba(8, 26, 75, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    transform-origin: 50% 100%;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.45s ease, box-shadow 0.45s ease;
    will-change: transform, opacity;
  }

  .showcase-card:active {
    cursor: grabbing;
  }

  /* Card 3D Stack positions */
  .showcase-card.is-active {
    z-index: 10;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .showcase-card.is-next {
    z-index: 5;
    transform: translate3d(14px, 14px, -30px) rotate(2.5deg) scale(0.93);
    opacity: 0.78;
    pointer-events: none;
  }

  .showcase-card.is-prev {
    z-index: 2;
    transform: translate3d(28px, 28px, -60px) rotate(5deg) scale(0.86);
    opacity: 0.5;
    pointer-events: none;
  }

  .showcase-card.swiping-left {
    transform: translate3d(-140%, 0, 0) rotate(-22deg) scale(0.9) !important;
    opacity: 0 !important;
  }

  .showcase-card.swiping-right {
    transform: translate3d(140%, 0, 0) rotate(22deg) scale(0.9) !important;
    opacity: 0 !important;
  }

  .showcase-card-phone {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
  }

  .showcase-card-phone .showcase-phone-mockup {
    height: 310px;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    margin-bottom: 0;
    filter: drop-shadow(0 12px 20px rgba(8, 26, 75, 0.14));
  }

  .showcase-card-text {
    flex-shrink: 0;
    margin-top: 10px;
    width: 100%;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .showcase-card:not(.is-active) .showcase-card-text {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .showcase-card.is-active .showcase-card-text {
    opacity: 1;
    visibility: visible;
  }

  .showcase-phone-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 3px;
  }

  .showcase-phone-desc {
    font-size: 0.78125rem;
    color: var(--color-muted);
    line-height: 1.35;
  }

  /* Deck Controls */
  .deck-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 18px auto 0;
    width: 100%;
    z-index: 20;
  }

  .deck-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-white);
    border: 1.5px solid var(--color-outline);
    color: var(--color-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
    transition: all var(--transition-fast);
  }

  .deck-arrow-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: scale(1.06);
  }

  .deck-arrow-btn svg {
    width: 18px;
    height: 18px;
  }

  .deck-dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .deck-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: #CBD5E1;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
  }

  .deck-dot.active {
    width: 26px;
    background: var(--color-primary);
    border-radius: 6px;
  }

  .deck-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 10px auto 0;
    width: 100%;
    opacity: 0.85;
  }

  .hint-hand-icon {
    width: 16px;
    height: 16px;
    animation: swipeHintPulse 2s ease-in-out infinite;
  }

  @keyframes swipeHintPulse {

    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(-6px);
    }
  }

  .deals-card {
    min-height: 440px;
    background-position: 80% center;
  }

  .business-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .business-content {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }

  .business-visual-wrap {
    padding: 20px 10px 26px;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .business-photo-card {
    max-width: 320px;
    aspect-ratio: 1 / 1;
  }

  .business-metric-card.metric-top-right {
    top: 6%;
    left: calc(50% + 45px);
    right: auto;
  }

  .business-metric-card.metric-bottom-left {
    bottom: 4%;
    right: calc(50% + 35px);
    left: auto;
  }

  .business-corner-note {
    left: calc(50% + 155px);
    right: auto;
    bottom: -6px;
  }

  .business-leaf-blur {
    left: calc(50% + 95px);
    right: auto;
    bottom: 25px;
  }

  /* On Tablet (768px - 991px), elegant 2-column layout: 3D Card Deck on Left, Content on Right */
  .results-grid {
    grid-template-columns: 330px 1fr;
    gap: 32px;
    align-items: center;
  }

  .results-grid .results-phones-wrapper {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 0;
  }

  .results-grid .results-content {
    order: 2;
  }

  /* 3D Stacked Deck Carousel on Tablet & Mobile */
  .results-card-deck {
    display: block;
    position: relative;
    width: 320px;
    max-width: 86vw;
    height: 520px;
    margin: 0 auto;
    perspective: 1200px;
  }

  .results-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: 24px;
    padding: 20px 18px 18px;
    border: 1px solid rgba(10, 108, 255, 0.14);
    box-shadow: 0 16px 36px rgba(8, 26, 75, 0.10), 0 4px 12px rgba(8, 26, 75, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    transform-origin: 50% 100%;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.45s ease, box-shadow 0.45s ease;
    will-change: transform, opacity;
  }

  .results-card:active {
    cursor: grabbing;
  }

  .results-card-badge {
    flex-shrink: 0;
    margin-bottom: 8px;
  }

  /* 2-Card 3D Stack Positions */
  .results-card.is-active {
    z-index: 10;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .results-card.is-next {
    z-index: 5;
    transform: translate3d(14px, 14px, -30px) rotate(3deg) scale(0.93);
    opacity: 0.82;
    pointer-events: none;
  }

  .results-card.is-prev {
    z-index: 5;
    transform: translate3d(-14px, 14px, -30px) rotate(-3deg) scale(0.93);
    opacity: 0.82;
    pointer-events: none;
  }

  .results-card.swiping-left {
    transform: translate3d(-140%, 0, 0) rotate(-22deg) scale(0.9) !important;
    opacity: 0 !important;
  }

  .results-card.swiping-right {
    transform: translate3d(140%, 0, 0) rotate(22deg) scale(0.9) !important;
    opacity: 0 !important;
  }

  .results-card-phone {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
  }

  .results-card-phone .results-phone-mockup {
    height: 300px;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    margin-bottom: 0;
    filter: drop-shadow(0 12px 20px rgba(8, 26, 75, 0.14));
  }

  .results-card-text {
    flex-shrink: 0;
    margin-top: 10px;
    width: 100%;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .results-card:not(.is-active) .results-card-text {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .results-card.is-active .results-card-text {
    opacity: 1;
    visibility: visible;
  }

  .results-phone-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 3px;
  }

  .results-phone-desc {
    font-size: 0.78125rem;
    color: var(--color-muted);
    line-height: 1.35;
  }

  .results-deck-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    z-index: 20;
  }

  .results-swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-blue);
    opacity: 0.85;
    animation: pulseHint 2.4s ease-in-out infinite;
  }

  .cities-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 24px;
  }

  .cities-header-left {
    max-width: 100%;
  }

  .cities-header-right {
    display: none !important;
  }

  .city-card {
    flex: 0 0 240px;
    width: 240px;
    height: 265px;
  }

  .city-card.city-card-map {
    flex: 0 0 445px;
    width: 445px;
    height: 265px;
    max-width: 85vw;
    border-radius: 20px;
    overflow: hidden;
  }

  .floating-note,
  .showcase-note,
  .business-note {
    display: none;
  }

  .category-bar-wrapper {
    margin-top: -28px;
  }

  .category-bar {
    border-radius: 9999px;
    padding: 8px 12px;
    gap: 6px;
    justify-content: flex-start;
  }

  .category-item {
    padding: 6px 12px;
    flex: 0 0 auto;
    min-width: max-content;
  }

  .category-name {
    font-size: 0.72rem;
  }

  .footer-wave-wrap {
    margin-bottom: 24px;
  }

  .footer-wave-svg {
    height: 66px;
  }

  .footer-top {
    gap: 24px;
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .header-nav {
    display: none;
  }

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

  .hamburger-btn {
    display: none !important;
  }

  .mobile-drawer {
    display: none !important;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 60px;
    background-position: center bottom;
  }

  .hero-section::before {
    width: 100%;
    background: linear-gradient(180deg, rgba(36, 51, 66, 0.98) 0%, rgba(36, 51, 66, 0.94) 60%, rgba(36, 51, 66, 0.5) 100%);
  }

  .business-title {
    font-size: 34px;
  }

  .business-cta-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6.5vw, 2.15rem);
    line-height: 1.18;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 18px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .app-badges {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
  }

  .hero-section .app-badge-btn {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 8px 10px !important;
    border-radius: 10px !important;
    gap: 8px !important;
    justify-content: center !important;
  }

  .hero-section .app-badge-btn svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
  }

  .hero-section .app-badge-sub {
    font-size: 0.625rem !important;
  }

  .hero-section .app-badge-main {
    font-size: 0.8125rem !important;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    justify-content: center !important;
    gap: 6px !important;
    margin-top: 16px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .hero-stats .stat-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 3px !important;
  }

  .hero-stats .stat-icon {
    width: 22px !important;
    height: 22px !important;
    margin-bottom: 2px !important;
  }

  .hero-stats .stat-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .hero-stats .stat-number {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
  }

  .hero-stats .stat-label {
    font-size: 0.68rem !important;
  }

  .hero-visual {
    margin-top: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-mockup-wrap {
    width: 100%;
    max-width: 245px;
    height: auto;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.5));
  }

  @media (max-width: 380px) {
    .hero-section {
      padding-top: calc(var(--header-height) + 10px) !important;
      padding-bottom: 50px !important;
    }

    .hero-badge {
      margin-bottom: 8px !important;
      font-size: 0.7rem !important;
    }

    .hero-title {
      font-size: 1.62rem !important;
      margin-bottom: 8px !important;
    }

    .hero-desc {
      font-size: 0.8125rem !important;
      line-height: 1.4 !important;
      margin-bottom: 14px !important;
    }

    .hero-section .app-badges {
      gap: 6px !important;
    }

    .hero-section .app-badge-btn {
      padding: 6px 8px !important;
      gap: 6px !important;
    }

    .hero-stats {
      margin-top: 12px !important;
      padding-top: 10px !important;
      gap: 4px !important;
    }

    .hero-stats .stat-icon {
      width: 20px !important;
      height: 20px !important;
    }

    .hero-stats .stat-number {
      font-size: 0.875rem !important;
    }

    .hero-stats .stat-label {
      font-size: 0.625rem !important;
    }

    .hero-visual {
      margin-top: 12px !important;
    }

    .hero-mockup-wrap {
      max-width: 215px !important;
      height: auto !important;
    }
  }


  .showcase-download-area {
    justify-content: center;
  }

  .deals-card {
    min-height: 460px;
    background-position: 80% center;
  }

  .deals-card::before {
    background: linear-gradient(180deg, rgba(8, 20, 42, 0.94) 0%, rgba(8, 20, 42, 0.88) 55%, rgba(8, 20, 42, 0.45) 100%);
  }

  .deals-content {
    padding: 44px 28px;
    max-width: 100%;
  }



  .cities-title {
    font-size: 32px;
  }

  .site-footer {
    background-position: 80% center;
    background-size: cover;
    padding-bottom: calc(130px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .site-footer::before {
    background: linear-gradient(90deg, rgba(6, 19, 39, 0.92) 0%, rgba(6, 19, 39, 0.68) 50%, rgba(6, 19, 39, 0.20) 100%);
  }

  .footer-wave-wrap {
    margin-bottom: 22px;
  }

  .footer-wave-svg {
    height: 62px;
  }

  .footer-top {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding-bottom: 26px !important;
    width: 100% !important;
  }

  .footer-brand {
    flex: 0 0 auto !important;
    max-width: 240px !important;
    gap: 8px !important;
  }

  .footer-logo {
    gap: 10px;
  }

  .footer-logo-card {
    width: 42px;
    height: 42px;
  }

  .footer-logo-svg {
    width: 26px;
    height: 26px;
  }

  .footer-logo-text {
    font-size: 1.55rem;
  }

  .footer-slogan {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .footer-app-badges {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    width: auto !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
  }

  .footer-badge-btn {
    padding: 8px 14px !important;
    width: auto !important;
    gap: 9px !important;
    border-radius: 10px !important;
  }

  .footer-badge-icon {
    width: 22px !important;
    height: 22px !important;
  }

  .footer-badge-sub {
    font-size: 0.65rem !important;
    white-space: nowrap !important;
  }

  .footer-badge-main {
    font-size: 0.88rem !important;
    white-space: nowrap !important;
  }

  .footer-social-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 8px !important;
    flex: 0 0 auto !important;
    width: auto !important;
    margin: 0 !important;
  }

  .footer-social-title {
    font-size: 0.85rem !important;
  }

  .footer-social-icons {
    display: flex !important;
    gap: 8px !important;
  }

  .social-circle-btn {
    width: 36px !important;
    height: 36px !important;
  }

  .social-circle-btn svg {
    width: 15px !important;
    height: 15px !important;
  }

  .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding-top: 18px !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .footer-copyright {
    font-size: 0.78rem !important;
    white-space: normal !important;
    line-height: 1.45 !important;
    text-align: center !important;
    order: 2;
  }

  .footer-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    order: 1;
  }

  .footer-link-item {
    font-size: 0.78rem !important;
    white-space: nowrap !important;
  }

  .footer-pipe {
    margin: 0 2px !important;
    font-size: 0.72rem !important;
  }
}

@media (max-width: 680px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .results-grid .results-phones-wrapper {
    order: 2;
    margin-top: 10px;
  }

  .results-grid .results-content {
    order: 1;
  }

  .how-it-works-section {
    padding: 64px 0 72px 0;
  }

  .how-shape {
    width: 40px;
    opacity: 0.4;
  }

  .how-grid {
    gap: 36px;
  }

  .how-content .section-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .how-trust-badges {
    justify-content: center;
    gap: 8px;
  }

  .how-trust-badge {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .how-note-left {
    align-items: center;
    text-align: center;
    margin: 4px auto 0 auto;
  }

  .how-steps-area {
    padding: 35px 10px 45px 10px;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: visible;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .step-card {
    width: 100%;
    max-width: 260px;
  }

  .step-card-box {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
    border-radius: 24px;
  }

  .step-card-circle {
    top: -8px;
    left: -8px;
    width: 36px;
    height: 36px;
    font-size: 0.78rem;
  }

  .step-connector {
    margin: 6px 0;
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
  }

  .step-desc {
    max-width: 220px;
  }

  .how-float-cafe {
    width: 90px;
    top: 20px;
    right: 4px;
    opacity: 0.95;
  }

  .how-float-cafe .how-float-img {
    width: 90px;
  }

  @keyframes floatTagCafeMob {
    0% {
      transform: translateY(0) rotate(2deg);
    }

    100% {
      transform: translateY(-4px) rotate(2deg);
    }
  }

  @keyframes floatTagFoodMob {
    0% {
      transform: translateY(0) rotate(-2deg);
    }

    100% {
      transform: translateY(4px) rotate(-2deg);
    }
  }

  .tag-cafe {
    top: -10px;
    right: 2px;
    left: auto;
    padding: 2px 7px;
    font-size: 0.58rem;
    gap: 4px;
    transform: rotate(2deg);
    animation: floatTagCafeMob 3s ease-in-out infinite alternate;
  }

  .tag-cafe .how-tag-icon {
    width: 13px;
    height: 13px;
  }

  .tag-cafe .how-tag-icon svg {
    width: 8px;
    height: 8px;
  }

  .how-float-food {
    width: 86px;
    bottom: 65px;
    left: 4px;
    opacity: 0.95;
  }

  .how-float-food .how-float-img {
    width: 86px;
  }

  .tag-food {
    top: -10px;
    left: 2px;
    right: auto;
    padding: 2px 7px;
    font-size: 0.58rem;
    gap: 4px;
    transform: rotate(-2deg);
    animation: floatTagFoodMob 3.5s ease-in-out infinite alternate;
    animation-delay: 0.3s;
  }

  .tag-food .how-tag-icon {
    width: 13px;
    height: 13px;
  }

  .tag-food .how-tag-icon svg {
    width: 8px;
    height: 8px;
  }

  .how-note-right {
    position: static;
    margin-top: 28px;
    justify-content: flex-end;
    padding-right: 20px;
  }

  .how-curved-arrow {
    transform: rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner {
    width: 100%;
  }

  .header-logo {
    flex-shrink: 0;
  }

  .header-logo-text {
    font-size: 1.25rem;
  }

  .header-actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .lang-btn {
    padding: 5px 8px;
    font-size: 0.8125rem;
    flex-shrink: 0;
  }

  .hamburger-btn {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .section-padding {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    width: 100%;
    margin-top: 16px !important;
    padding-top: 12px !important;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 3px;
  }

  .stat-number {
    font-size: 0.95rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .deals-content {
    padding: 36px 20px;
  }

  .app-badges:not(.hero-section .app-badges) {
    width: 100%;
    flex-direction: column;
  }

  .app-badge-btn:not(.hero-section .app-badge-btn) {
    width: 100%;
    justify-content: center;
  }

  .showcase-shape-left {
    width: 35px;
    height: 140px;
    top: 45%;
    opacity: 0.45;
  }

  .showcase-shape-right {
    width: 45px;
    height: 160px;
    bottom: 0;
    opacity: 0.45;
  }

  .showcase-download-area {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .showcase-store-badges {
    width: 100%;
  }

  .showcase-phones-wrapper {
    align-items: center;
    width: 100%;
    margin-top: 18px;
    padding-bottom: 16px;
  }

  .showcase-card-deck {
    width: 290px;
    max-width: calc(100vw - 44px);
    height: 480px;
    margin: 0 auto;
  }

  .deck-controls {
    margin: 18px auto 0;
    width: 100%;
    justify-content: center;
    position: relative;
    z-index: 20;
  }

  .deck-swipe-hint {
    margin: 10px auto 0;
    width: 100%;
    justify-content: center;
    position: relative;
    z-index: 20;
  }

  .showcase-card {
    padding: 16px 14px 14px;
    border-radius: 20px;
  }

  .showcase-card-phone .showcase-phone-mockup {
    height: 285px;
    max-height: 100%;
  }

  .showcase-card-text {
    margin-top: 8px;
  }

  .showcase-phone-title {
    font-size: 0.95rem;
    margin-bottom: 2px;
  }

  .showcase-phone-desc {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .results-grid .results-phones-wrapper {
    padding-bottom: 16px;
  }

  .results-card-deck {
    width: 290px;
    max-width: calc(100vw - 44px);
    height: 480px;
    margin: 0 auto;
  }

  .results-card {
    padding: 16px 14px 14px;
    border-radius: 20px;
  }

  .results-card-badge {
    margin-bottom: 6px;
    padding: 3px 10px;
    font-size: 0.65rem;
  }

  .results-card-phone .results-phone-mockup {
    height: 270px;
    max-height: 100%;
  }

  .results-card-text {
    margin-top: 8px;
  }

  .results-phone-title {
    font-size: 0.95rem;
    margin-bottom: 2px;
  }

  .results-phone-desc {
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .btn-primary {
    width: 100%;
  }

  .category-bar-wrapper {
    margin-top: -20px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .category-bar {
    border-radius: 9999px;
    padding: 6px 8px;
    gap: 4px;
    justify-content: flex-start;
  }

  .category-item {
    padding: 5px 10px 6px;
    flex: 0 0 auto;
    min-width: max-content;
  }

  .category-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
  }

  .category-icon svg {
    width: 15px;
    height: 15px;
  }

  .category-name {
    font-size: 0.6875rem;
  }

  .category-item.active {
    padding: 5px 12px 5px 6px;
    gap: 6px;
  }

  .category-item.active .category-icon {
    width: 28px;
    height: 28px;
  }

  .category-item.active .category-icon svg {
    width: 14px;
    height: 14px;
  }

  .category-item.active .category-name {
    font-size: 0.75rem;
  }

  .category-item.active .category-arrow {
    width: 18px;
    height: 18px;
  }

  .category-item.active .category-arrow svg {
    width: 10px;
    height: 10px;
  }

  /* Business Section Mobile Optimization */
  .business-title {
    font-size: 28px;
    line-height: 1.22;
  }

  .business-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .business-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .business-feature-card {
    padding: 12px 14px;
    gap: 12px;
  }

  .business-feature-card .card-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .business-feature-card .card-icon-box svg {
    width: 18px;
    height: 18px;
  }

  .business-feature-card .card-title {
    font-size: 13px;
  }

  .business-feature-card .card-desc {
    font-size: 11.5px;
  }

  .business-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .business-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .business-cta-note {
    justify-content: center;
  }

  .business-section {
    padding-bottom: 24px;
  }

  .business-visual-wrap {
    padding: 16px 0 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .business-photo-card {
    max-width: 250px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }

  .business-photo-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    object-fit: cover;
  }

  .business-dashed-line {
    width: 290px;
    height: 290px;
    max-width: 92vw;
    max-height: 92vw;
  }

  .business-blob-top {
    width: 170px;
    height: 170px;
    left: calc(50% - 145px);
    top: 0;
  }

  .business-blob-bottom {
    width: 150px;
    height: 150px;
    right: calc(50% - 145px);
    bottom: 0;
  }

  .business-metric-card {
    padding: 6px 10px;
    gap: 6px;
    border-radius: 12px;
  }

  .business-metric-card .metric-icon-box {
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }

  .business-metric-card .metric-icon-box svg {
    width: 13px;
    height: 13px;
  }

  .business-metric-card .metric-title {
    font-size: 8.5px;
  }

  .business-metric-card .metric-value {
    font-size: 11px;
  }

  .business-metric-card.metric-top-right {
    top: 8px;
    right: calc(50% - 148px);
    left: auto;
  }

  .business-metric-card.metric-bottom-left {
    bottom: 8px;
    left: calc(50% - 148px);
    right: auto;
  }

  .business-corner-note {
    right: calc(50% - 150px);
    left: auto;
    bottom: -10px;
  }

  .business-leaf-blur {
    right: calc(50% - 130px);
    left: auto;
    bottom: 15px;
  }

  .corner-note-text {
    font-size: 13.5px;
    line-height: 1.15;
  }

  .corner-note-arrow {
    width: 22px;
    height: 30px;
  }

  /* Cities Section Mobile Styling */
  .cities-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cities-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }

  .cities-badge-wrap {
    margin-bottom: 8px;
    gap: 8px;
  }

  .cities-badge {
    font-size: 11px;
  }

  .cities-badge-line {
    width: 20px;
  }

  .cities-title {
    font-size: 26px;
    line-height: 1.22;
    margin-bottom: 12px;
  }

  .cities-desc {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .cities-link {
    font-size: 14px;
  }

  .cities-header-right {
    display: none !important;
  }

  .cities-carousel-footer {
    margin-top: 18px;
    padding: 0 2px;
  }

  .cities-progress-track {
    width: 105px;
  }

  .cities-progress-count {
    font-size: 12.5px;
  }

  .cities-controls .carousel-btn {
    width: 38px;
    height: 38px;
  }

  .cities-controls .carousel-btn svg {
    width: 15px;
    height: 15px;
  }

  .cities-carousel {
    padding: 6px 2px 18px;
    gap: 14px;
  }

  .city-card {
    flex: 0 0 215px;
    width: 215px;
    height: 245px;
    border-radius: 18px;
  }

  .city-card.city-card-map {
    flex: 0 0 min(412px, calc(100vw - 32px));
    width: min(412px, calc(100vw - 32px));
    height: 245px;
    border-radius: 18px;
    overflow: hidden;
  }

  .city-pill-badge {
    top: 10px;
    left: 10px;
    padding: 4px 9px;
    font-size: 10px;
  }

  .city-card-overlay {
    padding: 12px 12px 14px;
  }

  .city-name {
    font-size: 17px;
  }

  .city-count {
    font-size: 11.5px;
  }

  .city-action-btn {
    width: 32px;
    height: 32px;
  }

  .city-action-btn svg {
    width: 14px;
    height: 14px;
  }

  /* Footer Mobile Styling */
  .site-footer {
    padding-bottom: calc(130px + env(safe-area-inset-bottom, 0px)) !important;
    background-position: 80% bottom;
    background-size: cover;
  }

  .site-footer::before {
    background: linear-gradient(180deg, rgba(6, 19, 39, 0.88) 0%, rgba(6, 19, 39, 0.72) 42%, rgba(6, 19, 39, 0.90) 100%);
  }

  .footer-wave-wrap {
    margin-bottom: 20px;
  }

  .footer-wave-svg {
    height: 50px;
  }

  .footer-top {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 20px !important;
    padding-bottom: 22px !important;
    width: 100% !important;
  }

  .footer-brand {
    grid-column: auto !important;
    grid-row: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 8px !important;
  }

  .footer-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  .footer-logo-card {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .footer-logo-svg {
    width: 26px;
    height: 26px;
  }

  .footer-logo-text {
    font-size: 1.55rem;
    font-weight: 800;
  }

  .footer-slogan {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #94A3B8;
    text-align: left;
    max-width: 100%;
    margin: 0;
  }

  .footer-app-badges {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
  }

  .footer-badge-btn {
    flex: 1 1 145px !important;
    min-width: 140px !important;
    padding: 9px 12px !important;
    border-radius: 10px !important;
    gap: 8px !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .footer-badge-icon {
    width: 22px !important;
    height: 22px !important;
    flex-shrink: 0;
  }

  .footer-badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    min-width: 0;
  }

  .footer-badge-sub {
    font-size: 0.65rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .footer-badge-main {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
  }

  .footer-social-wrap {
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: auto !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 10px !important;
    margin: 0 !important;
  }

  .footer-social-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: left;
  }

  .footer-social-icons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .social-circle-btn {
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
  }

  .social-circle-btn svg {
    width: 16px;
    height: 16px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding-top: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .footer-copyright {
    font-size: 0.78rem !important;
    color: #94A3B8 !important;
    text-align: center !important;
    margin: 0;
    order: 2;
    white-space: normal !important;
    line-height: 1.45 !important;
  }

  .footer-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    order: 1;
  }

  .footer-link-item {
    font-size: 0.78rem !important;
    color: #CBD5E1 !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .footer-pipe {
    display: inline !important;
    color: rgba(255, 255, 255, 0.22) !important;
    font-size: 0.72rem !important;
    margin: 0 2px !important;
  }

  /* Floating Bottom Navigation Dock Mobile Refinements */
  .floating-bottom-dock {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    padding: 6px 12px;
    gap: 8px;
    box-shadow: 0 10px 28px rgba(0, 102, 255, 0.45), 0 4px 14px rgba(6, 19, 39, 0.28);
  }

  .dock-item {
    width: 38px;
    height: 38px;
  }

  .dock-icon {
    width: 20px;
    height: 20px;
  }

  .dock-highlight-circle {
    width: 44px;
    height: 44px;
  }

  .dock-icon-highlight {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================================================
   Contact Page (iletisim.html) Styles
   ========================================================================== */

/* Page Wrapper & Breadcrumb */
.contact-page-main,
.legal-page-main {
  flex: 1 0 auto;
  padding-top: var(--header-height);
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  min-height: auto;
}

.breadcrumb-nav {
  padding: 16px 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(216, 220, 227, 0.6);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.breadcrumb-item a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #CBD5E1;
  user-select: none;
}

.breadcrumb-item.active {
  color: var(--color-ink);
  font-weight: 600;
}

/* Contact Hero */
.contact-hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

/* ==========================================================================
   Reference Contact Page Styles (Matches media_1789936061855.png)
   ========================================================================== */

.contact-page-wrapper {
  background-color: #FFFFFF;
  padding: 30px 0 60px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Intro */
.contact-header {
  margin-bottom: 24px;
}

.contact-subtitle-badge {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3B82F6;
  margin-bottom: 12px;
  display: block;
}

.contact-main-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.contact-main-description {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

/* Navigation Pills */
.contact-pills-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 32px;
}

.contact-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  background: #FFFFFF;
  color: #334155;
  border: 1px solid #E2E8F0;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.contact-pill-btn:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #0F172A;
}

.contact-pill-btn.active {
  background: #0A6CFF;
  border-color: #0A6CFF;
  color: #FFFFFF;
  font-weight: 600;
}

/* 3 Channel Cards (Desktop: 3 columns) */
.contact-cards-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.contact-channel-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-channel-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 8px 24px rgba(10, 108, 255, 0.08);
  transform: translateY(-2px);
}

.channel-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EBF3FF;
  color: #0A6CFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.channel-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.channel-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.channel-card-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.channel-card-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0A6CFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: color 0.2s ease;
}

.channel-card-link:hover {
  color: #0052CC;
  text-decoration: underline;
}

/* Open Content Columns (No Boxes / Clean Typography) */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
  margin-bottom: 40px;
  padding-top: 44px;
  border-top: 1px solid #E2E8F0;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.section-block-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3B82F6;
  margin-bottom: 8px;
  display: block;
}

.section-block-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.company-address-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 20px 0;
}

.company-address-text .company-name-bold {
  font-weight: 700;
  color: #0F172A;
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.company-contact-links {
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.company-contact-links a {
  color: #0A6CFF;
  font-weight: 600;
  text-decoration: none;
}

.company-contact-links a:hover {
  text-decoration: underline;
}

/* Destek Konuları List */
.topics-intro-text {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 14px;
  line-height: 1.5;
}

.topics-bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.topics-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #334155;
}

.topics-bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #3B82F6;
  flex-shrink: 0;
}

/* Security & Notice Blocks inside Column 3 */
.contact-notices-container {
  display: flex;
  flex-direction: column;
}

.contact-notice-block {
  margin-bottom: 0;
}

.contact-notice-block.notice-block-secondary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed #E2E8F0;
}

.notice-block-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.notice-block-text {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* Bottom Divider & Note (Removed redundant line above footer) */
.contact-bottom-divider {
  display: none !important;
}

.contact-company-copyright {
  display: none !important;
}

/* Responsive adjustments */
/* Tablet (768px - 1024px): 3 Columns, balanced spacing, no empty right side */
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-page-wrapper {
    padding: 24px 0 24px;
  }

  .contact-container {
    padding: 0 24px;
  }

  .contact-cards-stack {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    margin-bottom: 24px;
  }

  .contact-channel-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .channel-card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }

  .channel-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .channel-card-title {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .channel-card-desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .channel-card-link {
    font-size: 0.875rem;
  }

  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-top: 32px;
    margin-bottom: 24px;
    padding-top: 28px;
  }

  .section-block-badge {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .section-block-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }

  .company-address-text {
    font-size: 0.84rem;
    line-height: 1.55;
    margin: 0 0 14px 0;
  }

  .company-address-text .company-name-bold {
    font-size: 0.875rem;
    margin-bottom: 4px;
  }

  .company-contact-links {
    font-size: 0.8125rem;
    gap: 4px;
  }

  .topics-intro-text {
    font-size: 0.8125rem;
    margin-bottom: 10px;
  }

  .topics-bullet-list {
    gap: 8px;
  }

  .topics-bullet-item {
    font-size: 0.8125rem;
    gap: 8px;
  }

  .contact-notice-block.notice-block-secondary {
    margin-top: 18px;
    padding-top: 16px;
  }

  .notice-block-title {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .notice-block-text {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 4px;
  }

  .contact-bottom-divider {
    margin: 24px 0 14px;
  }

  .contact-company-copyright {
    margin-bottom: 0;
  }
}

/* Mobile (<= 767px): 1 Column Clean Flow */
@media (max-width: 767px) {
  .contact-page-wrapper {
    padding: 20px 0 24px;
  }

  .contact-container {
    padding: 0 16px;
  }

  .contact-cards-stack {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
    padding-top: 24px;
    margin-bottom: 24px;
  }

  .contact-channel-card {
    padding: 20px 18px;
  }

  .contact-main-heading {
    font-size: 1.85rem;
  }

  .section-block-title {
    font-size: 1.2rem;
  }

  .contact-bottom-divider {
    margin: 24px 0 14px;
  }

  .contact-company-copyright {
    margin-bottom: 0;
  }
}

/* ==========================================================================
   Legal & Privacy Policy Page Styles (gizlilik-politikasi.html)
   ========================================================================== */

.legal-page-wrapper {
  background-color: #FFFFFF;
  padding: 30px 0 80px;
}

.legal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Intro (Consistent with iletisim.html) */
.legal-header {
  margin-bottom: 24px;
}

.legal-subtitle-badge {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3B82F6;
  margin-bottom: 12px;
  display: block;
}

.legal-main-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal-main-description {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  max-width: 820px;
}

/* 2-Column Grid Layout: Sticky TOC Sidebar + Main Content */
.legal-layout-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sticky Sidebar & Table of Contents Card */
.legal-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  z-index: 20;
}

.legal-toc-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 14px 20px 18px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 120px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.legal-toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E2E8F0;
  flex-shrink: 0;
}

.legal-toc-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0F172A;
}

.legal-toc-title-wrap svg {
  width: 18px;
  height: 18px;
  color: #0A6CFF;
  flex-shrink: 0;
}

.legal-toc-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-toc-title svg {
  width: 18px;
  height: 18px;
  color: #0A6CFF;
}

.legal-toc-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0A6CFF;
  background: rgba(10, 108, 255, 0.08);
  padding: 2px 8px;
  border-radius: 9999px;
  flex-shrink: 0;
}

.legal-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 6px;
}

/* Custom subtle scrollbar for TOC */
.legal-toc-list::-webkit-scrollbar {
  width: 5px;
}

.legal-toc-list::-webkit-scrollbar-track {
  background: transparent;
}

.legal-toc-list::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

.legal-toc-list::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

.legal-toc-link {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: #475569;
  text-decoration: none;
  line-height: 1.4;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.legal-toc-link:hover {
  color: #0A6CFF;
  background: #FFFFFF;
}

.legal-toc-link.active {
  color: #0A6CFF;
  font-weight: 700;
  background: #FFFFFF;
  border-left-color: #0A6CFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.legal-toc-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94A3B8;
  min-width: 18px;
  flex-shrink: 0;
}

.legal-toc-link.active .legal-toc-num {
  color: #0A6CFF;
}

/* Main Content Column */
.legal-content-body {
  min-width: 0;
}

.legal-section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid #F1F5F9;
  scroll-margin-top: 110px;
}

.legal-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 24px;
}

.legal-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.legal-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(10, 108, 255, 0.08);
  color: #0A6CFF;
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-p {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-p:last-child {
  margin-bottom: 0;
}

.legal-p b,
.legal-p strong {
  font-weight: 700;
  color: #0F172A;
}

.legal-subheading {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 18px 0 10px;
}

.legal-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
}

.legal-ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #0A6CFF;
}

.legal-ul li b,
.legal-ul li strong {
  font-weight: 700;
  color: #0F172A;
}

/* Callout Note Box (e.g. in Section 4) */
.legal-callout-note {
  background: #F0F7FF;
  border: 1px solid #BAE6FD;
  border-left: 4px solid #0A6CFF;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 18px 0;
}

.legal-callout-note .legal-p {
  color: #1E3A8A;
  margin-bottom: 0;
}

.legal-callout-note b {
  color: #0A6CFF;
}

/* Address Block */
.legal-address-box {
  font-style: normal;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px 22px;
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.65;
  margin: 16px 0;
}

.legal-address-box b {
  font-weight: 700;
  color: #0F172A;
  display: block;
  margin-bottom: 4px;
}

.legal-address-box a {
  color: #0A6CFF;
  font-weight: 700;
  text-decoration: none;
}

.legal-address-box a:hover {
  text-decoration: underline;
}

.legal-link {
  color: #0A6CFF;
  font-weight: 700;
  text-decoration: none;
}

.legal-link:hover {
  text-decoration: underline;
}

.legal-bottom-copy {
  font-size: 0.8125rem;
  color: #94A3B8;
  padding-top: 24px;
  border-top: 1px solid #E2E8F0;
}

/* Mobile Quick Jump Bar (collapsible toggle for mobile) */
.legal-mobile-toc-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0F172A;
  cursor: pointer;
  margin-bottom: 24px;
  font-family: inherit;
}

.legal-mobile-toc-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.legal-mobile-toc-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Floating Mobile TOC Trigger Button (Hidden on Desktop) */
.floating-toc-btn {
  display: none;
}

/* Close button for TOC Drawer (Hidden on Desktop) */
.legal-toc-close {
  display: none;
}

/* Backdrop for Mobile Bottom Sheet */
.legal-toc-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.legal-toc-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .legal-layout-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-mobile-toc-toggle {
    display: none !important;
  }

  /* Floating TOC FAB Button on Mobile & Tablet - 100% Fully Visible */
  .floating-toc-btn {
    display: inline-flex;
    position: fixed;
    right: 16px;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    z-index: 9990;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0A6CFF 0%, #0050D8 100%);
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 28px rgba(10, 108, 255, 0.44), 0 3px 8px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.95);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.22s ease;
    user-select: none;
    -webkit-user-select: none;
    max-width: calc(100vw - 32px);
  }

  .floating-toc-btn:hover,
  .floating-toc-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 34px rgba(10, 108, 255, 0.58);
  }

  /* Docked compact state when scrolled into footer */
  .floating-toc-btn.docked-footer {
    padding: 9px 12px;
    box-shadow: 0 6px 18px rgba(10, 108, 255, 0.38);
    opacity: 0.95;
  }

  .floating-toc-btn.docked-footer .floating-toc-text {
    display: none;
  }

  /* Footer bottom clearance for legal pages on tablet & mobile */
  .legal-page-main~.site-footer,
  body:has(.legal-page-main) .site-footer {
    padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .floating-toc-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    flex-shrink: 0;
  }

  .floating-toc-text {
    white-space: nowrap;
    line-height: 1.2;
    display: inline-block;
  }

  .floating-toc-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    padding: 2px 7px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
    flex-shrink: 0;
  }

  /* Slide-up Bottom Sheet for Sidebar on Tablet & Mobile */
  .legal-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    max-height: 82vh;
    height: auto;
    z-index: 10000;
    background: transparent;
    padding: 0;
    margin: 0;
    display: block;
    transform: translateY(105%);
    transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }

  .legal-sidebar.open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .legal-toc-card {
    background: #FFFFFF;
    border-radius: 24px 24px 0 0;
    border: 1px solid #CBD5E1;
    border-bottom: none;
    box-shadow: 0 -12px 48px rgba(15, 23, 42, 0.22);
    max-height: 82vh;
    padding: 12px 20px 28px;
  }

  /* Bottom sheet drag bar handle */
  .legal-toc-card::before {
    content: "";
    display: block;
    width: 42px;
    height: 5px;
    border-radius: 9999px;
    background: #E2E8F0;
    margin: 0 auto 12px;
  }

  .legal-toc-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .legal-toc-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F1F5F9;
    border: none;
    cursor: pointer;
    color: #475569;
    transition: all 0.2s ease;
    margin-left: 12px;
  }

  .legal-toc-close:hover {
    background: #E2E8F0;
    color: #0F172A;
  }

  .legal-toc-list {
    max-height: calc(82vh - 120px);
    padding-right: 4px;
  }
}

@media (max-width: 768px) {
  .legal-page-wrapper {
    padding: 20px 0 50px;
  }

  .legal-heading {
    font-size: 1.2rem;
  }

  .legal-num {
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }

  .legal-p,
  .legal-ul li,
  .legal-address-box {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {

  .legal-page-main~.site-footer,
  body:has(.legal-page-main) .site-footer {
    padding-bottom: calc(160px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .floating-toc-btn {
    padding: 8px 14px;
    font-size: 0.8125rem;
    right: 12px;
    gap: 6px;
  }

  .floating-toc-btn.docked-footer {
    padding: 8px 10px;
    right: 12px;
  }
}

/* --------------------------------------------------------------------------
   Scroll Up Button (Floating Action Button)
   -------------------------------------------------------------------------- */
.scroll-up-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A6CFF 0%, #0050D8 100%);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 24px rgba(10, 108, 255, 0.38), 0 2px 8px rgba(15, 23, 42, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.88);
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.28s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.scroll-up-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-up-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(10, 108, 255, 0.52), 0 4px 12px rgba(15, 23, 42, 0.18);
  background: linear-gradient(135deg, #257CFF 0%, #0059E4 100%);
}

.scroll-up-btn:active {
  transform: translateY(0) scale(0.96);
  box-shadow: 0 4px 14px rgba(10, 108, 255, 0.4);
}

.scroll-up-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(10, 108, 255, 0.4), 0 8px 24px rgba(10, 108, 255, 0.38);
}

.scroll-up-btn svg {
  width: 22px;
  height: 22px;
  stroke: #FFFFFF;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.scroll-up-btn:hover svg {
  transform: translateY(-2px);
}

/* Tablet & Mobile positioning to avoid dock collision */
@media (max-width: 1024px) {
  .scroll-up-btn {
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    right: 18px;
    width: 42px;
    height: 42px;
  }

  .scroll-up-btn svg {
    width: 20px;
    height: 20px;
  }

  /* On legal pages, position above the floating TOC button */
  body:has(.legal-page-main) .scroll-up-btn,
  .legal-page-main~.scroll-up-btn {
    bottom: calc(148px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 480px) {
  .scroll-up-btn {
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    right: 14px;
    width: 40px;
    height: 40px;
  }

  body:has(.legal-page-main) .scroll-up-btn,
  .legal-page-main~.scroll-up-btn {
    bottom: calc(144px + env(safe-area-inset-bottom, 0px));
    right: 14px;
  }
}

/* --------------------------------------------------------------------------
   Virtual Section & Lazy Loading Optimization
   -------------------------------------------------------------------------- */
.virtual-section {
  position: relative;
}

.virtual-section-placeholder {
  display: none;
}

/* Native lazy-rendering for legal document blocks */
.legal-sec {
  content-visibility: auto;
  contain-intrinsic-size: auto 240px;
}

/* --------------------------------------------------------------------------
   True Lazy Loading & Image Fade-In (CoreAnimation GPU Accelerated)
   -------------------------------------------------------------------------- */
@-webkit-keyframes vqImageFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes vqImageFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.lazy-image {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lazy-image.loaded {
  opacity: 1;
  -webkit-animation: vqImageFadeIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation: vqImageFadeIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Prevent layout shifts while image is loading in its container */
.city-card {
  min-height: 240px;
}

/* --------------------------------------------------------------------------
   Scroll Reveal Keyframe Animations (CoreAnimation GPU Accelerated for iOS WebKit)
   -------------------------------------------------------------------------- */
@-webkit-keyframes vqFadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 42px, 0);
    transform: translate3d(0, 42px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes vqFadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 42px, 0);
    transform: translate3d(0, 42px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes vqFadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-42px, 0, 0);
    transform: translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes vqFadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-42px, 0, 0);
    transform: translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes vqFadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(42px, 0, 0);
    transform: translate3d(42px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes vqFadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(42px, 0, 0);
    transform: translate3d(42px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes vqFadeInScale {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.93, 0.93, 1);
    transform: scale3d(0.93, 0.93, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes vqFadeInScale {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.93, 0.93, 1);
    transform: scale3d(0.93, 0.93, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.reveal-on-scroll {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
}

.reveal-on-scroll.reveal-up.is-revealed {
  -webkit-animation: vqFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation: vqFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-on-scroll.reveal-left.is-revealed {
  -webkit-animation: vqFadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation: vqFadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-on-scroll.reveal-right.is-revealed {
  -webkit-animation: vqFadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation: vqFadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-on-scroll.reveal-scale.is-revealed {
  -webkit-animation: vqFadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation: vqFadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Stagger Delay Helpers */
.reveal-delay-1 {
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.reveal-delay-2 {
  -webkit-animation-delay: 0.22s;
  animation-delay: 0.22s;
}

.reveal-delay-3 {
  -webkit-animation-delay: 0.32s;
  animation-delay: 0.32s;
}

.reveal-delay-4 {
  -webkit-animation-delay: 0.42s;
  animation-delay: 0.42s;
}

/* --------------------------------------------------------------------------
   Vuqqa Page Preloader (Modern, Hardware-Accelerated & Fluid)
   -------------------------------------------------------------------------- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
  pointer-events: all;
  -webkit-user-select: none;
  user-select: none;
}

.page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.loader-logo-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  -webkit-animation: vqLoaderPulse 2s ease-in-out infinite;
  animation: vqLoaderPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 6px 16px rgba(10, 108, 255, 0.20));
}

.loader-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 108, 255, 0.18) 0%, rgba(10, 108, 255, 0) 70%);
  -webkit-animation: vqRingGlow 2s ease-in-out infinite;
  animation: vqRingGlow 2s ease-in-out infinite;
  z-index: 1;
}

.loader-brand-text {
  font-family: var(--font-main, 'Toroka', -apple-system, sans-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #081A4B;
  margin-top: 2px;
  background: linear-gradient(135deg, #081A4B 0%, #0A6CFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loader-progress-bar {
  width: 110px;
  height: 3px;
  background-color: #EBF3FF;
  border-radius: 99px;
  overflow: hidden;
  position: relative;
  margin-top: 4px;
}

.loader-progress-track {
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, #0A6CFF, #8B35FF);
  border-radius: 99px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: vqLoaderSlide 1.4s ease-in-out infinite;
  animation: vqLoaderSlide 1.4s ease-in-out infinite;
}

@-webkit-keyframes vqLoaderPulse {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
}

@keyframes vqLoaderPulse {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
}

@-webkit-keyframes vqRingGlow {

  0%,
  100% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 0.5;
  }

  50% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
    opacity: 1;
  }
}

@keyframes vqRingGlow {

  0%,
  100% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    opacity: 0.5;
  }

  50% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
    opacity: 1;
  }
}

@-webkit-keyframes vqLoaderSlide {
  0% {
    left: -45%;
  }

  50% {
    left: 40%;
    width: 55%;
  }

  100% {
    left: 100%;
    width: 45%;
  }
}

@keyframes vqLoaderSlide {
  0% {
    left: -45%;
  }

  50% {
    left: 40%;
    width: 55%;
  }

  100% {
    left: 100%;
    width: 45%;
  }
}