/* ============================================
   BeingShip — Premium SaaS Homepage Styles
   ============================================ */

:root {
  --purple-500: #7C3AED;
  --purple-600: #6D28D9;
  --purple-700: #5B21B6;
  --purple-400: #A78BFA;
  --purple-300: #C4B5FD;
  --lavender-50: #F5F3FF;
  --lavender-100: #EDE9FE;
  --lavender-200: #DDD6FE;
  --navy-900: #0F0A1A;
  --navy-800: #1A1229;
  --navy-700: #251A3D;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-300: #D4D4D8;
  --white: #FFFFFF;
  --text-primary: #18181B;
  --text-secondary: #52525B;
  --text-muted: #A1A1AA;
  --gradient-primary: linear-gradient(135deg, #A78BFA 0%, #7C3AED 50%, #6D28D9 100%);
  --gradient-primary-light: linear-gradient(135deg, #EDE9FE 0%, #C4B5FD 50%, #A78BFA 100%);
  --gradient-hero: radial-gradient(ellipse 70% 50% at 80% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 60%),
                   radial-gradient(ellipse 50% 40% at 20% 80%, rgba(167, 139, 250, 0.06) 0%, transparent 60%);
  --gradient-cta: linear-gradient(160deg, #0F0A1A 0%, #1A1229 40%, #3B1F7A 100%);
  --shadow-sm: 0 1px 2px rgba(24, 24, 27, 0.05);
  --shadow-md: 0 4px 20px rgba(24, 24, 27, 0.07);
  --shadow-lg: 0 16px 48px rgba(24, 24, 27, 0.1);
  --shadow-xl: 0 20px 56px rgba(24, 24, 27, 0.12);
  --shadow-glow: 0 8px 40px rgba(124, 58, 237, 0.18);
  --shadow-card: 0 2px 8px rgba(24, 24, 27, 0.04), 0 8px 24px rgba(24, 24, 27, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
  --promo-height: 40px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--promo-height) + 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  padding-top: var(--promo-height);
}

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--purple-600);
  color: var(--white);
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ---- Typography ---- */
.eyebrow {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--purple-600);
  background: var(--lavender-50);
  border: 1px solid var(--lavender-200);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.section__header:has(.section__title--center) {
  text-align: center;
}

.section__header:has(.section__title--center) .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.page-cta__inner {
  text-align: center;
}

.page-cta__inner .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.section--dark .eyebrow {
  color: #E9D5FF;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.page-cta .eyebrow,
.final-cta .eyebrow {
  color: #E9D5FF;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.section__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
}

.section__title--center { text-align: center; }
.section__title--light { color: var(--white); }

.section__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 640px;
}

.section__subtitle--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__subtitle--light { color: rgba(255, 255, 255, 0.65); }

.section { padding: 100px 0; }
.section--gray { background: var(--gray-50); }
.section--lavender { background: var(--lavender-50); }
.section--dark { background: var(--navy-900); }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__header { margin-bottom: 56px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn:focus-visible {
  outline: 2px solid var(--purple-500);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
}

.btn--secondary {
  background: var(--white);
  color: var(--text-primary);
  border-color: var(--gray-200);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
}
.btn--secondary:hover {
  border-color: var(--purple-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--purple-600);
  border: 2px solid var(--lavender-200);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
}
.btn--outline:hover {
  border-color: var(--purple-500);
  background: var(--lavender-50);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--text-secondary);
  padding: 12px 16px;
}
.btn--ghost:hover { color: var(--purple-600); }

.btn--lg { padding: 14px 28px; font-size: 16px; }
.btn--sm { padding: 8px 18px; font-size: 14px; }
.btn--full { width: 100%; }

.btn--light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.btn--light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--light-ghost { color: rgba(255, 255, 255, 0.7); }
.btn--light-ghost:hover { color: var(--white); }

/* ---- Glass Cards ---- */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.glass-card--dark {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

/* ---- Badge ---- */
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ---- Promo Strip ---- */
.promo-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--promo-height);
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  font-size: 13px;
}
.promo-strip p { margin: 0; }
.promo-strip strong { font-weight: 700; }
.promo-strip__link {
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.promo-strip__link:hover { opacity: 1; text-decoration: underline; }

/* ---- Header ---- */
.header {
  position: fixed;
  top: var(--promo-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled,
.header.menu-open {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.header.scrolled:not(.menu-open) {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header.menu-open {
  z-index: 1002;
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}

.logo__mark {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo--footer .logo__mark {
  height: 40px;
}

.logo--footer .logo__text {
  color: var(--white);
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav__list a:hover { color: var(--purple-600); }
.nav__list a.is-active {
  color: var(--text-primary);
  font-weight: 600;
}
.nav__list a:focus-visible {
  outline: 2px solid var(--purple-400);
  outline-offset: 4px;
  border-radius: 4px;
}
.nav__list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: width 0.3s ease;
}
.nav__list a:hover::after { width: 100%; }
.nav__list a.is-active::after { width: 100%; }

.nav__item--dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
  padding: 0;
}

.nav__dropdown-trigger:hover,
.nav__dropdown-trigger.is-active {
  color: var(--purple-600);
}

.nav__dropdown-trigger.is-active {
  color: var(--text-primary);
  font-weight: 600;
}

.nav__dropdown-trigger:focus-visible {
  outline: 2px solid var(--purple-400);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav__dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav__dropdown-trigger:hover::after,
.nav__dropdown-trigger.is-active::after,
.nav__item--dropdown.is-open .nav__dropdown-trigger::after {
  width: calc(100% - 18px);
}

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

.nav__item--dropdown.is-open .nav__dropdown-icon {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 220px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1001;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown,
.nav__item--dropdown.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav__dropdown a::after {
  display: none;
}

.nav__dropdown a:hover {
  background: var(--lavender-50);
  color: var(--purple-600);
}

.nav__dropdown a.is-active {
  background: var(--lavender-100);
  color: var(--purple-700);
  font-weight: 600;
}

.nav__dropdown a:focus-visible {
  outline: 2px solid var(--purple-400);
  outline-offset: -2px;
}

.header__actions .btn--primary { padding: 10px 22px; }

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

.header__consult { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  top: calc(var(--header-height) + var(--promo-height));
  background: var(--white);
  z-index: 1001;
  padding: 32px 24px 48px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  visibility: hidden;
  pointer-events: none;
  border-top: 1px solid var(--gray-200);
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.08);
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a { font-size: 20px; font-weight: 600; }
.mobile-menu nav ul a.is-active { color: var(--purple-600); }

.mobile-nav__dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0;
}

.mobile-nav__dropdown-trigger.is-active {
  color: var(--purple-600);
}

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

.mobile-nav__item--dropdown.is-open .mobile-nav__dropdown-icon {
  transform: rotate(180deg);
}

.mobile-nav__submenu {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0 0;
  padding-left: 16px;
  list-style: none;
  border-left: 2px solid var(--lavender-100);
}

.mobile-nav__item--dropdown.is-open .mobile-nav__submenu {
  display: flex;
}

.mobile-nav__submenu a {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-nav__submenu a.is-active {
  color: var(--purple-600);
  font-weight: 600;
}

.mobile-menu__actions { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }

/* ---- Hero Carousel (Shiprocket-style) ---- */
.hero-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow-x: hidden;
  overflow-y: visible;
}

.hero-carousel__slides {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  min-height: 640px;
  transition: min-height 0.35s ease;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.75s;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  padding: calc(var(--header-height) + var(--promo-height) + 24px) 0 40px;
  overflow: visible;
}

@media (min-width: 1025px) {
  .hero-slide.active {
    position: relative;
    inset: auto;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    z-index: 2;
    min-height: 640px;
  }

  .hero-slide:not(.active):not(.exit) {
    height: 0;
    min-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.hero-slide.exit {
  opacity: 0;
  transform: translateX(-40px);
  z-index: 1;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity 0.8s ease;
}

.hero-slide--theme-1 .hero-slide__bg {
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(167, 139, 250, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #FAFAFF 0%, #FFFFFF 100%);
}

.hero-slide--theme-2 .hero-slide__bg {
  background:
    radial-gradient(ellipse 50% 45% at 75% 30%, rgba(150, 191, 72, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(124, 58, 237, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #F8FFF5 0%, #FFFFFF 100%);
}

.hero-slide--theme-3 .hero-slide__bg {
  background:
    radial-gradient(ellipse 55% 45% at 80% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 15% 75%, rgba(124, 58, 237, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #F5F8FF 0%, #FFFFFF 100%);
}

.hero-slide--theme-4 .hero-slide__bg {
  background:
    radial-gradient(ellipse 50% 45% at 70% 20%, rgba(236, 72, 153, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 25% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #FFF5FA 0%, #FFFFFF 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--purple-400);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 8s ease-in-out infinite;
}
.hero-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 60%; left: 25%; animation-delay: 1.5s; width: 4px; height: 4px; }
.hero-particles span:nth-child(3) { top: 30%; right: 20%; animation-delay: 3s; }
.hero-particles span:nth-child(4) { bottom: 30%; right: 35%; animation-delay: 0.5s; width: 8px; height: 8px; }
.hero-particles span:nth-child(5) { top: 45%; left: 45%; animation-delay: 2s; }
.hero-particles span:nth-child(6) { bottom: 20%; left: 60%; animation-delay: 4s; width: 5px; height: 5px; }

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.2; }
  50% { transform: translate(15px, -25px); opacity: 0.5; }
}

.hero-slide__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
  width: 100%;
}

.hero-slide__content {
  min-width: 0;
  padding-right: 8px;
}

.hero-slide__visual {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-slide__content .eyebrow {
  max-width: 100%;
  line-height: 1.45;
  margin-bottom: 18px;
}

.hero-slide__title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.14;
  margin-bottom: 20px;
  overflow: visible;
}

.hero-slide__subtitle {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-slide__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  padding-bottom: 8px;
}

/* Stagger enter animation */
.hero-slide.active .hero-animate {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.hero-slide.active .hero-animate:nth-child(1) { animation-delay: 0.05s; }
.hero-slide.active .hero-animate:nth-child(2) { animation-delay: 0.15s; }
.hero-slide.active .hero-animate:nth-child(3) { animation-delay: 0.25s; }
.hero-slide.active .hero-animate:nth-child(4) { animation-delay: 0.35s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn--shine {
  position: relative;
  overflow: hidden;
}
.btn--shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

/* Hero scene — ecosystem orbit */
.hero-scene--ecosystem {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 360px;
  margin: 0 auto;
  overflow: visible;
}

.hero-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 290px;
  height: 290px;
  margin: -145px 0 0 -145px;
  animation: orbitSpin 56s linear infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.hero-orbit-ring__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-orbit-ring__track::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(124, 58, 237, 0.14);
  border-radius: 50%;
}

.hero-orbit-ring__track::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 68%);
  pointer-events: none;
}

.orbit-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--orbit-angle)) translateX(142px);
  z-index: 1;
}

.orbit-slot__upright {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) rotate(calc(-1 * var(--orbit-angle)));
  animation: orbitUpright 56s linear infinite;
}

@keyframes orbitUpright {
  to { transform: translate(-50%, -50%) rotate(calc(-1 * var(--orbit-angle) - 360deg)); }
}

.orbit-slot__float {
  animation: orbitBob 5s ease-in-out infinite;
  animation-delay: calc(var(--orbit-i, 0) * -0.65s);
}

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

.hero-orbit-ring .partner-logo--orbit {
  position: relative;
  top: auto;
  left: auto;
  margin: 0;
  transform: none;
  height: 38px;
  min-width: 88px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(124, 58, 237, 0.12);
  box-shadow: 0 4px 16px rgba(24, 24, 27, 0.06);
}

.hero-orbit-ring .partner-logo--orbit img {
  max-height: 18px;
  max-width: 68px;
}

.hero-scene {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scene__core {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 250px;
  padding: 18px;
  animation: coreFloat 5s ease-in-out infinite;
}
@keyframes coreFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-scene__core-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-scene__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.hero-scene__metrics em { display: block; font-size: 10px; color: var(--text-muted); font-style: normal; }
.hero-scene__metrics strong { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }

.hero-scene__chart { width: 100%; height: 60px; }
.hero-slide.active .hero-chart-line {
  stroke-dashoffset: 400;
  animation: drawHeroLine 2.5s ease forwards 0.3s;
}.hero-chart-line { stroke-dasharray: 400; stroke-dashoffset: 400; }

@keyframes drawHeroLine { to { stroke-dashoffset: 0; } }

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  z-index: 4;
  font-size: 11px;
  animation: floatCard 5s ease-in-out infinite;
  pointer-events: none;
  max-width: 140px;
}
.hero-float-card span:first-child { font-size: 16px; }
.hero-float-card em { display: block; font-size: 9px; color: var(--text-muted); font-style: normal; }
.hero-float-card strong { font-size: 12px; font-weight: 700; }
.hero-float-card--1 { top: 6%; right: 2%; animation-delay: 0s; }
.hero-float-card--2 { bottom: 8%; left: 2%; animation-delay: 1.2s; }
.hero-float-card--3 { display: none; }

/* Launch scene */
.launch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 400px;
}
.launch-card {
  padding: 16px;
}
.hero-slide.active .launch-card {
  animation: launchPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.launch-card:nth-child(1) { animation-delay: 0.2s; }
.launch-card:nth-child(2) { animation-delay: 0.35s; }
.launch-card:nth-child(3) { animation-delay: 0.5s; }
.launch-card:nth-child(4) { animation-delay: 0.65s; }
.launch-card p { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

@keyframes launchPop {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.launch-beam {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.06) 0%, transparent 65%);
  animation: beamPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes beamPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Shipping scene */
.hero-scene--shipping {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.shipping-dashboard {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.shipping-dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shipping-dashboard__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.shipping-dashboard__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: livePulse 2s ease-out infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.shipping-dashboard__badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple-600);
  background: var(--lavender-50);
  border: 1px solid var(--lavender-100);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.shipping-dashboard__stats {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
}

.shipping-stat {
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.shipping-stat--primary {
  background: linear-gradient(135deg, var(--lavender-50) 0%, #F5F3FF 100%);
  border-color: var(--lavender-100);
}

.shipping-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--purple-600);
  line-height: 1.1;
}

.shipping-stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.shipping-routes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shipping-route {
  padding: 8px 10px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.shipping-route--active {
  border-color: var(--lavender-200);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
}

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

.shipping-route__id {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.shipping-route__status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--purple-600);
  background: var(--lavender-50);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.shipping-route__status--delivered {
  color: #15803D;
  background: #DCFCE7;
}

.shipping-route__status--pickup {
  color: #1D4ED8;
  background: #DBEAFE;
}

.shipping-route__track {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.shipping-route__line {
  position: relative;
  height: 2px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.shipping-route__line i {
  display: block;
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-300));
  border-radius: 2px;
  animation: routeProgress 2.8s ease-in-out infinite;
}

.shipping-route:not(.shipping-route--active) .shipping-route__line i {
  width: 100%;
  animation: none;
  background: var(--gray-300);
}

.shipping-route--active .shipping-route__line i::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 35%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--purple-600);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
  animation: routeDot 2.8s ease-in-out infinite;
}

@keyframes routeProgress {
  0%, 100% { width: 35%; }
  50% { width: 78%; }
}

@keyframes routeDot {
  0%, 100% { right: 65%; }
  50% { right: 22%; }
}

.shipping-dashboard__features {
  padding-top: 4px;
  border-top: 1px solid var(--gray-100);
}

.shipping-dashboard__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.shipping-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.shipping-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

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

/* Scale scene */
.hero-scene--scale {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.scale-dashboard {
  width: 100%;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
}

.scale-dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.scale-dashboard__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.scale-dashboard__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-500);
  box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.45);
  animation: livePulse 2s ease-out infinite;
}

.scale-dashboard__period {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.scale-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.scale-stat {
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.scale-stat--primary {
  background: linear-gradient(135deg, var(--lavender-50) 0%, #FFF5FA 100%);
  border-color: #FBCFE8;
}

.scale-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--purple-600);
  line-height: 1.1;
}

.scale-stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.scale-dashboard__chart-wrap {
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.scale-dashboard__chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scale-dashboard__chart-value {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: none;
  letter-spacing: -0.02em;
}

.scale-dashboard__chart-value em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: #16A34A;
  margin-left: 4px;
}

.scale-dashboard__chart {
  display: block;
  width: 100%;
  height: 88px;
}

.scale-chart-line {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}

.hero-slide.active .scale-chart-line {
  animation: drawHeroLine 2.2s ease forwards 0.25s;
}

.scale-dashboard__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  padding: 0 4px;
}

.scale-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.scale-bar-col__fill {
  display: block;
  width: 100%;
  height: var(--h);
  min-height: 8px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--purple-400) 0%, var(--purple-600) 100%);
  opacity: 0.55;
  transform-origin: bottom;
  transform: scaleY(0);
}

.hero-slide.active .scale-bar-col__fill {
  animation: barGrow 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.scale-bar-col:nth-child(1) .scale-bar-col__fill { animation-delay: 0.15s; }
.scale-bar-col:nth-child(2) .scale-bar-col__fill { animation-delay: 0.25s; }
.scale-bar-col:nth-child(3) .scale-bar-col__fill { animation-delay: 0.35s; }
.scale-bar-col:nth-child(4) .scale-bar-col__fill { animation-delay: 0.45s; }
.scale-bar-col:nth-child(5) .scale-bar-col__fill { animation-delay: 0.55s; }

.scale-bar-col--active .scale-bar-col__fill {
  opacity: 1;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
}

.scale-bar-col__label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

.scale-bar-col--active .scale-bar-col__label {
  color: var(--purple-600);
}

.scale-dashboard__insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid var(--gray-100);
}

.scale-insight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
}

.scale-insight__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.scale-insight__icon--green {
  color: #15803D;
  background: #DCFCE7;
}

.scale-insight__icon--purple {
  color: var(--purple-600);
  background: var(--lavender-50);
}

.scale-insight strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.scale-insight span {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero footer controls — always below slide content */
.hero-carousel__footer {
  position: relative;
  flex-shrink: 0;
  z-index: 3;
  padding: 20px 0 36px;
  background: var(--white);
}

.hero-carousel__footer-inner {
  display: flex;
  justify-content: center;
}

.hero-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.hero-dot {
  width: 32px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--gray-200);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.hero-dot.active { background: var(--lavender-200); width: 48px; }
.hero-dot__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--purple-500);
  border-radius: inherit;
}
.hero-dot.active .hero-dot__fill {
  animation: dotProgress var(--hero-duration, 6s) linear forwards;
}
@keyframes dotProgress { to { width: 100%; } }

/* Why Us / About */
.why-us {
  padding: 0;
  background: var(--white);
  overflow: visible;
}

.why-us__pin {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vh, 48px) 0;
  box-sizing: border-box;
  width: 100%;
}

.why-us__intro {
  padding: clamp(48px, 8vh, 80px) 0 clamp(24px, 3vh, 40px);
}

.why-us__header {
  text-align: center;
  width: 100%;
}

.why-us__header .eyebrow {
  margin-bottom: 16px;
}

.why-us__header .section__title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  max-width: none;
}

.why-us__lead {
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 920px;
}

.why-us__stack-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.why-us__pin .container.why-us__stack-wrap {
  max-width: 1200px;
}

.why-us__visual {
  position: relative;
  overflow: visible;
  width: 100%;
}

.why-us__actions-wrap {
  padding: clamp(32px, 5vh, 48px) 0 clamp(48px, 8vh, 72px);
}

.why-us__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.why-us-stack__title {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.why-us-metric .why-us-stack__title {
  color: var(--purple-700);
}

.why-us-flow .why-us-stack__title {
  color: #1D4ED8;
}

.why-us-proof .why-us-stack__title {
  color: #065F46;
}

.why-us-stack__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.why-us-stack__content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  flex: 1;
  min-height: 0;
}

.why-us-stack__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.why-us-stack__points {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.why-us-stack__points li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.why-us-stack__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}

.why-us-metric .why-us-stack__points li::before { color: var(--purple-600); opacity: 1; }
.why-us-flow .why-us-stack__points li::before { color: #2563EB; opacity: 1; }
.why-us-proof .why-us-stack__points li::before { color: #059669; opacity: 1; }

.why-us-stack__media {
  position: relative;
  min-height: 180px;
  border-radius: calc(var(--radius-xl) - 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.why-us-stack__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.why-us-stack__feature {
  margin-top: auto;
}

.why-us-stack__feature--metric {
  text-align: left;
  margin-top: auto;
  padding-top: 8px;
}

.why-us-flow__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1D4ED8;
  margin-bottom: 14px;
  text-align: center;
}

.why-us-stack__feature--proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(16, 185, 129, 0.16);
}

.why-us-stack__feature--proof strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #065F46;
  margin-bottom: 4px;
}

.why-us-stack__feature--proof span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: #047857;
}

.why-us-stack__card.is-active {
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(124, 58, 237, 0.08);
}

.why-us-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: visible;
}

