.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  isolation: isolate;
  background:
    linear-gradient(90deg, #f7fbff 0%, rgba(247, 251, 255, 0.95) 40%, rgba(247, 251, 255, 0.54) 68%, rgba(247, 251, 255, 0.16) 100%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fe 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(18, 93, 206, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 93, 206, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  height: clamp(170px, 24vh, 300px);
  content: "";
  background: linear-gradient(180deg, rgba(247, 251, 255, 0) 0%, rgba(247, 251, 255, 0.82) 58%, #ffffff 100%);
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -3;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #f7fbff;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right top;
  filter: saturate(0.96) contrast(1.02);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.9) 36%, rgba(247, 251, 255, 0.34) 64%, rgba(247, 251, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(247, 251, 255, 0.28) 72%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-content {
  width: min(660px, 100%);
  padding: 92px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: var(--mint);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2.55rem, 8vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  margin-bottom: 22px;
  color: #16284a;
  font-size: clamp(1.2rem, 3vw, 1.92rem);
  line-height: 1.18;
  font-weight: 800;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.hero-note svg {
  color: var(--blue);
  flex: 0 0 auto;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 630px;
  padding-top: 28px;
  margin-bottom: 30px;
  border-top: 1px solid rgba(96, 112, 137, 0.22);
}

.feature-mini {
  display: grid;
  gap: 9px;
  min-width: 0;
  color: #263859;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.feature-mini .icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--navy-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
