/* ================================================================
   WMS kg Landing Page — style.css
   ================================================================ */

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --indigo-50:  #e6f4ff;
  --indigo-100: #bae0ff;
  --indigo-200: #91caff;
  --indigo-300: #69b1ff;
  --indigo-500: #1677ff;
  --indigo-600: #0958d9;
  --indigo-700: #003eb3;
  --violet-500: #4096ff;
  --violet-600: #1677ff;
  --violet-700: #0958d9;
  --cyan-500:   #06b6d4;
  --green-500:  #10b981;
  --amber-500:  #f59e0b;
  --pink-500:   #ec4899;
  --blue-500:   #3b82f6;
  --orange-500: #f97316;

  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;
  --gray-400:  #9ca3af;
  --gray-500:  #6b7280;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --gray-800:  #1f2937;
  --gray-900:  #111827;
  --gray-950:  #030712;

  --white: #ffffff;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;

  --shadow-sm:  0 1px 2px 0 rgb(0 0 0 / .05);
  --shadow-md:  0 4px 6px -1px rgb(0 0 0 / .07), 0 2px 4px -2px rgb(0 0 0 / .05);
  --shadow-lg:  0 10px 15px -3px rgb(0 0 0 / .08), 0 4px 6px -4px rgb(0 0 0 / .05);
  --shadow-xl:  0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .05);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .18);

  --transition: 200ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 400ms cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea { font-family: inherit; }

/* ── Layout ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(14px, 3vw, 24px);
}

.section {
  padding-block: clamp(56px, 8vw, 96px);
}

/* ── Typography ───────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #1677ff 0%, #4096ff 50%, var(--cyan-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--indigo-50);
  color: var(--indigo-600);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section-title--left { text-align: left; }

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-subtitle--left { text-align: left; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}

.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: #1677ff;
  color: var(--white);
  box-shadow: 0 4px 14px rgb(99 102 241 / .35);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / .45), transparent);
  transform: translateX(-120%) skewX(-20deg);
  pointer-events: none;
  z-index: -1;
}
.btn-primary:hover {
  background: #4096ff;
  color: var(--white);
  box-shadow: 0 6px 20px rgb(99 102 241 / .45);
  transform: translateY(-2px);
}
.btn-primary:hover::after {
  animation: shimmer 1s ease;
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  color: var(--gray-600);
  background: transparent;
}
.btn-ghost:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

.btn-outline {
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
}
.btn-outline:hover {
  border-color: var(--indigo-500);
  color: var(--indigo-600);
  background: var(--indigo-50);
}

.btn-dark {
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--radius-md);
}
.btn-dark:hover {
  background: var(--gray-800);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── Coming-soon store buttons ────────────────────────────────── */
.btn-store-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-700);
  cursor: not-allowed;
  opacity: .72;
  position: relative;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}
.btn-store-soon svg { flex-shrink: 0; opacity: .7; }
.store-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.store-btn__sub {
  font-size: .65rem;
  font-weight: 400;
  opacity: .6;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.store-btn__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(255,200,0,.18);
  color: #f5c800;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid rgba(245,200,0,.35);
  animation: store-pulse 2s ease-in-out infinite;
}
@keyframes store-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .45; }
}

