:root {
  --orange: #f97316;
  --orange-light: #fb923c;
  --orange-dark: #ea580c;
  --navy: #0b1220;
  --navy-light: #1e293b;
  --navy-2: #334155;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --radius: 16px;
  --radius-lg: 24px;
}

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

a,
a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none;
}

/* Ensure all images are visible by default */
img {
  opacity: 1 !important;
  visibility: visible !important;
}

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

body {
  font-family: 'Vazirmatn', system-ui, sans-serif;
  background: 
    radial-gradient(ellipse at 100% 0%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(11, 18, 32, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #fafbfc 0%, #f8f9fa 50%, #f5f5f5 100%);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

main {
  overflow-x: clip;
  max-width: 100%;
}

/* Premium glassmorphism card base */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Floating Decorative Elements - Premium Edition */
.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* Large gradient blobs with sophisticated animations */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float-shape-premium 25s ease-in-out infinite;
  will-change: transform;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 30% 30%, var(--orange), var(--orange-light), transparent 70%);
  top: -120px;
  right: -80px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 50% 50%, var(--navy), #1e3a5f, transparent 60%);
  bottom: 5%;
  left: -150px;
  animation-delay: -8s;
}

.shape-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 40% 40%, var(--orange-light), #fdba74, transparent 65%);
  top: 35%;
  left: 8%;
  animation-delay: -16s;
}

.shape-4 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 60% 40%, #334155, var(--navy-light), transparent 55%);
  bottom: 15%;
  right: 3%;
  animation-delay: -22s;
}

@keyframes float-shape-premium {
  0%, 100% { 
    transform: translate(0, 0) scale(1) rotate(0deg); 
    opacity: 0.35;
  }
  25% { 
    transform: translate(40px, -25px) scale(1.08) rotate(3deg); 
    opacity: 0.45;
  }
  50% { 
    transform: translate(-15px, 35px) scale(0.92) rotate(-2deg); 
    opacity: 0.3;
  }
  75% { 
    transform: translate(25px, 15px) scale(1.04) rotate(2deg); 
    opacity: 0.4;
  }
}

/* Floating orbs with glow effects */
.orb {
  position: absolute;
  border-radius: 50%;
  animation: orb-float-premium 18s ease-in-out infinite;
  will-change: transform, opacity;
}

.orb-1 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, var(--orange), rgba(249, 115, 22, 0.3));
  box-shadow: 0 0 60px rgba(249, 115, 22, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2);
  top: 15%;
  right: 12%;
  animation-delay: 0s;
}

.orb-2 {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 50% 50%, var(--navy-light), rgba(15, 23, 42, 0.4));
  box-shadow: 0 0 40px rgba(15, 23, 42, 0.3);
  top: 55%;
  right: 6%;
  animation-delay: -5s;
}

.orb-3 {
  width: 100px;
  height: 100px;
  background: transparent;
  border: 3px solid var(--orange);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.3), inset 0 0 20px rgba(249, 115, 22, 0.1);
  bottom: 25%;
  left: 3%;
  animation-delay: -10s;
}

.orb-4 {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at 40% 40%, var(--orange-light), var(--orange));
  box-shadow: 0 0 50px rgba(251, 146, 60, 0.5);
  top: 8%;
  left: 15%;
  animation-delay: -14s;
}

/* Additional decorative elements */
.orb-5 {
  width: 25px;
  height: 25px;
  background: radial-gradient(circle at 50% 50%, #fff, rgba(255, 255, 255, 0.5));
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  top: 70%;
  right: 20%;
  animation-delay: -7s;
  animation: orb-pulse 4s ease-in-out infinite;
}

.orb-6 {
  width: 15px;
  height: 15px;
  background: var(--orange);
  box-shadow: 0 0 20px var(--orange);
  top: 25%;
  left: 5%;
  animation-delay: -12s;
  animation: orb-pulse 3s ease-in-out infinite;
}

@keyframes orb-float-premium {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
    opacity: 0.7;
  }
  33% { 
    transform: translateY(-40px) rotate(120deg); 
    opacity: 1;
  }
  66% { 
    transform: translateY(-20px) rotate(240deg); 
    opacity: 0.8;
  }
}

@keyframes orb-pulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 0.8;
  }
  50% { 
    transform: scale(1.3); 
    opacity: 1;
  }
}

/* Mesh + rings + sparks — لایه معلق اضافه */
.floating-mesh {
  position: absolute;
  inset: -20% -10%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(11, 18, 32, 0.06) 0%, transparent 50%),
    linear-gradient(105deg, transparent 48%, rgba(249, 115, 22, 0.04) 50%, transparent 52%);
  background-size: 100% 100%, 100% 100%, 180px 180px;
  opacity: 0.9;
  animation: mesh-drift 28s ease-in-out infinite;
}

@keyframes mesh-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-2%, 1%) rotate(0.5deg); }
}

.floating-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.18);
  pointer-events: none;
  animation: ring-pulse 14s ease-in-out infinite;
}

.floating-ring--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: 8%;
  right: -8%;
  border-style: dashed;
}

.floating-ring--2 {
  width: min(280px, 38vw);
  height: min(280px, 38vw);
  bottom: 12%;
  left: -6%;
  animation-delay: -4s;
  border-color: rgba(15, 23, 42, 0.12);
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

.floating-spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(249, 115, 22, 0.5) 45%, transparent 70%);
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.45);
  animation: spark-float 9s ease-in-out infinite;
}

.floating-spark--1 { top: 22%; left: 18%; animation-delay: 0s; }
.floating-spark--2 { top: 48%; right: 22%; width: 8px; height: 8px; animation-delay: -2.5s; }
.floating-spark--3 { bottom: 28%; right: 12%; animation-delay: -5s; }

@keyframes spark-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(12px, -18px) scale(1.15); opacity: 1; }
}

.container {
  width: min(1200px, calc(100vw - 32px));
  margin-inline: auto;
}

/* Navigation - Premium Glassmorphism */
.topbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1120px, 96vw);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.75) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 8px 32px -12px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    0 4px 16px -8px rgba(249, 115, 22, 0.1);
  padding: 0 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  box-shadow: 
    0 12px 40px -12px rgba(0,0,0,0.2),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 6px 20px -8px rgba(249, 115, 22, 0.15);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding: 8px 16px;
}

.hero-visual-stack {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  width: 100%;
}

/* فریم تصویر indexpage + آیکون‌های تکنولوژی روی تصویر */
.hero-product-frame {
  width: 100%;
  max-width: min(100%, 720px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-product-visual {
  --tech-icon-size: 58px;
  position: relative;
  isolation: isolate;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(6px, 2vw, 18px);
  box-sizing: border-box;
}

.hero-product-visual .hero-image-wrap {
  width: 100%;
  max-width: 560px;
  flex-shrink: 0;
}

.hero-product-visual .hero-image {
  position: relative;
  z-index: 1;
}

.hero-product-visual .hero-image-wrap::before {
  z-index: 2;
}

.hero-tech-float {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, 560px);
  height: calc(100% - clamp(14px, 3vw, 34px));
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 12;
}

.hero-tech-icon {
  position: absolute;
  width: var(--tech-icon-size);
  height: var(--tech-icon-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 245, 0.96));
  border: 1px solid rgba(249, 115, 22, 0.28);
  box-shadow:
    0 10px 28px -8px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 0 28px rgba(249, 115, 22, 0.45),
    0 0 56px rgba(249, 115, 22, 0.2);
  will-change: transform;
}

.hero-tech-icon img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.hero-tech-icon--tl {
  top: 0;
  left: 0;
  transform: translate(-28%, -24%) rotate(-11deg);
  animation: tech-float-tl 5.6s ease-in-out infinite;
}

.hero-tech-icon--tr {
  top: 0;
  right: 0;
  transform: translate(28%, -24%) rotate(9deg);
  animation: tech-float-tr 5.1s ease-in-out infinite;
}

.hero-tech-icon--ml {
  top: 50%;
  left: 0;
  transform: translate(-38%, -50%) rotate(-8deg);
  animation: tech-float-ml 5.8s ease-in-out infinite;
}

.hero-tech-icon--mr {
  top: 50%;
  right: 0;
  transform: translate(38%, -50%) rotate(10deg);
  animation: tech-float-mr 4.9s ease-in-out infinite;
}

.hero-tech-icon--bc {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 34%) rotate(-6deg);
  animation: tech-float-bc 5.4s ease-in-out infinite;
}

@keyframes tech-float-tl {
  0%, 100% { transform: translate(-28%, -24%) rotate(-11deg); }
  50% { transform: translate(-28%, -30%) rotate(-6deg); }
}

@keyframes tech-float-tr {
  0%, 100% { transform: translate(28%, -24%) rotate(9deg); }
  50% { transform: translate(28%, -30%) rotate(13deg); }
}

@keyframes tech-float-ml {
  0%, 100% { transform: translate(-38%, -50%) rotate(-8deg); }
  50% { transform: translate(-44%, -50%) rotate(-13deg); }
}

@keyframes tech-float-mr {
  0%, 100% { transform: translate(38%, -50%) rotate(10deg); }
  50% { transform: translate(44%, -50%) rotate(15deg); }
}

@keyframes tech-float-bc {
  0%, 100% { transform: translate(-50%, 34%) rotate(-6deg); }
  50% { transform: translate(-50%, 28%) rotate(-1deg); }
}

.hero-arch-pills {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-arch-pills .brand-arch-pills {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
}

.brand-arch-pills {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}

.brand-arch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(249, 115, 22, 0.22);
  box-shadow: 0 6px 16px -10px rgba(249, 115, 22, 0.35);
  white-space: nowrap;
}

.brand-arch-pill--ssr {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.06);
}

.brand-arch-code {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--orange-dark);
}

.brand-arch-pill--ssr .brand-arch-code {
  color: var(--navy);
}

.brand-arch-desc {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.2rem;
}

.brand-logo-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 0 20px var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--navy-2);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.nav-links .nav-link:hover {
  color: var(--orange-dark);
  background: rgba(249, 115, 22, 0.09);
  border-color: rgba(249, 115, 22, 0.15);
  box-shadow: 0 6px 18px -12px rgba(249, 115, 22, 0.35);
  transform: translateY(-1px);
}

.nav-links .nav-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.btn-mini {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 10px 20px -8px rgba(249, 115, 22, 0.4);
}

.cta-rtl-link {
  color: var(--orange-light);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-rtl-link:hover {
  color: #fff;
}

/* نشان شناور راست‌چین — جدا از دکمه‌ها */
.rtl-float-badge {
  position: fixed;
  left: max(16px, env(safe-area-inset-left, 0px));
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 900;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  animation: rtl-badge-float 5s ease-in-out infinite;
}

.rtl-float-badge:hover {
  transform: translateY(-6px) scale(1.02);
  animation: none;
}

.rtl-float-badge__ring {
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 1px dashed rgba(124, 58, 237, 0.35);
  animation: rtl-badge-ring 8s linear infinite;
  pointer-events: none;
}

.rtl-float-badge__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 14px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(245, 243, 255, 0.94));
  border: 1px solid rgba(124, 58, 237, 0.22);
  box-shadow:
    0 20px 48px -16px rgba(91, 33, 182, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 0 40px rgba(124, 58, 237, 0.12);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.rtl-float-badge__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 12px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 20px -10px rgba(15, 23, 42, 0.25);
}

.rtl-float-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: right;
  min-width: 0;
}

.rtl-float-badge__text strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.rtl-float-badge__text em {
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 700;
  color: #6d28d9;
}

@keyframes rtl-badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes rtl-badge-ring {
  0% { transform: rotate(0deg); opacity: 0.7; }
  50% { opacity: 1; }
  100% { transform: rotate(360deg); opacity: 0.7; }
}

body.menu-open .rtl-float-badge {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  .rtl-float-badge,
  .rtl-float-badge__ring {
    animation: none;
  }
}

.mobile-menu-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.mobile-menu-cta--demo {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: none;
}

.mobile-menu-cta--buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Hamburger button (mobile only) */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.92));
  box-shadow: 0 6px 16px -10px rgba(249, 115, 22, 0.45);
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(249, 115, 22, 0.5);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
}

body.menu-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--orange-dark);
}
body.menu-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
body.menu-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--orange-dark);
}

/* Mobile drawer menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.mobile-menu.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.28s ease, visibility 0s linear 0s;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 237, 0.95));
  border-left: 1px solid rgba(249, 115, 22, 0.18);
  box-shadow: -20px 0 60px -20px rgba(15, 23, 42, 0.35);
  padding: 22px 22px calc(22px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-menu-head .brand {
  font-size: 1.1rem;
}

.mobile-menu-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange-dark);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  padding: 13px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange-dark);
  border-color: rgba(249, 115, 22, 0.18);
  transform: translateX(-3px);
  outline: none;
}

.mobile-menu-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 28px -12px rgba(249, 115, 22, 0.55);
}

.mobile-menu-cta:hover {
  filter: brightness(1.05);
}

body.menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero {
  padding: 48px 0 56px;
  min-height: auto;
}

.section--features {
  padding: clamp(20px, 3vw, 32px) 0 clamp(28px, 4vw, 44px);
}

.section--features .features-topbar {
  margin-bottom: clamp(16px, 2.5vw, 22px);
}

.section--overview {
  padding: clamp(48px, 6vw, 72px) 0 clamp(56px, 6vw, 80px);
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(249, 115, 22, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(99, 102, 241, 0.04) 0%, transparent 50%);
}

.section--overview .hero-grid {
  align-items: center;
}

.hero-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: center;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange-dark);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  animation: scroll-hint-bob 2.4s ease-in-out infinite;
}

@keyframes scroll-hint-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.hero-image-wrap:focus-within {
  max-height: 600px;
  overflow-y: auto;
  outline: 2px solid rgba(249, 115, 22, 0.45);
  outline-offset: 3px;
}

@media (max-width: 768px), (hover: none) {
  .hero-image-wrap {
    max-height: min(52vh, 340px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .hero-image-wrap:hover,
  .hero-image-wrap:focus-within {
    max-height: min(72vh, 520px);
  }

  .hero-scroll-hint {
    font-size: 0.68rem;
    padding: 5px 10px;
  }
}

.hero-shell {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 28px);
}

.hero-intro__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 12px 40px -20px rgba(15, 23, 42, 0.15),
    0 0 0 1px rgba(249, 115, 22, 0.08) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.hero-brand__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.hero-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-brand__text strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.hero-brand__text em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-intro__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.85rem;
}

.hero-intro__copy {
  max-width: 720px;
}

.hero-intro__copy h1 {
  margin-bottom: 14px;
}

.stats--compact {
  max-width: 560px;
}

.stats--compact article {
  padding: 14px 12px;
}

/* Feature hub — premium bento panel */
.hero-hub-panel {
  position: relative;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.52) 100%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 64px -32px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  overflow: hidden;
}

.hero-hub-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(249, 115, 22, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(99, 102, 241, 0.05), transparent 50%);
  pointer-events: none;
}

.hero-hub-panel__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(18px, 2.5vw, 24px);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-hub-panel__eyebrow {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.hero-hub-panel__title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.hero-hub-panel__hint {
  margin: 0;
  max-width: 22rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero-feature-hub {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@keyframes hub-card-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-hub-card {
  --hub-accent: #6366f1;
  --hub-accent-soft: color-mix(in srgb, var(--hub-accent) 14%, white);
  --hub-accent-glow: color-mix(in srgb, var(--hub-accent) 22%, transparent);
  animation: hub-card-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 46px 1fr 34px;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 14px;
  row-gap: 5px;
  min-height: 0;
  padding: 18px 18px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 28px -14px rgba(15, 23, 42, 0.12);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
  overflow: hidden;
}

.hero-hub-card::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -20%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hub-accent-glow) 0%, transparent 68%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.hero-hub-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 40%, var(--hub-accent-glow));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.hero-hub-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--hub-accent) 22%, rgba(15, 23, 42, 0.08));
  background: #fff;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 20px 40px -16px var(--hub-accent-glow),
    0 0 0 1px color-mix(in srgb, var(--hub-accent) 8%, transparent);
}

