
:root {
  --blue: #1468f2;
  --blue-2: #0a55db;
  --cyan: #10b8ff;
  --green: #26d07c;
  --ink: #111827;
  --text: #435067;
  --muted: #6f7b90;
  --line: #dbe6f7;
  --soft: #f3f8ff;
  --paper: #ffffff;
  --night: #061a3a;
  --header: 64px;
  --container: 1180px;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(20, 104, 242, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(219, 230, 247, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 138px;
  font-weight: 800;
}

.brand-logo {
  width: 37px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #18d56a, var(--blue));
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 20px 12px;
  color: #26354d;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

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

.site-nav a.active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0c356d;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone span {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: calc(var(--header) + 60px) 0 68px;
  background:
    radial-gradient(circle at 82% 30%, rgba(20, 104, 242, 0.22), transparent 28%),
    linear-gradient(116deg, #f8fbff 0%, #eef6ff 52%, #ddecff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: var(--header) 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 104, 242, 0.35), transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

.hero-copy {
  animation: rise 0.55s ease both;
}

.kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.hero h1 {
  max-width: 590px;
  margin: 0;
  color: #0f1f3d;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.14;
  font-weight: 880;
  letter-spacing: 0;
}

.hero-copy > p:not(.kicker) {
  max-width: 560px;
  margin: 20px 0 0;
  color: #4a5b78;
  font-size: 18px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.chip-row span {
  border: 1px solid #bfddff;
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 11px 20px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 32px rgba(20, 104, 242, 0.25);
}

.btn.ghost {
  border: 1px solid #bfd8ff;
  color: var(--blue);
  background: #fff;
}

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

.visual {
  position: relative;
  min-height: 360px;
  isolation: isolate;
}

.image-visual {
  display: grid;
  place-items: center;
  min-height: 360px;
}

.image-visual img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 24px 46px rgba(20, 104, 242, 0.18));
}

.visual::before {
  content: "";
  position: absolute;
  inset: 42px 30px 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 104, 242, 0.16), transparent 68%);
  filter: blur(2px);
  z-index: -1;
}

.browser-shell {
  position: absolute;
  left: 12%;
  top: 8%;
  width: 66%;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(120, 169, 245, 0.36);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, #2f80ff, #79b4ff);
  box-shadow: var(--shadow);
}

.browser-shell span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
}

.screen-card {
  position: absolute;
  left: 12%;
  top: calc(8% + 32px);
  width: 66%;
  min-height: 230px;
  border: 1px solid rgba(120, 169, 245, 0.38);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.screen-top {
  height: 58px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(20, 104, 242, 0.22), transparent),
    #eaf4ff;
}

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

.screen-grid b {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #d8e8ff;
  border-radius: 8px;
  color: var(--blue);
  background: #f7fbff;
  font-size: 13px;
}

.screen-bars {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.screen-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #dceaff;
}

.screen-bars i:nth-child(1) {
  width: 86%;
}

.screen-bars i:nth-child(2) {
  width: 70%;
}

.screen-bars i:nth-child(3) {
  width: 52%;
}

.float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(182, 213, 255, 0.78);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #0d4ec8;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(20, 104, 242, 0.15);
  font-size: 13px;
  font-weight: 850;
  animation: float 4.8s ease-in-out infinite;
}

.float-a {
  right: 3%;
  top: 22%;
}

.float-b {
  left: 0;
  bottom: 25%;
  animation-delay: -1.4s;
}

.float-c {
  right: 9%;
  bottom: 10%;
  animation-delay: -2.3s;
}

.ring {
  position: absolute;
  right: 8%;
  top: 4%;
  width: 132px;
  aspect-ratio: 1;
  border: 2px solid rgba(20, 104, 242, 0.18);
  border-radius: 50%;
}

.section {
  padding: 78px 0;
  background: #fff;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(243, 248, 255, 0.75), rgba(255, 255, 255, 0.9)),
    #f7fbff;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #111f3b;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 880;
}

.section-heading p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.about-layout,
.detail-panel,
.faq-layout,
.cta-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 52px;
}

.about-layout .section-heading,
.detail-panel .section-heading,
.faq-layout .section-heading {
  margin-inline: 0;
  text-align: left;
}

.large-copy {
  margin: 0;
  color: var(--text);
  font-size: 18px;
}

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

.service-card,
.case-card,
.article-card,
.contact-cards article,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 49, 105, 0.06);
}

.service-card {
  padding: 18px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover,
.case-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  border-color: #9fc8ff;
  box-shadow: 0 18px 42px rgba(20, 104, 242, 0.13);
}

