@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

:root {
  --ink: #171640;
  --muted: #696781;
  --purple: #6734e8;
  --purple-dark: #4720bc;
  --violet: #9d38eb;
  --pink: #ec4ed4;
  --lavender: #f7f3ff;
  --line: #eae5f7;
  --green: #11a87b;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(72, 42, 150, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.section-padding {
  padding: 98px 0;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Manrope", "DM Sans", sans-serif;
}
h2 {
  margin-bottom: 15px;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(235, 229, 248, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
}
.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.brand b {
  color: #6d5d97;
  font-weight: 700;
}
.brand-mark {
  position: relative;
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  transform: rotate(30deg);
}
.brand-mark i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 2px #f5efff;
}
.brand-mark i:nth-child(1) {
  transform: translate(0, -8px);
}
.brand-mark i:nth-child(2) {
  transform: translate(7px, -3px);
}
.brand-mark i:nth-child(3) {
  transform: translate(4px, 6px);
}
.brand-mark i:nth-child(4) {
  transform: translate(-5px, 6px);
}
.brand-mark i:nth-child(5) {
  transform: translate(-8px, -3px);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}
.main-nav a,
.sign-in {
  color: #494761;
  font-size: 13px;
  font-weight: 700;
}
.main-nav a span {
  margin-left: 3px;
  color: var(--purple);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sign-in {
  color: var(--ink);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--purple), var(--pink));
  box-shadow: 0 10px 22px rgba(109, 48, 224, 0.25);
}
.button-small {
  min-height: 39px;
  padding: 0 15px;
  font-size: 12px;
}
.button-secondary {
  gap: 8px;
  border-color: #ddd4fc;
  color: var(--purple);
  background: #fff;
}
.button-secondary span {
  font-size: 22px;
  line-height: 0;
}
.mobile-menu-button {
  display: none;
  border: 0;
  background: none;
}

/* hero */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 36px;
  background:
    radial-gradient(
      circle at 76% 35%,
      rgba(212, 98, 255, 0.15),
      transparent 26%
    ),
    radial-gradient(
      circle at 54% 84%,
      rgba(102, 53, 235, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #fff 0%, #fdfbff 100%);
}
.hero-section:after {
  position: absolute;
  z-index: 0;
  right: -10%;
  bottom: -230px;
  width: 76%;
  height: 430px;
  border: 1px solid rgba(211, 146, 255, 0.28);
  border-radius: 46%;
  content: "";
  transform: rotate(-8deg);
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 34px;
}
.hero-copy {
  padding: 24px 0 0;
}
.hero-copy h1 {
  margin-bottom: 19px;
  font-size: clamp(44px, 4.45vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.065em;
}
.hero-copy h1 span {
  color: var(--purple);
}
.hero-description {
  max-width: 455px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
}
.security-note {
  display: flex;
  max-width: 385px;
  align-items: flex-start;
  gap: 8px;
  margin: 27px 0 20px;
  color: #827d94;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
}
.shield {
  color: var(--purple);
  font-size: 18px;
  line-height: 0.85;
}
.hero-mini-cards {
  display: grid;
  width: 282px;
  gap: 8px;
}
.hero-mini-cards article {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid #eae4f8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 5px 13px rgba(72, 42, 150, 0.06);
}
.mini-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 5px;
  font-size: 12px;
}
.mini-icon.purple {
  color: #8050eb;
  background: #eee7ff;
}
.mini-icon.amber {
  color: #e69511;
  background: #fff0d3;
}
.mini-icon.lilac {
  color: #a463ef;
  background: #f4e9ff;
}
.hero-mini-cards div {
  display: grid;
  gap: 1px;
}
.hero-mini-cards b {
  font-size: 10px;
}
.hero-mini-cards small {
  color: #8c869d;
  font-size: 8px;
}
.hero-mini-cards em {
  margin-left: auto;
  color: #6d6980;
  font-size: 8px;
  font-style: normal;
  white-space: nowrap;
}
.hero-mini-cards article:first-child em {
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 490px;
  padding: 10px 0 20px;
}
.dashboard-window {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 442px;
  grid-template-columns: 74px 1fr 126px;
  overflow: hidden;
  border: 1px solid #e8e3f5;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 26px 52px rgba(63, 31, 141, 0.18);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}
.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 14px 10px;
  border-right: 1px solid #eeebf6;
}
.dash-mini-brand {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 9px;
  color: #3b3854;
  font-size: 6px;
  font-weight: 800;
  white-space: nowrap;
}
.brand-mark.tiny {
  width: 11px;
  height: 11px;
}
.brand-mark.tiny i {
  width: 2px;
  height: 2px;
  box-shadow: none;
}
.brand-mark.tiny i:nth-child(1) {
  transform: translate(0, -4px);
}
.brand-mark.tiny i:nth-child(2) {
  transform: translate(3px, -1px);
}
.brand-mark.tiny i:nth-child(3) {
  transform: translate(2px, 3px);
}
.brand-mark.tiny i:nth-child(4) {
  transform: translate(-2px, 3px);
}
.brand-mark.tiny i:nth-child(5) {
  transform: translate(-3px, -1px);
}
.dashboard-sidebar a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 5px;
  border-radius: 4px;
  color: #8a8599;
  font-size: 7px;
}
.dashboard-sidebar a.active {
  color: var(--purple);
  background: #eee8ff;
}
.dashboard-main {
  min-width: 0;
}
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 41px;
  padding: 0 15px;
  border-bottom: 1px solid #eeeaf5;
}
.search-box {
  width: 47%;
  padding: 6px 10px;
  border-radius: 5px;
  color: #aaa5b4;
  background: #f6f4f9;
  font-size: 7px;
}
.dash-tools {
  display: flex;
  align-items: center;
  color: #6d687c;
  font-size: 8px;
}
.dash-tools img {
  width: 18px;
  height: 18px;
  margin-left: 4px;
  border-radius: 50%;
}
.dash-body {
  padding: 14px;
}
.dash-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.dash-heading small {
  color: #9791a4;
  font-size: 7px;
}
.dash-heading h3 {
  margin: 3px 0 12px;
  font-size: 11px;
}
.dash-heading button {
  border: 0;
  color: #8f899c;
  background: #f5f3f9;
  font-size: 8px;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.kpi-grid article,
.chart-card,
.donut-card,
.payroll-card {
  padding: 8px;
  border: 1px solid #eeebf5;
  border-radius: 6px;
}
.kpi-grid small {
  display: block;
  color: #878196;
  font-size: 6px;
}
.kpi-grid b {
  display: block;
  margin: 4px 0 3px;
  font-family: "Manrope";
  font-size: 15px;
}
.kpi-grid em,
.dash-chart-grid em {
  color: var(--green);
  font-size: 6px;
  font-style: normal;
}
.dash-chart-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 7px;
  margin-top: 8px;
}
.dash-chart-grid.lower {
  grid-template-columns: 1.2fr 1fr;
}
.chart-title {
  display: flex;
  justify-content: space-between;
  color: #817b91;
  font-size: 6px;
}
.chart-card > b,
.payroll-card > b {
  display: inline-block;
  margin-top: 7px;
  font-family: "Manrope";
  font-size: 14px;
}
.chart-card > em,
.payroll-card > em {
  margin-left: 3px;
}
.line-chart svg {
  display: block;
  width: 100%;
  height: 66px;
  margin-top: 2px;
  overflow: visible;
}
.line-chart span {
  display: block;
  color: #9791a4;
  font-size: 5px;
  text-align: center;
  white-space: nowrap;
}
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
}
.donut {
  display: grid;
  width: 73px;
  height: 73px;
  place-content: center;
  border: 9px solid #6950ed;
  border-top-color: #54b5f4;
  border-right-color: #b756f1;
  border-bottom-color: #51c7b6;
  border-radius: 50%;
  text-align: center;
}
.donut b {
  font-size: 9px;
}
.donut small {
  color: #918b9d;
  font-size: 5px;
}
.donut-card ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #756f83;
  font-size: 5px;
}
.donut-card li {
  display: flex;
  align-items: center;
  gap: 3px;
}
.donut-card li b {
  margin-left: auto;
}
.donut-card li i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.blue {
  background: #54b5f4;
}
.purple-dot {
  background: #6950ed;
}
.pink {
  background: #b756f1;
}
.teal {
  background: #51c7b6;
}
.payroll-card .bar-chart {
  margin-top: 7px;
}
.bar-chart {
  display: flex;
  height: 42px;
  align-items: flex-end;
  gap: 4px;
}
.bar-chart i {
  width: 8px;
  border-radius: 2px 2px 0 0;
  background: #8351ec;
}
.bar-chart i:nth-child(1) {
  height: 17px;
}
.bar-chart i:nth-child(2) {
  height: 25px;
}
.bar-chart i:nth-child(3) {
  height: 19px;
}
.bar-chart i:nth-child(4) {
  height: 35px;
}
.bar-chart i:nth-child(5) {
  height: 30px;
}
.bar-chart i:nth-child(6) {
  height: 40px;
}
.bar-chart i:nth-child(7) {
  height: 32px;
}
.small-line .line-chart svg {
  height: 41px;
}
.copilot-panel {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px 9px;
  border-left: 1px solid #eeebf5;
  background: #fcfbfe;
}
.copilot-heading {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
}
.copilot-panel p {
  margin: 0;
  padding: 6px;
  border-radius: 4px;
  color: #777186;
  background: #fff;
  box-shadow: 0 1px 4px rgba(51, 28, 110, 0.06);
  font-size: 6px;
  line-height: 1.45;
}
.copilot-panel .chat-bubble {
  padding: 7px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(135deg, #7040e7, #ae47ec);
  font-size: 6px;
  line-height: 1.4;
}
.copilot-panel button {
  padding: 6px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #7040e7;
  font-size: 6px;
}
.ask-input {
  margin-top: auto;
  padding: 6px;
  border: 1px solid #ece9f3;
  border-radius: 4px;
  color: #aaa5b4;
  background: #fff;
  font-size: 6px;
}
.ask-input b {
  float: right;
  color: #7c42e8;
}
.mesh {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(192, 101, 255, 0.3);
  border-radius: 50%;
}
.mesh-one {
  width: 280px;
  height: 170px;
  right: -50px;
  bottom: -22px;
  transform: rotate(24deg);
}
.mesh-two {
  width: 190px;
  height: 130px;
  left: -45px;
  bottom: -15px;
  transform: rotate(-20deg);
}

/* trusted logo strip */
.trusted-section {
  padding: 24px 0 25px;
  border-bottom: 1px solid #f0edf7;
  background: #fff;
}
.trusted-section p {
  margin: 0 0 18px;
  color: #9791a5;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 15px;
  color: #8375aa;
  font-family: "Manrope";
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

/* platform */
.platform-section {
  background: #fff;
}
.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}
.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}
.product-grid > article {
  min-height: 177px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.command-card {
  position: relative;
  grid-row: span 2;
  display: flex;
  min-height: 365px !important;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 21px;
  color: #fff;
  background:
    radial-gradient(
      circle at 48% 70%,
      rgba(255, 255, 255, 0.24),
      transparent 31%
    ),
    linear-gradient(145deg, #7240e9, #34147e 80%) !important;
}
.command-card h3,
.product-card h3,
.payroll-overview h3 {
  margin: 10px 0 6px;
  font-size: 15px;
  letter-spacing: -0.04em;
}
.command-card p,
.product-card p,
.payroll-overview p {
  margin-bottom: 0;
  font-size: 10px;
  line-height: 1.45;
}
.feature-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.15);
}
.command-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.command-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.11);
}
.command-card li > span {
  color: #fff;
  font-size: 13px;
}
.command-card li div {
  display: grid;
  gap: 2px;
}
.command-card li b {
  font-size: 8px;
}
.command-card li small {
  color: #ddd1ff;
  font-size: 7px;
}
.orb {
  position: absolute;
  top: 108px;
  right: 17px;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.2);
}
.orb:before,
.orb:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  content: "";
}
.orb:after {
  transform: rotate(58deg);
}
.orb i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #eaccff;
  box-shadow: 0 0 10px #fff;
}
.orb i:nth-child(1) {
  top: 10px;
  left: 46px;
}
.orb i:nth-child(2) {
  top: 37px;
  right: 4px;
}
.orb i:nth-child(3) {
  bottom: 7px;
  left: 57px;
}
.orb i:nth-child(4) {
  bottom: 24px;
  left: 8px;
}
.orb i:nth-child(5) {
  top: 43px;
  left: 47px;
  width: 11px;
  height: 11px;
  background: #fff;
}
.product-card,
.payroll-overview {
  padding: 16px;
}
.product-card p,
.payroll-overview p {
  color: #706b82;
}
.profile-row {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 15px;
}
.profile-row img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.profile-row div {
  display: grid;
  gap: 2px;
}
.profile-row b {
  font-size: 8px;
}
.profile-row small,
.profile-row em {
  color: #827c91;
  font-size: 6px;
  font-style: normal;
}
.profile-row em {
  color: #9674cf;
}
.avatar-stack {
  display: flex;
  align-items: center;
  margin-top: 14px;
}
.avatar-stack img {
  width: 18px;
  height: 18px;
  margin-left: -5px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.avatar-stack img:first-child {
  margin-left: 0;
}
.avatar-stack span {
  display: grid;
  width: 18px;
  height: 18px;
  margin-left: -4px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #8354e6;
  font-size: 6px;
}
.map-card {
  position: relative;
  overflow: hidden;
  height: 82px;
  margin-top: 10px;
  border-radius: 6px;
  background: linear-gradient(30deg, #f9ead7, #e9f1ed);
}
.map-lines {
  position: absolute;
  inset: -15px;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 12px,
      rgba(255, 255, 255, 0.8) 13px 15px
    ),
    repeating-linear-gradient(
      -35deg,
      transparent 0 16px,
      rgba(255, 255, 255, 0.8) 17px 19px
    );
}
.pin {
  position: absolute;
  z-index: 1;
  top: 19px;
  left: 22px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 6px solid #8351ec;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  color: #fff;
  background: #fff;
  font-size: 0;
}
.location-pill {
  position: absolute;
  z-index: 1;
  right: 8px;
  bottom: 9px;
  display: grid;
  gap: 2px;
  padding: 6px 8px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(83, 58, 127, 0.15);
}
.location-pill b {
  font-size: 7px;
}
.location-pill span {
  color: #6f6880;
  font-size: 6px;
}
.payroll-total {
  display: grid;
  gap: 3px;
  margin: 16px 0 9px;
}
.payroll-total span,
.compliance span {
  color: #817b90;
  font-size: 7px;
}
.payroll-total b {
  font-family: "Manrope";
  font-size: 18px;
}
.payroll-total em {
  color: var(--green);
  font-size: 6px;
  font-style: normal;
}
.compliance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid #edeaf4;
}
.compliance b {
  color: var(--green);
  font-size: 6px;
}
.mini-module {
  min-height: 155px !important;
  padding: 14px;
}
.mini-module > span {
  display: block;
  margin-bottom: 8px;
  font-family: "Manrope";
  font-size: 11px;
  font-weight: 800;
}
.mini-module p {
  min-height: 35px;
  margin-bottom: 11px;
  color: #777184;
  font-size: 8px;
  line-height: 1.4;
}
.mini-module b {
  display: block;
  margin-bottom: 3px;
  font-family: "Manrope";
  font-size: 12px;
}
.mini-module small {
  color: #777184;
  font-size: 7px;
}
.green-text {
  color: var(--green) !important;
}

