.lcb-landing-hero {
  position: relative;
  padding: 24px 32px 0;
  text-align: center;
  overflow: hidden;
  /* background: var(--hover-color); */
  background: linear-gradient(180deg, #5d1584 0%, #4f2572 90%, #8d80ad00 100%);
  max-height: 90vh;
  /* align-content: center; */
  min-height: 720px;
}

.lcb-top-logo {
  display: flex;
  margin-bottom: 60px;
  justify-content: space-between;

}

.lcb-top-logo .lcb-top-logo-link {
  width: 100%;
  text-align: start;
}

.lcb-top-logo .navbar-actions {
  gap: 10px;
}

.lcb-top-logo-link img {
  max-width: 160px;
}

.lcb-landing-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%,
      rgba(127, 31, 182, 0.49),
      transparent 50%);
  pointer-events: none;
}

.lcb-landing-hero-content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lcb-landing-badge {
  display: inline-flex;
  align-items: center;
  background: rgb(0 0 0 / 14%);
  border: 1px solid var(--light-purple);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
}

.lcb-landing-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  color: white;
}

.lcb-landing-gradient-text {
  background: #ffc247;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px #ffe93f80;
}

.lcb-landing-description {
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 15px;
}

.lcb-landing-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.lcb-landing-btn {
  padding: 1rem 2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.lcb-landing-btn-primary {
  background: var(--secondary-btn);
  color: var(--secondary-btn-text);
  box-shadow: 0 10px 30px rgba(171, 11, 245, 0.25);
  /* border: 1px solid #4f89f3; */
  border-radius: 32px;
  transition: .3s ease-in-out;
  font-weight: 500;
}

.global-primary-btn {
  background: var(--primary-btn);
  color: white;
  box-shadow: 0 10px 30px rgba(171, 11, 245, 0.25);
  /* border: 1px solid #4f89f3; */
  border-radius: 32px;
  transition: .3s ease-in-out;
  font-weight: 500;
  border: none;
  padding: 8px 20px;

  &:hover {
    background-color: var(--hover-color) !important;
    color: white;
  }
}

.lcb-landing-btn-primary:hover {
  background: var(--hover-color);
  /* box-shadow: 0 10px 40px rgba(11, 190, 245, 0.4); */
  transform: translateY(-2px);
  color: #fff;

}

.lcb-landing-btn-secondary {
  background: #1e293b8c;
  color: #fff;
  border: 1px solid #707379;
}

.lcb-landing-btn-secondary:hover {
  background: #334155;
  border-color: #475569;
}

.lcb-landing-hero-image {
  background-color: #ffffff80;
  border-radius: 24px;
  padding: 16px;
  max-width: 1130px;
  margin: 0 auto;
  margin-top: 56px;
  position: relative;
  z-index: 2;

}

.lcb-landing-hero-image img {

  width: 100%;
  ;
}

.lcb-landing-hero .cloud-left,
.lcb-landing-hero .cloud-right {
  position: absolute;
  left: -200px;
  width: 600px;
  z-index: 1;
  object-fit: contain;
  bottom: -100px;
  animation: moveUpDown 2s infinite alternate ease-in-out;
}

.lcb-landing-hero .cloud-right {
  left: auto;
  right: -200px;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

.lcb-problem-section {
  padding: 24px 32px 60px;
  background: var(--light-purple);
  /* background-image: url("../img/problems-bg.avif"); */

  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.lcb-problem-section h1 {
  text-align: center;
  font-size: 33px;
  letter-spacing: -.02em;
  font-weight: 500;
  margin-bottom: 30px;
}

.lcb-problem-card-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
  max-width: 1130px;
  margin: 0 auto;

}

.lcb-problem-card-grid .glass-card {
  background-image: radial-gradient(circle, #fff0, #ffffffbf);
  border: 1px solid #fff;
  border-radius: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  box-shadow: 0 4px 16px #00000014;
  max-width: 100%;
}

.glass-card-content p {
  margin-bottom: 0;
  font-weight: 300;
}

.glass-card .glass-card-title {
  display: flex;
  /* align-items: center; */
  gap: 8px;
  margin-bottom: 8px;
}

.glass-card .glass-card-title h3 {
  font-size: 15px;
  margin: 0;
  font-weight: 500;

}

.global-title-wrapper {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.global-title-wrapper .main-title-wrapper {
  width: 100%;
  max-width: 1130px;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  margin: 0 auto;
  padding: 41px;
}

.global-title-wrapper .main-title-wrapper h2 {
  text-align: center;
  margin: 0;
}

.global-content-wrapper {
  padding: 0 12px;
  background-color: #fafafa
}

.global-content-wrapper .who-is-it-content {
  max-width: 1130px;
  margin: 0 auto;
}

.card-grid-who {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 30px;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  position: relative;
}

.card-grid-who::before,
.key-features-content::before,
.how-it-help-different-teams-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.16) 0, rgba(0, 0, 0, 0.16) 1px, transparent 1px);
  background-size: 12px 12px;
  background-position: center center;
  z-index: 1;
}

.who-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); */
  transition: all 0.3s ease;
  border: 1px solid #ebebeb;
  position: relative;
  z-index: 2;
}

