
.hero2 {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(52, 211, 153, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero2__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero2__content {
  animation: fadeInLeft 0.8s ease-out;
}

.hero2__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 50px;
  color: #34d399;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}

.hero2__badge--no-animation {
  animation: none;
}

.hero2__badge-icon {
  width: 16px;
  height: 16px;
  animation: spin 3s linear infinite;
}

.hero2__title {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 24px 0;
}

.hero2__title-highlight {
  background: linear-gradient(135deg, #34d399 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero2__description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px 0;
  max-width: 540px;
}

.hero2__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero2__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.hero2__btn--primary {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(52, 211, 153, 0.3);
}

.hero2__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(52, 211, 153, 0.4);
}

.hero2__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero2__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero2__btn svg {
  width: 20px;
  height: 20px;
}

.hero2__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero2__stat-value {
  font-size: 32px;
  font-weight: 900;
  color: #34d399;
  line-height: 1;
}

.hero2__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.hero2__visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

.hero2__image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero2__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero2__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero2__floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

.hero2__floating-card--1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.hero2__floating-card--2 {
  bottom: 15%;
  left: -20px;
  animation-delay: 1s;
}

.hero2__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.hero2__card-icon svg {
  width: 24px;
  height: 24px;
}

.hero2__card-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.hero2__card-text {
  font-size: 14px;
  color: rgba(15, 23, 42, 0.7);
  margin: 0;
}

.hero2__decoration {
  position: absolute;
  pointer-events: none;
}

.hero2__decoration--circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .hero2__grid {
    gap: 40px;
  }

  .hero2__title {
    font-size: 48px;
  }

  .hero2__floating-card--1 {
    right: -10px;
  }

  .hero2__floating-card--2 {
    left: -10px;
  }
}

@media (max-width: 768px) {
  .hero2 {
    min-height: auto;
  }

  .hero2__container {
    padding: 60px 20px;
  }

  .hero2__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero2__title {
    font-size: 36px;
  }

  .hero2__description {
    font-size: 16px;
  }

  .hero2__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero2__btn {
    justify-content: center;
    width: 100%;
  }

  .hero2__stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero2__visual {
    order: -1;
  }

  .hero2__floating-card {
    display: none;
  }

  .hero2__decoration--circle {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero2__title {
    font-size: 28px;
  }

  .hero2__stat-value {
    font-size: 24px;
  }

  .hero2__stats {
    gap: 20px;
  }
}
