.sec-pTB.mbH, .btmBar, .heading-menu, .container.cust-quote {
    display: none;
}
/* =============================================
   CSS Variables
   ============================================= */
:root {
  /* Colors */
  --color-primary: #e9142b;
  --color-primary-hover: #d0111f;
  --color-blue: #155dfc;
  --color-yellow: #e6a817;
  --color-green: #10b981;
  --color-purple: #7d15fc;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-text-muted: #757575;
  --color-text-dark: #444444;
  --color-text-neutral: #0a0a0a;
  --color-border: #e6e6e6;
  --color-border-light: #e5e5e5;
  --color-bg-light: #f9f9f9;

  /* Feature card backgrounds */
  --color-card-blue-bg: #f5faff;
  --color-card-blue-border: #e1ecfe;
  --color-card-yellow-bg: #f7f4e6;
  --color-card-yellow-border: #ffde8f;
  --color-card-red-bg: #fef2f2;
  --color-card-red-border: #ffb8b8;
  --color-card-green-bg: #eefaf6;
  --color-card-green-border: #62ffcb;
  --color-card-purple-bg: #f8f5ff;
  --color-card-purple-border: #eee1fe;

  /* Typography */
  --font-primary: 'Zoho Puvi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fs-h1: 54px;
  --fs-h2: 40px;
  --fs-h3: 24px;
  --fs-body: 17px;
  --fs-small: 14px;
  --fs-xs: 12px;
  --fs-stat: 48px;
  --lh-heading: 1.32;
  --lh-body: 1.5;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 48px;
  --space-3xl: 80px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 12px;

  /* Shadows */
  --shadow-card: 0px 4px 34px 0px rgba(0, 0, 0, 0.1);
  --shadow-feature: 0px 4.696px 28.178px 0px rgba(0, 0, 0, 0.06);
  --space-4xl: 60px;
}

/* =============================================
   Reset & Base
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* =============================================
   Container
   ============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.stakeholder .container {
    padding: 0px;
}

.features .container {
    padding: 0px;
}

/* =============================================
   Button
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 22.5px;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  /* background-color: var(--color-primary-hover); */
}