/* ── Animations ───────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes blob-move {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33%       { transform: scale(1.05) translate(20px, -15px); }
  66%       { transform: scale(.95) translate(-15px, 20px); }
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.12); opacity: .75; }
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgb(22 119 255 / .35); }
  70%  { box-shadow: 0 0 0 14px rgb(22 119 255 / 0); }
  100% { box-shadow: 0 0 0 0 rgb(22 119 255 / 0); }
}

@keyframes shimmer {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(240%) skewX(-20deg); }
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.animate-fade-up {
  animation: fade-up .6s ease both;
  animation-delay: var(--delay, 0s);
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1),
              transform .7s cubic-bezier(.22,.61,.36,1);
  transition-delay: calc(var(--stagger, 0) * 80ms);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

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

/* ── Navigation ───────────────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgb(255 255 255 / .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.nav-header.scrolled {
  border-bottom-color: var(--gray-200);
  background: rgb(255 255 255 / .97);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open { display: block; }

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

.mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  transition: background var(--transition), color var(--transition);
}
.mobile-link:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

.mobile-cta {
  display: block;
  text-align: center;
  margin-top: 8px;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 64px;
  overflow: hidden;
}

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

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blob-move 12s ease-in-out infinite;
}
.hero-blob--1 {
  width: 600px; height: 600px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgb(99 102 241 / .15), transparent 70%);
}
.hero-blob--2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgb(139 92 246 / .12), transparent 70%);
  animation-delay: -6s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--gray-200) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gray-200) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
  opacity: .35;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--indigo-100);
  background: var(--indigo-50);
  font-size: 13px;
  font-weight: 500;
  color: var(--indigo-700);
  margin-bottom: 28px;
  animation: pulse-ring 2.6s ease-out infinite;
}
.hero-badge svg circle:last-child {
  transform-origin: center;
  animation: pulse-soft 1.8s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--gray-500);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  max-width: 480px;
  margin-inline: auto;
}

.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 4px;
}
.stat span { font-size: 12px; color: var(--gray-500); }

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
}

/* Hero screenshots */
.hero-screenshots {
  position: relative;
  z-index: 1;
  margin-top: 64px;
}

.screenshot-mosaic {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
  max-width: 900px;
  margin-inline: auto;
}

/* ── Screenshot Placeholders ──────────────────────────────────── */
.screenshot-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition);
}

.screenshot-placeholder:hover { border-color: var(--indigo-400); }

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  gap: 8px;
  height: 100%;
}

.placeholder-inner p {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

.placeholder-inner span, .placeholder-inner code {
  font-size: 12px;
  color: var(--gray-400);
  font-family: 'SF Mono', 'Fira Code', monospace;
  background: var(--gray-200);
  padding: 2px 8px;
  border-radius: 4px;
}

.placeholder-hint {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 4px;
}

/* Sizes */
.screenshot-placeholder--large { min-height: 457px; }
.screenshot-placeholder--step  { min-height: 240px; }
.screenshot-placeholder--phone { min-height: 354px; }

/* Real screenshot images */
.screenshot-placeholder.has-image {
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
}
.screenshot-placeholder.has-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.screenshot-placeholder.has-image .screenshot-real {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.screenshot-placeholder.has-image .screenshot-real--desktop {
  height: auto;
  min-height: unset;
  object-fit: unset;
}
.mobile-phone__screen.has-image {
  padding: 0;
  border: none !important;
  background: var(--gray-950);
  justify-content: flex-start;
  align-items: stretch;
}
.mobile-phone__screen.has-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.mobile-phone__screen.has-image .phone-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}
.phone-mockup .has-image { border: none !important; }

.screenshot-card { border-radius: var(--radius-lg); overflow: hidden; }
.screenshot-card--main .screenshot-placeholder { min-height: 340px; }
.screenshot-card--sm .screenshot-placeholder   { min-height: 160px; }

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

/* ── Trust Bar ────────────────────────────────────────────────── */
.trust-bar {
  padding-block: 32px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-bar__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* trust chips */
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  list-style: none;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: default;
}

.trust-chip:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(-2px);
  border-color: var(--indigo-300);
}

.trust-chip__icon {
  flex-shrink: 0;
  border-radius: 4px;
}

/* ── Features ─────────────────────────────────────────────────── */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%),
    rgb(22 119 255 / .07), transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.feature-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: var(--indigo-100);
}

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

.feature-card:hover .feature-icon {
  transform: translateY(-3px) scale(1.08) rotate(-4deg);
}

.feature-card--highlight {
  background: linear-gradient(135deg, var(--indigo-50), #f5f3ff);
  border-color: var(--indigo-100);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-slow);
}

.feature-icon--purple { background: rgb(99 102 241 / .1); color: var(--indigo-500); }
.feature-icon--cyan   { background: rgb(6 182 212 / .1);  color: var(--cyan-500); }
.feature-icon--green  { background: rgb(16 185 129 / .1); color: var(--green-500); }
.feature-icon--orange { background: rgb(249 115 22 / .1); color: var(--orange-500); }
.feature-icon--blue   { background: rgb(59 130 246 / .1); color: var(--blue-500); }
.feature-icon--pink   { background: rgb(236 72 153 / .1); color: var(--pink-500); }

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

