* {
  font-family: "Space Grotesk";
  box-sizing: border-box;
}

a {
  color: #000;
  text-decoration: none;
}

.section-margin {
  margin: 0px 6%;
}

body {
  margin: 0;
  padding: 0;
}

header {
  padding: 15px 0px;
}

header nav .navbar-brand {
  display: flex;
  flex-wrap: wrap;
}

header nav .navbar-brand svg {
  width: 45px;
  height: 45px;
}

header nav .navbar-brand .header-info {
  margin-left: 10px;
}

header nav .navbar-brand .header-info * {
  margin: 0;
}

header nav .navbar-brand .header-info .title {
  font-size: 22px;
  font-style: normal;
  font-weight: bold;
}

header nav .navbar-brand .header-info .description {
  font-size: 13px;
}

header nav .nav-links {
  display: flex;
  align-items: center;
}

header nav .nav-links a {
  margin: 0 10px;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  align-items: center;
  display: inline-flex;
}

header nav .nav-links a .icon {
  font-size: 25px;
  margin-right: 10px;
}

header nav .nav-links a:hover {
  color: rgb(110, 110, 110);
}

header nav .nav-links a.active {
  color: rgb(110, 110, 110);
}
header nav .d-flex {
  text-align: center;
  align-items: center;
}

header nav .get-started {
  display: flex;
  align-items: center;
  background-color: #ffbf23;
  border: 1px solid #000;
  font-size: 14px;
  height: 40px;
  padding: 0px 15px;
  border-radius: 6px;
  font-weight: bold;
  transition: color 0.4s ease 0s;
  margin-left: 10px;
}

header nav .get-started:hover {
  background-color: #000;
  color: #ffbf23;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #111010;
  overflow-x: hidden;
}

.main-section {
  min-height: 690px;
  padding: 50px 7% 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #91c1ed;
  position: relative;
  overflow: hidden;
}

.main-section::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 2px solid #111010;
  border-radius: 50%;
  right: -130px;
  bottom: -180px;
}

