@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --container-width: 75rem;
  --font-heading: "Instrument Sans", sans-serif;
  --font-body: "Poppins", sans-serif;
  --radius-sm: 8px;
  --radius-xs: 5px;
  --text-color: #1D242D;
  --dark-color: #172741;
  --royal-blue: #3586ED;
  --dark-blue: #285791;
  --dark-blue3:#2B475A;
  --dark-blue2: #26416C;
  --orange: #F36A21;
  --lightblue: #EFF7FC;
  --footer-bg: #090F19;
  --footer-border: #C0CBDD;
  --white: #ffffff;
  --base-transition: .5s;
  --btn-shadow: 0 4px 10px 0 rgba(147, 200, 232, .8);
  --failure-red: #A23636;
  --error-red: #FF0000;
}

@media (min-width: 1700px) {
  :root {
    --container-width: 86rem;
  }
}
@media (max-width: 1360px) {
  :root {
    --container-width: 65rem;
  }
}
@media (max-width: 991px) {
  :root {
    --container-width: auto;
  }
}
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1199px) {
  .container {
    max-width: inherit;
    padding: 0 25px;
  }
}
@media (max-width: 1023px) {
  .container {
    padding: 0 15px;
  }
}

.container-left {
  margin-left: calc((100% - var(--container-width)) / 2);
}
@media (max-width: 1199px) {
  .container-left {
    margin-left: 25px;
  }
}
@media (max-width: 1023px) {
  .container-left {
    margin-left: 15px;
  }
}

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

html,
body {
  font-size: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.section {
  padding: 3rem 0;
}

.cmn-py {
  padding: 3rem 0;
}

.cmn-pt {
  padding-top: 3rem;
}

.cmn-pb {
  padding-bottom: 3rem;
}

.cmn-py2 {
  padding: 6rem 0;
}

.cmn-pt2 {
  padding-top: 6rem;
}

.cmn-pb2 {
  padding-bottom: 6rem;
}

@media (max-width: 767px) {
  .section {
    padding: 2rem 0;
  }
  .cmn-py {
    padding: 2rem 0;
  }
  .cmn-pt {
    padding-top: 2rem;
  }
  .cmn-pb {
    padding-bottom: 2rem;
  }
  .cmn-py2 {
    padding: 4rem 0;
  }
  .cmn-pt2 {
    padding-top: 4rem;
  }
  .cmn-pb2 {
    padding-bottom: 4rem;
  }
}
.section-tint {
  background: var(--bg-tint);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

a {
  transition: var(--base-transition);
}

.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 10px;
}

.common-heading {
  color: var(--dark-color);
  font-weight: 500;
}
.common-heading .accent {
  color: var(--dark-blue);
  display: inline;
  font-weight: 500;
}

.common-subheading {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .common-subheading {
    margin: 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title.left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.section-title .common-subheading {
  margin: 16px auto 0;
}

.section-title.left .common-subheading {
  margin: 16px 0 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--navy);
}

h1 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark-color);
}
h1 b,
h1 span {
  font-weight: 500;
}
h1 span {
  color: var(--dark-blue);
}
@media (max-width: 991px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 35px;
  }
}

h2 {
  font-size: 2.5rem;
  line-height: 1.25;
  color: var(--dark-color);
  font-weight: 400;
}
@media (max-width: 991px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 1.3rem;
  color: var(--dark-blue2);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  h3 {
    font-size: 20px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  line-height: 1.2;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn span, .btn svg {
  position: relative;
  z-index: 1;
}
.btn.lang-select:after {
  display: none;
}
.btn:hover:after {
  transform: translate(-50%, 0) scale(5);
  top: 80%;
}
.btn:after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translate(-50%, 0) scale(1);
  top: 100%;
  width: 30%;
  height: 30px;
  border-radius: 50%;
  background: #000;
  transition: calc(var(--base-transition) + 0.05s);
  z-index: -1;
}
.btn.btn-login {
  padding: 0.9rem 1rem;
}
.btn.lang-select {
  padding: 0.9rem 1rem;
  background: var(--white);
}
.btn.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn.btn-primary:after {
  background: var(--dark-blue);
}
.btn.btn-primary:hover {
  background: var(--dark-blue);
}
.btn.btn-dark {
  background: var(--dark-blue2);
  color: #fff;
}
.btn.btn-dark:after {
  background: var(--orange);
}
.btn.btn-dark:hover {
  background: var(--orange);
}
.btn.btnh-white:hover {
  color: var(--dark-blue);
  background: var(--white);
}
.btn.btnh-white:hover:after {
  background: var(--white);
}
.btn.btn-secondary {
  background: #fff;
  color: var(--dark-color);
}
.btn.btn-secondary:after {
  background: var(--orange);
}
.btn.btn-secondary:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.space-y-1 > :not(:last-child) {
  margin-block-end: 0.25rem;
}

.space-y-2 > :not(:last-child) {
  margin-block-end: 0.5rem;
}

.space-y-3 > :not(:last-child) {
  margin-block-end: 0.75rem;
}

.space-y-4 > :not(:last-child) {
  margin-block-end: 1rem;
}

.space-y-5 > :not(:last-child) {
  margin-block-end: 1.25rem;
}

.space-y-6 > :not(:last-child) {
  margin-block-end: 1.5rem;
}

.space-y-7 > :not(:last-child) {
  margin-block-end: 1.75rem;
}

.space-y-8 > :not(:last-child) {
  margin-block-end: 2rem;
}

.space-y-9 > :not(:last-child) {
  margin-block-end: 2.25rem;
}

.space-y-10 > :not(:last-child) {
  margin-block-end: 2.5rem;
}

.space-y-11 > :not(:last-child) {
  margin-block-end: 2.75rem;
}

.space-y-12 > :not(:last-child) {
  margin-block-end: 3rem;
}

.space-y-13 > :not(:last-child) {
  margin-block-end: 3.25rem;
}

.space-y-14 > :not(:last-child) {
  margin-block-end: 3.5rem;
}

.space-y-15 > :not(:last-child) {
  margin-block-end: 3.75rem;
}

.space-y-16 > :not(:last-child) {
  margin-block-end: 4rem;
}

.space-y-17 > :not(:last-child) {
  margin-block-end: 4.25rem;
}

.space-y-18 > :not(:last-child) {
  margin-block-end: 4.5rem;
}

.space-y-19 > :not(:last-child) {
  margin-block-end: 4.75rem;
}

.space-y-20 > :not(:last-child) {
  margin-block-end: 5rem;
}

.space-y-21 > :not(:last-child) {
  margin-block-end: 5.25rem;
}

.space-y-22 > :not(:last-child) {
  margin-block-end: 5.5rem;
}

.space-y-23 > :not(:last-child) {
  margin-block-end: 5.75rem;
}

.space-y-24 > :not(:last-child) {
  margin-block-end: 6rem;
}

.space-y-25 > :not(:last-child) {
  margin-block-end: 6.25rem;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 200;
  padding: 2rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.primary-nav ul li a {
  font-size: 1.1rem;
  color: var(--dark-blue2);
  padding: 5px 0;
  position: relative;
}
.primary-nav ul li a:hover:after, .primary-nav ul li a[aria-current=page]:after {
  width: 100%;
}
.primary-nav ul li a:after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--base-transition);
}

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

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #e3eaf3;
  background: #fff;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark-color);
  position: relative;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--dark-color);
  transition: transform 0.2s ease;
}