.card-grid-who .who-card:first-child {
  border-left: none;
}

.card-grid-who .who-card:last-child {
  border-right: none;
}

.card-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 16px 20px
}

.card-name {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  margin-top: 0;
}

.card-role {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 4px;
  min-height: 42px;
}

.card-quote {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  position: relative;
  padding-left: 0;
}

/* .card-quote::before {
  content: '"';
  font-size: 18px;
  color: #333;
  font-weight: 700;
} */

/* .card-quote::after {
  content: '"';
  font-size: 18px;
  color: #333;
  font-weight: 700;
} */

.background-very-light-grey {
  background-color: #fafafa;
  position: relative;
  border-top: 1px solid #ebebeb;
}

.container-large,
.key-features-content {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  position: relative;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
}

.key-features-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dot-grid.is-absolute:where(.w-variant-a5e41cf0-5ff8-8dfd-d948-9947283943e5) {
  display: block;
  position: absolute;
  inset: 0%;
}

.layout_dot-grid {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  /* border-right: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb; */
  background-color: #fafafa;
  flex-direction: column;
  flex: none;
  width: 100%;
  height: 7rem;
  display: flex;
  z-index: 1;
  position: relative;
}

.background-very-light-grey::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.16) 0, rgba(0, 0, 0, 0.16) 1px, transparent 1px);
  background-size: 12px 12px;
  background-position: center center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.key-features-content .key-features-card h2 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 25px;
}

.key-features-content .key-features-card:first-child {
  border-top: none;
}

.key-features-content .key-features-card:nth-child(even) {
  flex-direction: row-reverse;

}

.key-features-content .key-features-card:last-child {
  border-bottom: none;
}

.key-features-content .key-features-card p {
  margin: 0;
}

.key-features-card {
  display: flex;
  align-items: center;
  border: 1px solid #ebebeb;
  z-index: 2;
  position: relative;
  background: white;
  border-left: none;
  border-radius: none;
}

.key-features-card .key-features-left .key-features-left-content {
  padding: 30px;
  /* border-bottom: 1px solid #ebebeb; */
}

.key-features-right,
.key-features-left {
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.key-features-right {
  filter: saturate(110%);
  /* background-image: url("../img/problems-bg.avif"); */
  background-color: var(--light-purple);
  background-position: 50%;
  background-size: auto;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: 100%;
  display: flex;
}

.key-features-card .key-features-right img {
  width: 100%;
  object-fit: contain;
  max-height: 310px;
}

.badges-container {
  width: 100%;
  overflow: hidden;
  background: white;
  padding: 23px 0;
  position: relative;
}

.badges-container::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 30px;
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  ;
  z-index: 1;
  top: 0;
}

.badges-container::after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;

  width: 30px;
  right: 0;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;

}

