/* ===== Hasm — Apple-style: radical simplicity, premium minimalism ===== */

/* Design tokens — light theme, primary for accents */
:root {
  --primary: #7462F6;
  --primary-hover: #6350e8;
  --primary-muted: rgba(116, 98, 246, 0.12);
  --bg: #fafafa;
  --bg-elevated: #ffffff;
  --bg-section: #f4f4f5;
  --bg-card: #ffffff;
  --text: #18181b;
  --text-secondary: #52525b;
  --text-tertiary: #71717a;
  --border: rgba(0, 0, 0, 0.08);
  --link: #7462F6;
  --link-hover: #18181b;

  /* Typography scale (Apple-like) */
  --text-hero: clamp(3rem, 8vw, 4.5rem);
  --text-display: clamp(2.25rem, 4vw, 3rem);
  --text-title: clamp(1.75rem, 2.5vw, 2.25rem);
  --text-body: 1.125rem;
  --text-small: 0.9375rem;
  --text-caption: 0.8125rem;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
  --space-3xl: 160px;

  --radius: 12px;
  --radius-lg: 980px;
  --font-en: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Dark theme: white (light) → black, grey (light) → dark grey */
[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-section: #18181b;
  --bg-card: #1c1c1e;
  --text: #fafafa;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;
  --border: rgba(255, 255, 255, 0.1);
  --link: #a78bfa;
  --link-hover: #fafafa;
  --primary-muted: rgba(116, 98, 246, 0.2);
}

[data-theme="dark"] .site-header {
  background: rgba(10, 10, 10, 0.95);
}

/* Dark: white sections → black, grey sections → dark grey */
[data-theme="dark"] .section:nth-child(odd) {
  background: var(--bg) !important;
}
[data-theme="dark"] .section:nth-child(even) {
  background: var(--bg-section) !important;
}

/* Download section → black in dark */
[data-theme="dark"] .section.section-cta {
  background: var(--bg) !important;
}

[data-theme="dark"] .model-card-dark,
[data-theme="dark"] .feature-card-dark,
[data-theme="dark"] .get-card {
  background: var(--bg-card);
  border-color: var(--border);
}

[data-theme="dark"] .model-card-title,
[data-theme="dark"] .feature-card-title,
[data-theme="dark"] .get-card-title { color: var(--text); }
[data-theme="dark"] .model-card-desc,
[data-theme="dark"] .feature-card-desc,
[data-theme="dark"] .get-card-desc { color: var(--text-secondary); }

/* Dark: card icons use light stroke */
[data-theme="dark"] .model-card-icon-price,
[data-theme="dark"] .model-card-icon-stock,
[data-theme="dark"] .feature-card-icon-prices,
[data-theme="dark"] .feature-card-icon-auctions,
[data-theme="dark"] .feature-card-icon-alerts,
[data-theme="dark"] .get-card-icon-prices,
[data-theme="dark"] .get-card-icon-auctions,
[data-theme="dark"] .get-card-icon-alerts,
[data-theme="dark"] .get-card-icon-secure,
[data-theme="dark"] .get-card-icon-stock {
  filter: invert(1);
}

[data-theme="dark"] .site-footer {
  background: var(--bg);
  border-top-color: var(--border);
}

[data-theme="dark"] .hero-product-link-outline {
  border-color: var(--border);
}

[data-theme="dark"] .hero-product-link-outline .hero-product-link-icon-warehouse,
[data-theme="dark"] .hero-product-link-outline .hero-product-link-icon-box {
  filter: brightness(1.4);
}

[data-theme="dark"] .price-demo-card,
[data-theme="dark"] .auction-demo-card {
  background: var(--bg-card);
  border-color: var(--border);
}

[data-theme="dark"] .nav-open .nav-mobile {
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
}
[dir="rtl"][data-theme="dark"] .nav-open .nav-mobile {
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  font-family: var(--font-en);
  background: var(--bg);
  color: var(--text);
  font-size: var(--text-body);
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

[dir="rtl"] body {
  font-family: var(--font-ar);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  min-width: 0;
}
main {
  min-width: 0;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: saturate(100%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 128px;
  padding: var(--space-sm) var(--space-sm);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.logo-img {
  display: block;
  height: auto;
  object-fit: contain;
}

.logo-img-header {
  height: 112px;
  max-width: 400px;
}

.logo-img-footer {
  height: 28px;
  max-width: 100px;
}

.logo-fallback {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-link .logo-img ~ .logo-fallback {
  display: none;
}

.logo-ar {
  color: var(--primary);
  font-family: var(--font-ar);
  margin-inline-start: 0.2em;
}

.nav {
  display: flex;
  gap: var(--space-lg);
}

.nav-mobile {
  display: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-small);
  font-weight: 400;
  transition: color 0.2s;
}

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

.nav-link-accent {
  color: var(--primary);
  font-weight: 500;
}

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

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.theme-toggle:hover {
  color: var(--text);
  background: var(--bg-section);
}
.theme-toggle-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.theme-toggle {
  position: relative;
}
.theme-toggle-sun {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z'/%3E%3C/svg%3E");
}
.theme-toggle-moon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z'/%3E%3C/svg%3E");
}
[data-theme="light"] .theme-toggle-sun,
[data-theme="dark"] .theme-toggle-moon { opacity: 1; }
[data-theme="light"] .theme-toggle-moon,
[data-theme="dark"] .theme-toggle-sun { opacity: 0; }
/* Default (no data-theme) show sun */
html:not([data-theme="dark"]) .theme-toggle-sun { opacity: 1; }
html:not([data-theme="dark"]) .theme-toggle-moon { opacity: 0; }

.theme-toggle {
  gap: 6px;
  padding: 0 10px;
  width: auto;
  min-width: 44px;
}

.theme-toggle-label {
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--text-secondary);
}

/* In light mode show "Dark" (click to switch to dark) */
html:not([data-theme="dark"]) .theme-toggle-label-light,
[data-theme="light"] .theme-toggle-label-light { display: inline; }
html:not([data-theme="dark"]) .theme-toggle-label-dark,
[data-theme="light"] .theme-toggle-label-dark { display: none; }

/* In dark mode show "Light" (click to switch to light) */
[data-theme="dark"] .theme-toggle-label-light { display: none; }
[data-theme="dark"] .theme-toggle-label-dark { display: inline; }

.theme-toggle .lang-content.visible { display: inline; }

/* Nav toggle (hamburger) - hidden by default, shown on mobile */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle::before {
  content: '';
  width: 22px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
}
.nav-toggle {
  position: relative;
}

@media (min-width: 735px) {
  .nav-toggle {
    display: none !important;
  }
  .nav-desktop {
    display: flex;
  }
  .nav-mobile {
    display: none !important;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.btn-header-cta {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-small);
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}

.btn-header-cta:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  direction: ltr;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  font-size: var(--text-caption);
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.active {
  color: var(--text);
  background: var(--bg-elevated);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: var(--space-xl) 0 var(--space-2xl);
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* Hero: text + demo side by side */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto var(--space-xl);
}

.hero-text {
  text-align: start;
}

.hero-text .hero-pill {
  margin-inline: 0;
  margin-inline-end: auto;
}

.hero-text .hero-title {
  margin-inline: 0;
  text-align: start;
}

.hero-text .hero-sub {
  margin-inline: 0;
  text-align: start;
}

.hero-text .hero-cta {
  justify-content: flex-start;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin: 0 auto var(--space-md);
  font-size: var(--text-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: max-content;
}

.hero-pill-dot {
  color: var(--primary);
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 var(--space-md);
  color: var(--text);
  max-width: 18em;
  margin-inline: auto;
}

.hero-sub {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin: 0 0 var(--space-lg);
  max-width: 520px;
  line-height: 1.55;
}

.hero-content .hero-sub {
  max-width: 100%;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: 0;
}

.hero-content .hero-cta {
  margin-bottom: 0;
}

.hero-content .price-demo {
  max-width: 400px;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-ghost-hero {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  text-decoration: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: var(--text-body);
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost-hero:hover {
  background: var(--bg-elevated);
  border-color: var(--text-tertiary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: var(--text-body);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
}

/* Hero: phone mockup below text+demo row */
.hero-mockup {
  margin: 0 auto var(--space-xl);
  display: flex;
  justify-content: center;
}

.mockup-frame {
  width: 280px;
  height: 560px;
  margin: 0 auto;
  background: var(--bg-section);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.mockup-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #f5f5f7;
}

.mockup-screen-slider {
  position: relative;
  height: 100%;
}

.mockup-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mockup-screen-slider .mockup-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease-in-out;
}

.mockup-screen-slider .mockup-slide:first-child {
  opacity: 1;
  z-index: 1;
}

.mockup-screen-slider .mockup-slide:last-child {
  opacity: 0;
}

.mockup-screen-slider.show-second .mockup-slide:first-child {
  opacity: 0;
}

.mockup-screen-slider.show-second .mockup-slide:last-child {
  opacity: 1;
  z-index: 1;
}

/* Price drop demo — reference UI: glass card, green Live pill, progress bar */
.price-demo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.price-demo-content {
  position: relative;
  padding: var(--space-lg) var(--space-xl);
}

.price-demo-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  margin-bottom: var(--space-md);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #166534;
  background: rgba(34, 197, 94, 0.18);
  border-radius: var(--radius-lg);
}

.price-demo-live-check {
  color: #16a34a;
  font-weight: 800;
}

.price-demo-value-wrap {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

/* Riyal symbol always to the left of the price (EN and AR) */
.price-with-currency {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2em;
}
[dir="rtl"] .price-with-currency {
  flex-direction: row-reverse;
}
.price-with-currency .currency-symbol {
  height: 1.15em;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.price-demo-value-wrap .price-with-currency .currency-symbol {
  height: 1.45rem;
  transform: translateY(0.12em);
  filter: brightness(0) saturate(100%);
}
.price-demo-value-wrap .price-with-currency {
  color: var(--text);
}
.price-with-currency-original .currency-symbol {
  height: 1.1rem;
}
.price-with-currency-original {
  color: var(--text-tertiary);
}
.auction-demo-bid .price-with-currency .currency-symbol {
  height: 1.1rem;
  transform: translateY(0.15em);
}
[data-theme="dark"] .price-with-currency .currency-symbol {
  filter: brightness(0) invert(1);
}
[data-theme="dark"] .price-demo-value-wrap .price-with-currency .currency-symbol {
  filter: brightness(0) invert(1);
}

.price-demo-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.price-demo-original {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.price-demo-next {
  font-size: var(--text-caption);
  color: var(--text-secondary);
  margin: 0 0 var(--space-xs);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.price-demo-countdown {
  font-variant-numeric: tabular-nums;
  color: var(--text);
  font-weight: 700;
}

.price-demo-progress {
  height: 8px;
  margin-bottom: var(--space-md);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.price-demo-progress-fill {
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #ec4899 60%, #f97316 100%);
  transition: width 0.3s ease;
}

.price-demo-tagline {
  font-size: var(--text-caption);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}

/* Section: What is Hasm */
.section-intro {
  background: var(--bg-section);
}

/* Section: Two selling models — Orion-style cards */
.section-models {
  background: var(--bg);
}

/* Slightly wider intro text in models section */
.section-models .block-lead {
  max-width: 580px;
}

.models-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  max-width: 900px;
  margin-inline: auto;
}

.models-row-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
}

/* Orion-style: large rounded card with visual area + tag + bold headline */
.model-card-orion {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.model-card-visual {
  position: relative;
  padding: var(--space-md) var(--space-lg) 0;
  padding-inline-start: var(--space-lg);
  border-inline-start: 3px solid var(--primary);
}

.model-card-visual-1,
.model-card-visual-2 {
  /* no gradient */
}

.model-card-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--primary-muted);
  border-radius: 6px;
  margin-bottom: var(--space-sm);
}

.model-card-headline {
  margin: 0 0 var(--space-sm);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.model-card-body {
  padding: 0 var(--space-lg) var(--space-lg);
  background: var(--bg-card);
}

.model-card-orion .model-card-text {
  font-size: var(--text-small);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

/* Legacy model card (if used elsewhere) */
.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Light rectangle cards: white/light bg, dark title, dark desc, dark icon */
.model-card-dark,
.feature-card-dark {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.model-card-icon,
.feature-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.95;
}

/* Icons use dark stroke for light card background (%2318181b = #18181b) */
.model-card-icon-price {
  /* Single cube — one unit / buy by price */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2318181b' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 7.5l-9-4.5L3 7.5m18 0l-9 4.5m9-4.5v9l-9 4.5M3 7.5l9 4.5M3 7.5v9l9 4.5m0-9v9'/%3E%3C/svg%3E");
}

.model-card-icon-stock {
  /* 2x2 grid — plural / full lot */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2318181b' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.75 6A2.25 2.25 0 016 3.75h2.25A2.25 2.25 0 0110.5 6v2.25a2.25 2.25 0 01-2.25 2.25H6A2.25 2.25 0 013.75 8.25V6zM3.75 15.75A2.25 2.25 0 016 13.5h2.25a2.25 2.25 0 012.25 2.25V18a2.25 2.25 0 01-2.25 2.25H6A2.25 2.25 0 013.75 18v-2.25zM13.5 6a2.25 2.25 0 012.25-2.25H18A2.25 2.25 0 0120.25 6v2.25A2.25 2.25 0 0118 10.5h-2.25a2.25 2.25 0 01-2.25-2.25V6zM13.5 15.75a2.25 2.25 0 012.25-2.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-2.25a2.25 2.25 0 01-2.25-2.25v-2.25z'/%3E%3C/svg%3E");
}

.feature-card-icon-prices {
  /* Down arrow — exact same shape as auction (stem + head + bar), pointing down */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2318181b' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 5v14m0 0l-3-3m3 3l3-3m-6 0h6'/%3E%3C/svg%3E");
}

.feature-card-icon-auctions {
  /* Hammer / gavel icon */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2318181b' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 19V5m0 0l-3 3m3-3l3 3m-6 0h6'/%3E%3C/svg%3E");
}

.feature-card-icon-alerts {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2318181b' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9'/%3E%3C/svg%3E");
}

.model-card-title,
.feature-card-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.model-card-desc,
.feature-card-desc {
  margin: 0;
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Orion-style 3-column feature cards */
.section-feature-cards {
  background: var(--bg);
}

.feature-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  max-width: 1000px;
  margin-inline: auto;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.feature-card-visual {
  position: relative;
  padding: var(--space-lg) var(--space-xl);
  border-inline-start: 3px solid var(--primary);
}

.feature-card-visual-1,
.feature-card-visual-2,
.feature-card-visual-3 {
  /* unified style */
}

.feature-card-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--primary-muted);
  border-radius: 6px;
  margin-bottom: var(--space-sm);
}

.feature-card-headline {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

/* Section: Live auction — same UI as price drop demo */
.section.section-auction {
  background: #fff !important;
}

.auction-demo {
  max-width: 400px;
  margin: var(--space-lg) auto 0;
}

.auction-demo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.auction-demo-content {
  position: relative;
  padding: var(--space-lg) var(--space-xl);
}

.auction-demo-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  margin-bottom: var(--space-md);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #166534;
  background: rgba(34, 197, 94, 0.18);
  border-radius: var(--radius-lg);
}

.auction-demo-live-check {
  color: #16a34a;
  font-weight: 800;
}

.auction-demo-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 var(--space-sm);
  line-height: 1.35;
}

.auction-demo-timer-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: var(--space-xs);
}

.auction-demo-timer {
  font-size: 2.25rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--text);
  font-family: ui-monospace, monospace;
}

.auction-demo-timer-label {
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.auction-demo-progress {
  height: 8px;
  margin-bottom: var(--space-md);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.auction-demo-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #ec4899 60%, #f97316 100%);
  transition: width 1s linear;
}

.auction-demo-bid {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  margin-bottom: var(--space-sm);
}

.auction-demo-bid-label {
  font-size: var(--text-caption);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.auction-demo-bid-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.auction-demo-tagline {
  font-size: var(--text-caption);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}

/* Features — Yiswa-style layout: intro + large card top row, three cards bottom row */
.section-features {
  background: var(--bg-section);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  margin-top: var(--space-xl);
  max-width: 1100px;
  margin-inline: auto;
}

.features-intro {
  padding-block: var(--space-sm);
}

.features-intro .block-lead {
  margin-top: var(--space-sm);
}

.features-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  max-width: 1100px;
  margin-inline: auto;
}

.get-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.get-card-large {
  padding: var(--space-lg) var(--space-xl);
}

.get-card-large .get-card-title {
  font-size: 1.25rem;
}

.get-card-large .get-card-desc {
  font-size: var(--text-body);
}

.get-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.95;
}

.get-card-icon-prices {
  /* Down arrow — exact same shape as auction (stem + head + bar), pointing down */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2318181b' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 5v14m0 0l-3-3m3 3l3-3m-6 0h6'/%3E%3C/svg%3E");
}

.get-card-icon-auctions {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2318181b' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 19V5m0 0l-3 3m3-3l3 3m-6 0h6'/%3E%3C/svg%3E");
}

.get-card-icon-alerts {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2318181b' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9'/%3E%3C/svg%3E");
}

.get-card-icon-secure {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2318181b' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z'/%3E%3C/svg%3E");
}

.get-card-icon-stock {
  /* 2x2 grid — plural / full lot */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2318181b' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.75 6A2.25 2.25 0 016 3.75h2.25A2.25 2.25 0 0110.5 6v2.25a2.25 2.25 0 01-2.25 2.25H6A2.25 2.25 0 013.75 8.25V6zM3.75 15.75A2.25 2.25 0 016 13.5h2.25a2.25 2.25 0 012.25 2.25V18a2.25 2.25 0 01-2.25 2.25H6A2.25 2.25 0 013.75 18v-2.25zM13.5 6a2.25 2.25 0 012.25-2.25H18A2.25 2.25 0 0120.25 6v2.25A2.25 2.25 0 0118 10.5h-2.25a2.25 2.25 0 01-2.25-2.25V6zM13.5 15.75a2.25 2.25 0 012.25-2.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-2.25a2.25 2.25 0 01-2.25-2.25v-2.25z'/%3E%3C/svg%3E");
}

.get-card-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.get-card-desc {
  margin: 0;
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: 1.55;
}

.hero-stores {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.hero-download-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: var(--space-md);
  width: 100%;
}

.store-badges-under-demo {
  justify-content: center;
  margin-top: 0;
  width: 100%;
}

.hero-download-group .hero-stores,
.hero-download-group .store-badges-under-demo {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-wrap: nowrap;
}

.store-badge-img-link {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  border-radius: 14px;
  overflow: hidden;
}

.store-badge-img-link img {
  width: 100%;
  height: 100%;
  max-width: 240px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.store-badge-img-link:hover img {
  transform: scale(1.02);
}

.hero-product-links {
  display: flex;
  gap: 10px;
  width: 100%;
}

.hero-product-link {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 var(--space-md);
  border-radius: var(--radius-lg);
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
  box-sizing: border-box;
  border: 1.5px solid transparent;
}

.hero-product-link-solid {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.hero-product-link-solid:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

.hero-product-link-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.hero-product-link-outline:hover {
  background: var(--bg-elevated);
  border-color: var(--text-tertiary);
  color: var(--text);
  transform: translateY(-1px);
}

.hero-product-link:focus {
  outline: none;
}

.hero-product-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.hero-product-link-icon-wrap {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-product-link-icon {
  flex-shrink: 0;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}

[dir="rtl"] .hero-product-link-icon {
  background-position: left center;
}

[dir="ltr"] .hero-product-link-icon {
  background-position: right center;
}

/* Solid button: white icons */
.hero-product-link-solid .hero-product-link-icon-warehouse {
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 21V8l9-4 9 4v13'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13 13h4v8H7v-6h6'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13 21v-9a1 1 0 00-1-1h-2a1 1 0 00-1 1v9'/%3E%3C/svg%3E");
}

.hero-product-link-solid .hero-product-link-icon-box {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 3l8 4.5v9l-8 4.5-8-4.5v-9l8-4.5z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 12l8-4.5'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 12v9'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 12L4 7.5'/%3E%3C/svg%3E");
}

/* Outline button: primary-colored icons */
.hero-product-link-outline .hero-product-link-icon-warehouse {
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237462F6' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 21V8l9-4 9 4v13'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13 13h4v8H7v-6h6'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13 21v-9a1 1 0 00-1-1h-2a1 1 0 00-1 1v9'/%3E%3C/svg%3E");
}

.hero-product-link-outline .hero-product-link-icon-box {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237462F6' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 3l8 4.5v9l-8 4.5-8-4.5v-9l8-4.5z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 12l8-4.5'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 12v9'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 12L4 7.5'/%3E%3C/svg%3E");
}

/* OR divider between product links and store badges */
.hero-product-or {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: 2px 0;
}

.hero-product-or-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.hero-product-or-text {
  font-size: var(--text-caption);
  color: var(--text-tertiary);
  white-space: nowrap;
}

/* App Store / Google Play badge style (like official download links) */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
}

.store-badge-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 54px;
}

.store-badge-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.store-badge-image-apple img {
  width: 100%;
  height: 100%;
  /* Apple SVG has extra built-in side padding, so it looks smaller. */
  transform: scale(1.08);
  transform-origin: center;
}

.store-badge-image-google img {
  width: 100%;
  height: 100%;
  margin-top: 0;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.store-badge:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

.store-badge-apple {
  background: #000;
  color: #fff;
}

.store-badge-icon-apple {
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 22px;
  flex-shrink: 0;
}

.store-badge-google {
  background: #000;
  color: #fff;
}

.store-badge-icon-google {
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 18px;
  flex-shrink: 0;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  text-align: left;
}

.store-badge-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.store-badge-name {
  font-size: 16px;
  font-weight: 600;
}

/* ----- Sections ----- */
.section {
  padding: var(--space-2xl) 0;
  min-width: 0;
  overflow-x: hidden;
}

.section:nth-child(even) {
  background: var(--bg-section);
}

.block-title {
  font-size: var(--text-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  text-align: center;
  color: var(--text);
}

.block-lead {
  font-size: var(--text-body);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
}

/* ----- How it works ----- */
.section-steps .container {
  max-width: 720px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.step {
  text-align: center;
}

.step-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: var(--text-small);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.step-title {
  font-size: var(--text-body);
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  color: var(--text);
}

.step-text {
  font-size: var(--text-small);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* ----- Live demo (first section, minimal tiles) ----- */
.section-demo-first {
  padding: var(--space-lg) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-caption);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-elevated);
  color: var(--text);
}

.btn-full {
  width: 100%;
  margin-top: var(--space-sm);
}

/* ----- Strategic advantage ----- */
.section.section-advantage {
  padding: var(--space-2xl) 0;
  background: #fff;
}

/* ----- Final CTA ----- */
.section.section-cta {
  padding: var(--space-2xl) 0;
  text-align: center;
  background: var(--bg-section);
}

.cta-title {
  font-size: var(--text-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  color: var(--text);
}

.cta-lead {
  font-size: var(--text-body);
  color: var(--text-secondary);
  margin: 0 0 var(--space-lg);
  max-width: 360px;
  margin-inline: auto;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
  margin: 0 auto var(--space-xl);
  max-width: 400px;
}

.cta-form-input {
  flex: 1;
  min-width: 200px;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-body);
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text);
}

.cta-form-input::placeholder {
  color: var(--text-tertiary);
}

.cta-form-input:focus {
  outline: none;
  border-color: var(--primary);
}

.cta-form-btn {
  flex-shrink: 0;
}

/* CTA section store badges row */
.cta-store-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

/* ----- Footer ----- */
.site-footer {
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid var(--border);
  background: var(--bg-section);
  direction: ltr;
}

.site-footer .logo-link-footer {
  margin-top: -17px;
}

.site-footer .logo-img-footer {
  height: 80px;
  max-width: 280px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  font-size: var(--text-caption);
  color: var(--text-tertiary);
}

.footer-inner a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--link);
}

.footer-copy {
  margin: 0;
  width: 100%;
  text-align: center;
}

.footer-compliance {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: clamp(20px, 6vw, 40px);
  row-gap: 6px;
  justify-content: center;
  justify-items: center;
  align-items: center;
  margin-top: -8px;
}

.footer-compliance-logo-moc {
  grid-row: 1;
  grid-column: 1;
  height: 112px;
  width: auto;
  max-width: min(240px, 44vw);
  object-fit: contain;
}

.footer-compliance-logo-vat {
  grid-row: 1;
  grid-column: 2;
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-compliance-number-moc {
  grid-row: 2;
  grid-column: 1;
}

.footer-compliance-number-vat {
  grid-row: 2;
  grid-column: 2;
}

.footer-compliance-number {
  margin: 0;
  font-size: var(--text-caption);
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-align: center;
  direction: rtl;
  white-space: nowrap;
}

/* ----- Lang content visibility ----- */
.lang-content {
  display: none;
}

.lang-content.visible {
  display: inline;
}

.block-title .lang-content.visible,
.block-lead .lang-content.visible,
.model-card-tag .lang-content.visible,
.model-card-headline .lang-content.visible,
.model-card-text .lang-content.visible,
.feature-card-tag .lang-content.visible,
.feature-card-headline .lang-content.visible,
.cta-title .lang-content.visible,
.cta-lead .lang-content.visible,
.cta-form-btn .lang-content.visible,
.btn-header-cta .lang-content.visible,
.step-title .lang-content.visible,
.step-text .lang-content.visible,
.hero-pill .lang-content.visible,
.demo-name .lang-content.visible,
.demo-meta .lang-content.visible,
.demo-live .lang-content.visible,
.mockup-name .lang-content.visible,
.mockup-meta .lang-content.visible,
.mockup-live .lang-content.visible,
.mockup-btn .lang-content.visible,
.mockup-label .lang-content.visible,
.mockup-card-name .lang-content.visible,
.mockup-pill .lang-content.visible,
.mockup-cta .lang-content.visible,
.price-demo-head .lang-content.visible,
.price-demo-name .lang-content.visible,
.price-demo-live-pill .lang-content.visible,
.price-demo-next .lang-content.visible,
.price-demo-meta .lang-content.visible,
.price-demo-tagline .lang-content.visible,
.price-demo-live .lang-content.visible,
.price-demo-btn .lang-content.visible,
.hero-product-link .lang-content.visible,
.hero-product-or-text .lang-content.visible,
.auction-demo-live-pill .lang-content.visible,
.auction-demo-name .lang-content.visible,
.auction-demo-bid .lang-content.visible,
.auction-demo-tagline .lang-content.visible,
.get-card-title .lang-content.visible,
.get-card-desc .lang-content.visible,
.store-badge-label .lang-content.visible,
.footer-compliance-number .lang-content.visible {
  display: inline;
}

/* ----- Scroll animations (subtle) ----- */
.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate[data-delay="1"].visible { transition-delay: 0.1s; }
.scroll-animate[data-delay="2"].visible { transition-delay: 0.15s; }
.scroll-animate[data-delay="3"].visible { transition-delay: 0.2s; }
.scroll-animate[data-delay="4"].visible { transition-delay: 0.25s; }
.scroll-animate[data-delay="5"].visible { transition-delay: 0.3s; }

/* ----- Responsive ----- */
@media (max-width: 734px) {
  .header-inner {
    min-height: 72px;
    padding: var(--space-xs) var(--space-sm);
    padding-inline: max(var(--space-sm), env(safe-area-inset-left)) max(var(--space-sm), env(safe-area-inset-right));
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .logo-img-header {
    height: 56px;
    max-width: min(180px, 45vw);
  }

  .nav-toggle {
  display: flex;
  }

  .nav-toggle[hidden] {
    display: none !important;
  }

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

  /* Mobile nav - full-screen overlay, links stacked vertically under each other */
  .nav-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    padding: calc(72px + var(--space-lg)) var(--space-xl) var(--space-xl);
    padding-inline: max(var(--space-xl), env(safe-area-inset-left)) max(var(--space-xl), env(safe-area-inset-right));
    background: var(--bg-elevated);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s, opacity 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
  }

  .nav-open .nav-mobile {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  /* Each link on its own row - strictly under each other */
  .nav-mobile .nav-link {
    display: block;
    width: 100%;
    padding: var(--space-md) 0;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--border);
    text-align: start;
    box-sizing: border-box;
    text-decoration: none;
    color: var(--text-secondary);
  }

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

  .nav-mobile .nav-link-accent {
    color: var(--primary);
    font-weight: 500;
  }


  .nav-mobile .nav-link:last-child {
    border-bottom: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    display: none;
  }
  .nav-backdrop:not([hidden]) {
    display: block;
  }

  .nav-open .nav-toggle::before {
    width: 22px;
    height: 2px;
    box-shadow: none;
    position: absolute;
    transform: rotate(45deg);
  }
  .nav-open .nav-toggle::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: currentColor;
    transform: rotate(-45deg);
  }

  .header-actions {
    gap: var(--space-xs);
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .btn-header-cta {
    padding: 6px var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
  }

  .theme-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: var(--space-lg) 0 var(--space-xl);
  }

  .hero-title {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    width: 100%;
    max-width: 100%;
  }

  .models-row {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .feature-cards-row {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .features-layout {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  /* What you get: three rectangles under each other, full mobile width */
  .features-cards-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    width: 100%;
    max-width: 100%;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: start;
  }

  .hero-text {
    text-align: start;
  }

  .hero-text .hero-pill {
    margin-inline: 0;
    margin-inline-end: auto;
  }

  .hero-text .hero-title {
    text-align: start;
  }

  .hero-text .hero-sub {
    text-align: start;
  }

  .hero-text .hero-cta {
    justify-content: flex-start;
  }

  .price-demo {
    width: 100%;
    max-width: min(340px, 100%);
    margin-inline: auto;
  align-items: center;
    padding-inline: var(--space-xs);
  }

  .store-badges-under-demo {
    justify-content: center;
  }

  .section {
    padding: var(--space-xl) 0;
    padding-inline: 0;
  }

  .container {
    padding-inline: max(var(--space-sm), env(safe-area-inset-left)) max(var(--space-sm), env(safe-area-inset-right));
  }

  .auction-demo {
    width: 100%;
    max-width: min(400px, 100%);
    padding-inline: var(--space-xs);
  }

  .section-cta .cta-form {
    padding-inline: 0;
  }

  .mockup-frame {
    width: 220px;
    height: 440px;
    border-radius: 32px;
  }

  .mockup-screen {
    border-radius: 24px;
  }

  .price-demo-value {
    font-size: 1.5rem;
  }

  .auction-demo-timer {
    font-size: 1.75rem;
  }

  .block-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .block-lead {
    padding-inline: var(--space-xs);
  }

  .features-cards-row {
    gap: var(--space-sm);
  }

  .get-card,
  .model-card-dark,
  .feature-card-dark {
    padding: var(--space-sm) var(--space-md);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .price-demo-card,
  .auction-demo-card {
    max-width: 100%;
    box-sizing: border-box;
  }

  .price-demo-content,
  .auction-demo-content {
    padding-inline: var(--space-md);
  }

  .store-badges {
  width: 100%;
  justify-content: center;
}

  .store-badge {
    min-width: 0;
    flex: 1 1 auto;
    max-width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    align-items: center;
  }

  .store-badge-icon-apple,
  .store-badge-icon-google {
    width: 28px;
    height: 28px;
    background-size: contain;
  }

  .cta-form {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    width: 100%;
    padding-inline: 0;
  }

  .cta-form-input {
    min-height: 48px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .cta-form-btn {
    min-height: 48px;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: max(var(--space-sm), env(safe-area-inset-left)) max(var(--space-sm), env(safe-area-inset-right));
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .block-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .block-lead {
    font-size: var(--text-small);
  }

  .btn {
    min-height: 48px;
    padding-inline: var(--space-md);
  }

  .store-badge {
    padding: 14px 16px;
    min-height: 54px;
  }

  .store-badge-name {
    font-size: 15px;
  }

  .store-badge-icon-apple,
  .store-badge-icon-google {
    width: 30px;
    height: 30px;
  }

  .site-footer .logo-img-footer {
    max-width: min(280px, 80vw);
  }

  .footer-compliance {
    column-gap: 12px;
  }

  .footer-compliance-logo-moc {
    height: 96px;
    max-width: min(200px, 46vw);
  }

  .footer-compliance-logo-vat {
    height: 42px;
  }

  .footer-compliance-number {
    white-space: normal;
    font-size: 0.7rem;
  }

  .cta-title {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
  }

  .cta-lead {
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .container {
    padding-inline: max(12px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
  }

  .header-inner {
    padding-inline: max(12px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
  }

  .logo-img-header {
    max-width: 140px;
  }

  .btn-header-cta {
    padding-inline: var(--space-sm);
    font-size: var(--text-small);
  }

  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .price-demo-value {
    font-size: 1.35rem;
  }

  .price-demo-value-wrap .price-with-currency .currency-symbol {
    height: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-animate,
  .scroll-animate.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
