/* Checkout page */

.co-hero {
  padding: 4.5rem 0 0;
  text-align: center;
  background: linear-gradient(1deg, #eff6ff 0%, #fefefe 100%);
}

.co-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.375rem);
  max-width: 52rem;
  margin-inline: auto;
  line-height: 1.3;
}

.co-hero p {
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 1rem auto 1.5rem;
}

.co-hero__visual {
  margin-top: 2rem;
}

.co-hero__image--mobile {
  display: none;
}

@media (max-width: 899px) {
  .co-hero {
    padding-top: 3rem;
  }

  .co-hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .co-hero__image--desktop {
    display: none;
  }

  .co-hero__image--mobile {
    display: block;
    margin-inline: auto;
  }
}

.co-intro {
  padding: 4rem 0 2rem;
  text-align: center;
  background: var(--white);
}

.co-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  max-width: 44rem;
  margin-inline: auto 1rem;
}

.co-intro p {
  max-width: 48rem;
  margin: 1rem auto 0;
  font-size: 1.125rem;
}

.co-highlight-cards {
  padding: 1rem 0 3rem;
}

.co-highlight-cards__grid {
  display: grid;
  gap: 1.5rem;
}

.co-highlight-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.co-highlight-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.co-highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0) 20%,
    rgb(59 130 246 / 100%) 100%
  );
  pointer-events: none;
}

.co-highlight-card__content {
  position: absolute;
  left: 1.75rem;
  right: 1.75rem;
  bottom: 1.75rem;
  color: var(--white);
  z-index: 1;
  text-align: left;
}

.co-highlight-card__label {
  display: inline-block;
  padding: 0.4rem 0.5rem;
  border-radius: 5px;
  background: #ddfff4;
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.co-highlight-card__title {
  margin: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.co-highlight-card__desc {
  margin: 0;
  font-weight: 300;
  font-size: 0.9375rem;
}

@media (min-width: 900px) {
  .co-highlight-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.co-double-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin: 1.25rem 0;
}

.co-double-list ul {
  flex: 1 1 12rem;
}

.co-double-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.co-double-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--green);
  position: absolute;
  left: 0;
}

.co-templates {
  padding: 5rem 0 0;
  text-align: center;
  background: var(--blue);
  color: var(--white);
}

.co-templates .eyebrow {
  color: #93c5fd;
}

.co-templates h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  max-width: 48rem;
  margin-inline: auto;
}

.co-templates p {
  max-width: 42rem;
  margin-inline: auto 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.co-templates__image--mobile {
  display: none;
}

@media (max-width: 899px) {
  .co-templates__image--desktop {
    display: none;
  }

  .co-templates__image--mobile {
    display: block;
    margin-inline: auto;
  }
}

.co-payments {
  padding: 5rem 0;
  background: var(--footer-bg);
  color: var(--white);
  text-align: center;
}

.co-payments .eyebrow {
  color: #93c5fd;
}

.co-payments h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.co-payments p {
  max-width: 40rem;
  margin-inline: auto 1.5rem;
  color: #e2e8f0;
}

.co-payments img {
  margin: 2rem auto 0;
}

.co-analytics {
  padding: 4rem 0 2rem;
  text-align: center;
  background: var(--white);
}

.co-analytics h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.co-analytics__grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

.co-analytics-card {
  text-align: left;
}

.co-analytics-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.co-analytics-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.75rem);
  color: var(--blue);
  font-weight: 500;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.co-analytics-card p {
  margin: 0;
  font-size: 1rem;
}

@media (min-width: 900px) {
  .co-analytics__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.co-analytics-cta {
  padding: 2rem 0 4rem;
  text-align: center;
  background: var(--white);
}

.co-entrepreneurs {
  padding: 5rem 0;
  text-align: center;
  background: var(--blue-light);
}

.co-entrepreneurs h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  max-width: 48rem;
  margin-inline: auto;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.cta-banner__note {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