.why-us-stack__glow {
  position: absolute;
  inset: 10% 0 0;
  background:
    radial-gradient(ellipse at 30% 35%, rgba(124, 58, 237, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 55%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 45%);
  pointer-events: none;
}

.why-us-metric,
.why-us-flow,
.why-us-proof {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: var(--shadow-card);
}

.why-us-stack__card {
  padding: 0;
  overflow: hidden;
}

.why-us-stack__head {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
}

.why-us-metric .why-us-stack__head {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.18), rgba(167, 139, 250, 0.1));
  border-bottom-color: rgba(124, 58, 237, 0.14);
}

.why-us-flow .why-us-stack__head {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.16), rgba(96, 165, 250, 0.1));
  border-bottom-color: rgba(37, 99, 235, 0.14);
}

.why-us-proof .why-us-stack__head {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.12));
  border-bottom-color: rgba(16, 185, 129, 0.18);
}

.why-us-stack__card.is-active .why-us-stack__head {
  height: auto;
  min-height: var(--stack-title-peek, 56px);
}

.why-us-stack__body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
}

.why-us-metric .why-us-stack__body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(237, 233, 254, 0.28) 100%);
}

.why-us-flow .why-us-stack__body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(219, 234, 254, 0.28) 100%);
}

.why-us-proof .why-us-stack__body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(209, 250, 229, 0.28) 100%);
}

.why-us-metric.why-us-stack__card,
.why-us-metric.why-us-stack__card.glass-card {
  background: linear-gradient(145deg, #FAF5FF 0%, #EDE9FE 52%, #DDD6FE 100%);
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.12), 0 0 0 1px rgba(124, 58, 237, 0.08);
}

.why-us-flow.why-us-stack__card,
.why-us-flow.why-us-stack__card.glass-card {
  background: linear-gradient(145deg, #EFF6FF 0%, #DBEAFE 52%, #BFDBFE 100%);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.why-us-proof.why-us-stack__card,
.why-us-proof.why-us-stack__card.glass-card {
  background: linear-gradient(145deg, #ECFDF5 0%, #D1FAE5 52%, #A7F3D0 100%);
  border-color: rgba(16, 185, 129, 0.22);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.12), 0 0 0 1px rgba(16, 185, 129, 0.08);
}

.why-us-metric .why-us-metric__label {
  color: var(--purple-700);
}

.why-us-flow .why-us-flow__title {
  color: #1D4ED8;
}

.why-us-stack__feature--proof strong {
  color: #065F46;
}

.why-us-stack__feature--proof span {
  color: #047857;
}

.why-us-proof__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45);
  animation: whyUsPulseGreen 2s ease-in-out infinite;
}

@keyframes whyUsPulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

@media (min-width: 901px) {
  .why-us-stack {
    gap: 0;
    max-height: calc(100dvh - var(--header-height) - var(--promo-height) - 48px);
  }

  .why-us-stack:not(.is-stack-ready) .why-us-stack__card {
    visibility: hidden;
  }

  .why-us-stack__card {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
    will-change: transform;
    transform-origin: 50% 0%;
  }

  .why-us-metric.why-us-stack__card {
    box-shadow:
      0 20px 50px rgba(124, 58, 237, 0.14),
      0 0 0 1px rgba(124, 58, 237, 0.1);
  }

  .why-us-flow.why-us-stack__card {
    box-shadow:
      0 20px 50px rgba(37, 99, 235, 0.14),
      0 0 0 1px rgba(37, 99, 235, 0.1);
  }

  .why-us-proof.why-us-stack__card {
    box-shadow:
      0 20px 50px rgba(16, 185, 129, 0.14),
      0 0 0 1px rgba(16, 185, 129, 0.1);
  }

  .why-us-stack__head {
    flex-shrink: 0;
    min-height: 56px;
    height: var(--stack-title-peek, 56px);
    padding: 0 28px;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 0;
  }

  .why-us-metric .why-us-stack__head {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.18), rgba(167, 139, 250, 0.1));
    border-bottom-color: rgba(124, 58, 237, 0.14);
  }

  .why-us-flow .why-us-stack__head {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.16), rgba(96, 165, 250, 0.1));
    border-bottom-color: rgba(37, 99, 235, 0.14);
  }

  .why-us-proof .why-us-stack__head {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.12));
    border-bottom-color: rgba(16, 185, 129, 0.18);
  }

  .why-us-stack__body {
    flex: 1;
    min-height: 280px;
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
  }

  .why-us-stack__content {
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
    gap: 28px;
  }

  .why-us-stack__media {
    min-height: 100%;
  }

  .why-us-stack__media img {
    min-height: 220px;
  }

  .why-us-metric .why-us-stack__body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(237, 233, 254, 0.28) 100%);
  }

  .why-us-flow .why-us-stack__body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(219, 234, 254, 0.28) 100%);
  }

  .why-us-proof .why-us-stack__body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(209, 250, 229, 0.28) 100%);
  }
}

