/* ========== PAGE CONTENT ========== */
.section-divider {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.page {
  padding: 28px;
  margin: 0 auto;
  max-width: 1100px;
}

.hero {
  max-width: 980px;
  margin: 16px auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  padding: 24px;
  border-radius: 10px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 8px 0;
}

.hero p {
  color: #cfcfcf;
  line-height: 1.6;
}

.hero p a {
  color: #00aaff;
}

.hero img {
  display: center;
  width: 45.33%;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  background: #00aaff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  margin-left: 10px;
}

.summary {
  text-align: center;
}

.feature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem;
}

.feature-block.alt {
  flex-direction: row-reverse;
}

.feature-block:first-of-type .feature-media-logo img {
  max-width: 200px !important;
  width: 100%;
}

.uptime-logo img {
  max-width: 285px !important;
  width: 100%;
  height: auto;
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.feature-text p {
  line-height: 1.6;
  color: #cfcfcf;
}

.feature-text .subnote {
  color: lightslategray;
  font-style: italic;
}

.feature-media {
  flex: 1;
  text-align: right;
}

.feature-media img {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  box-shadow: 3.6px 7.2px 7.2px hsl(0deg 0% 0% / 0.39);
}

.primary-btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 12px 20px;
  background: #01b6f6;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25;
}

.premium-btn:hover {
  background: #00aaff;
}

/* ========== RESPONSIVE ========== */
@media(max-width:1010px) {

  .nav-center,
  .premium-btn,
  .brand {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .feature-block {
    margin: 4rem 1rem;
  }

  .feature-block,
  .feature-block.alt {
    flex-direction: column;
    text-align: center;
  }

  .feature-media {
    max-width: 90%;
  }

  .feature-text {
    order: 1;
  }

  .feature-media {
    order: 2;
  }

  .feature-media img {
    max-width: 90%;
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}