﻿:root {

  --ink: #2c3e50;

  --muted: #5d6b7d;

  --soft: #f5f8fc;

  --line: #dce6f1;

  --panel: #fff;

  --blue: #2f6fa3;

  --blue-dark: #255d88;

  --green: #14a06f;

  --amber: #d88910;

  --rose: #d94868;

  --navy: #2c3e50;

  --shadow: 0 24px 70px rgba(21, 32, 51, .11);

  --radius: 8px;

  --section-y: 76px;

  --section-head-gap: 32px;

}



* {

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth;

}



body {

  margin: 0;

  color: var(--ink);

  background: #fff;

  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  line-height: 1.6;

  letter-spacing: 0;

}



body.drawer-open {

  overflow: hidden;

}



img {

  display: block;

  max-width: 100%;

}



a {

  color: inherit;

  text-decoration: none;

}



button,

input,

select,

textarea {

  font: inherit;

}



.container {

  width: min(1240px, calc(100% - 40px));

  margin-inline: auto;

}



.top-strip {

  background: #0d1524;

  color: #dce8f7;

  font-size: 13px;

}



.top-strip__inner {

  min-height: 38px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

}



.top-strip a {

  color: #fff;

  font-weight: 700;

}



.site-header {

  position: sticky;

  top: 0;

  z-index: 40;

  background: rgba(255, 255, 255, .94);

  border-bottom: 1px solid rgba(220, 229, 239, .9);

  backdrop-filter: blur(14px);

}



.nav-shell {

  height: 76px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 24px;

}



.brand {

  display: inline-flex;

  align-items: center;

  gap: 11px;

  flex: 0 0 auto;

}



.brand img {

  width: 40px;

  height: 40px;

  object-fit: contain;

}



.brand__copy {

  display: inline-flex;

  flex-direction: column;

  justify-content: center;

  gap: 1px;

  line-height: 1;

}



.brand__word {

  display: inline-flex;

  align-items: baseline;

  font-size: 22px;

  font-weight: 900;

}



.brand__word span:first-child {

  color: #2c3e50;

}



.brand__word span:last-child {

  color: #2f6fa3;

}



.brand__tagline {

  color: #667589;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: .01em;

}



.desktop-nav {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 4px;

  flex: 1 1 auto;

}



.desktop-nav > a,

.nav-item > a {

  height: 44px;

  display: inline-flex;

  align-items: center;

  gap: 5px;

  padding: 0 13px;

  border-radius: var(--radius);

  color: #314059;

  font-size: 14px;

  font-weight: 700;

  white-space: nowrap;

}



.desktop-nav > a:hover,

.nav-item:hover > a,

.desktop-nav .is-active > a,

.desktop-nav > a.is-active {

  background: #eef6fb;

  color: var(--blue);

}



.nav-item {

  position: relative;

}



.mega-menu {

  position: absolute;

  top: calc(100% + 12px);

  left: 0;

  min-width: 340px;

  padding: 18px;

  background: #fff;

  border: 1px solid var(--line);

  border-radius: 8px;

  box-shadow: var(--shadow);

  opacity: 0;

  visibility: hidden;

  transform: translateY(8px);

  transition: .18s ease;

}



.nav-item:hover .mega-menu,

.nav-item:focus-within .mega-menu {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}



.mega-menu--wide {

  width: min(940px, calc(100vw - 80px));

  display: grid;

  grid-template-columns: 260px 1fr;

  gap: 22px;

}



.mega-menu--compact {

  min-width: 280px;

}



.mega-menu--sectors {

  left: 50%;

  width: min(980px, calc(100vw - 80px));

  max-height: min(72vh, 640px);

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;

  overflow-y: auto;

  transform: translate(-50%, 8px);

}



.nav-item:hover .mega-menu--sectors,

.nav-item:focus-within .mega-menu--sectors {

  transform: translate(-50%, 0);

}



.mega-menu__intro {

  padding: 18px;

  border-radius: 8px;

  color: #dbe9ff;

  background: #11213a;

}



.mega-menu__intro strong,

.mega-title {

  display: block;

  margin-bottom: 8px;

  color: var(--ink);

  font-size: 13px;

  font-weight: 800;

}



.mega-menu__intro strong {

  color: #fff;

  font-size: 17px;

}



.mega-menu__intro p {

  margin: 0 0 18px;

  color: #c5d3e6;

  font-size: 14px;

}



.mega-menu__grid {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 16px;

}



.mega-link {

  display: flex;

  align-items: center;

  gap: 10px;

  min-height: 42px;

  padding: 9px 10px;

  border-radius: 8px;

  color: #314059;

  font-size: 14px;

  font-weight: 650;

}



.mega-link:hover {

  background: #f2f6fb;

  color: var(--blue);

}



.mega-link i {

  width: 22px;

  color: var(--blue);

  font-size: 21px;

}



.text-link {

  color: #fff;

  font-weight: 800;

}



.nav-actions {

  display: flex;

  align-items: center;

  gap: 10px;

}



.btn {

  min-height: 44px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  padding: 0 18px;

  border: 1px solid transparent;

  border-radius: var(--radius);

  font-weight: 800;

  white-space: nowrap;

  cursor: pointer;

}



.btn--primary {

  color: #fff;

  background: var(--blue);

  box-shadow: 0 12px 30px rgba(47, 111, 163, .24);

}



.btn--primary:hover {

  background: var(--blue-dark);

}



.btn--ghost {

  color: #25344a;

  background: #fff;

  border-color: var(--line);

}



.btn--light {

  color: #142033;

  background: #fff;

  border-color: rgba(255, 255, 255, .5);

}



.icon-button {

  width: 44px;

  height: 44px;

  display: none;

  align-items: center;

  justify-content: center;

  border: 1px solid var(--line);

  border-radius: var(--radius);

  color: var(--ink);

  background: #fff;

  cursor: pointer;

}



.drawer-backdrop {

  position: fixed;

  inset: 0;

  z-index: 80;

  display: none;

  background: rgba(16, 24, 39, .48);

}



.mobile-drawer {

  position: fixed;

  top: 0;

  right: 0;

  z-index: 90;

  width: min(390px, 88vw);

  height: 100vh;

  padding: 20px;

  overflow-y: auto;

  background: #fff;

  transform: translateX(100%);

  transition: transform .2s ease;

}



.drawer-open .drawer-backdrop {

  display: block;

}



.drawer-open .mobile-drawer {

  transform: translateX(0);

}



.mobile-drawer__head {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 12px;

  font-weight: 800;

}



.mobile-drawer a {

  display: block;

  padding: 12px 4px;

  border-bottom: 1px solid #eef2f6;

  color: #26354b;

  font-weight: 700;

}



.mobile-drawer__label {

  display: block;

  padding: 18px 4px 6px;

  color: var(--blue);

  font-size: 12px;

  font-weight: 800;

  text-transform: uppercase;

}



h1,

h2,

h3,

p {

  margin-top: 0;

}



h1,

h2,

h3 {

  letter-spacing: 0;

}



h1 {

  margin-bottom: 22px;

  font-size: clamp(38px, 4.45vw, 58px);

  line-height: 1.05;

}



h2 {

  margin-bottom: 16px;

  font-size: clamp(28px, 4vw, 48px);

  line-height: 1.08;

}



h3 {

  margin-bottom: 10px;

  font-size: 20px;

  line-height: 1.25;

}



.eyebrow {

  display: inline-flex;

  align-items: center;

  margin-bottom: 14px;

  color: var(--blue);

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 0;

  text-transform: uppercase;

}



.split-hero {

  position: relative;

  overflow: hidden;

  padding: 72px 0 80px;

  background:

    linear-gradient(120deg, rgba(47, 111, 163, .09) 0 18%, transparent 18% 100%),

    linear-gradient(90deg, rgba(47, 111, 163, .04) 1px, transparent 1px),

    linear-gradient(0deg, rgba(47, 111, 163, .04) 1px, transparent 1px),

    linear-gradient(180deg, #f8fbff 0%, #fff 100%);

  background-size: auto, 34px 34px, 34px 34px, auto;

  border-bottom: 1px solid #e7eef7;

}



.split-hero--home {

  padding: 44px 0 46px;

  background:

    linear-gradient(135deg, rgba(47, 111, 163, .28), rgba(255, 255, 255, 0) 54%),

    linear-gradient(90deg, rgba(47, 111, 163, .085) 1px, transparent 1px),

    linear-gradient(0deg, rgba(47, 111, 163, .085) 1px, transparent 1px),

    linear-gradient(180deg, #dbeaf4 0%, #d0e2ef 58%, #edf6fb 100%);

  background-size: auto, 44px 44px, 44px 44px, auto;

}



.split-hero--home .container {

  width: min(1240px, calc(100% - 40px));

}



.split-hero__grid {

  display: grid;

  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);

  gap: 54px;

  align-items: center;

}



.split-hero--home .split-hero__grid {

  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  gap: 54px;

  align-items: center;

}



.split-hero--home h1 {

  max-width: 620px;

  margin-bottom: 10px;

  font-size: clamp(39px, 3.05vw, 44px);

  line-height: 1.08;

}



.split-hero--home h1 .hero-title__line {

  display: block;

  white-space: nowrap;

}



.split-hero--home h1 .hero-title__accent {

  color: var(--blue);

}



.split-hero__copy p {

  max-width: 670px;

  margin-bottom: 28px;

  color: var(--muted);

  font-size: 20px;

}



.split-hero--home .split-hero__copy p {

  width: min(640px, calc(100vw - 40px));

  max-width: 650px;

  margin-bottom: 20px;

  font-size: 16.5px;

}



.hero-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 24px;

}



.split-hero--home .hero-actions {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 10px;

  max-width: 486px;

  margin-bottom: 18px;

}



.split-hero--home .hero-actions .btn {

  width: 100%;

  min-height: 56px;

  justify-content: flex-start;

  gap: 9px;

  padding: 0 13px;

  border-color: rgba(255, 255, 255, .12);

  color: #fff;

  background: #2f3349;

  box-shadow: 0 16px 34px rgba(21, 32, 51, .24);

  font-size: 13px;

  font-weight: 850;

}



.split-hero--home .hero-actions .btn i {

  color: var(--blue);

  font-size: 23px;

}



.split-hero--home .hero-actions .btn--store-apple i {

  color: #fff;

}



.split-hero--home .hero-actions .btn--store-google {

  color: #fff;

  background: #2f3349;

  border-color: rgba(255, 255, 255, .12);

}



.split-hero--home .hero-actions .btn--store-google i {

  color: #12a467;

}



.split-hero--home .hero-actions .btn--store-web {

  color: #fff;

  background: #2f3349;

  border-color: rgba(255, 255, 255, .12);

}



.split-hero--home .hero-actions .btn--store-web i {

  color: #f05f70;

}



.split-hero--home .hero-actions .btn__copy {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 1px;

  line-height: 1.05;

}



.split-hero--home .hero-actions .btn__copy span {

  color: rgba(255, 255, 255, .56);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .04em;

}



.split-hero--home .hero-actions .btn__copy strong {

  color: #fff;

  font-size: 12px;

  font-weight: 900;

}



.split-hero--home .hero-actions .btn:hover {

  border-color: rgba(255, 255, 255, .2);

  background: #3a3b64;

  transform: translateY(-1px);

}



.hero-visual-stack {

  width: 100%;

}



.hero-kpi-grid {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 10px;

  width: 100%;

  margin-top: 12px;

}



.hero-kpi-grid--left {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 10px;

  max-width: 486px;

  margin-top: 0;

}



.hero-kpi {

  min-height: 42px;

  display: flex;

  align-items: center;

  justify-content: flex-start;

  gap: 7px;

  padding: 0 12px;

  border: 1px solid rgba(47, 111, 163, .12);

  border-radius: 8px;

  color: #334c65;

  background: rgba(255, 255, 255, .62);

  box-shadow: none;

  font-size: 12px;

  font-weight: 800;

  text-align: left;

}



.hero-kpi span {

  width: 18px;

  height: 18px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex: 0 0 auto;

  border-radius: 999px;

  color: var(--blue);

  background: rgba(47, 111, 163, .1);

  font-size: 11px;

  line-height: 1;

}



.hero-proof {

  max-width: 560px;

  display: flex;

  align-items: center;

  gap: 22px;

  margin-top: 22px;

}



.hero-proof__avatars {

  display: flex;

  align-items: center;

  flex: 0 0 auto;

}



.hero-proof__avatar {

  width: 34px;

  height: 34px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  margin-left: -5px;

  border: 2px solid rgba(255, 255, 255, .82);

  border-radius: 999px;

  overflow: hidden;

  color: #fff;

  background: #2c3e50;

  box-shadow: 0 10px 24px rgba(21, 32, 51, .14);

  font-size: 10px;

  font-weight: 900;

}



.hero-proof__avatar:first-child {

  margin-left: 0;

}



.hero-proof__avatar:nth-child(2) {

  background: #2f6fa3;

}