.hero-hub-card:hover::before,
.hero-hub-card:hover::after {
  opacity: 1;
}

.hero-hub-card--featured {
  grid-column: span 2;
  grid-template-columns: 52px 1fr 40px;
  grid-template-rows: auto auto auto;
  row-gap: 8px;
  padding: 22px 22px 20px;
  background:
    linear-gradient(145deg, #0c1222 0%, #151f33 42%, #0f172a 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 48px -20px rgba(15, 23, 42, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-hub-card--featured::before {
  inset: -30% auto auto -10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.35) 0%, transparent 65%);
  opacity: 0.75;
}

.hero-hub-card--featured::after {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 45%, rgba(249, 115, 22, 0.35));
  opacity: 0.55;
}

.hero-hub-card--featured:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 28px 56px -18px rgba(249, 115, 22, 0.35),
    0 0 0 1px rgba(249, 115, 22, 0.2);
}

.hero-hub-card__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--hub-accent);
  background: linear-gradient(145deg, #fff 0%, var(--hub-accent-soft) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 18px -10px var(--hub-accent-glow);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.hero-hub-card--featured .hero-hub-card__icon {
  grid-row: 1 / span 3;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #fb923c 0%, #ea580c 55%, #c2410c 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 12px 28px -8px rgba(249, 115, 22, 0.65);
}

.hero-hub-card:hover .hero-hub-card__icon {
  transform: scale(1.06);
}

.hero-hub-card__tag {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fdba74;
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.28);
  backdrop-filter: blur(8px);
}

.hero-hub-card strong {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.3;
}

.hero-hub-card--featured strong {
  grid-row: 2;
  align-self: start;
  font-size: 1.2rem;
  color: #fff;
}

.hero-hub-card--featured .hero-hub-card__tag {
  grid-row: 1;
}

.hero-hub-card p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.6;
  color: #64748b;
}

.hero-hub-card--featured p {
  grid-row: 3;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.82rem;
  max-width: 28em;
}