.btn--primary:active {
  transform: scale(0.98);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: -307px;
  left: 50%;
  transform: translateX(-50%);
  width: 1352px;
  height: 1352px;
  pointer-events: none;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero__heading {
  font-size: var(--fs-h1);
  line-height: var(--lh-heading);
  letter-spacing: -0.81px;
  text-align: center;
  white-space: nowrap;
}

.hero__heading-normal {
  font-weight: 500;
  color: var(--color-black);
}

.hero__heading-gradient {
  font-weight: 600;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__heading-gradient--detection {
  background-image: linear-gradient(99.29deg, #2e8fff 0.71%, #1932c8 126.28%);
}

.hero__heading-gradient--response {
  background-image: linear-gradient(100.11deg, #4ea1ff 40.57%, #1932c8 99.2%);
}

.hero__subtitle {
  font-weight: 400;
  font-size: var(--fs-body);
  text-align: center;
  max-width: 676px;
  color: var(--color-black);
}

.hero__strip {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 642px;
}

.hero__strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.hero__strip-icon {
  width: 24px;
  height: 24px;
}

.hero__strip-label {
  font-size: var(--fs-xs);
  line-height: 18px;
  letter-spacing: 0.1px;
  text-align: center;
  color: var(--color-black);
}

/* =============================================
   Dashboard Section
   ============================================= */
.dashboard {
  display: flex;
  justify-content: center;
  padding-bottom: 0;
}

.dashboard__content {
  display: flex;
  justify-content: center;
}

.dashboard__graphic {
  width: 1000px;
  max-width: 100%;
  overflow: hidden;
}

.dashboard__graphic img {
  width: 100%;
  height: auto;
}
.feature-card--green .feature-card__graphic {
    padding: 0px;
    background: none;
    box-shadow: none;
}

/* =============================================
   Features Section
   ============================================= */
.features {
  padding: var(--space-3xl) 0;
}

.features__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.features__title {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: var(--lh-body);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.features__subtitle {
  font-size: var(--fs-body);
  color: var(--color-text);
}

.features__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.features__row--top {
  display: flex;
  gap: 20px;
  min-height: 546px;
}

.features__col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Feature Card Base */
.feature-card {
  border-radius: var(--radius-lg);
  border: 1px solid;
  padding: 32px;
}

.feature-card--blue,
.feature-card--green,
.feature-card--purple {
  overflow: hidden;
}

.feature-card__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature-card__title {
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: var(--lh-body);
  color: var(--color-text);
}

.feature-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-card__list-item {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
  position: relative;
}

.feature-card__list-item p {
  flex: 1;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  margin: 0px;
}

.feature-card__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  top: 12px;
  position: relative;
}

.feature-card__bullet--blue { background-color: var(--color-blue); }
.feature-card__bullet--yellow { background-color: var(--color-yellow); }
.feature-card__bullet--red { background-color: var(--color-primary); }
.feature-card__bullet--green { background-color: var(--color-green); }
.feature-card__bullet--purple { background-color: var(--color-purple); }

.feature-card__graphic {
  background: var(--color-white);
  border-radius: var(--radius-lg) 0 0 0;
  box-shadow: var(--shadow-feature);
  overflow: hidden;
  padding: var(--space-xl) 0 0 var(--space-xl);
  display: flex;
  align-items: flex-end;
}

.feature-card__graphic img {
  width: 100%;
  display: block;
  object-fit: contain;
}

/* Blue card — 360 visibility */
.feature-card--blue {
  background-color: var(--color-card-blue-bg);
  border-color: var(--color-card-blue-border);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-bottom: 0;
  padding-right: 0;
}

.feature-card--blue .feature-card__text {
  padding-right: var(--space-xl);
}

.feature-card--blue .feature-card__graphic {
  flex: 1;
  padding: 0 0 var(--space-xl) var(--space-xl);
}

/* Yellow card */
.feature-card--yellow {
  background-color: var(--color-card-yellow-bg);
  border-color: var(--color-card-yellow-border);
}

/* Red card */
.feature-card--red {
  background-color: var(--color-card-red-bg);
  border-color: var(--color-card-red-border);
  flex: 1;
}

/* Green card — full width */
.feature-card--green {
  background-color: var(--color-card-green-bg);
  border-color: var(--color-card-green-border);
}

/* Purple card — full width */
.feature-card--purple {
  background-color: var(--color-card-purple-bg);
  border-color: var(--color-card-purple-border);
}

/* Wide cards layout */
.feature-card--wide {
  display: flex;
  gap: var(--space-xl);
  height: 320px;
  padding-right: 0;
  padding-bottom: 0;
}

.feature-card--wide .feature-card__text {
  width: 548px;
  flex-shrink: 0;
}

.feature-card--wide .feature-card__graphic {
  flex: 1;
  align-self: stretch;
}

/* =============================================
   Benefits Section
   ============================================= */
.benefits {
  padding: 0 var(--space-xl);
  display: flex;
  justify-content: center;
}

.benefits__inner {
  width: 100%;
  max-width: 1200px;
  background-color: var(--color-black);
  border-radius: var(--radius-lg);
  padding: 52px;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.benefits__inner::before,
.benefits__inner::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.benefits__inner::before {
  width: 200%;
  height: 400%;
  top: -180%;
  left: -60%;
  background: radial-gradient(ellipse at center, rgba(21, 93, 252, 0.18) 0%, rgba(21, 93, 252, 0.06) 30%, transparent 65%);
  transform: rotate(-72deg);
}

.benefits__inner::after {
  width: 180%;
  height: 350%;
  bottom: -200%;
  right: -50%;
  background: radial-gradient(ellipse at center, rgba(125, 21, 252, 0.15) 0%, rgba(125, 21, 252, 0.05) 30%, transparent 65%);
  transform: rotate(-72deg);
}

.benefits__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.benefits__stat {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: var(--lh-body);
  color: var(--color-white) !important;
}

.benefits__desc {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  margin: 5px 0px 0px;
}

.benefits__divider {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* =============================================
   Stakeholder Section
   ============================================= */
.stakeholder {
  padding: var(--space-3xl) 0;
}

.stakeholder__title {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: var(--lh-body);
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-text);
}

.stakeholder__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.stakeholder__card {
  flex: 1;
  min-width: 300px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}

.stakeholder__card-img {
  background: var(--color-card-blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 300px;
}

.stakeholder__card-img img {
  width: auto;
  height: 360px;
  object-fit: cover;
  object-position: center;
}

.stakeholder__card-text {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
  padding-bottom: var(--space-lg);
}

.stakeholder__card-text h3 {
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: var(--lh-body);
}

.stakeholder__card-text p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  margin: 2px 0px 0px;
}

/* =============================================
   Stats Section
   ============================================= */
.stats {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
  padding-top: var(--space-xl);
}

.stats__title {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: var(--lh-body);
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-text);
}

.stats__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  min-width: 200px;
  width: 200px;
  text-align: center;
}

.stats__number {
  font-size: var(--fs-stat);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.35px;
  color: var(--color-text);
}

.stats__label {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
}

/* =============================================
   Platform Section
   ============================================= */
.platform {
  padding: 0 var(--space-xl);
  display: flex;
  justify-content: center;
}

.platform__inner {
  width: 100%;
  max-width: 1200px;
  background: var(--color-black);
  border-radius: var(--radius-lg);
  padding: var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.platform__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.platform__bg::before,
.platform__bg::after {
  content: '';
  position: absolute;
}

.platform__bg::before {
  width: 250%;
  height: 500%;
  top: -250%;
  left: -120%;
  background: radial-gradient(ellipse at center, rgba(21, 93, 252, 0.16) 0%, rgba(21, 93, 252, 0.05) 30%, transparent 60%);
  transform: rotate(-72deg);
}

.platform__bg::after {
  width: 300%;
  height: 600%;
  bottom: -350%;
  right: -100%;
  background: radial-gradient(ellipse at center, rgba(125, 21, 252, 0.14) 0%, rgba(125, 21, 252, 0.04) 30%, transparent 55%);
  transform: rotate(-72deg);
}

.platform__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
}

.platform__header {
  text-align: center;
  color: var(--color-white);
}

.platform__title {
  color: var(--color-white) !important;
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: var(--lh-body);
  margin-bottom: var(--space-md);
}

.platform__subtitle {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
}

.platform__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  width: 100%;
}

.platform__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  width: 100%;
  align-items: stretch;
  align-content: center;
}

.platform__feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  width: 170px;
}