.hero-proof__avatar:nth-child(3) {

  background: #14a06f;

}



.hero-proof__avatar:nth-child(4) {

  background: #d88910;

}



.hero-proof__avatar img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.hero-proof__avatar--count {

  width: 46px;

  background: #eef6ff;

  color: var(--blue);

  font-size: 11px;

}



.hero-proof__label {

  color: #1f3347;

  margin-left: 2px;

  font-size: 13px;

  font-weight: 900;

  white-space: nowrap;

}



.hero-proof__copy strong {

  display: block;

  color: #21354a;

  font-size: 13px;

  font-weight: 900;

}



.hero-proof__copy p {

  max-width: 420px;

  margin: 2px 0 0;

  color: #4c647d;

  font-size: 13px;

  line-height: 1.45;

}



.split-hero--home .hero-proof__copy p {

  max-width: 390px;

  margin: 2px 0 0;

  color: #4c647d;

  font-size: 13px;

  line-height: 1.45;

}



.metric-row {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

}



.metric-row span {

  min-width: 126px;

  padding: 12px 14px;

  border: 1px solid #cfe0f6;

  border-radius: 8px;

  color: #2f6fa3;

  background: rgba(238, 246, 255, .82);

  font-weight: 750;

}



.metric-row strong {

  display: block;

  color: var(--ink);

  font-size: 23px;

  line-height: 1;

}



.visual-panel {

  position: relative;

  padding: 18px;

  border: 1px solid var(--line);

  border-radius: 8px;

  background: #fff;

  box-shadow: var(--shadow);

}



.visual-panel::before {

  content: "";

  position: absolute;

  inset: -24px;

  z-index: -1;

  border-radius: 8px;

  background: linear-gradient(135deg, rgba(47, 111, 163, .18), rgba(44, 62, 80, .08));

}



.visual-panel--green::before {

  background: linear-gradient(135deg, rgba(20, 160, 111, .16), rgba(47, 111, 163, .08));

}



.visual-panel--amber::before {

  background: linear-gradient(135deg, rgba(216, 137, 16, .17), rgba(47, 111, 163, .08));

}



.visual-panel--rose::before {

  background: linear-gradient(135deg, rgba(217, 72, 104, .16), rgba(47, 111, 163, .08));

}



.visual-panel__toolbar {

  display: flex;

  gap: 7px;

  margin-bottom: 12px;

}



.visual-panel__toolbar span {

  width: 10px;

  height: 10px;

  border-radius: 999px;

  background: #d7e1ee;

}



.visual-panel img {

  width: 100%;

  aspect-ratio: 16 / 9;

  object-fit: cover;

  object-position: top left;

  border: 1px solid #e0e8f2;

  border-radius: 8px;

}



.visual-panel--dashboard {

  padding: 0;

  overflow: hidden;

  border-color: rgba(47, 111, 163, .16);

  background: #f6f9fc;

  box-shadow: 0 26px 80px rgba(44, 62, 80, .18);

}



.visual-panel--dashboard::before {

  inset: -18px;

  background:

    linear-gradient(135deg, rgba(47, 111, 163, .2), rgba(255, 255, 255, 0) 58%),

    linear-gradient(90deg, rgba(47, 111, 163, .08) 1px, transparent 1px),

    linear-gradient(0deg, rgba(47, 111, 163, .08) 1px, transparent 1px);

  background-size: auto, 28px 28px, 28px 28px;

}



.visual-panel--dashboard img {

  aspect-ratio: 1 / 1;

  border: 0;

  border-radius: 8px;

  object-fit: cover;

  object-position: top left;

}



.hero-showcase {

  position: relative;

  isolation: isolate;

}



.hero-showcase::before {

  content: "";

  position: absolute;

  inset: 28px 8px -28px 8px;

  z-index: -1;

  border-radius: 8px;

  background:

    radial-gradient(circle at 78% 14%, rgba(47, 111, 163, .34), transparent 34%),

    radial-gradient(circle at 18% 82%, rgba(20, 160, 111, .24), transparent 32%),

    linear-gradient(135deg, rgba(47, 111, 163, .24), rgba(255, 255, 255, 0));

  filter: blur(24px);

}



.hero-frame {

  position: relative;

  padding: 16px;

  border: 1px solid rgba(47, 111, 163, .22);

  border-radius: 8px;

  background:

    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(241, 248, 255, .94)),

    #fff;

  box-shadow:

    inset 0 0 0 1px rgba(255, 255, 255, .9),

    0 32px 90px rgba(25, 43, 66, .24);

}



.hero-frame__bar {

  height: 40px;

  display: flex;

  align-items: center;

  gap: 7px;

  padding: 0 10px;

  border: 1px solid rgba(47, 111, 163, .14);

  border-radius: 8px;

  margin-bottom: 10px;

  color: #5d7187;

  background: #fff;

  box-shadow: 0 10px 26px rgba(31, 51, 71, .06);

}



.hero-frame__bar span {

  width: 8px;

  height: 8px;

  border-radius: 999px;

  background: #c5d5e7;

}



.hero-frame__bar span:nth-child(2) {

  background: #a8c2dc;

}



.hero-frame__bar span:nth-child(3) {

  background: #7fa9cf;

}



.hero-frame__bar strong {

  min-width: 0;

  margin-left: 5px;

  overflow: hidden;

  color: #5f7185;

  font-size: 11px;

  font-weight: 800;

  text-overflow: ellipsis;

  white-space: nowrap;

}



.hero-slider {

  position: relative;

  padding: 0;

  overflow: visible;

  border-radius: 8px;

}



.hero-slider__track {

  position: relative;

  aspect-ratio: 1 / 1;

  overflow: visible;

  border: 1px solid rgba(47, 111, 163, .2);

  border-radius: 8px;

  background: #f6f9fc;

  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8);

}



.hero-slide {

  position: absolute;

  inset: 0;

  opacity: 0;

  pointer-events: none;

  transform: scale(1.012);

  transition: opacity .55s ease, transform .8s ease;

}



.hero-slide.is-active {

  opacity: 1;

  pointer-events: auto;

  transform: scale(1);

}



.hero-slide img {

  width: 100%;

  height: 100%;

  aspect-ratio: auto;

  object-fit: cover;

  object-position: top left;

  border-radius: 8px;

}



.hero-slide__label {

  position: absolute;

  top: 18px;

  left: 34%;

  right: auto;

  z-index: 2;

  padding: 7px 10px;

  border: 1px solid rgba(47, 111, 163, .14);

  border-radius: 8px;

  color: #284057;

  background: rgba(255, 255, 255, .78);

  backdrop-filter: blur(10px);

  font-size: 12px;

  font-weight: 850;

}



.hero-slide__kpis {

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

}



.hero-slide__kpi {

  position: absolute;

  min-width: 182px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 12px 14px;

  border: 1px solid rgba(255, 255, 255, .34);

  border-radius: 8px;

  color: #fff;

  background: #20364d;

  box-shadow: 0 24px 54px rgba(21, 32, 51, .26);

  backdrop-filter: blur(14px);

}



.hero-slide__kpi--primary {

  min-width: 168px;

  gap: 9px;

  padding: 10px 12px;

  top: 62px;

  right: -40px;

  transform: rotate(4deg);

}

.hero-slide__kpi--primary i {

  width: 31px;

  height: 31px;

  font-size: 17px;

}

.hero-slide__kpi--primary strong {

  font-size: 14px;

}



.hero-slide__kpi--secondary {

  left: -26px;

  bottom: 74px;

  background: #129b68;

  box-shadow: 0 24px 54px rgba(18, 155, 104, .24);

  transform: rotate(-5deg);

}



.hero-slide__kpi i {

  width: 34px;

  height: 34px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex: 0 0 auto;

  border-radius: 8px;

  color: #20364d;

  background: #fff;

  font-size: 18px;

}



.hero-slide__kpi--secondary i {

  color: #129b68;

}



.hero-slide__kpi span {

  min-width: 0;

  display: flex;

  flex-direction: column;

  gap: 1px;

}



.hero-slide__kpi small {

  color: rgba(255, 255, 255, .72);

  font-size: 10px;

  font-weight: 800;

}



.hero-slide__kpi strong {

  color: #fff;

  font-size: 15px;

  font-weight: 950;

  line-height: 1.1;

}

.hero-slide__kpi--primary i {

  width: 31px;

  height: 31px;

  font-size: 17px;

}

.hero-slide__kpi--primary strong {

  font-size: 14px;

}



.hero-slider__dots {

  position: absolute;

  bottom: 16px;

  left: 16px;

  z-index: 3;

  display: flex;

  gap: 6px;

}



.hero-slider__dot {

  width: 7px;

  height: 7px;

  padding: 0;

  border: 1px solid rgba(47, 111, 163, .14);

  border-radius: 999px;

  background: rgba(255, 255, 255, .72);

  cursor: pointer;

}



.hero-slider__dot.is-active {

  width: 20px;

  background: var(--blue);

}



.screenshot-showcase {

  overflow: hidden;

  border: 1px solid rgba(47, 111, 163, .18);

  border-radius: 8px;

  background: #fff;

  box-shadow: var(--shadow);

}



.screenshot-showcase img {

  width: 100%;

  border-radius: 8px;

}



.floating-stat {

  position: absolute;

  width: 154px;

  padding: 13px 14px;

  border: 1px solid rgba(207, 224, 246, .9);

  border-radius: 8px;

  background: rgba(255, 255, 255, .9);

  box-shadow: 0 18px 44px rgba(21, 32, 51, .16);

  backdrop-filter: blur(12px);

}



.floating-stat strong {

  display: block;

  color: var(--ink);

  font-size: 23px;

  line-height: 1;

}



.floating-stat span {

  color: var(--muted);

  font-size: 13px;

  font-weight: 700;

}



.floating-stat--top {

  top: 58px;

  right: -26px;

}



.floating-stat--bottom {

  left: -28px;

  bottom: 34px;

}



.section {

  padding: var(--section-y) 0;

}



.section--soft {

  background: var(--soft);

}



.section-heading {

  max-width: 790px;

  margin-bottom: var(--section-head-gap);

}



.section-heading--center {

  margin-inline: auto;

  text-align: center;

}



.center-action {

  display: flex;

  justify-content: center;

  margin-top: 28px;

}



.section-heading p,

.feature-card p,

.sector-card p,

.architecture-card p,

.module-strip__group p,

.pricing-card p,

.contact-info p,

.zigzag-section p {

  color: var(--muted);

}



.platform-grid,

.feature-grid,

.sector-grid,

.pricing-grid,

.related-grid,

.outcome-grid,

.solution-grid {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px;

}



.platform-grid {

  grid-template-columns: repeat(4, minmax(0, 1fr));

}



.feature-card,

.sector-card,

.architecture-card,

.pricing-card,

.insight-panel,

.workflow-step,

.outcome-card,

.contact-form,

.contact-info {

  border: 1px solid var(--line);

  border-radius: 8px;

  background: var(--panel);

  box-shadow: 0 14px 42px rgba(23, 32, 51, .06);

}



.feature-card,

.sector-card,

.architecture-card,

.pricing-card,

.insight-panel,

.workflow-step {

  padding: 24px;

}



.feature-card {

  min-height: 250px;

  display: flex;

  flex-direction: column;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;

}



a.feature-card:hover,

a.sector-card:hover {

  transform: translateY(-3px);

  border-color: #b9d2ff;

  box-shadow: var(--shadow);

}



.icon-badge,

.sector-card > i,

.architecture-card > i {

  width: 50px;

  height: 50px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 18px;

  border-radius: 8px;

  font-size: 25px;

}



.icon-badge--blue,

.sector-card > i,

.architecture-card > i {

  color: var(--blue);

  background: #eaf2ff;

}



.icon-badge--green {

  color: var(--green);

  background: #e9f8f1;

}



.icon-badge--amber {

  color: var(--amber);

  background: #fff4df;

}



.icon-badge--rose {

  color: var(--rose);

  background: #fff0f3;

}



.card-link {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  margin-top: auto;

  color: var(--blue);

  font-weight: 800;

}



.module-overview {

  background: #fff;
}



.module-overview__head {

  max-width: 1180px;

  margin: 0 auto var(--section-head-gap);

  text-align: center;

}



.module-overview__head h2 {

  margin: 10px 0 14px;

  color: #172033;

  font-size: 38px;

  line-height: 1.12;

  white-space: nowrap;

}



.module-overview__head p {

  max-width: 760px;

  margin: 0 auto;

  color: #5d6a80;

  font-size: 17px;

  line-height: 1.65;

}



.module-overview__grid {

  display: grid;

  grid-template-columns: repeat(6, minmax(0, 1fr));

  align-items: stretch;

  gap: 18px;

  max-width: 1120px;

  margin-inline: auto;

}



.module-card {

  display: flex;

  min-width: 0;

  min-height: 390px;

  grid-column: span 2;

  flex-direction: column;

  padding: 26px;

  border: 1px solid rgba(47, 111, 163, .14);

  border-radius: 8px;

  background: #fff;

  box-shadow: 0 18px 48px rgba(23, 32, 51, .045);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;

}