/* copilot */
.copilot-section {
  overflow: hidden;
  background: linear-gradient(100deg, #fbf9ff, #f4efff);
}
.copilot-layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr;
  align-items: center;
  gap: 28px;
}
.copilot-layout > div > p:not(.eyebrow) {
  max-width: 370px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.copilot-chat {
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid #e6dffa;
  border-radius: 9px;
  background: #fff;
  box-shadow: var(--shadow);
}
.copilot-chat-head {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid #eeeaf7;
  color: #4d4960;
  font-size: 10px;
  font-weight: 700;
}
.prompt {
  width: 80%;
  margin: 12px 12px 10px auto;
  padding: 8px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(120deg, #7841eb, #aa45ed);
  font-size: 8px;
}
.chat-response {
  display: flex;
  gap: 8px;
  padding: 0 12px 11px;
}
.chat-response img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.chat-response p {
  margin: 0 0 6px !important;
  color: #514c62 !important;
  font-size: 8px !important;
  line-height: 1.45 !important;
}
.compact-table {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3px;
  padding: 6px;
  border-radius: 5px;
  background: #faf9fd;
  color: #777184;
  font-size: 6px;
}
.compact-table b {
  font-size: 6px;
}
.compact-table em {
  color: var(--green);
  font-size: 6px;
  font-style: normal;
}
.chat-response a {
  display: block;
  margin-top: 5px;
  color: var(--purple);
  font-size: 7px;
  font-weight: 700;
}
.chat-input {
  display: flex;
  justify-content: space-between;
  margin: 0 10px 10px;
  padding: 8px;
  border: 1px solid #e9e6f3;
  border-radius: 5px;
  color: #aaa5b3;
  font-size: 7px;
}
.chat-input b {
  color: var(--purple);
}
.network-visual {
  position: relative;
  height: 330px;
}
.network-visual:before,
.network-visual:after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(122, 72, 236, 0.22);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}
.network-visual:before {
  width: 250px;
  height: 250px;
}
.network-visual:after {
  width: 160px;
  height: 160px;
}
.network-lines {
  position: absolute;
  inset: 38px;
  background:
    linear-gradient(
      27deg,
      transparent 49.5%,
      rgba(122, 72, 236, 0.28) 50%,
      transparent 50.5%
    ),
    linear-gradient(
      -35deg,
      transparent 49.5%,
      rgba(122, 72, 236, 0.25) 50%,
      transparent 50.5%
    ),
    linear-gradient(
      74deg,
      transparent 49.5%,
      rgba(122, 72, 236, 0.18) 50%,
      transparent 50.5%
    );
}
.center-node {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 7px solid #cba3fc;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 32% 27%, #ce8dff, #6d2cda 62%);
  box-shadow:
    0 0 0 11px rgba(143, 74, 241, 0.12),
    0 10px 25px rgba(100, 48, 205, 0.28);
  transform: translate(-50%, -50%);
}
.node {
  position: absolute;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid #d4b8ff;
  border-radius: 50%;
  color: #7e47e0;
  background: #fff;
  box-shadow: 0 5px 12px rgba(100, 48, 205, 0.16);
  font-size: 14px;
  font-style: normal;
}
.n1 {
  top: 25px;
  left: 48%;
}
.n2 {
  top: 84px;
  right: 12%;
}
.n3 {
  bottom: 47px;
  right: 20%;
}
.n4 {
  bottom: 16px;
  left: 43%;
}
.n5 {
  bottom: 68px;
  left: 9%;
}
.n6 {
  top: 87px;
  left: 13%;
}
.copilot-benefits {
  display: grid;
  gap: 22px;
}
.copilot-benefits article {
  display: flex;
  gap: 11px;
}
.copilot-benefits > article > span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: var(--purple);
  background: #eee5ff;
  font-size: 14px;
}
.copilot-benefits h3 {
  margin: 0 0 4px;
  font-size: 13px;
  letter-spacing: -0.04em;
}
.copilot-benefits p {
  margin: 0 !important;
  color: var(--muted);
  font-size: 10px !important;
  line-height: 1.45 !important;
}

