/* Discover EstiMate Section Styles */
.discover-section {
  padding: 64px 40px;
  background: white;
  overflow: hidden;
  color: white;
  position: relative;
}

.discover-container {
  max-width: 1307px;
  margin: 0 auto;
}

.discover-wrapper {
  background: #3271cc;
  border-radius: 24px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.discover-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.discover-glow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.discover-title {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 67px;
  text-align: center;
  margin-bottom: 64px;
  color: white;
  position: relative;
  z-index: 1;
}

.discover-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  z-index: 1;
}

.discover-item {
  background: linear-gradient(
    180deg,
    rgba(127, 127, 152, 0.2) 0%,
    rgba(255, 255, 255, 0.2) 76.44%
  );
  border: none;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-grow: 1;
  width: 280px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.discover-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.8) 20%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

.discover-item:hover {
  transform: translateY(-4px);
}

.discover-number {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 32px;
  color: rgba(255, 152, 0, 0.8);
  position: relative;
  z-index: 1;
  margin: 0;
}

.discover-text {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  margin: 0;
}

.discover-text strong {
  font-weight: 900;
}

/* Tablet Styles */
@media (max-width: 768px) {
  .discover-section {
    padding: 32px 20px;
  }

  .discover-wrapper {
    padding: 24px;
  }

  .discover-title {
    text-align: left;
    font-size: 64px;
    line-height: 78px;
    margin-bottom: 40px;
  }

  .discover-grid {
    gap: 16px;
  }

  .discover-item {
    padding: 2rem 1.5rem;
  }

  .discover-number {
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
    line-height: 32px;
    color: rgba(255, 152, 0, 0.8);
  }

  .discover-text {
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    color: #ffffff;
  }

  .discover-text strong {
    font-weight: 900;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .discover-section {
    padding: 32px 20px;
  }

  .discover-wrapper {
    padding: 24px;
  }

  .discover-title {
    text-align: left;
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 40px;
  }

  .discover-grid {
    gap: 20px;
  }

  .discover-item {
    padding: 1.25rem;
    min-width: 100%;
    gap: 1rem;
  }

  .discover-number {
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 40px;
    color: rgba(255, 152, 0, 0.8);
  }

  .discover-text {
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
  }

  .discover-text strong {
    font-weight: 900;
  }
}