.module-card:nth-child(4) {

  grid-column: 2 / span 2;

}



.module-card:nth-child(5) {

  grid-column: 4 / span 2;

}



.module-card:hover {

  transform: translateY(-3px);

  border-color: rgba(47, 111, 163, .3);

  box-shadow: 0 22px 56px rgba(23, 32, 51, .08);

}



.module-card h3 {

  margin: 0 0 12px;

  color: #172033;

  font-size: 22px;

  line-height: 1.24;

}



.module-card p {

  min-height: 50px;

  margin: 0;

  color: #5d6a80;

  font-size: 15px;

  line-height: 1.5;

}



.module-card ul {

  display: grid;

  gap: 10px;

  margin: 24px 0 0;

  padding: 0;

  list-style: none;

}



.module-card li {

  display: flex;

  min-width: 0;

  align-items: center;

  gap: 11px;

  min-height: 44px;

  padding: 10px 12px;

  border: 1px solid rgba(47, 111, 163, .06);

  border-radius: 8px;

  color: #314059;

  background: var(--soft);
  font-size: 15px;

  font-weight: 850;

  line-height: 1.3;

}



.module-card li i {

  flex: 0 0 auto;

  color: var(--blue);

  font-size: 19px;

}



.module-card li span {

  min-width: 0;

}



.module-card__more {

  display: inline-flex;

  align-items: center;

  margin-top: auto;

  padding-top: 18px;

  color: var(--blue);

  font-size: 14px;

  font-weight: 850;

}

.module-experience {
  display: grid;
  grid-template-columns: minmax(320px, 38fr) minmax(0, 62fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1180px;
  margin-inline: auto;
}

.module-experience__nav {
  display: grid;
  gap: 12px;
  align-content: start;
  grid-auto-rows: 1fr;
}

.module-experience-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  min-height: 108px;
  height: 100%;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(47, 111, 163, .13);
  border-radius: 8px;
  color: #172033;
  background: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(23, 32, 51, .04);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}

.module-experience-card:hover,
.module-experience-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 111, 163, .3);
  box-shadow: 0 20px 48px rgba(23, 32, 51, .075);
}

.module-experience-card:focus-visible {
  outline: 3px solid rgba(47, 111, 163, .2);
  outline-offset: 3px;
}

.module-experience-card.is-active {
  position: relative;
  z-index: 2;
  transform: translateY(-2px) scale(1.018);
  border-color: rgba(47, 111, 163, .73);
  background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
  box-shadow:
    0 28px 66px rgba(23, 32, 51, .12),
    0 0 0 4px rgba(47, 111, 163, .055);
}

.module-experience-card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(47, 111, 163, .095);
  transition: color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.module-experience-card:hover .module-experience-card__icon,
.module-experience-card:focus-visible .module-experience-card__icon {
  color: var(--blue);
  background: rgba(47, 111, 163, .15);
  transform: scale(1.04);
}

.module-experience-card.is-active .module-experience-card__icon {
  color: var(--blue);
  background: rgba(47, 111, 163, .2);
  box-shadow: inset 0 0 0 1px rgba(47, 111, 163, .22);
  transform: scale(1.05);
}

.module-experience-card__icon i {
  font-size: 22px;
}

.module-experience-card__body {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.module-experience-card__body strong {
  color: #172033;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.25;
}

.module-experience-card__body small {
  color: #5f6b7e;
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 39px;
}

.module-experience__stage {
  position: relative;
  min-height: 610px;
}

.module-experience-panel {
  display: grid;
  grid-template-columns: minmax(240px, 33fr) minmax(0, 67fr);
  grid-template-areas: "copy media";
  gap: 12px;
  height: 100%;
  min-height: 610px;
  padding: 18px;
  border: 1px solid rgba(47, 111, 163, .13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(23, 32, 51, .07);
  opacity: 0;
  transform: translateX(14px);
  transition: opacity .32s ease, transform .32s ease;
}

.module-experience-panel[hidden] {
  display: none;
}

.module-experience-panel.is-active {
  opacity: 1;
  transform: translateX(0);
}

.module-experience-panel__copy {
  display: flex;
  grid-area: copy;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding-left: 14px;
  transition: opacity .3s ease, transform .3s ease;
}

.module-experience-panel__copy.is-switching {
  opacity: .04;
  transform: translateY(7px) scale(.987);
}

.module-experience-panel__copy h3 {
  margin: 0 0 12px;
  color: #172033;
  font-size: 29px;
  line-height: 1.15;
}

.module-experience-panel__copy p {
  margin: 0;
  color: #5d6a80;
  font-size: 15px;
  line-height: 1.58;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.module-experience-panel__copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.module-experience-panel__copy li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #314059;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  animation: moduleFeatureIn .28s ease both;
  animation-delay: calc(var(--feature-index, 0) * 42ms);
}

.module-experience-panel__copy li i {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(47, 111, 163, .7);
  font-size: 12px;
  box-shadow: 0 5px 12px rgba(47, 111, 163, .16);
}

@keyframes moduleFeatureIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

.module-experience-panel__media {
  position: relative;
  display: flex;
  grid-area: media;
  min-width: 0;
  align-items: stretch;
}

.module-experience-panel__media::before {
  content: "";
  position: absolute;
  inset: 8% 4% 8% 12%;
  border-radius: 999px;
  background: rgba(47, 111, 163, .08);
  filter: blur(42px);
  pointer-events: none;
}

.module-product-shell {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(47, 111, 163, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 18px 46px rgba(23, 32, 51, .095),
    0 4px 14px rgba(23, 32, 51, .035);
}

.module-product-shell__bar {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(47, 111, 163, .1);
  background: #fff;
}

.module-product-shell__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(47, 111, 163, .26);
}

.module-product-shell__bar strong {
  margin-left: 7px;
  color: #5d6a80;
  font-size: 12px;
  font-weight: 850;
}

.module-product-shell__body {
  display: flex;
  min-height: 562px;
  flex: 1;
  overflow: hidden;
  background: #f4f7fb;
}

.module-product-sidebar {
  display: flex;
  flex: 0 0 84%;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
  color: #fff;
  background: #30364f;
}

.module-product-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.module-product-brand > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  font-size: 21px;
  font-weight: 900;
}

.module-product-brand strong {
  display: grid;
  gap: 3px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.module-product-brand small {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 700;
}

.module-product-group {
  display: grid;
  gap: 10px;
}

.module-product-group__title {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 18px;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  font-size: 15px;
  font-weight: 850;
}

.module-product-group__title i {
  font-size: 19px;
}

.module-product-menu {
  display: grid;
  gap: 4px;
  padding-left: 16px;
}

.module-product-menu__item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  min-height: 41px;
  align-items: center;
  gap: 11px;
  padding: 8px 11px;
  border-radius: 8px;
  border: 0;
  color: rgba(255, 255, 255, .78);
  background: transparent;
  font-size: 15px;
  font-weight: 780;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.module-product-menu__item:hover,
.module-product-menu__item:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.module-product-menu__item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .28);
  outline-offset: 2px;
}

.module-product-menu__item i {
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
}

.module-product-menu__item.is-active {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(24, 43, 70, .22);
  transform: translateX(2px);
}

.module-product-menu__item.is-active i {
  color: #fff;
}

.module-product-content {
  position: relative;
  flex: 1 1 16%;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, .18);
  background: #fff;
}

.module-product-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .74));
  pointer-events: none;
}

.module-product-content img {
  display: block;
  width: 320%;
  height: 100%;
  object-fit: cover;
  object-position: 42% top;
  opacity: .88;
}

@media (min-width: 1081px) {
  .module-experience-panel {
    grid-template-columns: minmax(220px, 31fr) minmax(0, 69fr);
    gap: 8px;
  }

  .module-experience-panel__copy h3 {
    margin-bottom: 9px;
  }

  .module-experience-panel__copy ul {
    margin-top: 13px;
  }

  .module-experience-panel__media {
    transform: translateY(-22px);
  }

  .module-product-shell__bar {
    min-height: 31px;
  }
}

.interface-gallery {

  overflow: hidden;

  background: #fff;

}



.interface-gallery__head {

  max-width: 1180px;

  margin: 0 auto var(--section-head-gap);

  text-align: center;

}



.interface-gallery__head h2 {

  margin: 0 0 12px;

  color: #172033;

  font-size: 38px;

  line-height: 1.12;

  white-space: nowrap;

}



.interface-gallery__head p {

  max-width: 720px;

  margin: 0 auto;

  color: #5d6a80;

  font-size: 17px;

  line-height: 1.65;

}



.interface-gallery__stage {

  position: relative;

  max-width: 1160px;

  margin-inline: auto;

}



.interface-gallery__frame {

  overflow: hidden;

  border: 1px solid rgba(47, 111, 163, .14);

  border-radius: 8px;

  background: #f7fbff;

  box-shadow: 0 24px 70px rgba(23, 32, 51, .08);

}



.interface-gallery__bar {

  display: flex;

  align-items: center;

  gap: 8px;

  min-height: 42px;

  padding: 0 18px;

  border-bottom: 1px solid rgba(47, 111, 163, .12);

  color: #63738b;

  background: #fff;

}



.interface-gallery__bar span {

  width: 8px;

  height: 8px;

  border-radius: 999px;

  background: #d7e2ef;

}



.interface-gallery__bar strong {

  margin-left: 8px;

  color: #41516a;

  font-size: 13px;

  font-weight: 850;

}



.interface-gallery__slides {

  position: relative;

}



.interface-gallery__slide {

  display: none;

  grid-template-columns: minmax(250px, .34fr) minmax(0, .66fr);

  gap: 26px;

  align-items: center;

  padding: 24px;

}



.interface-gallery__slide.is-active {

  display: grid;

}



.interface-gallery__copy {

  padding: 10px 4px 10px 10px;

}



.interface-gallery__copy > span {

  display: inline-flex;

  align-items: center;

  min-height: 28px;

  margin-bottom: 14px;

  padding: 4px 9px;

  border: 1px solid rgba(47, 111, 163, .12);

  border-radius: 8px;

  color: var(--blue);

  background: #eef6fb;

  font-size: 12px;

  font-weight: 900;

  text-transform: uppercase;

}



.interface-gallery__copy h3 {

  margin: 0 0 12px;

  color: #172033;

  font-size: 32px;

  line-height: 1.12;

}



.interface-gallery__copy p {

  margin: 0;

  color: #5d6a80;

  font-size: 16px;

  line-height: 1.6;

}



.interface-gallery__points {

  display: grid;

  gap: 10px;

  margin-top: 22px;

}



.interface-gallery__points span {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: #314059;

  font-weight: 820;

}



.interface-gallery__points i {

  display: inline-flex;

  width: 22px;

  height: 22px;

  align-items: center;

  justify-content: center;

  border-radius: 999px;

  color: var(--blue);

  background: #eaf2ff;

  font-size: 15px;

}



.interface-gallery__media {

  display: grid;

  min-width: 0;

  place-items: center;

  overflow: hidden;

  border: 1px solid rgba(47, 111, 163, .1);

  border-radius: 8px;

  background: #eef4fa;

}



.interface-gallery__media img {

  display: block;

  width: 100%;

  max-height: 590px;

  object-fit: contain;

  object-position: top left;

}



.interface-gallery__arrow {

  position: absolute;

  top: 44%;

  z-index: 2;

  display: inline-flex;

  width: 46px;

  height: 46px;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(47, 111, 163, .14);

  border-radius: 999px;

  color: #2f455f;

  background: rgba(255, 255, 255, .92);

  box-shadow: 0 16px 34px rgba(23, 32, 51, .12);

  cursor: pointer;

  transition: transform .18s ease, border-color .18s ease, color .18s ease;

}



.interface-gallery__arrow:hover {

  transform: translateY(-2px);

  border-color: rgba(47, 111, 163, .36);

  color: var(--blue);

}



.interface-gallery__arrow--prev {

  left: -22px;

}



.interface-gallery__arrow--next {

  right: -22px;

}



.interface-gallery__arrow i {

  font-size: 23px;

}



.interface-gallery__thumbs {

  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 12px;

  margin-top: 16px;

}



.interface-gallery__thumb {

  display: grid;

  gap: 9px;

  min-width: 0;

  padding: 9px;

  border: 1px solid rgba(47, 111, 163, .12);

  border-radius: 8px;

  color: #41516a;

  background: #fff;

  cursor: pointer;

  text-align: left;

  box-shadow: 0 10px 24px rgba(23, 32, 51, .04);

  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;

}



.interface-gallery__thumb:hover,

.interface-gallery__thumb.is-active {

  transform: translateY(-2px);

  border-color: rgba(47, 111, 163, .34);

  box-shadow: 0 16px 32px rgba(23, 32, 51, .08);

}