/* analytics */
.analytics-section {
  background: #fff;
}
.analytics-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 44px;
}
.analytics-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.analytics-copy ul {
  display: grid;
  gap: 11px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
  color: #665e78;
  font-size: 11px;
}
.analytics-copy li:before {
  margin-right: 8px;
  color: var(--purple);
  content: "⊙";
}
.analytics-board {
  display: grid;
  grid-template-columns: 27px 1fr;
  overflow: hidden;
  border: 1px solid #e8e2f6;
  border-radius: 11px;
  background: #fff;
  box-shadow: var(--shadow);
}
.analytics-board aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 15px;
  color: #b298f5;
  background: linear-gradient(#7041e9, #4e20bc);
}
.analytics-board aside span:first-child {
  color: #fff;
}
.analytics-inner {
  padding: 15px;
}
.analytics-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 9px;
}
.analytics-bar span {
  color: #8d879a;
  font-size: 7px;
}
.analytics-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.analytics-kpis article {
  padding: 8px;
  border: 1px solid #eeebf5;
  border-radius: 6px;
}
.analytics-kpis small {
  display: block;
  color: #817b8f;
  font-size: 6px;
}
.analytics-kpis b {
  display: inline-block;
  margin-top: 5px;
  font-family: "Manrope";
  font-size: 14px;
}
.analytics-kpis em {
  margin-left: 2px;
  color: var(--green);
  font-size: 6px;
  font-style: normal;
}
.analytics-charts {
  display: grid;
  grid-template-columns: 1fr 1fr 0.78fr;
  gap: 8px;
  margin: 9px 0;
}
.analytics-charts article {
  min-height: 116px;
  padding: 9px;
  border: 1px solid #eeebf5;
  border-radius: 6px;
  color: #777184;
  font-size: 7px;
}
.analytics-charts svg {
  width: 100%;
  height: 80px;
}
.analytics-charts article > b {
  display: block;
  margin: 15px 0 3px;
  color: var(--ink);
  font-family: "Manrope";
  font-size: 17px;
}
.analytics-charts em {
  color: var(--green);
  font-size: 6px;
  font-style: normal;
}
.purple-bars {
  height: 43px;
  margin-top: 6px;
}
.sentiment {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 9px;
  border-top: 1px solid #eeebf5;
  color: #787187;
  font-size: 7px;
}
.sentiment div {
  font-size: 10px;
}
.sentiment b {
  color: var(--ink);
  font-size: 11px;
}
.sentiment em {
  color: var(--green);
  font-size: 7px;
  font-style: normal;
}
.sentiment > i {
  width: 100px;
  height: 6px;
  margin-left: auto;
  border-radius: 10px;
  background: #e6e0ef;
  overflow: hidden;
}
.sentiment > i u {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: #23b889;
}

/* lifecycle + mobile */
.lifecycle-section {
  padding: 64px 0 80px;
  background: #fff;
}
.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 10px;
}
.lifecycle-grid article {
  min-height: 111px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.lifecycle-grid article > span {
  color: var(--purple);
  font-size: 25px;
}
.lifecycle-grid h3 {
  display: inline;
  margin: 0 0 0 7px;
  font-size: 13px;
}
.lifecycle-grid p {
  margin: 7px 0 0 33px;
  color: #776f85;
  font-size: 8px;
  line-height: 1.45;
}
.lifecycle-grid > b {
  position: relative;
  margin: 0 -7px;
  z-index: 1;
  color: #8a57ed;
  font-size: 19px;
}
.mobile-section {
  position: relative;
  overflow: hidden;
  padding: 65px 0 45px;
  color: #fff;
  background:
    radial-gradient(
      circle at 27% 70%,
      rgba(255, 255, 255, 0.22),
      transparent 25%
    ),
    radial-gradient(
      circle at 75% 0,
      rgba(255, 102, 230, 0.31),
      transparent 34%
    ),
    linear-gradient(115deg, #6a2bde, #bc46dd);
}
.mobile-section:after {
  position: absolute;
  right: -10%;
  bottom: -90px;
  width: 600px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  content: "";
  transform: rotate(-15deg);
}
.mobile-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 60px;
}
.phones {
  position: relative;
  height: 320px;
}
.phone {
  position: absolute;
  bottom: 0;
  width: 155px;
  height: 292px;
  padding: 22px 13px;
  border: 5px solid #17142a;
  border-radius: 23px;
  color: #312c44;
  background: #fff;
  box-shadow: 0 21px 40px rgba(25, 5, 79, 0.4);
}
.phone:before {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 48px;
  height: 6px;
  border-radius: 5px;
  background: #17142a;
  content: "";
  transform: translateX(-50%);
}
.phone-back {
  left: 80px;
  transform: rotate(-13deg);
}
.phone-front {
  z-index: 2;
  left: 200px;
  transform: rotate(8deg);
}
.phone p {
  margin: 14px 0 10px;
  font-size: 10px;
}
.phone small {
  color: #877d98;
  font-size: 7px;
}
.phone ul {
  display: grid;
  gap: 8px;
  margin: 10px 0;
  padding: 0;
  list-style: none;
  font-size: 7px;
}
.phone li {
  padding: 6px;
  border-radius: 4px;
  background: #f6f1ff;
}
.big-number {
  display: block;
  margin: 5px 0;
  color: var(--purple);
  font-family: "Manrope";
  font-size: 28px;
}
.phone-pay {
  display: grid;
  gap: 3px;
  margin-top: 27px;
  padding: 8px;
  border-radius: 6px;
  background: #f6f1ff;
}
.phone-pay b {
  color: var(--purple);
  font-size: 11px;
}
.mobile-copy .eyebrow {
  color: #f4d5ff;
}
.mobile-copy h2 {
  margin-bottom: 13px;
  font-size: 39px;
}
.mobile-copy > p:not(.eyebrow) {
  max-width: 370px;
  color: #f2e9ff;
  font-size: 13px;
  line-height: 1.6;
}
.mobile-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 21px 0;
  color: #fff;
  font-size: 10px;
}
.mobile-feature-list span:before {
  margin-right: 5px;
  color: #e7c6ff;
  content: "◈";
}
.store-buttons {
  display: flex;
  gap: 8px;
}
.store-buttons a {
  display: grid;
  gap: 1px;
  min-width: 125px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  color: #fff;
  background: #161221;
  font-size: 6px;
}
.store-buttons b {
  font-size: 11px;
}

/* trust, FAQ and footer */
.trust-section {
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.trust-grid span {
  color: var(--purple);
  font-size: 25px;
}
.trust-grid h3 {
  margin: 12px 0 5px;
  font-size: 14px;
}
.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.faq-cta-section {
  padding: 50px 0 60px;
  background: #fff;
}
.faq-cta-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  align-items: center;
}
.faq-area h2 {
  font-size: 29px;
}
.faq-list {
  border-top: 1px solid #ebe7f5;
}
.faq-item {
  border-bottom: 1px solid #ebe7f5;
}
.faq-item button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 13px 0;
  border: 0;
  color: #555064;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.faq-item button span {
  color: var(--purple);
  font-size: 16px;
}
.faq-item p {
  display: none;
  max-width: 480px;
  margin: 0 0 12px;
  color: #756f84;
  font-size: 10px;
  line-height: 1.55;
}
.faq-item.open p {
  display: block;
}
.cta-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  color: #fff;
  border-radius: 11px;
  background:
    radial-gradient(
      circle at 91% 87%,
      rgba(255, 255, 255, 0.19),
      transparent 30%
    ),
    linear-gradient(115deg, #5924c7, #ad43e4);
  box-shadow: 0 16px 32px rgba(87, 32, 187, 0.22);
}
.cta-card > p {
  margin-bottom: 8px;
  color: #e9d2ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.cta-card h2 {
  position: relative;
  z-index: 1;
  max-width: 400px;
  font-size: 32px;
}
.cta-card > span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 20px;
  color: #eee1ff;
  font-size: 11px;
}
.cta-card > div:not(.cta-orb) {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 9px;
}
.button-white {
  color: var(--purple);
  background: #fff;
}
.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.cta-orb {
  position: absolute;
  right: 3px;
  bottom: -21px;
  width: 195px;
  height: 195px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}