.hero-hub-card__go {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.hero-hub-card--featured .hero-hub-card__go {
  grid-row: 1 / span 3;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-hub-card:hover .hero-hub-card__go {
  transform: translateX(-3px);
  color: var(--hub-accent);
  background: var(--hub-accent-soft);
  border-color: color-mix(in srgb, var(--hub-accent) 20%, transparent);
}

.hero-hub-card--featured:hover .hero-hub-card__go {
  color: #fff;
  background: rgba(249, 115, 22, 0.28);
  border-color: rgba(249, 115, 22, 0.45);
}

.hero-hub-card:focus-visible {
  outline: 2px solid var(--hub-accent);
  outline-offset: 3px;
}

.hero-hub-card--orange { --hub-accent: #ea580c; }
.hero-hub-card--amber { --hub-accent: #d97706; }
.hero-hub-card--indigo { --hub-accent: #4f46e5; }
.hero-hub-card--violet { --hub-accent: #7c3aed; }
.hero-hub-card--sky { --hub-accent: #0284c7; }
.hero-hub-card--rose { --hub-accent: #e11d48; }
.hero-hub-card--teal { --hub-accent: #0d9488; }
.hero-hub-card--pink { --hub-accent: #db2777; }
.hero-hub-card--purple { --hub-accent: #9333ea; }
.hero-hub-card--slate { --hub-accent: #475569; }
.hero-hub-card--cyan { --hub-accent: #0891b2; }
.hero-hub-card--blue { --hub-accent: #2563eb; }
.hero-hub-card--emerald { --hub-accent: #059669; }
.hero-hub-card--green { --hub-accent: #16a34a; }
.hero-hub-card--navy { --hub-accent: #1e3a5f; }
.hero-hub-card--lime { --hub-accent: #65a30d; }

.hero-hub-card:nth-child(1) { animation-delay: 0.03s; }
.hero-hub-card:nth-child(2) { animation-delay: 0.06s; }
.hero-hub-card:nth-child(3) { animation-delay: 0.09s; }
.hero-hub-card:nth-child(4) { animation-delay: 0.12s; }
.hero-hub-card:nth-child(5) { animation-delay: 0.15s; }
.hero-hub-card:nth-child(6) { animation-delay: 0.18s; }
.hero-hub-card:nth-child(7) { animation-delay: 0.21s; }
.hero-hub-card:nth-child(8) { animation-delay: 0.24s; }
.hero-hub-card:nth-child(9) { animation-delay: 0.27s; }
.hero-hub-card:nth-child(10) { animation-delay: 0.30s; }
.hero-hub-card:nth-child(11) { animation-delay: 0.33s; }
.hero-hub-card:nth-child(12) { animation-delay: 0.36s; }
.hero-hub-card:nth-child(13) { animation-delay: 0.39s; }
.hero-hub-card:nth-child(14) { animation-delay: 0.42s; }
.hero-hub-card:nth-child(15) { animation-delay: 0.45s; }
.hero-hub-card:nth-child(16) { animation-delay: 0.48s; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.hero-copy { padding-top: 20px; }

.hero-title-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-title-logo {
  width: 0.82em;
  height: 0.82em;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transform: translateY(0.02em);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 247, 237, 0.9));
  color: var(--orange-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0;
  border: 1px solid rgba(249, 115, 22, 0.25);
  box-shadow: 
    0 4px 16px -4px rgba(249, 115, 22, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  position: relative;
  overflow: hidden;
}

.badge::before {
  content: '';
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  box-shadow: 0 0 12px var(--orange);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 12px var(--orange);
  }
  50% { 
    transform: scale(1.2); 
    box-shadow: 0 0 20px var(--orange), 0 0 30px rgba(249, 115, 22, 0.4);
  }
}

h1 {
  margin: 14px 0 20px;
  line-height: 1.15;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 30%, var(--orange-dark) 70%, var(--orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease-in-out infinite;
  position: relative;
}

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

.hero-subtitle {
  margin: 0 0 28px;
  line-height: 1.9;
  color: var(--muted);
  font-size: 1.1rem;
}

.highlight {
  background: linear-gradient(transparent 60%, rgba(249, 115, 22, 0.2) 60%);
  font-weight: 600;
  color: var(--navy);
}

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

.hero-tech-note {
  margin: 0 0 26px;
  padding: 8px 12px;
  max-width: 100%;
  font-size: 0.78rem;
  line-height: 1.45;
  white-space: nowrap;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  box-shadow: 0 8px 28px -18px rgba(15, 23, 42, 0.2);
}

.hero-tech-note strong {
  color: var(--navy);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 50%, var(--orange) 100%);
  background-size: 200% 100%;
  color: #fff;
  box-shadow: 
    0 15px 35px -10px rgba(249, 115, 22, 0.45),
    0 4px 12px -4px rgba(249, 115, 22, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover { 
  transform: translateY(-3px); 
  background-position: 100% 0;
  box-shadow: 
    0 20px 40px -12px rgba(249, 115, 22, 0.55),
    0 6px 16px -6px rgba(249, 115, 22, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: var(--navy);
}

.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

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

.stats article {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 16px -4px rgba(0,0,0,0.08),
    0 0 0 1px rgba(249, 115, 22, 0.05) inset;
  position: relative;
  overflow: hidden;
}

.stats article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange), var(--orange-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stats article:hover { 
  transform: translateY(-6px) scale(1.02); 
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 
    0 12px 32px -12px rgba(249, 115, 22, 0.2),
    0 0 0 1px rgba(249, 115, 22, 0.1) inset;
}

.stats article:hover::before {
  transform: scaleX(1);
}

.stats b { 
  font-size: 2.2rem; 
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800; 
  display: block; 
  margin-bottom: 6px;
  line-height: 1;
}

.stats span { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* Hero Image - Premium glassmorphism */
.hero-image-wrap {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 40px 80px -24px rgba(11, 31, 58, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 8px 32px -16px rgba(249, 115, 22, 0.15);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  max-height: 420px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.hero-image-wrap:hover {
  max-height: 600px;
  overflow-y: auto;
  box-shadow: 
    0 50px 100px -30px rgba(11, 31, 58, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.95) inset,
    0 12px 40px -20px rgba(249, 115, 22, 0.2);
  transform: translateY(-4px);
}

.hero-product-visual .hero-image-wrap:hover {
  box-shadow:
    0 50px 100px -30px rgba(11, 31, 58, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.95) inset,
    0 12px 40px -20px rgba(249, 115, 22, 0.28),
    0 0 50px rgba(249, 115, 22, 0.32),
    0 0 110px rgba(249, 115, 22, 0.16);
}

.hero-image-wrap:hover::-webkit-scrollbar {
  width: 6px;
}

.hero-image-wrap:hover::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  border-radius: 3px;
}

.hero-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Sections */
.section { padding: 80px 0; position: relative; }

/* Reveal Animation - in-view state */
.section.in-view,
.card.in-view,
.flow-card.in-view,
.tech-card.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.section-head { margin-bottom: 52px; text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 146, 60, 0.05));
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--navy);
  font-weight: 800;
}

.section-head p { color: var(--muted); font-size: 1.1rem; }

/* Spiral showcase: تصویر + متن کنار هم، بدون پوشش روی اسکرین‌شات */
.spiral-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.spiral-item {
  position: relative;
  border-radius: var(--radius);
}

.spiral-item--split {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  border-radius: var(--radius);
  padding: 0;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  box-shadow: 
    0 16px 48px -20px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 4px 12px -8px rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 16px;
}

.spiral-item--split:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 28px 64px -24px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 8px 24px -12px rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.15);
}

.spiral-item--split:hover {
  transform: translateY(-4px);
}

.spiral-item--split .spiral-media {
  flex: 1 1 72%;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  align-self: center;
  box-shadow: 0 24px 55px -30px rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.spiral-item--split .spiral-media img {
  width: 100%;
  height: auto;
  display: block;
}

.spiral-item--split .spiral-copy {
  flex: 0 1 28%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
  text-align: right;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  animation: spiral-copy-float 7s ease-in-out infinite;
}

.spiral-item--split .spiral-copy h3 {
  font-size: 1.28rem;
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.spiral-item--split .spiral-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: #475569;
}

.spiral-item--text-outside .spiral-copy--sticky {
  flex: 0 0 min(340px, 30%);
  position: relative;
  padding-right: 18px;
}

.spiral-item--text-outside .spiral-copy--sticky::before {
  content: "";
  position: absolute;
  right: 2px;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
}

@keyframes spiral-copy-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.spiral-item.s1,
.spiral-item.s2,
.spiral-item.s3,
.spiral-item.s4,
.spiral-item.s5,
.spiral-item.s6,
.spiral-item.s7 {
  grid-column: 1 / -1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .spiral-item--split .spiral-copy {
    animation: none;
  }
  .floating-mesh,
  .floating-ring,
  .floating-spark {
    animation: none !important;
  }
}

/* Legacy cards used in other sections */
.image-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px -15px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  background: white;
}

.image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -20px rgba(0,0,0,0.2);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 1 !important;
}

.image-card.large img {
  max-height: none;
}

/* Image Info beside/below */
.image-info {
  padding: 20px 24px;
  background: white;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.image-info h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.image-info p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 15px -5px rgba(249, 115, 22, 0.5);
}

/* Feature Grid - Staggered Layout */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 
    0 10px 40px -15px rgba(0,0,0,0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 4px 12px -8px rgba(249, 115, 22, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange), var(--orange-dark));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover { 
  transform: translateY(-10px) scale(1.01); 
  box-shadow: 
    0 30px 60px -20px rgba(0,0,0,0.2),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 8px 24px -12px rgba(249, 115, 22, 0.2);
  border-color: rgba(249, 115, 22, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--pagebuilder {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  align-items: center;
  border: 1px solid rgba(139, 92, 246, 0.22);
  box-shadow: 0 22px 50px -28px rgba(76, 29, 149, 0.45);
}

.feature-card--pagebuilder .content {
  padding: 30px 32px;
}

.feature-card--pagebuilder h3 {
  font-size: 1.35rem;
}

.feature-card--pagebuilder p {
  font-size: 1rem;
  line-height: 1.9;
}

.tech-inline {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-inline span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--orange-dark);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.22);
}

.feature-card--pagebuilder img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.feature-card img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1 !important;
}

.feature-card .feature-icon img {
  width: auto;
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
}

.feature-icon--pwa {
  background: linear-gradient(145deg, rgba(20, 184, 166, 0.14), rgba(15, 23, 42, 0.06));
  border: 1px solid rgba(20, 184, 166, 0.2);
}

/* سکشن مستقل PWA — بالای Pro Online */
.section--pwa-app {
  padding: 72px 0 28px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(20, 184, 166, 0.09) 0%, transparent 55%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, transparent 100%);
}

/* وقتی صفحه به‌صورت نصب‌شدهٔ PWA باز است */
@media (display-mode: standalone) {
  .section--pwa-app {
    padding-top: max(56px, env(safe-area-inset-top, 0px));
    border-top: 3px solid rgba(249, 115, 22, 0.35);
  }
}

.section--pwa-app .section-head {
  margin-bottom: 36px;
}

.pwa-highlight-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  position: relative;
  overflow: visible;
  padding: clamp(10px, 2vw, 20px);
  min-height: clamp(470px, 56vw, 620px);
}

.pwa-highlight-copy {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
}

.pwa-highlight-copy h3 {
  margin: 0;
  position: absolute;
  top: clamp(20px, 4.2vw, 38px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: max-content;
  max-width: min(88%, 360px);
  padding: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.pwa-highlight-copy p {
  margin: 0;
  position: absolute;
  top: 52%;
  right: clamp(14px, 3vw, 30px);
  transform: translateY(-50%);
  width: min(34%, 260px);
  text-align: right;
  font-size: 0.9rem;
  line-height: 1.75;
  padding: 0;
  color: var(--muted);
}

.pwa-mini-points {
  margin: 0;
  position: absolute;
  top: 52%;
  left: clamp(14px, 3vw, 30px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.pwa-mini-points span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0;
  position: relative;
  padding-right: 12px;
}

.pwa-mini-points span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.pwa-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(8px, 1.5vw, 14px);
  min-height: clamp(320px, 42vw, 420px);
}

.pwa-phone-mock {
  perspective: 900px;
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(320px, 46vw, 430px);
}

.pwa-phone-bezel {
  width: min(260px, 78vw);
  margin: 0 auto;
  padding: 10px 10px 14px;
  border-radius: 36px;
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 55%, #020617 100%);
  box-shadow:
    0 28px 64px -24px rgba(15, 23, 42, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 40px -16px rgba(249, 115, 22, 0.15);
  transform: rotateX(13deg) rotateY(-12deg) rotateZ(2deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.pwa-highlight-card:hover .pwa-phone-bezel {
  transform: rotateX(8deg) rotateY(-8deg) rotateZ(1deg) translateY(-6px);
  box-shadow:
    0 36px 72px -28px rgba(15, 23, 42, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 16px 48px -18px rgba(249, 115, 22, 0.22);
}

.pwa-phone-notch {
  width: 44%;
  height: 22px;
  margin: 0 auto 6px;
  border-radius: 0 0 20px 20px;
  background: #020617;
}

.pwa-phone-status {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 4px 14px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.pwa-status-time {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.pwa-status-title {
  justify-self: center;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(234, 88, 12, 0.98));
  box-shadow: 0 6px 18px -8px rgba(249, 115, 22, 0.65);
}

.pwa-status-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.pwa-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
}

.pwa-battery {
  width: 18px;
  height: 9px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-left: 2px;
  position: relative;
}

.pwa-battery::after {
  content: '';
  position: absolute;
  right: 1px;
  top: 2px;
  height: 5px;
  width: 10px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.9);
}

.pwa-phone-screen {
  border-radius: 22px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pwa-phone-screen img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.pwa-phone-home-bar {
  width: 36%;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.pwa-float-icon {
  position: absolute;
  top: 8%;
  right: 50%;
  transform: translate(150%, -12%) rotate(15deg);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 237, 0.95));
  border: 1px solid rgba(249, 115, 22, 0.28);
  box-shadow:
    0 10px 24px -8px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 0 26px rgba(249, 115, 22, 0.4);
  z-index: 5;
}

.pwa-float-icon img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}


.pwa-settings-preview {
  width: min(44%, 180px);
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 32px -20px rgba(15, 23, 42, 0.48);
  position: absolute;
  left: 52%;
  bottom: 3%;
  transform: translateX(24%);
  z-index: 6;
  background: rgba(255, 255, 255, 0.95);
}

.pwa-settings-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.pwa-settings-label {
  display: block;
  text-align: center;
  padding: 7px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

@media (max-width: 900px) {
  .pwa-highlight-card {
    padding: 16px;
    min-height: auto;
  }

  .pwa-highlight-copy {
    position: static;
    inset: auto;
    pointer-events: auto;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
  }

  .pwa-highlight-copy h3 {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    margin: 6px 0 10px;
  }

  .pwa-highlight-copy p {
    position: static;
    transform: none;
    width: auto;
    text-align: center;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    margin: 0 auto;
    max-width: 44ch;
  }

  .pwa-mini-points {
    position: static;
    transform: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .pwa-phone-bezel {
    width: min(236px, 80vw);
    transform: rotateX(8deg) rotateY(-7deg) rotateZ(1deg);
  }

  .pwa-float-icon {
    width: 54px;
    height: 54px;
    transform: translate(126%, -8%) rotate(14deg);
  }

  .pwa-settings-preview {
    width: min(46%, 158px);
    left: 50%;
    bottom: 2%;
    transform: translateX(20%);
  }
}

.feature-card .content {
  padding: 24px;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.feature-card.primary {
  border: 2px solid rgba(249, 115, 22, 0.3);
  transform: scale(1.02);
}

.feature-card.primary:hover { transform: scale(1.02) translateY(-8px); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon.large {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 20px;
}

/* Flow Cards */
.flow-section { margin-bottom: 48px; }
.flow-section:last-child { margin-bottom: 0; }

.flow-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.flow-title svg { color: var(--orange); }

.duo-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.flow-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 
    0 10px 40px -15px rgba(0,0,0,0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 2px 8px -4px rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 24px 48px -20px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 6px 20px -8px rgba(249, 115, 22, 0.15);
}

.flow-card img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1 !important;
}

.flow-card .content {
  padding: 20px 24px;
}

.flow-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--orange);
}

.flow-label.success { color: var(--navy); }

.arrow-flow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -10px rgba(249, 115, 22, 0.5);
  animation: pulse-arrow 2s ease-in-out infinite;
  flex-shrink: 0;
}

.arrow-flow--to-start svg {
  display: block;
}

@keyframes pulse-arrow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* جریان استوری / سفارش: فلش به سمت چپ (سمت نمایش در RTL) */
.flow-section--story .arrow-flow,
.flow-section--order .arrow-flow {
  animation: pulse-arrow-rtl 2.2s ease-in-out infinite;
}

@keyframes pulse-arrow-rtl {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* پیگیری سفارش: تصاویر جمع‌وجور و مینیمال */
.flow-section--order .flow-card--minimal .content {
  padding: 20px 24px;
}

.flow-section--order .flow-card--minimal .content h4 {
  font-size: 1.05rem;
}

.flow-section--order .flow-card--minimal .content p {
  font-size: 0.93rem;
  line-height: 1.7;
}

.flow-card-thumb {
  padding: 8px 14px 14px;
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow-section--order .flow-card-thumb img {
  width: 100%;
  max-height: 168px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 24px -14px rgba(15, 23, 42, 0.45);
}

.duo-flow--compact {
  gap: 18px;
}

.flow-section--order .flow-card--minimal img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: initial;
}

/* Shop — فیلتر + لیست + صفحه محصول */
.section--shop .section-head p {
  max-width: 52ch;
  margin-inline: auto;
}

.product-page-panel {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
  margin-top: 22px;
  padding: clamp(14px, 2vw, 22px);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.9));
  border: 1px solid rgba(249, 115, 22, 0.16);
  box-shadow: 0 18px 44px -24px rgba(15, 23, 42, 0.18);
}

.product-page-copy {
  flex: 0 1 38%;
  min-width: 0;
  text-align: right;
}

.product-page-copy h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 800;
  color: var(--navy);
}

.product-page-copy p {
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #475569;
}

.product-page-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.product-page-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.55;
}

.product-page-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--orange);
}

.shop-float-label--product {
  background: linear-gradient(135deg, #059669, #10b981, #34d399);
  box-shadow: 0 10px 28px -10px rgba(5, 150, 105, 0.45);
}

.product-page-media {
  flex: 1 1 58%;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px -22px rgba(15, 23, 42, 0.35);
}

.product-page-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* فروشگاه + فیلتر: یک بلوک واحد، دو تصویر کنار هم */
.shop-showcase-block {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: clamp(18px, 2.5vw, 28px);
  box-shadow:
    0 24px 56px -28px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 4px 16px -8px rgba(249, 115, 22, 0.1);
}

.shop-showcase-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  gap: clamp(16px, 2.2vw, 28px);
  align-items: start;
}

.shop-showcase-figure {
  margin: 0;
  position: relative;
}

.shop-showcase-head {
  text-align: right;
  margin-bottom: 14px;
}

.shop-float-label {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange), var(--orange-light));
  box-shadow:
    0 10px 28px -10px rgba(249, 115, 22, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
  animation: shop-label-float 4.5s ease-in-out infinite;
}

.shop-float-label--shop {
  background: linear-gradient(135deg, var(--navy), var(--navy-light), #334155);
  box-shadow:
    0 10px 28px -10px rgba(15, 23, 42, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.shop-float-caption {
  margin: 10px 0 0;
  max-width: 100%;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}

.shop-showcase-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #f1f5f9;
  box-shadow: 0 16px 40px -22px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.shop-showcase-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

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

@media (prefers-reduced-motion: reduce) {
  .shop-float-label {
    animation: none;
  }
}

/* Pro Online spotlight */
.pro-highlight {
  padding: 8px 0 46px;
}

.pro-hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: center;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(249, 115, 22, 0.08));
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 28px;
  padding: 28px;
}

.pro-hero-copy h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--navy);
}

.pro-hero-copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.pro-hero-lead {
  font-size: 1.05rem;
  line-height: 1.85;
}

.pro-hero-detail {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(249, 115, 22, 0.14);
  box-shadow: 0 10px 28px -22px rgba(15, 23, 42, 0.25);
}

.pro-hero-detail strong {
  color: var(--navy);
  font-weight: 800;
}

.pro-hero-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pro-hero-modes span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--orange-dark);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.22);
}

.pro-hero-visual {
  position: relative;
  min-width: 0;
  align-self: center;
}

.pro-hero-screens {
  position: relative;
  padding-bottom: clamp(72px, 16%, 110px);
}

.pro-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pro-hero-points span {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.pro-hero-points .ai-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-color: rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px -16px rgba(15, 23, 42, 0.45);
}

.pro-hero-points .ai-badge-chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  padding: 3px;
  border-radius: 7px;
  background: #0b1220;
  filter: invert(1);
}

.pro-hero-points .ai-badge-chip em {
  font-style: normal;
}

.pro-hero-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 70px -35px rgba(11, 18, 32, 0.75);
}

.pro-hero-visual .pro-openai-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.pro-openai-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 14px 30px -20px rgba(15, 23, 42, 0.55);
  transform: rotate(-4deg);
}

.pro-openai-box span {
  font-size: 0.98rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.pro-suggest-float {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(46%, 270px);
  margin: 0;
  z-index: 4;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 20px 48px -24px rgba(15, 23, 42, 0.65),
    0 0 0 1px rgba(249, 115, 22, 0.12);
  transform: translate(-6%, 8%) rotate(-2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pro-hero-screens:hover .pro-suggest-float {
  transform: translate(-6%, 4%) rotate(-1deg);
  box-shadow:
    0 26px 56px -26px rgba(15, 23, 42, 0.7),
    0 0 0 1px rgba(249, 115, 22, 0.18);
}

.pro-suggest-float img {
  width: 100%;
  height: auto;
  display: block;
}

.pro-suggest-float figcaption {
  display: block;
  text-align: center;
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--navy);
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.95), #fff);
  border-top: 1px solid rgba(249, 115, 22, 0.12);
}

.pro-ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

/* Sets — کارت ست + صفحه ست + Pro */
.section--sets {
  background:
    radial-gradient(ellipse 65% 45% at 0% 20%, rgba(249, 115, 22, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(11, 18, 32, 0.04) 0%, transparent 50%);
}

.sets-showcase {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.sets-block {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  padding: clamp(14px, 2vw, 20px);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(249, 115, 22, 0.14);
  box-shadow:
    0 18px 48px -24px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sets-block:hover {
  transform: translateY(-4px);
  box-shadow:
    0 26px 56px -26px rgba(15, 23, 42, 0.24),
    0 0 0 1px rgba(249, 115, 22, 0.1) inset;
}

.sets-block--reverse {
  flex-direction: row-reverse;
}

.sets-block-media {
  flex: 1 1 58%;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px -28px rgba(15, 23, 42, 0.45);
}

.sets-block-media img {
  width: 100%;
  height: auto;
  display: block;
}

.sets-block-copy {
  flex: 0 1 38%;
  min-width: 0;
  text-align: right;
}

.sets-block-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.sets-block-copy p {
  margin: 0 0 14px;
  font-size: 0.96rem;
  line-height: 1.85;
  color: #475569;
}

.sets-block-copy p strong {
  color: var(--navy);
  font-weight: 800;
}

.sets-block-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.sets-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
  text-align: right;
}

.sets-block-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.sets-pro-bridge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 28px;
  padding: clamp(18px, 2.5vw, 26px) clamp(20px, 3vw, 28px);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(11, 18, 32, 0.96), rgba(30, 41, 59, 0.92));
  border: 1px solid rgba(249, 115, 22, 0.28);
  box-shadow:
    0 24px 56px -28px rgba(11, 18, 32, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sets-pro-bridge-copy {
  flex: 1 1 280px;
  min-width: 0;
}

.sets-pro-bridge-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  color: #fff;
}

.sets-pro-bridge-copy p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.sets-pro-bridge-copy p strong {
  color: var(--orange-light);
  font-weight: 800;
}

.sets-pro-bridge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.sets-pro-bridge-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: rgba(249, 115, 22, 0.22);
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.sets-rules-panel {
  margin-bottom: 8px;
}

/* Invoice — فاکتور سازمانی */
.section--invoice {
  background:
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 100%, rgba(249, 115, 22, 0.05) 0%, transparent 45%);
}

.invoice-panel {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(16px, 2.5vw, 28px);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow:
    0 24px 56px -28px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.invoice-panel-media {
  flex: 1 1 52%;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px -24px rgba(15, 23, 42, 0.4);
  background: #f8fafc;
}

.invoice-panel-media img {
  width: 100%;
  height: auto;
  display: block;
}

.invoice-panel-copy {
  flex: 0 1 42%;
  min-width: 0;
  text-align: right;
}

.invoice-panel-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.invoice-panel-lead {
  margin: 0 0 16px;
  font-size: 0.96rem;
  line-height: 1.9;
  color: #475569;
}

.invoice-panel-lead strong {
  color: var(--navy);
  font-weight: 800;
}

.invoice-panel-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.invoice-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.65;
}

.invoice-panel-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

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

.invoice-panel-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #1e40af;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.slug-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: center;
}

.slug-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px -28px rgba(15, 23, 42, 0.7);
}

.slug-image img {
  width: 100%;
  height: auto;
  display: block;
}

.slug-copy h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.slug-copy p {
  color: var(--muted);
  margin-bottom: 12px;
}

.slug-copy ul {
  margin: 0;
  padding-right: 18px;
  color: #334155;
  display: grid;
  gap: 8px;
}

.pro-spotlight {
  position: relative;
  border-radius: 26px;
  padding: 24px;
  background: radial-gradient(circle at 50% 40%, rgba(249, 115, 22, 0.16), rgba(11, 18, 32, 0.05) 55%, rgba(11, 18, 32, 0.02));
  border: 1px solid rgba(249, 115, 22, 0.25);
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro-main-image {
  width: min(100%, 520px);
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 70px -35px rgba(11, 18, 32, 0.85);
}

.orbit-note {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 25px -18px rgba(15, 23, 42, 0.7);
}

.orbit-note.n1 { top: 8%; right: 10%; }
.orbit-note.n2 { top: 28%; left: 4%; }
.orbit-note.n3 { bottom: 16%; right: 6%; }
.orbit-note.n4 { bottom: 6%; left: 12%; }

.pro-side-stack {
  display: grid;
  gap: 18px;
}

.side-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px -25px rgba(15, 23, 42, 0.65);
}

.side-image img {
  width: 100%;
  display: block;
  height: auto;
}

/* ── v2 shared pills ── */
.v2-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 28px;
  padding: 0;
  max-width: 920px;
}

.v2-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.12);
}

/* ── Shipping zones section ── */
.section--shipping {
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(14, 165, 233, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(101, 163, 13, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.shipping-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 20px;
  align-items: start;
}

.shipping-side-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shipping-settings-mock {
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 24px 56px -28px rgba(15, 23, 42, 0.18);
  direction: rtl;
  font-size: 13px;
}

.shipping-settings-mock__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 18px 14px;
  border-bottom: 1px solid #f5f5f5;
  background: linear-gradient(to left, #fff, #fafafa);
}

.shipping-settings-mock__path {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: ui-monospace, monospace;
  color: #0284c7;
  direction: ltr;
}

.shipping-settings-mock__head h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.shipping-settings-mock__head p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 28em;
}

.shipping-settings-mock__save {
  flex-shrink: 0;
  padding: 9px 14px;
  border: none;
  border-radius: 12px;
  background: #d97706;
  color: #fff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: default;
  box-shadow: 0 2px 8px -2px rgba(217, 119, 6, 0.45);
}

.shipping-settings-mock__card {
  padding: 14px 18px;
  border-bottom: 1px solid #f5f5f5;
}

.shipping-settings-mock__card:last-child {
  border-bottom: none;
}

.shipping-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  cursor: default;
}

.shipping-toggle-row__copy strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #171717;
}

.shipping-toggle-row__copy em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 0.72rem;
  color: #737373;
}

.shipping-toggle {
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #e5e5e5;
  position: relative;
}

.shipping-toggle.is-on {
  background: #22c55e;
}

.shipping-toggle.is-on::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.shipping-settings-mock__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shipping-settings-mock__grid label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #404040;
}

.shipping-settings-mock__grid input {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fafafa;
  font-family: ui-monospace, monospace;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  color: #171717;
}

.shipping-settings-mock__grid small {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  color: #737373;
}

.shipping-zones-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.shipping-zones-head strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #171717;
}

.shipping-zones-head span {
  display: block;
  margin-top: 2px;
  font-size: 0.68rem;
  color: #737373;
}

.shipping-zones-head__add {
  padding: 7px 12px;
  border: none;
  border-radius: 10px;
  background: #d97706;
  color: #fff;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: default;
}

.shipping-zone {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: rgba(250, 250, 250, 0.6);
  overflow: hidden;
}

.shipping-zone + .shipping-zone {
  margin-top: 8px;
}

.shipping-zone__summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: none;
  background: none;
  font-family: inherit;
  text-align: right;
  cursor: default;
}

.shipping-zone__summary strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #171717;
}

.shipping-zone__summary em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 0.68rem;
  color: #737373;
}

.shipping-zone__edit {
  font-size: 0.68rem;
  color: #a3a3a3;
  white-space: nowrap;
}

.shipping-zone__body {
  padding: 0 14px 14px;
  border-top: 1px solid #ebebeb;
}

.shipping-zone__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 12px;
}

.shipping-zone__fields label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #525252;
}