.interface-gallery__thumb img {

  width: 100%;

  aspect-ratio: 16 / 9;

  object-fit: cover;

  object-position: top left;

  border-radius: 8px;

  background: #eef4fa;

}



.interface-gallery__thumb span {

  overflow: hidden;

  color: #233148;

  font-size: 13px;

  font-weight: 850;

  text-overflow: ellipsis;

  white-space: nowrap;

}



.industries-section {

  background: var(--soft);
}



.industries-section__head {

  max-width: 980px;

  margin: 0 auto var(--section-head-gap);

  text-align: center;

}



.industries-section__head h2 {

  margin: 0 0 10px;

  color: #172033;

  font-size: 38px;

  line-height: 1.14;

}



.industries-section__head p {

  max-width: 760px;

  margin: 0 auto;

  color: #5d6a80;

  font-size: 17px;

  line-height: 1.6;

}



.industries-section__bottom-link {

  display: flex;

  justify-content: center;

  margin-top: 10px;

}



.industries-section__link {

  display: inline-flex;

  gap: 6px;

  align-items: center;

  min-height: 40px;

  border: 1px solid rgba(47, 111, 163, .18);

  border-radius: 12px;

  padding: 0 16px;

  color: #314059;

  background: rgba(255, 255, 255, .78);

  box-shadow: 0 10px 24px rgba(23, 32, 51, .035);

  font-size: 14px;

  font-weight: 850;

  transition: color .18s ease, transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;

}



.industries-section__link:hover {

  border-color: rgba(47, 111, 163, .42);

  color: var(--blue);

  background: #fff;

  box-shadow: 0 14px 30px rgba(47, 111, 163, .09);

  transform: translateX(2px);

}



.industry-selector {

  display: grid;

  gap: 14px;

}



.industry-selector__tabs {

  display: flex;

  flex-wrap: wrap;

  width: fit-content;

  max-width: 100%;

  justify-content: center;

  gap: 8px;

  margin-inline: auto;

  border: 1px solid rgba(47, 111, 163, .1);

  border-radius: 14px;

  padding: 7px;

  background: rgba(255, 255, 255, .72);

  box-shadow: 0 12px 30px rgba(23, 32, 51, .035);

}



.industry-selector__tab {

  display: inline-flex;

  min-height: 43px;

  align-items: center;

  justify-content: center;

  border: 1px solid transparent;

  border-radius: 10px;

  padding: 0 19px;

  color: #314059;

  background: #fff;

  box-shadow: 0 8px 18px rgba(23, 32, 51, .03);

  cursor: pointer;

  font: inherit;

  font-size: 14px;

  font-weight: 850;

  white-space: nowrap;

  transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease;

}



.industry-selector__tab:hover {

  border-color: rgba(47, 111, 163, .34);

  color: var(--blue);

  transform: translateY(-1px);

  box-shadow: 0 10px 24px rgba(47, 111, 163, .075);

}



.industry-selector__tab:focus-visible {

  outline: 3px solid rgba(47, 111, 163, .24);

  outline-offset: 2px;

}



.industry-selector__tab[aria-selected="true"] {

  border-color: rgba(47, 111, 163, .88);

  color: #fff;

  background: var(--blue);

  box-shadow:
    0 15px 32px rgba(47, 111, 163, .27),
    inset 0 0 0 1px rgba(255, 255, 255, .16);

}



.industry-selector__panels {

  min-width: 0;

}



.industry-panel {

  display: grid;

  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);

  gap: 34px;

  min-width: 0;

  min-height: 406px;

  align-items: center;

  border: 1px solid rgba(47, 111, 163, .14);

  border-radius: 8px;

  padding: 28px;

  background: #fff;

  box-shadow: 0 16px 42px rgba(23, 32, 51, .055);

}



.industry-panel.is-active {

  animation: industry-panel-in .22s ease both;

}



.industry-panel[hidden] {

  display: none;

}



@keyframes industry-panel-in {

  from {

    opacity: .78;

    transform: translateY(6px);

  }



  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.industry-panel__copy {

  min-width: 0;

  align-self: center;

  padding: 2px 0;

}



.industry-panel h3 {

  max-width: 560px;

  margin: 0 0 12px;

  color: #172033;

  font-size: 34px;

  line-height: 1.12;

}



.industry-panel p {

  max-width: 530px;

  margin: 0;

  color: #5d6a80;

  font-size: 17px;

  line-height: 1.58;

}



.industry-panel__benefits {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 13px 18px;

  margin: 18px 0 0;

  padding: 0;

  list-style: none;

}



.industry-panel__benefits li {

  position: relative;

  display: block;

  min-width: 0;

  padding-left: 30px;

  color: #26364e;

  font-size: 14.5px;

  font-weight: 780;

  line-height: 1.42;

}



.industry-panel__benefits li::before {

  content: "";

  position: absolute;

  top: 2px;

  left: 0;

  width: 18px;

  height: 18px;

  border-radius: 999px;

  background: var(--blue);

  box-shadow: 0 0 0 3px rgba(47, 111, 163, .1);

}



.industry-panel__benefits li::after {

  content: "";

  position: absolute;

  top: 6px;

  left: 6px;

  width: 4px;

  height: 8px;

  border: solid #fff;

  border-width: 0 2px 2px 0;

  transform: rotate(45deg);

}



.industry-panel__visual {

  position: relative;

  min-width: 0;

}



.industry-panel__visual::before {

  content: "";

  position: absolute;

  inset: 12% -4% 6%;

  border-radius: 999px;

  background: rgba(47, 111, 163, .075);

  filter: blur(46px);

  pointer-events: none;

}



.industry-browser {

  position: relative;

  z-index: 1;

  overflow: hidden;

  width: 100%;

  margin-inline: auto;

  border: 1px solid rgba(47, 111, 163, .1);

  border-radius: 8px;

  padding: 7px;

  background: #fff;

  box-shadow: 0 16px 36px rgba(23, 32, 51, .07);

}



.industry-signal {

  position: absolute;

  top: 68px;

  right: 18px;

  z-index: 3;

  width: 218px;

  border: 1px solid rgba(47, 111, 163, .16);

  border-radius: 14px;

  padding: 12px;

  color: #1d2b42;

  background: rgba(255, 255, 255, .92);

  box-shadow: 0 18px 38px rgba(23, 32, 51, .12);

  backdrop-filter: blur(14px);

}



.industry-signal::before {

  content: "";

  position: absolute;

  inset: 8px auto 8px -1px;

  width: 3px;

  border-radius: 999px;

  background: var(--blue);

  opacity: .72;

}



.industry-signal__status {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: #607087;

  font-size: 11px;

  font-weight: 850;

  letter-spacing: .04em;

  line-height: 1;

  text-transform: uppercase;

}



.industry-signal__status span {

  width: 8px;

  height: 8px;

  border-radius: 999px;

  background: var(--blue);

  box-shadow: 0 0 0 5px rgba(47, 111, 163, .12);

  animation: industry-signal-pulse 2.8s ease-in-out infinite;

}



.industry-signal strong {

  display: block;

  margin-top: 9px;

  color: #172033;

  font-size: 13.5px;

  font-weight: 850;

  line-height: 1.25;

}



.industry-signal__route {

  display: flex;

  align-items: center;

  gap: 6px;

  margin-top: 11px;

}



.industry-signal__route span {

  display: inline-flex;

  min-height: 23px;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(47, 111, 163, .12);

  border-radius: 8px;

  padding: 0 7px;

  color: #2d5f8e;

  background: rgba(47, 111, 163, .075);

  font-size: 11px;

  font-weight: 820;

  line-height: 1;

}



.industry-signal__route i {

  display: block;

  flex: 1 1 12px;

  height: 1px;

  min-width: 10px;

  background: rgba(47, 111, 163, .3);

}



@keyframes industry-signal-pulse {

  0%,

  100% {

    box-shadow: 0 0 0 5px rgba(47, 111, 163, .1);

  }



  50% {

    box-shadow: 0 0 0 8px rgba(47, 111, 163, .04);

  }

}



.industry-browser__bar {

  display: flex;

  min-height: 34px;

  align-items: center;

  gap: 7px;

  padding: 0 8px 10px;

  color: #536176;

  font-size: 12px;

  font-weight: 850;

}



.industry-browser__bar span {

  width: 9px;

  height: 9px;

  border-radius: 999px;

  background: #c9d6e5;

}



.industry-browser__bar strong {

  margin-left: 8px;

  color: #314059;

  font-size: 12px;

}



.industry-browser img {

  display: block;

  width: 100%;

  aspect-ratio: 16 / 9;

  border-radius: 7px;

  object-fit: cover;

  object-position: left top;

  background: #fff;

}



.package-section {
  background: #fff;
}


.package-section__head {

  max-width: 820px;

  margin: 0 auto var(--section-head-gap);

  text-align: center;

}



.package-section__head h2 {

  margin: 0 0 12px;

  color: #172033;

  font-size: 38px;

  line-height: 1.14;

}



.package-section__head p {
  max-width: 980px;
  margin: 0 auto;
  color: #5d6a80;
  font-size: 17px;
  line-height: 1.6;
  white-space: nowrap;
}

.package-section__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(47, 111, 163, .14);
  border-radius: 8px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 32, 51, .045);
}

.package-section__compare {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(47, 111, 163, .22);
  border-radius: 8px;
  padding: 0 16px;
  color: #24344d;
  background: #fff;
  box-shadow: none;
  font-size: 14px;
  font-weight: 850;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.package-section__compare i {
  color: var(--blue);
  font-size: 17px;
}

.package-section__compare:hover {
  border-color: rgba(47, 111, 163, .38);
  color: var(--blue);
  box-shadow: 0 8px 18px rgba(23, 32, 51, .055);
  transform: translateY(-1px);
}

.package-section__billing {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-left: auto;
}

.package-section__periods {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(47, 111, 163, .18);
  border-radius: 8px;
  padding: 3px;
  background: #fff;
  box-shadow: none;
}

.package-section__periods button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  color: #516278;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.package-section__periods button:hover {
  color: var(--blue);
  background: rgba(47, 111, 163, .07);
}

.package-section__periods button.is-active {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(47, 111, 163, .16);
}

.package-section__yearly-note {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(217, 119, 6, .2);
  border-radius: 8px;
  padding: 7px 10px;
  color: #8a4a05;
  background: #fff7ed;
  box-shadow: 0 10px 22px rgba(217, 119, 6, .08);
  font-size: 11.5px;
  line-height: 1.25;
}

.package-section__yearly-note[hidden] {
  display: none;
}

.package-section__yearly-note strong {
  color: #c2410c;
  font-size: 12px;
  font-weight: 950;
}

.package-section__yearly-note span {
  color: #9a5b12;
  font-weight: 750;
}

.package-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  align-items: stretch;
}

.package-plan-card {
  position: relative;
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(32, 48, 72, .095);
  border-radius: 8px;
  padding: 24px 22px 21px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 32, 51, .055);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.package-plan-card:hover {
  border-color: rgba(47, 111, 163, .22);
  box-shadow: 0 20px 48px rgba(23, 32, 51, .075);
  transform: translateY(-2px);
}

.package-plan-card--featured {
  border-color: rgba(34, 197, 94, .5);
  box-shadow: 0 16px 38px rgba(22, 163, 74, .075);
}

.package-plan-card__badge {
  position: absolute;
  top: -20px;
  right: 20px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(34, 197, 94, .28);
  border-radius: 8px;
  padding: 0 14px;
  color: #147447;
  background: #fff;
  box-shadow: 0 16px 36px rgba(22, 163, 74, .18);
  font-size: 11px;
  font-weight: 900;
}

.package-plan-card__badge::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .12);
  content: "";
}

.package-plan-card__top {
  min-height: 58px;
}

.package-plan-card--free .package-plan-card__top {
  padding-right: 0;
}

.package-plan-card__copy {
  min-width: 0;
}

.package-plan-card h3 {
  margin: 0 0 8px;
  color: #172033;
  font-size: 24px;
  line-height: 1.18;
}

.package-plan-card p {
  margin: 0;
  color: #667389;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
  white-space: nowrap;
}

.package-plan-card__price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 45px;
  margin-top: 18px;
  color: #7a8799;
  transition: opacity .18s ease, transform .18s ease;
}

.package-plan-card.is-price-changing .package-plan-card__price {
  opacity: .25;
  transform: translateY(4px);
}

.package-plan-card__price strong {
  color: #172033;
  font-size: 48px;
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
}

.package-plan-card__price span {
  padding-bottom: 5px;
  color: #7d899b;
  font-size: 12.5px;
  font-weight: 800;
}

.package-plan-card__lifetime {
  position: absolute;
  top: -20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  border: 1px solid rgba(217, 119, 6, .28);
  border-radius: 8px;
  padding: 0 14px;
  color: #b45309;
  background: #fff;
  box-shadow: 0 16px 36px rgba(217, 119, 6, .18);
  font-size: 11px;
  font-weight: 900;
}