.cta-orb:before,
.cta-orb:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  content: "";
}
.cta-orb:after {
  transform: rotate(60deg);
}
.cta-orb i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e7c1ff;
  box-shadow: 0 0 10px #fff;
}
.cta-orb i:nth-child(1) {
  top: 20px;
  left: 92px;
}
.cta-orb i:nth-child(2) {
  right: 15px;
  top: 89px;
}
.cta-orb i:nth-child(3) {
  bottom: 15px;
  left: 82px;
}
.site-footer {
  padding: 42px 0 18px;
  border-top: 1px solid #ece8f6;
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 30px;
}
.footer-grid > div:first-child p {
  max-width: 205px;
  margin: 13px 0;
  color: #766f85;
  font-size: 9px;
  line-height: 1.5;
}
.footer-grid h3 {
  margin: 3px 0 12px;
  font-size: 10px;
}
.footer-grid div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 7px;
}
.footer-grid a,
.footer-grid span {
  color: #756e82;
  font-size: 8px;
  line-height: 1.4;
}
.socials {
  display: flex;
  gap: 7px;
}
.socials a {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid #dcd5ec;
  border-radius: 50%;
  color: var(--purple) !important;
  font-size: 8px !important;
  font-weight: 800;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 13px;
  border-top: 1px solid #f0edf6;
  color: #948ca1;
  font-size: 7px;
}
.footer-bottom div {
  display: flex;
  gap: 16px;
}
.footer-bottom a {
  color: #948ca1;
}

/* refined lifecycle and mobile-app presentation */
.lifecycle-section {
  padding: 22px 0 20px;
}

.lifecycle-section .section-heading {
  margin-bottom: 14px;
}

