:root {
  --navy: #12345c;
  --navy-2: #1a4a78;
  --blue: #2f86ff;
  --blue-2: #35aee8;
  --cyan: #58c7dc;
  --ink: #172b42;
  --muted: #6b7b90;
  --line: #dce6f1;
  --soft: #f5f8fc;
  --soft-blue: #edf6ff;
  --white: #ffffff;
  --amber: #c8943a;
  --shadow: 0 18px 50px rgba(18, 52, 92, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.6;
}

body,
main,
section,
article,
aside,
header,
footer,
div,
form,
nav {
  min-width: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(47, 134, 255, 0.32);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 48px;
  color: var(--white);
  background: rgba(18, 52, 92, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.25;
}

.brand small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.main-nav a {
  padding: 24px 0;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a.active {
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta {
  color: var(--white);
  background: var(--blue);
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(47, 134, 255, 0.24);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.nav-cta:hover,
.button.primary:hover {
  background: #2776e6;
}

.button.primary.light {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button.secondary.dark {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.secondary:hover,
.button.secondary.dark:hover {
  border-color: var(--blue);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 52, 92, 0.9) 0%, rgba(18, 52, 92, 0.76) 45%, rgba(18, 52, 92, 0.12) 100%),
    url("./assets/brand-planet.png") right 16% center / auto 100% no-repeat,
    var(--navy);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.2) 72%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: 132px 0 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #b7ecff;
  font-size: 14px;
  font-weight: 700;
}

.eyebrow.dark {
  color: var(--blue);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 72px;
}

.hero-metrics div {
  min-height: 96px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 24px;
}

.hero-metrics span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.section-shell {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
}

.pain-section,
.services-section,
.news-section {
  padding: 96px 0;
}

.pain-section {
  background: var(--white);
}

.section-heading {
  max-width: 780px;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: 40px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

p {
  margin: 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.pain-card,
.service-card,
.news-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pain-card {
  min-height: 238px;
  padding: 28px;
}

.card-index {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.pain-card p,
.service-card p,
.news-card p,
.section-copy,
.split-heading > p,
.geo-copy p,
.contact-box p,
.site-footer p {
  color: var(--muted);
}

.pain-card p {
  margin-top: 14px;
  font-size: 15px;
}

.services-section {
  background: var(--soft);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 80px;
  align-items: end;
}

.split-heading.compact {
  align-items: center;
}

.split-heading > p {
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.service-card {
  position: relative;
  min-height: 320px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(18, 52, 92, 0.055);
}

.service-card.featured {
  color: var(--white);
  background: var(--navy-2);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured a {
  color: var(--white);
}

.service-card.featured p {
  opacity: 0.72;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  color: var(--navy);
  background: #f3cf7c;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.badge.blue {
  color: var(--blue);
  background: var(--soft-blue);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 36px 0 24px;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.featured .service-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.service-card p {
  margin-top: 14px;
  font-size: 14px;
}

.service-card a {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 800;
}

.geo-section {
  padding: 104px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 52, 92, 0.94), rgba(26, 74, 120, 0.94)),
    var(--navy);
}

.geo-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 84px;
  align-items: center;
}

.geo-copy h2 {
  color: var(--white);
  font-size: 48px;
}

.geo-copy p {
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.geo-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.geo-item {
  min-height: 118px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.geo-item:first-child {
  grid-column: span 2;
  min-height: 104px;
  background: rgba(47, 134, 255, 0.2);
}

.geo-item strong,
.geo-item span {
  display: block;
}

.geo-item strong {
  color: var(--white);
  font-size: 18px;
}

.geo-item span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  margin-top: 42px;
}

.news-card {
  min-height: 214px;
  padding: 26px;
}

.news-card.lead {
  background: linear-gradient(180deg, var(--white), #f6fbff);
}

.news-card h3 {
  margin-top: 18px;
}

.news-card p {
  margin-top: 14px;
  font-size: 15px;
}

.news-card span:not(.badge),
.news-card time {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.news-card time {
  margin-top: 28px;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.links-section {
  padding: 94px 0;
  background: var(--soft);
}

.links-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 88px;
  align-items: center;
}

.section-copy {
  max-width: 520px;
  margin: 18px 0 30px;
  font-size: 16px;
}

.link-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.link-categories a {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 0 24px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(18, 52, 92, 0.05);
}

.link-categories a:first-child {
  grid-row: span 2;
  min-height: 186px;
  color: var(--white);
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.contact-section {
  padding: 96px 0;
  background: var(--navy);
}

.contact-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  min-height: 324px;
  padding: 48px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(47, 134, 255, 0.24), rgba(88, 199, 220, 0.14)),
    var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.contact-box h2 {
  color: var(--white);
  font-size: 42px;
}

.contact-box p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.contact-form button {
  justify-self: start;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.contact-form input,
.contact-form select {
  height: 48px;
  width: 100%;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font: inherit;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #0b2645;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: 52px 0 34px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 20px;
}

.site-footer span {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 800;
}

.site-footer a {
  display: block;
  margin-top: 8px;
}

.footer-note {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: min(1180px, calc(100% - 96px));
  min-height: 460px;
  margin: 0 auto;
  padding: 88px 0;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.service-hero {
  background:
    linear-gradient(100deg, rgba(18, 52, 92, 0.94) 0%, rgba(18, 52, 92, 0.8) 56%, rgba(47, 134, 255, 0.24) 100%),
    url("./assets/brand-planet.png") right 8% center / auto 112% no-repeat,
    var(--navy);
}

.geo-hero {
  background:
    linear-gradient(100deg, rgba(18, 52, 92, 0.94) 0%, rgba(18, 52, 92, 0.8) 56%, rgba(47, 134, 255, 0.24) 100%),
    url("./assets/brand-planet.png") right 8% center / auto 112% no-repeat,
    var(--navy);
}

.news-hero,
.links-hero,
.contact-hero {
  background:
    linear-gradient(100deg, rgba(18, 52, 92, 0.94) 0%, rgba(18, 52, 92, 0.8) 56%, rgba(47, 134, 255, 0.24) 100%),
    url("./assets/brand-planet.png") right 8% center / auto 112% no-repeat,
    var(--navy);
}

.catalog-section,
.change-section,
.definition-section,
.fit-section,
.flow-section,
.guard-section,
.faq-section {
  padding: 96px 0;
}

.catalog-section,
.fit-section,
.links-section {
  background: var(--soft);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.catalog-card {
  min-height: 330px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(18, 52, 92, 0.05);
}

.catalog-card.highlight {
  color: var(--white);
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.catalog-card.highlight h3,
.catalog-card.highlight p,
.catalog-card.highlight dt,
.catalog-card.highlight dd,
.catalog-card.highlight a {
  color: var(--white);
}

.catalog-card h3 {
  margin-top: 16px;
  font-size: 26px;
}

.catalog-card > p {
  margin-top: 14px;
  color: var(--muted);
}

.catalog-card dl {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.catalog-card dl div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(102, 117, 138, 0.16);
}

.catalog-card dt {
  color: var(--blue);
  font-weight: 800;
}

.catalog-card dd {
  margin: 0;
  color: var(--muted);
}

.process-section,
.definition-section,
.guard-section {
  background: var(--white);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.process-line div {
  min-height: 206px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-line strong {
  color: var(--blue);
  font-size: 14px;
}

.process-line span {
  display: block;
  margin-top: 36px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}

.process-line p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.audience-layout,
.change-layout,
.guard-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 76px;
  align-items: center;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.audience-grid div {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 0 26px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
}

.compare-panel {
  display: grid;
  gap: 14px;
}

.compare-panel div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.compare-panel div:last-child {
  color: var(--white);
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.compare-panel span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.compare-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 24px;
}

.compare-panel p {
  margin-top: 10px;
  color: var(--muted);
}

.compare-panel div:last-child strong,
.compare-panel div:last-child p {
  color: var(--white);
}

.compare-panel div:last-child p {
  opacity: 0.72;
}

.definition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.definition-grid article,
.faq-grid article {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.definition-grid p,
.faq-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.fit-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
}

.fit-list {
  display: grid;
  gap: 12px;
}

.fit-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 74px;
  padding: 0 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fit-list strong {
  color: var(--navy);
}

.fit-list span {
  color: var(--muted);
}

.geo-modules-section {
  padding: 96px 0;
  color: var(--white);
  background: var(--navy);
}

.geo-modules-section h2,
.geo-modules-section h3,
.geo-modules-section .split-heading > p {
  color: var(--white);
}

.geo-modules-section .split-heading > p {
  opacity: 0.72;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.module-grid article {
  min-height: 218px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.module-grid strong {
  color: #b7ecff;
  font-size: 13px;
}

.module-grid h3 {
  margin-top: 28px;
}

.module-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 42px;
}

.flow-track div {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.guard-layout ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guard-layout li {
  padding: 22px 24px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.faq-section {
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.news-board-section,
.directory-section,
.contact-page-section,
.promise-section,
.related-section {
  padding: 96px 0;
}

.news-board-section,
.contact-page-section,
.related-section {
  background: var(--soft);
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.news-filter a {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.news-filter a.active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: center;
  min-height: 360px;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.featured-article h2 {
  max-width: 720px;
  margin-top: 18px;
}

.featured-article p {
  max-width: 680px;
  margin: 18px 0 28px;
  color: var(--muted);
}

.featured-article aside {
  display: grid;
  gap: 12px;
  padding: 28px;
  color: var(--white);
  background: var(--navy-2);
  border-radius: 8px;
}

.featured-article aside strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.featured-article aside span {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.article-grid.compact-grid {
  margin-top: 42px;
}

.article-card {
  min-height: 238px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-card span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.article-card h3 {
  margin-top: 18px;
}

.article-card p {
  margin-top: 12px;
  color: var(--muted);
}

.article-card time {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

.article-page {
  background: var(--white);
}

.article-header {
  width: min(920px, calc(100% - 96px));
  margin: 0 auto;
  padding: 90px 0 54px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 800;
}

.article-header h1 {
  margin: 22px 0 0;
  color: var(--navy);
  font-size: 54px;
  line-height: 1.18;
}

.article-header p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.article-header time {
  display: block;
  margin-top: 22px;
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 280px;
  gap: 70px;
  width: min(1080px, calc(100% - 96px));
  margin: 0 auto;
  padding: 0 0 88px;
}

.article-content {
  color: var(--ink);
}

.article-content h2 {
  margin-top: 48px;
  font-size: 30px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p {
  margin-top: 16px;
  color: #3f5067;
  font-size: 17px;
}

.article-content blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  color: var(--navy);
  background: var(--soft);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  font-weight: 800;
}

.article-aside {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-aside strong {
  color: var(--navy);
  font-size: 18px;
}

.article-aside span {
  padding: 10px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.search-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(620px, 100%);
  height: 56px;
  margin-top: 36px;
  padding: 0 8px 0 20px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.search-visual button {
  height: 40px;
  padding: 0 18px;
  color: var(--navy);
  background: var(--white);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
}

.directory-section {
  background: var(--soft);
}

.directory-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.directory-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.directory-sidebar strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 18px;
}

.directory-sidebar a {
  padding: 11px 12px;
  color: var(--muted);
  border-radius: 8px;
  font-weight: 800;
}

.directory-sidebar a:hover {
  color: var(--blue);
  background: var(--soft-blue);
}

.link-group {
  margin-top: 44px;
}

.link-group:first-of-type {
  margin-top: 34px;
}

.link-group h3 {
  margin-bottom: 16px;
  font-size: 26px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.resource-grid.nested {
  margin-top: 16px;
}

.resource-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title action"
    "desc action";
  gap: 6px 18px;
  min-height: 118px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-card strong {
  grid-area: title;
  color: var(--navy);
  font-size: 18px;
}

.resource-card span {
  grid-area: desc;
  color: var(--muted);
}

.resource-card em {
  grid-area: action;
  align-self: center;
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}

.court-directory-note {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.court-directory-note strong {
  color: var(--navy);
}

.court-directory-note span {
  color: var(--muted);
}

.court-dropdowns {
  display: grid;
  gap: 12px;
}

.court-dropdowns details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.court-dropdowns summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 22px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.court-dropdowns summary::-webkit-details-marker {
  display: none;
}

.court-dropdowns summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: 8px;
  font-weight: 800;
}

.court-dropdowns details[open] summary::after {
  content: "-";
}

.court-dropdowns summary span {
  font-size: 18px;
  font-weight: 800;
}

.court-dropdowns summary em {
  margin-left: auto;
  margin-right: 18px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.court-dropdowns details > .resource-grid,
.court-dropdowns details > .region-link-grid {
  padding: 0 22px 22px;
}

.region-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.region-link-grid a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.region-link-grid a:hover {
  color: var(--blue);
  background: var(--soft-blue);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: start;
}

.contact-info-panel,
.large-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(18, 52, 92, 0.05);
}

.contact-info-panel {
  padding: 34px;
}

.contact-info-panel p {
  margin-top: 16px;
  color: var(--muted);
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.info-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.info-list strong,
.info-list span {
  display: block;
}

.info-list strong {
  color: var(--navy);
}

.info-list span {
  margin-top: 4px;
  color: var(--muted);
}

.large-form {
  padding: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.large-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.large-form input,
.large-form select,
.large-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.large-form textarea {
  min-height: 120px;
  padding-top: 13px;
  resize: vertical;
}

.full-field {
  margin-top: 16px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.form-actions p {
  color: var(--muted);
  font-size: 13px;
}

.promise-section {
  background: var(--white);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.promise-grid article {
  padding: 30px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.promise-grid p {
  margin-top: 12px;
  color: var(--muted);
}

main > section:not(.hero):not(.page-hero) {
  border-top: 1px solid var(--line);
}

.pain-section,
.services-section,
.news-section,
.geo-section,
.links-section,
.contact-section,
.catalog-section,
.process-section,
.audience-section,
.change-section,
.definition-section,
.fit-section,
.geo-modules-section,
.flow-section,
.guard-section,
.faq-section,
.news-board-section,
.directory-section,
.contact-page-section,
.promise-section,
.related-section {
  padding: 64px 0;
}

.change-section,
.process-section,
.flow-section,
.promise-section {
  background: var(--soft);
}

.change-section {
  padding-bottom: 36px;
}

.definition-section {
  padding-top: 48px;
}

.change-layout,
.audience-layout,
.guard-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.split-heading {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: stretch;
}

.section-heading,
.split-heading > div,
.split-heading > p,
.change-layout > div:first-child,
.audience-layout > div:first-child,
.fit-layout > div:first-child,
.guard-layout > div:first-child,
.links-layout > div:first-child,
.geo-copy {
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section-heading {
  max-width: 820px;
}

.split-heading > p,
.change-layout > div:first-child,
.audience-layout > div:first-child,
.fit-layout > div:first-child,
.guard-layout > div:first-child,
.links-layout > div:first-child,
.geo-copy {
  align-self: stretch;
}

.split-heading > div,
.split-heading > p,
.change-layout > div:first-child,
.audience-layout > div:first-child,
.fit-layout > div:first-child,
.guard-layout > div:first-child,
.links-layout > div:first-child,
.geo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.geo-copy,
.contact-box > div:first-child {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-box > div:first-child {
  padding: 24px 28px;
  border-style: solid;
  border-width: 1px;
  border-radius: 8px;
}

.news-section .section-heading,
.news-section .split-heading > div,
.news-section .split-heading > p,
.news-board-section .section-heading,
.related-section .section-heading {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.news-section .split-heading,
.split-heading.compact {
  align-items: center;
}

.news-section .split-heading > a {
  align-self: center;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 18px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .module-grid,
  .definition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-track,
  .process-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-grid,
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 22px 12px;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    min-height: 660px;
    background:
      linear-gradient(180deg, rgba(18, 52, 92, 0.94) 0%, rgba(18, 52, 92, 0.82) 58%, rgba(18, 52, 92, 0.58) 100%),
      url("./assets/brand-planet.png") center bottom / auto 62% no-repeat,
      var(--navy);
  }

  .hero-inner,
  .section-shell,
  .page-hero-inner,
  .footer-inner,
  .footer-note,
  .article-header,
  .article-layout {
    width: min(100% - 40px, 720px);
  }

  .hero-inner {
    padding: 86px 0 40px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.16;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.75;
  }

  .hero-metrics,
  .pain-grid,
  .service-grid,
  .geo-layout,
  .split-heading,
  .news-grid,
  .links-layout,
  .contact-box,
  .catalog-grid,
  .process-line,
  .audience-layout,
  .audience-grid,
  .change-layout,
  .definition-grid,
  .fit-layout,
  .fit-list div,
  .module-grid,
  .flow-track,
  .guard-layout,
  .guard-layout ul,
  .faq-grid,
  .featured-article,
  .article-grid,
  .article-layout,
  .directory-layout,
  .contact-page-layout,
  .form-grid,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 48px;
  }

  .pain-section,
  .services-section,
  .news-section,
  .geo-section,
  .links-section,
  .contact-section,
  .catalog-section,
  .process-section,
  .audience-section,
  .change-section,
  .definition-section,
  .fit-section,
  .geo-modules-section,
  .flow-section,
  .guard-section,
  .faq-section,
  .news-board-section,
  .directory-section,
  .contact-page-section,
  .promise-section,
  .related-section {
    padding: 56px 0;
  }

  .change-section {
    padding-bottom: 28px;
  }

  .definition-section {
    padding-top: 40px;
  }

  h2,
  .contact-box h2 {
    font-size: 32px;
  }

  .page-hero-inner {
    min-height: 420px;
    padding: 78px 0 62px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .service-hero,
  .geo-hero,
  .news-hero,
  .links-hero,
  .contact-hero {
    background:
      linear-gradient(180deg, rgba(18, 52, 92, 0.94) 0%, rgba(18, 52, 92, 0.84) 60%, rgba(18, 52, 92, 0.62) 100%),
      url("./assets/brand-planet.png") center bottom / auto 66% no-repeat,
      var(--navy);
  }

  .service-grid {
    gap: 14px;
  }

  .service-card {
    min-height: 260px;
  }

  .geo-panel,
  .geo-item:first-child {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .featured-article {
    padding: 28px;
    gap: 28px;
  }

  .article-header {
    padding: 70px 0 42px;
  }

  .article-header h1 {
    font-size: 40px;
  }

  .article-layout {
    gap: 34px;
  }

  .article-aside,
  .directory-sidebar {
    position: static;
  }

  .region-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page-layout {
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-inner,
  .section-shell,
  .page-hero-inner,
  .footer-inner,
  .footer-note,
  .article-header,
  .article-layout {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .nav-cta {
    width: auto;
  }

  .hero-metrics div,
  .pain-card,
  .service-card,
  .catalog-card,
  .definition-grid article,
  .faq-grid article,
  .module-grid article,
  .promise-grid article,
  .news-card,
  .article-card,
  .resource-card {
    padding: 22px;
  }

  h2,
  .geo-copy h2,
  .contact-box h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 19px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .split-heading,
  .geo-layout,
  .links-layout,
  .audience-layout,
  .change-layout,
  .fit-layout,
  .guard-layout {
    gap: 28px;
  }

  .featured-article h2 {
    font-size: 30px;
  }

  .article-header h1 {
    font-size: 32px;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-box,
  .large-form,
  .contact-info-panel {
    padding: 24px;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-visual {
    height: auto;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }

  .search-visual button {
    width: 100%;
  }

  .court-dropdowns summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
  }

  .court-dropdowns summary::after {
    position: absolute;
    right: 18px;
    margin-top: 2px;
  }

  .court-dropdowns summary em {
    margin: 0;
    padding-right: 40px;
  }

  .court-dropdowns details {
    position: relative;
  }

  .region-link-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "desc"
      "action";
  }

  .resource-card em {
    justify-self: start;
  }
}