.package-plan-card__lifetime::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, .12);
  content: "";
}

.package-plan-card__features {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.package-plan-card__features li {
  display: flex;

  gap: 9px;

  align-items: flex-start;

  color: #2c3b53;

  font-size: 13.5px;

  font-weight: 780;
  line-height: 1.4;
}

.package-plan-card__features--primary {
  margin-top: 16px;
}

.package-plan-card__features--primary li {
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(47, 111, 163, .055);
  border-radius: 8px;
  padding: 7px 9px;
  background: #fcfdff;
  color: #1f314a;
  font-weight: 860;
}

.package-plan-card__features i {
  display: inline-flex;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: #6aa5cf;
  font-size: 14px;
  box-shadow: 0 0 0 3px rgba(106, 165, 207, .12);
}

.package-plan-card__details {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 20px;
}

.package-plan-card__details span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #43546d;
  font-size: 13px;
  font-weight: 760;
}

.package-feature-label {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.package-info-button {
  display: inline-flex;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 111, 163, .15);
  border-radius: 8px;
  padding: 0;
  color: #6f94b4;
  background: #fff;
  cursor: pointer;
  transition: color .16s ease, border-color .16s ease, background .16s ease, transform .16s ease;
}

.package-info-button:hover,
.package-info-button:focus-visible {
  border-color: rgba(47, 111, 163, .34);
  color: var(--blue);
  background: rgba(47, 111, 163, .055);
  transform: translateY(-1px);
}

.package-plan-card__details i {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 111, 163, .12);
  border-radius: 7px;
  color: var(--blue);
  background: rgba(47, 111, 163, .055);
  font-size: 14px;
}

.package-plan-card__features .package-info-button i,
.package-plan-card__details .package-info-button i {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: currentColor;
  background: transparent;
  box-shadow: none;
  font-size: 12.5px;
  line-height: 1;
}

body.is-package-modal-open {
  overflow: hidden;
}

.package-info-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 22px;
}

.package-info-modal[hidden] {
  display: none;
}

.package-info-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 27, 43, .42);
  backdrop-filter: blur(9px);
  opacity: 0;
  transition: opacity .2s ease;
}

.package-info-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 760px);
  max-height: min(82vh, 760px);
  flex-direction: column;
  border: 1px solid rgba(32, 48, 72, .1);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(23, 32, 51, .22);
  opacity: 0;
  transform: translateY(10px) scale(.985);
  transition: opacity .2s ease, transform .2s ease;
}

.package-info-modal__dialog.is-compact {
  width: min(100%, 480px);
}

.package-info-modal.is-open .package-info-modal__overlay,
.package-info-modal.is-open .package-info-modal__dialog {
  opacity: 1;
}

.package-info-modal.is-open .package-info-modal__dialog {
  transform: translateY(0) scale(1);
}

.package-info-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(32, 48, 72, .08);
  border-radius: 8px;
  color: #52647c;
  background: #f8fbfe;
  cursor: pointer;
  transition: color .16s ease, border-color .16s ease, background .16s ease;
}

.package-info-modal__close:hover,
.package-info-modal__close:focus-visible {
  border-color: rgba(47, 111, 163, .22);
  color: var(--blue);
  background: rgba(47, 111, 163, .055);
}

.package-info-modal__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-info-modal h3 {
  margin: 0;
  padding-right: 42px;
  color: #172033;
  font-size: 24px;
  line-height: 1.18;
}

.package-info-modal__body {
  min-height: 0;
  margin-top: 16px;
  overflow-y: auto;
  padding-right: 4px;
}

.package-info-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.package-info-modal__category {
  border: 1px solid rgba(47, 111, 163, .095);
  border-radius: 8px;
  padding: 14px;
  background: #fbfdff;
}

.package-info-modal__category h4 {
  margin: 0 0 10px;
  color: #1d2d44;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.package-info-modal__category ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-info-modal__category li {
  position: relative;
  padding-left: 14px;
  color: #52647c;
  font-size: 12.5px;
  font-weight: 690;
  line-height: 1.42;
}

.package-info-modal__category li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(47, 111, 163, .56);
  content: "";
}

.package-info-modal__plain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-info-modal__plain-list li {
  position: relative;
  min-width: 0;
  padding-left: 15px;
  color: #52647c;
  font-size: 12.8px;
  font-weight: 700;
  line-height: 1.45;
}

.package-info-modal__plain-list li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(47, 111, 163, .58);
  content: "";
}

.package-info-modal__description {
  margin-top: 14px;
  border: 1px solid rgba(47, 111, 163, .1);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(47, 111, 163, .04);
}

.package-info-modal__body p {
  margin: 0;
  color: #52647c;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.package-info-modal__action {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 9px 20px rgba(47, 111, 163, .13);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.package-info-modal__action:hover,
.package-info-modal__action:focus-visible {
  background: #265f8f;
  box-shadow: 0 12px 25px rgba(47, 111, 163, .18);
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .package-info-modal {
    align-items: end;
    padding: 14px;
  }

  .package-info-modal__dialog {
    width: 100%;
    max-height: calc(100svh - 28px);
    padding: 24px 20px 20px;
  }

  .package-info-modal h3 {
    font-size: 21px;
  }

  .package-info-modal__grid {
    grid-template-columns: 1fr;
  }

  .package-info-modal__plain-list {
    grid-template-columns: 1fr;
  }
}

.package-plan-card__cta {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 9px 20px rgba(47, 111, 163, .13);
  font-size: 14px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.package-plan-card__cta:hover {
  color: #fff;
  background: #265f8f;
  box-shadow: 0 12px 25px rgba(47, 111, 163, .18);
  transform: translateY(-1px);
}

.package-section__footnote {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  text-align: center;
}

.package-section__footnote p {
  max-width: 980px;
  margin: 0;
  margin-inline: auto;
  color: #8a96a8;
  font-size: 12.3px;
  font-weight: 700;
  line-height: 1.76;
}

.home-tools {
  background: var(--soft);
}

.home-tools__head,
.home-blog__head {
  max-width: 780px;
  margin: 0 auto var(--section-head-gap);
  text-align: center;
}

.home-tools__head h2,
.home-blog__head h2 {
  margin: 10px 0 10px;
  color: #172033;
  font-size: 38px;
  line-height: 1.14;
}

.home-tools__head p,
.home-blog__head p {
  margin: 0 auto;
  color: #5d6a80;
  font-size: 17px;
  line-height: 1.6;
}

.home-tools__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-tool-card {
  position: relative;
  display: grid;
  min-height: 214px;
  align-content: start;
  border: 1px solid rgba(32, 48, 72, .09);
  border-radius: 8px;
  padding: 22px;
  color: #172033;
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 32, 51, .045);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-tool-card:hover {
  border-color: rgba(47, 111, 163, .22);
  box-shadow: 0 22px 52px rgba(23, 32, 51, .075);
  transform: translateY(-3px);
}

.home-tool-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 111, 163, .12);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(47, 111, 163, .055);
  font-size: 22px;
}

.home-tool-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid rgba(47, 111, 163, .12);
  border-radius: 8px;
  padding: 5px 8px;
  color: #62738a;
  background: #fbfdff;
  font-size: 11px;
  font-weight: 850;
}

.home-tool-card h3 {
  margin: 18px 0 8px;
  color: #172033;
  font-size: 20px;
  line-height: 1.25;
}

.home-tool-card p {
  margin: 0;
  color: #5c6a7f;
  font-size: 14px;
  font-weight: 640;
  line-height: 1.6;
}

.home-tool-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.home-tool-card__link i {
  font-size: 16px;
  transition: transform .18s ease;
}

.home-tool-card:hover .home-tool-card__link i {
  transform: translateX(3px);
}

.home-onboarding {
  background: var(--soft);
}

.home-onboarding__head {
  max-width: 860px;
  margin: 0 auto var(--section-head-gap);
  text-align: center;
}

.home-onboarding__head h2 {
  margin: 0;
  color: #172033;
  font-size: 38px;
  line-height: 1.16;
}

.home-onboarding__head p {
  max-width: 680px;
  margin: 10px auto 0;
  color: #5d6a80;
  font-size: 17px;
  line-height: 1.55;
}

.home-onboarding__panel {
  display: grid;
  grid-template-columns: minmax(240px, .25fr) minmax(280px, .27fr) minmax(500px, .48fr);
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(32, 48, 72, .09);
  border-radius: 8px;
  padding: 30px;
  background: linear-gradient(180deg, #fff 0%, #f8fbfe 100%);
  box-shadow: 0 18px 48px rgba(23, 32, 51, .055);
}

.home-onboarding__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 8px 0;
}

.home-onboarding__intro {
  display: grid;
  gap: 12px;
  max-width: 330px;
}

.home-onboarding__intro h3 {
  max-width: 486px;
  margin: 0;
  color: #172033;
  font-size: 32px;
  line-height: 1.12;
}

.home-onboarding__intro p {
  margin: 0;
  color: #5d6a80;
  font-size: 17px;
  line-height: 1.55;
}

.home-onboarding__actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.home-onboarding__link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(47, 111, 163, .17);
  font-size: 14px;
  font-weight: 900;
}

.home-onboarding__link:hover {
  color: #fff;
  background: #265f8f;
  box-shadow: 0 14px 28px rgba(47, 111, 163, .2);
  transform: translateY(-1px);
}

.home-onboarding__experience {
  display: contents;
}

.home-onboarding__timeline {
  position: relative;
  display: grid;
  gap: 7px;
  align-content: center;
  align-self: center;
  min-width: 0;
}

.home-onboarding__timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 39px;
  width: 1px;
  background: rgba(47, 111, 163, .16);
}

.home-onboarding-step {
  position: relative;
  display: grid;
  grid-template-columns: 28px 32px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 9px;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}

.home-onboarding-step:hover,
.home-onboarding-step:focus-visible,
.home-onboarding-step.is-active {
  border-color: rgba(47, 111, 163, .18);
  background: #fff;
  box-shadow: 0 14px 30px rgba(23, 32, 51, .055);
  transform: translateX(2px);
}

.home-onboarding-step.is-active {
  border-color: rgba(47, 111, 163, .24);
  padding-block: 10px;
  box-shadow: 0 16px 34px rgba(23, 32, 51, .07);
  transform: none;
}

.home-onboarding-step:focus-visible {
  outline: 2px solid rgba(47, 111, 163, .2);
  outline-offset: 2px;
}

.home-onboarding-step__number {
  display: inline-flex;
  min-width: 28px;
  justify-content: center;
  color: #6f7e94;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .02em;
  transition: color .22s ease, transform .22s ease;
}

.home-onboarding-step__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 111, 163, .14);
  border-radius: 8px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 8px 18px rgba(23, 32, 51, .04);
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.home-onboarding-step__icon i {
  font-size: 16px;
}

.home-onboarding-step__body {
  display: grid;
  min-width: 0;
}

.home-onboarding-step__body strong {
  overflow: hidden;
  color: #172033;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-onboarding-step em {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 111, 163, .12);
  border-radius: 8px;
  padding: 0 8px;
  color: var(--blue);
  background: rgba(47, 111, 163, .055);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
  transition: color .22s ease, background .22s ease, border-color .22s ease;
}

.home-onboarding-step:hover .home-onboarding-step__number,
.home-onboarding-step:focus-visible .home-onboarding-step__number,
.home-onboarding-step.is-active .home-onboarding-step__number {
  color: var(--blue);
  transform: scale(1.14);
}

.home-onboarding-step:hover .home-onboarding-step__icon,
.home-onboarding-step:focus-visible .home-onboarding-step__icon,
.home-onboarding-step.is-active .home-onboarding-step__icon {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(47, 111, 163, .15);
  transform: translateY(-1px);
}

.home-onboarding-step:hover em,
.home-onboarding-step:focus-visible em,
.home-onboarding-step.is-active em {
  border-color: rgba(47, 111, 163, .2);
  background: rgba(47, 111, 163, .08);
}

.home-onboarding__preview {
  position: relative;
  align-self: center;
  min-width: 0;
}

.home-onboarding-device {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(32, 48, 72, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(23, 32, 51, .11);
}

.home-onboarding-device__bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(32, 48, 72, .08);
  padding: 0 12px;
  background: #fff;
}

.home-onboarding-device__bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(47, 111, 163, .18);
}

.home-onboarding-device__bar strong {
  margin-left: 4px;
  color: #6f7e94;
  font-size: 11px;
  font-weight: 900;
}

.home-onboarding-device__stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9.35;
  background: #f6f9fc;
}

.home-onboarding-preview {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.982);
  transition: opacity .22s ease, transform .22s ease;
}

.home-onboarding-preview.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-onboarding-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.16);
  transform-origin: center center;
}

.home-onboarding-preview--register img {
  object-position: 68% 50%;
  transform: scale(1.2);
}

.home-onboarding-preview--company img,
.home-onboarding-preview--business img {
  object-position: 50% 50%;
  transform: scale(1.18);
}