.hamburger span::before {
  top: -6px;
}

.hamburger span::after {
  top: 6px;
}

.hamburger[aria-expanded=true] span {
  background: transparent;
}

.hamburger[aria-expanded=true] span::before {
  transform: translateY(6px) rotate(45deg);
}

.hamburger[aria-expanded=true] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 250;
}

.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 84vw);
  background: #fff;
  z-index: 260;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -14px 0 40px -12px rgba(10, 20, 40, 0.35);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.mobile-menu-close {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #e3eaf3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu a {
  padding: 14px 8px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f0f3f8;
  color: var(--navy);
  display: block;
}
.mobile-menu a.logo {
  border-bottom: none;
}
.mobile-menu a.btn-block {
  text-align: center;
  overflow: initial;
}
.mobile-menu a.btn-block:after {
  display: none;
}

.mobile-menu .btn-login {
  justify-content: center;
  margin-top: 14px;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  transition: var(--base-transition);
}

.sticky .site-header {
  background: var(--white);
  padding: 0.8rem 0;
  box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.08);
}
.sticky .lang-select {
  border: 1px solid var(--footer-border);
}

.hero {
  position: relative;
  background: url(../images/banner-bg.webp) no-repeat center 0;
  background-size: cover;
  padding: 150px 0 50px;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .hero {
    font-size: 1rem;
    padding: 100px 0 30px;
  }
}
.hero p {
  max-width: 80%;
  margin-inline: auto;
}
.hero .hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero .hero-cards {
  position: relative;
  max-width: var(--container-width);
  margin: 5rem auto 0;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: end;
}
@media (max-width: 767px) {
  .hero .hero-cards {
    padding: 0 20px 0;
    margin: 2.5rem auto 0;
  }
}

.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-card {
  border-radius: 12px;
  border: 8px solid rgba(255, 255, 255, 0.3);
  position: relative;
  top: 0;
  transition: var(--base-transition);
}
.stat-card img {
  width: 100%;
}
.stat-card:nth-child(1) {
  transform: translateY(4rem);
  animation: banim1 3s linear infinite;
}
.stat-card:nth-child(2) {
  transform: translateY(0);
  animation: banim2 3s linear infinite;
}
.stat-card:nth-child(3) {
  transform: translateY(-2rem);
}
.stat-card:nth-child(3) img {
  animation: banim3 3s linear infinite;
}
.stat-card:nth-child(4) {
  transform: translateY(0);
  animation: banim2 3s linear infinite;
}
.stat-card:nth-child(5) {
  transform: translateY(4rem);
  animation: banim1 3s linear infinite;
}

@keyframes banim1 {
  0%, 100% {
    top: 0;
  }
  50% {
    top: -10px;
  }
}
@keyframes banim2 {
  0%, 100% {
    top: 0;
  }
  50% {
    top: 10px;
  }
}
@keyframes banim3 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
}
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 70px;
  margin-bottom: 8px;
}

.mini-bars span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: #dbe6f8;
}

.mini-bars span:first-child {
  background: var(--primary);
}

.mini-bars-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.legend {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.dot-primary {
  background: var(--primary);
}

.dot-light {
  background: #c4d7f4;
}

.dot-lighter {
  background: #e5ecf8;
}

.gauge-card {
  text-align: center;
}

.gauge-wrap {
  position: relative;
  width: 110px;
  height: 60px;
  margin: 6px auto 4px;
}

.gauge-label {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #1b9e6c;
  background: #e6f8ef;
  padding: 2px 8px;
  border-radius: 20px;
}

.gauge-score {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
}

.gauge-foot {
  font-size: 11px;
  color: #1b9e6c;
  margin-top: 6px;
}

.sla-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
}