.lifecycle-section .eyebrow {
  margin-bottom: 0;
  color: #7040e8;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.lifecycle-section h2,
.trust-section h2 {
  display: none;
}

.lifecycle-grid {
  gap: 12px;
}

.lifecycle-grid article {
  min-height: 74px;
  padding: 13px 12px;
  border-color: #e8e0f8;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(74, 42, 145, 0.05);
}

.lifecycle-grid article > span {
  display: inline-block;
  margin-right: 7px;
  font-size: 22px;
  vertical-align: middle;
}

.lifecycle-grid h3 {
  margin: 0;
  font-size: 11px;
  vertical-align: middle;
}

.lifecycle-grid p {
  margin: 5px 0 0 31px;
  font-size: 8px;
  line-height: 1.4;
}

.lifecycle-grid > b {
  margin: 0 -10px;
  font-size: 17px;
}

.mobile-section {
  min-height: 243px;
  padding: 28px 0 20px;
  background:
    radial-gradient(
      circle at 12% 60%,
      rgba(255, 255, 255, 0.14),
      transparent 25%
    ),
    radial-gradient(
      circle at 88% 4%,
      rgba(255, 147, 239, 0.42),
      transparent 31%
    ),
    linear-gradient(110deg, #6726df 0%, #8d36e9 48%, #d944d7 100%);
}

.mobile-section::before {
  position: absolute;
  right: -8%;
  bottom: -115px;
  width: 470px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.mobile-section::after {
  right: 2%;
  bottom: -88px;
  width: 380px;
  height: 230px;
  transform: rotate(15deg);
}

.mobile-layout {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
}

.phones {
  width: 310px;
  height: 205px;
  margin: auto;
}

.phone {
  bottom: -9px;
  width: 103px;
  height: 198px;
  padding: 16px 8px;
  border-width: 4px;
  border-radius: 18px;
}

.phone::before {
  top: 5px;
  width: 34px;
  height: 5px;
}

.phone-back {
  left: 40px;
  transform: rotate(-12deg);
}

.phone-front {
  left: 144px;
}

.phone p {
  margin: 10px 0 8px;
  font-size: 7px;
  line-height: 1.35;
}

.phone small,
.phone ul {
  font-size: 5px;
}

.phone ul {
  gap: 5px;
  margin: 8px 0;
}

.phone li {
  padding: 5px;
}

.big-number {
  margin: 3px 0;
  font-size: 20px;
}

.phone-pay {
  gap: 2px;
  margin-top: 17px;
  padding: 6px;
}

.phone-pay b {
  font-size: 8px;
}

.mobile-copy .eyebrow {
  margin-bottom: 6px;
  font-size: 8px;
  letter-spacing: 0.09em;
}

.mobile-copy h2 {
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1.08;
}

.mobile-copy > p:not(.eyebrow) {
  max-width: 310px;
  margin-bottom: 12px;
  font-size: 9px;
  line-height: 1.55;
}

.mobile-feature-list {
  grid-template-columns: repeat(3, max-content);
  gap: 7px 12px;
  margin: 0 0 14px;
  font-size: 7px;
}

.mobile-feature-list span::before {
  margin-right: 4px;
}

.store-buttons {
  gap: 7px;
}

.store-buttons a {
  min-width: 96px;
  padding: 5px 8px;
  font-size: 5px;
}

.store-buttons b {
  font-size: 8px;
}

.trust-section {
  padding: 14px 0 45px;
}

.trust-section .section-heading {
  margin-bottom: 20px;
}

.trust-section .eyebrow {
  margin-bottom: 0;
  color: #7040e8;
  font-size: 12px;
  letter-spacing: -0.02em;
}

/* improved footer readability */
.site-footer {
  padding: 52px 0 22px;
}

.site-footer .brand {
  font-size: 18px;
}

.footer-grid {
  gap: 38px;
}

.footer-grid > div:first-child p {
  max-width: 245px;
  margin: 15px 0;
  font-size: 12px;
  line-height: 1.6;
}

.footer-grid h3 {
  margin-bottom: 15px;
  color: #30294a;
  font-size: 14px;
}

.footer-grid div:not(:first-child) {
  gap: 10px;
}

.footer-grid a,
.footer-grid span {
  font-size: 11px;
  line-height: 1.5;
}

.socials {
  gap: 9px;
}

.socials a {
  width: 24px;
  height: 24px;
  font-size: 10px !important;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 16px;
  font-size: 10px;
}

/* local SVG icon assets */
.brand img.brand-mark,
img.brand-mark {
  display: block;
  object-fit: contain;
  transform: none;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.main-nav a img,
.dash-heading button img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.button-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.security-note .shield {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

img.mini-icon {
  display: block;
  padding: 4px;
  object-fit: contain;
}

.dashboard-sidebar a img {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: 0.7;
}

.dashboard-sidebar a.active img {
  opacity: 1;
}

.dash-tools img {
  width: 18px;
  height: 18px;
  margin-left: 4px;
  border-radius: 50%;
}

img.feature-icon {
  display: block;
  padding: 6px;
  object-fit: contain;
}

.command-card li > img {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

img.pin {
  padding: 4px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  transform: none;
}

.center-node img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.node img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.copilot-benefits > article > img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  padding: 7px;
  border-radius: 8px;
  background: #eee5ff;
  object-fit: contain;
}

.analytics-board aside img {
  width: 13px;
  height: 13px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.lifecycle-grid article > img,
.trust-grid article > img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.lifecycle-grid article > img {
  vertical-align: middle;
}

.phone li {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone li img,
.mobile-feature-list img {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(28%) sepia(92%) saturate(2753%)
    hue-rotate(248deg) brightness(93%) contrast(91%);
}

.mobile-feature-list span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mobile-feature-list span::before {
  display: none;
}

.trust-grid article > img {
  display: block;
}

.socials a img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

/* =========================================================
   HERO + PARTNER STRIP — REFERENCE LAYOUT
   Keep this block at the end of style.css so these values
   override the earlier general section styles.
========================================================= */

.hero-section {
  min-height: 625px;
  padding: 39px 0 0;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 86% 12%,
      rgba(194, 111, 255, 0.13),
      transparent 25%
    ),
    radial-gradient(
      circle at 59% 87%,
      rgba(102, 53, 235, 0.12),
      transparent 35%
    ),
    linear-gradient(180deg, #ffffff 0%, #fcfaff 100%);
}

/* Soft connected-data pattern below the hero dashboard. */
.hero-section::before {
  position: absolute;
  right: -7%;
  bottom: 0;
  left: -7%;
  z-index: -1;
  height: 255px;
  content: "";
  opacity: 0.72;
  background:
    radial-gradient(circle at 12% 39%, #ec4ed4 0 2px, transparent 2.7px),
    radial-gradient(circle at 20% 54%, #b657f5 0 2px, transparent 2.7px),
    radial-gradient(circle at 28% 35%, #f07fda 0 2px, transparent 2.7px),
    radial-gradient(circle at 36% 66%, #7341ea 0 2px, transparent 2.7px),
    radial-gradient(circle at 48% 49%, #a752ef 0 2px, transparent 2.7px),
    radial-gradient(circle at 60% 70%, #7650ed 0 2px, transparent 2.7px),
    radial-gradient(circle at 73% 46%, #b354f1 0 2px, transparent 2.7px),
    radial-gradient(circle at 84% 68%, #7551ed 0 2px, transparent 2.7px),
    linear-gradient(
      24deg,
      transparent 49.7%,
      rgba(108, 67, 232, 0.26) 50%,
      transparent 50.3%
    ),
    linear-gradient(
      -22deg,
      transparent 49.7%,
      rgba(226, 80, 208, 0.2) 50%,
      transparent 50.3%
    ),
    linear-gradient(
      10deg,
      transparent 49.7%,
      rgba(117, 73, 232, 0.15) 50%,
      transparent 50.3%
    );
  background-size:
    220px 130px,
    220px 130px,
    220px 130px,
    220px 130px,
    220px 130px,
    220px 130px,
    220px 130px,
    220px 130px,
    185px 92px,
    220px 108px,
    270px 123px;
  background-position:
    0 15px,
    52px 75px,
    110px 19px,
    190px 65px,
    280px 27px,
    405px 75px,
    545px 26px,
    690px 82px,
    30px 59px,
    34px 74px,
    70px 88px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000);
}

.hero-section::after {
  right: -9%;
  bottom: -185px;
  width: 67%;
  height: 340px;
  border-color: rgba(211, 146, 255, 0.23);
}

.hero-layout {
  grid-template-columns: minmax(295px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 34px;
}

.hero-copy {
  padding: 47px 0 0;
}

.hero-copy .eyebrow {
  margin-bottom: 10px;
  font-size: 10px;
}

.hero-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(41px, 4.1vw, 59px);
  line-height: 1.06;
}

.hero-description {
  max-width: 370px;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.55;
}

.hero-actions {
  gap: 10px;
}

.hero-actions .button {
  min-height: 39px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 11px;
}

.hero-actions .button-icon {
  width: 13px;
  height: 13px;
}

.security-note {
  max-width: 345px;
  margin: 25px 0 20px;
  font-size: 8.5px;
  line-height: 1.55;
}

.security-note .shield {
  width: 16px;
  height: 16px;
}

.hero-mini-cards {
  width: 235px;
  gap: 7px;
}

.hero-mini-cards article {
  min-height: 46px;
  gap: 8px;
  padding: 6px 9px;
  border-radius: 7px;
  box-shadow: 0 5px 12px rgba(72, 42, 150, 0.07);
}

.hero-mini-cards b {
  font-size: 8px;
}

.hero-mini-cards small,
.hero-mini-cards em {
  font-size: 6.5px;
}

.hero-mini-cards img.mini-icon {
  width: 20px;
  height: 20px;
  padding: 4px;
}

.hero-visual {
  min-height: 535px;
  padding: 20px 0 0;
}

.dashboard-window {
  min-height: 405px;
  grid-template-columns: 66px minmax(0, 1fr) 117px;
  border-radius: 18px;
  box-shadow: 0 23px 48px rgba(63, 31, 141, 0.18);
  transform: perspective(1200px) rotateY(-1.3deg) rotateX(0.6deg);
}

.dashboard-sidebar {
  gap: 9px;
  padding: 12px 8px;
}

.dash-mini-brand {
  margin-bottom: 7px;
}

.dashboard-sidebar a {
  padding: 4px;
}

.dash-topbar {
  height: 38px;
  padding: 0 13px;
}

.dash-body {
  padding: 12px;
}

.dash-heading h3 {
  margin-bottom: 10px;
}

.kpi-grid,
.dash-chart-grid {
  gap: 6px;
}

.kpi-grid article,
.chart-card,
.donut-card,
.payroll-card {
  padding: 7px;
}

.dash-chart-grid {
  margin-top: 7px;
}

.copilot-panel {
  gap: 6px;
  padding: 10px 8px;
}

.mesh-one,
.mesh-two {
  display: none;
}

.trusted-section {
  position: relative;
  z-index: 3;
  padding: 16px 0 18px;
  border-bottom-color: #f0edf7;
}

.trusted-section p {
  margin-bottom: 12px;
  font-size: 9px;
}

.logo-row {
  gap: 12px;
  font-size: 11px;
}

@media (max-width: 1040px) {
  .hero-section {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 4.5vw, 48px);
  }
}

@media (max-width: 830px) {
  .hero-section {
    padding: 35px 0 25px;
  }

  .hero-section::before {
    height: 200px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-visual {
    min-height: 420px;
    padding-top: 10px;
  }

  .trusted-section {
    padding: 20px 0;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .dashboard-window {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .copilot-panel {
    display: none;
  }

  .logo-row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 14px;
  }
}

/* =========================================================
   EMPLOYEE LIFECYCLE + MOBILE APP — REFERENCE LAYOUT
   This final block matches the supplied lifecycle/mobile image.
========================================================= */

.lifecycle-section {
  padding: 21px 0 15px;
  border-top: 1px solid #f1edf9;
  border-bottom: 1px solid #eee8fa;
  background: #ffffff;
}

.lifecycle-section .section-heading {
  max-width: none;
  margin: 0 auto 13px;
}

.lifecycle-section .eyebrow {
  margin: 0;
  color: #6332db;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: none;
}

.lifecycle-section h2 {
  display: none;
}

.lifecycle-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr) 20px
    minmax(0, 1fr) 20px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
}

.lifecycle-grid article {
  min-width: 0;
  min-height: 78px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  column-gap: 9px;
  padding: 12px;
  border: 1px solid #e8e0f8;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 13px rgba(74, 42, 145, 0.055);
}

.lifecycle-grid article > img {
  width: 29px;
  height: 29px;
  grid-row: 1 / 3;
  object-fit: contain;
}

.lifecycle-grid h3 {
  display: block;
  margin: 0 0 3px;
  color: #29214b;
  font-size: 10px;
  line-height: 1.2;
}

.lifecycle-grid p {
  margin: 0;
  color: #716b83;
  font-size: 7.5px;
  line-height: 1.42;
}

.lifecycle-grid > b {
  margin: 0;
  color: #7442e8;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.mobile-section {
  min-height: 320px;
  padding: 13px 0 0;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 5%,
      rgba(255, 142, 235, 0.48),
      transparent 35%
    ),
    linear-gradient(111deg, #6928df 0%, #8c39e9 48%, #df4bd5 100%);
}

.mobile-section::before,
.mobile-section::after {
  position: absolute;
  z-index: -1;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
  opacity: 0.65;
  background:
    repeating-radial-gradient(
      circle at center,
      transparent 0 32px,
      rgba(255, 255, 255, 0.12) 33px 34px
    ),
    repeating-conic-gradient(
      from 8deg,
      rgba(255, 255, 255, 0.16) 0 0.7deg,
      transparent 0.7deg 18deg
    );
}

.mobile-section::before {
  right: auto;
  bottom: -290px;
  left: -155px;
  transform: none;
}

.mobile-section::after {
  right: -108px;
  bottom: -205px;
  transform: none;
}

.mobile-layout {
  min-height: 307px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 44px;
}

.phones {
  width: 350px;
  height: 300px;
  margin: 0 auto;
}

.phone {
  bottom: -4px;
  width: 143px;
  height: 282px;
  padding: 23px 12px 13px;
  border: 5px solid #19162c;
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(29, 8, 85, 0.38);
}

.phone::before {
  top: 6px;
  width: 45px;
  height: 6px;
}

.mobile-section .phone-back {
  left: 35px;
  transform: rotate(-5deg);
}

.mobile-section .phone-front {
  left: 166px;
  transform: rotate(7deg);
}

.phone p {
  margin: 13px 0 10px;
  font-size: 9px;
  line-height: 1.35;
}

.phone small {
  font-size: 6px;
}

.phone ul {
  gap: 7px;
  margin: 10px 0;
  font-size: 6px;
}

.phone li {
  min-height: 29px;
  padding: 6px;
}

.phone li img {
  width: 10px;
  height: 10px;
}

.big-number {
  margin: 5px 0;
  font-size: 24px;
}

.phone-pay {
  margin-top: 25px;
  padding: 8px;
}

.phone-pay b {
  font-size: 10px;
}

.mobile-copy {
  padding: 1px 0 0;
}

.mobile-copy .eyebrow {
  width: max-content;
  margin-bottom: 7px;
  padding: 4px 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: #f5dcff;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.mobile-copy h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.mobile-copy > p:not(.eyebrow) {
  max-width: 330px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  line-height: 1.55;
}

.mobile-feature-list {
  grid-template-columns: repeat(3, max-content);
  gap: 9px 15px;
  margin: 0 0 18px;
  font-size: 7.5px;
}

.mobile-feature-list span {
  gap: 6px;
  line-height: 1.35;
}

.mobile-feature-list img {
  width: 24px;
  height: 24px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 7px;
  filter: brightness(0) invert(1);
}

.store-buttons {
  gap: 9px;
}

.store-buttons a {
  position: relative;
  min-width: 104px;
  min-height: 35px;
  display: block;
  padding: 5px 9px 5px 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  color: #ffffff;
  background: #111019;
  font-size: 5px;
  line-height: 1.2;
}

.store-buttons a::before {
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 17px;
  line-height: 1;
  content: "\25B6";
  transform: translateY(-50%);
}

.store-buttons a:first-child::before {
  font-family: Arial, sans-serif;
  content: "\25CF";
}

.store-buttons b {
  display: block;
  margin-top: 1px;
  font-size: 9px;
}

.trust-section {
  padding: 15px 0 42px;
}

.trust-section .section-heading {
  margin-bottom: 19px;
}

.trust-section .eyebrow {
  margin: 0;
  color: #6030d4;
  font-size: 12px;
  letter-spacing: -0.02em;
  text-transform: none;
}

@media (max-width: 1040px) and (min-width: 831px) {
  .lifecycle-grid article {
    padding: 10px 8px;
  }

  .mobile-layout {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 24px;
  }

  .phones {
    width: 315px;
  }

  .mobile-section .phone-back {
    left: 16px;
  }

  .mobile-section .phone-front {
    left: 145px;
  }
}

@media (max-width: 830px) {
  .lifecycle-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .lifecycle-grid > b {
    display: none;
  }

  .lifecycle-grid article {
    display: block;
    min-height: 110px;
    padding: 12px 9px;
    text-align: center;
  }

  .lifecycle-grid article > img {
    margin: 0 auto 7px;
  }

  .mobile-section {
    padding: 34px 0 42px;
  }

  .mobile-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .phones {
    order: 2;
  }

  .mobile-copy {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
  }

  .mobile-copy .eyebrow {
    margin-right: auto;
    margin-left: auto;
  }

  .mobile-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .mobile-feature-list,
  .store-buttons {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .lifecycle-section .eyebrow {
    font-size: 13px;
  }

  .lifecycle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lifecycle-grid article:last-child {
    grid-column: 1 / -1;
  }

  .mobile-feature-list {
    grid-template-columns: 1fr 1fr;
  }

  .phones {
    width: 300px;
    height: 275px;
  }

  .phone {
    width: 128px;
    height: 255px;
  }

  .mobile-section .phone-back {
    left: 15px;
  }

  .mobile-section .phone-front {
    left: 142px;
  }
}

/* =========================================================
   AI COPILOT + WORKFORCE ANALYTICS — REFERENCE LAYOUT
========================================================= */

.copilot-section {
  padding: 34px 0 28px;
  border-top: 1px solid #eee9f7;
  border-bottom: 1px solid #e9e3f5;
  background:
    radial-gradient(
      circle at 52% 43%,
      rgba(137, 80, 239, 0.08),
      transparent 27%
    ),
    radial-gradient(
      circle at 92% 70%,
      rgba(210, 168, 255, 0.12),
      transparent 25%
    ),
    linear-gradient(105deg, #ffffff 0%, #faf8ff 52%, #f6f1ff 100%);
}

.copilot-section .copilot-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(260px, 0.95fr) minmax(
      0,
      0.98fr
    );
  align-items: center;
  gap: 35px;
}

.copilot-layout > div:first-child > .eyebrow {
  display: none;
}

.copilot-layout > div:first-child > h2 {
  margin-bottom: 7px;
  color: #242044;
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.copilot-layout > div:first-child > p:not(.eyebrow) {
  max-width: 355px;
  margin-bottom: 0;
  color: #69637d;
  font-size: 11px;
  line-height: 1.55;
}

.copilot-chat {
  max-width: 365px;
  min-height: 238px;
  margin-top: 10px;
  border-color: #ded5f2;
  border-radius: 10px;
  box-shadow: 0 13px 28px rgba(65, 35, 135, 0.14);
}

.copilot-chat-head {
  min-height: 34px;
  align-items: center;
  padding: 8px 12px;
  color: #322b50;
  font-size: 11px;
}

.copilot-chat-head b {
  color: #8a69cf;
  font-size: 14px;
}

.prompt {
  width: 75%;
  margin: 10px 11px 9px auto;
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 7.5px;
  text-align: center;
  box-shadow: 0 5px 12px rgba(104, 43, 216, 0.2);
}

.chat-response {
  gap: 8px;
  padding: 0 11px 8px;
}

.chat-response img {
  width: 21px;
  height: 21px;
  margin-top: 2px;
}

.chat-response p {
  margin-bottom: 7px !important;
  font-size: 7.5px !important;
  line-height: 1.48 !important;
}

.compact-table {
  grid-template-columns: 1.25fr 0.86fr 0.8fr;
  gap: 5px;
  padding: 7px;
  border: 1px solid #f0edf7;
  background: #fbfaff;
  font-size: 6px;
}

.compact-table b,
.compact-table em {
  font-size: 6px;
}

.chat-response a {
  margin-top: 6px;
  padding: 6px;
  border: 1px solid #e5ddf5;
  border-radius: 5px;
  color: #4f4962;
  background: #ffffff;
  font-size: 6.5px;
  text-align: center;
}

.chat-input {
  min-height: 29px;
  align-items: center;
  margin: 0 10px 9px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 6.5px;
}

.chat-input b {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #6f36e8;
  font-size: 7px;
}

.network-visual {
  width: 100%;
  max-width: 320px;
  height: 292px;
  margin: 0 auto;
}

.network-visual::before {
  width: 242px;
  height: 242px;
  border-color: rgba(122, 72, 236, 0.17);
}

.network-visual::after {
  width: 154px;
  height: 154px;
  border-color: rgba(122, 72, 236, 0.2);
}

.network-lines {
  inset: 15px;
  opacity: 0.8;
  background:
    radial-gradient(circle at 16% 25%, #b97af3 0 2px, transparent 2.7px),
    radial-gradient(circle at 31% 73%, #8751ed 0 2px, transparent 2.7px),
    radial-gradient(circle at 74% 22%, #a463ee 0 2px, transparent 2.7px),
    radial-gradient(circle at 84% 69%, #7d48e8 0 2px, transparent 2.7px),
    linear-gradient(
      27deg,
      transparent 49.55%,
      rgba(122, 72, 236, 0.26) 50%,
      transparent 50.45%
    ),
    linear-gradient(
      -35deg,
      transparent 49.55%,
      rgba(122, 72, 236, 0.24) 50%,
      transparent 50.45%
    ),
    linear-gradient(
      58deg,
      transparent 49.55%,
      rgba(122, 72, 236, 0.18) 50%,
      transparent 50.45%
    ),
    linear-gradient(
      -68deg,
      transparent 49.55%,
      rgba(122, 72, 236, 0.16) 50%,
      transparent 50.45%
    );
}

.center-node {
  width: 64px;
  height: 64px;
  border-width: 6px;
  box-shadow:
    0 0 0 8px rgba(143, 74, 241, 0.1),
    0 10px 24px rgba(100, 48, 205, 0.3);
}

.center-node img {
  width: 27px;
  height: 27px;
}

.node {
  width: 35px;
  height: 35px;
  border-color: #d9c1fb;
}

.node img {
  width: 17px;
  height: 17px;
}

.n1 {
  top: 4px;
  left: 47%;
}

.n2 {
  top: 57px;
  right: 6%;
}

.n3 {
  right: 13%;
  bottom: 37px;
}

.n4 {
  bottom: 0;
  left: 45%;
}

.n5 {
  bottom: 44px;
  left: 5%;
}

.n6 {
  top: 61px;
  left: 8%;
}

.copilot-section .copilot-benefits {
  gap: 23px;
}

.copilot-benefits article {
  align-items: flex-start;
  gap: 11px;
}

.copilot-benefits > article > img {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: #eee6ff;
}

.copilot-benefits h3 {
  margin-bottom: 5px;
  color: #49317c;
  font-size: 11.5px;
  letter-spacing: -0.025em;
}

.copilot-benefits p {
  max-width: 210px;
  color: #6f6980 !important;
  font-size: 9px !important;
  line-height: 1.5 !important;
}

.analytics-section {
  padding: 22px 0 25px;
  background: #ffffff;
}

.analytics-section .analytics-layout {
  grid-template-columns: minmax(225px, 0.56fr) minmax(0, 1.44fr);
  align-items: center;
  gap: 52px;
}

.analytics-copy .eyebrow {
  display: none;
}

.analytics-copy h2 {
  max-width: 285px;
  margin-bottom: 8px;
  color: #242044;
  font-size: clamp(25px, 2.45vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.analytics-copy > p:not(.eyebrow) {
  max-width: 295px;
  margin-bottom: 17px;
  color: #716b82;
  font-size: 10px;
  line-height: 1.55;
}

.analytics-copy ul {
  gap: 12px;
  margin: 0 0 22px;
  color: #514b65;
  font-size: 9px;
}

.analytics-copy li {
  display: flex;
  align-items: center;
}

.analytics-copy li::before {
  width: 13px;
  height: 13px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  margin-right: 8px;
  border: 1px solid #8d5af0;
  border-radius: 50%;
  content: "";
}

.analytics-copy .button {
  min-height: 35px;
  padding: 0 16px;
  border-radius: 7px;
  font-size: 9px;
}

.analytics-board {
  min-height: 304px;
  grid-template-columns: 39px minmax(0, 1fr);
  border-color: #e6def5;
  border-radius: 11px;
  box-shadow: 0 13px 30px rgba(61, 32, 132, 0.13);
}

.analytics-board aside {
  gap: 22px;
  padding-top: 14px;
  background: linear-gradient(180deg, #743be9 0%, #4e1eb7 100%);
}

.analytics-board aside img {
  width: 14px;
  height: 14px;
}

.analytics-inner {
  padding: 13px;
}

.analytics-bar {
  min-height: 26px;
  align-items: flex-start;
  margin-bottom: 9px;
  color: #3b3550;
  font-size: 8px;
}

.analytics-bar span {
  padding: 5px 8px;
  border: 1px solid #eeeaf5;
  border-radius: 5px;
  background: #ffffff;
  font-size: 6px;
}

.analytics-kpis {
  gap: 7px;
}

.analytics-kpis article {
  min-height: 66px;
  padding: 9px;
  border-color: #ece7f5;
  border-radius: 6px;
}

.analytics-kpis small {
  font-size: 6px;
}

.analytics-kpis b {
  margin-top: 7px;
  font-size: 17px;
}

.analytics-kpis em {
  margin-left: 6px;
  font-size: 6px;
}

.analytics-charts {
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: 7px;
  margin: 8px 0;
}

.analytics-charts article {
  min-height: 124px;
  padding: 9px;
  border-color: #ece7f5;
  font-size: 6.5px;
}

.analytics-charts svg {
  height: 83px;
  margin-top: 5px;
  background: linear-gradient(
    180deg,
    rgba(118, 70, 234, 0.04),
    transparent 75%
  );
}

.analytics-charts article > b {
  margin: 15px 0 3px;
  font-size: 17px;
}

.analytics-charts em {
  font-size: 6px;
}

.analytics-charts .bar-chart {
  height: 49px;
  gap: 5px;
}

.analytics-charts .bar-chart i {
  width: 7px;
}

.sentiment {
  min-height: 43px;
  gap: 11px;
  padding: 9px 3px 0;
  font-size: 7px;
}

.sentiment div {
  font-size: 11px;
}

.sentiment b {
  font-size: 14px;
}

.sentiment em {
  font-size: 7px;
}

.sentiment > i {
  width: min(150px, 28%);
  height: 6px;
}

@media (max-width: 1040px) and (min-width: 831px) {
  .copilot-section .copilot-layout {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.9fr) minmax(0, 0.92fr);
    gap: 22px;
  }

  .copilot-section .copilot-benefits {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .analytics-section .analytics-layout {
    grid-template-columns: minmax(210px, 0.52fr) minmax(0, 1.48fr);
    gap: 30px;
  }
}

@media (max-width: 830px) {
  .copilot-section {
    padding: 55px 0;
  }

  .copilot-section .copilot-layout,
  .analytics-section .analytics-layout {
    grid-template-columns: 1fr;
  }

  .copilot-chat {
    max-width: 440px;
  }

  .copilot-section .copilot-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analytics-section {
    padding: 55px 0;
  }

  .analytics-copy {
    max-width: 480px;
  }

  .analytics-board {
    width: 100%;
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .copilot-section .copilot-benefits {
    grid-template-columns: 1fr;
  }

  .analytics-board {
    grid-template-columns: 31px minmax(0, 1fr);
    overflow-x: auto;
  }

  .analytics-inner {
    min-width: 560px;
  }
}

/* =========================================================
   ENTERPRISE TRUST CARDS — LARGER CARDS AND TEXT
========================================================= */

.trust-section {
  padding: 23px 0 50px;
  background: #ffffff;
}

.trust-section .section-heading {
  margin-bottom: 24px;
}

.trust-section .eyebrow {
  color: #6030d4;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.015em;
  text-transform: none;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.trust-grid > article {
  min-width: 0;
  min-height: 118px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: start;
  column-gap: 12px;
  padding: 20px 18px;
  border: 1px solid #e6def5;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(68, 38, 135, 0.06);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.trust-grid > article:hover {
  border-color: #cfbcf4;
  box-shadow: 0 12px 25px rgba(74, 40, 150, 0.1);
  transform: translateY(-3px);
}

.trust-grid article > img {
  width: 36px;
  height: 36px;
  grid-row: 1 / 3;
  padding: 7px;
  border: 1px solid #e0d2fa;
  border-radius: 9px;
  background: #f7f2ff;
  object-fit: contain;
}

.trust-grid h3 {
  margin: 0 0 6px;
  color: #31284c;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.trust-grid p {
  margin: 0;
  color: #6f687f;
  font-size: 10px;
  line-height: 1.55;
}

@media (max-width: 1040px) and (min-width: 831px) {
  .trust-grid {
    gap: 12px;
  }

  .trust-grid > article {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 9px;
    padding: 17px 13px;
  }

  .trust-grid article > img {
    width: 31px;
    height: 31px;
    padding: 6px;
  }

  .trust-grid h3 {
    font-size: 11.5px;
  }

  .trust-grid p {
    font-size: 8.5px;
  }
}

@media (max-width: 830px) {
  .trust-grid > article {
    min-height: 125px;
  }
}

@media (max-width: 520px) {
  .trust-section .eyebrow {
    font-size: 13px;
  }

  .trust-grid > article {
    min-height: 112px;
    padding: 18px;
  }

  .trust-grid h3 {
    font-size: 13px;
  }

  .trust-grid p {
    font-size: 10px;
  }
}

/* =========================================================
   ECS CLOUD INFOTECH FOOTER
========================================================= */

.site-footer {
  padding: 7px;
  border-top: 0;
  background: linear-gradient(100deg, #fbe8ef 0%, #fff8e9 50%, #dcecff 100%);
}

.site-footer .footer-card {
  width: min(1480px, calc(100% - 2px));
  min-height: 0;
  margin: 0 auto;
  padding: 25px clamp(34px, 6.5vw, 110px) 28px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 7px 24px rgba(67, 58, 91, 0.06);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(430px, 2.35fr) minmax(185px, 0.62fr) minmax(
      150px,
      0.5fr
    );
  align-items: start;
  gap: 58px;
}

.footer-company {
  min-width: 0;
  display: block;
}

.footer-logo-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.ecs-footer-logo {
  width: 70px;
  height: auto;
  display: block;
  object-fit: contain;
}

.ecs-footer-brand-copy {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #18518f !important;
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1;
}

.ecs-footer-brand-copy strong {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.ecs-footer-brand-copy small {
  color: #18518f;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.08;
}

.footer-address {
  display: grid;
  gap: 2px;
  margin: 25px 0 19px;
  color: #262230;
  font-size: 15px;
  font-style: normal;
  line-height: 1.45;
}

.footer-label {
  display: block;
  margin-bottom: 1px;
  font-weight: 500;
}

.footer-contact {
  display: grid;
  width: max-content;
  gap: 2px;
  color: #262230;
  font-size: 15px;
  line-height: 1.4;
}

.footer-contact a {
  color: #262230;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer .footer-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.site-footer .footer-column h3 {
  margin: 3px 0 3px;
  color: #3c3743;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.site-footer .footer-column a {
  width: max-content;
  max-width: 100%;
  color: #322d38;
  font-size: 15px;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.site-footer .footer-column a:hover,
.footer-bottom a:hover {
  color: #087ac1;
}

.site-footer .footer-grid .footer-socials {
  width: auto;
  display: flex;
  align-items: center;
  align-content: normal;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.site-footer .footer-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #eeeeef;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.site-footer .footer-socials a:hover {
  background: #ddebf6;
  transform: translateY(-2px);
}

.site-footer .footer-socials a img,
.socials.footer-socials a img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.27);
}

.site-footer .footer-bottom {
  min-height: 53px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 19px;
  border-top: 1px solid #cfcfd2;
  color: #2f2a35;
  font-size: 14px;
  line-height: 1.45;
}

.site-footer .footer-bottom > div {
  display: flex;
  gap: 20px;
}

.site-footer .footer-bottom a {
  color: #29252e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 980px) {
  .site-footer .footer-card {
    padding-right: 40px;
    padding-left: 40px;
  }

  .site-footer .footer-grid {
    grid-template-columns: minmax(330px, 1.8fr) 1fr 0.75fr;
    gap: 32px;
  }

  .footer-address,
  .footer-contact,
  .site-footer .footer-column a {
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .site-footer .footer-card {
    padding: 32px 26px 25px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 36px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 5px;
  }

  .site-footer .footer-card {
    width: 100%;
    padding: 27px 20px 23px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .footer-company {
    grid-column: auto;
  }

  .ecs-footer-logo {
    width: 62px;
  }

  .ecs-footer-brand-copy strong {
    font-size: 27px;
  }

  .footer-address {
    margin-top: 21px;
  }

  .footer-address,
  .footer-contact,
  .site-footer .footer-column a {
    font-size: 14px;
  }

  .site-footer .footer-bottom,
  .site-footer .footer-bottom > div {
    width: 100%;
  }

  .site-footer .footer-bottom > div {
    flex-wrap: wrap;
  }
}

/* =========================================================
   HOMEPAGE IMDA GRANT STRIP
========================================================= */

.homepage-grant-strip {
  position: relative;
  z-index: 4;
  min-height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee9f7;
  background: #ffffff;
}

.homepage-grant-banner {
  width: min(500px, 100%);
  min-height: 50px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8px;
  padding: 4px;
  border: 2px solid #ff5a78;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(255, 76, 120, 0.08);
}

.homepage-grant-info,
.homepage-grant-offer {
  min-width: 0;
  display: flex;
  align-items: center;
  border-radius: 12px;
}

.homepage-grant-info {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5px 14px;
  background: linear-gradient(110deg, #ffffff, #f9f8fc);
}

.homepage-grant-info strong {
  color: #5d38d5;
  font-size: 11px;
  line-height: 1.15;
}

.homepage-grant-info span {
  margin-top: 2px;
  color: #555066;
  font-size: 8px;
  font-weight: 500;
}

.homepage-grant-offer {
  justify-content: center;
  gap: 8px;
  padding: 5px 12px;
  color: #ffffff;
  background: linear-gradient(100deg, #7037ed 0%, #9a38eb 53%, #ec4ed4 100%);
}

.homepage-gift-icon {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 15px;
}

.homepage-grant-offer > span:last-child {
  display: grid;
  gap: 1px;
  text-align: center;
}

.homepage-grant-offer strong {
  font-size: 10px;
  line-height: 1.15;
}

.homepage-grant-offer small {
  color: #fff6ff;
  font-size: 7px;
  font-weight: 500;
  line-height: 1.2;
}

/* =========================================================
   INLINE BOOK-DEMO SECTION ABOVE FOOTER
========================================================= */

.inline-booking-section {
  scroll-margin-top: 78px;
  padding: 56px 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(119, 65, 234, 0.1), transparent 28%),
    radial-gradient(circle at 94% 100%, rgba(236, 78, 212, 0.1), transparent 25%),
    #f4f6fa;
}

.inline-booking-section[hidden] {
  display: none !important;
}

.inline-booking-section.is-visible {
  display: block;
}

.inline-booking-card {
  overflow: hidden;
  border: 1px solid #e3e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(55, 41, 91, 0.12);
}

.inline-booking-header {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 18px 24px;
  border-bottom: 1px solid #e7eaf1;
}

.inline-booking-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #171640;
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.inline-booking-brand img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.inline-booking-brand b {
  color: #75639c;
}

.inline-booking-header h2 {
  margin: 0 0 4px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.inline-booking-header p {
  margin: 0;
  color: #6d7184;
  font-size: 12px;
}

.inline-booking-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #dedfea;
  border-radius: 50%;
  color: #625c70;
  background: #ffffff;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.inline-booking-close:hover {
  color: #6734e8;
  background: #f5f0ff;
  transform: rotate(4deg);
}

.inline-booking-frame {
  width: 100%;
  height: 620px;
  display: block;
  border: 0;
  background: #eef3f8;
}

@media (max-width: 830px) {
  .homepage-grant-banner {
    margin: 0 auto;
  }

  .inline-booking-section {
    padding: 38px 0;
  }

  .inline-booking-header {
    grid-template-columns: auto 1fr auto;
    gap: 15px;
  }

  .inline-booking-frame {
    height: 990px;
  }
}

@media (max-width: 560px) {
  .homepage-grant-strip {
    min-height: 105px;
    padding: 10px 0;
  }

  .homepage-grant-banner {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .homepage-grant-info {
    align-items: center;
    padding: 6px 10px;
    text-align: center;
  }

  .homepage-grant-offer {
    min-height: 39px;
  }

  .inline-booking-section {
    padding: 24px 0;
  }

  .inline-booking-header {
    grid-template-columns: 1fr auto;
    padding: 16px;
  }

  .inline-booking-brand {
    grid-column: 1;
  }

  .inline-booking-header > div {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .inline-booking-close {
    grid-column: 2;
    grid-row: 1;
  }

  .inline-booking-header h2 {
    font-size: 18px;
  }

  .inline-booking-frame {
    height: 1120px;
  }
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-logo-icon {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
  object-position: center;
}

.brand b {
  color: #6d5d97;
  font-weight: 700;
}

@media (max-width: 600px) {
  .brand {
    gap: 7px;
    font-size: 14px;
  }

  .brand-logo-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2dfeb;
  border-radius: 50%;
  background: #f1f1f3;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.footer-socials a:hover {
  border-color: #6734e8;
  background: #eee8ff;
  transform: translateY(-2px);
}

.footer-socials a img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .footer-socials {
    gap: 8px;
  }

  .footer-socials a {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .footer-socials a img {
    width: 15px;
    height: 15px;
  }
}

/* =========================================================
   FOOTER SOCIAL PNG ICONS
========================================================= */

.site-footer .footer-socials {
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  margin-top: 16px;
}

.site-footer .footer-socials a {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #eeeeef;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.site-footer .footer-socials a img {
  width: 18px !important;
  height: 18px !important;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.site-footer .footer-socials a:hover {
  background: #dedee3;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .site-footer .footer-socials {
    gap: 7px;
  }

  .site-footer .footer-socials a {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px;
  }

  .site-footer .footer-socials a img {
    width: 17px !important;
    height: 17px !important;
  }
}
/* =========================================================
   FOOTER LEGAL LINKS
========================================================= */

.site-footer .footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid #d6d3dc;
  color: #625d69;
  font-size: 11px;
  line-height: 1.5;
}

.site-footer .footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.site-footer .footer-legal-links a {
  position: relative;
  display: inline-block;
  color: #4d4758;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer .footer-legal-links a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-footer .footer-legal-links a:hover {
  color: #6734e8;
}

.site-footer .footer-legal-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-footer .footer-legal-links a:focus-visible {
  border-radius: 3px;
  outline: 2px solid #6734e8;
  outline-offset: 4px;
}

/* Tablet */

@media (max-width: 820px) {
  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
  }

  .site-footer .footer-legal-links {
    justify-content: flex-start;
  }
}

/* Mobile */

@media (max-width: 480px) {
  .site-footer .footer-bottom,
  .site-footer .footer-legal-links {
    width: 100%;
  }

  .site-footer .footer-bottom {
    gap: 12px;
    font-size: 10px;
  }

  .site-footer .footer-legal-links {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .site-footer .footer-legal-links a {
    font-size: 10px;
  }
}
/* Increase footer copyright and legal-link font size */

.site-footer .footer-bottom {
  font-size: 14px;
}

.site-footer .footer-legal-links a {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 600px) {
  .site-footer .footer-bottom,
  .site-footer .footer-legal-links a {
    font-size: 13px;
  }
}
/* =========================================================
   FOOTER RIGHT-SIDE LINKS
========================================================= */

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 2.7fr);
  align-items: start;
  gap: clamp(50px, 6vw, 100px);
}

.site-footer .footer-links-grid {
  min-width: 0;
  display: grid;
  grid-template-columns:
    minmax(105px, 0.85fr)
    minmax(155px, 1.25fr)
    minmax(105px, 0.9fr)
    minmax(100px, 0.8fr)
    minmax(155px, 1.2fr);
  align-items: start;
  gap: clamp(22px, 2.8vw, 44px);
}

.site-footer .footer-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.site-footer .footer-column h3 {
  margin: 0 0 7px;
  color: #30294a;
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.site-footer .footer-column a,
.site-footer .footer-column address {
  margin: 0;
  color: #756e82;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}

.site-footer .footer-column a {
  width: max-content;
  max-width: 100%;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer .footer-column a:hover {
  color: #6734e8;
  transform: translateX(2px);
}

/* Contact column */

.site-footer .footer-contact-column a,
.site-footer .footer-contact-column address {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.footer-contact-icon {
  width: 15px;
  flex: 0 0 15px;
  color: #6734e8;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

/* Tablet */

@media (max-width: 1120px) {
  .site-footer .footer-grid {
    grid-template-columns: minmax(250px, 0.75fr) minmax(0, 2fr);
    gap: 42px;
  }

  .site-footer .footer-links-grid {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    gap: 30px 25px;
  }
}

/* Small tablet */

@media (max-width: 820px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer .footer-grid > .footer-company {
    grid-column: auto;
  }

  .site-footer .footer-links-grid {
    grid-template-columns: repeat(3, minmax(115px, 1fr));
  }
}

/* Mobile */

@media (max-width: 620px) {
  .site-footer .footer-links-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }
}

@media (max-width: 440px) {
  .site-footer .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer .footer-column h3 {
    font-size: 14px;
  }

  .site-footer .footer-column a,
  .site-footer .footer-column address {
    font-size: 12px;
  }
}