.why-us-metric__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.why-us-metric__value {
  display: block;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.why-us-metric__note {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.why-us-flow__title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.why-us-flow__steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.why-us-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.3s ease;
}

.why-us-flow__step--active {
  color: #1D4ED8;
}

.why-us-flow__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: #64748B;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.why-us-flow__step--active .why-us-flow__icon {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(37, 99, 235, 0.35);
  color: #2563EB;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.why-us-flow__line {
  flex: 0 0 20px;
  height: 2px;
  background: linear-gradient(90deg, #93C5FD, rgba(255, 255, 255, 0.8));
  border-radius: 2px;
  margin-bottom: 28px;
}

/* Brand chips */
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.brand-chip:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-color, var(--purple-400));
}
.brand-chip__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  background: var(--brand-color, var(--purple-500));
  flex-shrink: 0;
}
.brand-chip__name { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.brand-chip--amazon { --brand-color: #FF9900; }
.brand-chip--flipkart { --brand-color: #2874F0; }
.brand-chip--meesho { --brand-color: #9F2089; }
.brand-chip--myntra { --brand-color: #FF3F6C; }
.brand-chip--ajio { --brand-color: #2E2E2E; }
.brand-chip--shopify { --brand-color: #96BF48; }
.brand-chip--woocommerce { --brand-color: #96588A; }
.brand-chip--delhivery { --brand-color: #E4002B; }
.brand-chip--bluedart { --brand-color: #003DA5; }
.brand-chip--dtdc { --brand-color: #0054A6; }
.brand-chip--dhl { --brand-color: #FFCC00; }
.brand-chip--dhl .brand-chip__icon { color: #D40511; font-size: 10px; }
.brand-chip--fedex { --brand-color: #4D148C; }
.brand-chip--xpressbees { --brand-color: #F7941D; }
.brand-chip--razorpay { --brand-color: #072654; }
.brand-chip--cashfree { --brand-color: #00C853; }
.brand-chip--whatsapp { --brand-color: #25D366; }
.brand-chip--magento { --brand-color: #F26322; }
.brand-chip--payu { --brand-color: #A6C307; }
.brand-chip--payu .brand-chip__icon { color: #003366; }
.brand-chip--stylevault { --brand-color: #7C3AED; }
.brand-chip--pureglow { --brand-color: #EC4899; }
.brand-chip--technest { --brand-color: #0EA5E9; }
.brand-chip--homecraft { --brand-color: #D97706; }
.brand-chip--urbanwear { --brand-color: #18181B; }
.brand-chip--freshfarm { --brand-color: #16A34A; }

/* Tech pills marquee */
.tech-marquee { margin-top: 48px; }
.tech-pill {
  display: inline-flex;
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}
.tech-pill:hover {
  border-color: var(--purple-400);
  color: var(--purple-600);
  background: var(--lavender-50);
}
.tech-marquee .marquee__track { gap: 12px; }

.marquee--fast .marquee__track { animation-duration: 22s; }
.marquee--slow .marquee__track { animation-duration: 40s; }

/* Partner logo cards (real courier brand images) */
.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  height: 68px;
  min-width: 150px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.partner-logo:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-300);
}

/* White/transparent logo assets from Shiprocket — must override .partner-logo white bg */
.partner-logo.partner-logo--on-dark {
  background: linear-gradient(145deg, #1A1229 0%, #0F0A1A 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(15, 10, 26, 0.14);
}

.partner-logo.partner-logo--on-dark:hover {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 10px 28px rgba(15, 10, 26, 0.24);
}

.partner-logo.partner-logo--on-dark img {
  opacity: 1;
  filter: none;
}

.partner-logo img {
  display: block;
  max-height: 38px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-logo--sm {
  height: 52px;
  min-width: 120px;
  padding: 8px 16px;
}
.partner-logo--sm img { max-height: 28px; max-width: 100px; }
.partner-logo--orbit {
  height: 48px;
  min-width: 110px;
  padding: 6px 12px;
  border-radius: var(--radius-md);
}
.partner-logo--orbit img { max-height: 24px; max-width: 90px; }
.partner-logo--xs {
  height: 44px;
  min-width: 100px;
  padding: 6px 12px;
  margin: 0 auto 8px;
}
.partner-logo--xs img { max-height: 24px; max-width: 90px; }
.partner-logo--customer {
  height: 72px;
  min-width: 160px;
  padding: 14px 28px;
}
.partner-logo--customer img { max-height: 36px; max-width: 130px; }

.launch-card .partner-logo {
  margin-bottom: 10px;
}

.courier-partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.courier-partners__grid .partner-logo {
  width: 100%;
  min-width: 0;
  height: 80px;
}
.courier-partners__grid .partner-logo img {
  max-height: 44px;
  max-width: 140px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover {
  border-color: var(--purple-500);
  color: var(--purple-600);
  box-shadow: var(--shadow-glow);
  transform: scale(1.08);
}

/* ---- Stats Band ---- */
.stats-band {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

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

.stat-item {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.stat-item:hover {
  background: var(--lavender-50);
  transform: translateY(-4px);
}

.stat-item__value {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--purple-600);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-item__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Hero Dashboard */
.hero-dashboard {
  position: relative;
  min-height: 480px;
  perspective: 1000px;
}

.dashboard-main {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 85%;
  margin: 40px auto 0;
  animation: dashboardEnter 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

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

.dashboard-main__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dashboard-main__title {
  font-size: 14px;
  font-weight: 600;
}

.dashboard-main__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.dashboard-main__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.metric-widget__label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.metric-widget__value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.metric-widget__change {
  font-size: 11px;
  font-weight: 600;
}
.metric-widget__change.positive { color: #22C55E; }

.dashboard-main__chart { height: 80px; }
.chart-line { width: 100%; height: 100%; }
.chart-stroke {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2s ease forwards 0.5s;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.dashboard-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
  opacity: 0;
  animation-fill-mode: forwards;
}

.dashboard-float--1 { top: 0; left: 0; animation-delay: 0.3s, 0s; }
.dashboard-float--2 { top: 10%; right: 0; animation-delay: 0.5s, 1s; }
.dashboard-float--3 { bottom: 30%; left: -5%; animation-delay: 0.7s, 2s; }
.dashboard-float--4 { bottom: 10%; right: 5%; animation-delay: 0.9s, 0.5s; }
.dashboard-float--5 { top: 45%; left: 5%; animation-delay: 1.1s, 1.5s; }

@keyframes floatCard {
  0% { opacity: 0; transform: translateY(20px); }
  10% { opacity: 1; transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.dashboard-float__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dashboard-float__label { display: block; font-size: 10px; color: var(--text-muted); }
.dashboard-float__value { display: block; font-size: 13px; font-weight: 600; }

/* Integration Orbit */
.integration-orbit {
  position: absolute;
  inset: -20px;
  pointer-events: none;
}

.orbit-pill {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  animation: orbitDrift 8s ease-in-out infinite;
}

.orbit-pill--1  { top: 5%;  left: 15%; animation-delay: 0s; }
.orbit-pill--2  { top: 2%;  left: 45%; animation-delay: 0.5s; }
.orbit-pill--3  { top: 8%;  right: 10%; animation-delay: 1s; }
.orbit-pill--4  { top: 25%; right: 0; animation-delay: 1.5s; }
.orbit-pill--5  { top: 40%; right: -2%; animation-delay: 2s; }
.orbit-pill--6  { bottom: 35%; right: 0; animation-delay: 2.5s; }
.orbit-pill--7  { bottom: 20%; right: 8%; animation-delay: 3s; }
.orbit-pill--8  { bottom: 5%; right: 25%; animation-delay: 3.5s; }
.orbit-pill--9  { bottom: 2%; left: 40%; animation-delay: 4s; }
.orbit-pill--10 { bottom: 10%; left: 15%; animation-delay: 4.5s; }
.orbit-pill--11 { bottom: 30%; left: -3%; animation-delay: 5s; }
.orbit-pill--12 { top: 50%; left: -5%; animation-delay: 5.5s; }
.orbit-pill--13 { top: 35%; left: 0; animation-delay: 6s; }
.orbit-pill--14 { top: 18%; left: 5%; animation-delay: 6.5s; }
.orbit-pill--15 { top: 12%; right: 30%; animation-delay: 7s; }

@keyframes orbitDrift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(3px, -5px); }
  50% { transform: translate(-2px, 3px); }
  75% { transform: translate(4px, 2px); }
}

/* ---- Trust ---- */
.trust { padding: 64px 0 80px; }

.trust.section--gray {
  border-top: 1px solid var(--gray-100);
}

.trust-bands { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }

.trust-band__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-left: 4px;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee__track {
  display: flex;
  gap: 20px;
  animation: marquee 30s linear infinite;
  width: max-content;
  align-items: center;
}

.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }

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

.logo-placeholder {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity 0.3s, color 0.3s;
  flex-shrink: 0;
}
.logo-placeholder:hover { opacity: 1; color: var(--purple-600); }
.logo-placeholder--brand { font-weight: 700; }

/* ---- Problem ---- */
.problem__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.fragment-diagram {
  position: relative;
  height: 440px;
  background: linear-gradient(165deg, #FFFFFF 0%, #FAFAFF 55%, #F5F3FF 100%);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 24px 48px rgba(124, 58, 237, 0.06);
}

.fragment-diagram__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fragment-diagram__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 100%);
}

.fragment-diagram__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}
.fragment-diagram__orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -20px;
  background: rgba(251, 191, 36, 0.2);
}
.fragment-diagram__orb--2 {
  width: 160px;
  height: 160px;
  bottom: -30px;
  left: -20px;
  background: rgba(124, 58, 237, 0.15);
}

.fragment-diagram__header {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.fragment-diagram__header strong {
  color: #D97706;
  font-weight: 700;
}

.fragment-diagram__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.45);
  animation: livePulse 2s ease-out infinite;
  flex-shrink: 0;
}

.fragment-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(24, 24, 27, 0.06);
  backdrop-filter: blur(6px);
  animation: fragmentFloat 5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  max-width: 46%;
}

.fragment-node--warn {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.12);
}

.fragment-node--warn::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(245, 158, 11, 0.25);
  animation: warnRing 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes warnRing {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.08); }
}

.fragment-node__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: var(--lavender-50);
  border: 1px solid var(--lavender-100);
  flex-shrink: 0;
}

.fragment-node--warn .fragment-node__icon {
  background: #FFFBEB;
  border-color: #FDE68A;
}

.fragment-node__body span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.fragment-alert {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #B45309;
  font-style: normal;
  margin-top: 3px;
  animation: alertBlink 2.2s ease-in-out infinite;
}

@keyframes alertBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@keyframes fragmentFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -5px); }
}

.fragment-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.broken-line {
  fill: none;
  stroke: rgba(161, 161, 170, 0.55);
  stroke-width: 0.55;
  stroke-dasharray: 3 2.5;
  stroke-linecap: round;
  animation: lineDash 4s linear infinite;
}

.broken-line--1 { animation-delay: 0s; }
.broken-line--2 { animation-delay: 0.6s; }
.broken-line--3 { animation-delay: 1.2s; }
.broken-line--4 { animation-delay: 1.8s; }
.broken-line--5 { animation-delay: 2.4s; }

@keyframes lineDash {
  to { stroke-dashoffset: -20; }
}

.break-node {
  fill: #F59E0B;
  animation: breakPulse 2s ease-in-out infinite;
}

.break-node--1 { animation-delay: 0s; }
.break-node--2 { animation-delay: 0.4s; }
.break-node--3 { animation-delay: 0.8s; }
.break-node--4 { animation-delay: 1.2s; }
.break-node--5 { animation-delay: 1.6s; }

@keyframes breakPulse {
  0%, 100% { opacity: 0.35; r: 1.4; }
  50% { opacity: 1; r: 2.2; }
}

.problem__content .eyebrow {
  margin-bottom: 14px;
}

.pain-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.pain-list li:hover {
  border-color: var(--lavender-200);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.pain-list__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple-600);
  background: var(--lavender-50);
  border: 1px solid var(--lavender-100);
  flex-shrink: 0;
}

.pain-list li div strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.pain-list li div span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.problem__callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1px solid #FDE68A;
}

.problem__callout-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #92400E;
  background: #FDE68A;
  flex-shrink: 0;
}

.problem__callout p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #92400E;
  line-height: 1.5;
}

/* ---- Ecosystem ---- */
.ecosystem-map {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 600px;
  margin: 56px auto 0;
}

.ecosystem-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  padding: 28px 36px;
  min-width: 200px;
}

.ecosystem-center__icon { margin: 0 auto 12px; }
.ecosystem-center__label { display: block; font-weight: 700; font-size: 16px; }
.ecosystem-center__sub { display: block; font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.ecosystem-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  z-index: 2;
  cursor: default;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.ecosystem-node:hover {
  border-color: var(--purple-500);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.ecosystem-node svg { color: var(--purple-600); }

.ecosystem-node--1 { top: 3%; left: 62%; transform: translateX(-50%); }
.ecosystem-node--2 { top: 15%; right: 5%; }
.ecosystem-node--3 { top: 42%; right: 0; }
.ecosystem-node--4 { bottom: 15%; right: 8%; }
.ecosystem-node--5 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.ecosystem-node--6 { bottom: 15%; left: 5%; }
.ecosystem-node--7 { top: 42%; left: 0; }
.ecosystem-node--8 { top: 15%; left: 5%; }
.ecosystem-node--9 { top: 8%; left: 25%; }

.ecosystem-node--1:hover { transform: translateX(-50%) scale(1.05); }
.ecosystem-node--5:hover { transform: translateX(-50%) scale(1.05); }

.ecosystem-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.eco-line {
  stroke: url(#lineGrad);
  stroke-width: 1.5;
  stroke-dasharray: 8 4;
  animation: ecoFlow 3s linear infinite;
}

.eco-line--alt {
  stroke-width: 1;
  stroke-dasharray: 4 6;
  opacity: 0.55;
  animation-duration: 4s;
}

.eco-line--link {
  stroke: url(#lineGrad);
  stroke-width: 1;
  stroke-dasharray: 3 8;
  opacity: 0.35;
  animation-duration: 5s;
}

@keyframes ecoFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -24; }
}

.ecosystem-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.ecosystem-mobile__card { padding: 16px 20px; }
.ecosystem-mobile__card span { font-weight: 700; font-size: 15px; display: block; margin-bottom: 4px; }
.ecosystem-mobile__card p { font-size: 13px; color: var(--text-secondary); }

/* ---- Outcomes ---- */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.outcome-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.outcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.outcome-card:hover {
  border-color: var(--purple-400);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}
.outcome-card:hover::before { transform: scaleX(1); }

.outcome-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 90, 246, 0.08);
  border-radius: var(--radius-md);
  color: var(--purple-600);
  margin-bottom: 20px;
}

.outcome-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.outcome-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- Solutions ---- */
.solutions-intro {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.solutions-intro .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.solutions-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.solutions-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
}

.solutions-counter {
  font-size: 15px;
  color: var(--text-muted);
  min-width: 40px;
  text-align: center;
}
.solutions-counter strong { color: var(--purple-600); font-weight: 700; }

.solutions-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.solutions-tab {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  transition: var(--transition);
}

.solutions-tab:hover { border-color: var(--purple-500); color: var(--text-primary); }

.solutions-tab.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(111, 90, 246, 0.3);
}

.solution-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  animation: panelFade 0.4s ease;
  box-shadow: var(--shadow-card);
}

.solution-panel.active { display: grid; }

@keyframes panelFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.solution-panel__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple-600);
  margin-bottom: 12px;
}

.solution-panel h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.solution-panel__lead {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.solution-panel__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.solution-panel__platforms .solution-chip {
  font-size: 12px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 100px;
}

.solution-panel__platforms .solution-chip--logo {
  padding: 6px 14px;
}

.solution-panel__platforms .solution-chip--logo img {
  max-height: 22px;
  max-width: 84px;
}

.solution-panel__includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.solution-panel__includes li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.solution-panel__includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple-500);
  font-size: 12px;
}

.solution-panel__preview { padding: 24px; min-height: 240px; }

.mini-dashboard__bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.mini-dashboard__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}
.mini-dashboard__bar span:first-child { background: #EF4444; }
.mini-dashboard__bar span:nth-child(2) { background: #FBBF24; }
.mini-dashboard__bar span:nth-child(3) { background: #22C55E; }

.mini-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-block {
  height: 60px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}
.mini-block--wide { grid-column: span 2; height: 80px; }

.launch-setup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
}

.launch-setup__header span {
  font-weight: 600;
  color: var(--text-secondary);
}

.launch-setup__header strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-600);
  background: var(--purple-50);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.launch-setup__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.launch-setup__badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-700);
  background: var(--purple-50);
  border: 1px solid rgba(124, 58, 237, 0.12);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.launch-setup__status {
  font-size: 12px;
  font-weight: 600;
  color: #059669;
}

.channel-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
}
.channel-bar span { width: 80px; font-weight: 600; flex-shrink: 0; }
.channel-bar__track {
  flex: 1;
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}
.channel-bar__fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  animation: barGrow 1s ease forwards;
}
.channel-bar em { font-style: normal; font-weight: 700; color: var(--purple-600); font-size: 12px; flex-shrink: 0; width: 36px; text-align: right; }

.shipping-status__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-dot--green { background: #22C55E; }
.status-dot--blue { background: #3B82F6; }
.status-dot--orange { background: #F59E0B; }

.growth-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 160px;
  padding-top: 20px;
}

.growth-bar {
  flex: 1;
  height: var(--h);
  background: var(--gradient-primary);
  border-radius: 4px 4px 0 0;
  opacity: 0.7;
  animation: barGrow 1s ease forwards;
}

@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); }
}

/* ---- Included ---- */
.included__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.included__note {
  margin-top: 24px;
  padding: 20px 24px;
}
.included__note strong { display: block; font-size: 14px; margin-bottom: 4px; }
.included__note p { font-size: 13px; color: var(--text-secondary); }

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.checklist li:hover {
  border-color: var(--purple-500);
}

.checklist li svg { color: var(--purple-600); flex-shrink: 0; }

/* ---- Digital Marketing ---- */
.marketing__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px 56px;
  align-items: stretch;
}

.marketing__intro {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.marketing__intro .eyebrow {
  margin-bottom: 16px;
}

.marketing__intro .section__title {
  margin-bottom: 20px;
}

.marketing__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.marketing__note {
  margin-bottom: 28px;
  padding: 20px 24px;
}

.marketing__note strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.marketing__note p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.marketing__intro .btn {
  margin-top: auto;
  align-self: flex-start;
}

.marketing__services {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}

.marketing-card {
  background: var(--gradient-primary-light);
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.1);
}

.marketing-card:nth-child(1),
.marketing-card:nth-child(2),
.marketing-card:nth-child(3) {
  grid-column: span 2;
}

.marketing-card:nth-child(4),
.marketing-card:nth-child(5) {
  grid-column: span 3;
}

.marketing-page__services {
  max-width: 960px;
  margin: 0 auto;
}

.marketing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.marketing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.24);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.16);
}

.marketing-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--radius-md);
  color: var(--purple-600);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.marketing-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--purple-700);
  position: relative;
  z-index: 1;
}