.sla-tag {
  display: inline-block;
  font-size: 11px;
  background: #e6f8ef;
  color: #1b9e6c;
  padding: 2px 8px;
  border-radius: 20px;
  margin: 6px 0 10px;
}

.sla-chart {
  position: relative;
  height: 52px;
}

.sla-chart svg {
  width: 100%;
  height: 100%;
}

.sla-target {
  font-size: 10px;
  color: var(--text-muted);
  position: absolute;
  top: 0;
  right: 0;
}

.ai-tip {
  display: flex;
  gap: 8px;
  background: #fdeeee;
  border-radius: 8px;
  padding: 8px;
  margin-top: 10px;
}

.ai-tip.blue {
  background: #eaf1fd;
}

.ai-tip p {
  font-size: 10.5px;
  color: #5b6b82;
  line-height: 1.4;
}

.ai-tip .star {
  color: var(--orange);
  flex-shrink: 0;
}

.agenda-stats {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}

.agenda-stats div {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
}

.agenda-stats span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.agenda-bar {
  height: 6px;
  border-radius: 4px;
  background: #e5ecf8;
  overflow: hidden;
  margin-bottom: 12px;
}

.agenda-bar i {
  display: block;
  height: 100%;
  background: var(--primary);
  width: 60%;
}

.donut-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.donut {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0% 60%, #bcd3f7 60% 80%, #e5ecf8 80% 100%);
  position: relative;
  flex-shrink: 0;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #fff;
}

.carousel-nav {
  display: flex;
  gap: 10px;
}

.carousel-nav button {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 8px;
  background: #E7F0F7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: auto;
  right: auto;
  border-radius: var(--radius-xs);
  top: auto;
  margin-top: 0;
}
.carousel-nav button:after {
  display: none;
}
.carousel-nav button svg {
  width: 0.9rem;
  height: 0.9rem;
}

.carousel-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.platform-card {
  padding: 2rem;
  background: var(--lightblue);
  border-radius: var(--radius-xs);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1360px) {
  .platform-card {
    padding: 1.5rem;
  }
}
.platform-card .thumb {
  margin-bottom: 2rem;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.platform-card .platform-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.platform-card .platform-card-body .icon-btn {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.platform-card .platform-card-body .icon-btn:hover {
  background: var(--orange);
}
.platform-card .platform-card-body .icon-btn:hover svg path {
  fill: var(--white);
}
@media (max-width: 1360px) {
  .platform-card .platform-card-body .icon-btn {
    width: 3rem;
    height: 3rem;
  }
}

.platformslider .swiper-wrapper {
  display: flex;
}
.platformslider .swiper-wrapper .swiper-slide {
  height: auto;
}
.platformslider .swiper-wrapper .platform-card {
  height: 100%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-grid .feature-card {
  background: var(--lightblue);
  border-radius: var(--radius-xs);
  padding: 1.2rem;
  transition: var(--base-transition);
}
.feature-grid .feature-card h3 {
  transition: var(--base-transition);
}
.feature-grid .feature-card:hover {
  background: var(--dark-blue);
  color: var(--white);
}
.feature-grid .feature-card:hover h3 {
  color: var(--white);
}
.feature-grid .feature-card .feature-mock {
  background: var(--white);
  border-radius: var(--radius-xs);
  padding: 1rem;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.feature-grid .feature-card .feature-mock img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mock-client-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mock-client-head .avatar {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--bg-tint);
}

.mock-client-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2px;
}

.mock-status {
  font-size: 9px;
  color: #1b9e6c;
}

.mock-lines {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-lines i {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: #eef3fb;
}

.mock-lines i:nth-child(1) {
  width: 90%;
}

.mock-lines i:nth-child(2) {
  width: 70%;
}

.mock-metric-row {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: var(--bg-tint);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.mock-metric-row div b {
  display: block;
  font-size: 13px;
  color: var(--primary);
  font-family: var(--font-heading);
}

.mock-metric-row div span {
  font-size: 9px;
  color: var(--text-muted);
}

.mock-line-chart {
  width: 100%;
  height: 100%;
}

.mock-collab-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #f0f3f8;
}

.mock-collab-item .sq {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--bg-tint);
  flex-shrink: 0;
}

.mock-collab-item .bar {
  height: 6px;
  border-radius: 3px;
  background: #eef3fb;
  flex: 1;
}

.mock-tag {
  font-size: 8px;
  background: #eef1f8;
  color: var(--text-muted);
  padding: 2px 6px;
  border-radius: 4px;
}

.truth-section {
  color: var(--white);
}

.royal-blue {
  background: var(--royal-blue);
  color: var(--white);
}
.royal-blue h2 {
  color: var(--white);
}

.truth-grid {
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 5rem;
  align-items: start;
}
.truth-grid .tophead {
  display: block;
}

.truth-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.truth-card {
  background: #fff;
  border-radius: var(--radius-xs);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-color);
  gap: 4rem;
  transition: var(--base-transition);
}
.royal-blue .truth-card h3 {
  color: var(--dark-color);
}
.truth-card:hover {
  background: var(--lightblue);
}
.truth-card:hover .ic {
  background: var(--dark-blue);
}
.truth-card:hover .ic svg path {
  stroke: var(--white);
}
.truth-card:hover .ic img {
  filter: invert(1) brightness(100);
}
.truth-card .ic {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-sm);
  background: var(--lightblue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--base-transition);
}
.truth-card .ic svg, .truth-card .ic img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.truth-card .ic svg path {
  transition: var(--base-transition);
}
.truth-card h3 {
  color: var(--dark-color);
}

