:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --blue: #0066cc;
  --blue-hover: #0077ed;
  --header-height: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav-shell {
  display: flex;
  align-items: center;
  width: min(100% - 40px, 1024px);
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.nav-content {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 38px);
  margin: 0 auto;
  padding-left: 28px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-menu-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
}

.nav-menu-trigger::after {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 0 3px 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  opacity: 0.58;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-menu-trigger.is-active {
  color: var(--blue);
}

.nav-menu-trigger.is-active::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-links a:hover,
.nav-menu-trigger:hover,
.search-link:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-link {
  display: grid;
  width: 22px;
  height: 30px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: color 160ms ease;
}

.search-link svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.nav-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.nav-cta {
  min-height: 28px;
  padding: 0 13px;
  border: 0;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-cta.is-profile {
  gap: 8px;
  max-width: 160px;
  padding-left: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(145deg, #f9fbff, #e8eef7);
  box-shadow:
    5px 6px 14px rgba(54, 72, 102, 0.14),
    inset 0 1px 0 #fff;
  color: #25272c;
  text-overflow: ellipsis;
  text-shadow: none;
}

.nav-profile-dot {
  display: inline-grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(145deg, #fff, #dce8ff);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  place-items: center;
}

.nav-cta:hover,
.primary-button:hover {
  background: var(--blue-hover);
}

.primary-button:active,
.nav-cta:active {
  transform: scale(0.98);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.header-search-panel {
  position: absolute;
  top: var(--header-height);
  left: 50%;
  z-index: 70;
  width: min(calc(100% - 40px), 920px);
  padding: 18px;
  visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 0 0 26px 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(198, 224, 255, 0.5), transparent 48%),
    rgba(244, 248, 253, 0.94);
  box-shadow:
    0 30px 70px rgba(28, 44, 72, 0.22),
    inset 0 1px 0 #fff;
  opacity: 0;
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  transform: translate(-50%, -14px) scale(0.98);
  transform-origin: top center;
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 220ms;
}

.header-search-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.header-search-form {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 0 8px 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 17px;
  background: linear-gradient(145deg, #e8eef5, #fff);
  box-shadow:
    inset 4px 4px 10px rgba(67, 86, 116, 0.14),
    inset -4px -4px 10px #fff,
    0 10px 24px rgba(42, 60, 89, 0.1);
}

.header-search-form > svg {
  width: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: #657287;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.header-search-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
}

.header-search-submit {
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  background: linear-gradient(180deg, #3698ff, #0064d1);
  box-shadow: 0 8px 18px rgba(0, 102, 204, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.header-search-close {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-search-close span {
  position: absolute;
  top: 18px;
  left: 11px;
  width: 16px;
  height: 1px;
  background: #3a414d;
}

.header-search-close span:first-child {
  transform: rotate(45deg);
}

.header-search-close span:last-child {
  transform: rotate(-45deg);
}

.header-search-suggestions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 4px 0;
}

.header-search-suggestions > span {
  margin-right: 4px;
  color: #7e8795;
  font-size: 12px;
}

.header-search-suggestions a {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 5px 12px rgba(48, 65, 92, 0.08), inset 0 1px 0 #fff;
  color: #3e4653;
  font-size: 12px;
}

.mega-menu-layer {
  position: absolute;
  top: var(--header-height);
  left: 0;
  display: none;
  width: 100%;
  z-index: 40;
}

.mega-menu-layer.is-open {
  display: block;
}

.mega-menu-panel {
  max-height: calc(100dvh - var(--header-height) - 12px);
  overflow: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(126, 146, 178, 0.18);
  background:
    radial-gradient(circle at 50% 0%, rgba(202, 225, 255, 0.45), transparent 42%),
    rgba(244, 248, 253, 0.9);
  box-shadow:
    0 28px 70px rgba(27, 42, 68, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
  animation: mega-menu-in 220ms ease both;
  overscroll-behavior: contain;
}

.mega-menu-shell {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
  padding: 38px 0 46px;
}

.mega-menu-intro {
  position: sticky;
  top: 38px;
  align-self: start;
}

.mega-menu-intro span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mega-menu-intro h2 {
  margin: 8px 0 0;
  font-size: 32px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.mega-menu-back {
  display: none;
}

.mega-catalog-shell {
  display: block;
  width: min(100% - 40px, 1540px);
  padding: 24px 0 34px;
}

.mega-catalog-intro {
  display: none;
}

.mega-desktop-browser {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 30px;
  background: rgba(250, 252, 255, 0.9);
  box-shadow: 0 24px 64px rgba(31, 47, 75, 0.18), inset 0 1px 0 #fff;
}

.mega-mobile-list {
  display: none;
}

.mega-category-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 16px;
  border-right: 1px solid rgba(103, 123, 153, 0.12);
  background: linear-gradient(145deg, rgba(237, 243, 250, 0.96), rgba(250, 252, 255, 0.86));
  box-shadow: inset -10px 0 28px rgba(66, 84, 112, 0.05);
}

.mega-sidebar-button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: #75777d;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: 160ms ease;
}

.mega-sidebar-button svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  opacity: 0;
}

.mega-sidebar-button:hover {
  color: #28282c;
  transform: translateX(2px);
}

.mega-sidebar-button.is-active {
  border-color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(145deg, #fff, #e5ebf3);
  box-shadow: 6px 8px 17px rgba(64, 82, 111, 0.15), -4px -4px 12px #fff, inset 0 1px 0 #fff;
  color: #17171a;
}

.mega-sidebar-button.is-active svg {
  opacity: 1;
}

.mega-catalog-content {
  min-width: 0;
  padding: 22px 24px 30px;
}

.mega-catalog-search {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  background: linear-gradient(145deg, #edf1f6, #fff);
  box-shadow: inset 4px 4px 9px rgba(72, 89, 115, 0.13), inset -4px -4px 9px #fff, 0 7px 18px rgba(52, 69, 96, 0.08);
}

.mega-catalog-search svg {
  width: 18px;
  fill: none;
  stroke: #7a8493;
  stroke-linecap: round;
  stroke-width: 1.65;
}

.mega-catalog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.mega-catalog-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 24px 4px 16px;
}

.mega-catalog-header span {
  color: #6c6d73;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mega-catalog-header small {
  color: #92949b;
  font-size: 12px;
}

.mega-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-height: 450px;
  padding: 2px 5px 18px 2px;
  overflow-y: auto;
}

.mega-product-card {
  display: grid;
  min-height: 190px;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: radial-gradient(circle at 90% 8%, rgba(84, 151, 255, 0.1), transparent 34%), linear-gradient(145deg, #f9fbfd, #e9eef5);
  box-shadow: 8px 10px 22px rgba(58, 75, 104, 0.13), -5px -5px 14px #fff, inset 0 1px 0 #fff;
}

.mega-product-icon {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid #fff;
  border-radius: 14px;
  background: linear-gradient(145deg, #e3edfa, #fff);
  box-shadow: inset 3px 3px 7px rgba(72, 94, 126, 0.13), inset -3px -3px 7px #fff;
  place-items: center;
}

.product-icon {
  display: grid;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 20%, hsl(var(--icon-hue) 92% 94%), transparent 48%),
    linear-gradient(145deg, hsl(var(--icon-hue) 76% 90%), #fff);
  color: hsl(var(--icon-hue) 72% 43%);
  place-items: center;
}

.product-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.mega-product-copy h3 {
  margin: 2px 0 0;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.mega-product-copy p {
  display: -webkit-box;
  margin: 11px 0 14px;
  overflow: hidden;
  color: #73757c;
  font-size: 13px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.mega-product-copy a,
.mega-product-coming {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: linear-gradient(145deg, #fff, #e7edf5);
  box-shadow: 4px 5px 11px rgba(60, 77, 105, 0.11), inset 0 1px 0 #fff;
  color: #25262a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mega-product-coming {
  color: #8d8f95;
}

.mega-catalog-empty {
  display: none;
  margin: 80px 0;
  color: var(--muted);
  text-align: center;
}

.mega-catalog-empty.is-visible {
  display: block;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 18px;
  align-items: start;
}

.mega-menu-grid-products {
  grid-template-columns: repeat(5, minmax(150px, 1fr));
}

.mega-menu-grid-solutions {
  grid-template-columns: repeat(4, minmax(170px, 1fr));
}

.mega-category {
  min-width: 0;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(226, 234, 244, 0.72));
  box-shadow:
    9px 11px 24px rgba(66, 83, 111, 0.1),
    -6px -6px 18px rgba(255, 255, 255, 0.86),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.mega-category-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  color: #52525a;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-align: left;
  text-transform: uppercase;
}

.mega-category-toggle svg {
  display: none;
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.mega-category-items {
  display: grid;
  gap: 2px;
  margin-top: 10px;
}

.mega-category-items a,
.mega-item-disabled {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 7px;
  border-radius: 9px;
  color: #1d1d1f;
  font-size: 13px;
  line-height: 1.25;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.mega-category-items a:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  box-shadow:
    inset 0 1px 0 #fff,
    0 5px 12px rgba(53, 75, 107, 0.08);
  transform: translateX(2px);
}

.mega-item-disabled {
  color: #8b8b91;
}

.mega-item-disabled small {
  color: #a4a4aa;
  font-size: 9px;
  white-space: nowrap;
}

@keyframes mega-menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 980px);
  padding-top: clamp(76px, 9vh, 112px);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.eyebrow span {
  color: var(--muted);
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: -0.015em;
}

h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero-description {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  margin-top: 30px;
}

.primary-button {
  min-height: 44px;
  padding: 0 22px;
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--blue);
  font-size: 18px;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-visual {
  width: min(1260px, 94vw);
  margin-top: clamp(28px, 4vh, 52px);
  line-height: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.misacrm-section {
  display: flex;
  min-height: min(980px, 100svh);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: clamp(88px, 9vw, 130px) 24px 0;
  background: #000;
  color: #f5f5f7;
  text-align: center;
}

.misacrm-content {
  width: min(100%, 1040px);
}

.misacrm-product {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.misacrm-product span {
  color: #86868b;
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.misacrm-section h2 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.misacrm-description {
  max-width: 720px;
  margin: 24px auto 0;
  color: #a1a1a6;
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -0.022em;
  line-height: 1.38;
}

.misacrm-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  margin-top: 30px;
}

.misacrm-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #0071e3;
  color: #fff;
  font-size: 17px;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.misacrm-button:hover {
  background: #0077ed;
}

.misacrm-button:active {
  transform: scale(0.98);
}

.misacrm-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #2997ff;
  font-size: 18px;
}

.misacrm-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.misacrm-link svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.misacrm-visual {
  width: min(1600px, 100vw);
  margin: clamp(42px, 6vw, 74px) auto 0;
  line-height: 0;
}

.misacrm-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.erp-split-section,
.four-product-section {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: #fff;
}

.erp-split-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.four-product-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-product-card,
.compact-product-card {
  --card-ink: #1d1d1f;
  --card-muted: #6e6e73;
  --card-accent: #0071e3;
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: #f5f5f7;
  color: var(--card-ink);
  text-align: center;
  isolation: isolate;
}

.split-product-card {
  min-height: 760px;
  padding: clamp(62px, 6vw, 92px) 30px 0;
}

.split-card-copy,
.compact-card-copy {
  position: relative;
  z-index: 3;
  width: 100%;
}

.split-card-copy > p,
.compact-card-copy > p {
  margin: 0 0 11px;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.split-card-copy > p span,
.compact-card-copy > p span {
  color: var(--card-muted);
  font-size: 0.68em;
  font-weight: 500;
}

.split-card-copy h2 {
  margin: 0 auto;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.split-card-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 24px;
}

.split-card-actions a,
.compact-card-copy > a {
  color: var(--card-accent);
  font-size: 16px;
}

.split-card-actions a:first-child {
  padding: 9px 17px;
  border-radius: 999px;
  background: var(--card-accent);
  color: #fff;
}

.split-card-actions a:last-child {
  display: flex;
  align-items: center;
}

.split-card-visual,
.compact-card-visual {
  position: relative;
  display: flex;
  width: 100%;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-card-visual {
  min-height: 390px;
  margin-top: 30px;
}

.split-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.theerp-card .split-card-visual,
.driverops-split-card .split-card-visual {
  width: calc(100% + 60px);
  margin-right: -30px;
  margin-left: -30px;
}

.split-card-visual strong,
.compact-card-visual strong {
  position: relative;
  z-index: 2;
  font-size: clamp(44px, 5vw, 76px);
  letter-spacing: -0.065em;
  line-height: 1;
}

.split-card-visual strong span,
.compact-card-visual strong span {
  color: var(--card-accent);
}

.split-card-visual small,
.compact-card-visual small {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: var(--card-muted);
  font-size: 15px;
}

.theerp-card {
  --card-ink: #f5f5f7;
  --card-muted: #9da9b8;
  --card-accent: #45a8ff;
  background: radial-gradient(circle at 50% 110%, #174c82, #06111f 62%);
}

.driverops-split-card {
  --card-ink: #f5f5f7;
  --card-muted: #a9b7ca;
  --card-accent: #61ef9e;
  background:
    radial-gradient(circle at 50% 105%, rgba(47, 133, 255, 0.38), transparent 44%),
    linear-gradient(145deg, #111827, #05070b 70%);
}

.driverops-split-card .split-product-image {
  object-position: center;
}

.compact-product-card {
  aspect-ratio: 1 / 0.86;
  min-height: 620px;
  padding: clamp(48px, 5vw, 72px) 28px 0;
}

.compact-card-copy h2 {
  margin: 0 auto;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.compact-card-copy h2 span {
  color: var(--card-muted);
  font-size: 0.48em;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.compact-card-copy > a {
  display: inline-block;
  margin-top: 20px;
}

.compact-card-description {
  max-width: 540px;
  margin: 16px auto 0;
  color: var(--card-muted);
  font-size: clamp(15px, 1.35vw, 18px);
  letter-spacing: -0.018em;
  line-height: 1.4;
}

.compact-card-visual {
  min-height: 260px;
  margin-top: 20px;
}

.compact-card-visual strong {
  font-size: clamp(42px, 4.6vw, 70px);
}

.deliops-card {
  --card-ink: #f2fff8;
  --card-muted: #9eb9aa;
  --card-accent: #4ee58b;
  background-image:
    linear-gradient(
      180deg,
      rgba(3, 8, 6, 0.98) 0%,
      rgba(3, 8, 6, 0.9) 28%,
      rgba(3, 8, 6, 0.18) 52%,
      rgba(3, 8, 6, 0) 72%
    ),
    url("/index/deliops-section.png");
  background-position: center, center bottom;
  background-repeat: no-repeat;
  background-size: cover, cover;
}

.superagents-card {
  --card-ink: #f5f5f7;
  --card-muted: #a1a1a6;
  --card-accent: #9f63ff;
  background: radial-gradient(circle at 50% 75%, #28104d, #050208 65%);
}

.myre-card {
  --card-accent: #ff6b00;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 248, 239, 0.98) 0%,
      rgba(255, 248, 239, 0.9) 28%,
      rgba(255, 248, 239, 0.16) 52%,
      rgba(255, 248, 239, 0) 72%
    ),
    url("/index/myre-section.png");
  background-position: center, center bottom;
  background-repeat: no-repeat;
  background-size: cover, cover;
}

.medichedules-card {
  --card-accent: #087a49;
  background-image:
    linear-gradient(
      180deg,
      rgba(247, 253, 249, 0.99) 0%,
      rgba(247, 253, 249, 0.94) 30%,
      rgba(247, 253, 249, 0.2) 55%,
      rgba(247, 253, 249, 0) 76%
    ),
    url("/index/medichedules-section.png");
  background-position: center, center bottom;
  background-repeat: no-repeat;
  background-size: cover, cover;
}

.garventory-card {
  --card-ink: #f5f7fb;
  --card-muted: #b4bdca;
  --card-accent: #54a4ff;
  background-image:
    linear-gradient(
      180deg,
      rgba(6, 13, 23, 0.99) 0%,
      rgba(6, 13, 23, 0.94) 30%,
      rgba(6, 13, 23, 0.22) 55%,
      rgba(6, 13, 23, 0) 76%
    ),
    url("/index/garventory-section.png");
  background-position: center, center bottom;
  background-repeat: no-repeat;
  background-size: cover, cover;
}

.ridesready-card {
  --card-accent: #0068e1;
  background: linear-gradient(155deg, #fafdff, #cfe7ff);
}

.compact-card-visual .agent-core {
  width: 180px;
  height: 180px;
}

.compact-card-visual .property-lines {
  bottom: -260px;
}

.compact-card-visual .road-lines {
  bottom: -420px;
}

.image-marquee-section {
  width: 100%;
  overflow: hidden;
  padding: clamp(64px, 8vw, 110px) 0;
  background: linear-gradient(180deg, #fff, #f5f5f7);
}

.image-marquee-track {
  display: flex;
  width: max-content;
  animation: image-marquee 54s linear infinite;
  will-change: transform;
}

.image-marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: clamp(16px, 2vw, 28px);
  padding-right: clamp(16px, 2vw, 28px);
}

.image-marquee-group img {
  display: block;
  width: clamp(280px, 28vw, 440px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: clamp(24px, 2.5vw, 38px);
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.09);
}

.image-marquee-section:hover .image-marquee-track {
  animation-play-state: paused;
}

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

.compact-image-visual {
  width: calc(100% + 56px);
  margin-right: -28px;
  margin-left: -28px;
}

.compact-image-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.deliops-card .visual-orbit {
  border-color: rgba(78, 229, 139, 0.3);
}

.product-showcase {
  --section-bg: #f5f5f7;
  --section-ink: #1d1d1f;
  --section-muted: #6e6e73;
  --section-accent: #0066cc;
  display: flex;
  min-height: 960px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: clamp(90px, 9vw, 138px) 24px 0;
  background: var(--section-bg);
  color: var(--section-ink);
  text-align: center;
}

.product-showcase-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
}

.product-kicker {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.product-kicker span {
  color: var(--section-muted);
  font-size: 0.68em;
  font-weight: 500;
}

.product-showcase h2 {
  margin: 0 auto;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.product-showcase-copy > p:not(.product-kicker) {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--section-muted);
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -0.022em;
  line-height: 1.38;
}

.product-showcase-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  margin-top: 30px;
}

.showcase-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--section-accent);
  color: #fff;
  font-size: 17px;
}

.showcase-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 4px;
  color: var(--section-accent);
  font-size: 18px;
}

.showcase-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.showcase-link span {
  font-size: 24px;
  font-weight: 300;
}

.product-visual-stage {
  position: relative;
  display: flex;
  width: min(1320px, calc(100vw - 48px));
  min-height: 500px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: clamp(52px, 7vw, 82px);
  overflow: hidden;
  border-radius: 42px 42px 0 0;
  background: #fff;
  box-shadow: 0 -4px 60px rgba(0, 0, 0, 0.06);
  isolation: isolate;
}

.visual-wordmark {
  position: relative;
  z-index: 2;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.visual-wordmark span {
  color: var(--section-accent);
}

.product-visual-stage > p {
  position: relative;
  z-index: 2;
  margin: 20px 0 0;
  color: var(--section-muted);
  font-size: clamp(16px, 1.7vw, 22px);
}

.deliops-showcase {
  --section-bg: #fff8ef;
  --section-accent: #ff6b00;
}

.deliops-showcase .product-visual-stage {
  background: linear-gradient(145deg, #fff 15%, #fff0da);
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 50%;
}

.orbit-one {
  width: 620px;
  height: 240px;
  transform: rotate(-12deg);
}

.orbit-two {
  width: 840px;
  height: 330px;
  transform: rotate(18deg);
}

.abd-erp-showcase {
  --section-accent: #0071e3;
}

.abd-erp-showcase .product-visual-stage {
  background: linear-gradient(145deg, #fff, #eaf4ff);
}

.visual-grid,
.inventory-cells {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 113, 227, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 113, 227, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.theerp-showcase {
  --section-bg: #06111f;
  --section-ink: #f5f5f7;
  --section-muted: #9da9b8;
  --section-accent: #45a8ff;
}

.theerp-showcase .product-visual-stage {
  background: radial-gradient(circle at 50% 110%, #174c82, #07111f 62%);
  box-shadow: none;
}

.visual-rings {
  position: absolute;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(69, 168, 255, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(69, 168, 255, 0.04),
    0 0 0 140px rgba(69, 168, 255, 0.025);
}

.superagents-showcase {
  --section-bg: #000;
  --section-ink: #f5f5f7;
  --section-muted: #a1a1a6;
  --section-accent: #9f63ff;
}

.superagents-showcase .product-visual-stage {
  background: radial-gradient(circle, #28104d, #050208 65%);
  box-shadow: none;
}

.agent-core,
.neural-core {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(190, 135, 255, 0.7);
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(128, 70, 255, 0.8),
    inset 0 0 55px rgba(73, 129, 255, 0.7);
}

.myre-showcase {
  --section-bg: #f3eee7;
  --section-accent: #8b5e3c;
}

.myre-showcase .product-visual-stage {
  background: linear-gradient(155deg, #fff, #e8ddd0);
}

.property-lines {
  position: absolute;
  bottom: -170px;
  width: 760px;
  height: 500px;
  border: 1px solid rgba(139, 94, 60, 0.23);
  transform: perspective(600px) rotateX(58deg) rotateZ(-12deg);
  background-image:
    linear-gradient(rgba(139, 94, 60, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 94, 60, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
}

.ridesready-showcase {
  --section-bg: #eef7ff;
  --section-accent: #0068e1;
}

.ridesready-showcase .product-visual-stage {
  background: linear-gradient(155deg, #fafdff, #cfe7ff);
}

.road-lines {
  position: absolute;
  bottom: -300px;
  width: 1000px;
  height: 620px;
  border: 2px solid rgba(0, 104, 225, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(0, 104, 225, 0.04),
    0 0 0 140px rgba(0, 104, 225, 0.03);
}

.garventory-showcase {
  --section-bg: #17191d;
  --section-ink: #f5f5f7;
  --section-muted: #a5a7ad;
  --section-accent: #56d364;
}

.garventory-showcase .product-visual-stage {
  background: linear-gradient(145deg, #24272d, #111317);
  box-shadow: none;
}

.garventory-showcase .inventory-cells {
  inset: 40px;
  background-image:
    linear-gradient(rgba(86, 211, 100, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 211, 100, 0.1) 1px, transparent 1px);
  background-size: 86px 86px;
}

.maku-showcase {
  --section-bg: #05030a;
  --section-ink: #f5f5f7;
  --section-muted: #aaa2b8;
  --section-accent: #8e5cff;
}

.maku-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.maku-brand img {
  width: 34px;
  height: 34px;
}

.maku-brand .product-kicker {
  margin: 0;
}

.maku-showcase .product-visual-stage {
  background:
    radial-gradient(circle, rgba(98, 56, 255, 0.32), transparent 30%),
    #05030a;
  box-shadow: none;
}

.maku-showcase .neural-core {
  width: 360px;
  height: 360px;
  box-shadow:
    0 0 70px rgba(126, 75, 255, 0.85),
    inset 0 0 80px rgba(40, 166, 255, 0.65),
    0 0 0 70px rgba(126, 75, 255, 0.04);
}

.capabilities-section {
  padding: clamp(92px, 10vw, 150px) max(24px, calc((100vw - 1200px) / 2))
    clamp(100px, 12vw, 170px);
  background: #f5f5f7;
  color: var(--ink);
}

.capabilities-heading {
  max-width: 980px;
}

.capabilities-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #424245;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.capabilities-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.capabilities-heading h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.capabilities-heading > p {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(54px, 7vw, 84px);
}

.capability-card {
  min-height: 310px;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.035);
}

.capability-number {
  display: block;
  margin-bottom: clamp(54px, 6vw, 78px);
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.capability-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.capability-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  letter-spacing: -0.018em;
  line-height: 1.45;
}

@media (max-width: 1100px) and (min-width: 821px) {
  .mega-desktop-browser {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .mega-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .erp-split-section,
  .four-product-section {
    gap: 8px;
    padding: 8px;
  }

  .split-product-card {
    min-height: 650px;
    padding: 52px 18px 0;
  }

  .split-card-copy h2 {
    font-size: clamp(30px, 5vw, 42px);
  }

  .theerp-card .split-card-visual,
  .driverops-split-card .split-card-visual {
    width: calc(100% + 36px);
    margin-right: -18px;
    margin-left: -18px;
  }

  .split-card-actions {
    gap: 14px;
  }

  .compact-product-card {
    min-height: 540px;
    padding: 44px 18px 0;
  }

  .compact-card-copy h2 {
    font-size: clamp(28px, 4.7vw, 38px);
  }

  .nav-shell {
    width: min(100% - 32px, 1024px);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta[data-mobile-profile="true"] {
    min-height: 34px;
    max-width: min(42vw, 150px);
    margin-left: 8px;
    padding-right: 11px;
    font-size: 12px;
    order: 3;
  }

  .nav-content {
    position: absolute;
    top: var(--header-height);
    left: 0;
    display: none;
    width: 100%;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding: 20px max(24px, env(safe-area-inset-right)) 28px
      max(24px, env(safe-area-inset-left));
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
    overscroll-behavior: contain;
  }

  .nav-content.is-open {
    display: block;
  }

  .nav-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .nav-links a {
    width: 100%;
    min-height: 48px;
    padding: 9px 0;
    font-size: clamp(21px, 5vw, 24px);
    font-weight: 600;
    letter-spacing: -0.03em;
  }

  .nav-menu-trigger {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    font-size: clamp(21px, 5vw, 24px);
    font-weight: 600;
    letter-spacing: -0.03em;
    text-align: left;
  }

  .nav-menu-trigger::after {
    width: 8px;
    height: 8px;
    margin: 0 5px 5px 0;
  }

  .nav-actions {
    justify-content: space-between;
    margin-top: 20px;
  }

  .mega-menu-layer {
    position: fixed;
    top: var(--header-height);
    z-index: 60;
  }

  .mega-menu-panel {
    height: calc(100dvh - var(--header-height));
    max-height: none;
    border-radius: 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(202, 225, 255, 0.48), transparent 42%),
      rgba(242, 247, 253, 0.96);
  }

  .mega-menu-shell {
    display: block;
    width: 100%;
    padding: 24px max(20px, env(safe-area-inset-right)) 54px
      max(20px, env(safe-area-inset-left));
  }

  .mega-catalog-intro {
    display: block;
  }

  .mega-desktop-browser {
    display: none;
  }

  .mega-mobile-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mega-menu-intro {
    position: static;
    padding: 0 4px 22px;
  }

  .mega-menu-back {
    display: flex;
    min-height: 36px;
    align-items: center;
    gap: 5px;
    margin: 0 0 18px -8px;
    padding: 0 8px;
    border: 0;
    background: transparent;
    color: var(--blue);
    font: inherit;
    font-size: 15px;
    cursor: pointer;
  }

  .mega-menu-back svg {
    width: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .mega-menu-intro h2 {
    font-size: 34px;
  }

  .mega-category {
    padding: 0;
    border-radius: 18px;
  }

  .mega-category-toggle {
    min-height: 54px;
    padding: 0 17px;
    color: #25252a;
    font-size: 14px;
    cursor: pointer;
  }

  .mega-category-toggle svg {
    display: block;
  }

  .mega-category-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .mega-category-items {
    display: none;
    gap: 1px;
    margin: 0;
    padding: 0 11px 14px;
  }

  .mega-category-items.is-open {
    display: grid;
  }

  .mega-category-items a,
  .mega-item-disabled {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    font-size: 15px;
  }

  .mega-category-items .product-icon,
  .mega-item-disabled .product-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    border-radius: 9px;
  }

  .mega-category-items .product-icon svg,
  .mega-item-disabled .product-icon svg {
    width: 18px;
    height: 18px;
  }

  .search-link {
    width: 44px;
    height: 44px;
    margin-left: -14px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 19px;
    font-size: 14px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero-copy {
    width: min(100% - 32px, 680px);
    padding-top: clamp(52px, 8vw, 65px);
  }

  .hero-visual {
    width: min(1120px, 118vw);
  }

  .misacrm-section {
    min-height: 760px;
    padding-inline: 0;
  }

  .misacrm-content {
    padding-inline: 24px;
  }

  .misacrm-visual {
    width: 120vw;
    transform: translateX(-10vw);
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-showcase {
    min-height: 820px;
    padding-inline: 0;
  }

  .product-showcase-copy {
    padding-inline: 24px;
  }

  .product-visual-stage {
    width: 112vw;
    min-height: 440px;
    border-radius: 34px 34px 0 0;
  }
}

@media (max-width: 560px) {
  .erp-split-section,
  .four-product-section {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px 0;
  }

  .image-marquee-section {
    padding-block: 42px;
  }

  .image-marquee-track {
    animation-duration: 42s;
  }

  .image-marquee-group img {
    width: min(78vw, 330px);
    border-radius: 24px;
  }

  .split-product-card,
  .compact-product-card {
    min-height: 650px;
    aspect-ratio: auto;
    padding: 64px 20px 0;
  }

  .split-card-copy > p,
  .compact-card-copy > p {
    font-size: 20px;
  }

  .split-card-copy h2,
  .compact-card-copy h2 {
    font-size: clamp(38px, 10.5vw, 50px);
  }

  .compact-card-description {
    max-width: 360px;
    margin-top: 14px;
    font-size: 16px;
  }

  .split-card-actions {
    margin-top: 22px;
  }

  .split-card-visual,
  .compact-card-visual {
    min-height: 300px;
    margin-top: 24px;
  }

  .theerp-card .split-card-visual,
  .driverops-split-card .split-card-visual {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
  }

  .compact-image-visual {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
  }

  .split-card-visual strong,
  .compact-card-visual strong {
    font-size: clamp(48px, 14vw, 68px);
  }

  .site-header {
    padding-right: env(safe-area-inset-right);
    padding-left: env(safe-area-inset-left);
  }

  .nav-shell {
    width: calc(100% - 24px);
  }

  .brand {
    font-size: 14px;
  }

  .brand img {
    width: 22px;
    height: 22px;
  }

  .hero {
    min-height: auto;
    padding-bottom: clamp(18px, 5vw, 34px);
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding-top: clamp(42px, 12vw, 58px);
  }

  .eyebrow,
  .misacrm-product {
    margin-bottom: 10px;
    font-size: clamp(20px, 6vw, 24px);
  }

  h1 {
    max-width: 480px;
    font-size: clamp(40px, 11.5vw, 54px);
    letter-spacing: -0.05em;
    line-height: 1.04;
  }

  .hero-description {
    max-width: 360px;
    margin-top: 18px;
    font-size: clamp(17px, 4.8vw, 19px);
    line-height: 1.35;
  }

  .hero-actions {
    gap: 20px;
    margin-top: 25px;
  }

  .primary-button {
    min-height: 44px;
    padding: 0 19px;
    font-size: 16px;
  }

  .text-link {
    min-height: 44px;
    font-size: 17px;
  }

  .hero-visual {
    width: 138vw;
    margin-top: clamp(18px, 6vw, 28px);
    transform: none;
  }

  .misacrm-section {
    min-height: max(680px, 86svh);
    padding: clamp(72px, 20vw, 96px) 0 0;
  }

  .misacrm-content {
    padding-inline: 20px;
  }

  .misacrm-section h2 {
    max-width: 500px;
    font-size: clamp(40px, 11.5vw, 54px);
    letter-spacing: -0.05em;
    line-height: 1.04;
  }

  .misacrm-description {
    max-width: 360px;
    margin-top: 18px;
    font-size: clamp(17px, 4.8vw, 19px);
    line-height: 1.35;
  }

  .misacrm-actions {
    gap: 20px;
    margin-top: 25px;
  }

  .misacrm-button {
    min-height: 44px;
    padding: 0 19px;
    font-size: 16px;
  }

  .misacrm-link {
    min-height: 44px;
    font-size: 17px;
  }

  .misacrm-visual {
    width: 165vw;
    margin-top: 42px;
    transform: translateX(-32.5vw);
  }

  .product-showcase {
    min-height: auto;
    padding-top: clamp(72px, 20vw, 96px);
  }

  .product-showcase-copy {
    padding-inline: 20px;
  }

  .product-kicker {
    margin-bottom: 10px;
    font-size: clamp(20px, 6vw, 24px);
  }

  .product-showcase h2 {
    font-size: clamp(40px, 11.5vw, 54px);
    letter-spacing: -0.05em;
    line-height: 1.04;
  }

  .product-showcase-copy > p:not(.product-kicker) {
    max-width: 370px;
    margin-top: 18px;
    font-size: clamp(17px, 4.8vw, 19px);
  }

  .product-showcase-actions {
    gap: 20px;
    margin-top: 25px;
  }

  .showcase-button {
    padding-inline: 19px;
    font-size: 16px;
  }

  .showcase-link {
    font-size: 17px;
  }

  .product-visual-stage {
    width: 132vw;
    min-height: 360px;
    margin-top: 44px;
    border-radius: 28px 28px 0 0;
  }

  .visual-wordmark {
    font-size: clamp(54px, 17vw, 78px);
  }

  .orbit-one {
    width: 390px;
    height: 150px;
  }

  .orbit-two {
    width: 520px;
    height: 210px;
  }

  .visual-rings {
    width: 360px;
    height: 360px;
  }

  .agent-core {
    width: 190px;
    height: 190px;
  }

  .maku-showcase .neural-core {
    width: 240px;
    height: 240px;
  }

  .capabilities-section {
    padding: 78px 16px 90px;
  }

  .capabilities-brand {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .capabilities-brand img {
    width: 26px;
    height: 26px;
  }

  .capabilities-heading h2 {
    font-size: clamp(40px, 11.5vw, 54px);
    letter-spacing: -0.05em;
    line-height: 1.04;
  }

  .capabilities-heading > p {
    margin-top: 20px;
    font-size: 18px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 44px;
  }

  .capability-card {
    min-height: 250px;
    padding: 28px;
    border-radius: 24px;
  }

  .capability-number {
    margin-bottom: 46px;
  }

  .capability-card h3 {
    font-size: 28px;
  }

  .capability-card p {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .split-product-card,
  .compact-product-card {
    min-height: 610px;
    padding-inline: 14px;
  }

  .split-card-copy h2,
  .compact-card-copy h2 {
    font-size: 36px;
  }

  .hero-copy {
    width: calc(100% - 24px);
  }

  h1,
  .misacrm-section h2,
  .product-showcase h2,
  .capabilities-heading h2 {
    font-size: 38px;
  }

  .hero-actions,
  .misacrm-actions,
  .product-showcase-actions {
    gap: 13px;
  }

  .primary-button,
  .misacrm-button,
  .showcase-button {
    padding-inline: 17px;
  }

  .hero-visual {
    width: 150vw;
  }

  .misacrm-section {
    padding-inline: 0;
  }

  .misacrm-content {
    padding-inline: 14px;
  }

  .product-showcase-copy {
    padding-inline: 14px;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: 680px;
  }

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

  .misacrm-section {
    min-height: 620px;
    padding-block: 64px;
  }

  .product-showcase {
    min-height: 680px;
    padding-top: 64px;
  }
}

/* ABDflow dimensional interface */
:root {
  --glass-line: rgba(255, 255, 255, 0.58);
  --glass-shadow: 0 24px 70px rgba(21, 33, 55, 0.14);
  --glass-inset:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 248, 255, 0.62));
  border-bottom-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 10px 34px rgba(32, 47, 75, 0.09),
    inset 0 -1px 0 rgba(90, 113, 151, 0.1);
  backdrop-filter: saturate(190%) blur(28px);
  -webkit-backdrop-filter: saturate(190%) blur(28px);
}

.brand img {
  filter: drop-shadow(0 4px 6px rgba(0, 102, 204, 0.24));
}

.nav-links a,
.search-link,
.text-link,
.misacrm-link,
.showcase-link,
.split-card-actions a,
.compact-card-copy > a {
  transition:
    color 180ms ease,
    transform 180ms ease,
    text-shadow 180ms ease;
}

.nav-links a:hover,
.text-link:hover,
.misacrm-link:hover,
.showcase-link:hover,
.split-card-actions a:last-child:hover,
.compact-card-copy > a:hover {
  transform: translateY(-1px);
  text-shadow: 0 5px 15px currentColor;
}

.nav-cta,
.primary-button,
.misacrm-button,
.showcase-button,
.split-card-actions a:first-child {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(47, 145, 255, 0.98), rgba(0, 86, 194, 0.98));
  box-shadow:
    0 10px 22px rgba(0, 102, 204, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -2px 4px rgba(0, 32, 105, 0.28);
  text-shadow: 0 1px 2px rgba(0, 35, 90, 0.35);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.nav-cta::before,
.primary-button::before,
.misacrm-button::before,
.showcase-button::before,
.split-card-actions a:first-child::before {
  position: absolute;
  top: 1px;
  right: 12%;
  left: 12%;
  height: 45%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent);
  content: "";
  pointer-events: none;
}

.nav-cta:hover,
.primary-button:hover,
.misacrm-button:hover,
.showcase-button:hover,
.split-card-actions a:first-child:hover {
  filter: saturate(1.16) brightness(1.05);
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(0, 102, 204, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -2px 4px rgba(0, 32, 105, 0.25);
}

.nav-cta:active,
.primary-button:active,
.misacrm-button:active,
.showcase-button:active,
.split-card-actions a:first-child:active {
  transform: translateY(1px) scale(0.985);
  box-shadow:
    0 4px 10px rgba(0, 102, 204, 0.2),
    inset 0 3px 7px rgba(0, 35, 105, 0.28);
}

.hero {
  background:
    radial-gradient(circle at 50% 35%, rgba(212, 232, 255, 0.42), transparent 35%),
    linear-gradient(180deg, #fff 0%, #f7faff 78%, #eef4fb 100%);
}

.hero h1,
.misacrm-section h2 {
  text-shadow: 0 8px 30px rgba(30, 55, 90, 0.1);
}

.hero-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: clamp(28px, 3vw, 48px) clamp(28px, 3vw, 48px) 0 0;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 -8px 40px rgba(47, 82, 125, 0.08),
    0 35px 80px rgba(35, 58, 91, 0.13),
    var(--glass-inset);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.misacrm-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 62%, rgba(75, 34, 190, 0.3), transparent 38%),
    linear-gradient(180deg, #020204, #080511 68%, #000);
}

.misacrm-section::before {
  position: absolute;
  top: 18%;
  left: 50%;
  width: min(72vw, 980px);
  height: min(32vw, 430px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 121, 255, 0.2), rgba(120, 59, 255, 0.1) 42%, transparent 72%);
  content: "";
  filter: blur(26px);
  pointer-events: none;
  transform: translateX(-50%);
  animation: misacrm-ambient 7s ease-in-out infinite alternate;
}

.misacrm-content,
.misacrm-visual {
  --misacrm-position: translateX(0);
  position: relative;
  z-index: 1;
}

.misacrm-section.reveal-prepared .misacrm-content {
  opacity: 0;
  transform: translateY(24px);
}

.misacrm-section.reveal-prepared .misacrm-visual {
  opacity: 0;
  transform: var(--misacrm-position) translateY(38px) scale(0.975);
}

.misacrm-section.reveal-prepared.is-visible .misacrm-content {
  opacity: 1;
  transform: none;
}

.misacrm-section.reveal-prepared.is-visible .misacrm-visual {
  opacity: 1;
  transform: var(--misacrm-position);
}

.misacrm-content {
  transition:
    opacity 800ms ease,
    transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.misacrm-visual {
  transition:
    opacity 950ms 120ms ease,
    transform 1100ms 120ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

@keyframes misacrm-ambient {
  from {
    opacity: 0.68;
    transform: translateX(-50%) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

.misacrm-button {
  background: linear-gradient(180deg, #3d9cff, #0062c9);
}

.misacrm-visual {
  overflow: hidden;
  border: 1px solid rgba(139, 119, 255, 0.2);
  border-radius: clamp(28px, 3vw, 50px) clamp(28px, 3vw, 50px) 0 0;
  box-shadow:
    0 -10px 70px rgba(89, 53, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.erp-split-section,
.four-product-section {
  gap: clamp(10px, 1.2vw, 18px);
  padding: clamp(10px, 1.2vw, 18px);
  background:
    linear-gradient(145deg, #edf2f8, #fff 48%, #e9eef5);
  box-shadow: inset 0 1px 0 #fff;
}

.split-product-card,
.compact-product-card {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: clamp(28px, 3vw, 44px);
  box-shadow:
    18px 18px 48px rgba(68, 82, 108, 0.15),
    -12px -12px 34px rgba(255, 255, 255, 0.82),
    var(--glass-inset);
  transition:
    transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 350ms ease;
}

.split-product-card::after,
.compact-product-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.2), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.25), transparent 24%);
  content: "";
  pointer-events: none;
}

.split-product-card:hover,
.compact-product-card:hover {
  transform: translateY(-7px);
  box-shadow:
    22px 28px 64px rgba(48, 65, 96, 0.2),
    -12px -12px 34px rgba(255, 255, 255, 0.86),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.split-card-copy,
.compact-card-copy {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 15px 40px rgba(15, 24, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.four-product-section .compact-product-card {
  justify-content: flex-start;
  overflow: hidden;
}

.four-product-section .compact-card-copy {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.75);
}

.four-product-section .deliops-card .compact-card-copy,
.four-product-section .garventory-card .compact-card-copy {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.92);
}

.four-product-section .compact-card-description {
  text-wrap: balance;
}

.four-product-section {
  width: 100%;
  max-width: 1680px;
  gap: clamp(24px, 2vw, 36px);
  margin: 0 auto;
  padding: clamp(28px, 3vw, 52px);
  background: #f5f5f7;
}

.four-product-section .compact-product-card:hover {
  transform: none;
}

.four-product-section .compact-product-card {
  aspect-ratio: 1 / 0.88;
  min-height: 0;
  padding: clamp(48px, 4vw, 72px) clamp(28px, 3vw, 48px) 0;
  border: 1px solid rgba(34, 45, 65, 0.08);
  border-radius: clamp(30px, 2.5vw, 42px);
  box-shadow:
    0 14px 38px rgba(34, 45, 65, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  isolation: isolate;
}

.four-product-section .compact-product-card::after {
  display: none;
}

.four-product-section .compact-card-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.four-product-section .compact-card-copy h2 {
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1;
}

.four-product-section .compact-card-description {
  max-width: 640px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.38;
}

.compact-explore-button {
  display: inline-flex !important;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 20px !important;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 8px 24px rgba(29, 43, 65, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #1d1d1f !important;
  font-size: 15px !important;
  font-weight: 600;
  text-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.deliops-card .compact-explore-button,
.garventory-card .compact-explore-button {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(16, 24, 29, 0.64);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #fff !important;
}

.compact-explore-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(29, 43, 65, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  text-decoration: none !important;
}

.theerp-card .split-card-copy,
.driverops-split-card .split-card-copy,
.deliops-card .compact-card-copy,
.garventory-card .compact-card-copy {
  background: linear-gradient(145deg, rgba(18, 28, 48, 0.68), rgba(5, 10, 18, 0.34));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.split-card-visual {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 16px 34px rgba(10, 20, 38, 0.08);
}

.image-marquee-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(190, 219, 255, 0.48), transparent 44%),
    linear-gradient(180deg, #f3f7fc, #e8eef6);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 30px 80px rgba(255, 255, 255, 0.5);
}

.image-marquee-section::before,
.image-marquee-section::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(12vw, 180px);
  content: "";
  pointer-events: none;
}

.image-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, #eef3f9, transparent);
}

.image-marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, #eef3f9, transparent);
}

.image-marquee-group img {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.44);
  box-shadow:
    18px 24px 56px rgba(49, 66, 94, 0.18),
    -8px -8px 24px rgba(255, 255, 255, 0.88),
    inset 0 1px 0 #fff;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.image-marquee-group img:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    20px 32px 68px rgba(49, 66, 94, 0.23),
    -8px -8px 24px rgba(255, 255, 255, 0.9);
}

.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.industry-marquee-section {
  overflow: hidden;
  padding: clamp(90px, 9vw, 140px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(183, 215, 255, 0.55), transparent 42%),
    linear-gradient(180deg, #f7faff, #e8eef6);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 30px 90px rgba(255, 255, 255, 0.72);
}

.industry-marquee-heading {
  width: min(100% - 40px, 980px);
  margin: 0 auto clamp(48px, 6vw, 76px);
  text-align: center;
}

.industry-marquee-heading > p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.industry-marquee-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.industry-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.industry-search {
  display: flex;
  width: min(100%, 290px);
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(226, 234, 244, 0.82));
  box-shadow:
    inset 4px 4px 9px rgba(82, 101, 130, 0.12),
    inset -4px -4px 9px rgba(255, 255, 255, 0.94),
    0 10px 24px rgba(58, 77, 107, 0.1);
}

.industry-search svg {
  width: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: #66758a;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.industry-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.industry-search input::placeholder {
  color: #7c8797;
}

.industry-navigation {
  display: flex;
  gap: 8px;
}

.industry-nav-button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #dfe8f3);
  box-shadow:
    7px 9px 20px rgba(63, 82, 112, 0.15),
    -5px -5px 14px rgba(255, 255, 255, 0.92),
    inset 0 1px 0 #fff;
  color: #315f8f;
  cursor: pointer;
  place-items: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.industry-nav-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.industry-nav-button:hover {
  transform: translateY(-2px);
  box-shadow:
    9px 12px 24px rgba(63, 82, 112, 0.19),
    -5px -5px 14px rgba(255, 255, 255, 0.94);
}

.industry-nav-button:active {
  transform: translateY(1px);
  box-shadow:
    inset 4px 4px 9px rgba(63, 82, 112, 0.17),
    inset -3px -3px 8px rgba(255, 255, 255, 0.86);
}

.industry-search-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.industry-marquee-viewport {
  width: 100%;
  overflow: hidden;
  padding-block: 4px;
}

.industry-marquee-track {
  display: flex;
  width: max-content;
  animation: industry-marquee 68s linear infinite;
  animation-play-state: running;
  will-change: transform;
}

.industry-marquee-track.is-manual {
  animation: none;
  transform: translateX(var(--industry-manual-offset, 0px));
  transition: transform 580ms cubic-bezier(0.2, 0.75, 0.22, 1);
}

.industry-marquee-track.is-user-paused {
  animation-play-state: paused;
}

.industry-marquee-track.is-searching {
  min-width: 100%;
}

.industry-marquee-group.is-search-hidden {
  display: none;
}

.industry-marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: 18px;
  padding: 14px 18px 26px 0;
}

.industry-card {
  --industry-accent: #1473e6;
  --industry-glow: rgba(20, 115, 230, 0.24);
  --industry-surface: #e8f2ff;
  position: relative;
  width: clamp(320px, 23vw, 350px);
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  transition:
    transform 300ms ease,
    filter 300ms ease;
  cursor: pointer;
  perspective: 1500px;
}

.industry-card:nth-child(10n + 1) {
  --industry-accent: #b66a18;
  --industry-glow: rgba(224, 151, 63, 0.3);
  --industry-surface: #fff2df;
}

.industry-card:nth-child(10n + 2) {
  --industry-accent: #315fcb;
  --industry-glow: rgba(70, 120, 236, 0.28);
  --industry-surface: #e8efff;
}

.industry-card:nth-child(10n + 3) {
  --industry-accent: #07865e;
  --industry-glow: rgba(29, 190, 132, 0.27);
  --industry-surface: #e1f8ef;
}

.industry-card:nth-child(10n + 4) {
  --industry-accent: #df5b22;
  --industry-glow: rgba(245, 104, 45, 0.28);
  --industry-surface: #fff0e8;
}

.industry-card:nth-child(10n + 5) {
  --industry-accent: #00a37a;
  --industry-glow: rgba(16, 208, 156, 0.28);
  --industry-surface: #ddf9f0;
}

.industry-card:nth-child(10n + 6) {
  --industry-accent: #6a52ca;
  --industry-glow: rgba(119, 87, 226, 0.26);
  --industry-surface: #eeeaff;
}

.industry-card:nth-child(10n + 7) {
  --industry-accent: #d13b78;
  --industry-glow: rgba(229, 68, 134, 0.25);
  --industry-surface: #ffe8f2;
}

.industry-card:nth-child(10n + 8) {
  --industry-accent: #0780a8;
  --industry-glow: rgba(17, 164, 211, 0.27);
  --industry-surface: #e1f5fb;
}

.industry-card:nth-child(10n + 9) {
  --industry-accent: #7250bd;
  --industry-glow: rgba(126, 85, 210, 0.25);
  --industry-surface: #f0eaff;
}

.industry-card:nth-child(10n) {
  --industry-accent: #576679;
  --industry-glow: rgba(94, 115, 141, 0.24);
  --industry-surface: #e8edf3;
}

.industry-card::before {
  display: none;
}

.industry-card-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(0deg);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 780ms cubic-bezier(0.18, 0.8, 0.22, 1);
  will-change: transform;
}

.industry-card.is-flipped .industry-card-inner {
  transform: rotateY(180deg);
}

.industry-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: inherit;
  background:
    radial-gradient(circle at 84% 10%, var(--industry-glow), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), var(--industry-surface));
  box-shadow:
    12px 16px 34px rgba(60, 78, 106, 0.15),
    -8px -8px 22px rgba(255, 255, 255, 0.92),
    inset 0 1px 0 #fff,
    inset 0 -2px 5px color-mix(in srgb, var(--industry-accent) 12%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

.industry-card-face::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.3), transparent 28%),
    repeating-linear-gradient(
      115deg,
      rgba(44, 58, 80, 0.018) 0,
      rgba(44, 58, 80, 0.018) 1px,
      transparent 1px,
      transparent 4px
    );
  content: "";
  pointer-events: none;
}

.industry-card-face > * {
  z-index: 1;
}

.industry-card-front {
  transform: rotateY(0deg) translateZ(1px);
}

.industry-card-front::before,
.industry-card-back::before {
  position: absolute;
  top: 1px;
  right: 10%;
  left: 10%;
  height: 42%;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent);
  content: "";
  pointer-events: none;
}

.industry-card-back {
  align-items: flex-start;
  justify-content: center;
  padding: 20px 22px;
  background:
    radial-gradient(circle at 82% 12%, var(--industry-glow), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--industry-surface) 82%, white), white);
  transform: rotateY(180deg) translateZ(1px);
}

.industry-card-back::after {
  background:
    radial-gradient(circle at 50% 110%, var(--industry-glow), transparent 42%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.32), transparent 32%);
}

.industry-card-back-label {
  position: relative;
  color: var(--industry-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.industry-card-back h3 {
  margin-top: 5px;
  font-size: 23px;
  line-height: 1.05;
}

.industry-card-back p {
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.35;
}

.industry-card-actions {
  position: relative;
  display: grid;
  width: 100%;
  gap: 7px;
  margin-top: 14px;
}

.industry-card-actions a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.industry-primary-action {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--industry-accent) 72%, white),
    var(--industry-accent)
  );
  box-shadow:
    0 9px 20px var(--industry-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: #fff;
}

.industry-secondary-action {
  border: 1px solid color-mix(in srgb, var(--industry-accent) 28%, white);
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 7px 18px rgba(56, 73, 100, 0.1),
    inset 0 1px 0 #fff;
  color: var(--industry-accent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.industry-card-actions a:hover {
  filter: brightness(1.04) saturate(1.08);
  transform: translateY(-2px);
}

.industry-icon {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 19px;
  background:
    radial-gradient(circle at 72% 22%, var(--industry-glow), transparent 48%),
    linear-gradient(145deg, var(--industry-surface), #fff);
  box-shadow:
    inset 5px 5px 11px rgba(92, 111, 140, 0.16),
    inset -5px -5px 11px rgba(255, 255, 255, 0.95),
    0 10px 22px rgba(62, 83, 116, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--industry-accent);
  place-items: center;
}

.industry-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.industry-card h3 {
  position: relative;
  margin: 0;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.industry-card p {
  position: relative;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.industry-card:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 18px 22px rgba(54, 73, 104, 0.16))
    drop-shadow(0 0 18px var(--industry-glow));
}

.industry-card.is-flipped,
.industry-card.is-flipped:hover {
  transform: none;
  filter: drop-shadow(0 18px 22px rgba(54, 73, 104, 0.16))
    drop-shadow(0 0 18px var(--industry-glow));
}

.industry-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--industry-accent) 48%, white);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .industry-marquee-track:hover {
    animation-play-state: paused;
  }
}

@media (max-width: 700px) {
  .industry-navigation {
    display: none;
  }

  .industry-marquee-viewport {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
  }

  .industry-marquee-viewport::-webkit-scrollbar {
    display: none;
  }

  .industry-marquee-track,
  .industry-marquee-track.is-manual {
    width: max-content;
    animation: none;
    transform: none;
    transition: none;
  }

  .industry-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .industry-card {
    width: min(82vw, 340px);
    scroll-snap-align: center;
  }
}

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

.custom-software-section {
  position: relative;
  display: grid;
  min-height: min(900px, 92svh);
  overflow: hidden;
  padding: clamp(100px, 12vw, 170px) 24px;
  background:
    radial-gradient(circle at 50% 75%, rgba(70, 39, 189, 0.32), transparent 36%),
    linear-gradient(145deg, #020307, #070b14 52%, #030208);
  color: #f5f5f7;
  place-items: center;
  text-align: center;
}

.launch-products-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 9vw, 138px) 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(71, 131, 255, 0.24), transparent 31%),
    radial-gradient(circle at 84% 18%, rgba(34, 214, 177, 0.16), transparent 28%),
    linear-gradient(180deg, #07101d 0%, #0b1220 48%, #f4f7fb 48%, #f4f7fb 100%);
  color: #f8fbff;
}

.launch-products-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 62%);
  content: "";
  pointer-events: none;
}

.launch-products-shell {
  position: relative;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.launch-products-head {
  display: grid;
  justify-items: center;
  max-width: 910px;
  margin: 0 auto clamp(28px, 5vw, 54px);
  text-align: center;
}

.launch-products-head span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(169, 203, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #9fc7ff;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.launch-products-head h2 {
  margin: 18px 0 0;
  max-width: 850px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 86px);
  font-weight: 660;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

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

.launch-product-card {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  align-items: flex-end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 26% 14%, rgba(78, 139, 255, 0.34), transparent 30%),
    radial-gradient(circle at 100% 0, rgba(19, 200, 164, 0.18), transparent 35%),
    linear-gradient(145deg, #101928, #050912 72%);
  box-shadow: 0 28px 80px rgba(11, 19, 34, 0.26);
  color: #fff;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.launch-product-card:hover {
  border-color: rgba(203, 222, 255, 0.42);
  box-shadow: 0 34px 96px rgba(11, 19, 34, 0.34);
  transform: translateY(-6px);
}

.launch-product-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 9, 18, 0.08) 0%, rgba(5, 9, 18, 0.18) 38%, rgba(5, 9, 18, 0.86) 100%),
    radial-gradient(circle at 50% 90%, rgba(99, 155, 255, 0.24), transparent 46%);
  content: "";
  pointer-events: none;
}

.launch-product-card-media img {
  position: absolute;
  inset: 18px 18px auto;
  z-index: 0;
  width: calc(100% - 36px);
  height: 66%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  opacity: 0.9;
  transform: scale(1.01);
}

.launch-product-card-presentsir img {
  object-position: top center;
}

.launch-product-card-caflow img {
  object-position: top left;
}

.launch-product-shine {
  position: absolute;
  inset: 18px;
  z-index: 1;
  border-radius: 24px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.18), transparent 18%);
  pointer-events: none;
}

.launch-product-copy {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  text-align: center;
}

.launch-product-card small {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #c8dcff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.launch-product-card strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.launch-product-card p,
.launch-product-copy > span {
  display: block;
  max-width: 34rem;
  margin: 15px auto 0;
  color: rgba(235, 242, 255, 0.76);
  line-height: 1.55;
}

.launch-product-system {
  position: absolute;
  inset: 20px;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.launch-product-system i {
  min-height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 0 0, rgba(65, 209, 162, 0.22), transparent 45%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.custom-software-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(115, 137, 180, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 137, 180, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: radial-gradient(circle, #000, transparent 72%);
  pointer-events: none;
}

.custom-software-glow {
  position: absolute;
  width: min(72vw, 920px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, #04d9ff, #6157ff, #c442ff, #04d9ff);
  opacity: 0.16;
  filter: blur(80px);
  animation: maku-glow-spin 16s linear infinite;
}

.custom-software-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1050px);
}

.custom-software-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: #a9b6ca;
  font-size: 15px;
  font-weight: 600;
}

.custom-software-brand img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 16px rgba(35, 141, 255, 0.65));
}

.custom-software-content h2 {
  margin: 0;
  background: linear-gradient(100deg, #fff 10%, #b9d8ff 45%, #d3b5ff 78%, #fff);
  background-clip: text;
  color: transparent;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.98;
  -webkit-background-clip: text;
}

.custom-software-content > p {
  max-width: 740px;
  margin: 28px auto 0;
  color: #aeb7c6;
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.custom-software-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.custom-get-started,
.maku-explore-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 650;
}

.custom-get-started {
  padding: 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(180deg, #fff, #dce7f5);
  box-shadow: 0 15px 36px rgba(100, 145, 204, 0.22), inset 0 1px 0 #fff;
  color: #121722;
}

.maku-explore-button {
  position: relative;
  gap: 9px;
  padding: 2px 25px;
  overflow: hidden;
  background:
    linear-gradient(#090c14, #090c14) padding-box,
    conic-gradient(from var(--maku-angle), #25d8ff, #5e65ff, #d34cff, #25d8ff) border-box;
  border: 2px solid transparent;
  color: #fff;
  isolation: isolate;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
  animation: maku-border-spin 4s linear infinite;
}

.maku-explore-button::before {
  position: absolute;
  inset: -80%;
  z-index: -1;
  background: conic-gradient(from 90deg, transparent, rgba(73, 124, 255, 0.38), transparent 30%);
  content: "";
  animation: maku-sheen 3.2s linear infinite;
}

.maku-explore-button::after {
  position: absolute;
  inset: 4px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, rgba(84, 144, 255, 0.2), transparent 42%), #090c14;
  content: "";
}

.maku-explore-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 300ms ease;
}

.maku-explore-button:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow:
    0 0 26px rgba(69, 151, 255, 0.45),
    0 0 58px rgba(157, 68, 255, 0.3),
    0 18px 45px rgba(0, 0, 0, 0.42);
}

.maku-explore-button:hover svg {
  transform: translateX(4px);
}

@property --maku-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes maku-border-spin {
  to {
    --maku-angle: 360deg;
  }
}

@keyframes maku-sheen {
  to {
    transform: rotate(360deg);
  }
}

@keyframes maku-glow-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  padding: clamp(72px, 8vw, 120px) 24px 30px;
  background: #080a0f;
  color: #d9dde5;
}

.footer-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(36px, 7vw, 100px);
  padding-bottom: clamp(52px, 6vw, 82px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-lockup {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 24px;
}

.footer-brand img {
  width: clamp(92px, 10vw, 148px);
  height: clamp(92px, 10vw, 148px);
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(27, 130, 255, 0.25));
}

.footer-brand h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 650;
  letter-spacing: -0.055em;
}

.footer-brand p {
  margin: 7px 0 0;
  color: #8f9aac;
  font-size: clamp(16px, 1.7vw, 21px);
}

.footer-brand .footer-company-summary {
  max-width: 520px;
  margin: 0;
  color: #a3adbc;
  font-size: 16px;
  line-height: 1.65;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(38px, 5vw, 70px);
  padding: clamp(50px, 6vw, 78px) 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  padding: 0;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
}

.footer-links a {
  width: fit-content;
  color: #949eae;
  font-size: 14px;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact {
  position: relative;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-contact::before {
  display: none;
}

.footer-contact-intro {
  position: relative;
  z-index: 1;
}

.footer-contact-label {
  margin: 0 0 10px;
  color: #76b8ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact h3 {
  max-width: 360px;
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.footer-contact-intro > p:not(.footer-contact-label) {
  max-width: 390px;
  margin: 12px 0 0;
  color: #8f9aac;
  font-size: 14px;
  line-height: 1.62;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-contact-actions [data-whatsapp-selector] {
  display: inline-flex;
}

.footer-mail-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(118, 184, 255, 0.2);
  border-radius: 999px;
  background: rgba(118, 184, 255, 0.07);
  color: #c9dfff;
  font-size: 13px;
  font-weight: 600;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.footer-mail-cta:hover {
  border-color: rgba(118, 184, 255, 0.52);
  background: rgba(118, 184, 255, 0.16);
  transform: translateY(-1px);
}

.footer-contact-list {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 0;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.footer-contact-card {
  display: grid;
  grid-template-columns: minmax(118px, 0.45fr) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.footer-contact-card-wide {
  grid-column: auto;
}

.footer-contact-list span {
  margin: 1px 0 0;
  color: #7d8797;
  font-size: 12px;
  font-weight: 520;
  letter-spacing: 0;
  text-transform: none;
}

.footer-contact-list a {
  width: fit-content;
  color: #d0d7e2;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.footer-contact-card a + a {
  grid-column: 2;
}

.footer-contact-list a:hover {
  color: #fff;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-legal-links a {
  color: #9fc8ff;
  font-size: 12px;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
  max-width: 720px;
  margin: 0;
  color: #727d8e;
  font-size: 12px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #727d8e;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    width: 100%;
  }

  .footer-contact-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-contact-card-wide {
    grid-column: auto;
  }
}

.abd-auth-home {
  background: rgba(226, 233, 243, 0.74) !important;
  backdrop-filter: blur(26px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(26px) saturate(150%) !important;
}

.abd-auth-home .abd-auth-modal {
  max-width: 440px !important;
  padding: 42px 34px 34px !important;
  border: 1px solid rgba(255, 255, 255, 0.92) !important;
  background:
    radial-gradient(circle at 80% 0, rgba(90, 162, 255, 0.18), transparent 34%),
    linear-gradient(145deg, #f9fbff, #e9eef6) !important;
  box-shadow:
    24px 30px 70px rgba(50, 68, 98, 0.2),
    -12px -12px 30px rgba(255, 255, 255, 0.82),
    inset 0 1px 0 #fff !important;
}

.abd-auth-home .abd-auth-close {
  border-color: rgba(255, 255, 255, 0.9) !important;
  background: linear-gradient(145deg, #fff, #e3e9f2) !important;
  color: #697487 !important;
  box-shadow: 4px 5px 12px rgba(59, 77, 107, 0.12) !important;
}

.abd-auth-home .abd-auth-brand {
  justify-content: flex-start !important;
}

.abd-auth-home .abd-auth-brand img {
  width: 42px !important;
  height: 42px !important;
  filter: drop-shadow(0 7px 12px rgba(0, 102, 204, 0.25));
}

.abd-auth-home .abd-auth-brand-name {
  background: none !important;
  color: #1d1d1f !important;
  font-size: 21px !important;
  font-weight: 700 !important;
  -webkit-text-fill-color: currentColor !important;
}

.abd-auth-home .abd-auth-title,
.abd-auth-home .abd-auth-subtitle {
  text-align: left !important;
}

.abd-auth-home .abd-auth-title {
  color: #1d1d1f !important;
  font-size: 28px !important;
}

.abd-auth-home .abd-auth-subtitle {
  color: #6e7480 !important;
  font-size: 14px !important;
}

.abd-auth-home .abd-auth-input {
  border-color: rgba(255, 255, 255, 0.95) !important;
  background: linear-gradient(145deg, #e9eef5, #fff) !important;
  box-shadow:
    inset 3px 3px 8px rgba(68, 84, 111, 0.12),
    inset -3px -3px 8px #fff !important;
  color: #1d1d1f !important;
}

.abd-auth-home .abd-auth-submit {
  background: linear-gradient(180deg, #2f91ff, #0062c9) !important;
  color: #fff !important;
  box-shadow:
    0 12px 24px rgba(0, 102, 204, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.abd-auth-home .abd-auth-divider > div {
  background: rgba(74, 91, 119, 0.14) !important;
}

.abd-auth-home .abd-auth-divider span {
  color: #858c98 !important;
}

.abd-auth-home .abd-auth-google {
  border-color: rgba(255, 255, 255, 0.9) !important;
  background: linear-gradient(180deg, #384c6c, #24364f) !important;
  color: #fff !important;
  box-shadow: 0 9px 20px rgba(42, 57, 82, 0.18) !important;
}

.abd-auth-home .abd-auth-switch,
.abd-auth-home .abd-auth-reset {
  color: #657087 !important;
}

.abd-auth-home .abd-auth-switch strong {
  color: #0066cc !important;
}

@media (max-width: 820px) {
  .launch-products-head,
  .launch-products-grid {
    grid-template-columns: 1fr;
  }

  .launch-products-section {
    padding: 72px 16px 84px;
    background:
      radial-gradient(circle at 20% 0%, rgba(71, 131, 255, 0.22), transparent 34%),
      linear-gradient(180deg, #07101d 0%, #0b1220 56%, #f4f7fb 56%, #f4f7fb 100%);
  }

  .launch-products-head h2 {
    max-width: 20rem;
    font-size: clamp(36px, 12vw, 54px);
  }

  .launch-product-card {
    min-height: 390px;
    padding: 22px;
    border-radius: 26px;
  }

  .launch-product-card-media img {
    inset: 14px 14px auto;
    width: calc(100% - 28px);
    height: 60%;
    border-radius: 21px;
  }

  .launch-product-shine {
    inset: 14px;
    border-radius: 21px;
  }

  .launch-product-card strong {
    font-size: clamp(36px, 13vw, 52px);
  }

  .launch-product-copy > span {
    font-size: 0.96rem;
  }

  .nav-content {
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 0 0 26px 26px;
    background: rgba(245, 249, 255, 0.84);
    backdrop-filter: blur(30px) saturate(170%);
    -webkit-backdrop-filter: blur(30px) saturate(170%);
  }

  .split-card-copy,
  .compact-card-copy {
    padding: 14px;
    border-radius: 22px;
  }

  .misacrm-visual {
    --misacrm-position: translateX(-10vw);
  }

  .four-product-section {
    gap: 20px;
    padding: 24px 20px;
  }

  .four-product-section .compact-product-card {
    aspect-ratio: auto;
    min-height: 620px;
    padding: 52px 24px 0;
    border-radius: 32px;
  }
}

@media (max-width: 560px) {
  .split-product-card,
  .compact-product-card {
    border-radius: 30px;
    box-shadow:
      0 22px 48px rgba(57, 72, 99, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .hero-visual,
  .misacrm-visual {
    border-radius: 28px 28px 0 0;
  }

  .misacrm-visual {
    --misacrm-position: translateX(-32.5vw);
  }

  .four-product-section {
    gap: 20px;
    padding: 24px 12px;
  }

  .four-product-section .compact-product-card {
    min-height: auto;
    aspect-ratio: 1 / 1.28;
    padding: 34px 18px 0;
    border-radius: 28px;
    box-shadow:
      0 10px 28px rgba(34, 45, 65, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  .myre-card,
  .deliops-card,
  .medichedules-card,
  .garventory-card {
    background-position: center, center bottom;
    background-size: 100% 48%, 100% auto;
  }

  .myre-card {
    background-color: #fff8ef;
  }

  .deliops-card {
    background-color: #030806;
  }

  .medichedules-card {
    background-color: #f7fdf9;
  }

  .garventory-card {
    background-color: #060d17;
  }

  .four-product-section .compact-card-copy {
    max-width: 100%;
  }

  .four-product-section .compact-card-copy h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .four-product-section .compact-card-description {
    max-width: 360px;
    font-size: 16px;
    line-height: 1.34;
  }

  .compact-explore-button {
    min-height: 38px;
    margin-top: 16px !important;
  }

  .industry-marquee-section {
    padding-block: 76px;
  }

  .industry-marquee-heading {
    width: calc(100% - 28px);
    margin-bottom: 38px;
  }

  .industry-marquee-heading h2 {
    font-size: clamp(40px, 11vw, 52px);
  }

  .industry-controls {
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
  }

  .industry-search {
    width: min(100%, 300px);
    min-height: 44px;
  }

  .industry-nav-button {
    width: 44px;
    height: 44px;
  }

  .industry-marquee-track {
    animation-duration: 48s;
  }

  .industry-marquee-group {
    gap: 14px;
    padding-right: 14px;
  }

  .industry-card {
    width: min(86vw, 330px);
    padding: 0;
    border-radius: 25px;
  }

  .industry-card-back {
    padding: 19px 20px;
  }

  .industry-card-back h3 {
    font-size: 22px;
  }

  .industry-card-back p {
    font-size: 12.5px;
  }

  .header-search-panel {
    position: fixed;
    top: var(--header-height);
    width: 100%;
    padding: 14px 12px 18px;
    border-radius: 0 0 24px 24px;
  }

  .header-search-form {
    min-height: 50px;
    gap: 8px;
    padding-left: 13px;
  }

  .header-search-form input {
    font-size: 15px;
  }

  .header-search-submit {
    min-height: 36px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .header-search-close {
    width: 34px;
  }

  .header-search-close span {
    left: 9px;
  }

  .header-search-suggestions {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .header-search-suggestions > span {
    display: none;
  }

  .header-search-suggestions a {
    flex: 0 0 auto;
  }

  .custom-software-section {
    min-height: 760px;
    padding: 96px 18px;
  }

  .custom-software-content h2 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .custom-software-content > p {
    font-size: 18px;
  }

  .custom-software-actions {
    flex-direction: column;
    gap: 12px;
  }

  .custom-get-started,
  .maku-explore-button {
    width: min(100%, 280px);
  }

  .site-footer {
    padding: 68px 18px 26px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .footer-brand-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .footer-brand img {
    width: 96px;
    height: 96px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-contact {
    padding: 0;
  }

  .footer-contact::before {
    display: none;
  }

  .footer-contact h3 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .footer-contact-list {
    grid-template-columns: 1fr;
  }

  .footer-contact-card,
  .footer-contact-card-wide {
    grid-template-columns: 1fr;
    grid-column: auto;
    min-height: 0;
    gap: 6px;
    padding: 13px 0;
  }

  .footer-contact-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .footer-contact-actions [data-whatsapp-selector],
  .footer-mail-cta {
    width: auto;
    justify-content: center;
  }

  .footer-contact-card a + a {
    grid-column: auto;
  }

  .footer-legal {
    flex-direction: column;
    gap: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .industry-navigation {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .image-marquee-track {
    width: auto;
    overflow-x: auto;
    animation: none;
  }

  .image-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .industry-marquee-track {
    width: auto;
    overflow-x: auto;
    animation: none;
  }

  .industry-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .industry-card-inner {
    transition-duration: 0.01ms;
  }

  .custom-software-glow,
  .maku-explore-button,
  .maku-explore-button::before {
    animation: none;
  }

  .misacrm-section::before {
    animation: none;
  }

  .misacrm-section.reveal-prepared .misacrm-content,
  .misacrm-section.reveal-prepared .misacrm-visual {
    opacity: 1;
  }

  .misacrm-section.reveal-prepared .misacrm-content {
    transform: none;
  }

  .misacrm-section.reveal-prepared .misacrm-visual {
    transform: var(--misacrm-position);
  }
}

.section-anchor {
  position: relative;
  top: calc(var(--header-height, 78px) * -1);
  display: block;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

#industry-intelligence-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 80px 20px;
  background-color: #f5f5f7;
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#industry-intelligence-section *,
#industry-intelligence-section *::before,
#industry-intelligence-section *::after {
  box-sizing: border-box;
}

#industry-intelligence-section .industry-header {
  width: 100%;
  max-width: 600px;
  margin-bottom: 50px;
  text-align: center;
}

#industry-intelligence-section .industry-title {
  margin: 0 0 24px;
  color: #1d1d1f;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

#industry-intelligence-section .industry-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

#industry-intelligence-section .industry-search-input {
  width: 100%;
  min-height: 56px;
  padding: 16px 20px 16px 48px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  outline: none;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  color: #1d1d1f;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#industry-intelligence-section .industry-search-input:focus {
  border-color: #0071e3;
  background: rgba(255, 255, 255, 0.94);
}

#industry-intelligence-section .search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  z-index: 1;
  transform: translateY(-50%);
  color: #86868b;
  font-size: 1.2rem;
  line-height: 1;
  pointer-events: none;
}

#industry-intelligence-section .marquee-container {
  position: relative;
  width: 100vw;
  margin-left: -20px;
}

#industry-intelligence-section .marquee-track {
  display: flex;
  gap: 24px;
  width: 100%;
  padding: 20px 40px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

#industry-intelligence-section .marquee-track::-webkit-scrollbar {
  display: none;
}

#industry-intelligence-section .marquee-track.is-searching {
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: hidden;
}

#industry-intelligence-section .industry-card {
  flex: 0 0 300px;
  width: 300px;
  height: 220px;
  min-height: 220px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  perspective: 1000px;
  scroll-snap-align: center;
}

#industry-intelligence-section .industry-card[hidden] {
  display: none !important;
}

#industry-intelligence-section .industry-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

#industry-intelligence-section .industry-card.flipped .industry-card-inner {
  transform: rotateY(180deg);
}

#industry-intelligence-section .card-face {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.05);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

#industry-intelligence-section .card-front {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#industry-intelligence-section .card-icon {
  margin-bottom: 16px;
  color: #0071e3;
  font-size: 2.2rem;
  line-height: 1;
}

#industry-intelligence-section .card-title {
  margin: 0 0 8px;
  color: #1d1d1f;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

#industry-intelligence-section .card-desc {
  margin: 0;
  color: #515154;
  font-size: 0.95rem;
  line-height: 1.4;
}

#industry-intelligence-section .card-back {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  transform: rotateY(180deg);
}

#industry-intelligence-section .btn {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

#industry-intelligence-section .btn-primary {
  background: #1d1d1f;
  color: #fff;
}

#industry-intelligence-section .btn-primary:hover {
  background: #000;
  transform: scale(1.02);
}

#industry-intelligence-section .btn-secondary {
  background: rgba(0, 0, 0, 0.05);
  color: #1d1d1f;
}

#industry-intelligence-section .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

#industry-intelligence-section .industry-card:focus-visible,
#industry-intelligence-section .btn:focus-visible,
#industry-intelligence-section .industry-search-input:focus-visible {
  outline: 2px solid #0071e3;
  outline-offset: 4px;
}

@media (max-width: 768px) {
  #industry-intelligence-section {
    overflow: hidden;
    padding: 58px 0 62px;
  }

  #industry-intelligence-section .industry-header {
    width: min(100% - 32px, 420px);
    margin-bottom: 28px;
  }

  #industry-intelligence-section .industry-title {
    margin-bottom: 18px;
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.03;
    letter-spacing: -0.03em;
  }

  #industry-intelligence-section .industry-search-wrapper {
    max-width: 340px;
  }

  #industry-intelligence-section .industry-search-input {
    min-height: 48px;
    padding: 13px 16px 13px 44px;
    font-size: 16px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      0 10px 26px rgba(15, 23, 42, 0.06);
  }

  #industry-intelligence-section .search-icon {
    left: 17px;
    font-size: 1.05rem;
  }

  #industry-intelligence-section .marquee-container {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
  }

  #industry-intelligence-section .marquee-track {
    gap: 12px;
    padding: 10px 16px 18px;
    overflow-x: auto;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    touch-action: pan-x pan-y;
  }

  #industry-intelligence-section .marquee-track::after {
    content: "";
    flex: 0 0 4px;
  }

  #industry-intelligence-section .marquee-track.is-searching {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-inline: 16px;
    overflow-x: hidden;
  }

  #industry-intelligence-section .industry-card {
    flex: 0 0 min(84vw, 310px);
    width: min(84vw, 310px);
    height: 194px;
    min-height: 194px;
    border-radius: 18px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    perspective: 1000px;
    -webkit-perspective: 1000px;
  }

  #industry-intelligence-section .industry-card.marquee-clone {
    display: none !important;
  }

  #industry-intelligence-section .marquee-track.is-searching .industry-card {
    width: 100%;
    max-width: 360px;
    justify-self: center;
  }

  #industry-intelligence-section .industry-card-inner {
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  #industry-intelligence-section .industry-card.flipped .industry-card-inner {
    transform: rotateY(180deg);
  }

  #industry-intelligence-section .card-face {
    padding: 20px;
    border-radius: 18px;
    box-shadow:
      0 12px 28px rgba(15, 23, 42, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  #industry-intelligence-section .card-front {
    transform: rotateY(0deg) translateZ(0.1px);
    pointer-events: auto;
  }

  #industry-intelligence-section .card-back {
    transform: rotateY(180deg) translateZ(0.1px);
    pointer-events: none;
  }

  #industry-intelligence-section .industry-card.flipped .card-front {
    pointer-events: none;
  }

  #industry-intelligence-section .industry-card.flipped .card-back {
    pointer-events: auto;
  }

  #industry-intelligence-section .card-icon {
    margin-bottom: 14px;
    font-size: 2rem;
  }

  #industry-intelligence-section .card-title {
    font-size: 1.1rem;
  }

  #industry-intelligence-section .card-desc {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  #industry-intelligence-section .card-back {
    gap: 10px;
    padding: 20px;
  }

  #industry-intelligence-section .btn {
    min-height: 42px;
    padding: 11px 14px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #industry-intelligence-section .industry-card-inner,
  #industry-intelligence-section .btn {
    transition-duration: 0.01ms !important;
  }
}
