.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a6ea8 0%, #0d9488 50%, #0a6ea8 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { animation: fadeInUp 0.8s ease; }

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
}

.highlight {
  color: #facc15;
  font-weight: 600;
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero__phone {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__phone i { color: rgba(255,255,255,0.5); }

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  animation: pulseRing 4s ease-in-out infinite;
}

.hero__icon {
  position: absolute;
  font-size: 7rem;
  color: rgba(255,255,255,0.2);
}

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

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__title { font-size: 2.2rem; }
  .hero__subtitle { font-size: 1.15rem; }
  .hero__desc { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__phone { justify-content: center; }
  .hero__circle { width: 240px; height: 240px; }
  .hero__icon { font-size: 4rem; }
  .hero__visual { order: -1; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.8rem; }
  .hero__subtitle { font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__circle { width: 180px; height: 180px; }
  .hero__icon { font-size: 3rem; }
}