.bento-security {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.bento-tall {
  border-radius: var(--radius-sm);
}
.bento-tall.bento-photo {
  display: grid;
  align-items: flex-end;
}
.bento-tall.bento-photo > img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bento-tall.bento-photo > * {
  grid-row: 1;
  grid-column: 1;
}
.bento-tall.bento-photo .bento-photo-caption {
  place-content: end;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-sm);
  margin: 1rem;
}
.bento-tall.bento-eu {
  padding: 2rem;
  background: #DDEEF8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.bento-tall.bento-eu .icabs {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.bento-tall.bento-right {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.bento-tall.bento-right .bento-role {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 4;
}
.bento-tall.bento-right .bento-role .bento-role-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.bento-tall.bento-right .bento-role .bento-role-top h3 {
  color: var(--white);
  margin: 0;
}
.bento-tall.bento-right .bento-report {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-radius: var(--radius-sm);
  background: #121E32;
}
.bento-tall.bento-right .bento-report h3 {
  color: var(--white);
  margin: 0;
}
.bento-tall.bento-right .bento-report .ic {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 50%;
}
.bento-tall.bento-right .bento-report .ic svg {
  width: 2rem;
  height: 2rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img, .avatar-stack .plus {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -15px;
  object-fit: cover;
  background: var(--white);
}

.avatar-stack .plus {
  background: #fff;
  border-color: var(--white);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-stack :first-child {
  margin-left: 0;
}

.monitor_sec {
  padding-bottom: 0;
}

.showcase {
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes watermarkmove1 {
  0%, 100% {
    left: 0;
  }
  50% {
    left: 20%;
  }
}
@keyframes watermarkmove2 {
  0%, 100% {
    right: 0;
  }
  50% {
    right: 20%;
  }
}
.showcase-watermark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12rem;
  line-height: 1;
  color: #eef3fb;
  position: absolute;
  left: 0;
  bottom: 10%;
  white-space: nowrap;
  z-index: 0;
  letter-spacing: 6px;
  user-select: none;
  width: 100%;
  padding: 0 5rem;
}
@media (max-width: 1360px) {
  .showcase-watermark {
    font-size: 10rem;
  }
}
@media (max-width: 1024px) {
  .showcase-watermark {
    font-size: 5rem;
  }
}
.showcase-watermark span {
  display: block;
  text-align: left;
  position: relative;
}
.showcase-watermark span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 40%, transparent 100%);
  width: 100%;
  height: 100%;
}
.showcase-watermark span:first-child {
  animation: watermarkmove1 10s linear infinite;
}
.showcase-watermark span:last-child {
  text-align: right;
  animation: watermarkmove2 10s linear infinite;
}

.tablet-wrap {
  position: relative;
  z-index: 1;
}

.tablet-frame {
  max-width: 50%;
  margin: 0 auto;
}
.tablet-frame img {
  width: 100%;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
}
@media (max-width: 767px) {
  .accordion-trigger {
    padding: 2rem 1rem;
  }
}