.shipping-zone__fields input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  font-size: 0.8rem;
}

.shipping-zone__provinces-label {
  margin: 12px 0 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #525252;
}

.shipping-zone__provinces {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.shipping-zone__provinces span {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #525252;
  background: #fafafa;
  border: 1px solid #eee;
}

.shipping-zone__provinces span.is-checked {
  color: #0c4a6e;
  background: #e0f2fe;
  border-color: #bae6fd;
}

.shipping-vendor-compare,
.shipping-checkout-mock {
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  padding: 16px;
  box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.16);
  direction: rtl;
}

.shipping-vendor-compare header {
  margin-bottom: 12px;
}

.shipping-vendor-compare__tag {
  display: inline-block;
  margin-bottom: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  color: #4f46e5;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.shipping-vendor-compare h4 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
}

.shipping-vendor-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.74rem;
  margin-bottom: 10px;
}

.shipping-vendor-compare__table th,
.shipping-vendor-compare__table td {
  padding: 8px 6px;
  border-bottom: 1px solid #f0f0f0;
  text-align: right;
}

.shipping-vendor-compare__table th {
  font-weight: 700;
  color: #525252;
  background: #fafafa;
}

.shipping-vendor-compare__table td:nth-child(n+2) {
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
}

.shipping-vendor-compare p {
  margin: 0;
  font-size: 0.72rem;
  color: #737373;
}

.shipping-vendor-compare code {
  font-size: 0.68rem;
  background: #f5f5f4;
  padding: 1px 5px;
  border-radius: 4px;
}

.shipping-checkout-mock header {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.shipping-checkout-mock header span {
  display: block;
  font-size: 0.68rem;
  color: #737373;
  margin-bottom: 4px;
}

.shipping-checkout-mock header strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
}

.shipping-checkout-mock__breakdown {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shipping-checkout-mock__breakdown li {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  position: relative;
}

.shipping-checkout-mock__seller {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.shipping-checkout-mock__icon {
  font-size: 1.1rem;
  line-height: 1;
}

.shipping-checkout-mock__seller strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #171717;
}

.shipping-checkout-mock__seller em {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  color: #737373;
  margin-top: 2px;
}

.shipping-checkout-mock__fee {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #d97706;
}

.shipping-checkout-mock__detail {
  margin: 0;
  padding-right: 34px;
  font-size: 0.68rem;
  color: #525252;
}

.shipping-checkout-mock__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.04));
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.shipping-checkout-mock__total span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #57534e;
}

.shipping-checkout-mock__total strong {
  font-size: 1rem;
  font-weight: 800;
  color: #c2410c;
}

.shipping-checkout-mock__note {
  margin: 10px 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: #737373;
  text-align: center;
}

/* ── Wallet section v2 ── */
.section--wallet {
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(16, 185, 129, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.wallet-showcase {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.wallet-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wallet-feature-card {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow: 0 12px 32px -20px rgba(15, 23, 42, 0.14);
}

.wallet-feature-card h3 {
  margin: 0 0 10px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
}

.wallet-feature-card ul {
  margin: 0;
  padding: 0 18px 0 0;
  font-size: 0.82rem;
  color: #57534e;
  line-height: 1.65;
}

.wallet-feature-card li { margin-bottom: 4px; }

.wallet-feature-card code {
  font-size: 0.72rem;
  background: #f5f5f4;
  padding: 1px 5px;
  border-radius: 4px;
}

.wallet-feature-card--refund {
  background: linear-gradient(145deg, #fffbeb, #fff);
  border-color: rgba(245, 158, 11, 0.25);
}

.wallet-feature-card--refund p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #57534e;
}

.wallet-mock {
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  padding: 16px;
  box-shadow: 0 24px 60px -28px rgba(15, 23, 42, 0.2);
  direction: rtl;
  font-size: 13px;
}

.wallet-mock__balance {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, #d97706 8%, white), #fff);
  border: 1px solid color-mix(in srgb, #d97706 22%, transparent);
  margin-bottom: 12px;
}

.wallet-mock__balance em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: #78716c;
  font-weight: 600;
}

.wallet-mock__balance strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: #1c1917;
  line-height: 1.2;
}

.wallet-mock__balance > div > span {
  font-size: 0.85rem;
  color: #78716c;
  font-weight: 700;
}

.wallet-mock__balance p {
  margin: 6px 0 0;
  font-size: 0.72rem;
  color: #57534e;
}

.wallet-mock__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px -6px rgba(15, 23, 42, 0.15);
}

.wallet-mock__checkout {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fafaf9;
  border: 1px solid #f0f0f0;
  margin-bottom: 12px;
}

.wallet-mock__checkout-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  color: #78716c;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wallet-mock__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 8px;
}

.wallet-mock__checkout-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  padding-top: 8px;
  border-top: 1px dashed #e7e5e4;
}

.wallet-mock__checkout-row strong {
  color: #d97706;
  font-weight: 900;
}

.wallet-mock__tx strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 8px;
  color: #1c1917;
}

.wallet-mock__tx ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wallet-mock__tx li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f4;
  font-size: 0.72rem;
}

.wallet-mock__tx li em {
  font-style: normal;
  color: #a8a29e;
  font-size: 0.65rem;
}

.tx-plus { color: #059669; font-weight: 800; }
.tx-minus { color: #dc2626; font-weight: 800; }
.tx-pending { color: #d97706; font-weight: 800; font-size: 0.65rem; }

/* ── Support widget mock — matches ChatPanel / SupportChatWidget ── */
.ai-chat-showcase {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 24px;
  align-items: start;
  justify-content: center;
}

.support-widget-mock {
  --sw-accent: #d97706;
  width: 100%;
  max-width: 420px;
  min-height: 480px;
  max-height: min(72dvh, 560px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: #fff;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  font-size: 14px;
  margin: 0 auto;
}

.support-widget-mock__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.95);
  background: #fff;
  direction: rtl;
}

.support-widget-mock__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--sw-accent) 12%, #f5f5f5);
  color: var(--sw-accent);
}

.support-widget-mock__title {
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #171717;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-widget-mock__close {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 9999px;
  background: transparent;
  color: #737373;
  cursor: default;
  font-family: inherit;
  transition: background 0.15s;
}

.support-widget-mock__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 12px 16px;
  background: #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-gutter: stable;
}

.sw-msg {
  display: flex;
  width: 100%;
}

.sw-msg--user { justify-content: flex-start; }

.sw-msg--bot { justify-content: flex-end; }

.sw-bubble {
  max-width: min(88%, 20rem);
  padding: 10px 16px;
  font-size: 0.875rem;
  line-height: 1.625;
}

.sw-bubble--user {
  border-radius: 1.15rem;
  border-bottom-left-radius: 0.25rem;
  background: var(--sw-accent);
  color: #fff;
  box-shadow: 0 4px 14px -6px color-mix(in srgb, var(--sw-accent) 55%, #000);
}

.sw-bubble--bot {
  border-radius: 1.15rem;
  border-bottom-right-radius: 0.25rem;
  background: #fff;
  color: #262626;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.07);
}

.sw-bubble--bot p {
  margin: 0 0 8px;
}

.sw-bubble--bot p:last-of-type {
  margin-bottom: 0;
}

.sw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.sw-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.sw-action--primary {
  background: var(--sw-accent);
  color: #fff;
  box-shadow: 0 4px 12px -4px color-mix(in srgb, var(--sw-accent) 55%, #000);
}

.support-widget-mock__foot {
  flex-shrink: 0;
  padding: 8px 12px max(12px, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(245, 245, 245, 0.95);
  background: #fff;
}

.sw-compose {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 0.75rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: #fff;
  box-shadow: 0 2px 12px -4px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.sw-compose textarea {
  flex: 1;
  min-width: 0;
  min-height: 2.75rem;
  max-height: 7rem;
  padding: 10px 12px;
  border: none;
  background: transparent;
  resize: none;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.625;
  color: #171717;
  outline: none;
}

.sw-compose textarea::placeholder {
  color: #a3a3a3;
}

.sw-send {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0.5rem;
  background: var(--sw-accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  cursor: default;
  font-family: inherit;
}

.sw-human {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: #525252;
  font-size: 0.75rem;
  font-family: inherit;
  cursor: default;
}

.ai-faq-sidebar {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(145deg, #fff, #fafaf9);
}

.ai-faq-sidebar h4 {
  margin: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
}

.ai-faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-faq-list li {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  background: #fff;
}

.ai-faq-list li.is-active {
  border-color: color-mix(in srgb, #d97706 35%, transparent);
  background: color-mix(in srgb, #d97706 6%, white);
}

.ai-faq-list strong {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 2px;
}

.ai-faq-list p {
  margin: 0;
  font-size: 0.68rem;
  color: #78716c;
  line-height: 1.45;
}

.ai-faq-note {
  margin: 12px 0 0;
  font-size: 0.68rem;
  color: #78716c;
  line-height: 1.5;
}

/* ── Admin suggestions rules mock ── */
.suggestions-admin-mock {
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 50px -24px rgba(15, 23, 42, 0.18);
  direction: rtl;
  font-size: 13px;
}

.suggestions-admin-mock__toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid #f0f0f0;
}

.suggestions-admin-mock__intro h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.suggestions-admin-mock__intro p {
  margin: 0;
  max-width: 42em;
  font-size: 0.78rem;
  line-height: 1.65;
  color: #64748b;
}

.suggestions-admin-mock__add {
  flex-shrink: 0;
  padding: 9px 16px;
  border: none;
  border-radius: 12px;
  background: #d97706;
  color: #fff;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: default;
  box-shadow: 0 2px 8px -2px rgba(217, 119, 6, 0.45);
}

.suggestions-admin-mock__table-wrap {
  overflow-x: auto;
}

.suggestions-admin-mock__table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
}

.suggestions-admin-mock__table thead {
  background: #f8f9fa;
}

.suggestions-admin-mock__table th {
  padding: 12px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  border-bottom: 1px solid #e8e8e8;
  white-space: nowrap;
}

.suggestions-admin-mock__table th:nth-child(2),
.suggestions-admin-mock__table th:nth-child(3) {
  text-align: center;
}

.suggestions-admin-mock__table td {
  padding: 12px 14px;
  font-size: 0.8rem;
  color: #1e293b;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.suggestions-admin-mock__table td:nth-child(2),
.suggestions-admin-mock__table td:nth-child(3) {
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: #475569;
}

.suggestions-admin-mock__table tbody tr:last-child td {
  border-bottom: none;
}

.suggestions-admin-mock__table tbody tr:hover {
  background: rgba(248, 250, 252, 0.85);
}

.suggestions-admin-mock__table td:first-child {
  font-weight: 600;
}

.suggestions-admin-mock__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
}

.suggestions-admin-mock__actions button {
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  cursor: default;
}

.suggestions-admin-mock__actions button.is-delete {
  color: #c0392b;
}

@media (max-width: 640px) {
  .suggestions-admin-mock__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .suggestions-admin-mock__add {
    align-self: flex-start;
  }
}

/* ── Order tracking mock ── */
.flow-section-lead {
  margin: -8px 0 20px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 42rem;
}

/* ── Track order modal mock ── */
.track-order-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

.track-order-duo__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.track-order-duo__item figcaption {
  font-size: 0.78rem;
  font-weight: 800;
  color: #64748b;
  text-align: center;
}

.track-order-mock {
  --track-accent: #d97706;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  direction: rtl;
  font-size: 14px;
}

.track-order-mock__head {
  position: relative;
  padding: 16px 18px 14px;
  border-bottom: 1px solid #f5f5f5;
  background: linear-gradient(to left, #fff, rgba(250, 250, 250, 0.9));
}

.track-order-mock__close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #a3a3a3;
  cursor: default;
  font-family: inherit;
}

.track-order-mock__head-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 36px;
}

.track-order-mock__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--track-accent) 14%, transparent);
  color: var(--track-accent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--track-accent) 22%, transparent);
}

.track-order-mock__head-main strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #171717;
  line-height: 1.3;
}

.track-order-mock__head-main p {
  margin: 4px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #737373;
}

.track-order-mock__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.track-order-mock__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #525252;
  margin-bottom: -8px;
}

.track-order-mock__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  font-family: ui-monospace, monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  color: #171717;
  cursor: default;
}

.track-order-mock__actions {
  display: flex;
  gap: 10px;
}

.track-order-mock__actions--stack {
  flex-direction: column;
}

.track-order-mock__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: default;
  border: 1px solid transparent;
}

.track-order-mock__btn--primary {
  background: var(--track-accent);
  color: #fff;
  box-shadow: 0 2px 8px -2px rgba(217, 119, 6, 0.45);
}

.track-order-mock__btn--secondary {
  background: #fff;
  color: #404040;
  border-color: #e5e5e5;
}

.track-order-mock__btn--full {
  width: 100%;
}

.track-order-mock__link {
  margin: 0;
  text-align: center;
  font-size: 0.75rem;
  color: #737373;
}

.track-order-mock__link a {
  color: var(--track-accent);
  font-weight: 700;
  text-decoration: none;
}

.track-order-mock__status {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: rgba(250, 250, 250, 0.85);
}

.track-order-mock__status > span {
  display: block;
  font-size: 0.72rem;
  color: #525252;
}

.track-order-mock__status > strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #171717;
}

.track-order-mock__status > em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.72rem;
  color: #737373;
}

.track-order-mock__shipping {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #a7f3d0;
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.95), #fff);
  box-shadow: inset 0 0 0 1px rgba(167, 243, 208, 0.35);
}

.track-order-mock__shipping-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #065f46;
}

.track-order-mock__shipping-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #d1fae5;
  color: #047857;
}

.track-order-mock__shipping-head strong {
  font-size: 0.9rem;
  font-weight: 800;
}

.track-order-mock__post-label {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #065f46;
}

.track-order-mock__post-code {
  display: block;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d1fae5;
  font-family: ui-monospace, monospace;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  color: #064e3b;
  direction: ltr;
}

.track-order-mock__shipping > p {
  margin: 10px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(6, 95, 70, 0.92);
}

.track-order-mock__dismiss {
  width: 100%;
  padding: 8px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.82rem;
  color: #737373;
  cursor: default;
}

/* ── Marketplace multi-vendor sections ── */
.section--marketplace {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(249, 115, 22, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.section--marketplace-vendor {
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(16, 185, 129, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.section-head--compact { margin-bottom: 20px; }

.mp-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 28px;
  padding: 0;
  max-width: 920px;
}

.mp-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.12);
}

/* Storefront row */
.mp-storefront-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.mp-store-mock,
.mp-product-mock {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow:
    0 24px 60px -28px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  direction: rtl;
  font-size: 13px;
}

.mp-product-mock {
  font-size: 14px;
}

.mp-store-page {
  background: #fafaf9;
  --site-accent: #d97706;
  --site-text: #1c1917;
  --site-bg: #fafaf9;
}

.mp-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f5f5f4;
  border-bottom: 1px solid #e7e5e4;
}

.mp-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6d3d1;
}

.mp-browser-bar span:nth-child(1) { background: #fca5a5; }
.mp-browser-bar span:nth-child(2) { background: #fcd34d; }
.mp-browser-bar span:nth-child(3) { background: #86efac; }

.mp-browser-bar code {
  margin-right: auto;
  font-size: 0.65rem;
  color: #78716c;
  background: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #e7e5e4;
}

.mp-browser-bar--sm code { font-size: 0.6rem; }

/* Mini site header inside store mock */
.mp-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 14px;
  background: #fff;
  border-bottom: 1px solid color-mix(in srgb, var(--site-text) 8%, transparent);
}

.mp-site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--site-text);
}

.mp-site-header__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--site-accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--site-accent) 25%, transparent);
}

.mp-site-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mp-site-header__pill {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--site-text) 65%, transparent);
  background: color-mix(in srgb, var(--site-text) 4%, white);
  border: 1px solid color-mix(in srgb, var(--site-text) 10%, transparent);
}

/* Hero: banner + identity ON banner */
.mp-store-hero {
  position: relative;
  isolation: isolate;
}

