.content-page {
  background: var(--paper);
}

.content-wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--teal-dark);
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(54px, 8vw, 98px) 0;
}

.content-hero h1 {
  font-size: clamp(42px, 6.5vw, 76px);
}

.content-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.content-hero img,
.content-media img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.content-hero img {
  aspect-ratio: 4 / 3;
}

.content-section {
  padding: clamp(58px, 8vw, 94px) 0;
  border-top: 1px solid var(--line);
}

.content-section.alt {
  background: #fff;
}

.content-section.alt > .content-wrap {
  width: min(1180px, calc(100% - 36px));
}

.content-intro {
  max-width: 790px;
  margin-bottom: 30px;
}

.content-intro p,
.content-copy p,
.content-card p,
.faq-list p,
.related-card p {
  color: var(--muted);
  line-height: 1.7;
}

.content-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.content-card,
.related-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 25px;
}

.content-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.content-card p,
.related-card p {
  margin-bottom: 0;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.content-copy ul,
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.content-copy li,
.check-list li {
  position: relative;
  padding-left: 25px;
  line-height: 1.55;
}

.content-copy li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.step-grid span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.step-grid h3 {
  margin-top: 18px;
}

.step-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.related-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.related-card a {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
}

.content-cta {
  padding: clamp(60px, 9vw, 105px) 18px;
  background: #10272e;
  color: #fff;
  text-align: center;
}

.content-cta > div {
  max-width: 820px;
  margin: 0 auto;
}

.content-cta .eyebrow,
.content-cta p {
  color: #c8f2e8;
}

.content-cta p {
  font-size: 18px;
  line-height: 1.65;
}

.content-cta .hero-actions {
  justify-content: center;
  margin: 28px 0 0;
}

.content-cta .primary-link {
  background: #fff;
  color: var(--teal-dark);
}

.pricing-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.pricing-summary .price-card {
  gap: 24px;
}

.pricing-summary .primary-link {
  width: 100%;
}

.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 42%;
  text-align: left;
}

.comparison-table thead th {
  background: #f2f7f4;
  color: var(--ink);
  font-size: 14px;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-yes {
  color: var(--teal-dark);
  font-weight: 900;
}

.comparison-no {
  color: #9aa2aa;
}

@media (max-width: 980px) {
  .content-hero,
  .content-split {
    grid-template-columns: 1fr;
  }

  .content-hero img {
    max-height: 560px;
  }

  .content-grid,
  .related-grid,
  .pricing-summary {
    grid-template-columns: 1fr 1fr;
  }

  .step-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .content-grid,
  .related-grid,
  .pricing-summary,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .content-hero {
    padding-top: 38px;
  }

  .content-hero h1 {
    font-size: 44px;
  }
}
