.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 40px 80px;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 32px;
  animation: pulse 2s ease-in-out infinite;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-title {
  margin: 0 0 32px 0;
  line-height: 1.1;
}

.hero-greeting {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  -webkit-text-fill-color: var(--color-text-muted);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.hero-name {
  display: block;
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 900;
  font-family: "Space Grotesk", "Inter", sans-serif;
  background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 50%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  margin: 0 0 32px 0;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.typing-text {
  position: relative;
  display: inline-block;
}

.typing-text::after {
  position: absolute;
  right: -12px;
  animation: blink 1s step-end infinite;
  color: var(--color-primary);
}

.hero-description {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  max-width: 650px;
  font-weight: 400;
}

.hero-description strong {
  color: var(--color-text);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900;
  background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.floating-card {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
}

.floating-card.card-1 {
  top: 10%;
  left: 20%;
  animation: float 6s ease-in-out infinite;
  animation-delay: 0s;
}

.floating-card.card-1 i {
  color: #dd0031;
}

.floating-card.card-2 {
  top: 20%;
  right: 15%;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

.floating-card.card-2 i {
  color: #61dafb;
}

.floating-card.card-3 {
  bottom: 30%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
  animation-delay: 3s;
}

.floating-card.card-3 i {
  color: #42b883;
}

.floating-card.card-4 {
  bottom: 15%;
  right: 25%;
  animation: float 6s ease-in-out infinite;
  animation-delay: 4.5s;
}

.floating-card.card-4 i {
  color: #f7df1e;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeIn 1s ease-out 1s both;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%,
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    height: 350px;
    order: -1;
  }

  .floating-card {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 24px 60px;
    min-height: 90vh;
  }

  .hero-content {
    text-align: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    gap: 20px;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .hero-visual {
    height: 280px;
  }

  .floating-card {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