.marketing-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
  position: relative;
  z-index: 1;
}

/* ---- Comparison ---- */
.comparison__header {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.comparison__header .eyebrow {
  margin-bottom: 16px;
}

.comparison__header .section__title {
  margin-bottom: 16px;
}

.comparison-board {
  max-width: 920px;
  margin: 56px auto 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.comparison-board__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-board__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 32px;
  position: relative;
}

.comparison-board__brand--others {
  background: var(--gray-50);
  border-right: 1px solid var(--gray-100);
}

.comparison-board__brand--us {
  background: linear-gradient(180deg, var(--lavender-50) 0%, var(--white) 100%);
}

.comparison-board__brand h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.comparison-board__brand p {
  font-size: 13px;
  color: var(--text-secondary);
}

.comparison-board__brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-board__brand-icon--muted {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--text-muted);
}

.comparison-board__brand-icon--brand {
  background: var(--lavender-100);
  border: 1px solid var(--purple-200);
  color: var(--purple-600);
}

.comparison-board__pill {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-700);
  background: var(--lavender-100);
  border: 1px solid var(--purple-200);
}

.comparison-board__rows {
  display: flex;
  flex-direction: column;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.25s ease;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover,
.comparison-row.is-active {
  background: rgba(124, 58, 237, 0.03);
}

.comparison-row__cell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 15px;
  line-height: 1.4;
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.comparison-row__cell--others {
  color: var(--text-secondary);
  border-right: 1px solid var(--gray-100);
  background: rgba(248, 250, 252, 0.6);
}

.comparison-row__cell--us {
  color: var(--text-primary);
  font-weight: 600;
  background: rgba(245, 243, 255, 0.35);
}

.comparison-row__icon {
  flex-shrink: 0;
  display: flex;
}

.comparison-row__icon--no {
  color: #94a3b8;
}

.comparison-row__icon--yes {
  color: var(--purple-600);
}

.comparison-board:hover .comparison-row:not(.is-active) .comparison-row__cell {
  opacity: 0.5;
}

.comparison-row.is-active .comparison-row__cell,
.comparison-row:hover .comparison-row__cell {
  opacity: 1;
}

.comparison-row.is-active .comparison-row__cell--us,
.comparison-row:hover .comparison-row__cell--us {
  transform: translateX(2px);
}

/* ---- Demo Layout (Platform) ---- */
.demo-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

.demo-layout__tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-tab {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  text-align: left;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.demo-tab:hover { color: rgba(255, 255, 255, 0.85); background: rgba(255, 255, 255, 0.04); }
.demo-tab.active {
  color: var(--white);
  background: rgba(124, 58, 237, 0.2);
  border-left-color: var(--purple-400);
}

.demo-layout__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.demo-tab-info {
  animation: panelFade 0.4s ease;
}
.demo-tab-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.demo-tab-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 560px;
}

/* ---- Platform ---- */
.platform-tabs {
  display: none;
}

.platform-tab {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  transition: var(--transition);
}

.platform-tab:hover { color: rgba(255, 255, 255, 0.8); border-color: rgba(255, 255, 255, 0.2); }

.platform-tab.active {
  background: rgba(111, 90, 246, 0.2);
  color: var(--white);
  border-color: var(--purple-500);
}

.platform-dashboard {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 32px;
  min-height: 400px;
}

.platform-panel { animation: panelFade 0.4s ease; }

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

.platform-grid--2 { grid-template-columns: 1fr 1fr; }

.platform-widget { padding: 24px; }
.platform-widget__label { display: block; font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.platform-widget__value { display: block; font-size: 28px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.platform-widget__meta { display: block; font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }

.platform-table { grid-column: span 3; padding: 0; overflow: hidden; }

.platform-table__header,
.platform-table__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  padding: 12px 20px;
  font-size: 13px;
}

.platform-table__header {
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.platform-table__row {
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.platform-table__row:hover { background: rgba(255,255,255,0.03); }

.status-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.status-badge--green { background: rgba(34, 197, 94, 0.15); color: #4ADE80; }
.status-badge--blue { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
.status-badge--orange { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }

.courier-grid { grid-column: span 2; padding: 24px; }
.courier-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.courier-item span { width: 80px; }
.courier-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.courier-bar div {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  animation: barGrow 1s ease forwards;
}
.courier-item em { font-style: normal; font-weight: 700; color: var(--purple-400); font-size: 12px; }

.analytics-chart { padding: 24px; }
.analytics-svg { width: 100%; height: 120px; margin-top: 16px; }

/* ---- Industries (premium carousel cards) ---- */
.industries__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.industries__head-copy {
  max-width: 640px;
}

.industries__subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-top: 12px;
}

.industries-carousel__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.industries-carousel {
  position: relative;
}

.industries-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 12px;
}

.industries-track::-webkit-scrollbar { display: none; }

.industry-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 300px;
  min-height: 360px;
  scroll-snap-align: start;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 255, 0.96) 100%),
    var(--white);
  border: 1px solid rgba(228, 228, 231, 0.9);
  border-radius: var(--radius-xl);
  padding: 28px 24px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  isolation: isolate;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(167, 139, 250, 0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(96, 165, 250, 0.08), transparent 28%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.industry-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: -1;
}

.industry-card:hover {
  border-color: rgba(124, 58, 237, 0.24);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.industry-card__copy {
  flex-shrink: 0;
  margin-bottom: 20px;
}

.industry-card__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(109, 40, 217, 0.1);
  background: linear-gradient(180deg, rgba(248, 245, 255, 0.98) 0%, rgba(240, 247, 255, 0.98) 100%);
  color: var(--purple-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.industry-card__title {
  display: block;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.industry-card__label {
  display: block;
  max-width: 25ch;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.industry-card__visual {
  flex: 1;
  position: relative;
  min-height: 200px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.industry-visual-svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  overflow: visible;
  transform-origin: center center;
  transition: transform var(--transition), filter var(--transition);
}

.industry-card:hover .industry-visual-svg {
  transform: translateY(-3px);
  filter: saturate(1.03);
}

.industry-card__visual .connector {
  fill: none;
  stroke: rgba(109, 40, 217, 0.45);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 5 8;
  animation: industryFlowDash 5s linear infinite;
}

.industry-card__visual .connector--2,
.industry-card__visual .connector--5 {
  animation-duration: 4.2s;
}

.industry-card__visual .connector--3,
.industry-card__visual .connector--6 {
  animation-duration: 5.6s;
}

.industry-card__visual .float {
  transform-origin: center;
  animation: industryFloat 6s ease-in-out infinite;
}

.industry-card__visual .float--soft {
  animation-duration: 7s;
}

.industry-card__visual .float--slow {
  animation-duration: 8.4s;
}

.industry-card__visual .drive {
  transform-origin: center;
  animation: industryDrive 4.8s ease-in-out infinite;
}

.industry-card__visual .forklift {
  animation-duration: 5.4s;
}

.industry-card__visual .pulse-dot {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  animation: industrySyncPulse 2s ease-in-out infinite;
  transform-origin: center;
}

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

@keyframes industryDrive {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@keyframes industryFlowDash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -52; }
}

@keyframes industrySyncPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.72; }
}

.industry-card__visual--d2c,
.industry-card__visual--fashion,
.industry-card__visual--marketplace,
.industry-card__visual--manufacturing,
.industry-card__visual--wholesale,
.industry-card__visual--export {
  align-items: flex-end;
  justify-content: center;
}

/* ---- Testimonials ---- */
.testimonial-carousel {
  margin-top: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-track { position: relative; min-height: 280px; }

.testimonial-card {
  display: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.testimonial-card.active {
  display: block;
  animation: testimonialIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card.exit {
  animation: testimonialOut 0.4s ease forwards;
}

@keyframes testimonialIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes testimonialOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-40px); }
}

.testimonial-card blockquote {
  font-size: clamp(17px, 2.5vw, 20px);
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 28px;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--purple-400);
}

.testimonial-card footer strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.testimonial-card footer span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-card__metrics {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.testimonial-card__metrics strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--purple-600);
}
.testimonial-card__metrics span {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonial-dots { display: flex; gap: 8px; }

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  padding: 0;
  transition: var(--transition);
}
.testimonial-dot.active {
  background: var(--purple-500);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ---- Stories (legacy) ---- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.story-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}

.story-card:hover { box-shadow: var(--shadow-md); border-color: var(--purple-500); }

.story-card__industry {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-600);
  background: rgba(111, 90, 246, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.story-card__section { margin-bottom: 16px; }
.story-card__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.story-card__section p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.story-card__section strong { color: var(--purple-600); }

/* ---- Process / Timeline ---- */
.timeline {
  position: relative;
  margin-top: 64px;
  padding: 0 20px;
}

.timeline__track {
  position: absolute;
  top: 24px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--gray-200);
}

.timeline__progress {
  height: 100%;
  width: 0%;
  background: var(--gradient-primary);
  transition: width 0.6s ease;
}

.timeline__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}