.accordion-trigger .plus-ic {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.accordion-item[data-open=true] .plus-ic {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  transition: max-height 0.35s ease;
}

.accordion-item[data-open=true] .accordion-panel {
  max-height: 640px;
}
.accordion-item[data-open=true] .accordion-panel .stakeholder-mock {
  margin-top: -2.5rem;
}
@media (max-width: 767px) {
  .accordion-item[data-open=true] .accordion-panel .stakeholder-mock {
    margin-top: 0;
  }
}

.accordion-panel-inner {
  padding: 0 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.accordion-panel-inner > div > *:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .accordion-panel-inner {
    padding: 0 2rem 2rem 2rem;
    gap: 3rem;
  }
}

.accordion-panel-inner h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list .ck {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stakeholder-mock {
  border: 10px solid #CCE5F6;
  margin-top: 0;
  transition: var(--base-transition);
}
.stakeholder-mock img {
  width: 100%;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .impact-grid {
    margin-bottom: 3rem;
  }
}

.impact-stat > *:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .impact-stat > *:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}

.impact-stat .num {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 3.5rem;
  color: var(--dark-blue);
  line-height: 1;
}
@media (max-width: 767px) {
  .impact-stat .num {
    font-size: 35px;
  }
}

.cta-banner {
  background: #084086;
  border-radius: var(--radius-sm);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cta-banner {
    padding: 2rem;
  }
}
.cta-banner > * {
  position: relative;
  z-index: 1;
}
.cta-banner:after {
  position: absolute;
  content: "";
  left: 15%;
  top: 50%;
  transform: translate(0, -50%);
  width: 200px;
  height: 0;
  box-shadow: 0 0 220px 100px #3586ED;
  background: #3586ED;
  animation: conicmove 3s linear infinite;
}

@keyframes conicmove {
  0%, 100% {
    left: 15%;
  }
  50% {
    left: 25%;
  }
}
.cta-banner h3 {
  color: var(--white);
  margin: 0;
}

.enterprise-grid {
  border-radius: var(--radius-sm);
  padding: 1rem;
  gap: 1rem;
  background: #CEE1EE;
  display: flex;
}

.enterprise-item {
  flex: 1;
  padding: 1rem;
  display: flex;
  position: relative;
  gap: 1rem;
  transition: var(--base-transition);
}
.enterprise-item * {
  transition: var(--base-transition);
}
.enterprise-item:hover {
  flex: 2;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.enterprise-item:hover .enterpriseImg {
  width: 100%;
  padding: 1rem;
}
.enterprise-item:hover .ic {
  background: var(--orange);
}
.enterprise-item:hover .ic svg path {
  stroke: var(--white);
}
.enterprise-item .ic {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.enterprise-item .ic svg {
  width: 1.7rem;
  height: 1.7rem;
}
.enterprise-item .eih-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 4rem;
  max-width: 350px;
}
@media (max-width: 767px) {
  .enterprise-item .eih-content {
    padding: 0;
  }
}
.enterprise-item .enterpriseImg {
  background: #2050E0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  width: 0;
  transition: var(--base-transition);
}
.enterprise-item-hover {
  background: var(--white);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  border-radius: var(--radius-sm);
  gap: 1rem;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 5rem);
  z-index: 1;
}
.enterprise-item-hover .eih-content .ic {
  background: var(--orange);
}
.enterprise-item-hover .eih-content .ic svg path {
  stroke: var(--white);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.step-item {
  padding: 0 3rem;
  border-left: 1px solid #B2BBC6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}
@media (max-width: 1360px) {
  .step-item {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .step-item {
    gap: 2rem;
  }
}

.step-item:first-child {
  border-left: none;
  padding-left: 0;
}

.step-tag {
  display: inline-block;
  font-weight: 500;
  color: var(--dark-blue2);
  background: var(--lightblue);
  padding: 8px 15px;
  border-radius: 25px;
  line-height: 1;
}

.trust-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.trust-card {
  border-radius: var(--radius-sm);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 3rem;
  position: relative;
  color: var(--white);
}
.trust-card h3,
.trust-card h2 {
  color: var(--white);
}
.trust-card > div > *:not(:last-child) {
  margin-bottom: 1.5rem;
}
.trust-card.trust-blue {
  padding: 3rem 8rem;
  background: #084086;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .trust-card.trust-blue {
    padding: 3rem 4rem;
  }
}
@media (max-width: 767px) {
  .trust-card.trust-blue {
    padding: 2rem;
  }
}
.trust-card.trust-blue .avatar-stack {
  justify-content: center;
}
.trust-card.trust-blue > * {
  position: relative;
  z-index: 1;
}
.trust-card.trust-blue:after {
  position: absolute;
  content: "";
  left: 15%;
  top: 50%;
  transform: translate(0, -50%);
  width: 200px;
  height: 0;
  box-shadow: 0 0 220px 100px #3586ED;
  background: #3586ED;
}
.trust-card.trust-photo {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  display: grid;
  padding: 0;
}
.trust-card.trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trust-card.trust-photo > * {
  grid-column: 1;
  grid-row: 1;
}
.trust-card.trust-photo .inner {
  padding: 3rem;
}
@media (max-width: 767px) {
  .trust-card.trust-photo .inner {
    padding: 2rem;
  }
}
.trust-card.trust-photo .inner h3 {
  line-height: 1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--lightblue);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark-color);
  text-align: left;
}
@media (max-width: 767px) {
  .faq-trigger {
    font-size: 18px;
  }
}

.faq-trigger .plus-ic {
  width: 3.2rem;
  height: 3.2rem;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") no-repeat center;
  border-radius: var(--radius-sm);
  background-size: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.faq-trigger .plus-ic svg {
  width: 2rem;
  height: 2rem;
}

.faq-item[data-open=true] .plus-ic {
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E") no-repeat center;
  background-size: 2rem;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item[data-open=true] .faq-panel {
  max-height: 220px;
}

.faq-panel p {
  padding: 1rem 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
}

.faq-contact a {
  color: var(--dark-color);
  border-bottom: 2px solid var(--dark-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1.8rem;
}
.faq-contact a:hover {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}
.faq-contact a:hover svg path {
  fill: var(--orange);
}
@media (max-width: 767px) {
  .faq-contact a {
    font-size: 20px;
  }
}

.faqhead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-footer {
  background: var(--footer-bg);
  color: #c4cede;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: var(--white);
}

.footer-col,
.footer-brand {
  padding-right: 2rem;
}
.footer-col > *:not(:last-child),
.footer-brand > *:not(:last-child) {
  margin-bottom: 2rem;
}

.footerlogo {
  display: inline-block;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--white);
  opacity: 0.8;
}
.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 1rem;
  color: var(--white);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom b {
  font-weight: 500;
}

.tophead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.tophead.topheadleft {
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.tophead.topheadleft .common-subheading {
  margin: 0;
}
.tophead.tophead1 {
  display: block;
  text-align: center;
}
.tophead.tophead1 h2 {
  margin-bottom: 1rem;
}

.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

body {
  top: 0 !important;
}

.lang-select-holder {
  position: relative;
}
.lang-select-holder:hover ul {
  transform: rotateX(0deg);
}
.lang-select-holder ul {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  width: 150px;
  position: absolute;
  top: calc(100% + 10px);
  box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
  transform: rotateX(90deg);
  transition: var(--base-transition);
  transform-origin: center 0;
  left: 0;
}
@media (max-width: 1700px) {
  .lang-select-holder ul {
    left: auto;
    right: 0;
  }
}
.lang-select-holder ul li:not(:last-child) {
  margin-bottom: 8px;
}
.lang-select-holder ul li a {
  display: block;
  font-size: 0.8rem;
}
.lang-select-holder ul li a:hover {
  color: var(--orange);
  border-radius: var(--radius-sm);
}
.inner-hero {
  padding: 200px 0 150px;
}
@media (max-width: 767px) {
  .inner-hero {
    padding: 150px 0 100px;
  }
}
.inner-hero h1 {
  font-size: 2.5rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .inner-hero h1 {
    font-size: 32px;
  }
  .inner-hero h1 br {
    display: none;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  gap: 1rem;
}
.breadcrumb li {
  position: relative;
  gap: 1rem;
  display: flex;
  align-items: center;
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb li:after {
  position: relative;
  display: inline-flex;
  content: "";
  border-radius: 3px;
  width: 10px;
  height: 10px;
  background: var(--orange);
}
.breadcrumb li a {
  color: var(--text-color);
  opacity: 0.5;
}
.breadcrumb li.active a {
  opacity: 1;
}

.contactHolder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 4rem;
  background: var(--white);
  margin-top: -2rem;
  z-index: 1;
  position: relative;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 50px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 1360px) {
  .contactHolder {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .contactHolder {
    grid-template-columns: 1fr;
    padding: 2rem;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.2);
  }
}
.contactHolder:after {
  position: absolute;
  content: "";
  bottom: 100%;
  height: 1rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 2rem);
  background: rgba(255, 255, 255, 0.3);
}
.contactHolder .contactleft {
  padding-right: 12rem;
}
@media (max-width: 1360px) {
  .contactHolder .contactleft {
    padding-right: 6rem;
  }
}
@media (max-width: 1023px) {
  .contactHolder .contactleft {
    padding-right: 2rem;
  }
}
.contactHolder .contactleft .topheadleft {
  gap: 1rem;
}
@media (max-width: 1199px) {
  .contactHolder .contactleft .topheadleft h2 {
    font-size: 2rem;
  }
}
.contactHolder .contactleft .avatar-stack {
  margin-bottom: 1rem;
}
.contactHolder .contactleft .avatar-stack .plus {
  background: var(--dark-blue2);
}
.contactHolder .contactleft .avatar-stack .plus svg path {
  fill: var(--white);
}
.contactHolder .contactleft .faq-contact a {
  border-bottom: none;
}

.commonform .form-group label {
  font-size: 0.8rem;
  padding: 1rem 0 0;
  display: block;
}
.commonform .form-group i.error {
  color: var(--error-red);
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.5rem;
}
.commonform .form-group input,
.commonform .form-group textarea,
.commonform .form-group select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #909DAD;
  padding: 1rem 0;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}
.commonform .form-group input::placeholder,
.commonform .form-group textarea::placeholder,
.commonform .form-group select::placeholder {
  color: var(--text-color);
  opacity: 1;
}
.commonform .form-group input:focus,
.commonform .form-group textarea:focus,
.commonform .form-group select:focus {
  outline: none;
}
.commonform .form-group textarea {
  height: 7rem;
  resize: none;
}
.commonform input[type=submit],
.commonform button[type=submit] {
  transition: var(--base-transition);
  padding: 0.9rem 2rem;
  width: auto;
  border: none;
  margin-left: auto;
  display: table;
  cursor: pointer;
  margin-top: 1.5rem;
}

.common-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (max-width: 991px) {
  .common-grid {
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .common-grid {
    display: flex;
    flex-direction: column;
  }
  .common-grid .common-img-full {
    order: 1;
  }
  .common-grid .common-content {
    order: 2;
  }
}
.common-grid .common-img {
  position: relative;
}
.common-grid .common-img.common-img1 {
  display: flex;
  align-items: flex-end;
}
.common-grid .common-img.common-img1:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(149, 203, 237, 0.5) 0%, transparent 100%);
  border-radius: var(--radius-sm);
}
.common-grid .common-img.common-img1 figure {
  max-width: 65%;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
}
.common-grid .common-img.common-img1 figure img {
  border-radius: var(--radius-sm);
}
.common-grid .common-img.common-img-full figure {
  height: 100%;
  display: block;
  border-radius: var(--radius-xs);
}
.common-grid .common-img.common-img-full figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xs);
}
.common-grid .common-img .common-mainimg {
  padding: 1rem;
  max-width: 70%;
  position: relative;
}
.common-grid .common-img .common-smallimg {
  position: absolute;
  width: 50%;
  left: 70%;
  top: 40%;
  transform: translate(-50%, 0);
  padding: 0.7rem;
}
.common-grid .common-img .common-smallimg img {
  width: 100%;
}
.common-grid .common-img img {
  position: relative;
  z-index: 1;
}
.common-grid .common-content.common-content-stretch {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.common-grid .common-content .para p {
  margin-bottom: 0.5rem;
}
.common-grid .common-content .para p b {
  color: var(--dark-blue);
  font-weight: 600;
}
.common-grid .common-content .para p:last-child {
  font-size: 0.8rem;
  margin: 0;
}
.common-grid .common-content .common-head-list li {
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.common-grid .common-content .common-head-list li:last-child {
  border-bottom: none;
}
.common-grid .common-content .common-list li {
  position: relative;
  background: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 12.5C25 14.8438 24.3438 17.0625 23.1875 18.9375C21.0313 22.5625 17.0625 25 12.5 25C7.9375 25 3.96871 22.5625 1.81246 18.9375C0.656208 17.0625 0 14.8438 0 12.5C0 5.59375 5.59375 0 12.5 0C19.4062 0 25 5.59375 25 12.5Z' fill='%23D2E5FB'/%3E%3Cpath d='M7.8125 12.4841L10.7872 15.625L17.1875 9.375' stroke='%231B5CAD' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat 0 2px;
  background-size: 1.2rem;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}
.common-grid .common-content .common-list li:last-child {
  margin-bottom: 0;
}
.common-grid .common-content .common-cl-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (max-width: 991px) {
  .common-grid .common-content .common-cl-list {
    gap: 3rem;
  }
}
@media (max-width: 575px) {
  .common-grid .common-content .common-cl-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.royal-blue h3 {
  color: var(--white);
}
.royal-blue .common-grid .common-content .common-head-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.gradient-border {
  position: relative;
  padding: 1px;
  border-radius: 20px;
  overflow: hidden;
  outline: 1px solid #fff;
  outline-offset: -1px;
  backdrop-filter: blur(4px);
}
.gradient-border::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 300deg, rgba(53, 134, 237, 0.8) 330deg, rgba(53, 134, 237, 0.8) 350deg, transparent 360deg);
  animation: rotate-border 4s linear infinite;
}

@keyframes rotate-border {
  to {
    transform: rotate(360deg);
  }
}
.operationHolder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.operationDiv {
  padding: 2rem;
  position: relative;
}
.operationDiv:before {
  content: "";
  position: absolute;
  right: 0;
  top: 2rem;
  width: 1px;
  height: calc(100% - 4rem);
  border-right: 1px dashed #909DAD;
}
.operationDiv:after {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: 0;
  height: 1px;
  width: calc(100% - 4rem);
  border-bottom: 1px dashed #909DAD;
}
.operationDiv:nth-child(3n)::before {
  display: none;
}
.operationDiv:nth-last-child(-n+3):after {
  display: none;
}
.operationDiv figure {
  display: inline-block;
  margin-bottom: 3rem;
}
.infoboxlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}