.platform__feature-icon {
  width: 24px;
  height: 24px;
}

.platform__feature-label {
  font-size: var(--fs-small);
  line-height: var(--lh-body);
  color: var(--color-white);
  text-align: center;
}

.platform__connector {
  width: 100%;
  max-width: 720px;
}

.platform__connector img {
  width: 100%;
  height: auto;
}

.platform__tagline {
  border: 1px solid var(--color-blue);
  border-radius: var(--radius-xl);
  padding: 13px 23px;
  color: var(--color-white);
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: var(--lh-body);
  text-align: center;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq {
  padding: var(--space-3xl) 0;
  background: var(--color-white);
}

.faq__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-text);
}

.faq__list {
  max-width: 1000px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  line-height: var(--lh-body);
  color: var(--color-text-neutral);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq__question:hover {
  /* color: var(--color-primary); */
}

.faq__question:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.faq__question span {
  flex: 1;
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq__icon--minus {
  display: none;
}

.faq__icon--plus {
  display: block;
}

.faq__item--open .faq__icon--minus {
  display: block;
}

.faq__item--open .faq__icon--plus {
  display: none;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-bottom: 0;
}

.faq__item--open .faq__answer {
  max-height: 600px;
  padding-bottom: 20px;
}
.faq__item--open .faq__answer ul{
list-style: disc;
    padding-left: 20px;
}

.faq__answer p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
}

/* =============================================
   Responsive — Tablet (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --fs-h1: 40px;
    --fs-h2: 32px;
    --fs-h3: 22px;
    --fs-stat: 40px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .hero {
    padding: 60px 0;
  }

  .hero__heading {
    white-space: normal;
  }

  .hero__bg {
    width: 1000px;
    height: 1000px;
    top: -250px;
  }

  .hero__strip {
    max-width: 100%;
  }

  .dashboard__graphic {
    width: 100%;
  }

  .features__row--top {
    flex-direction: column;
    height: auto;
  }

  .feature-card--wide {
    flex-direction: column;
    height: auto;
    padding-right: var(--space-xl);
    padding-bottom: 0;
  }

  .feature-card--wide .feature-card__text {
    width: 100%;
  }

  .feature-card--wide .feature-card__graphic {
    width: 100%;
  }

  .feature-card--blue {
    padding-right: 0;
  }

  .benefits__inner {
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-xl);
  }

  .benefits__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  }

  .stakeholder__grid {
    flex-direction: column;
  }

  .stakeholder__card {
    min-width: 100%;
  }

  .stats__grid {
    gap: var(--space-lg);
  }

  .stats__item {
    min-width: 150px;
    width: auto;
  }

  .platform__inner {
    padding: var(--space-xl);
  }

  .platform__features {
    gap: var(--space-lg);
  }

  .platform__feature-box {
    min-width: 140px;
  }

  .platform__connector {
    display: none;
  }

  .faq__question {
    font-size: 18px;
  }
}

/* =============================================
   Responsive — Mobile (≤480px)
   ============================================= */
@media (max-width: 480px) {
  :root {
    --fs-h1: 32px;
    --fs-h2: 26px;
    --fs-h3: 20px;
    --fs-stat: 32px;
    --space-3xl: 48px;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .hero {
    padding: 40px 0;
  }

  .hero__content {
    gap: var(--space-lg);
  }

  .hero__bg {
    width: 600px;
    height: 600px;
    top: -200px;
  }

  .hero__strip {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero__strip-item {
    flex-direction: row;
    gap: var(--space-sm);
  }

  .feature-card {
    padding: var(--space-lg);
  }

  .feature-card--wide {
    padding-right: var(--space-lg);
  }

  .feature-card--blue .feature-card__text {
    padding-right: 0;
  }

  .benefits {
    padding: 0 var(--space-md);
  }

  .benefits__inner {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
  }

  .benefits__stat {
    font-size: 30px;
  }

  .stakeholder__card-text {
    padding: var(--space-lg);
  }

  .stats__grid {
    flex-direction: column;
    align-items: center;
  }

  .platform {
    padding: 0 var(--space-md);
  }

  .platform__inner {
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-md);
  }

  .platform__features {
    flex-direction: column;
    align-items: center;
  }

  .platform__feature-box {
    min-width: 100%;
    flex-direction: row;
    justify-content: center;
  }

  .faq__question {
    font-size: 16px;
    gap: var(--space-sm);
  }

  .faq__icon {
    width: 20px;
    height: 20px;
  }
}
a.btn.btn--secondary {
    display: block;
    margin: 40px auto 0px;
    width: max-content;
    background: none rgb(255, 255, 255);
    border: 1px solid rgb(21 93 252);
    color: rgb(21 93 252);
}