@keyframes heroPawFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-18px) rotate(12deg);
    opacity: 0.3;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.15;
  }
}
@keyframes heroContentSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 12s ease;
}
.hero:hover .hero__bg {
  transform: scale(1.04);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(26, 43, 74, 0.75) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(6, 182, 212, 0.25) 100%);
}
.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px;
  width: 100%;
  animation: heroContentSlideUp 1s ease-out;
}
.hero__content {
  max-width: 700px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: 6.4rem;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 2rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 48px;
  max-width: 560px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1.6rem;
  }
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: var(--heading-color);
  padding: 20px 48px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.01em;
}
.hero__btn i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}
.hero__btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  background: var(--accent-color);
  color: #fff;
}
.hero__btn:hover i {
  transform: translateX(4px);
  color: #fff;
}
.hero__btn-arrow {
  font-size: 2rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}
.hero__btn:hover .hero__btn-arrow {
  transform: translateX(5px);
  color: #fff;
}
.hero__paw {
  position: absolute;
  z-index: 2;
  font-size: 2.8rem;
  opacity: 0.15;
  animation: heroPawFloat 6s infinite ease-in-out;
  color: rgba(255, 255, 255, 0.5);
}
.hero__paw--1 {
  bottom: 80px;
  right: 100px;
  animation-delay: 0s;
}
.hero__paw--2 {
  top: 100px;
  right: 250px;
  animation-delay: -2.5s;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }
  .hero__container {
    padding: 60px 24px;
  }
}