.card-visual {
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background:
    radial-gradient(circle at 70% 24%, rgba(38, 208, 124, 0.22), transparent 26%),
    linear-gradient(135deg, #eaf4ff, #f7fbff);
}

.card-visual svg {
  width: 42px;
  height: 42px;
}

.service-card span,
.case-card span {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
}

.service-card h3,
.case-card h3,
.article-card h3,
.process-item h3,
.contact-cards h3 {
  margin: 10px 0 8px;
  color: #14233f;
  font-size: 18px;
  line-height: 1.35;
}

.service-card p,
.case-card p,
.article-card p,
.process-item p,
.contact-cards p,
.lead-form p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.service-card a,
.case-card a,
.article-card a,
.more-link,
.footer a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 820;
}

.footer a {
  display: inline;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.86);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.case-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-card > div:last-child,
.article-card {
  padding: 20px;
}

.case-visual {
  height: 168px;
  overflow: hidden;
  background: #eef6ff;
}

.case-visual .visual {
  min-height: 168px;
  height: 168px;
}

.case-visual .image-visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 0;
  filter: none;
}

.article-cover {
  height: 142px;
  display: grid;
  place-items: center;
  margin: -20px -20px 18px;
  color: var(--blue);
  background:
    linear-gradient(135deg, rgba(20, 104, 242, 0.16), rgba(38, 208, 124, 0.12)),
    #eff7ff;
}

.article-cover svg {
  width: 48px;
  height: 48px;
}

.tag-line {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-line span {
  border-radius: 999px;
  padding: 3px 9px;
  color: var(--blue);
  background: #eef6ff;
  font-size: 12px;
  font-weight: 780;
}

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

.ability-list div {
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f6fbff);
}

.ability-list b {
  display: block;
  color: var(--blue);
  font-size: 13px;
}

.ability-list span {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 850;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  background: #fff;
}

.process-item b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-list p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--text);
  background: #fff;
}

.trust-list svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.info-grid,
.scenario-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(5, 1fr);
}

.info-grid article,
.scenario-grid article,
.category-grid article,
.fact-panel,
.result-panel,
.answer-box,
.success-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 49, 105, 0.06);
}

.info-grid b,
.scenario-grid b,
.category-grid b {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
}

.info-grid h3,
.scenario-grid h3,
.category-grid h3 {
  margin: 14px 0 8px;
  color: #14233f;
  font-size: 18px;
  line-height: 1.35;
}

.info-grid p,
.scenario-grid p,
.category-grid p,
.fact-panel p,
.result-panel p,
.answer-box p,
.success-panel p {
  margin: 0;
  color: var(--text);
}

.category-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 820;
}

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

.overview-facts {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.overview-facts p {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  background: #fff;
}

.overview-facts b {
  color: var(--blue);
}

.case-detail-layout {
  display: grid;
  gap: 28px;
}

.case-detail-layout > div > h3 {
  margin: 0 0 16px;
  color: #14233f;
  font-size: 24px;
}

.fact-panel p {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid #edf3fc;
  padding-bottom: 12px;
}

.fact-panel p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fact-panel b {
  color: var(--blue);
  font-size: 13px;
}

.result-panel,
.answer-box,
.success-panel {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.result-panel.compact {
  max-width: none;
  text-align: left;
}

.result-panel.compact h3 {
  margin: 0 0 10px;
  color: #14233f;
  font-size: 24px;
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 52px);
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 49, 105, 0.06);
}

.article-body h2 {
  margin: 0 0 14px;
  color: #14233f;
  font-size: clamp(28px, 3vw, 40px);
}

.article-body h3 {
  margin: 34px 0 10px;
  color: #14233f;
  font-size: 24px;
}

.article-body p {
  margin: 0;
  color: var(--text);
  font-size: 17px;
}

.direct-answer {
  border-left: 4px solid var(--blue);
  padding-left: 18px;
  font-weight: 650;
}

.result-panel .section-heading,
.answer-box .section-heading {
  margin-bottom: 20px;
}

.result-panel p,
.answer-box p {
  font-size: 18px;
}

.success-panel svg {
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  border-radius: 50%;
  padding: 14px;
  color: #fff;
  background: var(--green);
  stroke-width: 2.6;
}

.success-panel h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.2;
}

.summary-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 49, 105, 0.06);
}

.summary-table > div {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1.1fr;
  border-bottom: 1px solid var(--line);
}

.summary-table > div:last-child {
  border-bottom: 0;
}

.summary-table b,
.summary-table span {
  padding: 16px 18px;
  color: var(--text);
}

.summary-table b {
  color: #14233f;
  background: #f0f7ff;
}

