/* --- Base reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

*,
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted",
    "Segoe UI", "Liberation Sans", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted",
    "Segoe UI", "Liberation Sans", sans-serif;
}

.nav-wrapper {
  width: 100%;
  background-color: #9ef;
  border-bottom: 0px solid #c9c9c9;
  position: fixed;
  top: 0;
}

nav {
  display: flex;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 1rem;
  height: 4em;
}

nav .brand {
  font-size: 120%;
  font-weight: 500;
}

nav .phone {
  font-size: 120%;
  font-weight: 600;
}

nav a.phone {
  color: black;
  text-decoration: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.wrapper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  display: flex;
  justify-content: center;
  margin-top: 10em;
}

h1 {
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: 2rem;
}

h2 {
  margin-top: 1em;
  text-align: center;
  font-weight: 500;
  color: #666;
  max-width: 700px;
  margin: auto;
  line-height: 150%;
  margin-bottom: 4rem;
}

.cta {
  display: flex;
  justify-content: center;
}

.cta a {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 1.5rem 5rem;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 2em;
  cursor: pointer;
  margin-bottom: 8rem;
  text-decoration: none;
}

cta button:hover {
  background-color: #0056b3;
}

.features {
  background-color: #9ef;
  border-radius: 2em;
  padding: 2rem;
}

.features ul {
  list-style: none;
  padding: 0;
  margin: 0 auto; /* centers the whole ul */
  text-align: left; /* keeps text left-aligned */
  width: fit-content; /* shrink to content width */

  font-size: 1.5em;
}

.features li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}

.features li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}

.legal {
  margin-top: 10rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 2em;
}

.legal a {
  font-size: small;
  color: #999;
  text-decoration: none;
}
