:root {
  --blue: #0b65b1;
  --blue-dark: #073d73;
  --blue-soft: #e8f3fb;
  --cyan: #20b7bd;
  --red: #d93025;
  --ink: #17212b;
  --muted: #667585;
  --line: #e3eaf1;
  --paper: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 16px 36px rgba(21, 48, 76, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    Arial,
    sans-serif;
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

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

.wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: block;
  color: #d9ecfb;
  background: linear-gradient(90deg, #061d36 0%, var(--blue-dark) 48%, #0b4f8f 100%);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 36px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
}

.topbar-inner span:first-child {
  color: #ffffff;
  font-weight: 800;
}

.topbar-inner span {
  position: relative;
}

.topbar-inner span + span::before {
  position: absolute;
  top: 50%;
  left: -11px;
  width: 1px;
  height: 12px;
  content: "";
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-50%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #edf1f5;
  box-shadow: 0 4px 18px rgba(15, 35, 55, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(260px, auto) minmax(0, 1fr) auto;
  grid-template-rows: 56px 44px;
  align-items: center;
  min-height: 100px;
  gap: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  grid-row: 1 / span 2;
  min-width: 260px;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.2;
}

.brand-copy small {
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  grid-column: 2 / span 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  border-top: 1px solid #eef2f6;
}

.nav-links a {
  position: relative;
  min-width: 96px;
  padding: 14px 12px;
  color: #263847;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
  background: #f6fbff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-call,
.btn,
.phone-list a,
.slogan-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.header-call {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  min-height: 44px;
  padding: 0;
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 900;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.header-call svg {
  color: var(--red);
}

.header-call svg,
.btn svg,
.phone-list svg,
.slogan-band svg,
.mobile-callbar svg {
  width: 18px;
  height: 18px;
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.055);
  }
}

@keyframes enterUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(217, 48, 37, 0.24);
  }

  50% {
    box-shadow: 0 18px 36px rgba(217, 48, 37, 0.38);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes panelGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(24px);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.62s ease, transform 0.62s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  animation: heroDrift 18s ease-in-out infinite alternate;
  transform-origin: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 30, 55, 0.9), rgba(5, 30, 55, 0.64) 50%, rgba(5, 30, 55, 0.12)),
    linear-gradient(0deg, rgba(5, 30, 55, 0.18), rgba(5, 30, 55, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 580px;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions {
  animation: enterUp 0.72s ease both;
}

.hero h1 {
  animation-delay: 0.08s;
}

.hero-copy {
  animation-delay: 0.16s;
}

.hero-actions {
  animation-delay: 0.24s;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 58px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: #e8f2fb;
  font-size: 19px;
  line-height: 1.85;
}

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

.announce-strip {
  height: 76px;
  border-bottom: 1px solid #eeeeee;
  background: #fff;
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  height: 76px;
}

.hot-keywords {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
}

.hot-keywords strong {
  color: var(--blue-dark);
}

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

.site-search {
  position: relative;
  flex: 0 0 282px;
  height: 36px;
  background: #f4f6f8;
  border-radius: 30px;
}

.site-search input {
  width: 100%;
  height: 36px;
  padding: 0 54px 0 16px;
  color: #333;
  background: transparent;
  border: 0;
  outline: 0;
}

.site-search button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 50px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--blue-dark);
  border: 0;
  border-radius: 30px;
  cursor: pointer;
}

.site-search svg {
  width: 17px;
  height: 17px;
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 900;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
a.is-dialing {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(217, 48, 37, 0.24);
  animation: softPulse 3.6s ease-in-out infinite;
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.btn-light {
  color: var(--blue-dark);
  background: #fff;
}

.quick-panel {
  margin: 0;
  padding: 72px 0 0;
  background: #fff;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 48, 76, 0.08);
}

.promise-grid article {
  min-height: 150px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.promise-grid article:last-child {
  border-right: 0;
}

.promise-grid svg,
.service-item svg,
.team-card .card-top svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.promise-grid strong,
.service-item h3,
.team-card h3,
.inspection-grid h3,
.equipment-panel h3,
.repair-panel h3,
.coverage-layout h3,
.coverage-summary h3,
.faq-list h3 {
  display: block;
  margin: 14px 0 8px;
  color: var(--blue-dark);
  font-size: 18px;
}

.promise-grid span,
.service-item p,
.team-card p,
.case-grid span,
.inspection-grid p,
.equipment-panel p,
.equipment-list small,
.repair-panel p,
.coverage-layout p,
.coverage-layout li,
.coverage-summary p,
.faq-list p,
.advantage-grid p,
.process-steps p {
  color: var(--muted);
  line-height: 1.75;
}

.section {
  padding: 80px 0;
}

.classic-title {
  width: min(760px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.classic-title.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.classic-title span {
  display: block;
  color: #d8e3ec;
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.classic-title h2 {
  margin: -12px 0 0;
  color: var(--blue-dark);
  font-size: 34px;
  line-height: 1.25;
}

.classic-title p {
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.classic-title::after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 18px auto 0;
  content: "";
  background: var(--blue);
}

.classic-title.align-left::after {
  margin-left: 0;
}

.light-title span {
  color: rgba(255, 255, 255, 0.18);
}

.light-title h2,
.light-title p {
  color: #fff;
}

.light-title::after {
  background: #fff;
}

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

.center-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.final-cta h2,
.slogan-band h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 34px;
  line-height: 1.25;
}

.section-heading p:not(.eyebrow),
.slogan-band p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.slogan-section {
  padding-top: 60px;
  padding-bottom: 0;
}

.slogan-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr) auto;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  background-size: 180% 180%;
  border-radius: 8px;
  animation: panelGlow 9s ease-in-out infinite;
}

.slogan-band h2,
.slogan-band p {
  color: #fff;
}

.slogan-band .eyebrow {
  color: #9de7e9;
}

.slogan-band a {
  min-height: 46px;
  padding: 0 18px;
  color: var(--blue-dark);
  font-weight: 900;
  background: #fff;
  border-radius: 6px;
}

.service-section,
.teams-section,
.faq-section {
  background: var(--paper);
}

.service-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

.service-menu {
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 24px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 8px;
}

.service-menu strong {
  margin-bottom: 6px;
  font-size: 22px;
}

.service-menu > a {
  padding: 13px 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.menu-call {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-call span,
.menu-call em {
  color: #c9def2;
  font-style: normal;
  font-size: 13px;
}

.menu-call a {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

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

.service-item,
.team-card,
.advantage-grid article,
.faq-list article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(21, 48, 76, 0.06);
}

.service-item {
  padding: 0;
  overflow: hidden;
}

.service-photo {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-item:hover .service-photo {
  transform: scale(1.045);
}

.service-item svg {
  width: 38px;
  height: 38px;
  margin: -24px 0 0 22px;
  padding: 8px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  box-sizing: content-box;
  box-shadow: 0 8px 18px rgba(11, 101, 177, 0.26);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-item:hover svg,
.team-card:hover .card-top svg,
.inspection-grid article:hover svg,
.equipment-list article:hover svg {
  animation: iconFloat 1.15s ease-in-out infinite;
  box-shadow: 0 10px 22px rgba(11, 101, 177, 0.22);
}

.service-item h3,
.team-card h3,
.faq-list h3,
.service-item p,
.team-card p,
.faq-list p {
  margin-right: 22px;
  margin-left: 22px;
}

.service-item p,
.team-card p,
.faq-list p {
  margin-bottom: 22px;
}

.advantages-section {
  background: #fff;
}

.inspection-section {
  background: #fff;
}

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

.inspection-grid article {
  position: relative;
  min-height: 246px;
  padding: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(21, 48, 76, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.inspection-grid article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.inspection-grid article:hover {
  transform: translateY(-3px);
  border-color: #c9ddeb;
  box-shadow: 0 18px 36px rgba(21, 48, 76, 0.1);
}

.inspection-grid svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  box-sizing: content-box;
  box-shadow: 0 8px 18px rgba(11, 101, 177, 0.2);
}

.inspection-grid h3 {
  margin-top: 18px;
}

.inspection-grid p {
  margin: 0;
}

.advantage-grid,
.process-steps,
.case-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.advantage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advantage-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

.advantage-grid span,
.process-steps span {
  color: var(--cyan);
  font-size: 34px;
  font-weight: 900;
}

.advantage-grid h3,
.process-steps h3 {
  margin: 18px 0 10px;
  color: var(--blue-dark);
  font-size: 19px;
}

.case-section {
  color: #fff;
  background: linear-gradient(135deg, #082f59, #0b65b1);
}

.equipment-section {
  background: var(--paper);
}

.equipment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 22px;
  align-items: stretch;
}

.equipment-panel,
.repair-panel article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(21, 48, 76, 0.06);
}

.equipment-panel {
  padding: 30px;
}

.equipment-panel > span {
  display: inline-flex;
  padding: 6px 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  background: var(--blue-soft);
  border-radius: 999px;
}

.equipment-panel h3 {
  margin-top: 16px;
  font-size: 24px;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.equipment-list article {
  display: grid;
  gap: 9px;
  min-height: 156px;
  padding: 16px;
  background: #f8fbfd;
  border: 1px solid #dcecf6;
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.equipment-list article:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: #c9ddeb;
}

.equipment-list svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.equipment-list strong {
  color: var(--blue-dark);
  font-size: 16px;
}

.equipment-list small {
  font-size: 13px;
}

.repair-panel {
  display: grid;
  gap: 12px;
}

.repair-panel article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  min-height: 126px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.repair-panel article:hover {
  transform: translateY(-2px);
  border-color: #c9ddeb;
  box-shadow: 0 18px 36px rgba(21, 48, 76, 0.1);
}

.repair-panel span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--blue-dark);
  border-radius: 8px;
}

.repair-panel article:nth-child(4) span {
  background: var(--red);
}

.repair-panel h3 {
  margin: 0 0 6px;
}

.repair-panel p {
  margin: 0;
}

.coverage-section {
  background: #fff;
}

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

.coverage-layout article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(21, 48, 76, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.coverage-layout article:hover {
  transform: translateY(-3px);
  border-color: #c9ddeb;
  box-shadow: 0 18px 36px rgba(21, 48, 76, 0.1);
}

.coverage-layout span,
.coverage-summary span {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  background: var(--blue-soft);
  border-radius: 999px;
}

.coverage-layout h3 {
  margin-top: 16px;
  font-size: 21px;
  line-height: 1.45;
}

.coverage-layout p {
  margin: 0 0 16px;
}

.coverage-layout ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.coverage-layout li {
  position: relative;
  padding-left: 18px;
}

.coverage-layout li::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
}

.coverage-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 61, 115, 0.96), rgba(11, 101, 177, 0.9)),
    var(--blue-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.coverage-summary span {
  color: #d7efff;
  background: rgba(255, 255, 255, 0.12);
}

.coverage-summary h3,
.coverage-summary p {
  color: #fff;
}

.coverage-summary h3 {
  margin-top: 14px;
  font-size: 24px;
}

.coverage-summary p {
  max-width: 790px;
  margin: 0;
}

.coverage-summary a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--blue-dark);
  font-weight: 900;
  background: #fff;
  border-radius: 6px;
  gap: 8px;
}

.coverage-summary svg {
  width: 18px;
  height: 18px;
}

.case-section .section-heading h2,
.case-section .section-heading p:not(.eyebrow) {
  color: #fff;
}

.case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-grid article {
  display: grid;
  gap: 10px;
  min-height: 148px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.case-grid strong {
  font-size: 22px;
}

.case-grid span {
  color: #dceefa;
}

.guide-section {
  background: var(--paper);
}

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

.guide-grid article,
.news-card {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(21, 48, 76, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.guide-grid article:hover,
.news-card:hover {
  transform: translateY(-3px);
  border-color: #c9ddeb;
  box-shadow: 0 18px 36px rgba(21, 48, 76, 0.1);
}

.guide-grid span,
.news-card span,
.article-category {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  background: var(--blue-soft);
  border-radius: 999px;
}

.guide-grid h3,
.news-card h3 {
  margin: 16px 0 10px;
  color: var(--blue-dark);
  font-size: 21px;
  line-height: 1.45;
}

.guide-grid h3 a,
.news-card h3 a {
  color: inherit;
}

.guide-grid p,
.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.guide-more {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.guide-more a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  font-weight: 900;
  background: var(--blue-dark);
  border-radius: 6px;
  gap: 8px;
}

.guide-more svg {
  width: 18px;
  height: 18px;
}

.local-focus-section {
  background: #f4f9fc;
}

.local-focus-note {
  max-width: 960px;
  margin: 22px auto 0;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
}

.news-hero {
  padding: 78px 0 62px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 61, 115, 0.94), rgba(11, 101, 177, 0.86)),
    var(--blue-dark);
}

.news-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #d7efff;
  font-size: 14px;
}

.news-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
}

.news-hero p {
  max-width: 820px;
  margin: 18px 0 0;
  color: #edf7ff;
  font-size: 18px;
  line-height: 1.8;
}

.news-main {
  padding: 64px 0;
  background: var(--paper);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.article-body,
.news-sidebar,
.news-index-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(21, 48, 76, 0.06);
}

.article-body {
  padding: 34px;
}

.article-body h2 {
  margin: 34px 0 14px;
  color: var(--blue-dark);
  font-size: 26px;
  line-height: 1.35;
}

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

.article-body p,
.article-body li,
.news-sidebar p,
.news-sidebar li {
  color: var(--muted);
  line-height: 1.85;
}

.article-body p {
  margin: 0 0 16px;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 20px;
}

.article-callout {
  margin: 28px 0;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 8px;
}

.article-callout strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.article-callout p {
  color: #edf7ff;
}

.article-callout a {
  display: inline-flex;
  margin: 8px 10px 0 0;
  padding: 10px 14px;
  color: #fff;
  font-weight: 900;
  background: var(--red);
  border-radius: 6px;
}

.news-sidebar {
  position: sticky;
  top: 122px;
  padding: 24px;
}

.news-sidebar h2,
.news-sidebar h3 {
  margin: 0 0 14px;
  color: var(--blue-dark);
}

.news-sidebar ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.news-sidebar a {
  color: var(--blue-dark);
  font-weight: 800;
}

.news-index-panel {
  padding: 28px;
}

.news-index-panel + .news-index-panel {
  margin-top: 22px;
}

.about-section {
  background: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.about-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.about-stats span {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: var(--blue-soft);
  border-radius: 8px;
}

.about-stats strong {
  color: var(--blue);
  font-size: 26px;
}

.about-stats em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.process-section {
  background: #fff;
}

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-steps article {
  min-height: 236px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.team-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 28px;
  margin-bottom: 24px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 61, 115, 0.96), rgba(11, 101, 177, 0.9)),
    var(--blue-dark);
  background-size: 180% 180%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: panelGlow 10s ease-in-out infinite;
}

.team-intro span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  color: #d7efff;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.team-intro h3 {
  max-width: 760px;
  margin: 0;
  font-size: 25px;
  line-height: 1.55;
}

.team-intro ul,
.team-tags {
  padding: 0;
  list-style: none;
}

.team-intro ul {
  display: grid;
  gap: 10px;
  margin: 0;
}

.team-intro li {
  position: relative;
  padding: 12px 14px 12px 34px;
  color: #eef8ff;
  font-weight: 800;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.team-intro li::before {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
}

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

.team-card {
  grid-column: span 3;
  display: flex;
  position: relative;
  min-height: 376px;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-card.featured,
.team-card.emergency {
  grid-column: span 3;
}

.team-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.team-card.featured::before,
.team-card.emergency::before {
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: #c9ddeb;
  box-shadow: 0 18px 36px rgba(21, 48, 76, 0.12);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-top span {
  padding: 6px 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  background: var(--blue-soft);
  border-radius: 999px;
}

.master-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 22px 0;
}

.master-title > strong {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  font-size: 24px;
  background: var(--blue-dark);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(7, 61, 115, 0.18);
}

.team-card.featured .master-title > strong,
.team-card.emergency .master-title > strong {
  background: var(--red);
}

.master-title h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1.35;
}

.master-title small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 22px 18px;
}

.team-tags li {
  padding: 7px 10px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  background: #f3f8fc;
  border: 1px solid #dcecf6;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.team-card:hover .team-tags li {
  background: #eaf6fd;
  border-color: #cbe6f5;
  transform: translateY(-1px);
}

.team-note {
  margin: 0 22px 18px;
  padding: 12px 14px;
  color: #4d6072;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
  background: #f8fbfd;
  border-left: 3px solid var(--cyan);
  border-radius: 6px;
}

.phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.phone-list a {
  min-height: 40px;
  padding: 0 13px;
  color: #fff;
  font-weight: 900;
  background: var(--blue);
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.phone-list a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(11, 101, 177, 0.22);
}

.team-card.emergency .phone-list a,
.team-card.featured .phone-list a:first-child {
  background: var(--red);
}

.city-section {
  background: var(--paper);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-height: 560px;
  overflow: auto;
  padding: 4px 4px 12px;
}

.city-grid a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.city-grid a:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.sitemap-heading {
  margin: 32px 0 14px;
  color: var(--blue-dark);
  font-size: 22px;
}

.sitemap-city-grid {
  max-height: 620px;
}

.faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.final-cta {
  color: #fff;
  background: var(--blue-dark);
}

.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 178px;
}