.home-onboarding-preview--categories img,
.home-onboarding-preview--accounts img {
  object-position: 50% 52%;
  transform: scale(1.2);
}

.home-onboarding-preview--dashboard img {
  object-position: 50% 45%;
  transform: scale(1.13);
}

.home-onboarding-preview figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  padding: 7px 9px;
  color: #fff;
  background: rgba(23, 32, 51, .74);
  box-shadow: 0 10px 22px rgba(23, 32, 51, .12);
  font-size: 12px;
  font-weight: 900;
}

.home-onboarding-preview figcaption span {
  color: #d9eefe;
}

.home-faq {
  background: #fff;
}

.home-faq__panel {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  border: 1px solid rgba(32, 48, 72, .08);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(23, 32, 51, .055);
}

.home-faq__head,
.faq-page__hero {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.home-faq__head {
  margin-bottom: var(--section-head-gap);
}

.home-faq__head h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: 0;
}

.faq-page__hero h1 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.home-faq__head p,
.faq-page__hero p {
  margin: 0;
  color: #5f6f84;
  font-size: 17px;
  line-height: 1.65;
}

.home-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.faq-card {
  border: 1px solid rgba(32, 48, 72, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 32, 51, .04);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.faq-card:hover {
  border-color: rgba(47, 111, 163, .2);
  box-shadow: 0 18px 42px rgba(23, 32, 51, .065);
  transform: translateY(-2px);
}

.faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 18px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

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

.faq-card summary span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.faq-card small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.faq-card strong {
  color: var(--ink);
  font-size: inherit;
}

.faq-card summary i {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(47, 111, 163, .13);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(47, 111, 163, .05);
  font-size: 17px;
  transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease;
}

.faq-card[open] summary i {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
  transform: rotate(45deg);
}

.faq-card p {
  margin: 0;
  padding: 0 18px 18px;
  color: #5f6f84;
  font-size: 14.5px;
  line-height: 1.7;
}

.home-faq__cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.faq-page {
  background: var(--soft);
}

.faq-page__hero {
  margin-bottom: 34px;
}

.faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 620px;
  min-height: 56px;
  margin: 26px auto 0;
  border: 1px solid rgba(32, 48, 72, .09);
  border-radius: 8px;
  padding: 0 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(23, 32, 51, .06);
}

.faq-search i {
  color: var(--blue);
  font-size: 22px;
}

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

.faq-search input::placeholder {
  color: #8b98aa;
}

.faq-category-grid {
  display: grid;
  gap: 16px;
}

.faq-category {
  border: 1px solid rgba(32, 48, 72, .08);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 32, 51, .045);
}

.faq-category__head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 14px;
}

.faq-category__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(47, 111, 163, .12);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(47, 111, 163, .055);
  font-size: 22px;
}

.faq-category h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.faq-category p {
  margin: 0;
  color: #65758a;
  font-size: 14px;
  line-height: 1.55;
}

.faq-category__count {
  border: 1px solid rgba(47, 111, 163, .12);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--blue);
  background: rgba(47, 111, 163, .045);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.faq-category__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-card--category {
  box-shadow: 0 10px 24px rgba(23, 32, 51, .032);
}

.faq-card--category summary {
  padding: 15px;
  font-size: 15px;
}

.faq-card--category p {
  padding: 0 15px 15px;
  font-size: 14px;
}

.faq-empty-state {
  max-width: 560px;
  margin: 24px auto 0;
  border: 1px solid rgba(32, 48, 72, .08);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 32, 51, .045);
}

.faq-empty-state i {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(47, 111, 163, .06);
  font-size: 23px;
}

.faq-empty-state strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.faq-empty-state p {
  margin: 8px 0 0;
  color: #65758a;
  font-size: 14px;
  line-height: 1.65;
}

.legal-page,
.legal-detail-page {
  background: var(--soft);
}

.legal-page__hero {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.legal-page__hero h1 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-page__hero p {
  margin: 0 auto;
  color: #5f6f84;
  font-size: 17px;
  line-height: 1.65;
}

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

.legal-doc-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 22px;
  min-height: 100%;
  border: 1px solid rgba(32, 48, 72, .08);
  border-radius: 8px;
  padding: 18px;
  color: inherit;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 32, 51, .045);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.legal-doc-card:hover {
  border-color: rgba(47, 111, 163, .2);
  box-shadow: 0 18px 42px rgba(23, 32, 51, .065);
  transform: translateY(-2px);
}

.legal-doc-card__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(47, 111, 163, .12);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(47, 111, 163, .055);
  font-size: 22px;
}

.legal-doc-card__body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.legal-doc-card strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.legal-doc-card span span {
  color: #65758a;
  font-size: 14px;
  line-height: 1.6;
}

.legal-doc-card em {
  grid-column: 2;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.legal-detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.legal-detail-nav,
.legal-document {
  border: 1px solid rgba(32, 48, 72, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 32, 51, .045);
}

.legal-detail-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 5px;
  padding: 16px;
}

.legal-detail-nav strong {
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.legal-detail-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 10px;
  color: #607188;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  transition: color .16s ease, background .16s ease;
}

.legal-detail-nav a:hover,
.legal-detail-nav a.is-active {
  color: var(--blue);
  background: rgba(47, 111, 163, .06);
}

.legal-detail-nav__back {
  color: var(--ink) !important;
  background: rgba(23, 32, 51, .04);
}

.legal-document {
  padding: clamp(24px, 4vw, 42px);
}

.legal-document h1 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.1;
}

.legal-document__lead {
  max-width: 840px;
  margin: 0 0 24px;
  color: #5f6f84;
  font-size: 17px;
  line-height: 1.65;
}

.legal-document__content {
  display: grid;
  gap: 14px;
  color: #3f4c60;
}

.legal-document__content p,
.legal-document__content li {
  margin: 0;
  font-size: 15px;
  line-height: 1.82;
}

.legal-document__content h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.legal-document__content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-document__content li {
  position: relative;
  padding-left: 18px;
}

.legal-document__content li::before {
  position: absolute;
  top: .78em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8fc0ff;
  content: "";
}

@media (max-width: 900px) {
  .home-faq__grid,
  .faq-category__items,
  .legal-doc-grid {
    grid-template-columns: 1fr;
  }

  .legal-detail-layout {
    grid-template-columns: 1fr;
  }

  .legal-detail-nav {
    position: static;
  }

  .faq-category__head {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .faq-category__count {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .faq-page__hero h1,
  .home-faq__head h2 {
    font-size: 32px;
  }

  .faq-search {
    min-height: 52px;
    padding-inline: 14px;
  }

  .faq-card summary {
    gap: 12px;
    padding: 16px;
    font-size: 15.5px;
  }

  .faq-card p {
    padding: 0 16px 16px;
  }

  .faq-category {
    padding: 16px;
  }

  .faq-category__head {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .faq-category__icon {
    width: 42px;
    height: 42px;
  }
}

.home-blog {
  background: var(--soft);
}

.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(32, 48, 72, .085);
  border-radius: 8px;
  overflow: hidden;
  color: #172033;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 32, 51, .045);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-blog-card:hover {
  border-color: rgba(47, 111, 163, .22);
  box-shadow: 0 20px 46px rgba(23, 32, 51, .07);
  transform: translateY(-2px);
}

.home-blog-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  height: clamp(96px, 7.5vw, 118px);
  background: #eef4f9;
}

.home-blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .32s ease;
}

.home-blog-card:hover .home-blog-card__media img {
  transform: scale(1.055);
}

.home-blog-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 8px;
  padding: 5px 7px;
  color: #172033;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 7px 16px rgba(23, 32, 51, .07);
  font-size: 9.5px;
  font-weight: 900;
}

.home-blog-card__body {
  display: grid;
  gap: 11px;
  padding: 17px;
}

.home-blog-card__body strong {
  display: -webkit-box;
  min-height: 46px;
  overflow: hidden;
  color: #172033;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-blog-card__body small {
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  color: #667389;
  font-size: 13px;
  font-weight: 660;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-blog-card__meta {
  color: #a1acbb;
  font-size: 12.5px;
  font-weight: 800;
}

.home-blog-card__meta i {
  padding-inline: 6px;
  color: #c4ccd8;
  font-style: normal;
}

.home-blog-card__body em {
  width: fit-content;
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
  transition: transform .18s ease, color .18s ease;
}

.home-blog-card:hover .home-blog-card__body em {
  color: #265f8f;
  transform: translateX(3px);
}

.home-blog__cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.module-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;

}



.module-strip__group {

  padding: 28px;

  border: 1px solid var(--line);

  border-radius: 8px;

  background: #fff;

}



.module-strip__group div {

  display: grid;

  gap: 10px;

  margin-top: 20px;

}



.module-strip__group a {

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 10px 12px;

  border-radius: 8px;

  color: #314059;

  background: #f6f9fd;

  font-weight: 800;

}



.module-strip__group a i {

  color: var(--blue);

  font-size: 21px;

}



.zigzag-section {

  display: grid;

  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);

  gap: 58px;

  align-items: center;

  padding: 54px 0;

}



.zigzag-section + .zigzag-section {

  border-top: 1px solid var(--line);

}



.zigzag-section--reverse .zigzag-section__copy {

  order: 2;

}



.zigzag-section__media img {

  width: 100%;

  aspect-ratio: 16 / 10;

  object-fit: cover;

  object-position: top left;

  border: 1px solid var(--line);

  border-radius: 8px;

  box-shadow: var(--shadow);

}



.check-list {

  display: grid;

  gap: 12px;

  margin: 24px 0 0;

  padding: 0;

  list-style: none;

}



.check-list li {

  display: flex;

  align-items: flex-start;

  gap: 10px;

  color: #2d3c52;

  font-weight: 750;

}



.check-list i {

  flex: 0 0 auto;

  color: var(--green);

  font-size: 22px;

}



.split-content,

.contact-layout {

  display: grid;

  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);

  gap: 56px;

  align-items: start;

}



.insight-panel--dark {

  color: #fff;

  background: #11213a;

  border-color: #11213a;

}



.insight-panel--dark .eyebrow {

  color: #8fc0ff;

}



.insight-panel--dark h2,

.insight-panel--dark .check-list li {

  color: #fff;

}



.insight-panel--dark .check-list i {

  color: #ffbdc9;

}



.workflow-steps {

  display: grid;

  gap: 14px;

}



.workflow-step {

  display: grid;

  grid-template-columns: 66px 1fr;

  gap: 16px;

  align-items: center;

}



.workflow-step span {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 52px;

  height: 52px;

  border-radius: 8px;

  color: var(--blue);

  background: #eaf2ff;

  font-size: 20px;

  font-weight: 800;

}



.workflow-step p {

  margin: 0;

  color: #324258;

  font-weight: 750;

}



.outcome-grid {

  grid-template-columns: repeat(2, minmax(0, 1fr));

}



.outcome-card {

  display: flex;

  align-items: center;

  gap: 12px;

  min-height: 82px;

  padding: 18px;

  color: #2d3c52;

  font-weight: 800;

}



.outcome-card i {

  color: var(--green);

  font-size: 25px;

}



.related-grid {

  grid-template-columns: repeat(3, minmax(0, 1fr));

}



.sector-grid--large {

  grid-template-columns: repeat(2, minmax(0, 1fr));

}



.sector-card {

  min-height: 230px;

  display: flex;

  flex-direction: column;

}



.sector-card__keyword {

  align-self: flex-start;

  margin-bottom: 12px;

  padding: 5px 8px;

  border-radius: 8px;

  color: #255d88;

  background: #eef6fb;

  font-size: 12px;

  font-weight: 800;

}



.sector-directory {

  display: grid;

  gap: 54px;

}



.sector-directory__group {

  padding-bottom: 54px;

  border-bottom: 1px solid var(--line);

}



.sector-directory__group:last-child {

  padding-bottom: 0;

  border-bottom: 0;

}



.keyword-cloud {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  align-content: flex-start;

}



.keyword-cloud a {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  min-height: 42px;

  padding: 9px 12px;

  border: 1px solid #cfe0f6;

  border-radius: 8px;

  color: #2f6fa3;

  background: #fff;

  font-weight: 800;

}



.keyword-cloud i {

  color: var(--blue);

  font-size: 18px;

}



.comparison-matrix {

  overflow: hidden;

  border: 1px solid var(--line);

  border-radius: 8px;

  background: #fff;

}



.comparison-matrix__head,

.comparison-matrix > div:not(.comparison-matrix__head) {

  display: grid;

  grid-template-columns: .7fr 1fr 1fr;

}



.comparison-matrix__head {

  color: #fff;

  background: #11213a;

  font-weight: 800;

}



.comparison-matrix span {

  padding: 18px;

  border-left: 1px solid var(--line);

}



.comparison-matrix__head span {

  border-color: rgba(255, 255, 255, .14);

}



.comparison-matrix span:first-child {

  border-left: 0;

  font-weight: 800;

}