.timeline-step { text-align: center; }

.timeline-step__node {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.timeline-step.active .timeline-step__node {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(111, 90, 246, 0.3);
}

.timeline-step h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-step p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- FAQ ---- */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) 1fr;
  gap: 56px;
  align-items: start;
}

.faq__intro .eyebrow {
  margin-bottom: 16px;
}

.faq__intro .section__title {
  margin-bottom: 16px;
}

.faq__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 420px;
}

.faq__support {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.faq__support-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lavender-100);
  color: var(--purple-600);
  border: 1px solid var(--purple-200);
}

.faq__support strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.faq__support p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.2);
}

.faq-item.is-active {
  border-color: var(--purple-300);
  box-shadow: var(--shadow-glow);
}

.faq-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.36s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.36s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-active summary {
  color: var(--purple-700);
  background: linear-gradient(180deg, var(--lavender-50) 0%, var(--white) 100%);
  border-bottom-color: rgba(124, 58, 237, 0.08);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item__index {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--purple-500);
  background: var(--lavender-100);
  border: 1px solid var(--purple-200);
  border-radius: var(--radius-full);
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-item__question {
  line-height: 1.45;
  padding-right: 8px;
}

.faq-item__chevron {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--text-muted);
  transition:
    transform 0.36s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.36s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.36s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__chevron:empty::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-active .faq-item__chevron:empty::before {
  transform: rotate(225deg) translate(-1px, -1px);
}

.faq-item.is-active .faq-item__chevron:not(:empty) {
  transform: rotate(180deg);
  background: var(--lavender-100);
  border-color: var(--purple-300);
  color: var(--purple-600);
}

.faq-item.is-active .faq-item__chevron:empty {
  background: var(--lavender-100);
  border-color: var(--purple-300);
  color: var(--purple-600);
}

.faq-item summary:hover .faq-item__chevron {
  border-color: var(--purple-300);
  color: var(--purple-600);
}

.faq-item__answer {
  overflow: hidden;
}

.faq-item__answer > * {
  min-height: 0;
}

.faq-item__answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 22px 22px 72px;
  margin: 0;
}

/* Before accordion JS: show pre-opened items without flash */
.faq-list:not(.accordion-ready) .faq-item[open] .faq-item__answer,
.guide-list:not(.accordion-ready) .guide-item[open] .guide-item__panel {
  height: auto;
  overflow: visible;
}

/* ---- Guides ---- */
.guide-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.guide-item.faq-item {
  width: 100%;
}

.guide-item__summary-copy {
  display: grid;
  gap: 6px;
  padding-right: 8px;
}

.guide-item__summary-copy strong {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: inherit;
}

.guide-item__teaser {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.55;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-item.is-active .guide-item__teaser {
  opacity: 0;
}

.guide-item__panel {
  overflow: hidden;
}

.guide-item__panel > .guide-item__body {
  min-height: 0;
}

.guide-item__body {
  padding: 8px 24px 28px;
}

.guide-item__layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 28px;
  align-items: start;
}

.guide-item__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
}

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

.guide-item__content {
  min-width: 0;
}

.guide-item__body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.guide-item__body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 18px 0 8px;
}

.guide-item__body h4:first-of-type {
  margin-top: 4px;
}

.guide-item__body ul {
  margin: 0 0 4px;
  padding-left: 20px;
}

.guide-item__body li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .guide-item__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .guide-item__body {
    padding: 4px 16px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .guide-item__teaser {
    transition: none;
  }
}

/* ---- Final CTA ---- */
.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-cta);
}

.final-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(111, 90, 246, 0.2) 0%, transparent 70%);
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.final-cta__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-float {
  position: absolute;
  width: 120px;
  height: 80px;
  opacity: 0.3;
  animation: ctaFloat 10s ease-in-out infinite;
}
.cta-float:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.cta-float:nth-child(2) { top: 60%; right: 12%; animation-delay: 3s; width: 100px; height: 60px; }
.cta-float:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 6s; width: 80px; height: 50px; }

@keyframes ctaFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -15px) rotate(2deg); }
  66% { transform: translate(-8px, 10px) rotate(-1deg); }
}

.final-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto 20px;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.final-cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.final-cta__trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.final-cta__micro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  font-style: italic;
}

