:root {
  --ink: #172033;
  --muted: #637083;
  --line: #dce4ec;
  --panel: #f5f8fb;
  --blue: #103c5d;
  --blue-2: #17627f;
  --gold: #b9904a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

main,
section,
.site-header,
.hero,
.section {
  max-width: 100vw;
}

p,
li,
h2,
h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 7vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
  min-width: 0;
}

.brand span {
  overflow-wrap: anywhere;
}

.brand img {
  width: 62px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 48px;
  align-items: center;
  min-height: 720px;
  padding: 56px 7vw 52px;
  background:
    radial-gradient(circle at 74% 46%, rgba(23, 98, 127, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(16, 60, 93, 0.08), rgba(185, 144, 74, 0.06)),
    linear-gradient(180deg, #ffffff, #f7fafc);
}

.hero-copy,
.hero-panel,
.scene-grid article,
.proof-card,
.experience-list article,
.service-list span,
.service-list a,
.keyword-grid a,
.question-grid article,
.process-list div,
.steward-grid div {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.12;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: #344054;
  font-size: 19px;
}

.mobile-break {
  display: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  font-weight: 700;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.secondary {
  color: var(--blue);
  background: #fff;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(16, 60, 93, 0.16);
}

.hero-panel {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: min(360px, calc(100% - 52px));
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(16, 60, 93, 0.12);
}

.hero-panel h2 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 22px;
}

.hero-panel ul {
  margin: 0;
  padding-left: 20px;
  color: #344054;
}

.section {
  padding: 70px 7vw;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  padding: 20px 7vw 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 700;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 10px;
  color: var(--muted);
  font-weight: 400;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.22;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.scene-grid article,
.proof-card {
  min-height: 170px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.scene-grid h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 19px;
}

.scene-grid p,
.proof-card p,
.split p,
.contact p {
  margin: 0;
  color: var(--muted);
}

.pathway-visual {
  margin: 30px 0 0;
}

.pathway-visual img,
.capability-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 60, 93, 0.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 44px;
  align-items: start;
  background: #f8fafc;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-list span,
.service-list a {
  padding: 15px 16px;
  color: var(--blue);
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.service-list a:hover,
.keyword-grid a:hover {
  border-color: rgba(16, 60, 93, 0.48);
  box-shadow: 0 12px 30px rgba(16, 60, 93, 0.10);
}

.keyword-entry {
  background: #fff;
}

.related-links {
  background: #fff;
}

.keyword-grid,
.question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.keyword-grid a,
.question-grid article {
  min-height: 180px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.keyword-grid span,
.question-grid h3 {
  display: block;
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 19px;
  font-weight: 800;
}

.keyword-grid p,
.question-grid p,
.process-list span {
  margin: 0;
  color: var(--muted);
}

.landing-hero {
  min-height: 620px;
}

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

.process-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.process-list strong {
  color: var(--blue);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card h2 {
  font-size: 23px;
}

.experience {
  background: #f8fafc;
}

.experience .section-head p {
  margin: 0;
  color: var(--muted);
}

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

.experience-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: start;
}

.capability-visual {
  position: sticky;
  top: 112px;
  margin: 0;
}

.experience-list article {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.experience-list h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 18px;
}

.experience-list p {
  margin: 0;
  color: var(--muted);
}

.steward {
  background: #fff;
}

.steward-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.steward-grid div {
  padding: 18px;
  color: #fff;
  font-weight: 700;
  background: var(--blue);
  border-radius: 6px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
  align-items: center;
  background: linear-gradient(135deg, #103c5d, #17627f);
  color: #fff;
}

.contact h2,
.contact .eyebrow {
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.phone {
  margin-top: 24px !important;
  color: #fff !important;
  font-size: 30px;
  font-weight: 800;
}

.qr-card {
  padding: 18px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
}

.qr-card img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.qr-card p {
  margin-top: 12px;
  color: var(--blue);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 7vw;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-records {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 14px;
}

.police-record {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.police-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  background: #c62828;
  border-radius: 50%;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 20px;
    overflow: hidden;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 52px;
  }

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

  .nav {
    width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 48px 20px 42px;
    gap: 32px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.18;
    word-break: break-all;
  }

  .mobile-break {
    display: block;
  }

  .lead {
    font-size: 16px;
    word-break: break-all;
  }

  p,
  li,
  h2,
  h3 {
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .hero-copy,
  .hero-panel,
  .hero-visual,
  .section-head,
  .scene-grid article,
  .proof-card {
    width: min(330px, calc(100vw - 40px));
    max-width: min(330px, calc(100vw - 40px));
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .section {
    padding: 48px 20px;
  }

  .breadcrumb {
    padding: 16px 20px 0;
  }

  .scene-grid,
  .keyword-grid,
  .question-grid,
  .proof,
  .experience-showcase,
  .experience-list,
  .steward-grid {
    grid-template-columns: 1fr;
  }

  .capability-visual {
    position: static;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .qr-card {
    max-width: 280px;
  }

  .site-footer {
    flex-direction: column;
    padding: 20px;
  }

  .footer-records {
    justify-content: flex-start;
  }
}
