.gp-page-header {
  background: linear-gradient(135deg, #191b21 0%, #224870 100%);
  padding: 44px 30px 36px;
}
.gp-page-header__inner {
  max-width: 820px;
  margin: 0 auto;
}
.gp-page-header__crumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 10px;
}
.gp-page-header__crumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.gp-page-header__crumb a:hover { color: #fff; }
.gp-page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  letter-spacing: -0.5px;
}
.gp-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 30px 80px;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #3a3f52;
}
.gp-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #224870;
  border-left: 4px solid #fd9e2a;
  padding-left: 14px;
  margin: 52px 0 18px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.gp-content h2:first-child { margin-top: 0; }
.gp-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #586ba4;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 28px 0 10px;
}
.gp-content p { margin: 0 0 14px; }
.gp-content strong { font-weight: 700; color: #224870; }
.gp-content ul {
  list-style: none;
  margin: 0 0 22px;
  padding-left: 0;
}
.gp-content ul li {
  padding: 4px 0 4px 22px;
  position: relative;
  margin: 0;
}
.gp-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fd9e2a;
}
.gp-content dl { margin: 0 0 24px; }
.gp-content dt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #224870;
  margin: 18px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.gp-content dd {
  margin: 0 0 0 16px;
  border-left: 3px solid #fd9e2a;
  padding-left: 14px;
  color: #3a3f52;
}
.gp-content figure {
  margin: 32px 0;
  text-align: center;
}
.gp-content figure img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(34, 72, 112, 0.12);
  display: inline-block;
}
.gp-content figcaption {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #888;
  margin-top: 8px;
  letter-spacing: 0.3px;
}
.gp-content .gp-note {
  font-style: italic;
  color: #888;
  font-size: 14px;
  margin: 5px 0 20px;
}
.gp-callout {
  background: #eef2fb;
  border-left: 4px solid #224870;
  border-radius: 0 6px 6px 0;
  padding: 18px 22px;
  margin: 0 0 32px;
}
.gp-callout--amber {
  background: #fff8ee;
  border-left-color: #fd9e2a;
}
.gp-callout__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #224870;
  margin: 0 0 8px;
}
.gp-callout--amber .gp-callout__title { color: #b86e00; }
.gp-callout p:last-child, .gp-callout ul:last-child { margin-bottom: 0; }
.gp-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  counter-reset: gp-step;
}
.gp-steps li {
  padding: 13px 0 13px 52px;
  position: relative;
  border-bottom: 1px solid #eef0f5;
  counter-increment: gp-step;
  margin: 0;
}
.gp-steps li:last-child { border-bottom: none; }
.gp-steps li::before {
  content: counter(gp-step);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  background: #224870;
  color: #fff;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}
.gp-page-nav {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 30px 56px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.gp-page-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #224870;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 18px;
  border: 1px solid #dde1ed;
  border-radius: 6px;
  transition: background .15s, border-color .15s;
  max-width: 46%;
}
.gp-page-nav__link:hover {
  background: #f4f5f7;
  border-color: #224870;
}
.gp-page-nav__link--next { margin-left: auto; text-align: right; }
.gp-page-nav__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #586ba4;
  margin-bottom: 3px;
}
.gp-page-nav__title { display: block; }
.gp-page-nav__icon {
  flex-shrink: 0;
  color: #fd9e2a;
}
@media (max-width: 767px) {
  .gp-page-header { padding: 28px 20px 24px; }
  .gp-content { padding: 28px 20px 50px; font-size: 16px; }
  .gp-content h2 { font-size: 18px; margin-top: 36px; }
  .gp-page-nav { padding: 0 20px 40px; }
  .gp-page-nav__link { max-width: 48%; font-size: 13px; padding: 12px 14px; gap: 8px; }
}