.mp-store-banner {
  position: relative;
  height: 96px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(to left, var(--site-accent), color-mix(in srgb, var(--site-accent) 72%, #6366f1), color-mix(in srgb, var(--site-accent) 45%, #0f172a));
  background-size: 24px 24px, auto;
}

.mp-store-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.mp-store-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 14px 12px;
  pointer-events: none;
}

.mp-store-hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.mp-store-header__identity {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-width: 0;
}

.mp-store-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 3px solid rgba(255, 255, 255, 0.95);
  background: color-mix(in srgb, var(--site-accent) 12%, white);
  color: var(--site-accent);
  font-weight: 900;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
}

.mp-store-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mp-store-name-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.mp-store-name-row h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.mp-store-location {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.88);
}

.mp-store-location svg { opacity: 0.9; flex-shrink: 0; }

.mp-store-slogan {
  margin: 0;
  max-width: 8.5rem;
  text-align: left;
  font-size: 0.62rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

/* Body: sidebar + main panel */
.mp-store-body {
  display: grid;
  grid-template-columns: 9.5rem minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px 12px;
}

.mp-store-sidebar {
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #fff;
  padding: 10px 8px;
  box-shadow: 0 4px 14px -12px rgba(15, 23, 42, 0.12);
  align-self: start;
}

.mp-store-sidebar h4 {
  margin: 0 0 8px;
  padding: 0 4px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #171717;
}

.mp-cat-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid #f5f5f4;
  background: color-mix(in srgb, #fafaf9 50%, white);
  max-height: 200px;
  overflow: hidden;
}

.mp-cat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 6px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #404040;
}

.mp-cat-item.is-active {
  background: color-mix(in srgb, var(--site-accent) 11%, white);
  color: var(--site-accent);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--site-accent) 35%, transparent);
}

.mp-cat-radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #d4d4d4;
  background: #fff;
  flex-shrink: 0;
  position: relative;
}

.mp-cat-item.is-active .mp-cat-radio {
  border-color: var(--site-accent);
  background: var(--site-accent);
}

.mp-cat-item.is-active .mp-cat-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
}

.mp-cat-item span:nth-child(2) {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mp-cat-item em {
  font-style: normal;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 999px;
  background: #f5f5f4;
  color: #737373;
  flex-shrink: 0;
}

.mp-cat-item.is-active em {
  background: color-mix(in srgb, var(--site-accent) 15%, white);
  color: var(--site-accent);
}

/* Main products panel — elevated */
.mp-store-main {
  min-width: 0;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--site-text) 10%, transparent);
  background: color-mix(in srgb, var(--site-bg) 95%, #ffffff);
  padding: 10px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 14px 36px -20px color-mix(in srgb, var(--site-text) 20%, transparent);
}

.mp-store-main-head {
  margin: 0 0 10px;
  font-size: 0.72rem;
  color: color-mix(in srgb, var(--site-text) 56%, transparent);
}

.mp-store-main-head strong {
  color: var(--site-text);
  font-weight: 800;
}

.mp-store-main-dot {
  margin: 0 4px;
  color: color-mix(in srgb, var(--site-text) 30%, transparent);
}

/* Product cards — like ProductCard sm */
.mp-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mp-pcard {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.mp-pcard__media {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f4;
  border: 1px solid color-mix(in srgb, var(--site-text) 7.5%, var(--site-bg));
  box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.18);
}

.mp-pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mp-pcard__body {
  padding: 6px 4px 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.mp-pcard__vendor {
  font-size: 0.58rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--site-accent) 72%, var(--site-text));
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mp-pcard__cat {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--site-text) 38%, var(--site-bg));
}

.mp-pcard__title {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--site-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.8em;
}

.mp-pcard__price {
  margin-top: auto;
  padding-top: 4px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}

.mp-pcard__price strong {
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--site-accent);
}

.mp-pcard__price del {
  font-size: 0.58rem;
  color: #a8a29e;
}

.mp-store-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}

.mp-store-pagination button {
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid #e7e5e4;
  background: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  color: #44403c;
  font-family: inherit;
  cursor: default;
}

.mp-store-pagination button.is-disabled {
  opacity: 0.4;
}

.mp-store-pagination span {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--site-accent);
  min-width: 20px;
  text-align: center;
}

/* Product page mock */
.mp-product-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 16px 12px;
}

.mp-product-visual {
  aspect-ratio: 3 / 4;
  max-height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f4;
}

.mp-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mp-product-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-product-info h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1c1917;
  line-height: 1.5;
}

.mp-product-cat {
  font-size: 0.75rem;
  color: #78716c;
  font-weight: 600;
}

.mp-product-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.mp-product-price strong {
  font-size: 1.2rem;
  font-weight: 900;
  color: #d97706;
}

.mp-product-price del {
  font-size: 0.82rem;
  color: #a8a29e;
}

.mp-discount-badge {
  padding: 3px 8px;
  border-radius: 6px;
  background: #fef2f2;
  color: #dc2626;
  font-size: 0.72rem;
  font-weight: 800;
}

.mp-seller-block {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 8px 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e7e5e4;
  background: color-mix(in srgb, #78716c 4%, #fafaf9);
}

.mp-seller-block__logo {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #f5f5f4;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #d97706;
  align-self: center;
}

.mp-seller-block em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: #78716c;
}

.mp-seller-block strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: #1c1917;
}

.mp-seller-block__link {
  grid-column: 1 / -1;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid #e7e5e4;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  color: #44403c;
  cursor: default;
  font-family: inherit;
  text-align: center;
}

.mp-variant-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
}

.mp-variant-row > span { color: #78716c; font-weight: 700; min-width: 2.5rem; }

.mp-variant-row div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mp-variant-row b {
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid #e7e5e4;
  font-weight: 700;
  font-size: 0.78rem;
  min-width: 2.5rem;
  text-align: center;
}

.mp-variant-row b.is-active {
  background: #d97706;
  border-color: #d97706;
  color: #fff;
}

.mp-add-cart {
  width: 100%;
  padding: 13px 16px;
  border: none;
  border-radius: 12px;
  background: #d97706;
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: default;
  font-family: inherit;
  margin-top: 4px;
}

.mp-review-snippet {
  margin: 0 16px 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #f0f0f0;
  background: #fafaf9;
}

.mp-review-snippet__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.72rem;
}

.mp-review-snippet__head strong { color: #d97706; }

.mp-review-snippet blockquote {
  margin: 0;
  font-size: 0.72rem;
  color: #44403c;
  line-height: 1.55;
}

.mp-review-snippet cite {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 0.65rem;
  color: #78716c;
}

.mp-vendor-reply {
  margin-top: 8px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e7e5e4;
}

.mp-vendor-reply span {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  color: #059669;
  margin-bottom: 2px;
}

.mp-vendor-reply p {
  margin: 0;
  font-size: 0.68rem;
  color: #44403c;
}

/* Vendor panel shell */
.mp-vendor-shell {
  --mp-accent: #d97706;
  display: flex;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow:
    0 24px 60px -28px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  margin-bottom: 24px;
  direction: rtl;
  font-size: 13px;
}

.mp-vendor-sidebar {
  width: 210px;
  flex-shrink: 0;
  border-left: 1px solid #f0f0f0;
  background: #fafafa;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-vendor-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #f0f0f0;
}

.mp-vendor-sidebar__avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--mp-accent) 12%, white);
  color: var(--mp-accent);
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mp-vendor-sidebar__brand strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #1c1917;
}

.mp-vendor-sidebar__brand em {
  font-style: normal;
  font-size: 0.58rem;
  color: #059669;
  font-weight: 700;
}

.mp-vendor-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mp-vendor-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #57534e;
}

.mp-vendor-nav__item.is-active {
  background: color-mix(in srgb, var(--mp-accent) 10%, white);
  color: #1c1917;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--mp-accent) 18%, transparent);
}

.mp-vendor-nav__item.is-done {
  color: #059669;
  font-size: 0.68rem;
}

.mp-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--mp-accent);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-style: normal;
}

.mp-badge--hot { background: #dc2626; }

.mp-vendor-main {
  flex: 1;
  min-width: 0;
  padding: 14px;
  background: #fafafa;
}

.mp-vendor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 100%;
}

.mp-vendor-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f0f0f0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mp-vendor-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mp-vendor-card h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1c1917;
}

.mp-card-tag {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  background: #f5f5f4;
  color: #78716c;
}

.mp-card-tag--green {
  background: #ecfdf5;
  color: #059669;
}

.mp-doc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mp-doc-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  border-radius: 8px;
  background: #fafaf9;
  font-size: 0.7rem;
}

.mp-doc-list li.is-done em { color: #059669; font-style: normal; font-weight: 700; }

.mp-card-note {
  margin: 0;
  font-size: 0.65rem;
  color: #78716c;
  line-height: 1.5;
}

.mp-card-note code {
  font-size: 0.6rem;
  background: #f5f5f4;
  padding: 1px 4px;
  border-radius: 4px;
}

.mp-charter-text {
  flex: 1;
  max-height: 110px;
  overflow: hidden;
  padding: 8px;
  border-radius: 8px;
  background: #fafaf9;
  border: 1px solid #f0f0f0;
  font-size: 0.68rem;
  color: #44403c;
  line-height: 1.6;
}

.mp-charter-text p { margin: 0 0 4px; }

.mp-charter-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #44403c;
}

.mp-btn {
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: default;
}

.mp-btn--accent {
  background: var(--mp-accent);
  color: #fff;
}

.mp-period-select,
.mp-filter-select {
  font-size: 0.65rem;
  font-weight: 700;
  color: #57534e;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid #e7e5e4;
  background: #fff;
}

.mp-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.mp-kpi {
  padding: 6px;
  border-radius: 8px;
  background: #fafaf9;
  text-align: center;
}

.mp-kpi em {
  display: block;
  font-style: normal;
  font-size: 0.58rem;
  color: #78716c;
  margin-bottom: 2px;
}

.mp-kpi strong {
  font-size: 0.78rem;
  font-weight: 900;
  color: #d97706;
}

.mp-chart {
  flex: 1;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mp-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  padding: 0 4px;
}

.mp-chart__bars span {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 6px 6px 2px 2px;
  background: color-mix(in srgb, var(--mp-accent) 35%, white);
  border: 1px solid color-mix(in srgb, var(--mp-accent) 45%, transparent);
}

.mp-chart__legend {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  font-size: 0.6rem;
  color: #78716c;
}

.mp-review-item {
  padding: 8px;
  border-radius: 10px;
  background: #fafaf9;
  border: 1px solid #f0f0f0;
}

.mp-review-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
}

.mp-review-item__top strong {
  font-size: 0.72rem;
  font-weight: 800;
}

.mp-review-item p {
  margin: 0;
  font-size: 0.68rem;
  color: #44403c;
  line-height: 1.5;
}

.mp-status {
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 800;
  white-space: nowrap;
}

.mp-status--pending {
  background: #fffbeb;
  color: #b45309;
}

.mp-status--ok {
  background: #ecfdf5;
  color: #059669;
}

.mp-review-reply-box {
  margin-top: 6px;
  padding: 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px dashed #e7e5e4;
}

.mp-review-reply-box em {
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 800;
  color: #78716c;
}

.mp-review-reply-box p {
  margin: 2px 0 0;
  font-size: 0.65rem;
}

/* Finance bottom row */
.mp-finance-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mp-finance-card {
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  padding: 14px;
  box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.15);
  direction: rtl;
  font-size: 13px;
}

.mp-finance-card header {
  margin-bottom: 10px;
}

.mp-finance-card h3 {
  margin: 4px 0 0;
  font-size: 0.85rem;
  font-weight: 800;
  color: #1c1917;
}

.mp-mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.68rem;
}

.mp-mini-table th,
.mp-mini-table td {
  padding: 6px 8px;
  text-align: right;
  border-bottom: 1px solid #f5f5f4;
}

.mp-mini-table th {
  font-weight: 800;
  color: #78716c;
  font-size: 0.62rem;
}

.mp-commission-default {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  background: color-mix(in srgb, #d97706 8%, white);
  border: 1px solid color-mix(in srgb, #d97706 20%, transparent);
  margin-bottom: 8px;
  font-size: 0.72rem;
}

.mp-commission-default strong {
  font-size: 1.1rem;
  font-weight: 900;
  color: #d97706;
}

.mp-commission-overrides {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}

.mp-commission-overrides li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f5f5f4;
  font-size: 0.7rem;
}

.mp-commission-overrides em {
  font-style: normal;
  font-size: 0.65rem;
  color: #78716c;
  font-weight: 600;
}

.mp-override {
  color: #d97706 !important;
  font-weight: 800 !important;
}

.mp-withdraw-hint {
  padding: 8px 10px;
  border-radius: 10px;
  background: #fafaf9;
  border: 1px solid #f0f0f0;
}

.mp-withdraw-hint strong {
  display: block;
  font-size: 0.72rem;
  margin-bottom: 2px;
}

.mp-withdraw-hint p {
  margin: 0;
  font-size: 0.65rem;
  color: #78716c;
}

.mp-invoice__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.mp-invoice__head strong {
  display: block;
  font-size: 0.78rem;
}

.mp-invoice__head em {
  font-style: normal;
  font-size: 0.62rem;
  color: #78716c;
}

.mp-invoice-vendor {
  padding: 4px 8px;
  border-radius: 8px;
  background: color-mix(in srgb, #d97706 10%, white);
  font-size: 0.65rem;
  font-weight: 800;
  color: #92400e;
}

.mp-invoice-total td {
  font-weight: 900;
  color: #1c1917;
  border-top: 2px solid #e7e5e4;
}

.mp-checkout-split {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.mp-split-chip {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  background: #f5f5f4;
  color: #44403c;
  border: 1px solid #e7e5e4;
}

.mp-split-chip--total {
  background: #1c1917;
  color: #fff;
  border-color: #1c1917;
}

/* ── Bale & Telegram platform hub ── */
.section--msg-hub {
  padding: clamp(32px, 4vw, 48px) 0;
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(0, 136, 204, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.msg-hub-card {
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  padding: clamp(20px, 3vw, 28px);
  box-shadow:
    0 24px 60px -28px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.msg-hub-card__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.msg-hub-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
  border: 1px solid #e7e5e4;
  box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.15);
}

.msg-hub-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.msg-hub-card__intro {
  flex: 1;
  min-width: min(100%, 280px);
}

.msg-hub-card__intro h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
}

.msg-hub-card__intro p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 52rem;
}

.msg-hub-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.msg-hub-role {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #f0f0f0;
  background: #fafaf9;
}

.msg-hub-role__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.msg-hub-role__badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.msg-hub-role__badge--admin {
  background: #eff6ff;
  color: #1d4ed8;
}

.msg-hub-role__badge--ops {
  background: #fff7ed;
  color: #c2410c;
}

.msg-hub-role__badge--vendor {
  background: #ecfdf5;
  color: #047857;
}

.msg-hub-role__channels {
  display: flex;
  align-items: center;
  gap: 6px;
}

.msg-hub-role__channels img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.msg-hub-role p {
  margin: 0;
  font-size: 0.78rem;
  color: #57534e;
  line-height: 1.55;
}

/* ── Support operator section ── */
.section--support-ops {
  background:
    radial-gradient(ellipse 65% 45% at 0% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 100%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.support-ops-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 28px;
  padding: 0;
  max-width: 820px;
}

.support-ops-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.12);
}

/* Messenger shell */
.support-messenger {
  --support-accent: #d97706;
  display: flex;
  min-height: 480px;
  max-height: 560px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow:
    0 24px 60px -28px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  margin-bottom: 24px;
  direction: rtl;
  font-size: 13px;
  position: relative;
}

/* Inbox sidebar */
.support-messenger__inbox {
  width: 32%;
  max-width: 300px;
  min-width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #f0f0f0;
  background: color-mix(in srgb, var(--support-accent) 3%, #fafafa);
}

.support-inbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--support-accent) 10%, #f0f0f0);
  background: linear-gradient(180deg, color-mix(in srgb, var(--support-accent) 7%, white), color-mix(in srgb, var(--support-accent) 2%, #fafafa));
}

.support-inbox-head__title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.support-inbox-head__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--support-accent);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px -6px rgba(217, 119, 6, 0.5);
}

