:root {
  --bg: #f2f2f2;
  --blue: #1569dc;
  --text: #14345a;
  --muted: #173459;
  --check: #1aae61;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Nunito Sans", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.hero-wrap {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.png') center center / cover no-repeat;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 120px));
  margin: 0 auto;
}

.logo-row {
  padding-top: 22px;
}

.logo {
  width: 160px;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 535px 1fr;
  min-height: 630px;
  align-items: start;
}

.hero-copy {
  padding-top: 30px;
}

h1 {
  margin: 0 0 10px;
  font-size: 54px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #143862;
}

h1 sup {
  font-size: 16px;
  top: -1.5em;
  position: relative;
}

.intro {
  margin: 0;
  font-size: 20px;
  line-height: 1.38;
  font-weight: 600;
  color: #17375f;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.benefits li {
  position: relative;
  margin: 0 0 20px;
  padding-left: 48px;
  font-size: 22px;
  line-height: 1.28;
  color: #17375f;
  font-weight: 600;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: -1px;
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  color: var(--check);
}

.benefits sup,
.intro sup,
.price sup {
  font-size: 12px;
  position: relative;
  top: -0.5em;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  height: 50px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1772e8 0%, #1368d9 100%);
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  box-shadow: none;
}

.price {
  margin: 28px 0 0;
  font-size: 22px;
  line-height: 1.2;
  color: #17375f;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .container {
    width: min(100%, calc(100% - 50px));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 560px);
    min-height: auto;
  }

  .hero-copy {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .hero-wrap {
    min-height: auto;
  }

  .container {
    width: calc(100% - 32px);
  }

  .logo {
    width: 138px;
  }

  .hero-copy {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  h1 {
    font-size: 40px;
  }

  .intro,
  .benefits li,
  .price {
    font-size: 18px;
  }

  .benefits li {
    padding-left: 40px;
  }

  .benefits li::before {
    font-size: 28px;
  }
}
