/* ======================== Main Content ======================== */


.hero-container1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90%;
  overflow: hidden;
  z-index: 1;
  position: relative;

  background: var(--body-background);

}



.page11 {
  max-width: var(--container-width);
  width: 90%;
  margin: 0 auto;
  padding: 9rem 0 4rem;
  gap: 2rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}





.page11-left {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.page11-left h1 {
  font-size: var(--font-p-heading2);
  color: white;

}

.page11-left p {
  font-size: 1rem;
  color: white;
}


.page11-left .hero-subtitle2 {
  font-size: 0.95rem;
  color: var(--text-color-light2);
  margin-top: -0.5rem;
}

.page11-right {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}



/* ======================== Feature Grid Section ======================== */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 cols on desktop */
  gap: 1rem;
  width: 100%;
  margin: 0;
  /* Space above review tabs */
}

.feature-item {
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0 !important;
  /* Sharp edges as requested */
  transition: transform 0.2s ease, background 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  /* Subtle hover effect */
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
  text-align: left;
}

.feature-title {
  font-weight: 700;
  font-size: var(--font-p-body);
  color: white;
  line-height: 1.2;
}

.feature-subtitle {
  font-size: var(--font-p-small);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
}

/* responsive */
@media (max-width: 940px) {
  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cols on tablet/mobile */
  }
}





@media (max-width: 940px) {}

@media (max-width: 480px) {
  .page11 {
    width: 90% !important;
    max-width: 100% !important;

  }


}

/* ======================== Tablet & Below (≤ 768px) ======================== */
@media (max-width: 940px) {
  .page11 {
    flex-direction: column;
    align-items: center;
    text-align: center;

    gap: 3rem;
  }

  .page11-left,
  .page11-right {
    width: 100%;
    justify-content: center;
  }

  .page11-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

}