:root {
  --surface: #f9f9ff;
  --surface-subtle: #f7f8fa;
  --surface-low: #f1f3ff;
  --surface-dim: #d7dae5;
  --border-light: #e5e6eb;
  --text: #181c23;
  --text-secondary: #4e5969;
  --primary: #003da6;
  --primary-bright: #0052d9;
  --primary-fixed: #dbe1ff;
  --brand-blue-deep: #002b6b;
  --success: #00a870;
  --inverse-surface: #2c3039;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(0, 61, 166, 0.1);
  --container: 1200px;
  --gutter: 24px;
  font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }

.top-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--border-light);
  background: rgba(249, 249, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(24, 28, 35, 0.06);
}
.nav-inner {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.nav-brand { display: flex; align-items: center; gap: 16px; min-width: 0; }
.nav-brand img { width: 148px; max-height: 40px; object-fit: contain; }
.nav-brand span { color: var(--primary); font-size: 20px; font-weight: 800; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 32px; color: #434654; }
.nav-links a:not(.nav-cta):hover { color: var(--primary); }
.nav-cta {
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  padding: 8px 24px;
  font-weight: 700;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--primary-bright); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--primary); font-size: 28px; }

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 43, 107, 0.88), rgba(0, 61, 166, 0.28)),
    radial-gradient(circle at 72% 32%, rgba(219, 225, 255, 0.55), transparent 28rem),
    linear-gradient(120deg, #0a2756, #0f58c6 52%, #9fb8ff);
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(-10deg);
}
.hero-bg::before { width: 42rem; height: 42rem; right: -12rem; top: 8rem; }
.hero-bg::after { width: 28rem; height: 28rem; left: 44%; bottom: -10rem; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0, 43, 107, 0.88), rgba(0, 61, 166, 0.38)); }
.hero-content { position: relative; z-index: 1; }
.hero-copy { max-width: 680px; color: #fff; }
.label {
  display: inline-block;
  color: var(--primary);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.light-label { color: var(--primary-fixed); margin-bottom: 16px; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 900;
}
h2 { color: var(--brand-blue-deep); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.25; margin-bottom: 16px; }
h3 { font-size: 24px; line-height: 1.35; margin-bottom: 8px; }
.hero-subtitle { color: var(--surface-low); font-size: 18px; max-width: 640px; margin-bottom: 32px; }
.hero-actions, .contact-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-bright); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.36); color: #fff; backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-light { background: #fff; color: var(--primary); }
.btn-outline { border: 1px solid rgba(255,255,255,0.35); color: #fff; }

.section { padding-block: 120px; }
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section-rule { width: 64px; height: 4px; background: var(--primary); margin: 0 0 32px; }
.about-copy p { color: var(--text-secondary); margin-bottom: 16px; }
.check-list { list-style: none; padding: 16px 0 0; margin: 0; display: grid; gap: 8px; }
.check-list li { display: flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 700; }
.check-list span { color: var(--success); font-size: 12px; }
.about-visual {
  position: relative;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 43, 107, 0.18);
  background: linear-gradient(135deg, rgba(0,61,166,0.1), rgba(0,43,107,0.8)), linear-gradient(45deg, #dfe8ff, #ffffff);
}
.about-visual::before { content: ""; position: absolute; inset: -16px; border-radius: 14px; background: rgba(0,61,166,0.05); z-index: -1; }
.visual-grid, .map-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.22) 1px, transparent 1px);
  background-size: 34px 34px;
}
.visual-panel {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(78%, 320px);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(10px);
}
.visual-panel span, .visual-panel small { display: block; opacity: 0.82; }
.visual-panel strong { display: block; margin: 8px 0; font-size: 28px; line-height: 1.15; }

.services-section { background: var(--surface-subtle); padding-block: 120px; }
.section-heading { text-align: center; margin-bottom: 64px; }
.section-heading .label { margin-bottom: 8px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  min-height: 300px;
  padding: 40px;
  border: 1px solid var(--border-light);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-index { display: block; margin-bottom: 16px; color: var(--primary); font-family: Consolas, monospace; font-weight: 800; letter-spacing: 0.12em; }
.service-icon { display: block; margin-bottom: 16px; color: var(--primary); font-size: 38px; }
.service-card p { color: var(--text-secondary); margin: 0; }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }

.info-section { padding-block: 120px; }
.info-card { border: 1px solid var(--border-light); background: #fff; overflow: hidden; }
.info-header { background: var(--primary); padding: 24px 32px; }
.info-header h2 { color: #fff; margin: 0; font-size: 24px; }
.info-body { display: grid; grid-template-columns: 1fr 1fr; }
.info-column { padding: 32px; }
.info-side { background: var(--surface-low); display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.info-list { margin: 0; display: grid; gap: 24px; }
.info-list div { padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.info-list div:last-child { border-bottom: 0; padding-bottom: 0; }
dt { margin-bottom: 8px; color: var(--text-secondary); font-family: Consolas, monospace; font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
dd { margin: 0; color: var(--text); font-weight: 700; overflow-wrap: anywhere; }
dd a { color: var(--primary); }
.map-card { position: relative; height: 192px; border: 1px solid var(--border-light); border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #dfe2ed, #fff); }
.map-card a { position: absolute; inset: auto auto 50% 50%; transform: translate(-50%, 50%); padding: 8px 16px; border-radius: 6px; background: rgba(255,255,255,0.92); color: var(--primary); font-weight: 700; box-shadow: 0 10px 24px rgba(0,0,0,0.12); }

.contact-section { padding-bottom: 120px; }
.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(40px, 7vw, 80px);
  border-radius: 12px;
  background: var(--brand-blue-deep);
  color: #fff;
}
.contact-panel h2 { color: #fff; }
.contact-panel p { color: var(--surface-dim); font-size: 18px; margin-bottom: 32px; }
.contact-copy, .metric-grid { position: relative; z-index: 1; }
.contact-glow { position: absolute; width: 280px; height: 280px; border-radius: 999px; filter: blur(60px); background: rgba(0,82,217,0.28); }
.contact-glow.one { top: -120px; right: -100px; }
.contact-glow.two { bottom: -160px; left: -120px; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.metric-grid div { padding: 24px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; background: rgba(255,255,255,0.06); backdrop-filter: blur(8px); }
.metric-grid strong { display: block; margin-bottom: 4px; font-size: 32px; line-height: 1; }
.metric-grid span { color: var(--surface-dim); font-size: 12px; }

.site-footer { border-top: 1px solid var(--border-light); background: var(--surface-subtle); padding-block: 32px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: grid; gap: 6px; text-align: left; }
.footer-brand strong { font-size: 18px; }
.footer-brand span { color: var(--text-secondary); font-size: 12px; }
.footer-links { display: flex; align-items: center; gap: 32px; color: var(--text-secondary); font-size: 12px; }
.police-record { display: inline-flex; align-items: center; gap: 6px; }
.police-record img { width: 16px; height: 16px; display: block; object-fit: contain; }
.footer-links a:hover { color: var(--primary); }

.reveal-on-scroll { opacity: 0; transform: translateY(20px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-on-scroll.active { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .container, .nav-inner { width: min(100% - 32px, var(--container)); }
  .menu-toggle { display: inline-flex; }
  .nav-brand span { display: none; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: rgba(249,249,255,0.98);
    box-shadow: 0 20px 44px rgba(24,28,35,0.14);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero-section { min-height: 760px; }
  .about-section, .info-body, .contact-panel { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .section, .services-section, .info-section { padding-block: 72px; }
  .contact-section { padding-bottom: 72px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { text-align: center; }
}

@media (max-width: 520px) {
  .nav-brand img { width: 120px; }
  h1 { font-size: clamp(2.15rem, 12vw, 3.2rem); word-break: break-word; }
  h2 { font-size: 2rem; }
  .hero-subtitle { font-size: 16px; }
  .hero-actions, .contact-buttons { flex-direction: column; }
  .btn { width: 100%; }
  .about-visual { min-height: 320px; }
  .visual-panel { left: 20px; right: 20px; width: auto; }
  .service-card, .info-column { padding: 24px; }
  .metric-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 18px; flex-wrap: wrap; justify-content: center; }
}

/* App introduction page */
.app-page { background: linear-gradient(180deg, #f9f9ff 0%, #eef3ff 100%); }
.app-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 150px 0 90px;
  color: #fff;
}
.app-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(255,255,255,0.32), transparent 18rem),
    radial-gradient(circle at 20% 80%, rgba(0,168,112,0.28), transparent 22rem),
    linear-gradient(135deg, #002b6b 0%, #003da6 52%, #0052d9 100%);
}
.app-hero-bg::before,
.app-hero-bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.14);
  transform: rotate(-12deg);
}
.app-hero-bg::before { width: 36rem; height: 36rem; right: -10rem; top: 5rem; border-radius: 6rem; }
.app-hero-bg::after { width: 22rem; height: 22rem; left: -7rem; bottom: -8rem; border-radius: 999px; }
.app-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 64px;
}
.app-hero-copy h1 { margin-bottom: 18px; }
.phone-card { display: flex; justify-content: center; }
.phone-frame {
  width: min(100%, 360px);
  min-height: 560px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 42px;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 34px 80px rgba(0, 18, 55, 0.36);
  backdrop-filter: blur(18px);
}
.phone-status {
  width: 92px;
  height: 6px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
}
.phone-screen {
  min-height: 500px;
  padding: 34px 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,243,255,0.96)),
    radial-gradient(circle at top right, rgba(0,82,217,0.18), transparent 12rem);
  color: var(--text);
}
.app-badge {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-fixed);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}
.phone-screen h2 { font-size: 30px; margin-bottom: 26px; }
.phone-screen ul { list-style: none; display: grid; gap: 14px; margin: 0; padding: 0; }
.phone-screen li {
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: #fff;
  color: var(--text-secondary);
  font-weight: 700;
}
.app-summary {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 48px;
  padding-block: 90px;
}
.app-summary p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
}
.app-feature-grid { grid-template-columns: repeat(3, 1fr); }
.app-feature-grid .service-card { min-height: 280px; }
.agreement-section { padding-block: 110px; }
.agreement-section .section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-secondary);
}
.agreement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.agreement-card {
  padding: 30px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 61, 166, 0.07);
}
.agreement-card h3 { color: var(--brand-blue-deep); }
.agreement-card p { margin: 0; color: var(--text-secondary); }

@media (max-width: 900px) {
  .app-hero-section { padding: 120px 0 72px; }
  .app-hero-grid, .app-summary, .agreement-grid { grid-template-columns: 1fr; }
  .app-feature-grid { grid-template-columns: 1fr; }
  .phone-frame { min-height: auto; }
  .phone-screen { min-height: 420px; }
}

@media (max-width: 520px) {
  .app-hero-section { min-height: auto; }
  .phone-frame { border-radius: 30px; padding: 12px; }
  .phone-screen { border-radius: 22px; padding: 26px 20px; }
  .agreement-card { padding: 24px; }
}

/* App Store style application page */
.store-page {
  background: #f5f5f7;
  color: #1d1d1f;
}
.store-page .top-nav {
  background: rgba(245, 245, 247, 0.88);
}
.store-shell {
  padding-top: 108px;
}
.store-hero {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 46px 0 34px;
  border-bottom: 1px solid #d2d2d7;
}
.store-app-icon {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(0, 61, 166, 0.18);
  overflow: hidden;
}
.store-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-title-block h1 {
  margin: 0 0 4px;
  color: #1d1d1f;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.055em;
}
.store-eyebrow {
  margin: 0 0 6px;
  color: #6e6e73;
  font-size: 15px;
  font-weight: 700;
}
.store-subtitle {
  margin: 0 0 6px;
  color: #1d1d1f;
  font-size: 22px;
  font-weight: 700;
}
.store-developer {
  margin: 0 0 26px;
  color: #06c;
  font-size: 17px;
}
.store-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.store-get-button,
.store-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  background: #0071e3;
  color: #fff;
  font-weight: 800;
}
.store-get-button {
  padding: 7px 24px;
}
.store-share-button {
  width: 36px;
  height: 36px;
  font-size: 18px;
}
.store-metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 22px 0 34px;
  border-bottom: 1px solid #d2d2d7;
}
.store-metrics article {
  min-height: 82px;
  padding: 0 18px;
  border-right: 1px solid #d2d2d7;
  text-align: center;
}
.store-metrics article:last-child { border-right: 0; }
.store-metrics span,
.store-metrics small {
  display: block;
  color: #6e6e73;
  font-size: 12px;
  font-weight: 700;
}
.store-metrics strong {
  display: block;
  margin: 7px 0 4px;
  color: #1d1d1f;
  font-size: 25px;
  line-height: 1.05;
}
.store-section {
  padding: 34px 0;
  border-bottom: 1px solid #d2d2d7;
}
.store-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.store-section-header h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: 30px;
  letter-spacing: -0.03em;
}
.store-section-header span,
.store-section-header a {
  color: #06c;
  font-size: 15px;
  font-weight: 700;
}
.store-section-header.borderless { margin-bottom: 10px; }
.store-description {
  max-width: 880px;
  color: #424245;
  font-size: 18px;
}
.store-description p { margin-bottom: 16px; }
.store-description ul {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 22px;
}
.privacy-card,
.developer-card,
.store-list article {
  border-radius: 18px;
  background: #fff;
  padding: 22px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.store-list h3 { margin-bottom: 8px; color: #1d1d1f; }
.privacy-card p,
.store-list p { margin: 0; color: #424245; }
.store-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.store-info-list {
  margin: 0;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.store-info-list div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 22px;
  border-bottom: 1px solid #e5e5ea;
}
.store-info-list div:last-child { border-bottom: 0; }
.store-info-list dt {
  margin: 0;
  color: #6e6e73;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}
.store-info-list dd {
  color: #1d1d1f;
  font-weight: 700;
}
.store-info-list a,
.privacy-card a,
.developer-card a { color: #06c; font-weight: 800; }
.developer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, auto);
  align-items: center;
  gap: 18px;
}
.developer-card strong,
.developer-card span { display: block; }
.developer-card span { color: #6e6e73; font-size: 14px; }

@media (max-width: 900px) {
  .store-shell { padding-top: 88px; }
  .store-hero { grid-template-columns: 120px minmax(0, 1fr); gap: 22px; }
  .store-app-icon { width: 120px; height: 120px; border-radius: 28px; }
  .store-metrics { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .store-metrics article:nth-child(3n) { border-right: 0; }
  .store-list { grid-template-columns: 1fr; }
  .developer-card { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .store-hero { grid-template-columns: 1fr; text-align: center; }
  .store-app-icon { margin: 0 auto; }
  .store-actions { justify-content: center; }
  .store-metrics { grid-template-columns: repeat(2, 1fr); }
  .store-metrics article,
  .store-metrics article:nth-child(3n) { border-right: 1px solid #d2d2d7; }
  .store-metrics article:nth-child(2n) { border-right: 0; }
  .store-section-header { align-items: flex-start; flex-direction: column; gap: 8px; }
  .store-info-list div { grid-template-columns: 1fr; gap: 6px; }
}

/* Legal agreement content shared by app pages */
.agreement-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: -6px 0 18px;
  color: #6e6e73;
  font-size: 14px;
  font-weight: 700;
}
.agreement-notice {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}
.agreement-notice strong {
  display: block;
  margin-bottom: 8px;
  color: #1d1d1f;
  font-size: 18px;
}
.agreement-notice p {
  margin: 0;
  color: #424245;
}
.legal-list article p {
  line-height: 1.72;
}

/* Compliance document library */
.compliance-section { padding-block: 110px; }
.compliance-intro {
  max-width: 880px;
  margin: -8px 0 22px;
  color: #424245;
  font-size: 17px;
}
.compliance-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.compliance-card-grid a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.compliance-card-grid strong {
  color: #1d1d1f;
  font-size: 17px;
}
.compliance-card-grid span {
  color: #6e6e73;
  font-size: 14px;
}
.compliance-docs {
  display: grid;
  gap: 14px;
}
.compliance-doc {
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  overflow: hidden;
}
.compliance-doc summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: #1d1d1f;
  font-weight: 900;
  list-style: none;
}
.compliance-doc summary::-webkit-details-marker { display: none; }
.compliance-doc summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f5f5f7;
  color: #06c;
  font-size: 18px;
}
.compliance-doc[open] summary::after { content: "−"; }
.compliance-doc summary span { font-size: 20px; }
.compliance-doc summary small {
  margin-left: auto;
  color: #6e6e73;
  font-size: 12px;
  font-weight: 700;
}
.compliance-doc-body {
  padding: 0 22px 24px;
  color: #424245;
  line-height: 1.72;
}
.compliance-doc-body h3,
.compliance-doc-body h4,
.compliance-doc-body h5,
.compliance-doc-body h6 {
  margin: 22px 0 10px;
  color: #1d1d1f;
  line-height: 1.35;
}
.compliance-doc-body p { margin: 0 0 10px; }
.compliance-doc-body ul { margin: 0 0 12px 1.1rem; padding: 0; }
.compliance-doc-body li { margin-bottom: 7px; }
.compliance-doc-body a { color: #06c; font-weight: 700; }
.compliance-table-wrap {
  overflow-x: auto;
  margin: 12px 0 18px;
}
.compliance-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}
.compliance-table th,
.compliance-table td {
  border: 1px solid #e5e5ea;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.compliance-table th {
  background: #f5f5f7;
  color: #1d1d1f;
}

@media (max-width: 900px) {
  .compliance-card-grid { grid-template-columns: 1fr; }
  .compliance-doc summary { align-items: flex-start; flex-direction: column; }
  .compliance-doc summary small { margin-left: 0; }
}

/* Service details section */
.service-detail-section {
  background: transparent;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-detail-grid article {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06), 0 14px 34px rgba(0, 61, 166, 0.06);
}
.service-detail-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: #06c;
  font-family: Consolas, monospace;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.service-detail-grid h3 {
  color: #1d1d1f;
  font-size: 22px;
}
.service-detail-grid p {
  margin: 0;
  color: #424245;
}

@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; }
}