/* ---- Footer ---- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer__social a:hover { color: var(--white); }

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer__col li { margin-bottom: 10px; }
.footer__col a {
  font-size: 14px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal { display: flex; gap: 24px; }
.footer__legal a { transition: color 0.2s; }
.footer__legal a:hover { color: var(--white); }

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 32, 0.7);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 520px;
  width: 90%;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.modal.open .modal__content { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.modal__close:hover { background: var(--gray-100); color: var(--text-primary); }

.modal__content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal__content--demo {
  max-width: 680px;
}

.modal__content > p,
.modal__content #demoModalDesc {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.modal__preview { margin-bottom: 24px; }

.demo-screen {
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--gray-50);
}

.demo-screen__bar {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.demo-screen__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
}

.demo-screen__viewport {
  background: linear-gradient(180deg, #12182b 0%, #0b1020 100%);
  border-radius: var(--radius-md);
  padding: 16px;
  min-height: 280px;
}

.modal-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.modal-demo-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.modal-demo-widget {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 14px;
}

.modal-demo-widget span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.modal-demo-widget strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.modal-demo-widget em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
}

.modal-demo-table {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.modal-demo-table__head,
.modal-demo-table__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 8px;
  padding: 10px 14px;
  font-size: 12px;
}

.modal-demo-table--3col .modal-demo-table__head,
.modal-demo-table--3col .modal-demo-table__row {
  grid-template-columns: 1fr 1.2fr 1fr;
}

.modal-demo-table__head {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-demo-table__row {
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.modal-demo-table__row:last-child { border-bottom: none; }

.modal-demo-couriers {
  grid-column: 1 / -1;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.modal-demo-courier {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.modal-demo-courier:last-child { margin-bottom: 0; }
.modal-demo-courier span { width: 72px; }
.modal-demo-courier em { font-style: normal; font-weight: 700; color: var(--purple-400); font-size: 11px; }

.modal-demo-chart {
  grid-column: 1 / -1;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.modal-demo-chart span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}

.modal-demo-chart .analytics-svg {
  width: 100%;
  height: 100px;
}

@media (max-width: 640px) {
  .modal__content--demo { padding: 28px 20px; }
  .modal-demo-grid { grid-template-columns: 1fr; }
  .modal-demo-grid--2 { grid-template-columns: 1fr; }
  .modal-demo-table__head,
  .modal-demo-table__row { font-size: 11px; padding: 8px 10px; }
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.15s; }

/* Bidirectional scroll reveal — toggles on enter AND exit */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-repeat,
  .reveal-repeat--from-left,
  .reveal-repeat--from-right,
  .reveal-repeat--from-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .why-us-stack__card {
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ---- Responsive ---- */
@media (min-width: 1141px) {
  .header__consult { display: inline-flex; }
}

@media (max-width: 1140px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header__actions .btn--sm:not(.menu-toggle) { display: none; }
}

@media (max-width: 1024px) {
  .hero-carousel__slides {
    min-height: auto !important;
  }

  .hero-slide {
    position: relative;
    inset: auto;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible;
    padding: calc(var(--header-height) + var(--promo-height) + 24px) 0 32px;
  }

  .hero-slide:not(.active) {
    height: auto;
    overflow: visible;
    padding: 0;
  }

  .hero-carousel__footer {
    padding: 12px 0 28px;
  }

  .hero-particles { display: none; }
  .hero-slide:not(.active) { display: none; opacity: 1; visibility: visible; transform: none; }
  .hero-slide.active { display: flex; position: relative; }
  .hero-slide__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-slide__content { max-width: none; order: 1; }
  .hero-slide__visual {
    order: 2;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }
  .hero-scene--ecosystem {
    height: 320px;
    max-width: 100%;
  }

  .hero-orbit-ring { display: none; }

  .hero-float-card { display: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .problem__grid { grid-template-columns: 1fr; gap: 40px; }
  .problem__content {
    display: flex;
    flex-direction: column;
  }
  .problem__content .section__title {
    order: 1;
    margin-bottom: 12px;
  }
  .problem__content .eyebrow {
    order: 2;
    margin-bottom: 16px;
  }
  .problem__content .section__subtitle { order: 3; }
  .problem__content .pain-list { order: 4; }
  .problem__content .problem__callout { order: 5; }
  .why-us__header .section__title { font-size: clamp(28px, 6vw, 36px); }
  .why-us__lead { max-width: none; }
  .why-us__pin {
    min-height: 0;
    display: block;
    padding: 0 0 32px;
  }
  .why-us__stack-wrap { max-width: none; }
  .why-us-stack {
    gap: 28px;
    counter-reset: why-us-card;
  }
  .why-us-stack__glow { display: none; }
  .why-us-stack__card {
    display: flex;
    flex-direction: column;
    position: relative !important;
    height: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100%;
    counter-increment: why-us-card;
  }
  .why-us-stack__head {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
  }
  .why-us-stack__head::before {
    content: counter(why-us-card, decimal-leading-zero);
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  }
  .why-us-metric .why-us-stack__head::before {
    color: var(--purple-700);
    border: 1px solid rgba(124, 58, 237, 0.2);
  }
  .why-us-flow .why-us-stack__head::before {
    color: #1D4ED8;
    border: 1px solid rgba(37, 99, 235, 0.2);
  }
  .why-us-proof .why-us-stack__head::before {
    color: #065F46;
    border: 1px solid rgba(16, 185, 129, 0.24);
  }
  .why-us-stack__title {
    white-space: normal;
    font-size: 17px;
    line-height: 1.35;
  }
  .why-us-stack__body {
    width: 100%;
    min-width: 0;
    padding: 20px 18px 22px;
  }
  .why-us-stack__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .why-us-stack__copy { order: 1; }
  .why-us-stack__desc {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
  .why-us-stack__points {
    margin-bottom: 0;
  }
  .why-us-stack__feature {
    margin-top: 16px;
  }
  .why-us-stack__feature--flow {
    display: none;
  }
  .why-us-stack__media {
    order: 2;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .why-us-stack__media img {
    min-height: 0;
    height: 100%;
    aspect-ratio: 16 / 10;
  }
  .why-us-flow__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .why-us-flow__line { display: none; }
  .why-us-flow__step { flex: none; min-width: 0; }
  .why-us-flow__icon { width: 36px; height: 36px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-panel { grid-template-columns: 1fr; padding: 32px; }
  .solutions-nav { flex-direction: column; align-items: stretch; }
  .solutions-pagination { justify-content: center; }
  .included__grid { grid-template-columns: 1fr; gap: 40px; }
  .marketing__grid { grid-template-columns: 1fr; gap: 40px; }
  .marketing__intro .btn { align-self: stretch; }
  .marketing__services {
    grid-template-columns: repeat(2, 1fr);
  }
  .marketing-card:nth-child(n) { grid-column: auto; }
  .marketing-card:nth-child(5) { grid-column: 1 / -1; }
  .demo-layout { grid-template-columns: 1fr; }
  .demo-layout__tabs { flex-direction: row; flex-wrap: wrap; }
  .demo-tab { border-left: none; border-bottom: 3px solid transparent; }
  .demo-tab.active { border-left-color: transparent; border-bottom-color: var(--purple-400); }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .platform-table { grid-column: span 2; }
  .industries__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .industry-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 280px;
  }
  .courier-partners__grid { grid-template-columns: repeat(2, 1fr); }
  .timeline__steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .timeline__track { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .ecosystem-map { display: none; }
  .ecosystem-mobile { display: flex; }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .faq__lead { max-width: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .shipping-dashboard__stats { grid-template-columns: 1fr; }
  .shipping-brands { grid-template-columns: repeat(2, 1fr); }
  .hero-scene--shipping { max-width: 100%; }
  .scale-dashboard__stats { grid-template-columns: 1fr; }
  .scale-dashboard__insights { grid-template-columns: 1fr; }
  .hero-scene--scale { max-width: 100%; }
  .promo-strip { font-size: 11px; padding: 0 12px; gap: 8px; }
  .promo-strip__link { display: none; }
  .fragment-diagram {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    height: auto;
    min-height: 0;
    padding: 14px;
    overflow: hidden;
  }
  .fragment-diagram__backdrop { display: none; }
  .fragment-diagram__header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    justify-content: center;
    margin: 0 0 4px;
    font-size: 11px;
    padding: 8px 12px;
  }
  .fragment-lines { display: none; }
  .fragment-node {
    position: relative;
    left: auto !important;
    top: auto !important;
    max-width: none;
    width: 100%;
    animation: none;
    padding: 10px 12px;
    gap: 8px;
  }
  .fragment-node:last-of-type {
    grid-column: 1 / -1;
  }
  .fragment-node--warn::before { display: none; }
  .fragment-node__icon { width: 28px; height: 28px; font-size: 13px; }
  .fragment-node__body span { font-size: 12px; }
  .fragment-alert { font-size: 10px; }
  .pain-list li:hover { transform: none; }
  .hero-slide__ctas { flex-direction: column; }
  .hero-slide__ctas .btn { width: 100%; }
  .why-us__intro {
    padding-bottom: 8px;
  }
  .why-us__actions-wrap {
    padding-top: 8px;
  }
  .why-us__actions {
    flex-direction: column;
  }
  .why-us__actions .btn {
    width: 100%;
  }
  .why-us-metric__value {
    font-size: 32px;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-item__value { font-size: 28px; }
  .dashboard-main__metrics { grid-template-columns: 1fr; }
  .orbit-pill { font-size: 9px; padding: 3px 8px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .marketing__services { grid-template-columns: 1fr; }
  .marketing-card:nth-child(n) { grid-column: auto; }
  .marketing__intro .btn { width: 100%; }
  .comparison-board__columns,
  .comparison-row { grid-template-columns: 1fr; }

  .comparison-board__brand--others,
  .comparison-row__cell--others { border-right: none; border-bottom: 1px solid var(--gray-100); }

  .comparison-board__brand,
  .comparison-row__cell { padding: 16px 20px; }

  .comparison-board__pill { top: 12px; right: 12px; }
  .faq-item summary {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 16px;
    font-size: 15px;
  }
  .faq-item__index {
    min-width: 32px;
    height: 32px;
    font-size: 11px;
  }
  .faq-item__answer p { padding: 0 16px 16px 52px; }
  .checklist { grid-template-columns: 1fr; }
  .solution-panel__includes { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-table { grid-column: span 1; }
  .platform-table__header,
  .platform-table__row { grid-template-columns: 1fr 1fr; font-size: 12px; }
  .platform-table__header span:nth-child(3),
  .platform-table__header span:nth-child(4),
  .platform-table__row span:nth-child(3),
  .platform-table__row span:nth-child(4) { display: none; }
  .industry-card {
    flex: 0 0 88%;
    min-width: 0;
  }

  .industry-card__label { max-width: none; }

  .industry-visual-svg { max-width: 288px; }

  .industries-carousel__nav { align-self: flex-end; }
  .courier-partners__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .testimonial-card { padding: 28px 24px; }
  .testimonial-card__metrics { flex-direction: column; gap: 16px; }
  .timeline__steps { grid-template-columns: 1fr; gap: 24px; }
  .timeline-step { display: flex; gap: 16px; text-align: left; align-items: flex-start; }
  .timeline-step__node { margin: 0; flex-shrink: 0; width: 40px; height: 40px; font-size: 14px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .final-cta__buttons { flex-direction: column; align-items: center; }
  .final-cta__buttons .btn { width: 100%; max-width: 320px; }
  .dashboard-float { display: none; }
  .dashboard-float--1, .dashboard-float--2 { display: flex; }
  .illus-card { padding: 12px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .fragment-diagram { grid-template-columns: 1fr; }
  .fragment-node:last-of-type { grid-column: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .solutions-tabs { gap: 6px; }
  .solutions-tab { padding: 8px 16px; font-size: 13px; }
  .hero-carousel__footer {
    padding: 4px 0 12px;
  }

  .hero-carousel__footer-inner {
    justify-content: center;
  }

  .hero-carousel__controls { gap: 12px; padding: 8px 12px; }
}

/* ---- Company Pages ---- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-hero {
  padding: calc(var(--header-height) + var(--promo-height) + 56px) 0 72px;
  background:
    var(--gradient-hero),
    linear-gradient(180deg, var(--lavender-50) 0%, var(--white) 100%);
}

.page-hero__inner {
  max-width: 760px;
}

.page-hero__inner .eyebrow {
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 20px;
}

.page-hero__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
}

.page-hero .btn {
  margin-top: 28px;
}

.culture-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.culture-pillar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.culture-pillar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-500);
  flex-shrink: 0;
}

.culture-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 180px 180px;
  gap: 16px;
  margin-top: 48px;
}

.culture-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.culture-gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.culture-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 10, 26, 0.72) 0%, rgba(15, 10, 26, 0.08) 58%);
  pointer-events: none;
}

.culture-gallery__item span {
  position: relative;
  z-index: 1;
}

.culture-gallery__item--1 { grid-column: span 2; }
.culture-gallery__item--2 { grid-column: span 2; }
.culture-gallery__item--3 { grid-column: span 2; }
.culture-gallery__item--4 { grid-column: span 3; }
.culture-gallery__item--5 { grid-column: span 3; }

.culture-stories {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.culture-story {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 24px;
  align-items: center;
}

.culture-story__visual {
  min-height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
}

.culture-story__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.company-page--life .page-hero--life {
  padding-top: 56px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, var(--lavender-50) 0%, var(--white) 100%), var(--gradient-hero);
}

.company-page--life .life-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.company-page--life .life-hero__copy .eyebrow {
  margin-bottom: 16px;
}

.company-page--life .life-hero__copy h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.company-page--life .life-hero__media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.company-page--life .life-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.culture-story h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.culture-story p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.page-cta {
  background: var(--gradient-cta);
  color: var(--white);
}

.page-cta .section__title,
.page-cta .section__subtitle {
  color: var(--white);
}

.page-cta .section__subtitle {
  opacity: 0.78;
}

.page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.about-marquee-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-logo-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: 32px;
}

.about-logo-marquee span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
}

.about-mission {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-stat {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
}

.about-stat strong {
  display: block;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--purple-600);
  margin-bottom: 8px;
}

.about-stat span {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.about-capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-capability {
  padding: 28px;
}

.about-capability h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-capability p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-split__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-split__copy p:last-child {
  margin-bottom: 0;
}

.about-purpose {
  padding: 28px;
  display: grid;
  gap: 24px;
}

.about-purpose__block h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple-700);
  margin-bottom: 8px;
}

.about-purpose__block p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.about-advantage {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: var(--transition);
}

.about-advantage:hover {
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.about-advantage h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-advantage p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 24px;
}

.contact-card h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--purple-700);
}

.contact-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.contact-card a {
  color: var(--purple-600);
  font-weight: 600;
}

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

.contact-form-wrap {
  padding: 32px;
}

.contact-form-wrap > h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact-form__intro {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--purple-400);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 112px;
}

.contact-form__errors {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.18);
  color: #B91C1C;
  font-size: 14px;
  line-height: 1.5;
}

.contact-success {
  text-align: center;
  padding: 32px 16px;
}

.contact-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lavender-100);
  color: var(--purple-600);
}

.contact-success h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-success p {
  font-size: 15px;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .culture-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .culture-gallery__item,
  .culture-gallery__item--1,
  .culture-gallery__item--2,
  .culture-gallery__item--3,
  .culture-gallery__item--4,
  .culture-gallery__item--5 {
    grid-column: span 1;
    min-height: 140px;
  }

  .culture-story {
    grid-template-columns: 1fr;
  }

  .company-page--life .life-hero__grid {
    grid-template-columns: 1fr;
  }

  .company-page--life .life-hero__media img {
    min-height: 280px;
  }

  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-capabilities { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-advantages { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-hero { padding-bottom: 56px; }
  .about-advantages { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .page-cta__actions { flex-direction: column; align-items: stretch; }
  .page-cta__actions .btn { width: 100%; }
}

/* ---- About Page Redesign ---- */
.about-page .about-hero {
  padding: calc(var(--header-height) + var(--promo-height) + 48px) 0 88px;
  background:
    radial-gradient(circle at 14% 10%, rgba(124, 58, 237, 0.08), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(124, 58, 237, 0.06), transparent 20%),
    var(--white);
}

.about-page .about-hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-page .about-hero h1 {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 14ch;
}

.about-page .about-hero__lede {
  font-size: clamp(16px, 1rem + 0.35vw, 18px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 52ch;
}

.about-page .about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-page .about-hero__media {
  position: relative;
  min-height: 520px;
}

.about-page .about-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
}

.about-page .about-hero__scrim {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.06), rgba(17, 24, 39, 0.18));
  pointer-events: none;
}

.about-page .about-hero__media .about-stat {
  position: absolute;
  text-align: left;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
  min-width: 150px;
}

.about-page .about-hero__media .about-stat strong {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.about-page .about-hero__media .about-stat span {
  font-size: 13px;
  line-height: 1.35;
}

.about-page .about-stat--a { top: 18px; left: -18px; }
.about-page .about-stat--b { top: 120px; right: -14px; }
.about-page .about-stat--c { bottom: 92px; left: 20px; }
.about-page .about-stat--d { bottom: 18px; right: 18px; }

.about-page .about-head {
  display: grid;
  gap: 12px;
  margin-bottom: 44px;
}

.about-page .about-head--center {
  text-align: center;
  justify-items: center;
}

.about-page .about-head .eyebrow {
  justify-self: start;
}

.about-page .about-head--center .eyebrow {
  justify-self: center;
}

.about-page .about-head--center .section__subtitle {
  max-width: 760px;
}

.about-page .about-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 62ch;
}

.about-page .about-ecosystem {
  display: grid;
  gap: 4px;
}

.about-page .about-eco-group {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
}

.about-page .about-eco-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-page .about-eco-group__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.about-page .about-eco-group__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-page .about-chip {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.about-page .about-chip--logo {
  padding: 10px 18px;
  min-width: 108px;
}

.about-page .about-chip--logo img {
  display: block;
  max-height: 28px;
  max-width: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.about-page .about-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
  background: var(--lavender-100);
  min-height: 420px;
}

.about-page .about-frame__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-page .about-frame__note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 290px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
}

.about-page .about-frame__note strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-size: 15px;
}

.about-page .about-frame__note p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.about-page .about-checks {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.about-page .about-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.about-page .about-check__tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 2px;
  background: var(--purple-500);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.about-page .about-check strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.about-page .about-check p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.about-page .about-kpis {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.about-page .about-kpi {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  min-height: 180px;
}

.about-page .about-kpi--major {
  grid-row: span 2;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.06), rgba(124, 58, 237, 0.02)), var(--white);
}

.about-page .about-kpi::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
  pointer-events: none;
}

.about-page .about-kpi__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple-600);
  font-size: 18px;
}

.about-page .about-kpi__value {
  font-size: clamp(32px, 3vw, 56px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.about-page .about-kpi__value--sm {
  font-size: clamp(24px, 2vw, 36px);
}

.about-page .about-kpi__label {
  color: var(--text-primary);
  font-weight: 700;
  margin-top: 8px;
  font-size: 15px;
}

.about-page .about-kpi__meta {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.about-page .about-cap-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.about-page .about-cap {
  grid-column: span 4;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-page .about-cap:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124, 58, 237, 0.22);
}

.about-page .about-cap--wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.about-page .about-cap__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-page .about-cap__body h3 {
  font-size: 18px;
  font-weight: 700;
}

.about-page .about-cap__body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.about-page .about-cap__mini {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(124, 58, 237, 0.1);
  display: grid;
  place-items: center;
  color: var(--purple-600);
  font-size: 16px;
}

.about-page .about-cap__media {
  min-height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}

.about-page .about-cap__media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.22s ease;
}

.about-page .about-cap:hover .about-cap__media img {
  transform: scale(1.03);
}

.about-page .about-timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.about-page .about-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.18), rgba(124, 58, 237, 0.32), rgba(124, 58, 237, 0.1));
  transform: translateX(-50%);
}

.about-page .about-t-item {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 16px;
  align-items: center;
}

.about-page .about-t-spine {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.about-page .about-t-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--purple-500);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.12);
}

.about-page .about-t-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.about-page .about-t-step {
  color: var(--purple-600);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-page .about-t-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-page .about-t-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.about-page .about-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-page .about-panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  min-height: 400px;
  box-shadow: var(--shadow-sm);
}

.about-page .about-panel--dark .about-panel__bg,
.about-page .about-panel--dark .about-panel__overlay {
  position: absolute;
  inset: 0;
}

.about-page .about-panel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page .about-panel--dark .about-panel__overlay {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.06), rgba(17, 24, 39, 0.72));
}