.support-inbox-head__title strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #1c1917;
}

.support-inbox-head__title em {
  font-style: normal;
  font-size: 0.65rem;
  color: #78716c;
}

.support-inbox-head__badge {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--support-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
}

.support-inbox-search,
.support-inbox-filter {
  margin: 8px 12px 0;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #e7e5e4;
  background: #fff;
  font-size: 0.72rem;
  color: #a8a29e;
}

.support-inbox-filter { margin-bottom: 4px; color: #57534e; font-weight: 600; }

.support-ticket-row {
  width: 100%;
  text-align: right;
  padding: 14px 14px 12px;
  border: none;
  border-bottom: 1px solid rgba(245, 245, 244, 0.95);
  background: transparent;
  cursor: default;
  font-family: inherit;
  transition: background 0.15s;
}

.support-ticket-row:hover { background: rgba(255, 255, 255, 0.75); }

.support-ticket-row.is-active {
  background: #fff;
  box-shadow: inset 3px 0 0 0 var(--support-accent);
}

.support-ticket-row__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 3px;
}

.support-ticket-row__top strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1c1917;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-ticket-row__subject {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #44403c;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-ticket-row__preview {
  display: block;
  font-size: 0.68rem;
  color: #78716c;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 4px;
}

.support-ticket-row__meta {
  font-size: 0.62rem;
  color: #a8a29e;
}

.support-inbox-unread {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--support-accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.support-status {
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
}

.support-status--open {
  background: color-mix(in srgb, var(--support-accent) 12%, white);
  color: var(--support-accent);
  border: 1px solid color-mix(in srgb, var(--support-accent) 25%, transparent);
}

.support-status--assigned {
  background: color-mix(in srgb, var(--support-accent) 18%, white);
  color: color-mix(in srgb, var(--support-accent) 75%, #111);
  border: 1px solid color-mix(in srgb, var(--support-accent) 30%, transparent);
}

.support-status--pending {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

/* Main chat */
.support-messenger__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: rgba(250, 250, 249, 0.6);
  position: relative;
}

.support-chat-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(231, 229, 228, 0.9);
  background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--support-accent) 3%, white));
}

.support-chat-head__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.support-chat-head__title-row h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1c1917;
}

.support-ticket-num {
  display: block;
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  color: #a8a29e;
  margin-bottom: 8px;
}

.support-chat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.support-chat-tags span {
  padding: 4px 8px;
  border-radius: 8px;
  background: #f5f5f4;
  font-size: 0.65rem;
  font-weight: 600;
  color: #57534e;
}

.support-chat-tags span:last-child {
  background: color-mix(in srgb, var(--support-accent) 8%, white);
  color: var(--support-accent);
}

.support-chat-head__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.support-btn {
  border: none;
  border-radius: 12px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: default;
}

.support-btn--accent {
  background: var(--support-accent);
  color: #fff;
  box-shadow: 0 4px 14px -6px rgba(217, 119, 6, 0.55);
}

.support-btn--ghost {
  background: #fff;
  border: 1px solid #e7e5e4;
  color: #57534e;
}

.support-btn--full { width: 100%; margin-top: 4px; }

.support-select-mock {
  padding: 7px 10px;
  border-radius: 10px;
  border: 1px solid #e7e5e4;
  background: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  color: #57534e;
}

.support-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-msg {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 14px;
  position: relative;
}

.support-msg__label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  opacity: 0.85;
}

.support-msg p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
}

.support-msg time {
  display: block;
  margin-top: 5px;
  font-size: 0.58rem;
  opacity: 0.55;
}

.support-msg--customer {
  align-self: flex-start;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-bottom-right-radius: 4px;
  color: #1c1917;
}

.support-msg--staff {
  align-self: flex-end;
  background: color-mix(in srgb, var(--support-accent) 92%, #111);
  color: #fff;
  border-bottom-left-radius: 4px;
}

.support-msg--staff .support-msg__label { color: rgba(255,255,255,0.85); }

.support-msg--system {
  align-self: center;
  max-width: 92%;
  background: #f5f5f4;
  border: 1px dashed #d6d3d1;
  border-radius: 10px;
  text-align: center;
  color: #57534e;
}

.support-msg--system p { font-size: 0.72rem; }

.support-chat-compose {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid #e7e5e4;
  background: #fff;
}

.support-chat-compose input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e7e5e4;
  font-family: inherit;
  font-size: 0.78rem;
  background: #fafaf9;
  color: #78716c;
}

/* Assign modal */
.support-assign-modal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(3px);
  pointer-events: none;
}

.support-assign-modal__card {
  width: min(100%, 280px);
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.35);
  text-align: right;
}

.support-assign-modal__card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #1c1917;
  margin-bottom: 4px;
}

.support-assign-modal__card > p {
  margin: 0 0 14px;
  font-size: 0.72rem;
  color: #78716c;
  line-height: 1.5;
}

.support-assign-field {
  display: block;
  margin-bottom: 10px;
}

.support-assign-field span:first-child {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #78716c;
  margin-bottom: 4px;
}

.support-assign-select {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid #e7e5e4;
  background: #fafaf9;
  font-size: 0.75rem;
  font-weight: 600;
  color: #44403c;
}

.support-assign-select.is-highlight {
  border-color: color-mix(in srgb, var(--support-accent) 40%, #e7e5e4);
  background: color-mix(in srgb, var(--support-accent) 6%, white);
}

/* Bottom row */
.support-ops-bottom {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: stretch;
}

.support-bots-card,
.support-survey-card {
  padding: 20px 22px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,255,255,0.9));
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.16);
}

.support-bots-card header,
.support-survey-card header {
  margin-bottom: 16px;
}

.support-bots-card__title-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.support-bots-card__logos {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e7e5e4;
  flex-shrink: 0;
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.1);
}

.support-bots-card__logos img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.support-bots-card h3,
.support-survey-card h3 {
  margin: 6px 0 4px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.support-bots-card header p,
.support-survey-card header p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.support-bots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.support-bot-tile {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e7e5e4;
}

.support-bot-tile__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 1px solid #f5f5f4;
}

.support-bot-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.support-bot-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.support-bot-tile__head strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #1c1917;
}

.support-bot-tile__head em {
  font-style: normal;
  font-size: 0.62rem;
  color: #78716c;
  direction: ltr;
  display: block;
  text-align: left;
}

.support-bot-on {
  margin-right: auto;
  padding: 2px 8px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.6rem;
  font-weight: 800;
}

.support-bot-notif {
  padding: 10px 12px;
  font-size: 0.72rem;
  line-height: 1.5;
}

.support-bot-tile--tg .support-bot-notif { background: #f0f9ff; color: #0c4a6e; }
.support-bot-tile--bale .support-bot-notif { background: #f0fdf4; color: #14532d; }

.support-bot-notif strong { display: block; margin-bottom: 3px; font-size: 0.74rem; }
.support-bot-notif p { margin: 0 0 4px; }
.support-bot-notif em { font-style: normal; font-size: 0.62rem; opacity: 0.75; }

.support-survey-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.support-survey-opt {
  min-width: 4.2rem;
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid #e7e5e4;
  background: #fff;
  font-family: inherit;
  cursor: default;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.support-survey-opt span { display: block; font-size: 1.4rem; line-height: 1; }
.support-survey-opt em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 600;
  color: #78716c;
}

.support-survey-opt.is-selected {
  border-color: var(--orange);
  background: color-mix(in srgb, var(--orange) 12%, white);
  box-shadow: 0 6px 16px -8px rgba(249, 115, 22, 0.45);
  transform: scale(1.04);
}

.support-survey-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e7e5e4;
  font-family: inherit;
  font-size: 0.78rem;
  resize: none;
  margin-bottom: 10px;
  background: #fafaf9;
  color: #44403c;
}

.support-survey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-survey-actions .support-btn--accent { flex: 1; min-width: 100px; }

/* AI support — دو بلوک: آگاهی هوشمند + نمونه FAQ */
.section--ai {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(249, 115, 22, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 0% 100%, rgba(11, 18, 32, 0.05) 0%, transparent 50%);
}

.ai-intelligence-panel {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 56px);
  padding: clamp(18px, 2.5vw, 32px);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.88));
  border: 1px solid rgba(249, 115, 22, 0.18);
  box-shadow:
    0 28px 64px -32px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

.ai-mannequin {
  margin: 0;
  text-align: center;
  max-width: min(220px, 38vw);
  justify-self: center;
}

.ai-mannequin-frame {
  background: transparent;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.ai-mannequin-frame::before {
  display: none;
}

.ai-mannequin-frame img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 12px 28px rgba(15, 23, 42, 0.12));
}

.ai-mannequin figcaption {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.5;
}

.ai-panel-title {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.ai-panel-lead,
.ai-panel-detail {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.9;
  color: #475569;
}

.ai-panel-lead strong,
.ai-panel-detail strong {
  color: var(--navy);
  font-weight: 800;
}

.ai-capabilities {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ai-capabilities li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.06);
  line-height: 1.65;
  text-align: right;
}

.ai-capabilities li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
}

.ai-providers {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.ai-providers-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.ai-providers-note {
  margin: 0 0 12px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.ai-providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-provider-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  box-shadow: 0 8px 20px -14px rgba(15, 23, 42, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-provider-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -14px rgba(15, 23, 42, 0.4);
}

.ai-provider-chip em {
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--navy);
}

.ai-provider-chip .openai-mark {
  width: 28px !important;
  height: 28px !important;
  padding: 4px !important;
  border-radius: 8px !important;
}

.ai-provider-chip--deepseek em { color: #1d4ed8; }
.ai-provider-chip--deepseek { border-color: rgba(29, 78, 216, 0.2); background: linear-gradient(145deg, #fff, rgba(239, 246, 255, 0.95)); }

.ai-provider-chip--qwen em { color: #6d28d9; }
.ai-provider-chip--qwen { border-color: rgba(109, 40, 217, 0.2); background: linear-gradient(145deg, #fff, rgba(245, 243, 255, 0.95)); }

.ai-provider-chip--gemini em { color: #0d9488; }
.ai-provider-chip--gemini { border-color: rgba(13, 148, 136, 0.22); background: linear-gradient(145deg, #fff, rgba(240, 253, 250, 0.95)); }

.ai-provider-chip--grok em { color: #0f172a; }
.ai-provider-chip--grok { border-color: rgba(15, 23, 42, 0.18); background: linear-gradient(145deg, #fff, rgba(248, 250, 252, 0.98)); }

.ai-demo-panel {
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px -28px rgba(15, 23, 42, 0.18);
}

.ai-demo-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}

.ai-demo-head h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 800;
  color: var(--navy);
}

.ai-demo-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.ai-support-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.ai-powered-chip {
  margin: 12px auto 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px -16px rgba(15, 23, 42, 0.35);
}

.ai-powered-chip span {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
}

.ai-support-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 55px -28px rgba(15, 23, 42, 0.75);
  max-width: 430px;
  width: 100%;
}

.ai-support-image img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-showcase {
  display: grid;
  gap: 12px;
}

.faq-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 
    0 8px 24px -12px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(249, 115, 22, 0.04) inset,
    0 2px 8px -4px rgba(249, 115, 22, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.faq-card::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange-light), var(--orange), var(--orange-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-card:hover {
  transform: translateX(-4px);
  box-shadow: 
    0 16px 40px -16px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(249, 115, 22, 0.08) inset,
    0 4px 12px -6px rgba(249, 115, 22, 0.15);
}

.faq-card:hover::before {
  opacity: 1;
}

.faq-card h3 {
  font-size: 0.96rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 800;
}

.faq-card p {
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.65;
}

.payment-services {
  margin-top: 24px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9));
  box-shadow:
    0 22px 48px -30px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.payment-services h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.payment-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px -16px rgba(15, 23, 42, 0.32);
}

.service-chip img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.service-chip em {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.service-chip--openai img {
  padding: 4px;
  border-radius: 8px;
  background: #0b1220;
  filter: invert(1);
}

/* OpenAI mark: dark logo on light tile (no invert) */
.openai-mark {
  width: 34px !important;
  height: 34px !important;
  display: block !important;
  object-fit: contain !important;
  padding: 6px !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.2) !important;
  filter: none !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    0 12px 24px -16px rgba(15, 23, 42, 0.45) !important;
}

/* اولویت بالاتر از هر قانون img داخل چیپ هوش مصنوعی */
#ai .ai-powered-chip img.openai-mark,
.pro-openai-box img.openai-mark {
  width: 40px !important;
  height: 40px !important;
  padding: 7px !important;
  border-radius: 11px !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.22) !important;
  filter: none !important;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.06) inset,
    0 10px 26px -14px rgba(15, 23, 42, 0.4) !important;
  flex-shrink: 0;
}

.section--ecosystem {
  padding: 56px 0 64px;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(249, 115, 22, 0.07) 0%, transparent 60%),
    linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.ecosystem-head {
  margin-bottom: 36px;
}

.ecosystem-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 8px 16px rgba(249, 115, 22, 0.15));
}

/* Ecosystem — bento grid */
.ecosystem-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
}

.eco-card {
  position: relative;
  overflow: hidden;
  text-align: right;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 50px -28px rgba(15, 23, 42, 0.18);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.eco-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  pointer-events: none;
}

.eco-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 28px 56px -24px rgba(15, 23, 42, 0.22);
}

.eco-card--tech {
  grid-column: 1;
  grid-row: 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 242, 255, 0.5) 100%);
}

.eco-card--ai {
  grid-column: 2;
  grid-row: 1;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.92) 100%);
}

.eco-card--pay {
  grid-column: 1;
  grid-row: 2;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 237, 0.45) 100%);
}

.eco-card--sms {
  grid-column: 2;
  grid-row: 2;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 250, 0.5) 100%);
}

.eco-card--torob {
  grid-column: 1 / -1;
  grid-row: 3;
  padding: 0;
  background: linear-gradient(135deg, #fff 0%, #fff5f5 45%, #fff 100%);
  border-color: rgba(230, 18, 34, 0.12);
}

.eco-card__head {
  margin-bottom: 18px;
}

.eco-card__tag {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--orange-dark);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.eco-card--tech .eco-card__tag { color: #4338ca; background: rgba(99, 102, 241, 0.1); border-color: rgba(99, 102, 241, 0.15); }
.eco-card--ai .eco-card__tag { color: #0b1220; background: rgba(11, 18, 32, 0.06); border-color: rgba(11, 18, 32, 0.1); }
.eco-card--pay .eco-card__tag { color: var(--orange-dark); background: rgba(249, 115, 22, 0.1); border-color: rgba(249, 115, 22, 0.15); }
.eco-card--sms .eco-card__tag { color: #0f766e; background: rgba(13, 148, 136, 0.1); border-color: rgba(13, 148, 136, 0.15); }
.eco-card__tag--torob { color: #c81e1e; background: rgba(230, 18, 34, 0.1); border-color: rgba(230, 18, 34, 0.18); }

.eco-card__head h3 {
  margin: 0 0 5px;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.eco-card__head p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Logo tiles */
.eco-logos {
  display: grid;
  gap: 10px;
}

.eco-logos--5 { grid-template-columns: repeat(5, 1fr); }
.eco-logos--6 { grid-template-columns: repeat(3, 1fr); }
.eco-logos--2 { grid-template-columns: repeat(2, 1fr); }
.eco-logos--1 { grid-template-columns: 1fr; max-width: 120px; margin-inline: auto; }

.eco-logo-tile {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 16px -8px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.eco-card:hover .eco-logo-tile:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 8px 20px -10px rgba(249, 115, 22, 0.2);
}

.eco-logo-tile img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.eco-logo-tile figcaption {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  text-align: center;
  line-height: 1.3;
}

.eco-logo-tile--featured {
  padding: 18px 12px 16px;
}

.eco-logo-tile--featured img.openai-mark {
  width: 44px !important;
  height: 44px !important;
  padding: 8px !important;
}

/* Torob featured strip */
.eco-torob-inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3.5vw, 32px);
}

.eco-torob-logo {
  flex-shrink: 0;
  margin: 0;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(230, 18, 34, 0.12);
  box-shadow: 0 12px 32px -16px rgba(230, 18, 34, 0.35);
}

.eco-torob-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.eco-torob-copy h3 {
  margin: 0 0 6px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 800;
  color: var(--navy);
}

.eco-torob-copy p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
}

.payment-services--standalone {
  margin-top: 0;
  padding: clamp(22px, 3vw, 30px);
  text-align: center;
}

.payment-services--standalone .payment-services-list {
  justify-content: center;
}

.payment-services--standalone .service-chip {
  min-width: 186px;
  justify-content: center;
}

.payment-services--standalone h3 {
  text-align: center;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
}

.payment-services--standalone .service-chip {
  padding: 12px 16px;
}

.payment-services--standalone .service-chip img {
  width: 42px;
  height: 42px;
}

.payment-services--standalone .service-chip em {
  font-size: 1rem;
}

.service-chip--faraz img,
.service-chip--raygan img {
  border-radius: 8px;
  object-fit: contain;
}

/* SMS services panel */
.sms-services-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  margin-top: 22px;
  padding: clamp(18px, 2.5vw, 26px);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 250, 0.9));
  border: 1px solid rgba(13, 148, 136, 0.18);
  box-shadow: 0 18px 44px -26px rgba(15, 23, 42, 0.16);
  text-align: right;
}