.final-cta h2 {
  color: #fff;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  color: #dce8f3;
  background: #061d36;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 126px;
}

.footer-inner strong {
  color: #fff;
  font-size: 18px;
}

.footer-inner p {
  margin: 10px 0 0;
  color: #aebdca;
  line-height: 1.7;
}

.footer-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-phones a {
  padding: 8px 10px;
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 0 0 16px;
}

.footer-links a {
  color: #c8d7e4;
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.icp-record {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 0 22px;
  color: #91a6ba;
  font-size: 13px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.icp-record span {
  color: #aebdca;
}

.icp-record a {
  color: inherit;
  transition: color 0.2s ease;
}

.icp-record a:hover {
  color: #fff;
}

.mobile-callbar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  color: #fff;
  font-weight: 900;
  background: var(--blue);
  border-radius: 6px;
}

.mobile-callbar a:last-child {
  background: var(--red);
}

.mobile-callbar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 12px 0;
  }

  .brand {
    flex: 1;
  }

  .nav-links {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-links a {
    padding: 12px 10px;
    white-space: nowrap;
  }

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

  .promise-grid,
  .advantage-grid,
  .process-steps,
  .inspection-grid,
  .coverage-layout,
  .case-grid,
  .guide-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promise-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-layout,
  .slogan-band,
  .about-layout,
  .equipment-layout,
  .coverage-summary,
  .news-layout,
  .team-intro {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
  }

  .coverage-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid,
  .equipment-list,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 24px, 1200px);
  }

  .topbar-inner {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .announce-strip {
    display: none;
  }

  .header-call {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 12px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    min-height: 520px;
    padding: 54px 0 88px;
  }

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

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

  .hero-actions,
  .final-actions,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2,
  .classic-title h2,
  .slogan-band h2,
  .final-cta h2 {
    font-size: 26px;
  }

  .classic-title span {
    font-size: 32px;
  }

  .promise-grid,
  .service-grid,
  .inspection-grid,
  .advantage-grid,
  .process-steps,
  .equipment-list,
  .coverage-layout,
  .guide-grid,
  .news-grid,
  .team-grid,
  .case-grid,
  .faq-list,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .inspection-grid article {
    min-height: 0;
  }

  .equipment-panel {
    padding: 24px;
  }

  .equipment-panel h3 {
    font-size: 22px;
  }

  .repair-panel article {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 20px;
  }

  .repair-panel span {
    width: 44px;
    height: 44px;
  }

  .coverage-layout article {
    min-height: 0;
  }

  .coverage-summary {
    padding: 22px;
  }

  .coverage-summary a {
    width: 100%;
  }

  .news-hero {
    padding: 56px 0 46px;
  }

  .article-body,
  .news-index-panel,
  .news-sidebar {
    padding: 22px;
  }

  .team-intro {
    gap: 18px;
    padding: 22px;
  }

  .team-intro h3 {
    font-size: 20px;
  }

  .team-card,
  .team-card.featured,
  .team-card.emergency {
    grid-column: auto;
  }

  .master-title {
    align-items: flex-start;
    margin-top: 16px;
  }

  .master-title h3 {
    font-size: 18px;
  }

  .city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 520px;
  }

  .final-inner {
    align-items: flex-start;
    min-height: 0;
    padding: 36px 0;
  }

  .footer-inner {
    align-items: flex-start;
    padding: 28px 0 86px;
  }

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

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

  .icp-record {
    padding-bottom: 98px;
    text-align: left;
  }

  .mobile-callbar {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media,
  .service-item:hover .service-photo,
  .team-card:hover,
  .btn:hover,
  .phone-list a:hover {
    transform: none !important;
  }
}
