/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}

/* LAYOUT */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* TYPOGRAPHY */
h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

p {
  color: #555;
}

.eyebrow {
  color: #c00;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtext {
  max-width: 500px;
  margin-bottom: 20px;
}

/* NAV */
.nav {
  border-bottom: 1px solid #eee;
  background: #fff;
  position: relative;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo a {
  font-weight: 700;
  text-decoration: none;
  color: #111;
}

/* DESKTOP NAV */
.site-nav {
  display: flex;
  gap: 20px;
}

.site-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #111;
  margin: 4px 0;
  display: block;
}

/* MOBILE */
@media(max-width: 900px) {

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #eee;

    display: none;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .site-nav.open {
    display: flex;
  }
}

/* HERO */
.hero {
  background: #f7f7f7;
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: center;
}

.hero-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.hero-card ul {
  list-style: none;
  margin-top: 10px;
}

.hero-card li {
  margin-bottom: 10px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 10px;
}

.btn-primary {
  background: #c00;
  color: #fff;
}

.btn-primary:hover {
  background: #a00;
}

.btn-secondary {
  border: 1px solid #ccc;
  color: #333;
}

/* SECTIONS */
.section {
  padding: 60px 0;
}

.bg-light {
  background: #f9f9f9;
}

/* STEPS */
.steps {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.step {
  flex: 1;
}

.step span {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.site-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.site-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.site-card a {
  display: inline-block;
  margin-top: 10px;
  color: #c00;
  font-weight: 600;
  text-decoration: none;
}

/* PRICING */
.pricing-card {
  border: 1px solid #eee;
  padding: 30px;
  max-width: 400px;
  border-radius: 10px;
  margin-top: 30px;
}

.price {
  font-size: 36px;
  color: #c00;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.pricing-card li {
  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta p {
  color: #ccc;
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding: 40px 0;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* MOBILE */
@media(max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}