.comparison-matrix > div:not(.comparison-matrix__head) {

  border-top: 1px solid var(--line);

}



.pricing-grid {

  align-items: stretch;

}



.pricing-card {

  display: flex;

  flex-direction: column;

  min-height: 500px;

}



.pricing-card--highlight {

  border-color: #8bb8ff;

  box-shadow: var(--shadow);

}



.pricing-card strong {

  display: block;

  margin-bottom: 12px;

  color: var(--blue);

  font-size: 29px;

  line-height: 1.1;

}



.pricing-card ul {

  display: grid;

  gap: 12px;

  margin: 20px 0 26px;

  padding: 0;

  list-style: none;

}



.pricing-card li {

  display: flex;

  gap: 10px;

  color: #33445d;

  font-weight: 750;

}



.pricing-card li i {

  color: var(--green);

  font-size: 21px;

}



.pricing-card .btn {

  margin-top: auto;

}



.deep-faq {

  max-width: 880px;

  margin-inline: auto;

}



.deep-faq details {

  border: 1px solid var(--line);

  border-radius: 8px;

  background: #fff;

}



.deep-faq details + details {

  margin-top: 12px;

}



.deep-faq summary {

  cursor: pointer;

  padding: 20px 22px;

  color: var(--ink);

  font-size: 18px;

  font-weight: 800;

}



.deep-faq p {

  margin: 0;

  padding: 0 22px 22px;

  color: var(--muted);

}



.benefit-list {

  display: grid;

  gap: 12px;

}



.benefit-item {

  display: flex;

  align-items: flex-start;

  gap: 12px;

  padding: 18px;

  border: 1px solid var(--line);

  border-radius: 8px;

  background: #fff;

}



.benefit-item i {

  flex: 0 0 auto;

  color: var(--green);

  font-size: 24px;

}



.benefit-item p {

  margin: 0;

  color: #324258;

  font-weight: 750;

}



.section--cta {

  padding-top: var(--section-y);

}



.cta-band {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 28px;

  padding: 44px;

  border-radius: 8px;

  color: #fff;

  background: #11213a;

}



.cta-band .eyebrow {

  color: #8fc0ff;

}



.cta-band h2 {

  max-width: 790px;

  margin-bottom: 12px;

}



.cta-band p {

  max-width: 700px;

  margin-bottom: 0;

  color: #c7d4e5;

}



.section--cta {
  background: #fff;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 46px;
  background: linear-gradient(135deg, #102033 0%, #173957 100%);
  box-shadow: 0 24px 70px rgba(23, 32, 51, .16);
}

.cta-band p {
  color: #d3deea;
  font-size: 16px;
  line-height: 1.7;
}

.cta-band .btn {
  min-height: 48px;
  border-color: #fff;
  padding: 0 22px;
  color: #102033;
  background: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .16);
  white-space: nowrap;
}

.cta-band .btn:hover {
  color: #102033;
  background: #f4f8fc;
  transform: translateY(-2px);
}

.home-conversion-cta {
  background: #fff;
}

.home-conversion {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 36px 40px;
  color: #fff;
  background: #11213a;
  box-shadow: 0 24px 70px rgba(23, 32, 51, .16);
}

.home-conversion__grid {
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(390px, .42fr);
  gap: 34px;
  align-items: center;
}

.home-conversion__copy h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 2.8vw, 38px);
  line-height: 1.14;
  letter-spacing: 0;
}

.home-conversion__copy p {
  max-width: 620px;
  margin: 14px 0 0;
  color: #c7d4e5;
  font-size: 16px;
  line-height: 1.68;
}

.home-conversion__list {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.home-conversion__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c7d4e5;
  font-size: 14.5px;
  font-weight: 800;
}

.home-conversion__list li::before {
  display: block;
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8fc0ff;
  content: "";
}

.home-conversion__side {
  display: grid;
  gap: 14px;
  align-self: stretch;
  align-content: center;
}

.home-conversion-signup {
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 8px;
  padding: 32px;
  color: #172033;
  background: #fff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .14);
  transition: transform .18s ease, box-shadow .18s ease;
}

.home-conversion-signup:hover {
  box-shadow: 0 28px 54px rgba(0, 0, 0, .16);
  transform: translateY(-2px);
}

.home-conversion-signup h3 {
  margin: 0;
  color: #172033;
  font-size: 27px;
  line-height: 1.18;
}

.home-conversion-signup p {
  margin: 8px 0 18px;
  color: #667389;
  font-size: 14px;
  font-weight: 700;
}

.home-conversion-signup__button {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(47, 111, 163, .2);
  font-size: 15.5px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.home-conversion-signup__button:hover {
  color: #fff;
  background: #265f8f;
  box-shadow: 0 18px 36px rgba(47, 111, 163, .24);
  transform: scale(1.018);
}

.home-conversion-signup__trust {
  margin: 13px 0 0;
  color: #7d8a9d;
  font-size: 12.5px;
  font-weight: 800;
  text-align: center;
}

.home-conversion-signup__trust span {
  padding-inline: 7px;
  color: #b2bdca;
}

@media (max-width: 1024px) {
  .home-conversion__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-conversion__side {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .home-conversion {
    padding: 28px;
  }

  .home-conversion__copy h2 {
    font-size: 32px;
  }

  .home-conversion__copy p {
    font-size: 15.5px;
  }

  .home-conversion__list {
    margin-top: 18px;
  }

  .home-conversion-signup {
    padding: 20px;
  }
}

@media (max-width: 430px) {
  .home-conversion {
    padding: 24px;
  }

  .home-conversion-signup__trust {
    font-size: 12px;
  }
}

.scroll-top-button {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  display: inline-flex;
  width: 52px;
  height: 52px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 111, 163, .24);
  border-radius: 8px;
  padding: 0;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(47, 111, 163, .22);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease, background .18s ease, box-shadow .18s ease;
  visibility: hidden;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.scroll-top-button:hover {
  background: #265f8f;
  box-shadow: 0 14px 28px rgba(23, 32, 51, .07);
  transform: translateY(-2px);
}

.scroll-top-button:focus-visible {
  outline: 3px solid rgba(47, 111, 163, .24);
  outline-offset: 2px;
}

.scroll-top-button i {
  font-size: 20px;
}

@media (max-width: 720px) {
  .scroll-top-button {
    width: 48px;
    height: 48px;
    min-height: 48px;
  }
}

.contact-form {
  display: grid;

  gap: 16px;

  padding: 24px;

}



.contact-form label {

  display: grid;

  gap: 8px;

  color: #2e3e56;

  font-weight: 800;

}



.contact-form input,

.contact-form select,

.contact-form textarea {

  width: 100%;

  border: 1px solid #cfd9e6;

  border-radius: 8px;

  padding: 12px 13px;

  color: var(--ink);

  background: #fff;

}



.contact-info {

  padding: 30px;

}



.not-found {

  min-height: 420px;

  display: grid;

  place-items: start;

  align-content: center;

}



.site-footer {

  color: #cbd6e5;

  background: #0d1524;

}



.footer-grid {

  display: grid;

  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));

  gap: 34px;

  padding: 56px 0 34px;

}



.brand--footer {

  color: #fff;

}



.footer-grid p {

  max-width: 380px;

  margin-top: 14px;

  color: #aebbd0;

}



.footer-grid strong {

  display: block;

  margin-bottom: 12px;

  color: #fff;

}



.footer-grid a:not(.brand) {

  display: block;

  margin: 8px 0;

  color: #cbd6e5;

  font-weight: 650;

}



.footer-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  padding: 20px 0;

  border-top: 1px solid rgba(255, 255, 255, .12);

  color: #9ba8ba;

  font-size: 14px;

}



.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  grid-template-columns: minmax(0, 28fr) repeat(4, minmax(0, 18fr));
  gap: clamp(22px, 2.4vw, 34px);
  padding: var(--section-y) 0 30px;
}

.footer-brand {
  display: grid;
  align-content: start;
}

.footer-grid p {
  max-width: 320px;
  line-height: 1.7;
}

.footer-grid strong {
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: flex;
  width: fit-content;
  align-items: center;
  transition: color .16s ease, transform .16s ease;
}

