@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #323F4B;
  background: #fff;
}

h1 { font-family: 'Inter', sans-serif; font-weight: 900; color: #fff; font-size: 40px; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-family: 'Inter', sans-serif; font-weight: 800; color: #0f172a; font-size: 32px; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-family: 'Inter', sans-serif; font-weight: 700; color: #0f172a; font-size: 20px; line-height: 1.3; }
@media (min-width: 768px) { h1 { font-size: 64px; } h2 { font-size: 48px; } }
@media (min-width: 1024px) { h1 { font-size: 76px; } }

/* Gradient button */
.gradient-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #EC4899 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(124,58,237,0.2);
  transition: box-shadow 0.2s, transform 0.15s;
}
.gradient-btn:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #6D28D9 50%, #DB2777 100%);
  box-shadow: 0 12px 32px rgba(124,58,237,0.35);
  transform: translateY(-1px);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Top accent bar */
.accent-bar {
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #7C3AED, #EC4899);
}

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 896px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 672px; margin: 0 auto; padding: 0 24px; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,1);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 40px rgba(0,0,0,0.08);
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.navbar-logo img { height: 64px; width: auto; display: block; }
.navbar-links { display: flex; align-items: center; gap: 4px; }
.navbar-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.navbar-links a:hover { background: #f3f4f6; color: #000; }

/* ── Solutions dropdown ── */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-trigger:hover { background: #f3f4f6; }
.nav-dropdown-trigger.open { color: #7C3AED; background: #f5f3ff; }
.nav-dropdown-trigger.open #solutions-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 300px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}
.nav-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  text-decoration: none;
  color: #111827;
  transition: background 0.12s;
}
.nav-dropdown-item:hover { background: #f5f3ff; }
.nav-dd-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(124,58,237,0.08);
  color: #7C3AED;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-dd-icon--emerald {
  background: rgba(5,150,105,0.08);
  color: #059669;
}
.nav-dd-text { display: flex; flex-direction: column; gap: 1px; }
.nav-dd-label { font-size: 13px; font-weight: 700; color: #111827; }
.nav-dd-sub { font-size: 11px; color: #9ca3af; }
.nav-dd-divider { height: 1px; background: #f3f4f6; margin: 4px 0; }

/* mobile section label */
.mobile-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  padding: 12px 16px 4px;
}

/* ── Language dropdown ── */
.lang-dropdown-wrap {
  position: relative;
}
.lang-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.lang-dropdown-btn:hover {
  border-color: #c4b5fd;
  color: #7C3AED;
  box-shadow: 0 2px 8px rgba(124,58,237,0.08);
}
.lang-chevron {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.lang-dropdown-wrap.open .lang-chevron {
  transform: rotate(180deg);
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 148px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 6px;
  display: none;
  z-index: 200;
  animation: langDropFade 0.15s ease;
}
.lang-dropdown-wrap.open .lang-dropdown-menu { display: block; }
@keyframes langDropFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #374151;
  transition: background 0.12s, color 0.12s;
  text-align: left;
}
.lang-dropdown-item:hover { background: #f5f3ff; color: #7C3AED; }
.lang-dropdown-item.active { background: #ede9fe; color: #6d28d9; font-weight: 700; }
.lang-code {
  font-weight: 700;
  font-size: 12px;
  min-width: 26px;
  color: inherit;
  letter-spacing: 0.04em;
}
.lang-sep {
  color: #d1d5db;
  margin: 0 6px;
  font-size: 13px;
}
.lang-name {
  font-size: 13px;
  font-weight: 500;
}

/* Mobile lang dropdown – full width variant */
.lang-dropdown-wrap.mobile-lang .lang-dropdown-menu {
  position: static;
  min-width: 100%;
  box-shadow: none;
  border-color: #e5e7eb;
  margin-top: 4px;
}
.lang-dropdown-wrap.mobile-lang .lang-dropdown-btn {
  width: 100%;
  justify-content: space-between;
}

.login-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.login-btn:hover { background: #f3f4f6; color: #111827; }

.book-demo-btn {
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #111827;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}
.book-demo-btn:hover {
  background: #1f2937;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transform: translateY(-1px);
}

.navbar-right { display: flex; align-items: center; gap: 8px; }

/* Mobile menu */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
  padding: 8px;
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu a:hover { background: #f5f3ff; }
.mobile-menu .book-demo-btn {
  margin-top: 12px;
  text-align: center;
  display: block;
  border-radius: 10px;
}

@media (max-width: 1023px) {
  .navbar-links { display: none; }
}
@media (max-width: 767px) {
  .navbar-right { display: none; }
  .hamburger-btn { display: block; }
}

/* ── Hero ── */
.hero-section {
  position: relative;
  background: #0d0d1a;
  overflow: hidden;
  padding: 120px 0 80px;
  text-align: center;
}
/* Hard-lock the section height on desktop so the page NEVER reflows between slides */
@media (min-width: 1024px) {
  .hero-section { height: 960px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section { height: 880px; }
}

/* Radial spotlight glow */
.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.35) 0%, rgba(37,99,235,0.15) 40%, transparent 70%);
  pointer-events: none;
}
/* Subtle noise/particle dots */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* ── Hero slider ── */
.hero-slider {
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease;
  min-height: 580px;
  overflow: visible;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-slider { min-height: 540px; }
}
@media (max-width: 767px) {
  .hero-slider { min-height: 520px; }
}
.hero-slider.fading { opacity: 0; }

/* Headline wrapper — fixed height for the tallest headline (3 wrapped lines at any size) */
#slider-headline-wrap {
  min-height: 230px;
}
@media (min-width: 768px) {
  #slider-headline-wrap { min-height: 240px; }
}
@media (min-width: 1024px) {
  #slider-headline-wrap { min-height: 280px; }
}

/* Attribution line: always in DOM; hidden when null to hold vertical space */
.hero-attribution {
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
  margin: -8px auto 18px;
  line-height: 1.5;
  min-height: 22px;        /* reserve space even when hidden */
  visibility: hidden;       /* JS sets to visible when attribution exists */
  position: relative;
  z-index: 1;
}
.hero-attribution.visible { visibility: visible; }

/* Dot indicators */
.hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  clear: both;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot.active {
  background: #7C3AED;
  transform: scale(1.35);
}
.hero-dot:hover:not(.active) { background: rgba(255,255,255,0.6); }

.hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a78bfa;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.hero-headline {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 28px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  min-height: 110px;
}
@media (min-width: 768px) {
  .hero-subtitle { min-height: 120px; font-size: 20px; }
}
@media (min-width: 1024px) {
  .hero-subtitle { min-height: 102px; }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-top: 48px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 7px 14px;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
}
.trust-item i { opacity: 1; color: #a78bfa; }
.hero-secondary-btn {
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}
.hero-secondary-btn:hover { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.1); }

/* Hero browser screenshot frame */
.hero-browser-wrap {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}
.hero-browser {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 32px 80px rgba(0,0,0,0.45), 0 0 0 8px rgba(255,255,255,0.04);
  overflow: hidden;
}
.browser-chrome-bar {
  background: #f0f0f0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}
.chrome-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.browser-tab-bar {
  display: flex;
  background: #f8f7ff;
  border-bottom: 1px solid #e8eaed;
  padding: 10px 14px;
  gap: 8px;
}
.browser-tab {
  padding: 8px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  background: none;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.browser-tab:hover {
  color: #6d28d9;
  background: rgba(124,58,237,0.06);
  border-color: rgba(124,58,237,0.15);
}
.browser-tab.active {
  color: #7C3AED;
  background: #fff;
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 1px 4px rgba(124,58,237,0.12);
}
.browser-screen {
  display: block;
  width: 100%;
  line-height: 0;
}
.browser-screen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 480px;
  object-position: top;
}

/* ── Problem Section ── */
.problem-section {
  background: linear-gradient(175deg, #f8f7ff 0%, #f0eeff 50%, #faf5ff 100%);
  padding: 96px 0;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7C3AED;
  margin-bottom: 24px;
}
.section-badge.pill {
  border: 1px solid #ddd6fe;
  background: #f5f3ff;
  border-radius: 9999px;
  padding: 6px 12px;
}
.text-center { text-align: center; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-16 { margin-bottom: 64px; }
.mb-24 { margin-bottom: 96px; }
.subtitle-text { color: #6b7280; font-size: 16px; max-width: 640px; margin: 0 auto; }
@media (min-width: 768px) { .subtitle-text { font-size: 18px; } }

/* Comparison table */
.comparison-table { overflow-x: auto; padding-top: 8px; }
.table-inner {
  min-width: 580px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(124,58,237,0.10), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(124,58,237,0.12);
}

.table-header { display: grid; grid-template-columns: 1.1fr 1fr 1.1fr; }
.table-header-cell {
  padding: 18px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  background: #fafafa;
  border-bottom: 1px solid #f0eeff;
}
.table-header-cell.highlight {
  background: linear-gradient(135deg, #6d28d9 0%, #4f46e5 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: none;
  border-radius: 0 18px 0 0;
}
.highlight-border-top { display: none; }

.table-row { display: grid; grid-template-columns: 1.1fr 1fr 1.1fr; }

.table-cell { padding: 16px 20px; font-size: 14px; border-bottom: 1px solid #f5f3ff; }
.table-cell.feature {
  font-weight: 600;
  font-size: 14px;
  color: #1f1535;
  background: #fff;
  display: flex;
  align-items: center;
}
.table-cell.without {
  text-align: center;
  color: #374151;
  font-weight: 500;
  font-size: 13px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* With column — gradient that shifts slightly each row for depth */
.table-cell.with_ {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(160deg, rgba(109,40,217,0.88) 0%, rgba(79,70,229,0.88) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.table-row:nth-child(odd) .table-cell.with_ {
  background: linear-gradient(160deg, rgba(91,33,182,0.90) 0%, rgba(67,56,202,0.90) 100%);
}
.table-row:nth-child(even) .table-cell.with_ {
  background: linear-gradient(160deg, rgba(109,40,217,0.82) 0%, rgba(79,70,229,0.82) 100%);
}
.table-row:last-child .table-cell.with_ { border-radius: 0 0 18px 0; border-bottom: none; }
.table-row:last-child .table-cell.feature { border-radius: 0 0 0 18px; border-bottom: none; }
.table-row:last-child .table-cell { border-bottom: none; }

.with_-border { display: none; }

.cell-icon { display: flex; justify-content: center; }
.icon-x { color: #e5e7eb; }
.icon-check { color: #fff; }

.table-cta { text-align: center; margin-top: 48px; }
.table-cta-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}
.table-cta-meta span { display: flex; align-items: center; gap: 8px; }
.table-cta-meta i, .table-cta-meta svg { width: 18px !important; height: 18px !important; }

/* ── Brands Section ── */
.brands-section { background: #fff; padding: 96px 0; }
.alternating-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 0; }
.alt-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.alt-row + .alt-row {
  border-top: 1px solid rgba(124,58,237,0.1);
}
@media (min-width: 1024px) { .alt-row { grid-template-columns: 1fr 1fr; gap: 48px; } }
@media (min-width: 1024px) { .alt-row:first-child { grid-template-columns: 7fr 3fr; gap: 64px; } }
@media (min-width: 1024px) { .alt-row:nth-child(2) { grid-template-columns: 3fr 7fr; gap: 64px; } }
@media (min-width: 1024px) { .alt-row:nth-child(3) { grid-template-columns: 7fr 3fr; gap: 64px; } }
@media (min-width: 1024px) { #layer-expand { grid-template-columns: 6fr 5fr; gap: 56px; } }

.layer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.layer-tag.purple { color: #7C3AED; }
.layer-tag.blue   { color: #2563EB; }
.layer-tag.indigo { color: #4f46e5; }
.layer-tag.emerald{ color: #059669; }

.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-check { flex-shrink: 0; margin-top: 2px; }
.feature-title { font-weight: 600; color: #111827; font-size: 15px; margin-bottom: 2px; }
.feature-desc  { font-size: 14px; color: #6b7280; }

/* Feature card mockups */
.feature-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  padding: 32px;
}
.feature-card .blob {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border-radius: 16px;
  overflow: hidden;
}
.blob-circle { border-radius: 50%; filter: blur(100px); width: 320px; height: 320px; }
.blob-circle.purple { background: #ede9fe; }
.blob-circle.blue   { background: #dbeafe; }
.blob-circle.indigo { background: #e0e7ff; }
.blob-circle.emerald{ background: #d1fae5; }
.feature-card-inner { position: relative; }
.card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card-icon.purple { background: #f5f3ff; color: #7C3AED; }
.card-icon.blue   { background: #eff6ff; color: #2563EB; }
.card-icon.indigo { background: #eef2ff; color: #4f46e5; }
.card-icon.emerald{ background: #ecfdf5; color: #059669; }
.card-title { font-size: 14px; font-weight: 700; color: #111827; }
.card-sub   { font-size: 12px; color: #9ca3af; }
.card-items { display: flex; flex-direction: column; gap: 12px; }
.card-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: #f9fafb;
}
.card-item.highlight-card { background: #f5f3ff; }
.card-item.highlight-card.blue { background: #eff6ff; }
.card-item.highlight-card.indigo { background: #eef2ff; }
.card-item.highlight-card.emerald { background: #ecfdf5; border: 1px solid #d1fae5; background: #fff; }
.card-item-icon { flex-shrink: 0; }
.card-item-label { font-size: 12px; font-weight: 500; color: #111827; }
.card-item-sub   { font-size: 10px; color: #6b7280; }
.card-big-number { text-align: center; padding: 24px 0; }
.card-big-number .number { font-size: 32px; font-weight: 700; color: #059669; }
.card-big-number .label { font-size: 12px; color: #374151; }

/* ─── Expand / Marketplace section ─────────────────────────────────────── */
.expand-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Browser-chrome mockup frame */
.expand-mockup-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.07);
  border: 1px solid #e5e7eb;
  background: #fff;
}
.expand-mockup-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 14px;
}
.expand-mockup-dots {
  display: flex;
  gap: 5px;
}
.expand-mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.expand-mockup-dots span:nth-child(1) { background: #ef4444; }
.expand-mockup-dots span:nth-child(2) { background: #f59e0b; }
.expand-mockup-dots span:nth-child(3) { background: #22c55e; }
.expand-mockup-urlbar {
  flex: 1;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.expand-mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Green summary card below screenshot */
.expand-summary-card {
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.expand-summary-icon {
  width: 40px;
  height: 40px;
  background: #059669;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.expand-summary-icon svg { width: 20px; height: 20px; }
.expand-summary-title { font-weight: 700; font-size: 14px; color: #064e3b; }
.expand-summary-sub   { font-size: 12px; color: #065f46; margin-top: 1px; }
.expand-summary-stat  {
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
}
.expand-summary-number  { font-size: 26px; font-weight: 800; color: #059669; line-height: 1; }
.expand-summary-caption { font-size: 10px; color: #6b7280; margin-top: 2px; max-width: 120px; text-align: right; }

/* Right column */
.expand-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.expand-headline {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 16px;
}
.expand-headline-light { font-weight: 400; color: #111827; }
.expand-headline-green { font-weight: 700; color: #059669; }
.expand-body {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 0 24px;
}

/* Three stat tiles */
.expand-stats-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.expand-stat-tile {
  flex: 1;
  background: #faf9f6;
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.expand-stat-number {
  font-size: 22px;
  font-weight: 800;
  color: #059669;
  line-height: 1;
  margin-bottom: 5px;
}
.expand-stat-label {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
}

/* Description card */
.expand-desc-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.expand-desc-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.expand-desc-body {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
}

/* ── Mobile overrides for expand section ── */
@media (max-width: 767px) {
  .expand-stats-row   { flex-direction: column; }
  .expand-headline    { font-size: 26px; }
  .expand-summary-card { flex-wrap: wrap; }
  .expand-summary-stat { margin-left: 0; text-align: left; }
  .expand-summary-caption { text-align: left; }
}

/* AI Banner */
.ai-banner {
  background: linear-gradient(120deg, #0f0c29 0%, #2d1b69 50%, #0f0c29 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(76,29,149,0.25);
  border: 1px solid rgba(139,92,246,0.2);
  margin-bottom: 48px;
}
.ai-banner-dots {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.ai-banner-inner { padding: 28px 32px; position: relative; }
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c4b5fd;
  margin-bottom: 12px;
}

/* Compact horizontal layout */
.ai-banner-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .ai-banner-layout {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.ai-banner-left { flex-shrink: 0; }
@media (min-width: 1024px) { .ai-banner-left { width: 220px; } }
.ai-banner-title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.ai-banner-desc  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* Feature items: single row on desktop */
.ai-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  flex: 1;
}
.ai-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-left: 1px solid rgba(139,92,246,0.18);
  flex: 1 1 160px;
  /* animation start state — JS will trigger */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.ai-feature-item.ai-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .ai-feature-item { border-left: none; border-top: 1px solid rgba(139,92,246,0.18); }
}
.ai-feature-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(139,92,246,0.18);
  border: 1px solid rgba(139,92,246,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #c4b5fd;
}
.ai-feature-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; white-space: nowrap; }
.ai-feature-desc  { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.4; }

.brands-cta {
  text-align: center;
  padding: 40px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f5f3ff, #FAF5FF, #fdf4ff);
  border: 1px solid #ddd6fe;
}

/* ── Value Numbers ── */
.values-section { background: #fafafa; padding: 96px 0 112px; }

/* ── Before / After layout ── */
.vs-layout {
  display: grid;
  grid-template-columns: 1fr 3px 1fr;
  align-items: stretch;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e8e3ff;
  box-shadow: 0 8px 64px rgba(124,58,237,0.10), 0 2px 12px rgba(0,0,0,0.04);
}

.vs-col { padding: 64px 56px; }
.vs-col--left  { background: #fff; }
.vs-col--right { background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 100%); }

/* VS vertical divider */
.vs-divider {
  background: linear-gradient(to bottom, transparent, rgba(124,58,237,0.25) 30%, rgba(124,58,237,0.25) 70%, transparent);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-badge {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1e1b4b;
  border: 2px solid rgba(124,58,237,0.4);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 5px #f5f3ff, 0 4px 16px rgba(124,58,237,0.3);
}

/* Column header */
.vs-col-header { margin-bottom: 44px; border-bottom: 1px solid rgba(0,0,0,0.06); padding-bottom: 28px; }
.vs-col-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.vs-col-label--bad  { color: #ef4444; }
.vs-col-label--good { color: #7C3AED; }
.vs-col-sublabel { font-size: 28px; font-weight: 800; color: #111827; line-height: 1.2; }

/* Stats */
.vs-stats { display: flex; flex-direction: column; gap: 44px; }
.vs-stat-number {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.vs-stat-number--bad {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vs-stat-number--good {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vs-stat-label {
  font-size: 17px;
  font-weight: 600;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 6px;
}
.vs-stat-translation {
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 4px;
}

/* Closer */
.vs-closer { margin-top: 56px; }
.vs-closer-main {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}
.vs-closer-sub {
  font-size: 13px;
  color: #9ca3af;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Mobile: stack vertically, horizontal VS divider */
@media (max-width: 767px) {
  .vs-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .vs-col { padding: 44px 28px; }
  .vs-divider {
    width: 100%;
    height: 3px;
    flex-direction: row;
    background: linear-gradient(to right, transparent, rgba(124,58,237,0.25) 30%, rgba(124,58,237,0.25) 70%, transparent);
  }
  .vs-stat-number { font-size: 56px; }
  .vs-col-sublabel { font-size: 22px; }
}

/* ── FAQ ── */
.faq-section { background: #fff; padding: 96px 0; position: relative; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border-radius: 16px;
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 26px 32px;
  background: #fff;
  border: 1.5px solid rgba(124,58,237,0.12);
  border-radius: 16px;
  cursor: pointer;
  font-family: 'Inter', 'Poppins', sans-serif;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.faq-btn.open {
  background: #faf9ff;
  border-color: #7C3AED;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 4px 20px rgba(124,58,237,0.1);
}
.faq-btn:hover { background: #faf9ff; border-color: rgba(124,58,237,0.3); box-shadow: 0 4px 20px rgba(124,58,237,0.08); }
.faq-btn-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.faq-question { font-size: 17px; font-weight: 600; color: #374151; line-height: 1.4; }
.faq-btn.open .faq-question { color: #1e1b4b; }
.faq-icon {
  flex-shrink: 0;
  color: #9ca3af;
  width: 24px; height: 24px;
  background: rgba(124,58,237,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.faq-btn.open .faq-icon { background: #7C3AED; color: #fff; transform: rotate(45deg); }
.faq-answer-wrap {
  background: #faf9ff;
  border: 1.5px solid #7C3AED;
  border-top: none;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-wrap.open { max-height: 500px; }
.faq-answer { padding: 4px 32px 28px; font-size: 15px; color: #4b5563; line-height: 1.8; }

/* ── Demo Form ── */
.demo-section { background: #fff; padding: 96px 0; position: relative; overflow: hidden; }
.demo-blob-left {
  position: absolute; top: 25%; left: -128px;
  width: 384px; height: 384px;
  background: rgba(216,180,254,0.3);
  border-radius: 50%; filter: blur(64px);
  pointer-events: none;
}
.demo-blob-right {
  position: absolute; bottom: 25%; right: -128px;
  width: 384px; height: 384px;
  background: rgba(251,207,232,0.2);
  border-radius: 50%; filter: blur(64px);
  pointer-events: none;
}
.demo-card-wrap { position: relative; }
.demo-glow {
  position: absolute;
  inset: -12px;
  background: linear-gradient(135deg, rgba(196,181,253,0.4), rgba(250,245,255,0.6), rgba(251,207,232,0.3));
  border-radius: 24px;
  filter: blur(16px);
}
.demo-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(124,58,237,0.1);
  border: 1px solid #f1f5f9;
  padding: 40px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-grid-2 .form-group { margin-bottom: 0; }
.form-label { font-size: 14px; font-weight: 500; color: #374151; }
.form-label .req { color: #7C3AED; }
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #111827;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: #9ca3af; }
.form-input:focus, .form-textarea:focus {
  border-color: #c4b5fd;
  box-shadow: 0 0 0 3px rgba(196,181,253,0.25);
}
.form-textarea { resize: none; }
.form-privacy { display: flex; align-items: flex-start; gap: 12px; margin: 4px 0 20px; }
.form-checkbox {
  width: 20px; height: 20px;
  border-radius: 4px;
  border: 2px solid #d1d5db;
  background: #fff;
  flex-shrink: 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  transition: background 0.15s, border-color 0.15s;
}
.form-checkbox.checked { background: #7C3AED; border-color: #7C3AED; }
.form-privacy-text { font-size: 14px; color: #6b7280; }
.form-privacy-text a { color: #7C3AED; text-decoration: underline; text-underline-offset: 2px; }
.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #EC4899 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(124,58,237,0.2);
  transition: opacity 0.2s, box-shadow 0.2s;
}
.form-submit:hover { box-shadow: 0 12px 32px rgba(124,58,237,0.35); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-submit.loading { pointer-events: none; opacity: 0.7; }

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.form-status.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-status.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ── CTA Section ── */
.cta-section { background: #FAF5FF; padding: 96px 0; position: relative; overflow: hidden; }
.persona-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 64px; }
@media (min-width: 768px) { .persona-grid { grid-template-columns: repeat(3, 1fr); } }
.persona-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s;
}
.persona-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.persona-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.persona-icon.purple { background: #f5f3ff; color: #7C3AED; }
.persona-icon.blue   { background: #eff6ff; color: #2563EB; }
.persona-icon.indigo { background: #eef2ff; color: #4f46e5; }
.persona-card h3 { font-size: 18px; font-weight: 700; color: #111827; margin-bottom: 12px; }
.persona-card p  { font-size: 15px; color: #6b7280; line-height: 1.6; }
.cta-center { text-align: center; }

/* ── Footer ── */
.footer {
  background: linear-gradient(135deg, #0d0a1f 0%, #1a0a3c 50%, #12082a 100%);
  padding: 48px 0 32px;
  border-top: none;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
}
.footer-logo { display: block; }
.footer-logo img { height: auto; width: 100%; max-width: 420px; filter: brightness(0) invert(1); display: block; }
.footer-tagline { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 16px; letter-spacing: 0.01em; }
.footer-address { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 10px; line-height: 1.8; text-align: left; }
.footer-swiss { font-size: 13px; font-style: italic; color: rgba(255,255,255,0.35); margin-top: 16px; line-height: 1.7; }

/* ── Footer two-column nav ── */
.footer-nav-cols {
  display: flex;
  gap: 48px;
  flex-shrink: 0;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-nav-heading {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  text-transform: none;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(196, 181, 253, 0.65);
  text-decoration: none;
  line-height: 2.2;
  transition: color 0.15s;
}
.footer-nav-links a:hover { color: #fff; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; text-align: right; }
.footer-right .footer-swiss { text-align: right; margin-top: 0; }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-btn:hover { color: #fff; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.14); }
.footer-bottom { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.footer-bottom .footer-swiss { margin-top: 0; text-align: right; }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── Form credibility line ── */
.form-credibility {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* ── Brand Ticker ── */
.brand-ticker-section {
  background: #fff;
  padding: 40px 0 44px;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.brand-ticker-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 32px;
}
.brand-ticker-overflow {
  overflow: hidden;
  width: 100%;
}
.brand-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  padding: 0 32px;
  animation: brand-scroll 28s linear infinite;
}
.brand-ticker-track:hover {
  animation-play-state: paused;
}
@keyframes brand-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-static-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-static-item img {
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.4);
  transition: filter 0.3s;
}
.brand-static-item img:hover {
  filter: grayscale(0%) opacity(1);
}
.brand-static-item img[alt="intelligentfood Schweiz AG"],
.brand-static-item img[alt="Gizeh"] {
  height: 44px;
}
.brand-static-item img[alt="easytrade distribution"] {
  height: 72px;
  max-width: 320px;
}
.brand-static-item img[alt="Salt+"] {
  height: 64px;
  max-width: 180px;
}
.brand-static-item img[alt="El Tony Mate"] {
  height: 52px;
  max-width: 52px;
}
.brand-static-text {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #94a3b8;
  text-transform: lowercase;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.brand-static-text:hover { opacity: 0.9; }

/* ── Getting Started ── */
.gs-section {
  background: #f8f7ff;
  padding: 96px 0;
}
.gs-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .gs-steps {
    flex-direction: row;
    align-items: flex-start;
    max-width: 100%;
    gap: 0;
  }
}
.gs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 16px;
}
.gs-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #6d28d9);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(124,58,237,0.3);
}
.gs-step-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.gs-step-body p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
.gs-step-connector {
  display: none;
}
@media (min-width: 768px) {
  .gs-step-connector {
    display: flex;
    align-items: center;
    padding-top: 24px;
    flex-shrink: 0;
  }
  .gs-step-connector::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    border-top: 2px dashed #c4b5fd;
  }
}
.gs-callout {
  margin: 48px auto 0;
  max-width: 560px;
  background: #fff;
  border: 1px solid #e2d9f3;
  border-left: 4px solid #7C3AED;
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
}
.gs-callout p {
  font-size: 15px;
  font-weight: 600;
  color: #3730a3;
  line-height: 1.5;
}
.gs-secondary-link {
  font-size: 14px;
  color: #7C3AED;
  text-decoration: none;
  border-bottom: 1px solid rgba(124,58,237,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.gs-secondary-link:hover { color: #5b21b6; border-color: #5b21b6; }

/* ── Brands Plan & Negotiate screenshot frame ── */
.brands-browser-wrap {
  width: 100%;
  position: relative;
}
.brands-browser-glow {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563EB, #7C3AED, #EC4899);
  opacity: 0.18;
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}
.brands-browser {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(124,58,237,0.15);
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.08),
    0 8px 24px rgba(124,58,237,0.12),
    0 32px 72px rgba(0,0,0,0.14);
  overflow: hidden;
}
.brands-browser-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, #2563EB 0%, #7C3AED 50%, #EC4899 100%);
  flex-shrink: 0;
}
.brands-browser .browser-tab-bar {
  padding: 0 20px;
}
.brands-browser .browser-screen img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: top;
  display: block;
  /* Hint to the browser that the source is high-DPI so downscaling
     should preserve text legibility instead of defaulting to soft
     bilinear filtering (Safari). `high-quality` is the modern keyword;
     `-webkit-optimize-contrast` is the legacy Safari fallback. */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  transition: opacity 0.2s;
}

/* ── Execute & Monitor Carousel ── */
@keyframes exec-progress-anim {
  from { width: 0% }
  to   { width: 100% }
}
.exec-progress-track {
  height: 3px;
  background: rgba(0, 0, 0, 0.07);
  overflow: hidden;
  flex-shrink: 0;
}
.exec-progress-fill {
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #2563EB 0%, #7C3AED 100%);
  animation: exec-progress-anim 3s linear forwards;
}
.exec-slides-wrap {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
/* First slide sits in normal flow and sets the container height */
.exec-slide {
  width: 100%;
  height: auto;
  max-height: 460px;
  display: block;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.45s ease;
  /* Keep small UI labels readable when the source is downscaled. */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}
/* Slides 2-5 stack absolutely behind/over the first */
.exec-slides-wrap .exec-slide ~ .exec-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  max-height: none;
}
.exec-slide.active {
  opacity: 1;
}
.exec-step-label {
  display: none;
}
.exec-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 10px 0 9px;
  background: #fff;
}
.exec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.exec-dot.active {
  background: #7C3AED;
  transform: scale(1.5);
}
.exec-dot:hover:not(.active) {
  background: #9ca3af;
  transform: scale(1.2);
}

/* Person context photo floating at bottom-right of carousel */
.exec-carousel-wrap {
  padding-bottom: 0;
  margin-left: 40px;
}
.exec-person-photo {
  position: absolute;
  bottom: -4px;
  right: -52px;
  width: 148px;
  height: 220px;
  object-fit: cover;
  object-position: 35% top;
  border-radius: 14px;
  box-shadow:
    0 0 0 3px #fff,
    0 8px 32px rgba(0, 0, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.10);
  z-index: 30;
  pointer-events: none;
  display: block;
}
@media (max-width: 1023px) {
  .exec-person-photo {
    display: none;
  }
}

/* ── Execute & Monitor demo player ── */
.demo-screen-wrap {
  position: relative;
}
.demo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 28, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  backdrop-filter: blur(2px);
  border-radius: 0 0 13px 13px;
}
.demo-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 15px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(124,58,237,0.45), 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: -0.01em;
}
.demo-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(124,58,237,0.6), 0 2px 10px rgba(0,0,0,0.3);
}
.demo-caption-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 8, 28, 0.82);
  backdrop-filter: blur(10px);
  padding: 14px 20px 10px;
  z-index: 4;
  display: none;
  flex-direction: column;
  gap: 10px;
  border-radius: 0 0 13px 13px;
}
.demo-caption-text {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}
.demo-progress-track {
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  overflow: hidden;
}
.demo-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #7c3aed, #ec4899);
  border-radius: 999px;
  width: 0%;
}

/* ── Security Section ── */
.security-section {
  background: linear-gradient(135deg, #0d0a1f 0%, #1a0a3c 50%, #12082a 100%);
  padding: 96px 0;
}
.security-header {
  margin-bottom: 56px;
}
.security-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4b5fd;
  background: rgba(196,181,253,0.1);
  border: 1px solid rgba(196,181,253,0.25);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
}
.security-h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
@media (min-width: 768px) { .security-h2 { font-size: 48px; } }
.security-subtext {
  color: rgba(196,181,253,0.75);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.security-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px) { .security-card { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .security-card {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .security-tile + .security-tile {
    border-left: 1px solid rgba(139,92,246,0.15);
    padding-left: 40px;
  }
}
.security-tile {
  padding: 0 8px;
}
.security-icon {
  width: 28px;
  height: 28px;
  color: #c4b5fd;
  margin-bottom: 20px;
  display: block;
}
.security-tile h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.security-tile p {
  color: rgba(196,181,253,0.65);
  font-size: 14px;
  line-height: 1.7;
}
.security-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.security-trust-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(109,40,217,0.25);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #ddd6fe;
  white-space: nowrap;
}
.security-trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(139,92,246,0.3);
  flex-shrink: 0;
}
.security-trust-text {
  font-size: 13px;
  color: rgba(196,181,253,0.5);
}
@media (max-width: 640px) {
  .security-trust-divider { display: none; }
  .security-trust-text { text-align: center; width: 100%; }
}

/* ── Who Wins ── */
.who-wins-section {
  background: #0a0614;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.who-wins-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(124,58,237,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 85% 80%, rgba(37,99,235,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.who-wins-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.who-wins-h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  margin: 14px 0 16px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.who-wins-subtext {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.who-wins-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .who-wins-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1100px) {
  .who-wins-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* Cards: initial hidden state (animation adds .ww-visible) */
.who-wins-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 32px 28px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  /* animation initial state */
  opacity: 0;
  transform: translateY(40px);
}
.who-wins-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7C3AED, #2563EB, #EC4899);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.who-wins-card.ww-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease, box-shadow 0.3s ease;
}
.who-wins-card:hover {
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 20px 60px rgba(124,58,237,0.2);
  transform: translateY(-4px);
}
.who-wins-card:hover::before {
  opacity: 1;
}
.who-wins-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #c4b5fd;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.who-wins-headline {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin: 0 0 24px;
}
.who-wins-wins {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.who-wins-wins li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}
.who-wins-wins li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE  ≤ 767px
═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Tighter container padding */
  .container, .container-md, .container-sm { padding: 0 18px; }

  /* Utility spacing scale-down */
  .mb-24 { margin-bottom: 56px; }
  .mb-16 { margin-bottom: 40px; }
  .mb-8  { margin-bottom: 24px; }

  /* ── Navbar ── */
  .navbar-logo img  { height: 44px; }
  .navbar-inner     { height: 60px; }

  /* ── Hero ── */
  .hero-section     { padding: 80px 0 40px; }
  .hero-slider      { min-height: 460px; }
  #slider-headline-wrap { min-height: 170px; }
  .hero-subtitle    { font-size: 16px; min-height: 88px; }
  .hero-attribution { font-size: 13px; }
  .hero-dots        { margin-bottom: 24px; }

  /* CTAs: full-width stack */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    margin-top: 28px;
    gap: 12px;
  }
  .hero-ctas a {
    width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }
  /* Trust badges: tighter wrap on mobile */
  .hero-trust       { gap: 8px; margin-bottom: 0; flex-wrap: wrap; justify-content: center; }
  .trust-item       { font-size: 12px; padding: 6px 12px; }

  /* ── Values section ── */
  .values-section   { padding: 56px 0 72px; }
  .vs-col           { padding: 36px 22px; }
  .vs-col-header    { margin-bottom: 28px; padding-bottom: 20px; }
  .vs-stats         { gap: 32px; }

  /* ── Problem / Comparison table ── */
  .problem-section  { padding: 56px 0; }
  .table-header-cell         { padding: 12px 10px; font-size: 10px; }
  .table-header-cell.highlight { font-size: 12px; padding: 12px 10px; }
  .table-cell                { padding: 12px 12px; font-size: 12px; }
  .table-cell.feature        { font-size: 12px; }
  .table-cell.with_          { font-size: 12px; }
  .table-cell.without        { font-size: 11px; }

  /* Trust badges below table: stack vertically */
  .table-cta-meta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 13px;
  }

  /* ── Brands section ── */
  .brands-section   { padding: 56px 0; }
  .alt-row          { padding: 48px 0; gap: 32px; grid-template-columns: minmax(0, 1fr); }
  .brands-cta       { padding: 28px 18px; }

  /* Brand browser mocks: allow horizontal scroll so fixed-column
     inline mocks (SiS etc.) are swipeable rather than clipped.
     min-width: 0 overrides grid item's default min-width: auto,
     preventing the wrapper from expanding beyond the container. */
  .brands-browser-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    min-width: 0;         /* key: keep wrapper inside grid cell */
    width: 100%;
  }
  .brands-browser {
    overflow: visible !important;
    min-width: 520px;     /* enough for sidebar + main content */
  }

  /* ── AI banner ── */
  .ai-banner-inner  { padding: 22px 18px; }
  .ai-banner-title  { font-size: 17px; }
  .ai-features-grid { flex-direction: column; gap: 0; }
  .ai-feature-item  {
    flex: unset;
    border-left: none;
    border-top: 1px solid rgba(139,92,246,0.18);
    padding: 11px 14px;
  }

  /* ── FAQ ── */
  .faq-section      { padding: 56px 0; }
  .faq-btn          { padding: 18px 18px; }
  .faq-btn-inner    { gap: 12px; }
  .faq-question     { font-size: 15px; }
  .faq-answer       { padding: 4px 18px 20px; font-size: 14px; }

  /* ── Getting Started ── */
  .gs-section       { padding: 56px 0; }
  .gs-step          { padding: 0 8px; }
  .gs-callout       { padding: 16px 20px; }

  /* ── Security ── */
  .security-section { padding: 56px 0; }
  .security-h2      { font-size: 30px; }
  .security-card    { padding: 28px 20px; gap: 28px; }
  .security-header  { margin-bottom: 40px; }

  /* ── Who Wins ── */
  .who-wins-section  { padding: 60px 0 72px; }
  .who-wins-header   { margin-bottom: 40px; }
  .who-wins-card     { padding: 24px 18px 28px; }

  /* ── Demo card ── */
  .demo-section     { padding: 56px 0; }
  .demo-card        { padding: 28px 20px; }

  /* ── Footer ── */
  .footer           { padding: 40px 0 24px; }
  .footer-inner     { gap: 28px; }
  .footer-logo img  { max-width: 240px; }
  .footer-nav-cols  { gap: 32px; }

  /* ── Misc ── */
  .section-badge    { font-size: 11px; }
  .subtitle-text    { font-size: 15px; }
  .brands-cta h3    { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════
   EXTRA SMALL  ≤ 479px
═══════════════════════════════════════════════════════ */
@media (max-width: 479px) {

  /* Typography scale-down */
  h2                { font-size: 26px; }

  /* Navbar */
  .navbar-logo img  { height: 38px; }
  .navbar-inner     { height: 56px; }

  /* Hero */
  .hero-section     { padding: 72px 0 36px; }
  .hero-slider      { min-height: 420px; }
  #slider-headline-wrap { min-height: 150px; }
  .hero-subtitle    { font-size: 15px; min-height: 82px; }

  /* Values */
  .vs-stat-number   { font-size: 48px; }
  .vs-col-sublabel  { font-size: 19px; }
  .vs-col           { padding: 32px 18px; }

  /* Brands */
  .alt-row          { padding: 40px 0; gap: 28px; grid-template-columns: minmax(0, 1fr); }

  /* FAQ */
  .faq-btn          { padding: 16px 14px; }
  .faq-question     { font-size: 14px; }

  /* Security */
  .security-h2      { font-size: 26px; }

  /* Demo */
  .demo-card        { padding: 24px 16px; }

  /* Footer */
  .footer-logo img  { max-width: 200px; }

  /* Table even more compact */
  .table-cell                { padding: 10px 8px; font-size: 11px; }
  .table-cell.feature        { font-size: 11px; }
  .table-cell.with_          { font-size: 11px; }
  .table-cell.without        { font-size: 10px; }
  .table-header-cell.highlight { font-size: 11px; }
}