.sms-services-copy {
  flex: 1 1 280px;
  min-width: 0;
}

.sms-services-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  color: var(--navy);
}

.sms-services-copy p {
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.85;
  color: #475569;
}

.sms-services-copy p strong {
  color: var(--navy);
  font-weight: 800;
}

.sms-services-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.sms-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.55;
}

.sms-services-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: #0d9488;
}

.sms-services-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.sms-provider-card {
  margin: 0;
  width: min(140px, 38vw);
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px -16px rgba(15, 23, 42, 0.25);
  text-align: center;
}

.sms-provider-card img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
}

.sms-provider-card figcaption {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
}

/* Admin demo panel */
.admin-demo-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  margin-bottom: 28px;
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(11, 18, 32, 0.97), rgba(30, 41, 59, 0.94));
  border: 1px solid rgba(249, 115, 22, 0.28);
  box-shadow:
    0 24px 56px -28px rgba(11, 18, 32, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.admin-demo-copy {
  flex: 1 1 300px;
  min-width: 0;
  text-align: right;
}

.admin-demo-copy .section-tag {
  margin-bottom: 8px;
}

.admin-demo-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: #fff;
}

.admin-demo-copy > p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.admin-demo-credentials {
  margin: 0;
  display: grid;
  gap: 10px;
}

.admin-demo-credentials div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-demo-credentials dt {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

.admin-demo-credentials dd {
  margin: 0;
}

.admin-demo-credentials code {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--orange-light);
  letter-spacing: 0.02em;
}

.admin-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-demo-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.admin-demo-actions .btn-outline:hover {
  border-color: var(--orange-light);
  color: var(--orange-light);
}

/* ── Panels showcase (4 roles — screenshots) ── */
.section--panels {
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.04) 0%, transparent 40%);
}

.panels-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: 24px;
}

.panel-shot {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 14px 40px -18px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(226, 232, 240, 0.9);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.panel-shot:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 50px -20px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(249, 115, 22, 0.15);
}

.panel-shot__head {
  padding: 16px 18px 12px;
  text-align: right;
}

.panel-shot__head strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.panel-shot__head span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.panel-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-top: 1px solid var(--line);
  object-fit: cover;
  object-position: top center;
}

.panels-footnote {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted);
}

/* Equal pair for filter/shop */
.equal-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Info strip */
.info-strip {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--orange-dark);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

