.hero {
  position: relative;
  color: #fff;
  overflow: hidden;

  background: linear-gradient(140deg,
  #0b1e3d 0%,
  #0d4a5c 30%,
  #0a7c7e 60%,
  #0b2a3a 100%
  );
  background-size: 300% 300%;
  animation: heroGradient 20s ease infinite;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
          radial-gradient(ellipse at 20% 50%, rgba(10, 200, 200, 0.08) 0%, transparent 60%),
          radial-gradient(ellipse at 80% 20%, rgba(255,255,255, 0.04) 0%, transparent 50%);
  z-index: 0;
}

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

.hero__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero__photo {
  display: none;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: #ace3e6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: var(--space-lg);
}

.hero__badges {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
  margin: 0 auto var(--space-lg);
  text-align: left;
}

.hero__badges li {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 500;
}

.hero__content .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.phone {
  white-space: nowrap;
}

@media (min-width: 900px) {

  .hero {
    background: linear-gradient(120deg,
    #0a9797 0%,
    #0a5c5e 45%,
    #0d8a8c 75%,
    #10a8aa 100%
    );
    min-height: 480px;
  }

  .hero::before {
    display: block;
    background:
            radial-gradient(ellipse at 15% 60%, rgba(10, 220, 220, 0.10) 0%, transparent 55%),
            radial-gradient(ellipse at 70% 10%, rgba(255,255,255, 0.05) 0%, transparent 45%);
  }

  .hero__inner {
    grid-template-columns: 1fr auto;
    gap: 0px;
    padding: 60px 0 0 40px;
    align-items: end;
  }

  .hero__content {
    text-align: left;
    margin: 0;
    padding-bottom: 60px;
  }

  .hero__badges {
    margin-left: 0;
  }

  .hero__content .btn {
    margin: 0;
  }

  .hero__photo {
    display: block;
    align-self: end;
    margin-right: -20px;
  }

  .hero__photo img {
    display: block;
    height: 520px;
    width: auto;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    filter:
            drop-shadow(0 0 0 2px white)
            drop-shadow(0 0 0 2px white)
            drop-shadow(-6px 0 20px rgba(0,0,0,0.4));
  }
}