.about-page .about-panel__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  gap: 12px;
}

.about-page .about-panel--dark h3,
.about-page .about-panel--dark p {
  color: var(--white);
}

.about-page .about-panel--dark p {
  opacity: 0.88;
  font-size: 15px;
  line-height: 1.6;
}

.about-page .about-panel--light {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.05), rgba(124, 58, 237, 0.02)), var(--white);
}

.about-page .about-panel--light .about-panel__content {
  justify-content: space-between;
  min-height: 400px;
}

.about-page .about-panel__media {
  flex: 1;
  min-height: 180px;
  margin: 12px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.about-page .about-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.about-page .about-panel--light h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.about-page .about-panel--light p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-page .eyebrow--light {
  color: #E9D5FF;
}

.about-page .about-process {
  display: grid;
  grid-template-columns: repeat(8, minmax(120px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.about-page .about-p-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  min-height: 150px;
  min-width: 130px;
}

.about-page .about-p-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 12px;
  height: 1px;
  background: rgba(124, 58, 237, 0.32);
}

.about-page .about-p-step__num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin-bottom: 12px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple-600);
  font-weight: 800;
  font-size: 13px;
}

.about-page .about-p-step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-page .about-p-step p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.about-page .about-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.about-page .about-m {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-page .about-m--1 { grid-column: span 4; }
.about-page .about-m--2 { grid-column: span 5; min-height: 200px; }
.about-page .about-m--3 { grid-column: span 3; }
.about-page .about-m--4 { grid-column: span 3; }
.about-page .about-m--5 { grid-column: span 4; }
.about-page .about-m--6 { grid-column: span 5; }

.about-page .about-m__body {
  padding: 20px;
}

.about-page .about-m__body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-page .about-m__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.about-page .about-m__img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.about-page .about-statline {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 10px;
}

.about-page .about-statline strong {
  font-size: 32px;
  line-height: 1;
  color: var(--purple-600);
}

.about-page .about-statline span {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

.about-page .about-quote {
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.45;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.about-page .about-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-page .about-impact-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.about-page .about-impact-card__img {
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}

.about-page .about-impact-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.22s ease;
}

.about-page .about-impact-card:hover .about-impact-card__img img {
  transform: scale(1.03);
}

.about-page .about-impact-card__body {
  padding: 20px;
}

.about-page .about-impact-card__body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-page .about-impact-card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.about-page .about-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-page .about-team-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-page .about-team-card__img {
  height: 240px;
  overflow: hidden;
  background: var(--gray-100);
}

.about-page .about-team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page .about-team-card__body {
  padding: 20px;
}

.about-page .about-team-card__body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-page .about-team-card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.about-page .about-coverage {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

.about-page .about-map {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.04), rgba(124, 58, 237, 0.01)), var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.about-page .about-map__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-page .about-map__india {
  fill: #F5F3FF;
  stroke: #C4B5FD;
  stroke-width: 2;
  stroke-linejoin: round;
}

.about-page .about-map__network path {
  fill: none;
  stroke: #A78BFA;
  stroke-width: 2;
  opacity: 0.7;
}

.about-page .about-map__nodes circle {
  fill: #7C3AED;
}

.about-page .about-map__labels text {
  fill: var(--text-primary);
  font-size: 13px;
  font-family: var(--font-family, Manrope, sans-serif);
  font-weight: 600;
}

.about-page .about-map__legend {
  z-index: 1;
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 290px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
}

.about-page .about-map__legend strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-size: 15px;
}

.about-page .about-map__legend p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.about-page .about-coverage-stats {
  padding: 20px;
  display: grid;
  gap: 16px;
  align-content: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.about-page .about-cstat {
  padding: 16px;
  border-radius: 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.about-page .about-cstat strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-weight: 800;
}

.about-page .about-cstat p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.about-page .about-cta-section {
  padding-bottom: 88px;
}

.about-page .about-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 400px;
  background: #120B26;
  box-shadow: var(--shadow-xl);
}

.about-page .about-cta-banner__bg {
  position: absolute;
  inset: 0;
}

.about-page .about-cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page .about-cta-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 8, 28, 0.55), rgba(14, 8, 28, 0.88)),
    linear-gradient(90deg, rgba(124, 58, 237, 0.14), rgba(124, 58, 237, 0));
}

.about-page .about-cta-banner__content {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 4vw, 64px);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.about-page .about-cta-banner__content h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  max-width: 720px;
}

.about-page .about-cta-banner__content p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-bottom: 8px;
}

.about-page .about-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.about-page .about-cta-banner .btn--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.about-page .about-cta-banner .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.about-page .about-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.about-page .about-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 1120px) {
  .about-page .about-hero__grid,
  .about-page .about-split,
  .about-page .about-panels,
  .about-page .about-coverage {
    grid-template-columns: 1fr;
  }

  .about-page .about-hero__media {
    min-height: 440px;
  }

  .about-page .about-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page .about-kpi--major {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .about-page .about-kpi:last-child:not(.about-kpi--major) {
    grid-column: 1 / -1;
  }

  .about-page .about-cap,
  .about-page .about-cap--wide {
    grid-column: span 6;
  }

  .about-page .about-cap--wide {
    grid-template-columns: 1fr;
  }

  .about-page .about-impact,
  .about-page .about-team {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page .about-process {
    grid-template-columns: repeat(4, minmax(140px, 1fr));
  }

  .about-page .about-m--1,
  .about-page .about-m--2,
  .about-page .about-m--3,
  .about-page .about-m--4,
  .about-page .about-m--5,
  .about-page .about-m--6 {
    grid-column: span 6;
  }

  .about-page .about-eco-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .about-page .about-timeline::before {
    left: 24px;
    transform: none;
  }

  .about-page .about-t-item {
    grid-template-columns: 48px 1fr;
    align-items: start;
  }

  .about-page .about-t-spine {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: start;
    padding-top: 22px;
  }

  .about-page .about-t-card:not(.about-t-card--context) {
    grid-column: 2;
    grid-row: 1;
  }

  .about-page .about-t-card--context {
    grid-column: 2;
    grid-row: 2;
    margin-top: 12px;
  }
}

@media (max-width: 760px) {
  .about-page .about-hero h1 {
    max-width: none;
  }

  .about-page .about-hero__media {
    min-height: 360px;
  }

  .about-page .about-hero__media .about-stat {
    min-width: auto;
    padding: 10px 12px;
  }

  .about-page .about-hero__media .about-stat strong {
    font-size: 1rem;
  }

  .about-page .about-stat--a { top: 12px; left: 12px; }
  .about-page .about-stat--b { top: 12px; right: 12px; }
  .about-page .about-stat--c { bottom: 72px; left: 12px; }
  .about-page .about-stat--d { bottom: 12px; right: 12px; }

  .about-page .about-kpis,
  .about-page .about-impact,
  .about-page .about-team,
  .about-page .about-process {
    grid-template-columns: 1fr;
  }

  .about-page .about-kpi,
  .about-page .about-kpi--major,
  .about-page .about-kpi:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .about-page .about-cap,
  .about-page .about-cap--wide,
  .about-page .about-m--1,
  .about-page .about-m--2,
  .about-page .about-m--3,
  .about-page .about-m--4,
  .about-page .about-m--5,
  .about-page .about-m--6 {
    grid-column: 1 / -1;
  }

  .about-page .about-masonry {
    grid-template-columns: 1fr;
  }

  .about-page .about-p-step::after {
    display: none;
  }

  .about-page .about-cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .about-page .about-cta-banner__actions .btn {
    width: 100%;
  }

  .about-page .about-timeline::before {
    left: 15px;
  }

  .about-page .about-t-item {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .about-page .about-t-spine {
    padding-top: 18px;
  }

  .about-page .about-t-card {
    padding: 16px;
  }

  .about-page .about-t-card--context {
    margin-top: 10px;
  }
}

/* ---- Solution Pages ---- */
.solution-platforms-block {
  text-align: center;
}

.solution-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.solution-chip {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.solution-chip--logo {
  padding: 10px 18px;
  min-width: 108px;
}

.solution-chip--logo img {
  display: block;
  max-height: 32px;
  max-width: 108px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.solution-chip--channel {
  gap: 10px;
  padding: 8px 16px 8px 10px;
  white-space: nowrap;
}

.solution-chip__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--chip-icon-bg, var(--lavender-50));
}

.solution-chip__icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.solution-chip--meta { --chip-icon-bg: #E7F0FF; --chip-icon-color: #0081FB; }
.solution-chip--google { --chip-icon-bg: #EEF4FF; --chip-icon-color: #4285F4; }
.solution-chip--instagram { --chip-icon-bg: #FCE7F3; --chip-icon-color: #E1306C; }
.solution-chip--facebook { --chip-icon-bg: #E8F0FE; --chip-icon-color: #1877F2; }
.solution-chip--youtube { --chip-icon-bg: #FEE2E2; --chip-icon-color: #FF0000; }
.solution-chip--seo { --chip-icon-bg: #ECFDF5; --chip-icon-color: #059669; }
.solution-chip--whatsapp { --chip-icon-bg: #DCFCE7; --chip-icon-color: #25D366; }

.solution-capabilities {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}

.resource-hub {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.resource-card {
  display: block;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-300);
}

.resource-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.resource-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 900px) {
  .resource-hub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .resource-hub {
    grid-template-columns: 1fr;
  }
}


.solution-capability-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.solution-capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-300);
}

.solution-capability-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
}

.solution-capability-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-capability-card__title {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .solution-capabilities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-capabilities--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .solution-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .solution-capabilities {
    grid-template-columns: 1fr;
  }
}

.solution-includes-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.solution-includes {
  display: grid;
  gap: 12px;
  list-style: none;
}

.solution-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.solution-includes li svg {
  flex-shrink: 0;
  color: var(--purple-500);
}

.solution-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.solution-outcome {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
}

.solution-outcome__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple-500);
  margin-top: 6px;
  flex-shrink: 0;
}

.solution-outcome p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.solution-related {
  text-align: center;
}

.solution-related__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.solution-related__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}

.solution-related__link:hover {
  border-color: rgba(124, 58, 237, 0.25);
  color: var(--purple-600);
  box-shadow: var(--shadow-glow);
}

.page-hero--launch { background: linear-gradient(180deg, var(--lavender-50) 0%, var(--white) 100%), var(--gradient-hero); }
.page-hero--marketplace { background: linear-gradient(180deg, #EFF6FF 0%, var(--white) 100%), var(--gradient-hero); }
.page-hero--shipping { background: linear-gradient(180deg, #FFF7ED 0%, var(--white) 100%), var(--gradient-hero); }
.page-hero--fulfillment { background: linear-gradient(180deg, #ECFDF5 0%, var(--white) 100%), var(--gradient-hero); }
.page-hero--growth { background: linear-gradient(180deg, #F5F3FF 0%, var(--white) 100%), var(--gradient-hero); }
.page-hero--marketing { background: linear-gradient(180deg, #FAF5FF 0%, #F5F3FF 48%, var(--white) 100%), var(--gradient-hero); }

@media (max-width: 1024px) {
  .solution-includes-wrap { grid-template-columns: 1fr; }
  .solution-outcomes { grid-template-columns: 1fr; }
}

.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; color: var(--text-primary); }
.legal-content h3 { font-size: 17px; font-weight: 600; margin: 24px 0 10px; color: var(--text-primary); }
.legal-content p, .legal-content li { color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content .legal-notice {
  padding: 16px 20px;
  margin: 20px 0;
  border-left: 3px solid var(--accent-primary, #7c3aed);
  background: rgba(124, 58, 237, 0.08);
  border-radius: 0 8px 8px 0;
}
.legal-content .legal-notice p:last-child { margin-bottom: 0; }
.legal-content .legal-notice strong { color: var(--text-primary); }
.legal-content address { font-style: normal; line-height: 1.75; color: var(--text-secondary); }

.legal-page .reveal {
  opacity: 1;
  transform: none;
}

/* ---------- CHAT ASSISTANT ---------- */
.bs-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  z-index: 120;
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  pointer-events: none;
}

.bs-chat > * {
  pointer-events: auto;
}

.bs-chat-toggle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bs-chat.has-attention .bs-chat-toggle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.65);
  animation: bs-chat-ring 2.4s ease-out infinite;
  pointer-events: none;
}

.bs-chat.has-attention .bs-chat-toggle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: bs-chat-glow 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes bs-chat-ring {
  0% { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(1.45); opacity: 0; }
}

@keyframes bs-chat-glow {
  0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.35); }
  70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

.bs-chat-teaser {
  max-width: min(240px, calc(100vw - 120px));
  padding: 10px 14px;
  border-radius: 14px 14px 4px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-align: right;
  animation: bs-chat-teaser-in 0.5s ease, bs-chat-teaser-float 3s ease-in-out 0.5s infinite;
}

@keyframes bs-chat-teaser-in {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes bs-chat-teaser-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.bs-chat.is-open .bs-chat-teaser,
.bs-chat.is-open .bs-chat-badge {
  display: none;
}

.bs-chat-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.35);
}

.bs-chat-icon--close { display: none; }
.bs-chat.is-open .bs-chat-icon--open { display: none; }
.bs-chat.is-open .bs-chat-icon--close { display: block; }
.bs-chat.is-open .bs-chat-toggle { display: none; }

.bs-chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #EF4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.45);
  animation: bs-chat-pulse 2s ease-in-out infinite;
}

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

.bs-chat-panel {
  position: relative;
  width: min(360px, calc(100vw - 48px));
  height: min(440px, calc(100dvh - 112px));
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
}

.bs-chat.is-open .bs-chat-panel {
  display: flex;
  animation: bs-chat-panel-in 0.25s ease;
}

@keyframes bs-chat-panel-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bs-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 14px;
  background: var(--gradient-primary);
  color: #fff;
}

.bs-chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bs-chat-header-info strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.bs-chat-header-info span {
  display: block;
  font-size: 12px;
  opacity: 0.88;
  margin-top: 2px;
}

.bs-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.bs-chat-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s;
}

.bs-chat-close:hover { background: rgba(255, 255, 255, 0.22); }

.bs-chat-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--gray-50);
}

.bs-chat-bubble {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  word-break: break-word;
}

.bs-chat-bubble--bot {
  align-self: flex-start;
  background: var(--white);
  color: var(--text-primary);
  border: 1px solid var(--gray-200);
  border-bottom-left-radius: 4px;
}

.bs-chat-bubble--user {
  align-self: flex-end;
  background: var(--purple-600);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.bs-chat-typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}

.bs-chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-400);
  animation: bs-chat-dot 1.2s infinite ease-in-out;
}

.bs-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.bs-chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes bs-chat-dot {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.bs-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 10px;
  background: var(--gray-50);
}

.bs-chat-quick-btn {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.08);
  color: var(--purple-700);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.bs-chat-quick-btn:hover {
  background: rgba(124, 58, 237, 0.14);
  border-color: var(--purple-500);
  transform: translateY(-1px);
}

.bs-chat-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.bs-chat-input input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font);
  background: var(--white);
  color: var(--text-primary);
  transition: border-color 0.2s;
}