.download-strip {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.download-strip .section-heading {
  margin-inline: 0;
  text-align: left;
}

.faq-list-full details summary {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.faq-list-full summary span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 2px 9px;
  color: var(--blue);
  background: #eef6ff;
  font-size: 12px;
}

.toast {
  position: fixed;
  z-index: 80;
  top: calc(var(--header) + 18px);
  right: max(18px, calc((100vw - var(--container)) / 2));
  max-width: min(420px, calc(100vw - 32px));
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(38, 208, 124, 0.38);
  border-radius: 8px;
  padding: 14px 16px;
  color: #0f5132;
  background: rgba(240, 255, 247, 0.96);
  box-shadow: 0 18px 42px rgba(15, 49, 105, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast svg {
  flex: 0 0 auto;
  color: #19b86b;
}

.faq-section {
  background: linear-gradient(180deg, #f7fbff, #fff);
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px 0;
  color: #14233f;
  font-weight: 820;
}

details p {
  margin: -4px 0 18px;
  color: var(--text);
}

.faq-visual {
  min-height: 300px;
  overflow: hidden;
}

.faq-visual .visual {
  min-height: 300px;
  transform-origin: left center;
}

.faq-visual .image-visual img {
  max-height: 300px;
}

.cta-band {
  overflow: hidden;
  padding: 56px 0;
  color: #fff;
  background:
    radial-gradient(circle at 76% 16%, rgba(16, 184, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #0752de, #06275f 76%);
}

.cta-inner > div:first-child {
  min-width: 0;
  container-type: inline-size;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(16px, 7cqi, 38px);
  line-height: 1.16;
  white-space: nowrap;
}

.cta-inner p {
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-inner .visual {
  min-height: 260px;
}

.cta-inner .visual .screen-card,
.cta-inner .visual .float-card {
  background: rgba(255, 255, 255, 0.92);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-cards article {
  min-height: 170px;
  padding: 24px;
  text-align: center;
}

.contact-cards svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.lead-form {
  padding: 26px;
}

.lead-form h2 {
  margin: 0;
  font-size: 28px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: #14233f;
  font-size: 14px;
  font-weight: 760;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdff;
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 104, 242, 0.1);
}

.lead-form button {
  width: 100%;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  color: #fff;
  background: var(--blue);
  font-weight: 850;
}

.footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #061a3a;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer .brand {
  color: #fff;
}

.footer h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
}

.footer p {
  margin: 6px 0;
  font-size: 14px;
}

.footer small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
}

.qr {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 6px solid #fff;
  border-radius: 4px;
  color: var(--night);
  background:
    linear-gradient(90deg, #061a3a 8px, transparent 8px) 0 0 / 18px 18px,
    linear-gradient(#061a3a 8px, transparent 8px) 0 0 / 18px 18px,
    #fff;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: none;
    padding: 12px 24px 24px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    box-shadow: 0 20px 36px rgba(15, 49, 105, 0.12);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 4px;
  }

  .site-nav a::after {
    left: 0;
    right: auto;
    width: 28px;
  }

  .header-phone {
    justify-self: end;
  }

  .hero-inner,
  .about-layout,
  .detail-panel,
  .faq-layout,
  .cta-inner,
  .contact-layout,
  .download-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: calc(var(--header) + 38px);
  }

  .hero h1 {
    max-width: none;
  }

  .visual {
    min-height: 320px;
  }

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

  .case-grid,
  .article-grid,
  .info-grid,
  .scenario-grid,
  .category-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .summary-table {
    overflow-x: auto;
  }

  .summary-table > div {
    min-width: 760px;
  }
}

@media (max-width: 680px) {
  :root {
    --header: 60px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    gap: 10px;
    padding: 0 14px;
  }

  .brand {
    min-width: auto;
  }

  .header-phone {
    font-size: 0;
  }

  .header-phone span {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 42px;
  }

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

  .hero-copy {
    animation: none;
  }

  .hero-copy > p:not(.kicker) {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .visual {
    min-height: 270px;
  }

  .image-visual img {
    max-height: 270px;
  }

  .browser-shell,
  .screen-card {
    left: 4%;
    width: 82%;
  }

  .float-a {
    right: 0;
    top: 18%;
  }

  .float-b {
    left: 0;
    bottom: 16%;
  }

  .float-c {
    display: none;
  }

  .section {
    padding: 52px 0;
  }

  .card-grid,
  .case-grid,
  .article-grid,
  .ability-list,
  .process-line,
  .trust-list,
  .info-grid,
  .scenario-grid,
  .category-grid,
  .contact-cards,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .download-strip .section-heading {
    text-align: left;
  }

  .overview-facts p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .toast {
    top: calc(var(--header) + 10px);
    right: 14px;
    left: 14px;
  }

  .section-heading,
  .about-layout .section-heading,
  .detail-panel .section-heading,
  .faq-layout .section-heading {
    text-align: left;
  }

  .footer-inner {
    gap: 22px;
  }
}

@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;
  }
}


.brand-logo-image {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  object-fit: contain;
}
.menu-article-section { background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%); }
.menu-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.menu-article-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  border: 1px solid #dbe8fb;
  border-radius: 18px;
  padding: 28px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(31, 83, 158, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.menu-article-card:hover {
  transform: translateY(-4px);
  border-color: #9fc3ff;
  box-shadow: 0 18px 42px rgba(31, 83, 158, .13);
}
.menu-article-card[hidden] { display: none; }
.menu-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #7184a3;
  font-size: 13px;
}
.menu-article-meta span {
  border-radius: 999px;
  padding: 5px 10px;
  color: #1769f6;
  background: #edf5ff;
  font-weight: 700;
}
.menu-article-card h3 { margin: 22px 0 12px; color: #14233f; font-size: 22px; line-height: 1.48; }
.menu-article-card:hover h3 { color: #1769f6; }
.menu-article-card > p { margin: 0; color: #536681; font-size: 15px; line-height: 1.8; }
.menu-article-read { margin-top: auto; padding-top: 20px; color: #1769f6; font-weight: 750; text-decoration: none; }
.menu-article-more {
  border: 0;
  color: #fff;
  background: linear-gradient(110deg, #1769f6, #14b8b0);
  box-shadow: 0 10px 24px rgba(23, 105, 246, .24);
}
.menu-article-more:hover { color: #fff; filter: brightness(1.04); }
.article-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.article-pagination[hidden] { display: none; }
.article-pagination button {
  min-width: 42px;
  height: 42px;
  border: 1px solid #c9dcfb;
  border-radius: 10px;
  padding: 0 14px;
  color: #28568f;
  background: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.article-pagination button:hover:not(:disabled) { border-color: #1769f6; color: #1769f6; }
.article-pagination button.active { border-color: transparent; color: #fff; background: linear-gradient(110deg, #1769f6, #14b8b0); }
.article-pagination button:disabled { cursor: not-allowed; opacity: .42; }
.page-home .hero-title-line {
  display: block;
  white-space: nowrap;
}
.article-cover {
  position: relative;
  overflow: hidden;
  background: #eef6ff;
}
.article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-card { min-width: 0; overflow: hidden; }
.article-cover img {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(.97);
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}
.article-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(238,246,255,.2));
}
.article-card:hover .article-cover img {
  transform: scale(1.05);
  filter: saturate(.98) contrast(.99);
}
.article-card-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: -2px 0 12px !important;
  color: #6d7f9d !important;
  font-size: 13px !important;
}
.article-editorial-header {
  padding-bottom: 28px;
  border-bottom: 0;
}
.article-editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0 0 18px !important;
  color: #627492 !important;
  font-size: 14px !important;
}
.article-lead {
  color: #263b5f !important;
  font-size: 19px !important;
  line-height: 1.85 !important;
}
.article-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 30px 0 12px;
  border-left: 3px solid #1769f6;
  padding: 14px 18px;
  background: #f5f9ff;
}
.article-toc strong { width: 100%; color: #10203d; }
.article-toc a { color: #1769f6; font-size: 14px; }
.article-content-section {
  scroll-margin-top: calc(var(--header) + 24px);
  padding-top: 34px;
}
.article-content-section h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 34px);
}
.article-content-section p + p { margin-top: 14px; }
.article-body p { line-height: 1.9; }
.article-step-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: article-step;
}
.article-step-list li {
  display: grid;
  grid-template-columns: 34px minmax(100px, 160px) 1fr;
  gap: 14px;
  border-top: 0;
  padding: 18px 0;
  color: #465a79;
  counter-increment: article-step;
}
.article-step-list li::before {
  content: counter(article-step, decimal-leading-zero);
  color: #1769f6;
  font-weight: 850;
}
.article-step-list strong { color: #14233f; }
.article-table-wrap { overflow-x: auto; }
.article-table-wrap table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 15px;
}
.article-table-wrap th,
.article-table-wrap td {
  border: 1px solid #dce8f8;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}
.article-table-wrap thead th { color: #fff; background: #1769f6; }
.article-table-wrap tbody th { color: #14233f; background: #f5f9ff; }
.article-sources ol { margin: 0; padding-left: 22px; }
.article-sources li + li { margin-top: 10px; }
.article-sources a { color: #1769f6; text-decoration: underline; text-underline-offset: 3px; }
.article-note {
  margin-top: 38px !important;
  border-top: 1px solid #dce8f8;
  padding-top: 22px;
  color: #6d7f9d !important;
  font-size: 14px !important;
}
.service-article {
  width: min(100%, 920px);
  margin: 0 auto;
  color: #435473;
}
.service-article-header {
  padding-bottom: 42px;
}
.service-article-header h2 {
  max-width: 820px;
  margin: 0;
  color: #10203d;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: -.025em;
}
.service-article-header > p:not(.kicker) {
  max-width: 830px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.95;
}
.service-article-header .service-answer {
  color: #243b62;
  font-size: 21px;
  line-height: 1.85;
  font-weight: 650;
}
.service-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  border-block: 1px solid #dce8f8;
  padding: 18px 0;
}
.service-toc a {
  color: #1769f6;
  font-size: 14px;
  font-weight: 800;
}
.service-toc a:hover { text-decoration: underline; text-underline-offset: 4px; }
.service-facts {
  margin: 38px 0 0;
}
.service-facts > div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  border-bottom: 0;
  padding: 18px 0;
}
.service-facts dt {
  color: #1769f6;
  font-weight: 850;
}
.service-facts dd {
  margin: 0;
  color: #435473;
  line-height: 1.85;
}
.service-chapter {
  scroll-margin-top: calc(var(--header) + 24px);
  padding: 64px 0 0;
}
.service-chapter-header {
  max-width: 800px;
  margin-bottom: 26px;
}
.service-chapter-header h2 {
  margin: 0;
  color: #10203d;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.25;
  letter-spacing: -.018em;
}
.service-chapter-header p {
  margin: 12px 0 0;
  color: #65758f;
  font-size: 16px;
  line-height: 1.8;
}
.service-entry-list {
  border-top: 0;
}
.service-entry {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) 1.45fr;
  gap: 40px;
  border-bottom: 0;
  padding: 28px 0;
}
.service-entry h3 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  color: #14233f;
  font-size: 20px;
  line-height: 1.45;
}
.service-entry h3 span {
  flex: 0 0 auto;
  color: #1769f6;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .06em;
}
.service-entry p {
  margin: 0;
  color: #435473;
  font-size: 17px;
  line-height: 1.9;
}
.service-boundaries {
  margin: 0;
  border-top: 0;
  padding: 0;
  list-style: none;
  counter-reset: boundary;
}
.service-boundaries li {
  position: relative;
  border-bottom: 0;
  padding: 22px 0 22px 44px;
  color: #435473;
  font-size: 17px;
  line-height: 1.9;
  counter-increment: boundary;
}
.service-boundaries li::before {
  content: counter(boundary, decimal-leading-zero);
  position: absolute;
  top: 25px;
  left: 0;
  color: #1769f6;
  font-size: 13px;
  font-weight: 850;
}
.service-article-end {
  margin-top: 64px;
  border-top: 0;
  padding-top: 28px;
}
.service-article-end p {
  max-width: 760px;
  margin: 0 0 18px;
  color: #6b7b94;
  font-size: 14px;
  line-height: 1.8;
}
.service-article-end .text-link {
  display: inline-flex;
  color: #1769f6;
  font-weight: 820;
}
.case-story {
  width: min(100%, 900px);
  margin: 0 auto;
}
.case-story-header {
  padding-bottom: 42px;
  border-bottom: 0;
}
.case-story-header h2 {
  max-width: 820px;
  margin: 0;
  color: #10203d;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: -.025em;
}
.case-story-lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: #435473;
  font-size: 20px;
  line-height: 1.9;
}
.case-story-context {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 24px 0 0;
  color: #5a6b85;
  font-size: 14px;
  font-weight: 760;
}
.case-story-chapter {
  position: relative;
  padding: 46px 0 46px 72px;
  border-bottom: 0;
}
.case-story-index {
  position: absolute;
  top: 50px;
  left: 0;
  margin: 0;
  color: #1c6cf3;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .08em;
}
.case-story-chapter h3 {
  margin: 0 0 20px;
  color: #14233f;
  font-size: 28px;
  line-height: 1.35;
}
.case-story-chapter > p:not(.case-story-index) {
  margin: 0;
  color: #435473;
  font-size: 18px;
  line-height: 1.95;
}
.case-story-chapter > p:not(.case-story-index) + p {
  margin-top: 16px;
}
.case-story-end {
  padding-top: 42px;
}
.case-story-end p {
  max-width: 720px;
  margin: 0 0 18px;
  color: #435473;
  font-size: 17px;
  line-height: 1.85;
}
.case-story-end .text-link {
  display: inline-flex;
  color: #1769f6;
  font-weight: 820;
}
.footer-brand {
  display: inline-grid;
  grid-template-columns: 48px max-content;
  align-items: center;
  column-gap: 10px;
  min-width: 0;
  line-height: 1;
}
.footer-brand .brand-logo-image {
  width: 48px;
  height: 48px;
  vertical-align: middle;
}
.footer-brand strong {
  display: block;
  align-self: center;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
.trust-showcase {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: repeat(2, minmax(160px, auto));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.trust-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  overflow: hidden;
  border: 1px solid #d5e4fb;
  border-radius: 18px;
  padding: 28px 30px;
  background: linear-gradient(145deg, #fff 30%, #f4f9ff 100%);
  box-shadow: 0 16px 42px rgba(15, 74, 150, .07);
}
.trust-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -72px;
  width: 180px;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 105, 246, .12);
  border-radius: 50%;
}
.trust-primary {
  grid-row: 1 / -1;
  align-content: center;
  padding: 40px;
  background: linear-gradient(145deg, #edf6ff 0%, #fff 58%, #effcf9 100%);
}
.trust-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #1769f6, #13b8a6);
  box-shadow: 0 10px 24px rgba(23, 105, 246, .2);
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #1769f6;
  font-size: 14px;
  font-weight: 800;
}
.trust-card h3 {
  margin: 0 0 10px;
  color: #10213f;
  font-size: 21px;
  line-height: 1.35;
}
.trust-primary h3 { max-width: 430px; font-size: clamp(24px, 2.4vw, 34px); }
.trust-card p { position: relative; z-index: 1; margin: 0; color: #52627c; }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.service-card,
.case-card,
.article-card,
.category-grid article:has(> a[href]) {
  position: relative;
  cursor: pointer;
}
.service-card > a[href^="/products/"]::after,
.case-card a[href^="/cases/"]::after,
.article-card > a[href^="/articles/"]::after,
.category-grid article > a[href]::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: var(--radius);
}
.service-card:has(> a:focus-visible),
.case-card:has(a:focus-visible),
.article-card:has(> a:focus-visible),
.category-grid article:has(> a:focus-visible) {
  outline: 3px solid rgba(23, 105, 246, .42);
  outline-offset: 3px;
  border-color: #78afff;
}
.product-photo {
  position: relative;
  height: 172px;
  overflow: hidden;
  padding: 0;
  background: #eef6ff;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(.96);
  transform: scale(1.015);
  transition: transform .35s ease, filter .35s ease;
}
.product-photo::after,
.case-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(234,244,255,.28));
}
.service-card:hover .product-photo img {
  transform: scale(1.055);
  filter: saturate(.96) contrast(.98);
}
.hero .image-visual img,
.about-layout .image-visual img,
.faq-visual .image-visual img,
.download-strip .image-visual img,
.contact-layout > div > .image-visual img {
  background: transparent;
  mix-blend-mode: multiply;
  border-radius: 0;
  opacity: .96;
  filter: saturate(.92) contrast(.96) drop-shadow(0 22px 42px rgba(20,104,242,.1));
  -webkit-mask-image: radial-gradient(ellipse 72% 69% at 54% 52%, #000 0 46%, rgba(0,0,0,.92) 58%, rgba(0,0,0,.48) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse 72% 69% at 54% 52%, #000 0 46%, rgba(0,0,0,.92) 58%, rgba(0,0,0,.48) 76%, transparent 100%);
}
.hero .image-visual,
.about-layout .image-visual,
.faq-visual .image-visual,
.download-strip .image-visual,
.contact-layout > div > .image-visual {
  overflow: visible;
  background: radial-gradient(ellipse 66% 58% at 56% 54%, rgba(61,139,255,.13), rgba(131,184,255,.06) 46%, transparent 76%);
}
.hero .image-visual img {
  width: 108%;
  max-width: none;
  transform: translateX(1.5%);
}
.about-layout .image-visual img,
.faq-visual .image-visual img {
  width: 106%;
  max-width: none;
}
.cta-inner .image-visual img {
  background: transparent;
  mix-blend-mode: screen;
  border-radius: 0;
  opacity: .88;
  filter: saturate(.98) drop-shadow(0 24px 46px rgba(0,20,80,.12));
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 56% 52%, #000 0 45%, rgba(0,0,0,.86) 58%, rgba(0,0,0,.28) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 60% at 56% 52%, #000 0 45%, rgba(0,0,0,.86) 58%, rgba(0,0,0,.28) 72%, transparent 100%);
}
.cta-inner .image-visual {
  overflow: visible;
  background: radial-gradient(ellipse 68% 58% at 58% 52%, rgba(0,166,255,.22), transparent 72%);
}
.case-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #eef6ff;
}
.case-card .image-visual img { object-fit: cover; filter: saturate(.88) contrast(.96); }
.contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-cards article {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-cards p { overflow-wrap: anywhere; }
.more-link {
  display: flex;
  width: fit-content;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  align-self: center;
  margin: 22px auto 0;
  border-radius: 999px;
  padding: 11px 24px;
  color: #fff !important;
  background: linear-gradient(135deg, #1769f6, #13b8a6);
  box-shadow: 0 10px 24px rgba(23,105,246,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.more-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23,105,246,.28);
}
.article-category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 0 0 30px;
}
.article-category-filter {
  min-height: 38px;
  border: 1px solid #c9dcfa;
  border-radius: 999px;
  padding: 7px 15px;
  color: #245084;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.article-category-filter:hover {
  transform: translateY(-1px);
  border-color: #7fb3ff;
}
.article-category-filter.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #1769f6, #13b8a6);
  box-shadow: 0 8px 20px rgba(23,105,246,.18);
}
.article-card[hidden] { display: none; }
.article-content-heading {
  margin-top: 48px !important;
  font-size: 28px !important;
}
.article-step-list {
  display: grid;
  gap: 12px;
}
.article-step-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 16px 0 4px;
}
.article-step-list b {
  color: var(--blue);
  font-size: 14px;
}
.article-step-list span {
  color: var(--text);
  line-height: 1.75;
}
.article-step-list strong {
  display: block;
  margin-bottom: 2px;
  color: #14233f;
}
.article-body .summary-table { margin-top: 14px; }
.faq-layout > .more-link { grid-column: 1 / -1; }
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.faq-filter {
  min-width: 118px;
  border: 1px solid #c9dcfa;
  border-radius: 999px;
  padding: 11px 18px;
  color: #245084;
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.faq-filter:hover { transform: translateY(-2px); border-color: #7fb3ff; }
.faq-filter.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #1769f6, #13b8a6);
  box-shadow: 0 10px 24px rgba(23,105,246,.2);
}
.page-article-detail.hero {
  min-height: 430px;
  padding-bottom: 54px;
}
.page-article-detail .hero-inner { gap: 42px; }
.page-article-detail .hero-copy h1 {
  max-width: 700px;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.16;
  letter-spacing: -.025em;
}
.page-article-detail .hero-copy > p:not(.kicker) {
  max-width: 650px;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.8;
}
.page-article-detail .chip-row { margin-top: 20px; }
.article-body {
  width: min(100%, 1120px);
  max-width: 1120px;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.article-editorial-header {
  max-width: 900px;
  margin: 0 auto 38px;
  border-bottom: 1px solid #dce8f8;
  padding: 0 0 28px;
}
.article-tldr {
  max-width: 900px;
  scroll-margin-top: calc(var(--header) + 28px);
  margin: 0 auto 44px;
  border: 1px solid #cfe0f7;
  border-left: 5px solid #1769f6;
  border-radius: 10px;
  padding: 24px 28px 26px;
  background: linear-gradient(135deg, #f2f7ff, #f8fcff);
  box-shadow: 0 10px 28px rgba(31, 83, 158, .07);
}
.article-tldr h2 {
  margin: 0 0 10px;
  color: #1769f6;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: .04em;
}
.article-tldr p {
  margin: 0;
  color: #263b5f;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.82;
}
.article-editorial-meta {
  gap: 7px 18px;
  margin-bottom: 13px !important;
  font-size: 13px !important;
}
.article-lead {
  margin: 0 !important;
  color: #2f4365 !important;
  font-size: 18px !important;
  line-height: 1.78 !important;
}
.article-reading-layout {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}
.article-toc {
  position: sticky;
  top: calc(var(--header) + 28px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  border: 0;
  border-top: 3px solid #1769f6;
  padding: 17px 0 0;
  background: transparent;
}
.article-toc strong {
  width: auto;
  margin-bottom: 9px;
  color: #10203d;
  font-size: 15px;
}
.article-toc a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: start;
  border-bottom: 1px solid #e5edf8;
  padding: 9px 0;
  color: #526581;
  font-size: 13px;
  line-height: 1.55;
  transition: color .18s ease, padding-left .18s ease;
}
.article-toc a span {
  color: #1769f6;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .05em;
}
.article-toc a:hover {
  padding-left: 4px;
  color: #1769f6;
}
.article-reading-column { min-width: 0; }
.article-content-section {
  scroll-margin-top: calc(var(--header) + 28px);
  margin: 0 0 36px;
  border-bottom: 0;
  padding: 0 0 36px;
}
.article-section-heading {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0 0 16px;
}
.article-section-heading > span {
  color: #1769f6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}
.article-content-section h2 {
  margin: 0;
  color: #14233f;
  font-size: clamp(22px, 2.25vw, 29px);
  line-height: 1.38;
  letter-spacing: -.012em;
}
.article-content-section p {
  margin: 0;
  color: #4b5e7b;
  font-size: 16px;
  line-height: 1.86;
}
.article-content-section p + p { margin-top: 12px; }
.article-answer-section {
  margin-bottom: 40px;
  border: 0;
  border-left: 4px solid #1769f6;
  border-radius: 0 8px 8px 0;
  padding: 23px 26px 25px;
  background: linear-gradient(135deg, #f4f8ff, #f8fcff);
}
.article-answer-section .article-section-heading { margin-bottom: 11px; }
.article-answer-section .direct-answer {
  border: 0;
  padding: 0;
  color: #2b4165;
  font-size: 17px;
  line-height: 1.82;
  font-weight: 650;
}
.article-step-list li {
  grid-template-columns: 32px minmax(100px, 140px) 1fr;
  gap: 12px;
  padding: 15px 0;
  font-size: 15px;
  line-height: 1.72;
}
.article-step-list strong {
  color: #14233f;
  font-size: 15px;
}
.article-table-wrap {
  overflow-x: auto;
  border: 1px solid #dce8f8;
  border-radius: 7px;
}
.article-table-wrap table { border-style: hidden; font-size: 14px; }
.article-table-wrap th,
.article-table-wrap td {
  padding: 12px 14px;
  line-height: 1.65;
}
.article-conclusion {
  border-bottom: 0;
  border-radius: 8px;
  padding: 24px 26px;
  background: #f6fafc;
}
.article-note {
  margin-top: 18px !important;
  border-top: 0;
  padding-top: 18px;
  color: #71819a !important;
  font-size: 13px !important;
  line-height: 1.75 !important;
}
.article-content-section {
  animation: article-rise .45s ease both;
}
@keyframes article-rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-list-full details[hidden] { display: none; }
@media (max-width: 1020px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-showcase { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .trust-primary { grid-column: 1 / -1; grid-row: auto; }
  .article-editorial-header { margin-left: 0; }
  .article-tldr { margin-left: 0; }
  .article-reading-layout { grid-template-columns: 1fr; gap: 34px; }
  .article-toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }
  .article-toc strong { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .card-grid, .contact-cards { grid-template-columns: 1fr; }
  .menu-article-grid { grid-template-columns: 1fr; }
  .menu-article-card { min-height: 0; padding: 24px; }
  .trust-showcase { grid-template-columns: 1fr; }
  .trust-primary { grid-column: auto; padding: 28px 24px; }
  .trust-card { grid-template-columns: 1fr; padding: 26px 24px; }
  .page-home h1 { font-size: clamp(29px, 8.6vw, 32px); }
  .page-article-detail.hero { min-height: auto; padding-bottom: 38px; }
  .page-article-detail .hero-copy h1 { font-size: 32px; }
  .page-article-detail .hero-copy > p:not(.kicker) { font-size: 16px; line-height: 1.7; }
  .article-editorial-header { margin-bottom: 28px; padding-bottom: 22px; }
  .article-tldr { margin-bottom: 32px; padding: 20px; }
  .article-tldr p { font-size: 16px; line-height: 1.78; }
  .article-lead { font-size: 17px !important; line-height: 1.72 !important; }
  .article-reading-layout { gap: 28px; }
  .article-toc { grid-template-columns: 1fr; }
  .article-toc strong { grid-column: auto; }
  .article-content-section { margin-bottom: 30px; padding-bottom: 30px; }
  .article-section-heading { grid-template-columns: 30px minmax(0, 1fr); gap: 8px; margin-bottom: 13px; }
  .article-content-section h2 { font-size: 23px; }
  .article-content-section p { font-size: 16px; line-height: 1.78; }
  .article-answer-section { margin-bottom: 32px; padding: 20px; }
  .article-answer-section .direct-answer { font-size: 16px; line-height: 1.78; }
  .article-step-list li { grid-template-columns: 30px 1fr; }
  .article-step-list li span { grid-column: 2; }
  .hero .image-visual img,
  .about-layout .image-visual img,
  .faq-visual .image-visual img { width: 100%; transform: none; }
  .case-story-header { padding-bottom: 32px; }
  .service-article-header { padding-bottom: 32px; }
  .service-article-header h2 { font-size: 32px; }
  .service-article-header .service-answer { font-size: 18px; line-height: 1.8; }
  .service-toc { gap: 8px 18px; }
  .service-facts > div { grid-template-columns: 1fr; gap: 5px; }
  .service-chapter { padding-top: 48px; }
  .service-chapter-header h2 { font-size: 28px; }
  .service-entry { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .service-entry p, .service-boundaries li { font-size: 16px; line-height: 1.85; }
  .case-story-header h2 { font-size: 32px; }
  .case-story-lead { font-size: 18px; line-height: 1.8; }
  .case-story-chapter { padding: 34px 0; }
  .case-story-index {
    position: static;
    margin: 0 0 8px;
  }
  .case-story-chapter h3 { margin-bottom: 14px; font-size: 24px; }
  .case-story-chapter > p:not(.case-story-index) { font-size: 17px; line-height: 1.85; }
  .brand-logo-image { width: 34px; height: 34px; }
  .brand strong { font-size: 15px; }
  .faq-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .faq-filter { flex: 0 0 auto; min-width: auto; }
  .article-category-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  .article-category-filter { flex: 0 0 auto; }
}

.consent{display:block!important;font-size:13px!important}.consent input{width:auto!important;margin-right:8px}.consent a{color:var(--blue)}.form-result:empty{display:none}.form-result textarea{margin-top:12px}.article-toc{align-self:start}.article-reading-column{min-width:0}.article-table-wrap{overflow:auto}.image-caption{font-size:12px;color:var(--muted)}

.article-toc{position:static;display:flex;flex-direction:row;flex-wrap:wrap;gap:8px 20px;margin-bottom:36px;padding-top:16px}.article-toc strong{flex-basis:100%}.article-toc a{display:block;padding:5px 0;max-width:100%}.article-reading-layout{display:block}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation:none!important;transition:none!important}}