.hero-copy {
  max-width: 570px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-copy h1 {
  font-size: clamp(54px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: -3px;
  margin: 0 0 28px;
  font-weight: 700;
}

.hero-copy h1 span,
h2 span {
  color: #0e8f6b;
}

.hero-description {
  max-width: 390px;
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 30px;
}

.main-section > svg {
  width: min(43vw, 520px);
  height: 520px;
  position: relative;
  z-index: 1;
}

.primary-button,
.price-card a {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  background: #ffbf23;
  border: 1px solid #111010;
  color: #111010;
  padding: 14px 21px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  transition: 0.25s ease;
}

.primary-button:hover,
.price-card a:hover {
  background: #111010;
  color: #ffbf23;
  transform: translateY(-2px);
}

.intro-section,
.pricing-section,
.contact-section {
  padding-top: 125px;
  padding-bottom: 125px;
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

h2 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -2px;
  margin: 0;
}

.intro-copy {
  max-width: 440px;
  font-size: 18px;
  line-height: 1.6;
}

.text-link,
.feature-card a {
  color: #0e8f6b;
  font-weight: bold;
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.features-section,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 290px;
  padding: 35px;
  border: 1px solid #111010;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-green {
  background: #0acb8b;
}
.feature-yellow {
  background: #ffbf23;
}
.feature-pink {
  background: #ffd7ef;
}

.feature-card > i {
  font-size: 30px;
  margin-bottom: 50px;
}

.feature-card h3 {
  font-size: 28px;
  margin: 0 0 10px;
}

.feature-card p {
  line-height: 1.5;
  margin-top: 0;
}
.feature-card a {
  margin-top: auto;
  color: #111010;
}

.stats-section {
  margin-top: 125px;
  padding: 68px 0;
  background: #111010;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stats-grid div {
  border-right: 1px solid #555;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stats-grid div:last-child {
  border: 0;
}
.stats-grid strong {
  color: #ffbf23;
  font-size: 48px;
}
.stats-grid span {
  font-size: 14px;
}

.centered-heading {
  text-align: center;
  margin-bottom: 60px;
}
.price-card {
  border: 1px solid #111010;
  padding: 35px;
  min-height: 270px;
}
.price-card.featured-price {
  background: #91c1ed;
}
.plan-name {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
}
.price-card h3 {
  font-size: 34px;
  margin: 45px 0 12px;
}
.price-card h3 small {
  font-size: 13px;
  font-weight: normal;
}
.price-card > p:not(.plan-name) {
  margin-bottom: 30px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-copy > p:last-child {
  max-width: 350px;
  line-height: 1.6;
  margin-top: 30px;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 7px;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #111010;
  padding: 14px;
  margin-bottom: 20px;
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #0acb8b;
}
.form-message {
  min-height: 20px;
  font-size: 13px;
  color: #0e8f6b;
  font-weight: bold;
}

footer {
  background: #ffbf23;
  border-top: 1px solid #111010;
  padding: 30px 0;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-brand strong {
  font-size: 25px;
}
.footer-brand span,
footer p {
  font-size: 12px;
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 22px;
}

@media (max-width: 900px) {
  header nav .nav-links {
    display: none;
  }
  header nav .nav-links.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 6%;
    right: 6%;
    background: #fff;
    border: 1px solid #111010;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 18px;
    z-index: 5;
    box-shadow: 5px 5px 0 #111010;
  }
  header nav .nav-links.open a {
    line-height: 42px;
    margin: 0;
    border-bottom: 1px solid #e5e5e5;
  }
  header nav .nav-links.open a:last-child {
    border-bottom: 0;
  }
  header nav .get-started {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: 20px;
  }
  .main-section {
    padding-top: 70px;
    min-height: auto;
  }
  .main-section > svg {
    width: 42vw;
    height: auto;
  }
}

@media (max-width: 800px) {
  .intro-section,
  .features-section,
  .pricing-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-section {
    gap: 35px;
  }

  .feature-card {
    min-height: 220px;
  }

  .feature-card > i {
    margin-bottom: 30px;
  }
}

@media (max-width: 650px) {
  .section-margin {
    margin: 0 6%;
  }
  .main-section {
    display: block;
    padding: 65px 8% 35px;
  }
  .hero-copy h1 {
    font-size: 58px;
  }
  .main-section > svg {
    display: block;
    width: 85%;
    height: auto;
    margin: 35px auto 0;
  }
  .intro-section,
  .contact-section {
    display: block;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .intro-copy {
    margin-top: 35px;
  }
  .features-section,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 250px;
  }
  .stats-section {
    margin-top: 80px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid #555;
    padding-bottom: 25px;
  }
  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 410px) {
  header {
    padding: 10px 0;
  }

  header nav .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  header nav .navbar-brand svg {
    width: 34px;
    height: 34px;
  }

  header nav .navbar-brand .header-info {
    margin-left: 6px;
  }

  header nav .navbar-brand .header-info .title {
    font-size: 19px;
  }

  header nav .navbar-brand .header-info .description {
    display: none;
  }

  .menu-toggle {
    margin-left: 8px;
    padding: 4px;
    font-size: 18px;
  }

  .main-section {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 13vw, 52px);
    letter-spacing: -1.5px;
    overflow-wrap: normal;
  }
}

@media (max-width: 300px) {
  .section-margin {
    margin-left: 4%;
    margin-right: 4%;
  }

  .main-section {
    padding: 45px 4% 25px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(30px, 13vw, 40px);
    line-height: 0.98;
    letter-spacing: -0.5px;
  }

  .intro-section h2 {
    max-width: 100%;
    font-size: clamp(28px, 11vw, 36px);
    letter-spacing: -1px;
    overflow-wrap: anywhere;
  }

  .hero-description {
    font-size: 15px;
  }

  .main-section > svg {
    width: 100%;
    margin-top: 25px;
  }

  .features-section {
    width: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-card {
    min-width: 0;
    min-height: 0;
    padding: 22px 18px;
  }

  .feature-card > i {
    margin-bottom: 24px;
  }

  .feature-card h3 {
    font-size: 24px;
  }

  .feature-card p {
    overflow-wrap: anywhere;
  }
}