.bs-chat-input input:focus {
  outline: none;
  border-color: var(--purple-500);
}

.bs-chat-input input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.bs-chat-input button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s;
}

.bs-chat-input button:hover { transform: scale(1.05); }

@media (max-width: 600px) {
  .bs-chat {
    bottom: 16px;
    right: 16px;
    align-items: stretch;
  }

  .bs-chat-panel {
    width: calc(100vw - 32px);
    height: min(420px, calc(100dvh - 96px));
  }

  .bs-chat-toggle { align-self: flex-end; }

  .bs-chat-teaser {
    align-self: flex-end;
    max-width: calc(100vw - 96px);
  }

  body.bs-chat-open { overflow: hidden; }
}

/* Track Order page */
.page-hero--track {
  background: linear-gradient(180deg, #EFF6FF 0%, #F5F3FF 55%, var(--white) 100%), var(--gradient-hero);
}

.track-order-page .track-order-hero {
  padding-bottom: 64px;
}

.track-order-card {
  max-width: 640px;
  margin: 40px auto 0;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.track-order-card__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
}

.track-order-card__tab {
  padding: 12px 10px;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.track-order-card__tab.is-active {
  background: var(--white);
  color: var(--purple-700);
  box-shadow: var(--shadow-sm);
}

.track-order-card__panel label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.track-order-card__panel input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 16px;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.track-order-card__panel input:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.track-order-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.track-order-card__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.track-order__error {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #B91C1C;
  font-size: 14px;
}

.track-order-help {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.track-order-help h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.track-order-help p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.track-status-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* Delivery Journey — scroll-pinned timeline */
.track-journey-section {
  overflow: visible;
  padding-bottom: 0;
}

.track-journey-section > .container:first-child {
  padding-bottom: 8px;
}

.track-journey-pin {
  position: relative;
  height: var(--journey-pin-height, 380vh);
  padding: 0;
}

.track-journey-pin__sticky {
  position: sticky;
  top: var(--journey-sticky-top, calc(var(--header-height) + var(--promo-height)));
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px 0 28px;
}

.track-journey-pin__inner {
  width: 100%;
}

.track-journey-pin__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-700);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.track-journey-pin__hint svg {
  animation: trackJourneyHintBounce 1.8s ease-in-out infinite;
}

.track-journey-pin.is-complete .track-journey-pin__hint,
.track-journey-pin.has-progress .track-journey-pin__hint {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

@keyframes trackJourneyHintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.track-journey-pin--compact .track-journey {
  padding: 20px 18px 18px;
}

.track-journey-pin--compact .track-journey__demo {
  margin-bottom: 18px;
}

.track-journey-pin--compact .track-journey__rail {
  margin-bottom: 24px;
}

.track-journey-pin--compact .track-journey__steps {
  gap: 10px;
}

.track-journey-pin--compact .track-journey__step {
  gap: 12px;
}

.track-journey-pin--compact .track-journey__node {
  width: 48px;
  height: 48px;
}

.track-journey-pin--compact .track-journey__card {
  padding: 14px 12px 16px;
}

.track-journey-pin--compact .track-journey__card h3 {
  font-size: 14px;
}

.track-journey-pin--compact .track-journey__card p {
  font-size: 12px;
  line-height: 1.45;
}

.track-journey-pin--static {
  height: auto;
}

.track-journey-pin--static .track-journey-pin__sticky {
  position: relative;
  top: auto;
  min-height: 0;
}

.track-journey {
  position: relative;
  margin-top: 0;
  padding: 28px 24px 24px;
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    radial-gradient(circle at 10% 0%, rgba(111, 90, 246, 0.12), transparent 42%),
    radial-gradient(circle at 90% 100%, rgba(59, 130, 246, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
  border: 1px solid rgba(111, 90, 246, 0.14);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.track-journey__demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(111, 90, 246, 0.08);
  border: 1px solid rgba(111, 90, 246, 0.16);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple-700);
}

.track-journey__demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  animation: trackJourneyPulse 2s ease infinite;
}

.track-journey__rail {
  position: relative;
  height: 6px;
  margin: 0 24px 36px;
}

.track-journey__rail-track,
.track-journey__rail-fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.track-journey__rail-track {
  background: var(--gray-200);
}

.track-journey__rail-fill {
  width: 0%;
  background: linear-gradient(90deg, #6F5AF6, #818CF8, #38BDF8);
  background-size: 200% 100%;
  animation: trackJourneyShimmer 3s linear infinite;
  transition: width 0.15s linear;
}

.track-journey__rail-shuttle {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid #6F5AF6;
  box-shadow: 0 0 0 6px rgba(111, 90, 246, 0.16), 0 8px 20px rgba(111, 90, 246, 0.28);
  transform: translate(-50%, -50%);
  transition: left 0.15s linear;
}

.track-journey__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.track-journey__step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  gap: 16px;
  opacity: 1;
  transform: translateY(0);
}

.track-journey__node {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  align-self: center;
  flex-shrink: 0;
  z-index: 1;
}

.track-journey__node-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.track-journey__node-icon {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  transition: color 0.35s ease, transform 0.35s ease;
}

.track-journey__step.is-active .track-journey__node-ring,
.track-journey__step.is-complete .track-journey__node-ring {
  border-color: transparent;
  background: var(--gradient-primary);
  box-shadow: 0 10px 24px rgba(111, 90, 246, 0.28);
}

.track-journey__step.is-active .track-journey__node-icon,
.track-journey__step.is-complete .track-journey__node-icon {
  color: var(--white);
  transform: scale(1.05);
}

.track-journey__step.is-active .track-journey__node-ring {
  animation: trackJourneyNodePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.track-journey__step.is-active .track-journey__node::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(111, 90, 246, 0.35);
  animation: trackJourneyRipple 1.8s ease-out infinite;
}

.track-journey__card {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 16px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.track-journey__step.is-active .track-journey__card {
  transform: translateY(-6px);
  border-color: rgba(111, 90, 246, 0.28);
  box-shadow: 0 16px 36px rgba(111, 90, 246, 0.12);
}

.track-journey__step.is-complete .track-journey__card {
  border-color: rgba(34, 197, 94, 0.22);
}

.track-journey__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gray-100);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: background 0.35s ease, color 0.35s ease;
}

.track-journey__step.is-active .track-journey__badge,
.track-journey__step.is-complete .track-journey__badge {
  background: rgba(111, 90, 246, 0.12);
  color: var(--purple-700);
}

.track-journey__card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.track-journey__card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

@keyframes trackJourneyPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes trackJourneyShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes trackJourneyNodePop {
  0% { transform: scale(0.92); }
  55% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes trackJourneyRipple {
  0% { transform: scale(0.85); opacity: 0.75; }
  100% { transform: scale(1.25); opacity: 0; }
}

.track-status-step {
  position: relative;
  text-align: center;
}

.track-status-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(50% + 30px);
  width: calc(100% - 60px);
  height: 2px;
  background: linear-gradient(90deg, var(--purple-300), var(--purple-100));
  pointer-events: none;
}

.track-status-step__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--lavender-50);
  border: 2px solid var(--purple-200);
  color: var(--purple-600);
  font-weight: 700;
  font-size: 18px;
}

.track-status-step h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.track-status-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

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

.track-stat {
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.track-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.track-stat span {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .track-journey-pin {
    height: var(--journey-pin-height, 320vh);
  }

  .track-journey-pin__sticky {
    padding: 12px 0 20px;
  }

  .track-journey {
    padding: 24px 18px 22px;
  }

  .track-journey__rail {
    display: none;
  }

  .track-journey__steps {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
    padding-left: 28px;
    border-left: 2px solid var(--gray-200);
    position: relative;
  }

  .track-journey__steps::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: var(--journey-progress, 0%);
    background: linear-gradient(180deg, #6F5AF6, #818CF8, #38BDF8);
    transition: height 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .track-journey__step {
    flex-direction: row;
    align-items: stretch;
    gap: 18px;
    padding-bottom: 28px;
    position: relative;
  }

  .track-journey__step:last-child {
    padding-bottom: 0;
  }

  .track-journey__node {
    position: absolute;
    left: -41px;
    top: 4px;
    width: 48px;
    height: 48px;
  }

  .track-journey__card {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 16px 18px;
  }

  .track-status-grid { grid-template-columns: 1fr; max-width: 420px; margin: 48px auto 0; }
  .track-status-step:not(:last-child)::after { display: none; }
  .track-stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .track-journey__step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .track-journey__demo-dot,
  .track-journey__rail-fill,
  .track-journey__step.is-active .track-journey__node::after {
    animation: none;
  }
}

@media (max-width: 600px) {
  .track-order-card { padding: 24px 20px; margin-top: 28px; }
  .track-order-card__tabs { grid-template-columns: 1fr; }
}

