.sem-lp-floating-btn {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  padding: 14px 28px;
  border-radius: 100px;
  color: #fff;
  font-family: var(--worksans);
  font-size: 20px;
  font-weight: 0;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  text-align: center;
  width: 100%;
  max-width: 399px;
}

@media (max-width: 767px) {
  .sem-lp-floating-btn {
    bottom: 16px;
    padding: 12px 20px;
    font-size: 14px;
  }
}
.hero-section {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-glass-bg {
  border-radius: 0 0 50px 50px;
  padding: 100px 172px;
  background:
    linear-gradient(
      180deg,
      rgba(102, 102, 102, 0.15) 0%,
      rgba(102, 102, 102, 0) 54.52%
    ),
    linear-gradient(
      180deg,
      rgba(153, 153, 153, 0) 50.1%,
      rgba(153, 153, 153, 0.15) 100%
    ),
    rgba(255, 255, 255, 0.1);
  background-blend-mode: lighten, soft-light, normal;
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.05),
    7px 12px 9px -14px rgba(255, 255, 255, 0.9) inset,
    2px -1px 1px -2px rgba(179, 179, 179, 0.5) inset,
    -2px 1px 1px -2px rgba(179, 179, 179, 0.5) inset,
    -7px -12px 9px -14px rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-stats.glass-container-bg {
  border-radius: 30px;
  background: var(
    --Glass-BG,
    linear-gradient(
      180deg,
      rgba(102, 102, 102, 0.15) 0%,
      rgba(102, 102, 102, 0) 54.52%
    ),
    linear-gradient(
      180deg,
      rgba(153, 153, 153, 0) 50.1%,
      rgba(153, 153, 153, 0.15) 100%
    ),
    rgba(255, 255, 255, 0.1)
  );
  background-blend-mode: plus-lighter, plus-lighter, normal;

  /* Glass Effect */
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.05),
    10px 12px 9px -14px rgba(255, 255, 255, 0.9) inset,
    2px -1px 1px -2px rgba(179, 179, 179, 0.5) inset,
    -2px 1px 1px -2px rgba(179, 179, 179, 0.5) inset,
    -7px -12px 9px -14px rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(20px);
}

.hero-logo {
  height: 71px;
  width: 181.081px;
  display: inline-block;
  margin-bottom: 0;
}

/* ---- Heading + copy ---- */

.hero-heading {
  max-width: 620px;
  font-size: 60px;
  line-height: normal;
}

/* ---- Buttons ---- */

/* White Glass Background */

.white-glass-bg {
  border-radius: 100px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,

      rgba(255, 255, 255, 0) 54.52%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 50.1%,

      rgba(255, 255, 255, 0.08) 100%
    );

  background-blend-mode: lighten, soft-light;

  box-shadow:
    8px 12px 9px -10px rgba(255, 255, 255, 0.9) inset,
    2px -1px 1px -2px rgba(179, 179, 179, 0.5) inset,
    -2px 1px 1px -2px rgba(179, 179, 179, 0.5) inset,
    -8px -12px 9px -10px rgba(255, 255, 255, 0.9) inset,
    0 4px 8px 0 rgba(0, 0, 0, 0.05);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);

  transition: 0.3s ease-in-out;

  -webkit-transition: 0.3s ease-in-out;
}

.white-glass-bg-hover:hover {
  border-radius: 100px;

  background: rgba(251, 205, 21, 0.6);

  box-shadow:
    7px 12px 9px -14px #fff8d0 inset,
    2px -1px 1px -2px rgba(255, 248, 208, 0.5) inset,
    -2px 1px 1px -2px rgba(255, 248, 208, 0.5) inset,
    -7px -12px 9px -14px rgba(255, 248, 208, 0.9) inset;

  backdrop-filter: blur(20px);

  transition: 0.3s ease-in-out;

  -webkit-transition: 0.3s ease-in-out;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 0;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

/* ---- Hero image ---- */

.hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  line-height: 0;
}

