.hero {
  background: linear-gradient(125deg, #FFE4EC 0%, #DCFCE8 45%, #E0F2FE 100%);
  border-radius: 0 0 3rem 3rem;
  padding: 3rem 0 4rem 0;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  animation: fadeIn 0.6s ease;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(to right, #B45370, #4A6FA5);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #2E3A3C;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-badge {
  background: rgba(255,255,240,0.8);
  backdrop-filter: blur(4px);
  border-radius: 40px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.5);
}

/* Hero CTA Button */
.hero-text .btn-primary {
  background: #F59E7A;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 60px;
  font-weight: 700;
  color: white;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  box-shadow: 0 6px 20px rgba(245, 158, 122, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  width: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
}

.hero-text .btn-primary:hover {
  background: #E88762;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 122, 0.4);
}

.hero-text .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 122, 0.3);
}

.hero-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.8s ease;
}

.hero-image i {
  font-size: clamp(4rem, 12vw, 8rem);
  color: #F8B4A2;
  filter: drop-shadow(6px 8px 12px rgba(0,0,0,0.1));
}

/* Ribbon */
.ribbon {
  background: #FFF3E0;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.8rem;
  margin: 2rem 0 1rem;
  border: 1px solid rgba(0,0,0,0.03);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.ribbon i {
  font-size: 1.3rem;
  color: #F4C542;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets */
@media (max-width: 1024px) {
  .hero {
    padding: 2.5rem 0 3.5rem 0;
  }
  
  .hero-content {
    gap: 1.5rem;
  }
}

/* Mobile Devices */
@media (max-width: 780px) {
  .hero {
    padding: 2rem 0 3rem 0;
    border-radius: 0 0 2rem 2rem;
  }
  
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 1.5rem;
  }
  
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-text p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-text .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    max-width: 400px;
  }
  
  .hero-badge {
    font-size: 0.85rem;
  }
  
  .ribbon {
    padding: 0.5rem 1.2rem;
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0 2.5rem 0;
    border-radius: 0 0 1.5rem 1.5rem;
  }
  
  .hero-content {
    gap: 1rem;
  }
  
  .hero-text .btn-primary {
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
  
  .ribbon {
    padding: 0.4rem 1rem;
  }
  
  .ribbon i {
    font-size: 1.1rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}