:root {
  color-scheme: light;
  --ink: #0f1f33;
  --navy: #10283f;
  --blue: #1769d1;
  --blue-2: #0d4f9f;
  --green: #17b26a;
  --green-2: #e9fff3;
  --line: #d7e2ef;
  --muted: #5f6f82;
  --soft: #f4f8fc;
  --white: #fff;
  --amber: #f59e0b;
  --danger: #b42318;
  --shadow: 0 18px 46px rgba(16, 40, 63, .12);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
p { margin: 0; color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(23, 105, 209, .38);
  outline-offset: 3px;
}
button:disabled {
  cursor: progress;
  opacity: .72;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.postjob-banner {
  position: sticky;
  top: 76px;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
  padding: 12px max(22px, calc((100vw - var(--max)) / 2 + 22px));
}
.postjob-banner strong {
  display: block;
  line-height: 1.25;
}
.postjob-banner span {
  color: #d7e8f9;
  font-size: 14px;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-weight: 900;
  letter-spacing: 0;
}
.brand strong { display: block; line-height: 1.1; font-size: 17px; }
.brand small { display: block; color: var(--muted); font-size: 12px; line-height: 1.3; margin-top: 4px; }
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #31465f;
  font-size: 14px;
  font-weight: 700;
}
.nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button,
.lang-button,
.phone-button,
.button {
  border: 0;
  border-radius: 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.icon-button {
  width: 44px;
  color: var(--navy);
  background: var(--soft);
  display: none;
}
.lang-button {
  padding: 0 13px;
  color: var(--navy);
  background: var(--soft);
}
.phone-button,
.button.primary {
  color: var(--white);
  background: var(--blue);
  padding: 0 17px;
  box-shadow: 0 10px 24px rgba(23, 105, 209, .18);
}
.button.secondary {
  color: var(--navy);
  background: var(--green);
  padding: 0 17px;
}
.button.ghost {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0 17px;
}
.button.dark {
  color: var(--white);
  background: var(--navy);
  padding: 0 17px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(244, 248, 252, .92), rgba(255,255,255,.96) 54%, rgba(233,255,243,.9));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,105,209,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,105,209,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.6), transparent 72%);
}
.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 46px;
  align-items: center;
  padding: 56px 22px 44px;
}
.hero-inner > *,
.split > *,
.grid > * {
  min-width: 0;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--navy);
  overflow-wrap: anywhere;
}
.hero-subtitle {
  margin-top: 22px;
  max-width: 720px;
  font-size: 19px;
  color: #3d526b;
  overflow-wrap: anywhere;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  min-width: 0;
}
.hero-actions .button { min-height: 48px; }
.trust-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
}
.trust-row span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  color: #29435d;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
}
.hero-media {
  align-self: stretch;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card img { width: 100%; aspect-ratio: 1.3; object-fit: cover; background: #eef5ff; }
.hero-card-body {
  padding: 20px;
  display: grid;
  gap: 14px;
}
.signal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.signal-row div {
  padding: 12px;
  background: var(--soft);
  border-radius: 8px;
}
.signal-row strong { display: block; color: var(--navy); font-size: 18px; line-height: 1.1; }
.signal-row span { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 22px;
}
.section.tight { padding-top: 52px; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}
.section-head h2,
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}
.section-head p { max-width: 600px; font-size: 16px; }
.band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.grid {
  display: grid;
  gap: 18px;
}
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card,
.feature,
.package,
.case-card,
.faq-item,
.proof-card,
.area-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.card,
.feature,
.package,
.case-card,
.proof-card,
.area-group {
  padding: 22px;
}
.feature .icon,
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--green-2);
  color: var(--green);
  margin-bottom: 18px;
}
.feature h3,
.card h3,
.package h3,
.case-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}
.feature p,
.card p,
.package p,
.case-card p { font-size: 15px; }
.feature a,
.card a:not(.button) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}
.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.steps.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 6px;
}
.steps.compact .step {
  padding: 18px;
}
.steps.compact .step h3 {
  font-size: 16px;
}
.step {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.step::before {
  counter-increment: steps;
  content: counter(steps);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-weight: 900;
  margin-bottom: 16px;
}
.step h3 { margin: 0 0 8px; color: var(--navy); }
.step > span { display: none; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 30px;
  align-items: start;
}
.quote-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.quote-panel h2 { margin: 0 0 12px; font-size: 30px; line-height: 1.15; }
.quote-panel p { color: #d9e7f8; }
.postjob-card {
  border: 1px solid #b9e4cc;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-2), #fff);
  padding: 22px;
}
.postjob-card h2 {
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
}
.postjob-card p { color: var(--muted); }
.quote-form {
  display: grid;
  gap: 14px;
}
.postjob-panel p {
  color: #d9e7f8;
}
.postjob-panel .link-list li {
  color: #d9e7f8;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field { display: grid; gap: 7px; }
.field label,
.field > span,
.check-group > span {
  color: #dfeeff;
  font-weight: 800;
  font-size: 13px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  min-height: 44px;
  padding: 10px 12px;
  outline: none;
}
.field textarea { min-height: 92px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #aebed0; }
.field select option { color: var(--ink); }
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #f2f7ff;
  font-size: 13px;
}
.consent input { margin-top: 6px; }
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 7px;
}
.check-grid label {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 9px 10px;
  color: #f2f7ff;
  font-size: 13px;
}
.form-status {
  min-height: 24px;
  color: #b8ffd3;
  font-weight: 800;
}
.form-status[data-tone="warning"] { color: #ffe4a6; }
.form-status[data-tone="pending"] { color: #d9e7f8; }
.form-status[data-tone="success"] { color: #b8ffd3; }
.file-note { color: #cbd8e8; font-size: 13px; }

.page-hero {
  background: linear-gradient(125deg, #f5f9fd, #fff 58%, #effbf4);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 22px 52px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}
.page-hero p { margin-top: 18px; max-width: 760px; font-size: 18px; }
.content-flow {
  display: grid;
  gap: 28px;
}
.rich-text {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}
.rich-text h2,
.rich-text h3 {
  margin: 0 0 12px;
  color: var(--navy);
}
.rich-text h2 { font-size: 28px; }
.rich-text h3 { font-size: 22px; margin-top: 22px; }
.rich-text p + p { margin-top: 12px; }
.bullets {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.bullets li {
  position: relative;
  padding-left: 25px;
  color: #3e5268;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item { padding: 18px 20px; }
.faq-item h3,
.faq-item h4 { margin: 0 0 6px; color: var(--navy); font-size: 18px; line-height: 1.32; }
.faq-item a { color: var(--blue); font-weight: 800; }
.faq-category { scroll-margin-top: 96px; }
.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}
.anchor-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.post-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3px 9px;
  color: #38516d;
  background: var(--soft);
  font-size: 12px;
  font-weight: 800;
}
.article-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #eef5ff;
  margin: 0 0 18px;
}
.toc {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 16px;
  margin: 0 0 22px;
}
.toc strong { color: var(--navy); }
.toc a { color: var(--blue); font-weight: 800; }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.area-list {
  columns: 2;
  column-gap: 34px;
}
.area-list a {
  break-inside: avoid;
  display: block;
  padding: 10px 0;
  color: var(--blue);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}
.area-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.area-group h3,
.proof-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}
.link-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.link-list li {
  color: #3e5268;
  padding-left: 18px;
  position: relative;
}
.link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.link-list a {
  color: var(--blue);
  font-weight: 800;
}
.bottom-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}
.bottom-cta h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}
.compliance {
  background: #fff8eb;
  border: 1px solid #f4d38a;
  border-radius: 8px;
  padding: 22px;
}
.compliance strong { color: #7a4a00; }
.compliance a { color: var(--blue-2); font-weight: 800; text-decoration: underline; }
.site-footer {
  color: #d7e8f9;
  background: var(--navy);
  padding: 54px 22px 104px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr .8fr .8fr;
  gap: 30px;
}
.site-footer p { color: #b8cce0; }
.site-footer h3 { margin: 0 0 12px; color: #fff; }
.site-footer a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #d7e8f9;
  margin: 2px 0;
}
.footer-bottom {
  max-width: var(--max);
  margin: 32px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: #9fb4c8;
  font-size: 13px;
}
.partner-links {
  max-width: var(--max);
  margin: 16px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
}
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-cta a {
  min-height: 54px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  text-align: center;
  color: var(--navy);
}
.mobile-cta a:nth-child(1) { background: var(--blue); color: var(--white); }
.mobile-cta a:nth-child(2) { background: var(--green); color: var(--navy); }
.mobile-cta a:nth-child(3) { background: var(--navy); color: var(--white); }

[data-en] { display: none; }
html[data-lang="en"] [data-zh] { display: none; }
html[data-lang="en"] [data-en] { display: inline; }
html[data-lang="en"] .block [data-en],
html[data-lang="en"] [data-en].block { display: block; }

@media (max-width: 980px) {
  .icon-button { display: inline-grid; }
  .postjob-banner {
    top: 68px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
  }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .nav-open .nav { display: flex; }
  .phone-button { display: none; }
  .hero-inner,
  .split { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 48px; min-height: auto; }
  .hero-media { min-height: auto; }
  .trust-row,
  .grid.cols-4,
  .grid.cols-3,
  .steps,
  .area-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .header-inner { min-height: 68px; padding-inline: 14px; }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .hero h1 { font-size: 38px; }
  .hero h1,
  .hero-subtitle,
  .hero-actions,
  .trust-row {
    max-width: calc(100vw - 44px);
  }
  .hero-subtitle { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .trust-row,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .steps,
  .steps.compact,
  .area-groups,
  .form-grid,
  .check-grid { grid-template-columns: 1fr; }
  .section { padding: 62px 16px; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .page-hero-inner { padding: 54px 16px 38px; }
  .area-list { columns: 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .mobile-cta { display: grid; }
}

@media (max-width: 420px) {
  .header-inner { gap: 8px; }
  .brand strong { font-size: 15px; }
  .lang-button { min-height: 44px; padding-inline: 10px; }
  .icon-button { width: 44px; min-height: 44px; }
  .hero h1 { font-size: 34px; line-height: 1.16; }
}

/* Security integrator visual redesign: dark command-center palette with high-contrast conversion paths. */
:root {
  --ink: #08111e;
  --navy: #06111d;
  --blue: #0f6bff;
  --blue-2: #0a45a5;
  --green: #18d084;
  --green-2: #e8fff5;
  --amber: #ffb020;
  --line: #dbe5f1;
  --muted: #607084;
  --soft: #f4f7fb;
  --white: #fff;
  --steel: #102238;
  --steel-2: #172f4d;
  --shadow: 0 22px 60px rgba(3, 12, 26, .16);
  --shadow-strong: 0 34px 90px rgba(3, 12, 26, .34);
  --radius: 8px;
  --max: 1220px;
}

body {
  background:
    radial-gradient(circle at 18% -5%, rgba(15, 107, 255, .08), transparent 28rem),
    linear-gradient(180deg, #f8fafc 0, #f4f7fb 100%);
}

.site-header {
  background: rgba(6, 17, 29, .96);
  border-bottom: 1px solid rgba(124, 159, 199, .22);
  box-shadow: 0 18px 48px rgba(3, 10, 22, .18);
}

.header-inner {
  max-width: var(--max);
}

.brand {
  color: var(--white);
}

.brand-mark {
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(145deg, #0f6bff, #073a86);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12), 0 12px 30px rgba(15, 107, 255, .28);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand strong {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  color: #9fb3cb;
  font-weight: 800;
}

.nav {
  color: #c7d6e8;
}

.nav a {
  position: relative;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.nav a:hover {
  color: #fff;
}

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

.lang-button,
.icon-button {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.phone-button,
.button.primary {
  background: linear-gradient(135deg, var(--blue), #0748b9);
  box-shadow: 0 18px 34px rgba(15, 107, 255, .26);
}

.button.secondary {
  color: #06111d;
  background: linear-gradient(135deg, var(--green), #52e6a7);
  box-shadow: 0 16px 30px rgba(24, 208, 132, .18);
}

.button.ghost {
  color: #0d2138;
  background: #fff;
  border-color: #cdd9e8;
}

.button.dark {
  background: #06111d;
}

.postjob-banner {
  top: 76px;
  z-index: 49;
  background:
    linear-gradient(90deg, rgba(255, 176, 32, .24), transparent 28rem),
    #100c05;
  border-top: 1px solid rgba(255, 176, 32, .44);
  border-bottom: 1px solid rgba(255, 176, 32, .44);
  color: #fff7df;
  padding-block: 10px;
}

.postjob-banner strong {
  color: #fff;
  font-size: 15px;
}

.postjob-banner span {
  color: #f5d999;
}

.postjob-banner .button.secondary {
  min-height: 38px;
  background: var(--amber);
  box-shadow: none;
}

.hero {
  color: #fff;
  background:
    radial-gradient(circle at 76% 22%, rgba(15, 107, 255, .34), transparent 23rem),
    radial-gradient(circle at 48% 70%, rgba(24, 208, 132, .16), transparent 22rem),
    linear-gradient(115deg, #06111d 0%, #07182a 48%, #0b2542 100%);
}

.hero::before {
  background-image:
    linear-gradient(rgba(79, 147, 230, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 147, 230, .16) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.78), transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(6, 17, 29, .72));
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  min-height: 690px;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 560px);
  gap: 50px;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 66px);
  text-wrap: balance;
}

.hero-subtitle {
  color: #c4d4e7;
  font-size: 20px;
  max-width: 740px;
}

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

.trust-row span {
  color: #dfeaff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hero-media {
  min-height: 590px;
}

.hero-card {
  background: rgba(8, 21, 38, .78);
  border-color: rgba(108, 157, 215, .28);
  box-shadow: var(--shadow-strong);
}

.hero-card img {
  aspect-ratio: 1200 / 820;
  object-fit: contain;
  background: #06111d;
  border-bottom: 1px solid rgba(108, 157, 215, .22);
}

.hero-card-body {
  background: linear-gradient(180deg, rgba(6, 17, 29, .98), rgba(12, 31, 53, .98));
}

.hero-card-body strong {
  color: #fff;
  font-size: 18px;
}

.hero-card-body p {
  color: #abc0d8;
}

.signal-row div {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}

.signal-row strong {
  color: #fff;
}

.signal-row span {
  color: #94abc5;
}

.section {
  max-width: var(--max);
}

.section-head h2,
.page-hero h1 {
  color: #071426;
  text-wrap: balance;
}

.section-head p {
  color: #5a6d83;
}

.feature,
.card,
.case-card,
.proof-card,
.area-group,
.rich-text,
.faq-item,
.package {
  border-color: #dbe5f1;
  box-shadow: 0 16px 42px rgba(6, 17, 29, .06);
}

.feature,
.card,
.case-card,
.proof-card,
.area-group {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature:hover,
.card:hover,
.case-card:hover,
.proof-card:hover,
.area-group:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 107, 255, .28);
  box-shadow: 0 24px 56px rgba(6, 17, 29, .12);
}

.feature .icon,
.service-icon {
  color: #fff;
  background:
    linear-gradient(145deg, var(--blue), #073a86);
  box-shadow: 0 14px 26px rgba(15, 107, 255, .2);
}

.feature h3,
.card h3,
.package h3,
.case-card h3,
.proof-card h3,
.area-group h3 {
  color: #071426;
}

.feature a,
.card a:not(.button),
.case-card a:not(.button),
.faq-item a,
.link-list a,
.toc a,
.area-list a {
  color: #0a56c6;
}

.band {
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(15, 107, 255, .18), transparent 24rem),
    linear-gradient(135deg, #06111d 0%, #071a2d 52%, #0a2745 100%);
  border-color: rgba(112, 153, 198, .22);
}

.band .section-head h2,
.band .bottom-cta h2 {
  color: #fff;
}

.band .section-head p,
.band .bottom-cta p {
  color: #b7c7da;
}

.band .card,
.band .proof-card,
.band .case-card,
.band .faq-item {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: none;
}

.band .card h3,
.band .proof-card h3,
.band .case-card h3,
.band .faq-item h3 {
  color: #fff;
}

.band .card p,
.band .proof-card p,
.band .case-card p,
.band .faq-item p {
  color: #c4d3e4;
}

.band .card a,
.band .case-card a,
.band .faq-item a {
  color: #75b7ff;
}

.band .bottom-cta {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}

.area-group {
  position: relative;
  overflow: hidden;
}

.area-group::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.steps .step,
.step {
  box-shadow: 0 16px 42px rgba(6, 17, 29, .06);
}

.step::before {
  background: linear-gradient(145deg, var(--blue), #073a86);
}

.quote-panel {
  background:
    radial-gradient(circle at 100% 0, rgba(15, 107, 255, .32), transparent 14rem),
    linear-gradient(145deg, #07111e, #102238);
  border: 1px solid rgba(117, 183, 255, .22);
  box-shadow: var(--shadow-strong);
}

.quote-panel h2 {
  color: #fff;
}

.quote-panel .button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.postjob-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 176, 32, .18), transparent 36%),
    linear-gradient(145deg, #07111e, #102238);
  border-color: rgba(255, 176, 32, .36);
  box-shadow: var(--shadow);
}

.postjob-card h2 {
  color: #fff;
}

.postjob-card p {
  color: #c6d5e6;
}

.postjob-card .button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(15, 107, 255, .22), transparent 24rem),
    linear-gradient(135deg, #06111d, #0a223c);
  border-bottom: 1px solid rgba(112, 153, 198, .22);
}

.page-hero-inner {
  padding-top: 82px;
  padding-bottom: 58px;
}

.page-hero h1 {
  color: #fff;
}

.page-hero p,
.breadcrumb {
  color: #bfd0e3;
}

.breadcrumb a {
  color: #75b7ff;
}

.rich-text {
  position: relative;
  overflow: hidden;
}

.rich-text::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.article-hero {
  background: #07111e;
  border-color: #d6e1ee;
  box-shadow: var(--shadow);
}

.toc,
.anchor-nav a,
.post-meta span,
.tag-row span {
  background: #eef4fb;
}

.bottom-cta {
  box-shadow: var(--shadow);
}

.compliance {
  background: #fff8e8;
  border-color: #f0cc75;
}

.site-footer {
  background:
    radial-gradient(circle at 18% 0, rgba(15, 107, 255, .18), transparent 26rem),
    #06111d;
  border-top: 1px solid rgba(112, 153, 198, .22);
}

.mobile-cta {
  background: #06111d;
  border-top-color: rgba(255, 255, 255, .14);
  box-shadow: 0 -18px 45px rgba(3, 10, 22, .24);
}

.mobile-cta a:nth-child(1) { background: var(--blue); color: var(--white); }
.mobile-cta a:nth-child(2) { background: #102238; color: #fff; }
.mobile-cta a:nth-child(3) { background: var(--green); color: #06111d; }

@media (max-width: 980px) {
  .postjob-banner {
    top: 68px;
  }
  .nav {
    background: #07111e;
    border-color: rgba(255, 255, 255, .16);
  }
  .nav a {
    min-height: 46px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .postjob-banner {
    gap: 10px;
  }
  .postjob-banner span {
    display: none;
  }
  .hero-inner {
    padding-top: 42px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-media {
    min-height: auto;
  }
  .hero-card img {
    aspect-ratio: 1200 / 820;
  }
}

/* Mobile conversion pass: compact header, readable first viewport, single-column scanning, safer fixed CTA. */
@media (max-width: 720px) {
  html {
    scroll-padding-top: 112px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  .site-header {
    z-index: 90;
  }

  .header-inner {
    min-height: 64px;
    padding-inline: 14px;
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .brand strong {
    max-width: 178px;
    font-size: 16px;
    line-height: 1.12;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small,
  .phone-button {
    display: none;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .lang-button,
  .icon-button {
    min-height: 44px;
    width: 44px;
    padding: 0;
    border-radius: 8px;
  }

  .postjob-banner {
    top: 64px;
    z-index: 70;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
  }

  .postjob-banner strong {
    font-size: 13px;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .postjob-banner span {
    display: none;
  }

  .postjob-banner .button.secondary {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 72px;
    z-index: 95;
    max-height: calc(100dvh - 92px);
    overflow: auto;
    padding: 10px;
    border-radius: 8px;
  }

  .nav a {
    min-height: 48px;
    padding: 0 12px;
    border-radius: 8px;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(255, 255, 255, .08);
  }

  .button,
  .phone-button,
  .lang-button,
  .icon-button {
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .hero-inner {
    min-height: auto;
    padding: 34px 16px 38px;
    gap: 24px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.12;
  }

  .hero-subtitle {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    padding: 0 12px;
  }

  .hero-actions .button.secondary {
    grid-column: 1 / -1;
    order: -1;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
    max-width: none;
  }

  .trust-row span {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero-media {
    display: none;
  }

  .section {
    padding: 48px 16px;
  }

  .section.tight {
    padding-top: 34px;
  }

  .section-head {
    display: block;
    margin-bottom: 22px;
  }

  .section-head h2,
  .page-hero h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.16;
  }

  .section-head p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.72;
  }

  .grid,
  .faq-list,
  .content-flow {
    gap: 14px;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .steps,
  .steps.compact,
  .area-groups,
  .form-grid,
  .check-grid,
  .signal-row {
    grid-template-columns: 1fr;
  }

  .feature,
  .card,
  .package,
  .case-card,
  .proof-card,
  .area-group,
  .rich-text,
  .quote-panel,
  .postjob-card,
  .bottom-cta,
  .compliance,
  .faq-item,
  .step {
    padding: 18px;
  }

  .feature .icon,
  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .feature h3,
  .card h3,
  .package h3,
  .case-card h3,
  .proof-card h3,
  .area-group h3 {
    font-size: 19px;
  }

  .feature p,
  .card p,
  .package p,
  .case-card p,
  .rich-text p,
  .faq-item p,
  .bottom-cta p {
    font-size: 15px;
    line-height: 1.72;
  }

  .quote-panel h2,
  .postjob-card h2,
  .rich-text h2,
  .bottom-cta h2 {
    font-size: 25px;
    line-height: 1.18;
  }

  .rich-text h3 {
    font-size: 20px;
  }

  .link-list,
  .bullets {
    gap: 9px;
  }

  .page-hero-inner {
    padding: 38px 16px 32px;
  }

  .breadcrumb {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .page-hero p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.72;
  }

  .anchor-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin-inline: -16px;
    padding-inline: 16px;
    scrollbar-width: none;
  }

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

  .anchor-nav a {
    flex: 0 0 auto;
    min-height: 38px;
    font-size: 13px;
  }

  .post-meta {
    gap: 6px;
  }

  .post-meta span,
  .tag-row span {
    min-height: 26px;
    font-size: 11px;
  }

  .article-hero {
    border-radius: 8px;
    margin-bottom: 14px;
  }

  .toc {
    padding: 14px;
  }

  .area-list {
    columns: 1;
  }

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

  .site-footer {
    padding: 42px 16px 92px;
  }

  .site-footer a {
    min-height: 38px;
  }

  .partner-links {
    display: block;
    line-height: 2;
  }

  .partner-links a {
    display: inline-flex;
    min-height: 32px;
    margin-left: 0 !important;
  }

  .mobile-cta {
    display: grid;
    z-index: 100;
  }

  .mobile-cta a {
    min-height: 58px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .brand strong {
    max-width: 132px;
  }

  .postjob-banner {
    grid-template-columns: 1fr;
  }

  .postjob-banner strong {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