.feature-card p {
  font-size: .9375rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--gray-600);
  font-weight: 500;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--indigo-500);
  flex-shrink: 0;
}

/* ── Screenshots Section ──────────────────────────────────────── */
.screenshots { background: var(--gray-50); }

.screenshots-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 6px;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.tab-btn {
  flex: 1;
  min-width: 80px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-btn:hover { color: var(--gray-800); background: var(--gray-100); }

.tab-btn--active {
  background: var(--indigo-500);
  color: var(--white);
  box-shadow: 0 2px 8px rgb(99 102 241 / .3);
}

.screenshot-panel { display: none; }
.screenshot-panel--active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  animation: fade-up .45s cubic-bezier(.22,.61,.36,1) both;
}

@media (min-width: 768px) {
  .screenshot-panel--active { grid-template-columns: 1fr 300px; align-items: start; }
}

.screenshot-frame {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--gray-200);
}

.screenshot-frame--mobile {
  max-width: 320px;
  margin-inline: auto;
}

/* ── Scanner tab phone frame ──────────────────────────────────── */
.screenshot-panel__scanner-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.scanner-phone-mockup {
  display: flex;
  justify-content: center;
}
.mobile-phone__frame--lg {
  width: 260px;
}
.screenshot-caption--scanner {
  justify-content: center;
}
@media (max-width: 640px) {
  .screenshot-panel__scanner-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
  }
  .mobile-phone__frame--lg { width: 200px; }
}