.hero-img-wrap img {
  width: 877px;
  height: 501px;
  object-fit: cover;
  display: block;
}

/* ---- Stats bar ---- */

.hero-stats {
  margin-top: 60px;
  padding: 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.hero-stat-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain; /* keeps the icon's aspect ratio inside the 64x64 box, prevents distortion/cropping */
  display: block;
}

.hero-stat-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-number {
  color: #fff !important;
  text-align: center !important;
  font-family: "Work Sans" !important;
  font-size: 55px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: normal !important;
  width: 189px !important;
}

.hero-stat p {
  margin: 0;
  max-width: 302px;
  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px; /* 152% */
}

.hero-stat-col {
  position: relative;
}

.hero-stat-divider {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 150px;
  width: auto;
  display: block;
}
/* divider lines between stat columns on larger screens */

/* ---- Responsive ---- */

@media (max-width: 1199px) {
  .hero-section .row.align-items-center {
    display: flex;
    flex-direction: column;
  }

  .hero-heading {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-img-wrap img {
    width: 100%;
    height: auto;
  }

  .hero-logo {
    margin-bottom: 40px;
    display: block;
    margin: 0 auto 40px;
  }

  .hero-stats {
    padding: 30px;
  }

  .hero-glass-bg {
    border-radius: 0 0 35px 35px;
    padding: 70px 30px;
  }

  .hero-img-wrap img {
    width: 100%;
    height: 100%;
  }
  .hero-heading {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .hero-logo {
    display: block;
    margin: 0 auto 30px;
    max-width: 180px; /* optional */
  }
  .hero-section .row.align-items-center {
    display: flex;
    flex-direction: column;
  }
  .hero-img-wrap img {
    width: 100%;
    height: 100%;
  }

  .hero-image-col {
    order: -1;
  }

  .hero-text-col {
    order: 1;
    text-align: center;
  }

  .hero-heading {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    font-size: 24px;
  }
  .hero-cta-group {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
  }

  .hero-btn {
    min-width: 0;
    flex: 1 1 auto;
    padding: 12px 20px;
    height: auto;
    min-height: 48px;
    font-size: 13px;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
  }

  section.hero-section .hero-stat .hero-stat-number {
    font-size: 30px !important;
  }

  .hero-stats {
    margin-top: 40px;
    padding: 25px 20px;
  }

  .hero-glass-bg {
    border-radius: 0 0 24px 24px;
    padding: 50px 20px;
  }

  /* Stat cards: single column, stacked, with a horizontal
     divider line between each card instead of the vertical
     dividers used on desktop. */
  .hero-stats .row {
    flex-direction: column;
  }

  .hero-stat-col {
    position: relative;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .hero-stat-col:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: auto;
    height: 1px;
    align-self: stretch;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .hero-stat-col:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .hero-stat p {
    font-size: 16px !important;
  }
}

@media (max-width: 767px) {
  .hero-stat-icon {
    height: 32px;
    width: 32px;
  }

  /* Gradient ::after line already handles the mobile divider —
     hide the rotated vertical-image divider so there's only one line, not two. */
  .hero-stat-divider {
    display: none;
  }

  .hero-section .row.align-items-center {
    display: flex;
    flex-direction: column;
  }

  .hero-image-col {
    order: 1;
  }

  .hero-text-col {
    order: 2;
    display: flex;
    flex-direction: column;
    margin-top: 0;
  }

  .hero-text-col .hero-cta-group {
    order: 1;
    margin-bottom: 20px;
  }

  .hero-text-col .hero-heading {
    order: 2;
    margin-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero-stat-divider {
    display: none;
  }
}

@media (max-width: 500px) {
  .consult-card {
    padding: 52px 24px;
    width: 100%;
    max-width: 400px !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 499px) {
  .consult-card {
    padding: 52px 24px;
    width: 100%;
    max-width: 240px !important;
    margin-left: auto;
    margin-right: auto;
  }
}