.badges-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  white-space: nowrap;
}

/* First row - scroll left to right */
.badges-row-1 {
  animation: scrollLeft 30s linear infinite;
}

/* Second row - scroll right to left */
.badges-row-2 {
  animation: scrollRight 30s linear infinite;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: #f3e8fe;
  color: var(--primary-btn);
  border-radius: 20px;
  border: 1px solid #8400d11a;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.badge:hover {
  background: #edd2fc;
  transform: translateY(-2px);
}

/* Animation for left to right */
@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.badges-row:hover {
  animation-play-state: paused;
}

.how-it-help-different-teams-content {
  max-width: 1130px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  padding-top: 42px;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
}

.how-it-help-different-teams-content .card-team-different:first-child,
.how-it-help-different-teams-content .card-team-different:last-child {
  border-left: none;
}

.how-it-help-different-teams-content .card-team-different {
  background: #ffffff;
  border: 1px solid #ececec;
  padding: 28px;
  transition: all 0.3s ease;
  z-index: 2;
}

.stat-icon {
  font-size: 16px;
  margin-bottom: 6px;
}

.stat-value {
  margin-top: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.stat-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.blue {
  color: #2563eb;
}

.orange {
  color: #f97316;
}

.purple {
  color: #7c3aed;
}

.features-content-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
  max-width: 1130px;
  margin: 0 auto;
  position: relative;
  gap: 1px;
  background-color: #ebebeb;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
}

.feature-card {
  background-color: white;
  padding: 30px;
  z-index: 2;
  /* border: 1px solid #ececec; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .feature-card-badge {
  background: #f3e8fe;
  border-radius: 16px;
  color: var(--primary-btn);
  font-size: 13px;
  display: inline-flex;
  padding: 2px 16px;
  border: 1px solid #8400d11a;
}

.cta-content-main {
  position: relative;
  z-index: 2;
  max-width: 1130px;
  margin: 0 auto;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  text-align: center;
  padding: 50px 10px;
  background-color: #fbe9d5;
}

.cta-content-main h1 {
  margin-top: 0;
}


@media (max-width:991px) {
  .lcb-top-logo .navbar-actions {
    display: flex !important;
    gap: 8px;
  }



  .empty-row {
    display: none;
  }

  .lcb-top-logo-link img {
    max-width: 120px;
  }

  .cta-content-main h1 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {

  .card-grid-who,
  .key-features-content,
  .how-it-help-different-teams-content {
    border-left: none;
    border-right: none;
  }

  .lcb-landing-hero {
    padding: 24px 16px 0;
  }

  .lcb-top-logo .navbar-actions .primary-btn {
    padding: 8px 12px;
  }

  .lcb-landing-btn {
    padding: 0.5rem 1rem;
    /* font-weight: 600; */
    font-size: 12px;
  }

  .lcb-landing-title {
    font-size: clamp(2.3rem, 5vw, 3rem);
  }

  .lcb-landing-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .lcb-landing-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .lcb-problem-card-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;

    grid-template-columns: 1fr;
  }

  .lcb-problem-section {
    padding: 24px 16px 40px;
  }

  .glass-card .glass-card-title h3 {
    font-size: 13px;
    font-weight: 400;

  }

  .glass-card-content p {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 12px;
  }

  .card-grid-who,
  .how-it-help-different-teams-content,
  .features-content-wrapper {
    grid-template-columns: repeat(1, 1fr);

  }

  .key-features-card {
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .lcb-landing-hero {
    padding: 24px 16px 0;
    min-height: auto;
    max-height: 100vh;
  }

  .lcb-landing-title {
    font-size: clamp(2.3rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .lcb-landing-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .lcb-landing-btn {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
  }

  .lcb-landing-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .lcb-landing-badge {
    font-size: 9px;
    padding: 0.4rem 1.2rem;
  }

  .lcb-landing-hero .cloud-left,
  .lcb-landing-hero .cloud-right {
    width: 447px;
  }
}