.p0-page {
  padding-top: 32px;
  padding-bottom: 56px;
}
.p0-page > .section {
  padding: 30px 0;
}
.p0-page > .section:first-of-type {
  padding-top: 24px;
}
.p0-page h1 {
  max-width: 900px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 14px;
}
.p0-lead {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}
.p0-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 24px;
  align-items: stretch;
  margin: 28px 0 8px;
}
.p0-hero-copy,
.p0-hero-aside {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 28px;
}
.p0-hero-aside {
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.1), var(--card));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p0-hero-aside .eyebrow,
.p0-eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.p0-hero-aside strong {
  font-size: 24px;
  line-height: 1.2;
}
.p0-hero-aside p {
  color: var(--muted);
  margin: 10px 0 0;
}
.p0-section-heading {
  max-width: 760px;
  margin-bottom: 20px;
}
.p0-section-heading h2 {
  margin-bottom: 8px;
}
.p0-section-heading p {
  color: var(--muted);
}
.p0-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.p0-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.p0-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  height: 100%;
}
.p0-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}
.p0-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}
.p0-card .p0-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 14px;
}
.p0-steps {
  counter-reset: p0step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.p0-step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: var(--shadow);
}
.p0-step:before {
  counter-increment: p0step;
  content: counter(p0step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.p0-step strong {
  display: block;
  margin-bottom: 6px;
}
.p0-step span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.p0-list-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.p0-list-card ul,
.p0-list-card ol {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p0-list-card li {
  line-height: 1.55;
}
.p0-related {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.p0-related h2 {
  margin: 0 0 18px;
}
.p0-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.p0-article-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.p0-article-card:hover,
.p0-article-card:focus-within {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.12);
}
.p0-article-card .p0-eyebrow {
  margin-bottom: 0;
}
.p0-article-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}
.p0-article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.p0-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  margin-top: auto;
}
.p0-link:after {
  content: "→";
  font-size: 18px;
  transition: transform 0.2s ease;
}
.p0-link:hover:after,
.p0-link:focus:after {
  transform: translateX(3px);
}
.p0-cta {
  margin: 34px 0 0;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f2f5f, #123d78);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 18px 45px rgba(15, 47, 95, 0.2);
}
.p0-cta h2 {
  margin: 0 0 8px;
  color: #fff;
}
.p0-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
}
.p0-cta .p0-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 0 0 auto;
  background: #fff;
  color: #123d78;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}
.p0-cta .p0-primary:after {
  content: "→";
  font-size: 18px;
}
.p0-cta .p0-primary:hover,
.p0-cta .p0-primary:focus {
  transform: translateY(-1px);
  text-decoration: none;
}
.p0-cta .p0-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  margin-left: 10px;
}
.p0-cta .p0-secondary:after {
  content: "→";
  font-size: 18px;
}
.p0-blog {
  padding-top: 28px;
}
.p0-blog-intro {
  max-width: 760px;
  margin-bottom: 34px;
}
.p0-blog-intro p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}
.p0-blog-section {
  margin-top: 46px;
}
.p0-blog-section h2 {
  margin-bottom: 18px;
}
.p0-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.p0-blog-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.p0-blog-card:hover,
.p0-blog-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.p0-blog-card .p0-eyebrow {
  margin-bottom: 12px;
}
.p0-blog-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}
.p0-blog-card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.55;
}
.p0-blog-card .p0-link {
  margin-top: auto;
}
.p0-service-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
}
.p0-service-strip p {
  margin: 0;
  color: var(--muted);
}
.p0-service-strip .p0-link {
  white-space: nowrap;
}
.p0-page .faq details {
  margin-bottom: 10px;
}
.p0-page .related-block {
  display: none;
}
.p0-page .button {
  display: none;
}
@media (max-width: 900px) {
  .p0-hero {
    grid-template-columns: 1fr;
  }
  .p0-grid,
  .p0-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p0-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p0-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .p0-related-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .p0-page {
    padding-top: 20px;
  }
  .p0-page > .section {
    padding: 22px 0;
  }
  .p0-grid,
  .p0-grid-2,
  .p0-blog-grid {
    grid-template-columns: 1fr;
  }
  .p0-steps {
    grid-template-columns: 1fr;
  }
  .p0-hero-copy,
  .p0-hero-aside,
  .p0-card,
  .p0-list-card,
  .p0-related,
  .p0-cta {
    padding: 20px;
  }
  .p0-service-strip {
    align-items: flex-start;
    flex-direction: column;
  }
  .p0-cta .p0-secondary {
    margin-left: 0;
    margin-top: 6px;
  }
}
