.info-hero {
  background: var(--clr-black);
  padding: 72px 72px 64px;
  position: relative;
  overflow: hidden;
}

.info-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
}

.info-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73,115,177,.35), transparent 60%);
}

.info-hero__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.info-hero__left {
  max-width: 520px;
}

.info-hero__tag {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.info-hero__title {
  font-size: clamp(42px, 6vw, 64px);
  color: #fff;
  line-height: 1.1;
}

.info-hero__title em {
  color: var(--clr-accent);
  font-style: italic;
}

.info-hero__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
}

.info-hero__right {
  display: flex;
  gap: 40px;
  align-items: flex-end;
}

.info-hero__stat span {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.info-hero__stat strong {
  display: block;
  font-size: 20px;
  color: #fff;
  margin-top: 4px;
}

.info-body {
  padding: 72px;
  background: var(--clr-surface);
}

.info-body__inner {
  max-width: 720px;
}

.info-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
}

.info-section h2 {
  font-size: 30px;
  margin: 10px 0 24px;
}

.info-section h2 em {
  color: var(--clr-accent);
}

.info-section p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

.info-section .lead {
  font-size: 18px;
  color: #111;
}

.info-divider {
  height: 1px;
  background: #eee;
  margin: 40px 0;
}

.info-flags {
  font-size: 24px;
  letter-spacing: 10px;
}

.info-strip {
  padding: 64px 72px;
  background: #fafafa;
}

.info-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  padding: 28px;
  border: 1px solid #eee;
  background: #fff;
}

.info-card--dark {
  background: #0b0b0b;
  color: #fff;
}

.info-card span {
  font-size: 10px;
  text-transform: uppercase;
  color: #aaa;
}

.info-card h3 {
  font-size: 20px;
  margin: 10px 0;
}

.info-card p {
  font-size: 14px;
  color: #666;
}

.info-card--dark p {
  color: rgba(255,255,255,0.6);
}

.info-btn {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

@media (max-width: 900px) {
  .info-hero__inner {
    flex-direction: column;
  }

  .info-hero__right {
    justify-content: space-between;
  }

  .info-body {
    padding: 48px 32px;
  }

  .info-strip__inner {
    grid-template-columns: 1fr;
  }
}