.infoboxdiv {
  padding-top: 3rem;
  position: relative;
}
.infoboxdiv:hover:after {
  width: 100%;
}
.infoboxdiv:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
}
.infoboxdiv:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: var(--base-transition);
}
.infoboxdiv .no {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-blue);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.pricingHolder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .pricingHolder {
    grid-template-columns: 1fr;
  }
}

.pricingBox {
  border: 1px solid #C0CBDD;
  border-radius: var(--radius-xs);
  font-size: 0.7rem;
  color: var(--dark-blue3);
  position: relative;
  padding-bottom: 5rem;
}
.pricingBox.pricingBoxActive {
  background: linear-gradient(to right bottom, #172741 0%, #225FA9 100%);
  color: var(--white);
}
.pricingBox.pricingBoxActive .pricingTop {
  border-bottom: 1px solid #285791;
}
.pricingBox.pricingBoxActive h3,
.pricingBox.pricingBoxActive h5 {
  color: var(--white);
}
.pricingBox.pricingBoxActive .pricebox,
.pricingBox.pricingBoxActive .price {
  color: var(--white);
}
.pricingBox.pricingBoxActive ul li {
  background: url(../images/tickwhite.svg) no-repeat 0 center;
  background-size: 0.6rem;
}
.pricingBox.pricingBoxActive .btn-dark {
  background: var(--orange);
  color: var(--white);
}
.pricingBox.pricingBoxActive .btn-dark:after {
  background: var(--white);
}
.pricingBox.pricingBoxActive .btn-dark:hover {
  background: var(--white);
  color: var(--dark-blue2);
}
.pricingBox h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #2B475A;
  margin-bottom: 1rem;
}
.pricingBox ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pricingBox ul li {
  background: url(../images/tickdark.svg) no-repeat 0 center;
  background-size: 0.6rem;
  padding-left: 1rem;
}
.pricingBox .pricingTop {
  padding: 2rem 3rem;
  border-bottom: 1px solid #C0CBDD;
}
@media (max-width: 767px) {
  .pricingBox .pricingTop {
    padding: 1.5rem;
  }
}
.pricingBox .pricingBottom {
  padding: 2rem 3rem;
}
@media (max-width: 767px) {
  .pricingBox .pricingBottom {
    padding: 1.5rem;
  }
}
.pricingBox .btn {
  width: 50%;
  left: 3rem;
  bottom: 2rem;
  position: absolute;
}

