* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #10201d;
  background: #eef7f3;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 56px 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  min-height: 72vh;
}

.icon {
  width: 132px;
  height: 132px;
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(16, 32, 29, 0.18);
}

.eyebrow {
  margin: 0;
  color: #2e8f83;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 10vw, 96px);
  line-height: 0.94;
}

h2 {
  margin-top: 0;
}

.lede {
  max-width: 640px;
  margin: 0;
  color: #50645f;
  font-size: 22px;
  line-height: 1.42;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badges span {
  padding: 9px 12px;
  background: #fbfdf9;
  border: 1px solid #badbd2;
  border-radius: 8px;
  font-weight: 700;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 6px 0 0;
}

.phone {
  width: min(100%, 340px);
  align-self: center;
  justify-self: end;
  aspect-ratio: 1284 / 2778;
  overflow: hidden;
  border: 10px solid #10201d;
  border-radius: 34px;
  background: #10201d;
  box-shadow: 0 24px 70px rgba(16, 32, 29, 0.24);
}

.phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px;
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: #2e8f83;
  font-weight: 800;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .hero-copy {
    min-height: auto;
  }

  .phone {
    justify-self: start;
    width: min(100%, 300px);
  }
}