/* CTA Section - Premium Dark Theme */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 30px 4vw;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(251, 146, 60, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0b1220 0%, #0f172a 50%, #1e293b 100%);
  border-radius: var(--radius-lg);
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 40px 80px -20px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  color: #fff;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-glow {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 50%, var(--orange) 100%);
  background-size: 200% 100%;
  color: #fff;
  box-shadow: 
    0 0 40px rgba(249, 115, 22, 0.4),
    0 8px 24px -8px rgba(249, 115, 22, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  padding: 18px 36px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  animation: btn-glow-pulse 2s ease-in-out infinite;
}

@keyframes btn-glow-pulse {
  0%, 100% { 
    box-shadow: 
      0 0 40px rgba(249, 115, 22, 0.4),
      0 8px 24px -8px rgba(249, 115, 22, 0.5);
  }
  50% { 
    box-shadow: 
      0 0 60px rgba(249, 115, 22, 0.6),
      0 12px 32px -8px rgba(249, 115, 22, 0.6);
  }
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.btn-glow:hover {
  transform: translateY(-4px) scale(1.02);
  background-position: 100% 0;
  animation: none;
  box-shadow: 
    0 0 80px rgba(249, 115, 22, 0.7),
    0 16px 40px -12px rgba(249, 115, 22, 0.6);
}

.btn-glow:hover::before {
  left: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 16px 32px;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); }

/* Footer - Premium Dark */
.footer {
  background: 
    radial-gradient(ellipse at 0% 0%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  padding: 60px 0 40px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .dot { width: 10px; height: 10px; }
.footer-brand strong { color: #fff; font-size: 1.2rem; font-weight: 800; }

.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-weight: 500; }
.footer-links a:hover { color: var(--orange-light); }

.footer-bottom { text-align: center; font-size: 0.85rem; opacity: 0.6; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Hardening on larger tablets */
@media (max-width: 1200px) {
  .hero-tech-note {
    white-space: normal;
    font-size: 0.8rem;
  }
}

/* Tablets & small laptops */
@media (max-width: 1024px) {
  .hero { padding: 40px 0 48px; }
  .hero-feature-hub { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .hero-hub-card--featured { grid-column: span 3; }
  .hero-hub-panel { padding: 16px; border-radius: 22px; }
  .hero-hub-panel__head { flex-direction: column; align-items: flex-start; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { text-align: center; padding-top: 0; }
  .actions { justify-content: center; }
  .stats { max-width: 500px; margin: 0 auto; }
  .hero-visual-stack {
    order: -1;
    width: 100%;
  }
  .hero-product-visual {
    --tech-icon-size: 52px;
    padding: clamp(12px, 3vw, 24px);
  }
  .hero-image-wrap { max-height: 350px; }

  .hero-title-row {
    justify-content: center;
  }

  .hero-tech-note {
    white-space: normal;
    text-align: center;
  }

  .spiral-gallery { grid-template-columns: 1fr; }
  .spiral-item.s1,
  .spiral-item.s2,
  .spiral-item.s3,
  .spiral-item.s4,
  .spiral-item.s5,
  .spiral-item.s6,
  .spiral-item.s7 {
    grid-column: auto;
    transform: none;
  }

  .spiral-item--split {
    flex-direction: column;
    align-items: stretch;
  }

  .spiral-item--split .spiral-media {
    order: -1;
    width: 100%;
  }

  .spiral-item--split .spiral-copy,
  .spiral-item--text-outside .spiral-copy--sticky {
    flex: 1 1 auto;
    width: 100%;
  }

  .spiral-item--text-outside .spiral-copy--sticky {
    padding-right: 14px;
  }

  .feature-grid,
  .feature-grid.three-col { grid-template-columns: 1fr; }

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

  .duo-flow { grid-template-columns: 1fr; }
  .arrow-flow { margin: 0 auto; transform: rotate(90deg); }
  .flow-section--story .arrow-flow,
  .flow-section--order .arrow-flow {
    animation: pulse-arrow 2s ease-in-out infinite;
  }

  .equal-pair { grid-template-columns: 1fr; }

  /* Shop showcase: stack on tablets */
  .shop-showcase-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .shop-showcase-figure--filter,
  .shop-showcase-figure--shop {
    grid-column: auto;
  }

  .pro-hero-wrap { grid-template-columns: 1fr; padding-bottom: 28px; }
  .pro-hero-visual { width: 100%; }
  .pro-hero-screens { padding-bottom: clamp(64px, 14%, 96px); }
  .pro-suggest-float { width: min(52%, 240px); }
  .pro-hero-visual .pro-openai-box { left: 8px; top: 4px; }
  .sets-block,
  .sets-block--reverse {
    flex-direction: column;
    align-items: stretch;
  }
  .sets-block-media { order: -1; width: 100%; flex: 1 1 auto; }
  .sets-block-copy { flex: 1 1 auto; width: 100%; }
  .sets-pro-bridge { flex-direction: column; text-align: center; }
  .sets-pro-bridge-tags { justify-content: center; }
  .invoice-panel {
    flex-direction: column;
    align-items: stretch;
  }
  .invoice-panel-media { order: -1; width: 100%; flex: 1 1 auto; }
  .invoice-panel-copy { flex: 1 1 auto; width: 100%; }
  .product-page-panel {
    flex-direction: column;
  }
  .product-page-media { order: -1; width: 100%; }
  .product-page-copy { width: 100%; }
  .slug-feature { grid-template-columns: 1fr; }
  .ai-intelligence-panel { grid-template-columns: 1fr; }
  .ai-mannequin { max-width: min(200px, 55vw); }
  .ai-mannequin-frame img { max-width: 180px; }
  .ai-chat-showcase {
    grid-template-columns: 1fr;
  }

  .support-widget-mock {
    max-width: none;
  }

  .ai-support-wrap { grid-template-columns: 1fr; }

  .pro-ai-layout { grid-template-columns: 1fr; }
  .pro-spotlight { min-height: 420px; }
  .pro-side-stack { grid-template-columns: 1fr 1fr; }

  .payment-services--standalone .payment-services-list {
    justify-content: center;
  }

  .payment-services--standalone .service-chip {
    min-width: 140px;
    max-width: 280px;
    flex: 1 1 220px;
  }
}

/* Mobile menu trigger threshold */
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none;
  }
  .nav {
    min-height: 56px;
    padding: 6px 12px;
    gap: 10px;
  }
  .topbar {
    width: min(720px, 94vw);
    top: 12px;
  }
  .brand strong {
    font-size: 1.05rem;
  }
  .brand-logo-mark {
    width: 30px;
    height: 30px;
  }
}

/* Phones (landscape & medium) */
@media (max-width: 768px) {
  .container { width: min(1200px, calc(100vw - 24px)); }
  .section { padding: 56px 0; }

  .section--features {
    padding: 16px 0 28px;
  }

  .section--overview {
    padding: 40px 0 48px;
  }

  .features-topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 14px;
  }

  .section--features .hero-intro__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .section--features .hero-intro__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  /* Hero hub */
  .hero { padding: 32px 0 40px; }
  .hero-feature-hub { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .hero-hub-card--featured { grid-column: span 2; }
  .hero-hub-card { padding: 16px; border-radius: 18px; }
  .hero-hub-panel { padding: 14px; border-radius: 20px; }
  .hero-hub-panel__head { margin-bottom: 14px; padding-bottom: 14px; }
  .hero-hub-panel__hint { max-width: none; }
  .hero-intro__top { flex-direction: column; align-items: stretch; }
  .hero-intro__actions { justify-content: center; }
  .hero-intro__copy { text-align: center; margin-inline: auto; }
  .stats--compact { max-width: none; margin: 0; }
  .hero-copy { padding-top: 0; }
  h1 { font-size: clamp(26px, 7.5vw, 38px); }
  .hero-subtitle { font-size: 1rem; line-height: 1.85; margin-bottom: 22px; }
  .badge { font-size: 0.78rem; padding: 8px 14px; }
  .actions { gap: 10px; }
  .btn { padding: 12px 18px; font-size: 0.9rem; }

  .hero-product-visual {
    --tech-icon-size: 44px;
    padding: clamp(8px, 2vw, 20px);
  }
  .hero-image-wrap { max-height: 320px; padding: 14px; }
  .hero-tech-float {
    width: min(100%, 92%);
    height: calc(100% - 12px);
  }
  .hero-tech-icon--tl {
    transform: translate(-18%, -16%) rotate(-8deg);
    animation: tech-float-tl-mobile 5.4s ease-in-out infinite;
  }
  .hero-tech-icon--tr {
    transform: translate(18%, -16%) rotate(7deg);
    animation: tech-float-tr-mobile 5s ease-in-out infinite;
  }
  .hero-tech-icon--ml {
    transform: translate(-24%, -50%) rotate(-6deg);
    animation: tech-float-ml-mobile 5.6s ease-in-out infinite;
  }
  .hero-tech-icon--mr {
    transform: translate(24%, -50%) rotate(8deg);
    animation: tech-float-mr-mobile 4.8s ease-in-out infinite;
  }
  .hero-tech-icon--bc {
    transform: translate(-50%, 20%) rotate(-5deg);
    animation: tech-float-bc-mobile 5.2s ease-in-out infinite;
  }

  .hero-tech-note {
    font-size: 0.74rem;
    line-height: 1.5;
    padding: 8px 10px;
    margin-bottom: 22px;
  }

  /* Section heads */
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(22px, 5.5vw, 30px); }
  .section-head p { font-size: 1rem; }

  /* Stats */
  .stats { grid-template-columns: 1fr; max-width: 320px; gap: 10px; }
  .stats article {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: right;
    padding: 14px 18px;
  }
  .stats b { margin: 0; font-size: 1.7rem; }
  .stats span { margin: 0; font-size: 0.85rem; }
  .section--overview .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    width: 100%;
    gap: 8px;
  }
  .section--overview .stats article {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    gap: 4px;
  }
  .section--overview .stats b { font-size: 1.35rem; }
  .section--overview .stats span { font-size: 0.68rem; line-height: 1.35; }

  /* Shop showcase stacks */
  .shop-showcase-row {
    grid-template-columns: 1fr;
  }
  .shop-showcase-block {
    padding: 16px;
    border-radius: 18px;
  }
  .product-page-panel {
    flex-direction: column;
    margin-top: 18px;
    padding: 14px;
  }
  .product-page-media { order: -1; width: 100%; flex: 1 1 auto; }
  .product-page-copy { width: 100%; flex: 1 1 auto; }

  /* Pro Online */
  .pro-hero-wrap {
    padding: 18px;
    padding-bottom: 24px;
    border-radius: 22px;
  }
  .pro-hero-copy h2 { font-size: clamp(22px, 5.5vw, 30px); }
  .pro-hero-detail {
    font-size: 0.9rem;
    padding: 12px 14px;
  }
  .pro-hero-modes span { font-size: 0.74rem; }
  .pro-hero-visual .pro-openai-box {
    position: static;
    transform: none;
    margin: 0 0 12px;
    width: fit-content;
    max-width: 100%;
  }
  .pro-hero-screens {
    padding-bottom: 0;
    display: grid;
    gap: 14px;
  }
  .pro-suggest-float {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    transform: none;
  }
  .pro-hero-screens:hover .pro-suggest-float {
    transform: none;
  }
  .pro-hero-image { border-radius: 14px; }
  .pro-spotlight {
    min-height: auto;
    display: block;
    text-align: center;
    padding: 16px;
  }
  .pro-side-stack { grid-template-columns: 1fr; }
  .orbit-note {
    position: static;
    display: inline-flex;
    margin: 4px;
  }

  /* AI / Chip */
  .section--ai .section-head { margin-bottom: 32px; }
  .ai-intelligence-panel {
    padding: 16px;
    margin-bottom: 28px;
  }
  .ai-mannequin { max-width: min(180px, 50vw); }
  .ai-mannequin-frame img { max-width: 160px; }
  .ai-panel-title { font-size: 1.15rem; }
  .ai-panel-lead,
  .ai-panel-detail { font-size: 0.92rem; }
  .ai-capabilities li { font-size: 0.85rem; padding: 9px 12px; gap: 10px; }
  .ai-providers { padding: 14px; }
  .ai-providers-list { gap: 8px; }
  .ai-provider-chip { flex: 1 1 calc(50% - 8px); justify-content: center; }
  .ai-demo-panel { padding: 16px; }
  .ai-demo-head { margin-bottom: 20px; }
  .ai-powered-chip {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .ai-support-image { margin: 0 auto; max-width: 100%; }

  /* FAQ */
  .faq-card { padding: 14px 16px; }
  .faq-card h3 { font-size: 0.92rem; }
  .faq-card p { font-size: 0.85rem; }

  /* Feature cards */
  .feature-card .content { padding: 20px; }
  .feature-card--pagebuilder .content { padding: 22px 20px; }

  /* CTA */
  .cta-section { padding: 70px 0; }
  .cta-section::before { inset: 18px 3vw; }
  .cta-content { padding: 30px 20px; }
  .cta-content h2 { font-size: clamp(22px, 5.5vw, 30px); }
  .cta-content > p { font-size: 1rem; margin-bottom: 24px; }
  .cta-features { flex-direction: column; gap: 10px; align-items: center; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .btn-glow { padding: 16px 24px; }
  .btn-secondary { padding: 14px 22px; }

  /* Footer */
  .footer { padding: 44px 0 30px; }
  .footer-content { flex-direction: column; text-align: center; gap: 18px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
  .footer-links a { font-size: 0.9rem; }

  /* Payment services */
  .payment-services--standalone { padding: 18px 14px; }
  .payment-services--standalone .service-chip {
    min-width: 0;
    flex: 1 1 calc(50% - 12px);
    max-width: none;
    padding: 10px 12px;
  }
  .payment-services--standalone .service-chip img {
    width: 32px;
    height: 32px;
  }
  .payment-services--standalone .service-chip em { font-size: 0.85rem; }

  /* Info strip */
  .info-strip { gap: 10px; margin-top: 24px; }
  .info-strip span { padding: 10px 14px; font-size: 0.82rem; }

  /* Spiral copy */
  .spiral-item--split { padding: 12px; gap: 14px; }
  .spiral-item--split .spiral-copy h3 { font-size: 1.1rem; }
  .spiral-item--split .spiral-copy p { font-size: 0.93rem; }

  .sets-block { padding: 12px; gap: 14px; }
  .sets-block-copy h3 { font-size: 1.08rem; }
  .sets-block-copy p { font-size: 0.9rem; }
  .sets-pro-bridge { padding: 16px; }
  .sets-pro-bridge-copy p { font-size: 0.88rem; }
  .invoice-panel { padding: 14px; gap: 16px; }
  .invoice-panel-copy h3 { font-size: 1.1rem; }
  .invoice-panel-lead { font-size: 0.9rem; }
  .invoice-panel-tags { justify-content: center; }

  .sms-services-panel { flex-direction: column; text-align: center; }
  .sms-services-list li { justify-content: center; }
  .admin-demo-panel { flex-direction: column; text-align: center; }
  .admin-demo-copy { text-align: center; }
  .admin-demo-credentials div { justify-content: center; }
  .admin-demo-actions { width: 100%; flex-direction: column; }
  .admin-demo-actions .btn { width: 100%; justify-content: center; }

  .panels-showcase { grid-template-columns: 1fr; }

  .ecosystem-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .eco-card--tech,
  .eco-card--ai,
  .eco-card--pay,
  .eco-card--sms,
  .eco-card--torob {
    grid-column: auto;
    grid-row: auto;
  }

  .eco-logos--5 { grid-template-columns: repeat(3, 1fr); }
  .eco-logos--6 { grid-template-columns: repeat(2, 1fr); }

  .eco-torob-inner {
    flex-direction: column;
    text-align: center;
  }

  .eco-torob-copy p { max-width: none; }

  .wallet-showcase { grid-template-columns: 1fr; }

  .shipping-showcase { grid-template-columns: 1fr; }

  .shipping-settings-mock__head {
    flex-direction: column;
    align-items: stretch;
  }

  .shipping-settings-mock__save {
    width: 100%;
    text-align: center;
  }

  .shipping-settings-mock__grid,
  .shipping-zone__fields {
    grid-template-columns: 1fr;
  }

  .shipping-vendor-compare__table {
    min-width: 320px;
  }

  .shipping-vendor-compare {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ai-chat-showcase {
    grid-template-columns: 1fr;
  }

  .support-widget-mock {
    max-width: none;
  }

  .track-order-duo { grid-template-columns: 1fr; }

  .mp-storefront-row { grid-template-columns: 1fr; }

  .mp-store-body { grid-template-columns: 1fr; }

  .mp-store-sidebar { display: none; }

  .mp-store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }

  .mp-store-mock,
  .mp-product-mock {
    font-size: 11px;
    border-radius: 16px;
  }

  .mp-mini-table-wrap,
  .suggestions-admin-mock__table-wrap,
  .mp-finance-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mp-mini-table-wrap,
  .suggestions-admin-mock__table-wrap {
    margin-inline: -4px;
    padding-inline: 4px;
  }

  .mp-mini-table,
  .suggestions-admin-mock__table {
    min-width: 320px;
  }

  .v2-pills {
    justify-content: center;
    gap: 8px;
  }

  .v2-pill {
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .hero-hub-panel__title {
    font-size: 1.05rem;
  }

  .hero-hub-card strong {
    font-size: 0.88rem;
  }

  .hero-hub-card p {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .hero-hub-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .hero-hub-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-hub-card__go {
    width: 30px;
    height: 30px;
  }

  .rtl-float-badge {
    left: max(10px, env(safe-area-inset-left, 0px));
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    max-width: calc(100vw - 20px);
  }

  .rtl-float-badge__inner {
    padding: 10px 12px;
    gap: 10px;
  }

  .rtl-float-badge__text em {
    display: none;
  }

  .feature-card img,
  .sets-block-media img,
  .spiral-item--split .spiral-media img,
  .shop-showcase-img-wrap img,
  .invoice-panel-media img {
    max-width: 100%;
    height: auto;
  }

  .duo-flow--compact {
    grid-template-columns: 1fr;
  }

  .flow-card img {
    max-width: 100%;
    height: auto;
  }

  .pro-highlight {
    padding: 48px 0;
  }

  .msg-hub-card {
    padding: 16px;
  }

  .msg-hub-logos img {
    max-height: 36px;
    width: auto;
  }

  .mp-store-hero__row { flex-direction: column; align-items: flex-start; }

  .mp-store-slogan { max-width: none; text-align: right; }

  .mp-vendor-shell { flex-direction: column; min-height: 0; }

  .mp-vendor-sidebar {
    width: 100%;
    border-left: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .mp-vendor-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .mp-vendor-grid { grid-template-columns: 1fr; }

  .mp-kpi-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .mp-finance-row { grid-template-columns: 1fr; }

  .support-messenger {
    flex-direction: column;
    max-height: none;
    min-height: 0;
  }

  .support-messenger__inbox {
    width: 100%;
    max-width: none;
    min-width: 0;
    max-height: 220px;
    overflow-y: auto;
  }

  .support-messenger__main { min-height: 320px; }

  .support-assign-modal { display: none; }

  .support-ops-bottom { grid-template-columns: 1fr; }

  .support-bots-grid { grid-template-columns: 1fr; }

  .msg-hub-roles { grid-template-columns: 1fr; }

  .msg-hub-card__brand { flex-direction: column; }

  /* Reduce decorative background blobs on small screens */
  .shape-1, .shape-2, .shape-3, .shape-4 {
    opacity: 0.18;
    filter: blur(60px);
  }
  .orb-3, .orb-5, .orb-6, .floating-ring, .floating-spark { display: none; }
}

@keyframes tech-float-tl-mobile {
  0%, 100% { transform: translate(-18%, -16%) rotate(-8deg); }
  50% { transform: translate(-18%, -21%) rotate(-4deg); }
}

@keyframes tech-float-tr-mobile {
  0%, 100% { transform: translate(18%, -16%) rotate(7deg); }
  50% { transform: translate(18%, -21%) rotate(11deg); }
}

@keyframes tech-float-ml-mobile {
  0%, 100% { transform: translate(-24%, -50%) rotate(-6deg); }
  50% { transform: translate(-28%, -50%) rotate(-10deg); }
}

@keyframes tech-float-mr-mobile {
  0%, 100% { transform: translate(24%, -50%) rotate(8deg); }
  50% { transform: translate(28%, -50%) rotate(12deg); }
}

@keyframes tech-float-bc-mobile {
  0%, 100% { transform: translate(-50%, 20%) rotate(-5deg); }
  50% { transform: translate(-50%, 15%) rotate(-1deg); }
}

/* Small phones */
@media (max-width: 480px) {
  .container { width: calc(100vw - 16px); }
  .topbar { width: 94vw; top: 10px; border-radius: 18px; }
  .nav { min-height: 52px; padding: 6px 10px; }
  .brand strong { font-size: 1rem; }
  .brand-logo-mark { width: 28px; height: 28px; }
  .nav-toggle { width: 38px; height: 38px; border-radius: 10px; }

  .section--features {
    padding: 12px 0 24px;
  }

  .section--features .hero-intro__actions {
    grid-template-columns: 1fr;
  }

  .section--overview {
    padding: 32px 0 40px;
  }

  .hero { padding: 24px 0 32px; }
  .hero-feature-hub { grid-template-columns: 1fr; gap: 8px; }
  .hero-hub-card--featured { grid-column: span 1; }
  .hero-hub-card {
    grid-template-columns: 40px 1fr 28px;
    column-gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }
  .hero-hub-panel {
    padding: 12px;
    border-radius: 18px;
  }
  .hero-hub-panel__head {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .hero-hub-panel__hint {
    font-size: 0.76rem;
  }
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn { width: 100%; justify-content: center; }

  .hero-title-row {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-title-logo {
    width: 0.9em;
    height: 0.9em;
  }

  .hero-subtitle { font-size: 0.95rem; }
  .hero-product-visual {
    --tech-icon-size: 34px;
  }
  .hero-image-wrap { max-height: min(48vh, 280px); padding: 10px; }
  .hero-tech-icon { width: 34px; height: 34px; border-radius: 10px; }

  .mp-store-grid { grid-template-columns: 1fr; }

  .mp-kpi-row { grid-template-columns: 1fr; }

  .shop-showcase-row { grid-template-columns: 1fr; }

  .footer-links {
    gap: 10px 14px;
  }

  .footer-links a {
    font-size: 0.82rem;
  }

  .track-order-mock__actions {
    flex-direction: column;
  }

  .track-order-mock__btn {
    width: 100%;
  }

  .suggestions-admin-mock__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .suggestions-admin-mock__add {
    align-self: stretch;
    text-align: center;
  }

  .tech-inline {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* PWA mobile compact */
  .section--pwa-app { padding-top: 56px; }
  .pwa-highlight-card { padding: 10px; }
  .pwa-phone-bezel {
    width: min(220px, 80vw);
    transform: rotateX(6deg) rotateY(-5deg) rotateZ(1deg);
  }
  .pwa-float-icon {
    width: 46px;
    height: 46px;
    top: 4%;
    transform: translate(110%, -6%) rotate(12deg);
  }
  .pwa-settings-preview {
    width: min(50%, 140px);
    bottom: 1%;
  }
  .pwa-mini-points { gap: 6px 10px; }
  .pwa-mini-points span { font-size: 0.74rem; }

  /* Section spacing */
  .section { padding: 44px 0; }
  .section-head { margin-bottom: 28px; }

  /* Pro hero copy */
  .pro-hero-points span { font-size: 0.76rem; padding: 6px 10px; }

  /* Ecosystem compact */
  .eco-card { padding: 18px 16px; }
  .eco-logos--5 { grid-template-columns: repeat(2, 1fr); }
  .eco-torob-logo { width: 72px; height: 72px; }
  .eco-torob-logo img { width: 44px; height: 44px; }

  /* Payment chips: 1-col on tiny phones */
  .ai-provider-chip {
    flex: 1 1 100%;
  }

  .payment-services--standalone .service-chip {
    flex: 1 1 100%;
  }

  /* CTA */
  .cta-badge { font-size: 0.8rem; padding: 8px 14px; }

  .rtl-float-badge__inner {
    padding: 10px 12px;
    gap: 10px;
  }
  .rtl-float-badge__logo {
    width: 44px;
    height: 44px;
    padding: 5px;
  }
  .rtl-float-badge__text strong { font-size: 0.8rem; }
  .rtl-float-badge__text em { font-size: 0.7rem; }

  /* Image info */
  .image-info { padding: 16px 18px; }
  .image-info h3 { font-size: 1rem; }
  .image-info p { font-size: 0.85rem; }
}

/* Very small phones */
@media (max-width: 360px) {
  .container { width: calc(100vw - 12px); }
  h1 { font-size: 1.55rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-hub-card strong { font-size: 0.82rem; }
  .hero-hub-card p { font-size: 0.68rem; }
  .section--overview .stats b { font-size: 1.2rem; }
  .section--overview .stats span { font-size: 0.62rem; }
  .stats b { font-size: 1.5rem; }
  .stats span { font-size: 0.78rem; }
  .pwa-phone-bezel { width: min(200px, 78vw); }
  .pwa-float-icon { width: 42px; height: 42px; }
  .hero-brand__text strong { font-size: 0.95rem; }
}

/* Touch devices — disable hover-only transforms that break layout */
@media (hover: none), (pointer: coarse) {
  .hero-hub-card:hover {
    transform: none;
  }

  .hero-hub-card:active {
    transform: scale(0.98);
    opacity: 0.92;
  }

  .feature-card:hover,
  .flow-card:hover {
    transform: none;
  }

  .card:hover {
    transform: none;
  }
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 4px; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-dark); }

/* Selection */
::selection { background: rgba(249, 115, 22, 0.2); color: var(--navy); }

/* ── Product admin & SEO sections ── */
.section--product-admin {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(5, 150, 105, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.product-admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-bottom: clamp(24px, 4vw, 40px);
}

.product-admin-card {
  position: relative;
  padding: clamp(18px, 2.5vw, 24px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px -28px rgba(15, 23, 42, 0.22);
}

.product-admin-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.product-admin-card > p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: #64748b;
}

.product-admin-card code {
  font-size: 0.78rem;
  padding: 1px 6px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #0f172a;
}

.product-admin-card__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(5, 150, 105, 0.12);
  color: #047857;
}

.product-admin-card__badge--csv {
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}

.product-admin-card__badge--ui {
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
}

.product-admin-shot {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(16px, 2.5vw, 24px);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 24px 56px -28px rgba(15, 23, 42, 0.18);
}

.product-admin-shot__media {
  flex: 1 1 62%;
  min-width: 0;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.product-admin-shot__media img {
  width: 100%;
  height: auto;
  display: block;
}

.product-admin-shot__copy {
  flex: 0 1 34%;
  min-width: 0;
}

.product-admin-shot__copy h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.product-admin-shot__copy p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.85;
  color: #475569;
}

.section--seo-suite {
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(22, 163, 74, 0.08) 0%, transparent 55%),
    #fff;
}

.seo-suite-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(16px, 2.5vw, 28px);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 24px 56px -28px rgba(15, 23, 42, 0.18);
}

.seo-suite-copy h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.seo-suite-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.seo-suite-tags span {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.seo-suite-cards {
  display: grid;
  gap: 12px;
}

.seo-mini-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.seo-mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--navy);
}

.seo-mini-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #64748b;
}

.seo-mini-card code {
  font-size: 0.75rem;
  padding: 1px 5px;
  border-radius: 5px;
  background: #f1f5f9;
}

@media (max-width: 960px) {
  .product-admin-grid {
    grid-template-columns: 1fr;
  }

  .product-admin-shot {
    flex-direction: column;
  }

  .seo-suite-panel {
    grid-template-columns: 1fr;
  }
}