.screenshot-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.screenshot-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}
.screenshot-browser-bar span:nth-child(1) { background: #fc5753; }
.screenshot-browser-bar span:nth-child(2) { background: #fdbc40; }
.screenshot-browser-bar span:nth-child(3) { background: #33c748; }

.browser-url {
  flex: 1;
  margin-left: 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 11px;
  color: var(--gray-500);
  font-family: 'SF Mono', monospace;
}

.screenshot-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.screenshot-caption h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.01em;
}

.screenshot-caption p {
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── How It Works ─────────────────────────────────────────────── */
.how-it-works { background: var(--white); overflow-x: clip; }

.steps { display: flex; flex-direction: column; gap: clamp(24px, 5vw, 80px); }

/* New step-flow layout */
.step-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.step-flow--reverse {
  direction: rtl;
}
.step-flow--reverse > * {
  direction: ltr;
}

.step-flow__label {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  letter-spacing: -.04em;
  flex-shrink: 0;
  width: 72px;
  text-align: center;
}

.step-text h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.step-text p {
  color: var(--gray-500);
  line-height: 1.7;
}

/* Phone row with zig-zag */
.step-phones-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.step-phone--up   { transform: translateY(-28px); }
.step-phone--down { transform: translateY(28px); }

.step-phone__caption {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Small phone frame for steps */
.mobile-phone__frame--sm {
  width: 140px;
}
.mobile-phone__frame--sm .mobile-phone__screen {
  min-height: 280px;
}

/* Flow arrows between phones */
.step-phones__arrow {
  width: 80px;
  height: 48px;
  flex-shrink: 0;
  overflow: visible;
}

/* Phone carousel wrapper & nav buttons */
.step-phones-carousel {
  position: relative;
  width: 100%;
}
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: background .18s, box-shadow .18s, color .18s;
  flex-shrink: 0;
  padding: 0;
}
.carousel-nav-btn:hover {
  background: var(--gray-900);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.carousel-nav-btn svg { width: 20px; height: 20px; display: block; }
.carousel-nav-btn--prev { left: -20px; }
.carousel-nav-btn--next { right: -20px; }

@media (max-width: 900px) {
  .step-flow {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .step-flow--reverse { direction: ltr; }
  .step-phones-carousel { margin: 0 -24px; }
  .step-phones-row {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 36px 24px 16px;
    margin: 0;
    gap: 0;
    justify-content: flex-start;
  }
  .step-phones-row::-webkit-scrollbar { display: none; }
  .step-phone { scroll-snap-align: start; flex-shrink: 0; }
  .mobile-phone__frame--sm { width: 130px; }
  .mobile-phone__frame--sm .mobile-phone__screen { min-height: 260px; }
  .step-phones__arrow { width: 48px; }
  .step-phone--up  { transform: translateY(-18px); }
  .step-phone--down { transform: translateY(18px); }
  .carousel-nav-btn--prev { left: 6px; }
  .carousel-nav-btn--next { right: 6px; }
}

/* Legacy .step kept for compatibility */
.step { display: grid; grid-template-columns: auto 1fr; gap: 32px; }
.step-content { display: grid; gap: 32px; }
@media (min-width: 640px) {
  .step-content { grid-template-columns: 1fr 1fr; align-items: center; }
  .step--reverse .step-screenshot { order: 2; }
  .step--reverse .step-text       { order: 1; }
}

/* ── Mobile Highlight ─────────────────────────────────────────── */
.mobile-highlight { background: var(--gray-50); overflow: hidden; }

.mobile-highlight__inner {
  display: grid;
  gap: 64px;
  align-items: center;
}

@media (min-width: 768px) {
  .mobile-highlight__inner { grid-template-columns: 1fr 1fr; }
}

.checkmarks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  margin-top: 24px;
}

.checkmarks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--gray-700);
  font-weight: 500;
}

.checkmarks li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-highlight__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.mobile-highlight__phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -20px;
  position: relative;
  height: 420px;
}

.phone-mockup {
  width: 180px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 8px solid var(--gray-900);
  background: var(--gray-900);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.phone-mockup--front {
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -50%);
}

.phone-mockup--back {
  z-index: 1;
  left: 50%;
  transform: translate(-80%, -45%) rotate(-8deg);
  opacity: .7;
}

.phone-mockup .screenshot-placeholder--phone {
  animation: float-y 5s ease-in-out infinite;
}
.phone-mockup--back .screenshot-placeholder--phone {
  animation-duration: 6.5s;
  animation-delay: -2s;
}

/* ── Pricing ──────────────────────────────────────────────────── */
.pricing { background: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
  max-width: 760px;
  margin-inline: auto;
}

.pricing-grid--two {
  max-width: 760px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .pricing-grid--two { grid-template-columns: 1fr; }
}

.pricing-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--gray-200);
  background: var(--white);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.pricing-card--featured {
  border-color: #1677ff;
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1677ff;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__header { margin-bottom: 28px; }

.pricing-card__header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.pricing-card__price { display: flex; align-items: baseline; gap: 6px; }

.price-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -.03em;
}

.price-period { font-size: .9375rem; color: var(--gray-500); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--gray-600);
}

.pricing-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--indigo-50);
  color: var(--indigo-600);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-tier-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pricing-tier-icon--base {
  background: var(--indigo-50);
  color: var(--indigo-600);
}
.pricing-tier-icon--pro {
  background: linear-gradient(135deg, #1677ff 0%, #0958d9 100%);
  color: #fff;
}

.pricing-addons {
  margin: 20px 0 24px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.pricing-addons__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.pricing-addons ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.pricing-addons ul li {
  font-size: .875rem;
  color: var(--gray-500);
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials { background: var(--gray-50); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.testimonial-stars { color: var(--amber-500); font-size: 1rem; letter-spacing: 2px; }

.testimonial-card p {
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-500), var(--violet-600));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card cite { display: block; font-style: normal; font-weight: 700; font-size: .9375rem; color: var(--gray-900); }
.testimonial-card span { font-size: .8125rem; color: var(--gray-500); }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq { background: var(--white); }

.faq__inner { max-width: 680px; margin-inline: auto; }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--indigo-600); }

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── CTA Section ──────────────────────────────────────────────── */
.cta-section { background: var(--gray-50); }

.cta-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  padding: 72px 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--indigo-600), var(--violet-700));
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgb(255 255 255 / .08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgb(255 255 255 / .06) 0%, transparent 50%);
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.cta-content p {
  font-size: 1.0625rem;
  color: rgb(255 255 255 / .8);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn-cta-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-lg);
  font-size: .9375rem;
  font-weight: 600;
  border: 1px solid rgb(255 255 255 / .25);
  background: rgb(255 255 255 / .15);
  color: var(--white);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-cta-social:hover {
  background: rgb(255 255 255 / .28);
  border-color: rgb(255 255 255 / .5);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-cta-social--wa:hover { background: rgba(37,211,102,.25); border-color: rgba(37,211,102,.5); }
.btn-cta-social--tg:hover { background: rgba(34,158,217,.25); border-color: rgba(34,158,217,.5); }

.cta-note {
  margin-top: 16px;
  font-size: .875rem;
  color: rgb(255 255 255 / .65);
}
.cta-note a {
  color: rgb(255 255 255 / .9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Contact ──────────────────────────────────────────────────── */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 760px;
  margin-inline: auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--indigo-200);
}

.contact-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.contact-card p  { font-size: .9375rem; color: var(--gray-500); }

.contact-card--wa:hover { border-color: #25d366; box-shadow: 0 8px 24px rgba(37,211,102,.15); }
.contact-card--tg:hover { border-color: #229ed9; box-shadow: 0 8px 24px rgba(34,158,217,.15); }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--gray-950);
  color: var(--gray-400);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgb(255 255 255 / .07);
}

@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 2fr; }
}

