.info-page {
  background: #f7f7f7;
  color: #1b1b1b;
}

.info-page .logo {
  margin-bottom: 0;
}

.subpage-header {
  background: #1b1b1b;
  padding: 24px 0;
}

.subpage-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  flex-wrap: wrap;
}

.subpage-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 18px;
  flex-wrap: wrap;
}

.subpage-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.subpage-nav a:hover,
.subpage-nav a.is-active {
  color: #fff;
}

.subpage-hero {
  background: #1b1b1b;
  color: #fff;
  padding: 34px 0 80px;
}

.subpage-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 420px);
  gap: 24px;
  align-items: stretch;
}

.subpage-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.subpage-hero h1 {
  font-family: Manrope, sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 760px;
}

.subpage-lead {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.65;
  color: #c5c5c5;
}

.subpage-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #0177fb;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.page-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(1, 119, 251, 0.22);
}

.page-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.subpage-hero__card,
.content-card,
.cta-banner,
.contact-card,
.metric-card,
.page-faq-item {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.06);
}

.subpage-hero__card {
  padding: 28px;
  color: #1b1b1b;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.card-label {
  color: #0177fb;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-title {
  font-family: Manrope, sans-serif;
  font-size: 30px;
  line-height: 1.15;
}

.card-copy {
  font-size: 16px;
  line-height: 1.6;
  color: #4d4d4d;
}

.key-points,
.contact-list,
.page-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.key-points {
  list-style: none;
}

.key-points li,
.contact-list li,
.page-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #4d4d4d;
}

.key-points li::before,
.contact-list li::before,
.page-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0177fb;
}

.page-section {
  padding: 72px 0 0;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  font-family: Manrope, sans-serif;
  font-size: 42px;
  line-height: 1.08;
  margin-bottom: 12px;
}

.section-heading p {
  max-width: 820px;
  color: #4d4d4d;
  font-size: 17px;
  line-height: 1.7;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.content-card {
  padding: 28px;
}

.content-card h3 {
  font-family: Manrope, sans-serif;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.content-card p {
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.7;
}

.step-grid,
.metrics-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metrics-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.metric-card,
.contact-card {
  padding: 28px;
}

.step-number,
.metric-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #0177fb;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.step-card h3,
.contact-card h3,
.metric-card h3 {
  font-family: Manrope, sans-serif;
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 12px;
}

.step-card p,
.contact-card p,
.metric-card p {
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.7;
}

.metric-value {
  background: #cfebff;
  color: #0177fb;
}

.contact-card a {
  color: #0177fb;
  text-decoration: none;
  font-weight: 700;
}

.cta-banner {
  margin-top: 28px;
  padding: 34px;
  background: #1b1b1b;
  color: #fff;
}

.cta-banner h2 {
  font-family: Manrope, sans-serif;
  font-size: 36px;
  line-height: 1.08;
  margin-bottom: 12px;
}

.cta-banner p {
  max-width: 760px;
  color: #c5c5c5;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-faq-list {
  display: grid;
  gap: 16px;
}

.page-faq-item {
  padding: 0;
  overflow: hidden;
}

.page-faq-question {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.page-faq-question span {
  font-family: Manrope, sans-serif;
  font-size: 23px;
  line-height: 1.2;
  color: #1b1b1b;
}

.page-faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1b1b1b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  transition: transform 0.25s ease;
}

.page-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 26px;
}

.page-faq-answer p {
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.75;
  padding-bottom: 24px;
}

.page-faq-answer a {
  color: #0177fb;
}

.page-faq-item.active .page-faq-answer {
  max-height: 420px;
}

.page-faq-item.active .page-faq-icon {
  transform: rotate(45deg);
}

.subpage-footer {
  padding: 80px 0 48px;
}

.subpage-footer__box {
  background: #1b1b1b;
  border-radius: 32px;
  padding: 34px;
  color: #fff;
}

.subpage-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 32px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.subpage-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.subpage-footer__nav a,
.subpage-footer__meta a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.subpage-footer__meta {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}

.subpage-footer__meta p,
.subpage-footer__disclaimer {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.subpage-footer__disclaimer {
  padding-top: 18px;
}

@media (max-width: 1100px) {
  .subpage-hero__inner,
  .content-grid,
  .metrics-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .subpage-hero {
    padding: 22px 0 56px;
  }

  .subpage-hero h1 {
    font-size: 40px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .card-title,
  .cta-banner h2 {
    font-size: 28px;
  }

  .page-faq-question {
    padding: 20px;
  }

  .page-faq-question span {
    font-size: 20px;
  }

  .page-faq-answer {
    padding: 0 20px;
  }

  .subpage-footer__box,
  .cta-banner,
  .content-card,
  .step-card,
  .metric-card,
  .contact-card,
  .subpage-hero__card {
    padding: 24px 20px;
  }
}
