/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

@media (max-width: 767px) {
  .hero {
    padding-top: 80px;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero__container {
  position: relative;
  z-index: 2;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

@media (min-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero__title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
}

@media (max-width: 767px) {
  .hero__title {
    font-size: var(--font-size-3xl);
  }
}

.hero__title-gradient {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: var(--spacing-base);
  margin-bottom: var(--spacing-3xl);
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--spacing-lg);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--white);
}

.hero__stat-text {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

/* ===== HERO VISUAL ELEMENTS ===== */
.hero__visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .hero__visual {
    height: 300px;
  }
}

.hero__floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-sm) var(--spacing-base);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  box-shadow: var(--shadow-glass);
  font-size: var(--font-size-sm);
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .hero__floating-card {
    font-size: var(--font-size-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
  }
}

.hero__floating-card--1 {
  top: 15%;
  left: 5%;
  animation: float-1 8s ease-in-out infinite;
}

.hero__floating-card--2 {
  top: 25%;
  right: 10%;
  animation: float-2 10s ease-in-out infinite;
}

.hero__floating-card--3 {
  bottom: 30%;
  left: 15%;
  animation: float-3 12s ease-in-out infinite;
}

.hero__floating-card--4 {
  top: 60%;
  right: 5%;
  animation: float-4 9s ease-in-out infinite;
}

.hero__floating-card--5 {
  bottom: 15%;
  right: 25%;
  animation: float-5 11s ease-in-out infinite;
}

@media (max-width: 767px) {
  .hero__floating-card--1 {
    top: 10%;
    left: 2%;
  }

  .hero__floating-card--2 {
    top: 20%;
    right: 5%;
  }

  .hero__floating-card--3 {
    bottom: 35%;
    left: 8%;
  }

  .hero__floating-card--4 {
    top: 65%;
    right: 2%;
  }

  .hero__floating-card--5 {
    bottom: 10%;
    right: 20%;
  }
}