* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  overflow: visible;
  padding: clamp(1rem, 3vw, 2rem);
}

.hero-title{
  opacity: 1 !important;
}
.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: white;
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  border-radius: 50%;
  filter: blur(clamp(40px, 8vw, 80px));
}

.orb-1 {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(0, 74, 173, 0.2));
  top: -20vh;
  right: -10vw;
}

.orb-2 {
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.15), rgba(0, 74, 173, 0.15));
  bottom: -30vh;
  left: -20vw;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
  background-size: clamp(20px, 3vw, 30px) clamp(20px, 3vw, 30px);
}

.content-container {
  width: min(95%, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: clamp(9rem, 15vh, 15rem);
}

.hero-left {
  padding-right: clamp(0rem, 3vw, 2rem);
  text-align: center;
}

.hero-title-2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.3rem, 1vw, 0.5rem) clamp(0.5rem, 2vw, 1rem);
  background: rgba(13, 110, 253, 0.1);
  border-radius: 100px;
  color: #0D6EFD;
  font-weight: 500;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.badge-icon {
  width: clamp(16px, 2vw, 20px);
  height: clamp(16px, 2vw, 20px);
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1F2937;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.gradient-text {
  background: linear-gradient(135deg, #0D6EFD, #0A58CA);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  max-width: min(90%, 600px);
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem) auto;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  width: 100%;
  justify-content: center;
}

.primary-cta,
.secondary-cta {
  padding: 2rem 2.5rem !important;
  border-radius: 8px !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  width: 280px !important;
  height: 60px !important;
  justify-content: center;
  font-size: 14px !important;
}

.primary-cta {
  background: linear-gradient(135deg, #0D6EFD, #0A58CA);
  color: white;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.secondary-cta {
  background: white;
  color: #0D6EFD;
  border: 2px solid rgba(13, 110, 253, 0.2);
  transition: all 0.2s;
}

.secondary-cta:hover {
  background: rgba(13, 110, 253, 0.05);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1 auto;
  min-width: min(100%, 150px);
  text-align: center;
}

.stat-number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #0D6EFD, #0A58CA);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: #6B7280;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
}

.stat-divider {
  width: 1px;
  height: clamp(30px, 5vw, 40px);
  background: rgba(99, 102, 241, 0.2);
  display: none;
}

@media (min-width: 768px) {
  .stat-divider {
    display: block;
  }
  
  .stat-item {
    text-align: left;
  }

  .hero-left {
    text-align: left;
  }

  .hero-description {
    margin-left: 0;
  }

  .cta-group {
    justify-content: flex-start;
  }

  .primary-cta,
  .secondary-cta {
    width: auto !important;
    min-width: 200px !important;
  }
}

.app-preview {
  position: relative;
  width: 100%;
  max-width: min(100%, 700px);
  margin: 0 auto;
  z-index: 3;
}

.preview-window {
  position: relative;
  border-radius: clamp(16px, 3vw, 24px);
  overflow: visible;
  z-index: 3;
}

.preview-image {
  width: 100%;
  height: auto;
  display: block;
}

.floating-cards-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(1rem, 3vw, 2rem);
  width: 100%;
}

.floating-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: clamp(12px, 2vw, 16px);
  padding: clamp(1rem, 2vw, 1.25rem);
  box-shadow: 0 15px 35px -5px rgba(13, 110, 253, 0.15);
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  width: min(100%, 280px);
  margin: 0 auto;
}

.card-icon {
  width: clamp(32px, 5vw, 40px);
  height: clamp(32px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.1);
  border-radius: clamp(8px, 1.5vw, 12px);
  color: #0D6EFD;
}

.card-content h4 {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #6B7280;
  margin-bottom: 0.25rem;
}

.card-number {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #0D6EFD;
}

@media (min-width: 1024px) {
  .floating-cards-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    flex-direction: row;
  }

  .floating-card {
    position: absolute;
    width: clamp(220px, 25vw, 280px);
  }

  .card-orders {
    right: -10vw;
    top: 25%;
  }

  .card-revenue {
    left: -10vw;
    bottom: 25%;
  }
}