.seo-page {
  color: #172033;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.seo-page h1,
.seo-page h2,
.seo-page h3,
.seo-page p,
.seo-page a,
.seo-page li,
.seo-page summary,
.seo-page button {
  font-family: inherit;
}

.seo-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.seo-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 249, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.seo-nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.seo-logo {
  display: inline-flex;
  align-items: center;
}

.seo-logo img {
  width: 164px;
  height: auto;
  display: block;
}

.seo-nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.seo-nav-links a,
.seo-footer-links a,
.seo-related a {
  color: #145da0;
  font-weight: 800;
  text-decoration: none;
}

.seo-nav-links a:hover,
.seo-footer-links a:hover,
.seo-related a:hover {
  text-decoration: underline;
}

.seo-hero {
  padding: 72px 0 46px;
}

.seo-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #667085;
  font-size: 14px;
}

.seo-crumbs a {
  color: #456179;
  text-decoration: none;
  font-weight: 700;
}

.seo-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(1, 127, 254, 0.18);
  border-radius: 999px;
  background: rgba(1, 127, 254, 0.08);
  color: #075a9f;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.seo-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #1f344a;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.seo-intro {
  max-width: 780px;
  margin: 22px 0 0;
  color: #455466;
  font-size: 20px;
  line-height: 1.65;
}

.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.seo-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid rgba(1, 127, 254, 0.32);
  background: linear-gradient(180deg, #80c0ff, #017ffe);
  color: #fff;
  box-shadow: 0 16px 34px rgba(1, 127, 254, 0.24);
  font-weight: 900;
  text-decoration: none;
}

.seo-button.secondary {
  background: #fff;
  color: #145da0;
  box-shadow: none;
}

.seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
  padding-bottom: 54px;
}

.seo-main {
  display: grid;
  gap: 22px;
}

.seo-panel {
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.seo-panel h2 {
  margin: 0 0 12px;
  color: #22364d;
  font-size: 26px;
  letter-spacing: 0;
}

.seo-panel h3 {
  margin: 0 0 10px;
  color: #22364d;
  font-size: 20px;
}

.seo-panel p,
.seo-panel li {
  color: #4c5d70;
  font-size: 16px;
  line-height: 1.7;
}

.seo-panel p:last-child {
  margin-bottom: 0;
}

.seo-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  position: relative;
  padding-left: 28px;
}

.seo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #017ffe;
}

.seo-steps {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.seo-step {
  position: relative;
  padding-left: 44px;
}

.seo-step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #017ffe;
  color: #fff;
  font-weight: 900;
}

.seo-faq {
  display: grid;
  gap: 12px;
}

.seo-faq details {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.seo-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  color: #22364d;
  font-weight: 900;
}

.seo-faq details p {
  margin: 0;
  padding: 0 18px 18px;
}

.seo-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.seo-related {
  display: grid;
  gap: 10px;
}

.seo-related a {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 8px;
  background: #fff;
}

.seo-footer {
  padding: 30px 0 42px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: #5f6f82;
}

.seo-footer-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.seo-footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .seo-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .seo-nav-links {
    justify-content: flex-start;
  }

  .seo-hero {
    padding-top: 44px;
  }

  .seo-intro {
    font-size: 18px;
  }

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

  .seo-sidebar {
    position: static;
  }
}