.footer__brand .nav-logo { color: var(--white); margin-bottom: 16px; }

.footer__brand p {
  font-size: .875rem;
  line-height: 1.65;
  max-width: 260px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px;
}

.footer__col h4 {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col a {
  font-size: .875rem;
  color: var(--gray-500);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  padding-block: 24px;
  font-size: .8125rem;
  color: var(--gray-600);
  text-align: center;
}

/* ── Mobile Phone Strip ───────────────────────────────────── */
.mobile-strip-wrapper {
  position: relative;
  margin-top: 56px;
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.mobile-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 48px 100px 64px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: flex-end;
  justify-content: center;
}
.mobile-strip::-webkit-scrollbar { display: none; }

.mobile-phone {
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.mobile-phone:hover {
  transform: translateY(-14px) scale(1.04) rotate(0deg) !important;
  z-index: 10;
}

.mobile-phone__frame {
  width: 190px;
  border-radius: 38px;
  border: 8px solid var(--gray-900);
  background: var(--gray-900);
  overflow: hidden;
  box-shadow:
    0 32px 64px -16px rgb(0 0 0 / .4),
    0 0 0 1px rgb(255 255 255 / .07) inset;
  position: relative;
}

.mobile-phone__notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 20px;
  background: var(--gray-900);
  border-radius: 0 0 14px 14px;
  z-index: 10;
  pointer-events: none;
}

.mobile-phone__screen {
  min-height: 380px;
  background: linear-gradient(160deg, var(--gray-50), var(--gray-100));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 14px 20px;
  gap: 8px;
  border: 2px dashed var(--gray-200);
  transition: border-color var(--transition);
}
.mobile-phone:hover .mobile-phone__screen { border-color: var(--indigo-300); }

.mobile-phone__screen p {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  line-height: 1.4;
}

.mobile-phone__screen code {
  font-size: 10px;
  color: var(--gray-400);
  font-family: monospace;
  background: var(--gray-200);
  padding: 2px 6px;
  border-radius: 4px;
}

.mobile-phone__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ── Responsive ───────────────────────────────────────────────── */

/* Tablet / small desktop */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

/* Tablet portrait */
@media (max-width: 880px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }

  .hero { padding-top: 116px; padding-bottom: 48px; }
  .hero-blob--1 { width: 420px; height: 420px; top: -160px; left: -160px; }
  .hero-blob--2 { width: 360px; height: 360px; bottom: -80px; right: -80px; }

  .features-grid { gap: 18px; }
  .feature-card { padding: 26px; }

  .pricing-grid--two { grid-template-columns: 1fr; max-width: 460px; }

  .mobile-highlight__inner { gap: 40px; }

  .step { grid-template-columns: 1fr; }
  .step-number { display: none; }

  .cta-card { padding: 56px 28px; }
}