.footer-grid a:not(.brand):hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-soon {
  display: inline-flex;
  margin-left: 6px;
  border: 1px solid rgba(47, 111, 163, .24);
  border-radius: 999px;
  padding: 2px 6px;
  color: #9ec8ef;
  background: rgba(47, 111, 163, .1);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

.footer-grid--expanded {
  grid-template-columns: minmax(0, 28fr) repeat(4, minmax(0, 18fr));
  gap: clamp(22px, 2.4vw, 34px);
}

.footer-grid--expanded > * {
  min-width: 0;
}

.brand--footer .brand__word span:first-child,
.brand--footer .brand__tagline {
  color: #fff;
}

.brand--footer .brand__word span:last-child {
  color: #2f6fa3;
}

.footer-column {
  display: grid;
  align-content: start;
}

.footer-social-block {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-block strong {
  margin-bottom: 0;
  font-size: 12px;
  text-transform: none;
}

.footer-store-list {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.footer-grid .footer-store-list a {
  display: inline-flex !important;
  width: 152px !important;
  height: 39px;
  min-height: 39px;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 0 10px;
  color: #cbd6e5;
  background: rgba(255, 255, 255, .04);
  font-size: 13px;
  font-weight: 780 !important;
}

.footer-grid .footer-store-list a:hover {
  color: #fff;
  border-color: rgba(47, 111, 163, .45);
  transform: translateY(-1px) !important;
}

.footer-store-list i {
  display: inline-grid;
  flex: 0 0 16px;
  width: 16px;
  place-items: center;
  font-size: 16px;
}

.footer-store-list span {
  font-size: 13px;
  font-weight: 780;
  line-height: 1;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.footer-social a {
  display: inline-flex !important;
  width: 36px !important;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  color: #cbd6e5;
  background: rgba(255, 255, 255, .04);
}

.footer-social a:hover {
  color: #fff;
  border-color: rgba(47, 111, 163, .45);
  transform: translateY(-1px) !important;
}

.footer-social i {
  font-size: 17px;
}

.footer-bottom {
  justify-content: space-between;
  color: #9ba8ba;
}

.footer-copyright {
  margin: 0;
  color: #9ba8ba;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.6;
  text-align: center;
}

.footer-brand-name,
.footer-copyright a {
  display: inline-flex;
  align-items: baseline;
}

.footer-brand-name span:first-child,
.footer-copyright a span:first-child {
  color: #fff;
}

.footer-brand-name span:last-child {
  color: #2f6fa3;
}

.footer-copyright a span:last-child {
  color: #3498db;
}

.footer-copyright a:hover {
  transform: none;
}

.footer-scroll-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9ba8ba;
  font-size: 13px;
  font-weight: 750;
  transition: color .2s ease, transform .2s ease;
}

.footer-scroll-top:hover {
  color: #8fc0ff;
  transform: translateY(-2px);
}

@media (max-width: 1120px) {
  .footer-grid--expanded {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid--expanded .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .home-onboarding__copy {
    border-right: 0;
    border-bottom: 1px solid rgba(32, 48, 72, .08);
    padding: 0 0 22px;
  }

  .home-onboarding__experience {
    display: grid;
    grid-template-columns: minmax(280px, .38fr) minmax(500px, .62fr);
    gap: 30px;
    align-items: center;
    min-width: 0;
  }

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

@media (max-width: 900px) {
  .home-onboarding__experience {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-onboarding-device {
    max-width: 580px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .home-tools__head,
  .home-blog__head {
    margin-bottom: 22px;
  }

  .home-tools__head h2,
  .home-blog__head h2 {
    font-size: 30px;
  }

  .home-tools__grid,
  .home-blog__grid {
    grid-template-columns: 1fr;
  }

  .home-onboarding__panel,
  .home-faq__panel {
    padding: 22px;
  }

  .home-onboarding__head {
    margin-bottom: 20px;
  }

  .home-onboarding__head h2,
  .home-onboarding__intro h3 {
    font-size: 30px;
  }

  .home-onboarding__head p,
  .home-onboarding__intro p {
    font-size: 15.5px;
  }

  .home-onboarding__experience {
    gap: 16px;
  }

  .home-onboarding__timeline::before {
    left: 35px;
  }

  .home-onboarding-step {
    grid-template-columns: 28px 34px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
  }

  .home-onboarding-step__number {
    min-width: 28px;
  }

  .home-onboarding-step__icon {
    width: 34px;
    height: 34px;
  }

  .home-onboarding-step em {
    width: fit-content;
    min-height: 26px;
  }

  .home-onboarding-device__stage {
    aspect-ratio: 16 / 11;
  }

  .home-onboarding-preview figcaption {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .home-blog-card__body {
    padding: 15px;
  }

}

@media (max-width: 1280px) {
  .industry-panel {

    grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);

    gap: 32px;

    padding: 26px;

  }



  .industry-panel h3 {

    font-size: 32px;

  }

}



@media (max-width: 1080px) {

  .desktop-nav,

  .nav-actions .btn {

    display: none;

  }



  .icon-button {

    display: inline-flex;

  }



  .nav-shell {

    height: 68px;

  }



  .split-hero__grid,

  .split-hero--home .split-hero__grid,

  .zigzag-section,

  .split-content,

  .contact-layout {

    grid-template-columns: 1fr;

  }



  .split-hero--home .visual-panel,

  .split-hero--home .hero-showcase {

    max-width: 640px;

    margin-inline: auto;

  }



  .split-hero--home .hero-actions {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }



  .zigzag-section--reverse .zigzag-section__copy {

    order: 0;

  }



  .platform-grid,

  .feature-grid,

  .sector-grid,

  .pricing-grid,

  .package-section__grid,

  .related-grid,

  .solution-grid,

  .module-strip,

  .mega-menu--sectors {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }



  .module-overview__grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

    max-width: 820px;

  }



  .module-overview__head h2 {

    font-size: 27px;

  }



  .module-card,

  .module-card:nth-child(4),

  .module-card:nth-child(5) {

    grid-column: auto;

  }



  .industries-section__head {

    margin-bottom: 28px;

  }



  .industries-section__head p {

    max-width: none;

  }



  .industries-section__link {

    min-height: 0;

  }



  .industry-selector__tabs {

    width: auto;

    max-width: none;

    flex-wrap: nowrap;

    justify-content: flex-start;

    overflow-x: auto;

    margin-inline: 0;

    border: 0;

    border-radius: 0;

    padding: 0 0 7px;

    background: transparent;

    scrollbar-width: thin;

  }



  .industry-selector__tab {

    flex: 0 0 auto;

  }



  .industry-panel {

    grid-template-columns: 1fr;

    min-height: 0;

    gap: 24px;

  }



  .industry-panel__visual {

    width: 100%;

    max-width: 760px;

  }



  .industry-browser img {

    max-height: 380px;

  }



  .industry-browser {

    width: 100%;

  }



  .industry-signal {

    right: 14px;

  }



  .interface-gallery__slide {

    grid-template-columns: 1fr;

  }



  .interface-gallery__head h2 {

    font-size: 32px;

  }



  .interface-gallery__copy {

    max-width: 720px;

    padding: 2px;

  }



  .interface-gallery__arrow--prev {

    left: 10px;

  }



  .interface-gallery__arrow--next {

    right: 10px;

  }



  .interface-gallery__thumbs {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }

}



@media (max-width: 860px) {

  .module-overview__grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

}



@media (max-width: 720px) {

  .container {

    width: min(100% - 28px, 1180px);

  }



  .top-strip__inner {

    flex-direction: column;

    align-items: flex-start;

    padding: 9px 0;

  }



  h1 {

    font-size: 38px;

  }



  .brand img {

    width: 34px;

    height: 34px;

  }



  .brand__word {

    font-size: 19px;

  }



  .brand__tagline {

    font-size: 10px;

  }



  h2 {

    font-size: 30px;

  }



  .split-hero {

    padding: 50px 0 58px;

  }



  .split-hero--home {

    padding: 42px 0 54px;

  }



  .split-hero__copy p {

    font-size: 17px;

  }



  .split-hero--home h1 {

    margin-bottom: 18px;

    font-size: 30px;

    line-height: 1.13;

  }



  .split-hero--home h1 .hero-title__line {

    white-space: normal;

  }



  .split-hero--home .split-hero__copy p {

    margin-bottom: 18px;

    font-size: 15px;

    line-height: 1.55;

  }



  .split-hero--home .hero-actions {

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 8px;

    margin-bottom: 12px;

  }



  .split-hero--home .hero-actions .btn {

    min-height: 58px;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

    padding: 8px 7px;

  }



  .split-hero--home .hero-actions .btn i {

    font-size: 21px;

  }



  .split-hero--home .hero-actions .btn__copy {

    align-items: center;

    text-align: center;

  }



  .split-hero--home .hero-actions .btn__copy span {

    font-size: 9px;

  }



  .split-hero--home .hero-actions .btn__copy strong {

    font-size: 11px;

  }



  .hero-actions .btn {

    width: 100%;

  }



  .hero-kpi-grid--left {

    gap: 7px;

  }



  .hero-kpi-grid--left .hero-kpi {

    min-height: 38px;

    padding: 0 8px;

    font-size: 10px;

    line-height: 1.2;

  }



  .hero-proof {

    align-items: center;

    gap: 10px;

    margin-top: 18px;

  }



  .hero-proof__avatar {

    width: 27px;

    height: 27px;

    margin-left: -7px;

  }



  .hero-proof__avatar--count {

    width: 38px;

    font-size: 10px;

  }



  .hero-proof__label {

    font-size: 11px;

  }



  .hero-frame {

    padding: 10px;

  }



  .hero-frame__bar {

    height: 32px;

    margin-bottom: 8px;

  }



  .hero-frame__bar strong {

    font-size: 10px;

  }



  .hero-slide__label {

    top: 10px;

    left: 36%;

    right: auto;

    padding: 6px 8px;

    font-size: 11px;

  }



  .hero-slide__kpis {

    inset: 0;

  }



  .hero-slide__kpi {

    min-width: 132px;

    gap: 7px;

    padding: 8px;

  }



  .hero-slide__kpi--primary {

    top: 52px;

    right: -10px;

    transform: rotate(3deg);

  }



  .hero-slide__kpi--secondary {

    left: -6px;

    bottom: 24px;

    transform: rotate(-3deg);

  }



  .hero-slide__kpi i {

    width: 28px;

    height: 28px;

    font-size: 15px;

  }



  .hero-slide__kpi small {

    font-size: 9px;

  }



  .hero-slide__kpi strong {

    font-size: 12px;

  }



  .hero-slider__dots {

    bottom: 13px;

    left: 12px;

  }



  .visual-panel {

    padding: 10px;

  }



  .floating-stat {

    position: static;

    width: auto;

    margin-top: 10px;

  }



  .metric-row {

    display: grid;

    grid-template-columns: 1fr;

  }



  .section {

    padding: 62px 0;

  }

  .section--cta {

    padding-top: 34px;

  }



  .module-overview__head {

    margin-bottom: 24px;

    text-align: center;

  }



  .module-overview__head h2 {

    font-size: 14px;

  }



  .module-overview__head p {

    font-size: 15.5px;

  }



  .platform-grid,

  .feature-grid,

  .sector-grid,

  .sector-grid--large,

  .pricing-grid,

  .package-section__grid,

  .related-grid,

  .solution-grid,

  .module-strip,

  .outcome-grid,

  .mega-menu--sectors {

    grid-template-columns: 1fr;

  }



  .module-overview__grid {

    grid-template-columns: 1fr;

  }



  .module-card {

    min-height: 0;

    padding: 22px;

  }



  .module-card p {

    min-height: 0;

  }



  .industries-section__head {

    margin-bottom: 24px;

  }



  .industries-section__head h2 {

    font-size: 30px;

  }



  .industries-section__head p {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .package-section__head p {
    white-space: normal;
  }

  .package-section__toolbar {
    align-items: center;
  }
}

@media (max-width: 860px) {
  .package-section__toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .package-section__compare {
    width: 100%;
  }

  .package-section__billing {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .package-section__periods {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .package-section__periods button {
    min-height: 38px;
    padding: 0 8px;
    font-size: 12px;
  }

  .package-section__yearly-note {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .package-section__head {

    margin-bottom: 24px;

  }



  .package-section__head h2 {

    font-size: 30px;

  }



  .package-section__head p {
    font-size: 17px;
    line-height: 1.55;
  }

  .package-plan-card {
    min-height: 0;
    padding: 22px;
  }

  .package-plan-card__top {
    min-height: 58px;
  }


  .industries-section__link {

    margin-inline: auto;

  }



  .industry-selector {

    gap: 14px;

  }



  .industry-selector__tabs {

    gap: 14px;

    margin-inline: -14px;

    border-radius: 12px;

    padding: 0 14px 8px;

    box-shadow: none;

  }



  .industry-selector__tab {

    min-height: 38px;

    border-radius: 8px;

    padding: 0 13px;

    font-size: 13px;

  }

  .industry-selector__tab[aria-selected="true"] {

    border-color: var(--blue);

    box-shadow: 0 12px 26px rgba(47, 111, 163, .22);

  }



  .industry-panel {

    gap: 20px;

    padding: 22px;

  }



  .industry-panel h3 {

    font-size: 27px;

  }



  .industry-panel p {

    font-size: 15.5px;

    line-height: 1.55;

  }



  .industry-panel__benefits {

    grid-template-columns: 1fr;

    gap: 11px;

    margin-top: 18px;

  }



  .industry-browser {

    padding: 10px;

  }



  .industry-browser__bar {

    min-height: 30px;

    padding: 0 6px 8px;

  }



  .industry-browser__bar strong {

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

  }



  .industry-browser img {

    max-height: none;

  }



  .industry-signal {

    top: 42px;

    right: 14px;

    width: min(226px, calc(100% - 28px));

    padding: 11px;

    border-radius: 12px;

  }



  .industry-signal strong {

    font-size: 12.5px;

  }



  .industry-signal__route {

    gap: 5px;

  }



  .industry-signal__route span {

    min-height: 22px;

    padding: 0 6px;

    font-size: 10.5px;

  }



  .interface-gallery__head {

    margin-bottom: 24px;

  }



  .interface-gallery__head h2 {

    font-size: 18px;

  }



  .interface-gallery__head p {

    font-size: 15.5px;

  }



  .interface-gallery__frame {

    border-radius: 8px;

  }



  .interface-gallery__bar {

    min-height: 38px;

    padding: 0 12px;

  }



  .interface-gallery__bar strong {

    font-size: 12px;

  }



  .interface-gallery__slide {

    gap: 16px;

    padding: 14px;

  }



  .interface-gallery__copy h3 {

    font-size: 25px;

  }



  .interface-gallery__copy p {

    font-size: 14.5px;

  }



  .interface-gallery__points {

    gap: 8px;

    margin-top: 16px;

  }



  .interface-gallery__media img {

    max-height: none;

  }



  .interface-gallery__arrow {

    display: none;

  }



  .interface-gallery__thumbs {

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;

  }



  .keyword-cloud {

    display: grid;

    grid-template-columns: 1fr;

  }



  .zigzag-section {

    gap: 28px;

    padding: 36px 0;

  }



  .workflow-step {

    grid-template-columns: 1fr;

  }



  .comparison-matrix__head,

  .comparison-matrix > div:not(.comparison-matrix__head) {

    grid-template-columns: 1fr;

  }



  .comparison-matrix span {

    border-left: 0;

    border-top: 1px solid var(--line);

  }



  .comparison-matrix span:first-child {

    border-top: 0;

  }



  .cta-band {

    flex-direction: column;

    align-items: flex-start;

  }

  .footer-bottom {

    flex-direction: column;

    align-items: center;

  }



  .cta-band {

    padding: 28px;

  }



  .footer-grid {

    grid-template-columns: 1fr;

  }

}

@media (max-width: 720px) {
  .footer-grid.footer-grid--expanded {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid--expanded .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid a:not(.brand) {
    max-width: 100%;
    flex-wrap: wrap;
    row-gap: 5px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {

  .module-overview__head h2 {

    font-size: 12px;

  }



  .interface-gallery__head h2 {

    font-size: 16px;

  }

}

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

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

  .module-experience__stage,
  .module-experience-panel {
    min-height: 0;
  }

  .module-product-shell {
    min-height: 560px;
  }

  .module-product-shell__body {
    min-height: 522px;
  }
}

@media (max-width: 720px) {
  .module-overview__head h2 {
    font-size: clamp(28px, 8vw, 34px);
    white-space: normal;
  }

  .module-overview__head p {
    max-width: 100%;
  }

  .module-experience {
    gap: 16px;
  }

  .module-experience__nav {
    grid-template-columns: 1fr;
  }

  .module-experience-card {
    min-height: 86px;
    padding: 13px;
  }

  .module-experience-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media";
    padding: 16px;
  }

  .module-experience-panel__copy h3 {
    font-size: 24px;
  }

  .module-product-shell {
    min-height: 470px;
  }

  .module-product-shell__body {
    min-height: 432px;
  }

  .module-product-sidebar {
    flex-basis: 80%;
    padding: 14px;
  }

  .module-product-brand {
    gap: 10px;
    margin-bottom: 16px;
  }

  .module-product-brand > span {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .module-product-brand strong {
    font-size: 17px;
  }

  .module-product-group__title {
    min-height: 42px;
    font-size: 14px;
  }

  .module-product-menu {
    padding-left: 10px;
  }

  .module-product-menu__item {
    min-height: 37px;
    font-size: 13.5px;
  }
}

@media (max-width: 420px) {
  .module-product-shell {
    min-height: 455px;
  }

  .module-product-shell__body {
    min-height: 417px;
  }

  .module-product-content {
    flex-basis: 20%;
  }
}