.pricebox {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark-blue3);
  font-weight: 500;
}
.pricebox .price {
  font-weight: 500;
  color: var(--dark-blue);
  font-size: 2.5rem;
}

.goalstable {
  overflow: auto;
}
.goalstable table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
.goalstable table th,
.goalstable table td {
  border-right: 1px solid #909DAD;
  border-bottom: 1px solid #909DAD;
  padding: 1rem;
  width: 33%;
  white-space: nowrap;
}
.goalstable table th img,
.goalstable table td img {
  display: inline-block;
}
.goalstable table th:not(:first-child),
.goalstable table td:not(:first-child) {
  text-align: center;
}
.goalstable table th:not(:first-child) .pricebox,
.goalstable table td:not(:first-child) .pricebox {
  justify-content: center;
}
.stageholder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
@media (max-width: 991px) {
  .stageholder {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .stageholder {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .stageholder {
    grid-template-columns: 1fr;
  }
}
.stageholder .ico {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #E0E6EE;
  display: block;
}
.stageholder .ico img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}
.stageholder h3 {
  color: var(--dark-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-text-fill-color: #000;
}

.pop-up-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999999;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.pop-up-msg {
  max-width: 500px;
  width: auto;
  padding: 20px;
  color: #000;
  font-size: 14px;
  transition: 0.5s;
  margin-top: 10px;
  opacity: 0;
  display: grid;
  place-content: center;
  border-radius: 20px;
}
.pop-up-msg span {
  float: left;
  display: grid;
  place-content: center;
  padding: 1rem 0;
}
.pop-up-msg .ico-svg {
  display: none;
}
.pop-up-msg .content {
  float: left;
  padding: 15px;
  text-align: center;
  font-size: 1rem;
  color: white;
  max-width: 380px;
}
.pop-up-msg .content h6,
.pop-up-msg .content p {
  width: 100%;
  float: left;
}
.pop-up-msg .content p {
  margin-top: 3px;
}
.pop-up-msg.success {
  margin-top: 0;
  opacity: 1;
  background-color: var(--orange);
}
.pop-up-msg.success .ico-svg.checkmark {
  display: inline-block;
  animation: fill-success 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
  -webkit-animation: fill-success 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.pop-up-msg.success .ico-svg.checkmark .checkmark__circle {
  -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.pop-up-msg.success .ico-svg.checkmark .checkmark__check {
  -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
.pop-up-msg.success .content h6 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}
.pop-up-msg.failure {
  margin-top: 0;
  opacity: 1;
  background-color: var(--failure-red);
}
.pop-up-msg.failure .ico-svg.cross {
  display: inline-block;
  animation: fill-failure 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
  -webkit-animation: fill-failure 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.pop-up-msg.failure .ico-svg.cross .checkmark__circle {
  -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.pop-up-msg.failure .ico-svg.cross .checkmark__check {
  -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
.pop-up-msg.failure .content h6 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.ico-svg {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
}
.ico-svg .checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  fill: none;
}
.ico-svg .checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}
.ico-svg.checkmark {
  box-shadow: inset 0 0 0 var(--orange);
}
.ico-svg.cross {
  box-shadow: inset 0 0 0 #4e4e4e;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill-success {
  100% {
    box-shadow: inset 0 0 0 30px var(--orange);
  }
}
@keyframes fill-failure {
  100% {
    box-shadow: inset 0 0 0 30px #4e4e4e;
  }
}
@media (max-width: 1360px) {
  .primary-nav ul {
    gap: 1rem;
  }
  .primary-nav ul li a {
    font-size: 0.9rem;
  }
}
@media (max-width: 1199px) {
  .logo {
    max-width: 180px;
  }
  .truth-grid {
    grid-template-columns: 18rem 1fr;
    gap: 3rem;
  }
  .bento-tall.bento-right .bento-role .bento-role-top {
    flex-wrap: wrap;
  }
  .enterprise-item .enterpriseImg {
    display: none;
  }
  .enterprise-item:hover {
    flex: 1;
  }
}
@media (max-width: 991px) {
  .primary-nav {
    display: none;
  }
  .header-actions .lang-select {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  html,
  body {
    font-size: 16px;
  }
  .truth-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .tophead {
    margin-bottom: 3rem;
  }
  .topheadleft p {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
  }
  .faqhead {
    margin-bottom: 3rem;
  }
  .bento-security {
    grid-template-columns: 1fr 1fr;
  }
  .bento-right {
    grid-column: span 2;
    flex-direction: row;
  }
  .enterprise-grid {
    flex-wrap: wrap;
  }
  .enterprise-item {
    width: 100%;
    flex: auto;
  }
  .enterprise-item:hover {
    flex: 1;
  }
  .enterprise-center {
    grid-column: span 2;
  }
  .bento-tall.bento-right .bento-role {
    min-height: 230px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .bento-security {
    grid-template-columns: 1fr;
  }
  .bento-right {
    grid-column: auto;
    flex-direction: column;
  }
  .enterprise-grid {
    grid-template-columns: 1fr;
  }
  .enterprise-center {
    grid-column: auto;
  }
  .steps-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
  .step-item:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
  .trust-duo {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .accordion-panel-inner {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
  .tophead {
    text-align: left;
  }
  .tophead.tophead1 {
    text-align: left;
  }
  .tophead.topheadleft p {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .header-actions .btn-login {
    display: none;
  }
  .bento-tall.bento-eu .ic {
    margin-bottom: 3rem;
  }
  .tablet-frame {
    max-width: 100%;
  }
  .hero-inner {
    max-width: inherit;
    padding: 0 10px;
  }
  .hero .hero-cards {
    display: flex;
    flex-wrap: wrap;
  }
  .stat-card {
    transform: translate(0, 0) !important;
    width: 100%;
    animation: initial !important;
  }
  .stat-card:nth-child(3) img {
    animation: initial !important;
  }
  .hero-cards {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .stat-card.card-retention,
  .stat-card.card-focus,
  .stat-card.card-insights {
    transform: none;
  }
  .hero-cards .stat-card:nth-child(3) {
    grid-column: span 2;
  }
  .platform-card {
    flex-basis: 240px;
  }
  .carousel-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .truth-cards {
    grid-template-columns: 1fr;
  }
  .steps-row {
    grid-template-columns: 1fr;
  }
  .step-item {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }
  .step-item:first-child {
    border-top: none;
    padding-top: 0;
  }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .showcase-watermark {
    letter-spacing: 2px;
  }
  .tophead br {
    display: none;
  }
  .tophead {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .platform_section .tophead {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-ctas {
    flex-wrap: wrap;
    max-width: 70%;
    margin: 0 auto;
  }
  .hero-ctas .btn {
    width: 100%;
  }
}