/* Phablet / large phone */
@media (max-width: 640px) {
  .hero { padding-top: 104px; padding-bottom: 36px; }
  .hero-title { font-size: clamp(1.875rem, 8vw, 2.5rem); margin-bottom: 18px; }
  .hero-subtitle { margin-bottom: 28px; font-size: 1rem; line-height: 1.65; }
  .hero-cta { gap: 10px; margin-bottom: 36px; }
  .hero-cta .btn-lg { padding: 13px 22px; font-size: 14px; flex: 1; min-width: 0; justify-content: center; max-width: 260px; }
  .hero-grid { background-size: 32px 32px; opacity: .22; }

  /* Hero stats — 3 stats + 2 dividers in a row, no wrap */
  .hero-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 14px 10px;
    border-radius: var(--radius-lg);
    max-width: 100%;
  }
  .stat { flex: 1; min-width: 0; padding: 0 4px; }
  .stat strong { font-size: 1rem; }
  .stat span { font-size: 10.5px; line-height: 1.3; display: block; word-break: keep-all; }
  .stat-divider { display: block; width: 1px; height: 28px; align-self: center; flex-shrink: 0; }

  .section-title { margin-bottom: 12px; }
  .section-subtitle { font-size: 1rem; }

  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 24px; border-radius: var(--radius-lg); }
  .feature-icon { width: 44px; height: 44px; margin-bottom: 16px; }

  /* Tabs — horizontal scroll, snap, edge fade */
  .screenshots-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px;
    margin-inline: -4px;
    max-width: none;
    border-radius: var(--radius-md);
  }
  .screenshots-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { flex: 0 0 auto; scroll-snap-align: center; }

  .screenshot-frame { border-radius: var(--radius-lg); }
  .screenshot-browser-bar { padding: 10px 12px; }
  .browser-url { font-size: 10px; padding: 3px 8px; }
  .screenshot-placeholder--large { min-height: 220px; }

  /* Mobile highlight — stack vertically, no absolute overlap */
  .mobile-highlight__phones {
    position: static;
    height: auto;
    gap: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0 16px;
  }
  .phone-mockup,
  .phone-mockup--front,
  .phone-mockup--back {
    position: relative;
    top: auto; left: auto;
    transform: none;
  }
  .phone-mockup--back { display: none; }
  .phone-mockup--front { transform: rotate(-2deg); }
  .phone-mockup { width: 200px; }

  .mobile-highlight__cta { flex-direction: column; gap: 10px; }
  .mobile-highlight__cta .btn { width: 100%; justify-content: center; }

  /* Mobile strip — tighter padding so screen fits */
  .mobile-strip {
    padding: 36px 32px 48px;
    gap: 12px;
    justify-content: flex-start;
  }
  .mobile-strip-wrapper {
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    margin-top: 36px;
  }
  .mobile-phone__frame { width: 152px; border-radius: 30px; border-width: 6px; }
  .mobile-phone__notch { width: 56px; height: 16px; border-radius: 0 0 10px 10px; }
  .mobile-phone__screen { min-height: 300px; }
  .mobile-phone__screen.has-image .phone-img { min-height: 300px; }

  /* Steps — phones scroll horizontally with zigzag + nav arrows */
  .step-flow { grid-template-columns: 1fr; gap: 24px; }
  .step-flow--reverse { direction: ltr; }
  .step-flow__label { gap: 16px; }
  .step-text h3 { font-size: 1.125rem; margin-bottom: 8px; }
  .step-text p { font-size: .9375rem; }

  .step-phones-carousel { margin: 0 -16px; }
  .step-phones-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 40px 16px 16px;
    margin: 0;
    justify-content: flex-start;

  }
  .step-phones-row::-webkit-scrollbar { display: none; }
  .step-phones__arrow { display: block; width: 40px; }
  .step-phone { scroll-snap-align: start; gap: 8px; }
  .step-phone--up  { transform: translateY(-20px); }
  .step-phone--down { transform: translateY(20px); }
  .mobile-phone__frame--sm { width: 110px; border-radius: 22px; border-width: 5px; }
  .mobile-phone__frame--sm .mobile-phone__screen { min-height: 210px; }
  .carousel-nav-btn--prev { left: 4px; }
  .carousel-nav-btn--next { right: 4px; }

  /* Trust bar — readable chips */
  .trust-bar { padding-block: 24px; }
  .trust-bar__logos { gap: 8px; }
  .trust-chip { padding: 6px 12px 6px 8px; font-size: 12px; }
  .trust-chip__icon { width: 18px; height: 18px; }

  /* Pricing */
  .pricing-card { padding: 28px 22px; border-radius: var(--radius-lg); }
  .price-amount { font-size: 1.625rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 24px; border-radius: var(--radius-lg); }

  /* FAQ */
  .faq-question { padding: 16px 0; font-size: .9375rem; gap: 12px; }

  /* CTA */
  .cta-card { padding: 44px 22px; border-radius: var(--radius-xl); }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-content p { font-size: 1rem; margin-bottom: 28px; }

  /* Footer */
  .footer { padding-top: 48px; }
  .footer__inner { gap: 32px; padding-bottom: 32px; }
  .footer__links { gap: 24px; }
  .footer__col h4 { margin-bottom: 12px; }

  /* Nav */
  .nav-container { height: 60px; gap: 16px; }
  .mobile-menu { top: 60px; padding: 12px 16px 20px; }
  .nav-logo { font-size: 16px; }
}

/* Small phone */
@media (max-width: 380px) {
  .hero-title { font-size: 1.75rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-lg { width: 100%; max-width: none; }
  .stat strong { font-size: 1rem; }
  .stat span { font-size: 10px; }
  .mobile-phone__frame { width: 140px; }
  .mobile-phone__screen { min-height: 280px; }
  .feature-card { padding: 20px; }
  .testimonial-card { padding: 20px; }
  .pricing-card { padding: 24px 18px; }
}

/* Hover-only effects — skip on touch devices */
@media (hover: none) {
  .feature-card:hover,
  .pricing-card:hover,
  .testimonial-card:hover,
  .contact-card:hover,
  .trust-chip:hover,
  .mobile-phone:hover {
    transform: none;
    box-shadow: var(--shadow-md);
  }
  .feature-card:hover .feature-icon { transform: none; }
}

/* ── Coming Soon — disabled store badges ────────────────────────── */
.btn-coming {
  position: relative;
  cursor: not-allowed;
  opacity: 0.85;
  user-select: none;
  gap: 10px;
}
.btn-coming:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}
.coming-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--indigo-500), var(--cyan-500));
  border-radius: 999px;
  text-transform: uppercase;
}

/* ── Image fade-in + light placeholders (no "black blocks") ────── */
.screenshot-placeholder.has-image,
.mobile-phone__screen.has-image {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}
.screenshot-placeholder.has-image picture,
.mobile-phone__screen.has-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
/* Images render natively — Safari mobile is finicky about JS-driven opacity toggles.
   The light-gray placeholder background on .has-image already prevents "black blocks". */
.screenshot-real,
.phone-img {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

/* ── Mobile swipeable screenshots gallery + dots ──────────────── */
.screenshots-dots { display: none; }

@media (max-width: 640px) {
  /* Hide tab buttons — replaced by swipe gallery */
  .screenshots-tabs { display: none; }

  /* Gallery becomes a horizontal scroller */
  .screenshots-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 4px 16px 16px;
    margin-inline: -16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 16px;
  }
  .screenshots-gallery::-webkit-scrollbar { display: none; }

  /* All panels visible side-by-side */
  .screenshot-panel,
  .screenshot-panel[hidden] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px;
    flex: 0 0 88%;
    scroll-snap-align: center;
    animation: none;
  }
  .screenshot-panel--active { animation: none; }
  .screenshot-caption h3 { font-size: 1.0625rem; }
  .screenshot-caption p  { font-size: .9rem; }

  /* Dot indicators */
  .screenshots-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--gray-300);
    transition: width 220ms ease, background 220ms ease;
    padding: 0;
  }
  .dot--active {
    width: 22px;
    background: var(--indigo-500);
  }

  /* Soften snap for the phone strips so swipes don't feel "stuck" */
  .mobile-strip { scroll-snap-type: x proximity; touch-action: pan-x; }
  .step-phones-row { touch-action: pan-x; }
}
