/* Enterprise visual system layered over the original prototype styles. */
:root {
  --ink: #14213a;
  --muted: #58677e;
  --blue: #1f5eff;
  --blue-deep: #1749c6;
  --pale: #eef5ff;
  --line: #dfe7f2;
  --card: #ffffff;
  --tint: #f6f8fc;
  --shadow: 0 16px 44px rgba(27, 58, 109, 0.08);
  --radius: 12px;
}

html { scroll-padding-top: 84px; }
body {
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { color: #fff; background: var(--blue); }
* { scrollbar-width: thin; scrollbar-color: #a8b8d0 #f3f6fa; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f3f6fa; }
::-webkit-scrollbar-thumb { background: #a8b8d0; border: 3px solid #f3f6fa; border-radius: 8px; }

.container { width: min(1240px, calc(100% - 96px)); }

.site-header {
  height: 76px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(218, 227, 240, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(20, 33, 58, 0.02);
}
.nav-wrap { height: 76px; gap: 32px; }
.brand { min-width: 224px; gap: 12px; }
.brand-logo { display: block; width: 42px; height: 42px; flex: none; }
.brand-copy strong { font-size: 18px; font-weight: 800; letter-spacing: 0; }
.brand-copy small { margin-top: 4px; color: #64748b; font-size: 11px; letter-spacing: 0; }
.desktop-nav { gap: 34px; }
.desktop-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 180ms ease-out;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after { transform: scaleX(1); }
.desktop-nav a.is-active { color: var(--blue-deep); }
.nav-actions { gap: 10px; margin-left: 8px; }

.btn {
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out, border-color 180ms ease-out;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(31, 94, 255, 0.18); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-primary { background: var(--blue); box-shadow: 0 8px 20px rgba(31, 94, 255, 0.18); }
.btn-primary:hover { background: var(--blue-deep); }
.btn-outline { border-color: #a9bfe9; color: var(--blue-deep); }
.btn-outline:hover { border-color: var(--blue); background: #f7faff; }
.mobile-menu a.is-active:not(.btn) { color: var(--blue-deep); border-color: #b9cdf2; }
.btn-sm { min-height: 40px; padding: 8px 18px; font-size: 13px; }
.btn-lg { min-height: 52px; padding: 14px 26px; font-size: 15px; }

.section-blue {
  background: linear-gradient(120deg, #f8fbff 0%, #eef5ff 55%, #eaf3ff 100%);
}
.hero-grid {
  min-height: 536px;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 52px;
  padding: 58px 0 64px;
}
.hero-copy { position: relative; z-index: 2; }
h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(52px, 4.3vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
h1 em { color: #1e50b4; }
.hero-copy > p {
  max-width: 560px;
  margin-bottom: 0;
  color: #4f6078;
  font-size: 17px;
  line-height: 1.9;
}
.hero-actions { gap: 12px; margin-top: 32px; }
.hero-proof { margin-top: 28px; color: #51627a; font-size: 13px; gap: 10px; }
.proof-check { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: #e1ecff; }
.proof-line { width: 28px; background: #bdcaDC; }
.hero-visual { height: 420px; transform: none; }
.hero-material {
  inset: 0 -8%;
  width: 116%;
  height: 100%;
  opacity: 1;
  mix-blend-mode: normal;
  filter: drop-shadow(0 22px 26px rgba(47, 101, 202, 0.1));
}

.section { padding: 96px 0; }
.section-products { padding-top: 72px; }
.section-tint { background: var(--tint); }
.standards { padding: 96px 0; background: #fff; }
.insights { padding-top: 96px; background: var(--tint); }
.partners { padding: 96px 0; background: #fff; }

.section-heading {
  display: grid;
  grid-template-columns: 34px auto 34px;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
  margin-bottom: 48px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 2.4vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.section-heading h2 strong { color: #1e50b4; }
.section-heading > p {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.heading-rule { width: 34px; height: 8px; }
.heading-rule::before { width: 5px; height: 5px; top: 2px; background: #bbcff7; }
.heading-rule::after { width: 7px; height: 7px; top: 1px; left: 12px; }

.product-grid { gap: 24px; }
.feature-card,
.scene-card,
.standard-panel,
.insight-card,
.partner-card {
  border-radius: var(--radius);
}
.feature-card {
  min-height: 282px;
  padding: 32px 36px 28px;
  border-color: transparent;
  box-shadow: var(--shadow);
}
.feature-card:hover,
.scene-card:hover,
.insight-card:hover,
.partner-card:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(27, 58, 109, 0.11); }
.feature-card-top { align-items: flex-start; gap: 28px; min-height: 84px; }
.feature-card-top > div:first-child { min-width: 0; }
.feature-card h3 { margin-bottom: 8px; font-size: 24px; letter-spacing: -0.02em; }
.feature-card p:not(.kicker) { color: var(--muted); font-size: 14px; line-height: 1.7; }
.cube-mark {
  width: 84px;
  height: 84px;
  margin: -7px 0 0 0;
  opacity: 0.68;
  transform: rotate(-4deg);
  filter: drop-shadow(0 10px 12px rgba(53, 105, 202, 0.08));
}
.cube-mark:before,.cube-mark:after,.cube-mark i { transition: border-color 180ms ease-out, transform 180ms ease-out; }
.feature-card:hover .cube-mark { opacity: 0.86; }
.feature-card:hover .cube-mark i { transform: rotate(30deg) skewY(-10deg) translate(2px, 2px); }
.tag-row { gap: 14px; margin-top: 26px; }
.tag-row span {
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid #e8edf5;
  background: #f7f9fc;
  color: #46566d;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}
.tag-row span::before { width: 24px; height: 24px; }
.text-link {
  min-height: 34px;
  margin-top: 20px;
  gap: 10px;
  color: var(--blue-deep);
  font-size: 15px;
}
.text-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #edf4ff;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease-out, background 180ms ease-out, color 180ms ease-out;
}
.text-link:hover span { background: var(--blue); color: #fff; transform: translateX(3px); }

.scene-grid { gap: 18px; }
.scene-card {
  min-height: 156px;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  border-color: var(--line);
  box-shadow: none;
}
.scene-card > div { min-width: 0; }
.scene-icon { width: 58px; height: 58px; flex: 0 0 58px; background-size: contain; overflow: visible; }
.scene-card h3 { margin: 0 0 6px; font-size: 18px; }
.scene-card p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.scene-card .text-link { margin-top: 10px; font-size: 12px; }
.scene-card .text-link span { width: 22px; height: 22px; font-size: 14px; }

.standards-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr); gap: 22px; }
.standard-panel { min-height: 330px; padding: 30px 28px; border-color: var(--line); box-shadow: none; }
.standard-panel h3 { margin-bottom: 28px; font-size: 18px; }
.arch-body { grid-template-columns: 92px 1fr 86px; gap: 12px; height: 222px; }
.arch-labels,.arch-stack { gap: 7px; }
.arch-labels span,.arch-stack span { border-radius: 6px; font-size: 12px; }
.arch-badge { padding: 12px 8px; border-radius: 7px; color: #2d5fae; }
.workflow-steps { gap: 8px; min-height: 220px; }
.workflow-steps > div { min-width: 0; }
.workflow-steps .step-icon { width: 54px; height: 54px; flex: 0 0 54px; background-size: contain; overflow: visible; }
.workflow-steps b { margin-top: 12px; font-size: 13px; }
.workflow-steps small { margin-top: 7px; color: var(--muted); font-size: 11px; line-height: 1.65; }
.workflow-steps > i {
  position: relative;
  width: 32px;
  height: 1px;
  flex: 0 0 32px;
  background: #9bb9e9;
  font-size: 0;
}
.workflow-steps > i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #6d96dc;
  border-right: 1.5px solid #6d96dc;
  transform: rotate(45deg);
}
.guarantee { grid-column: 1 / -1; min-height: 172px; }
.guarantee-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
.guarantee-grid div { grid-template-columns: 46px 1fr; column-gap: 13px; padding: 10px 16px; }
.guarantee-grid div > * { min-width: 0; }
.guarantee-grid span { width: 46px; height: 46px; flex: 0 0 46px; background-size: contain; overflow: visible; }
.guarantee-grid b { font-size: 13px; }
.guarantee-grid small { color: var(--muted); font-size: 11px; }

.insight-grid { gap: 20px; }
.insight-card {
  min-height: 150px;
  grid-template-columns: 164px 1fr;
  gap: 20px;
  padding: 16px;
  border-color: var(--line);
  box-shadow: none;
}
.cover { width: 164px; height: 104px; }
.insight-card h3 { color: #24344f; font-size: 15px; line-height: 1.6; }
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 13px;
  padding: 8px 12px 8px 16px;
  border-radius: 7px;
  border-color: #afc4e9;
  color: var(--blue-deep);
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(43, 91, 176, 0.06);
  transition: background 180ms ease-out, border-color 180ms ease-out, color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}
.download-link span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #edf4ff;
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
  transition: background 180ms ease-out, color 180ms ease-out, transform 180ms ease-out;
}
.download-link:hover { border-color: var(--blue); background: var(--blue); color: #fff; box-shadow: 0 10px 20px rgba(31, 94, 255, 0.18); transform: translateY(-1px); }
.download-link:hover span { background: rgba(255, 255, 255, 0.18); color: #fff; transform: translate(1px, -1px); }
.download-link { border-width: 1.5px; font-weight: 800; letter-spacing: .01em; }
.insight-card { align-items: center; }
.insight-card .cover-material {
  position: relative;
  overflow: visible;
  isolation: isolate;
  background: linear-gradient(145deg,#f8fbff,#eef4ff) !important;
  border: 1px solid #e6eefb;
}
.cover-material::before,
.cover-material::after {
  content: none !important;
  display: none !important;
}
.cover-material img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 86px;
  object-fit: contain !important;
  object-position: center !important;
}
.insight-card > div:last-child { min-width: 0; }
.insight-summary { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.insight-card .download-link { position: relative; z-index: 2; }
.btn-lg { border-radius: 12px; }
.btn-primary { background: linear-gradient(135deg,#2d67ff 0%,#1d56e8 100%); }
.btn-primary > span { width: 30px; height: 30px; }
.btn-outline { border-width: 1.5px; }
.feature-card .text-link { font-weight: 800; }

.btn > span {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease-out, background 180ms ease-out;
}
.btn-primary > span { background: rgba(255, 255, 255, 0.14); }
.btn-outline > span { background: #edf4ff; }
.btn:hover > span { transform: translateX(2px); }

.partner-grid { gap: 20px; }
.partner-card { min-height: 132px; gap: 20px; padding: 26px 30px; border-color: var(--line); box-shadow: none; }
.partner-card > div { min-width: 0; }
.partner-card:hover { border-color: #b9cbea; box-shadow: 0 14px 34px rgba(27, 58, 109, 0.08); }
.partner-icon { width: 58px; height: 58px; flex: 0 0 58px; background-size: contain; overflow: visible; }
.partner-card h3 { margin-bottom: 6px; font-size: 18px; }
.partner-card p { color: var(--muted); font-size: 12px; line-height: 1.65; }

.contact-section {
  padding: 88px 0;
  background: linear-gradient(120deg, #0d2b60 0%, #123d85 100%);
}
.contact-grid { grid-template-columns: 0.78fr 1.22fr; gap: 86px; }
.contact-copy h2 { margin-bottom: 20px; color: #fff; font-size: clamp(38px, 3.5vw, 52px); letter-spacing: -0.03em; }
.contact-copy > p:not(.kicker) { max-width: 420px; color: #d8e5fb; font-size: 16px; line-height: 1.8; }
.contact-points { gap: 20px; margin-top: 30px; color: #fff; font-size: 13px; }
.contact-form { padding: 32px 34px 26px; border-radius: 12px; box-shadow: 0 24px 60px rgba(3, 16, 39, 0.22); }
.contact-form .btn-primary { box-shadow: 0 8px 20px rgba(3, 16, 39, 0.16); }
.form-head { margin-bottom: 22px; }
.form-head h3 { font-size: 22px; }
.form-row { gap: 16px; }
.contact-form label { margin-bottom: 16px; }
.contact-form label > span { margin-bottom: 8px; color: #344258; font-size: 12px; }
.contact-form label small { color: #64748b; }
.contact-form input,.contact-form select,.contact-form textarea {
  min-height: 46px;
  border-color: #d8e1ed;
  background: #fff;
  font-size: 13px;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out;
}
.contact-form textarea { min-height: 88px; }
.contact-form input:hover,.contact-form select:hover,.contact-form textarea:hover { border-color: #a9bbd2; }
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { border-color: var(--blue); outline: 0; box-shadow: 0 0 0 3px rgba(31, 94, 255, 0.12); }
.form-note { margin-top: 12px; color: #64748b; }

.site-footer { padding: 54px 0 22px; background: #091a36; }
.footer-grid { grid-template-columns: 1.7fr repeat(3, 1fr); gap: 54px; }
.footer-grid > div > p { margin-top: 20px; color: #9aabc2; font-size: 12px; }
.footer-grid h3 { margin-bottom: 16px; font-size: 14px; }
.footer-grid > div > a:not(.brand) { margin: 11px 0; color: #aebbd0; font-size: 12px; }
.footer-grid > div > a:not(.brand):hover { color: #fff; }
.footer-qr { display: block; width: 88px; height: 88px; margin-top: 16px; padding: 6px; border-radius: 10px; background: #fff; object-fit: contain; box-shadow: 0 8px 20px rgba(0,0,0,.16); }
.footer-bottom { margin-top: 40px; padding-top: 20px; color: #8191aa; }

.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 460ms cubic-bezier(.22,1,.36,1), transform 460ms cubic-bezier(.22,1,.36,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .container { width: min(100% - 64px, 1040px); }
  .desktop-nav { gap: 22px; }
  .hero-grid { gap: 30px; }
  .hero-visual { height: 390px; transform: none; }
  .product-grid { grid-template-columns: 1fr; }
  .insight-card { grid-template-columns: 132px 1fr; }
  .cover { width: 132px; height: 92px; }
}

@media (max-width: 980px) {
  .desktop-nav,.nav-actions { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .mobile-menu { top: 76px; }
  .hero-grid { grid-template-columns: 0.92fr 1.08fr; }
  h1 { font-size: 50px; }
  .product-grid { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: 1fr; }
  .guarantee { grid-column: auto; }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card { grid-template-columns: 176px 1fr; }
  .cover { width: 176px; height: 104px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .container { width: min(100% - 40px, 560px); }
  .site-header,.nav-wrap { height: 68px; }
  .brand { min-width: 0; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 16px; }
  .mobile-menu { top: 68px; padding: 16px 20px 22px; }
  .mobile-menu a { min-height: 46px; display: flex; align-items: center; }
  .menu-toggle { width: 44px; height: 44px; padding: 10px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .menu-toggle span { transition: transform 180ms ease-out, opacity 180ms ease-out; }

  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 24px; padding: 46px 0 42px; }
  h1 { margin-bottom: 20px; font-size: clamp(40px, 11vw, 48px); line-height: 1.1; }
  .hero-copy > p { font-size: 15px; line-height: 1.85; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { margin-top: 24px; font-size: 12px; }
  .hero-visual { height: 240px; margin: 0; transform: none; }
  .hero-material { inset: 0 -6%; width: 112%; }

  .section,.standards,.insights,.partners { padding: 72px 0; }
  .section-products { padding-top: 72px; }
  .section-heading { grid-template-columns: 24px minmax(0, auto) 24px; column-gap: 8px; margin-bottom: 34px; }
  .section-heading h2 { font-size: 28px; }
  .section-heading > p { margin-top: 12px; font-size: 14px; line-height: 1.7; }
  .heading-rule { width: 24px; }

  .product-grid,.scene-grid,.standards-grid,.partner-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; padding: 26px 24px; }
  .feature-card h3 { font-size: 21px; }
  .cube-mark { width: 64px; height: 64px; transform: rotate(-4deg) scale(.9); transform-origin: top right; }
  .tag-row { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
  .tag-row span { min-height: 50px; }
  .text-link { margin-top: 20px; }

  .scene-card { min-height: 128px; padding: 22px 24px; }
  .scene-icon { width: 52px; height: 52px; flex-basis: 52px; background-size: contain; }

  .standard-panel { min-height: 0; padding: 26px 20px; }
  .standard-panel h3 { margin-bottom: 24px; }
  .arch-body { grid-template-columns: 72px 1fr 64px; gap: 7px; height: 202px; }
  .arch-labels,.arch-stack { gap: 5px; }
  .arch-labels span,.arch-stack span,.stack-bottom b { font-size: 11px; }
  .arch-badge { padding: 8px 4px; }
  .arch-badge span { width: 36px; height: 36px; background-size: 32px 32px; }
  .arch-badge b { font-size: 11px; }
  .workflow-steps { display: grid; grid-template-columns: 1fr; gap: 0; min-height: 0; align-items: stretch; }
  .workflow-steps > div { display: grid; grid-template-columns: 52px 1fr; grid-template-rows: auto auto; column-gap: 14px; position: relative; padding: 8px 8px 24px; text-align: left; }
  .workflow-steps > div:not(:last-of-type)::after { content: ""; position: absolute; bottom: 3px; left: 33px; width: 1px; height: 18px; background: #b9c9e3; }
  .workflow-steps > i { display: none; }
  .workflow-steps .step-icon { grid-row: 1 / span 2; width: 48px; height: 48px; flex-basis: 48px; background-size: contain; }
  .workflow-steps b { margin-top: 2px; }
  .workflow-steps small { margin-top: 3px; font-size: 11px; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 8px; }
  .guarantee-grid div { padding: 8px 12px; }

  .insight-card { grid-template-columns: 122px minmax(0, 1fr); gap: 16px; min-height: 142px; padding: 14px; }
  .cover { width: 122px; height: 92px; }
  .insight-card h3 { font-size: 14px; }
  .partner-card { min-height: 118px; padding: 22px 24px; }

  .contact-section { padding: 72px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .contact-copy h2 { font-size: 38px; }
  .contact-copy > p:not(.kicker) { font-size: 15px; }
  .contact-form { padding: 26px 22px 22px; }
  .form-head h3 { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .site-footer { padding-top: 46px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; line-height: 1.8; }
  .footer-qr { width: 76px; height: 76px; }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 32px); }
  h1 { font-size: 38px; }
  .section-heading { grid-template-columns: 18px minmax(0, auto) 18px; }
  .section-heading h2 { font-size: 25px; }
  .heading-rule { width: 18px; }
  .feature-card-top { gap: 10px; }
  .insight-card { grid-template-columns: 132px minmax(0, 1fr); gap: 12px; }
  .cover { width: 132px; height: 86px; }
  .contact-copy h2 { font-size: 34px; }
}

/* The material board defines four equal cooperation modes. Keep the row intact on desktop. */
.partner-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.partner-card { min-width: 0; }
@media (max-width: 1100px) and (min-width: 761px) {
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .partner-grid { grid-template-columns: 1fr; }
  .scene-card .scene-icon { width: 52px; height: 52px; flex-basis: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal,.js .reveal.is-visible { opacity: 1; transform: none; transition: none; }
}

/* Final polish: stronger hierarchy, richer surfaces, and clearer conversion cues. */
.eyebrow { margin-bottom: 22px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; box-shadow: 0 0 0 6px rgba(31,94,255,.10); }
.hero-copy > p { max-width: 500px; }
.hero-actions .btn-primary { min-width: 174px; }
.trust-strip { background: #fff; border-bottom: 1px solid #edf1f7; padding: 8px 0; }
.trust-inner { min-height: 70px; display: flex; align-items: center; justify-content: center; gap: 22px; color: #58708f; font-size: 12px; }
.trust-label { margin-right: 14px; color: #213c70; font-size: 13px; font-weight: 700; }
.trust-inner i { width: 4px; height: 4px; border-radius: 50%; background: #a8c3f2; }
.feature-card { position: relative; overflow: hidden; background: linear-gradient(145deg,#fff 0%,#f8fbff 100%); }
.scene-card { background: rgba(255,255,255,.82); }
.scene-card:hover { border-color: #b8cdf4; }
.contact-section { position: relative; overflow: hidden; }
.contact-grid { position: relative; z-index: 1; }
.contact-form { border: 1px solid rgba(215,227,246,.7); }
.btn:hover { box-shadow: 0 10px 24px rgba(20, 33, 58, 0.14); }
.btn-primary { box-shadow: 0 8px 20px rgba(20, 33, 58, 0.16); }
@media (max-width: 760px) {
  .trust-inner { min-height: 58px; justify-content: flex-start; gap: 12px; overflow: auto; white-space: nowrap; }
  .trust-label { margin-right: 4px; }
}

/* Enterprise CTA system: quiet surfaces, explicit hierarchy, and deterministic arrows. */
.btn {
  position: relative;
  min-height: 48px;
  border-radius: 10px;
  padding: 10px 14px 10px 22px;
  border-width: 1px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: none;
  transition: transform 180ms ease-out, background 180ms ease-out, border-color 180ms ease-out, box-shadow 180ms ease-out, color 180ms ease-out;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: #225cf2;
  background-image: none;
  border-color: #225cf2;
  color: #fff;
  box-shadow: 0 8px 18px rgba(34, 92, 242, .18);
}
.btn-primary:hover {
  background: #174bd4;
  border-color: #174bd4;
  box-shadow: 0 10px 22px rgba(34, 92, 242, .24);
}
.btn-outline {
  background: rgba(255, 255, 255, .9);
  border-color: #a8bfe9;
  color: #1749bd;
  box-shadow: 0 4px 12px rgba(35, 75, 145, .04);
}
.btn-outline:hover {
  background: #f5f8ff;
  border-color: #7ea2e4;
  color: #123fa7;
  box-shadow: 0 8px 18px rgba(35, 75, 145, .09);
}
.btn-lg {
  min-height: 54px;
  min-width: 182px;
  padding: 10px 12px 10px 22px;
  border-radius: 12px;
  font-size: 15px;
}
.btn-sm {
  min-height: 40px;
  padding: 7px 17px;
  border-radius: 8px;
  font-size: 13px;
}
.btn > .action-arrow,
.text-link > .action-arrow,
.download-link > .external-arrow {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  transition: transform 180ms ease-out, background 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}
.btn > .action-arrow {
  width: 30px;
  height: 30px;
  margin-left: 2px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
}
.btn-outline > .action-arrow {
  background: #edf4ff;
  border: 1px solid #e0eafc;
  color: #1f5eff;
}
.action-arrow::before {
  content: "";
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-1px);
}
.action-arrow::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-2px) rotate(45deg);
}
.btn:hover > .action-arrow { transform: translateX(2px); }
.btn-primary:hover > .action-arrow { background: rgba(255, 255, 255, .22); }
.btn-outline:hover > .action-arrow { background: #e3edff; border-color: #ccdcf8; }

.text-link {
  min-height: 36px;
  gap: 10px;
  color: #1749bd;
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease-out;
}
.text-link > .action-arrow {
  width: 30px;
  height: 30px;
  background: #f0f5ff;
  border: 1px solid #e1eafb;
  color: #1f5eff;
}
.text-link:hover { color: #123fa7; }
.text-link:hover > .action-arrow { background: #1f5eff; border-color: #1f5eff; color: #fff; transform: translateX(2px); }
.scene-card .text-link { min-height: 30px; margin-top: 8px; font-size: 12px; }
.scene-card .text-link > .action-arrow { width: 26px; height: 26px; }

.download-link {
  min-height: 44px;
  margin-top: 13px;
  padding: 7px 12px 7px 16px;
  border: 1.5px solid #b5c9ea;
  border-radius: 10px;
  background: #fff;
  color: #1749bd;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(35, 75, 145, .05);
}
.download-link > .external-arrow {
  width: 30px;
  height: 30px;
  background: #edf4ff;
  color: #1f5eff;
}
.external-arrow::before {
  content: "";
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-45deg) translate(-1px, 0);
}
.external-arrow::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(4px, -4px);
}
.download-link:hover {
  background: #1f5eff;
  border-color: #1f5eff;
  color: #fff;
  box-shadow: 0 8px 18px rgba(31, 94, 255, .16);
  transform: translateY(-1px);
}
.download-link:hover > .external-arrow { background: rgba(255, 255, 255, .18); color: #fff; transform: translate(1px, -1px); }

@media (max-width: 760px) {
  .btn-lg { width: 100%; min-width: 0; }
  .btn > .action-arrow { width: 30px; height: 30px; }
  .text-link { min-height: 38px; }
}

/* CTA finish: a restrained enterprise control language across every conversion point. */
.btn,
.text-link,
.download-link {
  -webkit-tap-highlight-color: transparent;
}

.btn {
  gap: 14px;
  border-radius: 10px;
  letter-spacing: 0;
}

.btn-primary {
  background: #225cf2;
  border-color: #225cf2;
  box-shadow: 0 8px 18px rgba(20, 33, 58, .16), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.btn-primary:hover {
  background: #174bd4;
  border-color: #174bd4;
  box-shadow: 0 12px 24px rgba(20, 33, 58, .20), inset 0 1px 0 rgba(255, 255, 255, .14);
}

.btn-outline {
  background: #fff;
  border-color: #b7c9e8;
  color: #1749bd;
  box-shadow: 0 1px 0 rgba(25, 61, 120, .04);
}

.btn-outline:hover {
  background: #f8fbff;
  border-color: #7fa2df;
  color: #123fa7;
  box-shadow: 0 8px 18px rgba(35, 75, 145, .10);
}

.btn:focus-visible,
.text-link:focus-visible,
.download-link:focus-visible {
  outline: 3px solid rgba(34, 92, 242, .24);
  outline-offset: 3px;
}

.btn > .action-arrow,
.download-link > .external-arrow {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.btn-primary > .action-arrow {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.btn-outline > .action-arrow {
  background: #edf4ff;
  border: 1px solid #e2ebfb;
  box-shadow: none;
}

.action-arrow::before {
  width: 11px;
  height: 2px;
  transform: translateX(-1px);
}

.action-arrow::after {
  width: 7px;
  height: 7px;
  border-width: 2px;
  transform: translate(-2px) rotate(45deg);
}

.text-link {
  min-height: 38px;
  gap: 10px;
  color: #1749bd;
  font-size: 14px;
  font-weight: 800;
}

.text-link > .action-arrow {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #eef4ff;
  border: 1px solid #e1eafb;
  color: #1f5eff;
}

.text-link:hover { color: #123fa7; }
.text-link:hover > .action-arrow {
  background: #1f5eff;
  border-color: #1f5eff;
  color: #fff;
  transform: translateX(3px);
}

.scene-card .text-link {
  min-height: 32px;
  margin-top: 8px;
  font-size: 12px;
}

.scene-card .text-link > .action-arrow {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.download-link {
  min-height: 46px;
  margin-top: 14px;
  padding: 7px 11px 7px 16px;
  border: 1px solid #b7c9e8;
  border-radius: 9px;
  background: #fff;
  color: #1749bd;
  box-shadow: 0 1px 0 rgba(25, 61, 120, .04);
}

.download-link > .external-arrow {
  background: #edf4ff;
  border: 1px solid #e2ebfb;
  color: #1f5eff;
}

.external-arrow::before {
  width: 11px;
  height: 2px;
  transform: rotate(-45deg) translate(-1px, 0);
}

.external-arrow::after {
  width: 7px;
  height: 7px;
  border-width: 2px;
  transform: translate(4px, -4px);
}

.download-link:hover {
  background: #1f5eff;
  border-color: #1f5eff;
  color: #fff;
  box-shadow: 0 10px 20px rgba(20, 33, 58, .14);
}

.download-link:hover > .external-arrow {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .12);
  color: #fff;
}

@media (max-width: 760px) {
  .btn-lg { min-height: 56px; }
  .btn > .action-arrow,
  .download-link > .external-arrow { width: 32px; height: 32px; }
}

/* Image fitting corrections */
.hero-visual { min-width: 0; }
.hero-material { display: block; object-fit: contain; object-position: 50% 50%; }
.insight-card .cover-material { aspect-ratio: 1.58 / 1; height: auto; min-height: 104px; }
.insight-card .cover-material img { object-fit: contain; object-position: center; padding: 0; }
@media (max-width: 980px) {
  .hero-material { width: 108%; inset: 0 -4%; }
  .insight-card .cover-material { min-height: 104px; }
  .js .reveal,
  .js .reveal.is-visible { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 760px) {
  .hero-visual { height: 270px; overflow: visible; }
  .hero-material { width: 116%; max-width: none; inset: 0 -8%; }
  .insight-card .cover-material { width: 122px; min-height: 92px; aspect-ratio: auto; }
  .insight-card .cover-material img { width: auto; height: auto; max-width: 72%; max-height: 76px; object-fit: contain !important; object-position: center !important; }
}

/* Keep supplied transparent icons inside predictable frames at every breakpoint. */
.scene-icon,
.step-icon,
.guarantee-grid span,
.partner-icon,
.arch-badge span,
.tag-row span::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.tag-row span { overflow: visible; }
.tag-row span::before { flex: 0 0 24px; }

/* Arrow geometry fix: keep the shaft and head on one optical centerline. */
.action-arrow::before,
.action-arrow::after,
.external-arrow::before,
.external-arrow::after {
  position: absolute;
  display: block;
  content: "";
  box-sizing: border-box;
}

.action-arrow::before {
  top: 50%;
  left: 8px;
  width: 11px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.action-arrow::after {
  top: 50%;
  right: 8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.external-arrow::before {
  top: 18px;
  left: 8px;
  width: 12px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.external-arrow::after {
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
}

/* Big-tech CTA system: hierarchy first, chrome second. */
:root {
  --cta-primary: #225cf2;
  --cta-primary-hover: #174bd4;
  --cta-ink: #1749bd;
  --cta-border: #b7c9e8;
  --cta-soft: #eef4ff;
  --cta-focus: rgba(34, 92, 242, .28);
}

.btn {
  min-height: 48px;
  padding: 8px 10px 8px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  gap: 14px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.btn-lg {
  min-width: 184px;
  min-height: 56px;
  padding-left: 24px;
  border-radius: 12px;
  font-size: 16px;
}

.btn-sm {
  min-height: 40px;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
}

.btn-primary {
  background: var(--cta-primary);
  border-color: var(--cta-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(20, 33, 58, .16), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.btn-primary:hover {
  background: var(--cta-primary-hover);
  border-color: var(--cta-primary-hover);
  box-shadow: 0 12px 24px rgba(20, 33, 58, .2), inset 0 1px 0 rgba(255, 255, 255, .14);
}

.btn-outline {
  background: #fff;
  border-color: var(--cta-border);
  color: var(--cta-ink);
  box-shadow: 0 1px 0 rgba(25, 61, 120, .04);
}

.btn-outline:hover {
  background: #f8fbff;
  border-color: #7fa2df;
  color: #123fa7;
  box-shadow: 0 8px 18px rgba(35, 75, 145, .1);
}

.btn:active,
.text-link:active,
.download-link:active {
  transform: translateY(1px);
  transition-duration: 80ms;
}

.btn:focus-visible,
.text-link:focus-visible,
.download-link:focus-visible {
  outline: 3px solid var(--cta-focus);
  outline-offset: 3px;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .52;
  transform: none;
  box-shadow: none;
}

.btn > .action-arrow,
.download-link > .external-arrow {
  width: 32px;
  height: 32px;
  margin: 0;
  border-radius: 10px;
  flex: 0 0 32px;
}

.btn-lg > .action-arrow { width: 34px; height: 34px; flex-basis: 34px; }
.btn-primary > .action-arrow {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.btn-outline > .action-arrow,
.download-link > .external-arrow {
  background: var(--cta-soft);
  border: 1px solid #e2ebfb;
  color: var(--cta-primary);
}

.btn:hover > .action-arrow,
.text-link:hover > .action-arrow,
.download-link:hover > .external-arrow {
  transform: translateX(3px);
}

.btn-primary:hover > .action-arrow {
  background: rgba(255, 255, 255, .22);
}

.btn-outline:hover > .action-arrow {
  background: #e3edff;
  border-color: #ccdcf8;
}

.text-link {
  min-height: 38px;
  margin-top: 20px;
  gap: 10px;
  color: var(--cta-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link > .action-arrow {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #f2f6ff;
  border: 1px solid #e1eafb;
  color: var(--cta-primary);
}

.text-link:hover { color: #123fa7; }
.text-link:hover > .action-arrow {
  background: var(--cta-primary);
  border-color: var(--cta-primary);
  color: #fff;
}

.scene-card .text-link {
  min-height: 36px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
}

.scene-card .text-link > .action-arrow {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.download-link {
  min-height: 46px;
  margin-top: 14px;
  padding: 7px 12px 7px 16px;
  border: 1px solid var(--cta-border);
  border-radius: 9px;
  background: #fff;
  color: var(--cta-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(25, 61, 120, .04);
}

.download-link:hover {
  background: var(--cta-primary);
  border-color: var(--cta-primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(20, 33, 58, .14);
}

.download-link:hover > .external-arrow {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .12);
  color: #fff;
}

@media (max-width: 760px) {
  .btn-lg { width: 100%; min-width: 0; min-height: 56px; }
  .hero-actions { gap: 10px; }
  .scene-card .text-link { min-height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .text-link,
  .download-link,
  .btn > .action-arrow,
  .text-link > .action-arrow,
  .download-link > .external-arrow { transition: none; }
}

/* Licensed local SVG icons replace the hand-drawn pseudo-element arrows. */
.action-arrow::before,
.external-arrow::before {
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  background-color: currentColor;
  background-image: none;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: translate(-50%, -50%);
}

.action-arrow::before {
  -webkit-mask-image: url("assets/icons/arrow-right.svg");
  mask-image: url("assets/icons/arrow-right.svg");
}

.external-arrow::before {
  -webkit-mask-image: url("assets/icons/arrow-up-right.svg");
  mask-image: url("assets/icons/arrow-up-right.svg");
}

.action-arrow::after,
.external-arrow::after {
  content: none;
}

/* Arrow hierarchy pass: keep the primary action expressive, let supporting links recede. */
.btn > .action-arrow {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  border-radius: 50%;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn-lg > .action-arrow {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}

.btn-primary > .action-arrow {
  background: rgba(255, 255, 255, .16);
  border: 0;
  box-shadow: none;
}

.btn-outline > .action-arrow {
  background: transparent;
  border: 0;
  color: currentColor;
  box-shadow: none;
}

.btn-outline:hover > .action-arrow {
  background: transparent;
  border-color: transparent;
  color: var(--cta-primary);
}

.text-link > .action-arrow,
.scene-card .text-link > .action-arrow,
.download-link > .external-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  box-shadow: none;
}

.text-link > .action-arrow::before,
.scene-card .text-link > .action-arrow::before,
.download-link > .external-arrow::before {
  width: 17px;
  height: 17px;
}

.text-link:hover > .action-arrow,
.scene-card .text-link:hover > .action-arrow,
.download-link:hover > .external-arrow {
  background: transparent;
  border-color: transparent;
  color: currentColor;
  transform: translateX(3px);
}

.download-link:hover > .external-arrow {
  transform: translate(2px, -2px);
}

@media (max-width: 760px) {
  .btn > .action-arrow,
  .btn-lg > .action-arrow {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .text-link > .action-arrow,
  .scene-card .text-link > .action-arrow,
  .download-link > .external-arrow {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

/* Reference-board pass: product cards, delivery system, and consultation flow. */
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 34px 34px 28px;
  border: 1px solid #dfe8f5;
  background: #fff;
}

.feature-card::before {
  position: absolute;
  top: 174px;
  right: -16%;
  left: -16%;
  height: 112px;
  border-radius: 0 0 50% 50%;
  content: "";
  background: #f0f6ff;
  opacity: .9;
  pointer-events: none;
}

.feature-card--custom::before {
  background: #edfbf8;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card--standard {
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.feature-card--custom {
  border-bottom-color: #16bfa5;
  background: linear-gradient(180deg, #fff 0%, #fbfffe 100%);
}

.feature-card-top {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 140px;
  align-items: flex-start;
  gap: 24px;
}

.feature-card-title {
  min-width: 0;
}

.feature-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 13px;
  padding: 3px 10px;
  border: 1px solid #d7e5ff;
  border-radius: 999px;
  color: #2e6ddd;
  background: #f4f8ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.feature-card--custom .feature-card-kicker {
  border-color: #c9f2ea;
  color: #0b9b88;
  background: #f0fcfa;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.3;
}

.feature-card p:not(.kicker) {
  max-width: 35ch;
  font-size: 14px;
  line-height: 1.75;
}

.feature-hero-icon {
  display: grid;
  width: 104px;
  height: 104px;
  flex: 0 0 104px;
  place-items: center;
  border: 1px solid #dce9ff;
  border-radius: 24px;
  background: #edf4ff;
  box-shadow: 0 12px 24px rgba(53, 108, 218, .1);
}

.feature-card--custom .feature-hero-icon {
  border-color: #d7f3ee;
  background: #edfbf8;
  box-shadow: 0 12px 24px rgba(18, 172, 151, .1);
}

.feature-hero-icon img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.feature-divider {
  height: 1px;
  margin: 6px 0 18px;
  background: #e8eef7;
}

.feature-list-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: #1d3a70;
  font-size: 14px;
  font-weight: 800;
}

.feature-card--custom .feature-list-label {
  color: #116b61;
}

.feature-list-label small {
  color: #7a8aa3;
  font-size: 11px;
  font-weight: 500;
}

.feature-card .tag-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.feature-card .tag-row span {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  min-width: 0;
  min-height: 74px;
  padding: 11px 12px;
  border: 1px solid #e2eaf6;
  border-radius: 12px;
  background: #fff;
  color: #223554;
  text-align: left;
  white-space: normal;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.feature-card--custom .tag-row span {
  border-color: #def0ed;
}

.feature-card .tag-row span:hover {
  border-color: #b9d1fa;
  box-shadow: 0 8px 18px rgba(38, 93, 176, .08);
  transform: translateY(-2px);
}

.feature-card--custom .tag-row span:hover {
  border-color: #a9e2d8;
}

.feature-card .tag-row span img {
  grid-row: 1 / span 2;
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  object-position: center;
}

.feature-card .tag-row span b {
  min-width: 0;
  color: #233756;
  font-size: 13px;
  line-height: 1.35;
}

.feature-card .tag-row span small {
  min-width: 0;
  margin-top: 2px;
  overflow: hidden;
  color: #5c6f8b;
  font-size: 11px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #edf1f7;
}

.feature-fit {
  max-width: 26ch;
  color: #5c6f8b;
  font-size: 12px;
  line-height: 1.6;
}

.feature-card .text-link {
  flex: 0 0 auto;
  margin-top: 0;
  color: #2c6ff1;
  font-size: 13px;
  white-space: nowrap;
}

.feature-card--custom .text-link {
  color: #0c9b88;
}

.standards {
  background: #f5f9ff;
}

.standards-grid {
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.22fr);
  gap: 22px;
}

.standard-panel {
  min-height: 372px;
  padding: 30px 32px 28px;
  border: 1px solid #dce8f8;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(36, 87, 167, .06);
}

.standard-panel-title {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
}

.standard-panel-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border: 1px solid #dce9ff;
  border-radius: 16px;
  background: #edf4ff;
}

.standard-panel-symbol img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.standard-panel h3 {
  margin-bottom: 5px;
  font-size: 21px;
}

.standard-panel-summary {
  max-width: 31ch;
  font-size: 12px;
}

.standard-panel-note {
  padding: 7px 11px;
  border-radius: 999px;
  color: #2766d7;
  background: #eff5ff;
  font-size: 11px;
}

.standard-panel-note::before {
  width: 6px;
  height: 6px;
  margin-right: 2px;
}

.architecture .arch-body {
  min-height: 230px;
  margin-top: 4px;
  grid-template-columns: 96px minmax(0, 1fr) 90px;
  gap: 12px;
}

.architecture .arch-labels span,
.architecture .arch-stack span {
  min-height: 0;
  border-radius: 9px;
  font-size: 12px;
}

.architecture .arch-labels span:nth-child(1) { background: #eff5ff; }
.architecture .arch-labels span:nth-child(2) { background: #f3f1ff; }
.architecture .arch-labels span:nth-child(3) { background: #effbf8; }
.architecture .arch-labels span:nth-child(4) { background: #fff9ef; }
.architecture .arch-stack span { border-color: #d9e7fb; background: #f8fbff; color: #2b6ddd; }
.architecture .arch-stack span:nth-child(2) { background: #f2f0ff; border-color: #e0d8ff; color: #7655d7; }
.architecture .arch-stack span:nth-child(3) { background: #effbf8; border-color: #d1f0e9; color: #087b6f; }
.architecture .arch-stack .stack-bottom { background: transparent; }

.architecture .arch-badge {
  border: 1px solid #e0eafd;
  border-radius: 12px;
  background: #f6f9ff;
}

.architecture .arch-badge img {
  width: 54px;
  height: 54px;
  padding: 3px;
  object-fit: contain;
}

.workflow .workflow-steps {
  min-height: 230px;
  align-items: flex-start;
  padding-top: 8px;
}

.workflow .workflow-steps > div {
  padding: 0 2px;
}

.workflow .workflow-steps .step-icon {
  display: block;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  padding: 9px;
  border: 1px solid #dce9ff;
  border-radius: 50%;
  background: #edf4ff;
  object-fit: contain;
}

.workflow .workflow-steps > div:nth-of-type(2) .step-icon { background: #edfbf8; border-color: #d3f2eb; }
.workflow .workflow-steps > div:nth-of-type(3) .step-icon { background: #f5efff; border-color: #e7dafe; }
.workflow .workflow-steps > div:nth-of-type(4) .step-icon { background: #fff7e9; border-color: #f8e3bb; }

.workflow .workflow-steps b {
  margin-top: 13px;
  font-size: 14px;
}

.workflow .workflow-steps small {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.7;
}

.workflow .workflow-steps > i {
  width: 28px;
  flex-basis: 28px;
  margin-top: 31px;
  background: #b4caf0;
}

.workflow .workflow-steps > i::after {
  width: 5px;
  height: 5px;
  border-width: 1px;
  border-color: #6e98df;
}

.guarantee {
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
  min-height: 356px;
  padding: 34px 40px 38px;
}

.guarantee::after {
  position: absolute;
  top: 10px;
  right: 88px;
  width: 250px;
  height: 250px;
  content: "";
  background: url("assets/icons/guarantee-data.png") center / contain no-repeat;
  opacity: .055;
  pointer-events: none;
}

.guarantee > * {
  position: relative;
  z-index: 1;
}

.guarantee-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.guarantee-grid div {
  display: grid;
  min-height: 190px;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px 14px;
  border: 1px solid #e2ebf8;
  border-radius: 18px;
  background: #fbfdff;
  text-align: center;
}

.guarantee-grid div:nth-child(2) { background: #fcfbff; border-color: #ebe4ff; }
.guarantee-grid div:nth-child(3) { background: #f9fffd; border-color: #ddf2ed; }
.guarantee-grid div:nth-child(4) { background: #fffdf8; border-color: #f6e8cc; }

.guarantee-grid img {
  display: block;
  width: 78px;
  height: 78px;
  margin-bottom: 2px;
  padding: 8px;
  border-radius: 50%;
  background: #eff5ff;
  object-fit: contain;
}

.guarantee-grid div:nth-child(2) img { background: #f1edff; }
.guarantee-grid div:nth-child(3) img { background: #e9faf6; }
.guarantee-grid div:nth-child(4) img { background: #fff4de; }

.guarantee-grid b {
  color: #223756;
  font-size: 16px;
}

.guarantee-grid small {
  color: #5c6f8b;
  font-size: 12px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 118px;
  background: linear-gradient(120deg, #0a2c73 0%, #123f9d 62%, #1b4eb8 100%);
}

.contact-section::before {
  position: absolute;
  top: -260px;
  left: -160px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(164, 202, 255, .18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 110px rgba(136, 185, 255, .05), 0 0 0 220px rgba(136, 185, 255, .035);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .87fr) minmax(0, 1.13fr);
  gap: 72px;
}

.contact-copy {
  min-width: 0;
}

.contact-points {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 38px;
}

.contact-step {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.contact-step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(174, 214, 255, .4);
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
}

.contact-step-icon img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-step:nth-of-type(1) .contact-step-icon { background: rgba(44, 119, 255, .45); }
.contact-step:nth-of-type(2) .contact-step-icon { background: rgba(23, 194, 172, .48); }
.contact-step:nth-of-type(3) .contact-step-icon { background: rgba(122, 93, 255, .52); }

.contact-step b {
  margin-top: 13px;
  color: #fff;
  font-size: 14px;
}

.contact-step small {
  margin-top: 5px;
  color: #c8ddff;
  font-size: 11px;
  line-height: 1.7;
}

.contact-points > i {
  width: 22px;
  flex: 0 0 22px;
  margin-top: 29px;
  border-top: 1px solid rgba(192, 219, 255, .58);
  font-size: 0;
}

.contact-form {
  border: 1px solid rgba(196, 221, 255, .8);
  border-radius: 20px;
  background: #fff;
}

.contact-form .btn-wide {
  min-height: 58px;
  border-radius: 13px;
  background: linear-gradient(100deg, #2d78ff, #5c55ec);
  font-size: 16px;
  box-shadow: 0 14px 26px rgba(42, 77, 195, .22);
}

@media (max-width: 980px) and (min-width: 761px) {
  .feature-card {
    padding: 30px 26px 26px;
  }

  .feature-card-top {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
  }

  .feature-hero-icon {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }

  .feature-card .tag-row span {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 8px;
    padding-inline: 9px;
  }

  .feature-card .tag-row span img {
    width: 32px;
    height: 32px;
  }

  .feature-card .tag-row span b {
    font-size: 12px;
  }

  .feature-card .tag-row span small {
    font-size: 11px;
  }

  .standard-panel {
    padding-inline: 24px;
  }

  .guarantee {
    padding-inline: 28px;
  }

  .guarantee::after {
    right: 36px;
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 760px) {
  .feature-card {
    min-height: 0;
    padding: 28px 22px 26px;
    border-radius: 16px;
  }

  .feature-card-top {
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 0;
    gap: 14px;
  }

  .feature-card-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .feature-card p:not(.kicker) {
    font-size: 13px;
  }

  .feature-hero-icon {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
    border-radius: 18px;
  }

  .feature-hero-icon img {
    width: 44px;
    height: 44px;
  }

  .feature-list-label {
    display: block;
  }

  .feature-list-label small {
    display: block;
    margin-top: 4px;
  }

  .feature-card .tag-row span {
    min-height: 70px;
    padding: 10px 9px;
  }

  .feature-card .tag-row span b {
    font-size: 12px;
  }

  .feature-card .tag-row span small {
    font-size: 11px;
  }

  .feature-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .guarantee {
    min-height: 0;
    padding: 28px 22px 30px;
  }

  .guarantee::after {
    top: 24px;
    right: 22px;
    width: 140px;
    height: 140px;
    opacity: .04;
  }

  .standard-panel-title {
    align-items: flex-start;
  }

  .standard-panel-symbol {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 13px;
  }

  .standard-panel-symbol img {
    width: 30px;
    height: 30px;
  }

  .standard-panel-note {
    padding: 6px 8px;
    font-size: 11px;
  }

  .architecture .arch-body {
    grid-template-columns: 78px minmax(0, 1fr) 68px;
    gap: 7px;
  }

  .architecture .arch-labels span,
  .architecture .arch-stack span {
    font-size: 11px;
  }

  .workflow .workflow-steps {
    min-height: 0;
    padding-top: 0;
  }

  .workflow .workflow-steps .step-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    padding: 7px;
  }

  .workflow .workflow-steps b {
    font-size: 12px;
  }

  .workflow .workflow-steps small {
    font-size: 11px;
  }

  .workflow .workflow-steps > i {
    display: none;
  }

  .guarantee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .guarantee-grid div {
    min-height: 160px;
    padding: 16px 10px;
  }

  .guarantee-grid img {
    width: 64px;
    height: 64px;
  }

  .guarantee-grid b {
    font-size: 14px;
  }

  .guarantee-grid small {
    font-size: 11px;
  }

  .contact-section {
    padding: 82px 0 88px;
  }

  .contact-grid {
    gap: 40px;
  }

  .contact-points {
    gap: 8px;
  }

  .contact-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .contact-step-icon img {
    width: 30px;
    height: 30px;
  }

  .contact-step b {
    font-size: 12px;
  }

  .contact-step small {
    font-size: 11px;
  }

  .contact-points > i {
    width: 12px;
    flex-basis: 12px;
    margin-top: 24px;
  }
}

@media (max-width: 420px) {
  .feature-card .tag-row {
    gap: 8px;
  }

  .feature-card .tag-row span {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 7px;
    padding-inline: 7px;
  }

  .feature-card .tag-row span img {
    width: 30px;
    height: 30px;
  }

  .feature-card .tag-row span b {
    font-size: 11px;
  }

  .feature-card .tag-row span small {
    font-size: 11px;
  }

  .standard-panel-note {
    display: none;
  }

  .architecture .arch-body {
    grid-template-columns: 68px minmax(0, 1fr) 58px;
  }
}

/* Final protection cascade: this block intentionally lives at EOF. */
.guarantee { min-height: 560px !important; padding: 78px 76px 72px !important; border-radius: 30px !important; }
.guarantee .standard-panel-head { min-height: 140px !important; margin-bottom: 34px !important; }
.guarantee .standard-panel-symbol { display: none !important; }
.guarantee .standard-panel-title > div { position: relative; padding-left: 28px !important; }
.guarantee .standard-panel-title > div::before { position: absolute; top: 8px; bottom: 8px; left: 0; width: 8px; border-radius: 999px; content: ""; background: linear-gradient(180deg, #255cff, #1b83f5); }
.guarantee .standard-panel h3 { margin-bottom: 16px !important; font-size: clamp(42px, 4vw, 60px) !important; line-height: 1.05 !important; letter-spacing: -.04em !important; text-align: left !important; }
.guarantee .standard-panel-summary { max-width: 31ch !important; color: #5a6d89 !important; font-size: 18px !important; line-height: 1.7 !important; }
.guarantee .standard-panel-note { margin-top: -4px; padding: 11px 18px !important; color: #2d6fe1 !important; background: #edf4ff !important; font-size: 15px !important; }
.guarantee-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 26px !important; margin-top: 0 !important; }
.guarantee-grid div,
.guarantee-grid div:nth-child(2),
.guarantee-grid div:nth-child(3),
.guarantee-grid div:nth-child(4) { display: grid !important; grid-template-columns: 1fr !important; min-height: 280px !important; justify-items: center !important; align-content: center !important; gap: 15px !important; padding: 28px 18px 24px !important; border: 1px solid rgba(223, 233, 247, .88) !important; border-radius: 24px !important; background: rgba(255, 255, 255, .76) !important; text-align: center !important; }
.guarantee-grid div:nth-child(2) { background: rgba(252, 250, 255, .84) !important; }
.guarantee-grid div:nth-child(3) { background: rgba(248, 255, 253, .84) !important; }
.guarantee-grid div:nth-child(4) { background: rgba(255, 253, 248, .84) !important; }
.guarantee-grid img,
.guarantee-grid div:nth-child(2) img,
.guarantee-grid div:nth-child(3) img,
.guarantee-grid div:nth-child(4) img { width: 116px !important; height: 116px !important; margin: 0 0 8px !important; padding: 12px !important; border-radius: 50% !important; background: #eaf2ff !important; object-fit: contain !important; }
.guarantee-grid div:nth-child(2) img { background: #f0ecff !important; }
.guarantee-grid div:nth-child(3) img { background: #e4faf5 !important; }
.guarantee-grid div:nth-child(4) img { background: #fff3dc !important; }
.guarantee-grid b { font-size: 21px !important; }
.guarantee-grid small { font-size: 14px !important; }
@media (max-width: 760px) {
  .guarantee { min-height: 0 !important; padding: 42px 22px 34px !important; border-radius: 22px !important; }
  .guarantee .standard-panel-head { min-height: 0 !important; margin-bottom: 28px !important; }
  .guarantee .standard-panel-title > div { padding-left: 17px !important; }
  .guarantee .standard-panel-title > div::before { width: 5px; }
  .guarantee .standard-panel h3 { margin-bottom: 10px !important; font-size: 38px !important; }
  .guarantee .standard-panel-summary { font-size: 14px !important; }
  .guarantee .standard-panel-note { margin-top: 0; padding: 8px 11px !important; font-size: 11px !important; }
  .guarantee-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; }
  .guarantee-grid div,
  .guarantee-grid div:nth-child(2),
  .guarantee-grid div:nth-child(3),
  .guarantee-grid div:nth-child(4) { min-height: 188px !important; padding: 18px 10px !important; border-radius: 17px !important; }
  .guarantee-grid img,
  .guarantee-grid div:nth-child(2) img,
  .guarantee-grid div:nth-child(3) img,
  .guarantee-grid div:nth-child(4) img { width: 72px !important; height: 72px !important; padding: 8px !important; }
  .guarantee-grid b { font-size: 15px !important; }
  .guarantee-grid small { font-size: 11px !important; }
}
@media (max-width: 420px) { .guarantee .standard-panel-note { display: none !important; } }

/* Last cascade guard: keep the protection composition above legacy grid rules. */
.guarantee {
  min-height: 560px !important;
  padding: 78px 76px 72px !important;
  border-radius: 30px !important;
}

.guarantee .standard-panel-head {
  min-height: 140px !important;
  margin-bottom: 34px !important;
}

.guarantee .standard-panel-symbol { display: none !important; }

.guarantee .standard-panel-title > div {
  position: relative;
  padding-left: 28px !important;
}

.guarantee .standard-panel-title > div::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 8px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(180deg, #255cff, #1b83f5);
}

.guarantee .standard-panel h3 {
  margin-bottom: 16px !important;
  font-size: clamp(42px, 4vw, 60px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.04em !important;
  text-align: left !important;
}

.guarantee .standard-panel-summary {
  max-width: 31ch !important;
  color: #5a6d89 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.guarantee .standard-panel-note {
  margin-top: -4px;
  padding: 11px 18px !important;
  color: #2d6fe1 !important;
  background: #edf4ff !important;
  font-size: 15px !important;
}

.guarantee-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 26px !important;
  margin-top: 0 !important;
}

.guarantee-grid div,
.guarantee-grid div:nth-child(2),
.guarantee-grid div:nth-child(3),
.guarantee-grid div:nth-child(4) {
  display: grid !important;
  grid-template-columns: 1fr !important;
  min-height: 280px !important;
  justify-items: center !important;
  align-content: center !important;
  gap: 15px !important;
  padding: 28px 18px 24px !important;
  border: 1px solid rgba(223, 233, 247, .88) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, .76) !important;
  text-align: center !important;
}

.guarantee-grid div:nth-child(2) { background: rgba(252, 250, 255, .84) !important; }
.guarantee-grid div:nth-child(3) { background: rgba(248, 255, 253, .84) !important; }
.guarantee-grid div:nth-child(4) { background: rgba(255, 253, 248, .84) !important; }

.guarantee-grid img,
.guarantee-grid div:nth-child(2) img,
.guarantee-grid div:nth-child(3) img,
.guarantee-grid div:nth-child(4) img {
  width: 116px !important;
  height: 116px !important;
  margin: 0 0 8px !important;
  padding: 12px !important;
  border-radius: 50% !important;
  background: #eaf2ff !important;
  object-fit: contain !important;
}

.guarantee-grid div:nth-child(2) img { background: #f0ecff !important; }
.guarantee-grid div:nth-child(3) img { background: #e4faf5 !important; }
.guarantee-grid div:nth-child(4) img { background: #fff3dc !important; }
.guarantee-grid b { font-size: 21px !important; }
.guarantee-grid small { font-size: 14px !important; }

@media (max-width: 760px) {
  .guarantee {
    min-height: 0 !important;
    padding: 42px 22px 34px !important;
    border-radius: 22px !important;
  }

  .guarantee .standard-panel-head {
    min-height: 0 !important;
    margin-bottom: 28px !important;
  }

  .guarantee .standard-panel-title > div { padding-left: 17px !important; }
  .guarantee .standard-panel-title > div::before { width: 5px; }
  .guarantee .standard-panel h3 { margin-bottom: 10px !important; font-size: 38px !important; }
  .guarantee .standard-panel-summary { font-size: 14px !important; }
  .guarantee .standard-panel-note { margin-top: 0; padding: 8px 11px !important; font-size: 11px !important; }
  .guarantee-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; }

  .guarantee-grid div,
  .guarantee-grid div:nth-child(2),
  .guarantee-grid div:nth-child(3),
  .guarantee-grid div:nth-child(4) {
    min-height: 188px !important;
    padding: 18px 10px !important;
    border-radius: 17px !important;
  }

  .guarantee-grid img,
  .guarantee-grid div:nth-child(2) img,
  .guarantee-grid div:nth-child(3) img,
  .guarantee-grid div:nth-child(4) img {
    width: 72px !important;
    height: 72px !important;
    padding: 8px !important;
  }

  .guarantee-grid b { font-size: 15px !important; }
  .guarantee-grid small { font-size: 11px !important; }
}

@media (max-width: 420px) {
  .guarantee .standard-panel-note { display: none !important; }
}

/* Reference composition pass: rebuild the supplied visual language with real layout primitives. */
.section-blue {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 42%, rgba(168, 207, 255, .24), transparent 28%),
    radial-gradient(circle at 4% 4%, rgba(255, 255, 255, .9), transparent 28%),
    linear-gradient(132deg, #f9fbff 0%, #eef5ff 58%, #e7f1ff 100%);
}

.section-blue::before,
.section-blue::after {
  position: absolute;
  border: 1px solid rgba(146, 185, 248, .18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.section-blue::before {
  top: -210px;
  right: -110px;
  width: 480px;
  height: 480px;
}

.section-blue::after {
  bottom: -280px;
  left: -180px;
  width: 580px;
  height: 580px;
  box-shadow: 0 0 0 72px rgba(137, 182, 248, .06);
}

.hero-grid,
.trust-strip {
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  min-width: 0;
  isolation: isolate;
}

.hero-visual::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82%;
  height: 58%;
  border-radius: 50%;
  content: "";
  background: radial-gradient(ellipse, rgba(119, 180, 255, .28) 0%, rgba(119, 180, 255, .06) 48%, transparent 72%);
  filter: blur(12px);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-orbit {
  position: absolute;
  top: 49%;
  left: 50%;
  width: 72%;
  height: 42%;
  border: 1px solid rgba(73, 147, 246, .17);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-10deg) skewX(-14deg);
}

.hero-orbit--two {
  width: 60%;
  height: 32%;
  border-color: rgba(132, 187, 255, .14);
  transform: translate(-50%, -50%) rotate(22deg) skewX(12deg);
}

.hero-material {
  z-index: 1;
  opacity: .88;
  filter: drop-shadow(0 28px 34px rgba(46, 108, 220, .13));
}

.hero-node {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 112px;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #183b75;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  filter: drop-shadow(0 9px 14px rgba(61, 111, 200, .12));
  pointer-events: none;
}

.hero-node-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(160, 199, 255, .66);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(255,255,255,.92), rgba(229,241,255,.78));
  box-shadow: 0 14px 20px rgba(63, 117, 203, .14), inset 0 1px 0 rgba(255,255,255,.95);
  clip-path: polygon(50% 0, 94% 21%, 94% 79%, 50% 100%, 6% 79%, 6% 21%);
}

.hero-node-icon img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.hero-node--finance { top: 3%; left: 25%; }
.hero-node--health { top: -3%; right: 23%; }
.hero-node--manufacturing { top: 9%; right: -1%; }
.hero-node--retail { bottom: 17%; left: 3%; }
.hero-node--education { bottom: -2%; right: 22%; }
.hero-node--enterprise { right: -3%; bottom: 14%; }

.hero-node--finance .hero-node-icon { background: linear-gradient(150deg, #fff, #e9f3ff); }
.hero-node--health .hero-node-icon { background: linear-gradient(150deg, #fff, #e9f4ff); }
.hero-node--manufacturing .hero-node-icon { background: linear-gradient(150deg, #fff, #f0f3ff); }
.hero-node--retail .hero-node-icon { background: linear-gradient(150deg, #fff, #e9f9f8); }
.hero-node--education .hero-node-icon { background: linear-gradient(150deg, #fff, #f0ebff); }
.hero-node--enterprise .hero-node-icon { background: linear-gradient(150deg, #fff, #e9f3ff); }

.trust-strip {
  background: rgba(255, 255, 255, .88);
}

.trust-item img {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
}

.trust-item strong { font-size: 14px; }
.trust-item small { font-size: 11px; }

.section-products {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 2% 20%, rgba(217, 233, 255, .48), transparent 20%),
    radial-gradient(circle at 98% 78%, rgba(226, 242, 255, .52), transparent 22%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.section-products::before,
.section-products::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px dotted rgba(118, 170, 243, .25);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.section-products::before { top: 330px; left: -170px; }
.section-products::after { right: -160px; bottom: 180px; }

.section-products > .container { position: relative; z-index: 1; }

.feature-card {
  min-height: 490px;
  border-radius: 20px;
  background: linear-gradient(to bottom, #fff 0%, #fff calc(100% - 5px), #2d73ee calc(100% - 5px), #2d73ee 100%);
}

.feature-card--custom {
  background: linear-gradient(to bottom, #fbfffe 0%, #fbfffe calc(100% - 5px), #16bfa5 calc(100% - 5px), #16bfa5 100%);
}

.feature-card::before {
  top: 181px;
  right: -22%;
  left: -22%;
  height: 136px;
  border-radius: 0 0 50% 50%;
  background: radial-gradient(ellipse at 50% -20%, transparent 0 48%, #f0f6ff 49% 100%);
}

.feature-card--custom::before {
  background: radial-gradient(ellipse at 50% -20%, transparent 0 48%, #edfbf8 49% 100%);
}

.feature-card::after {
  position: absolute;
  top: 203px;
  right: -16%;
  left: -16%;
  height: 112px;
  border-radius: 0 0 50% 50%;
  border-top: 1px solid rgba(140, 186, 246, .17);
  content: "";
  pointer-events: none;
}

.feature-card--custom::after { border-color: rgba(72, 205, 184, .18); }

.feature-hero-icon {
  width: 112px;
  height: 112px;
  flex-basis: 112px;
  border-radius: 26px;
}

.feature-hero-icon img { width: 76px; height: 76px; }

.feature-card-top {
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 150px;
  gap: 26px;
}

.feature-card .tag-row span {
  min-height: 78px;
  border-radius: 14px;
}

.product-proof-strip {
  margin-top: 34px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
}

/* Protection reference: the four tall cards sit inside a single calm white shell. */
.standards {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 2%, rgba(209, 228, 255, .56), transparent 19%),
    radial-gradient(circle at 100% 95%, rgba(211, 237, 255, .48), transparent 22%),
    #f5f9ff;
}

.standards::before,
.standards::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.standards::before {
  top: -250px;
  left: -230px;
  width: 520px;
  height: 520px;
  background: rgba(209, 228, 255, .28);
}

.standards::after {
  right: -230px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  background: rgba(199, 232, 255, .24);
}

.standards > .container { position: relative; z-index: 1; }

.guarantee {
  min-height: 560px;
  margin-top: 4px;
  padding: 78px 76px 72px;
  border-radius: 30px;
  border-color: rgba(221, 232, 247, .95);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 52px rgba(45, 92, 166, .08);
}

.guarantee::before {
  position: absolute;
  bottom: 54px;
  left: 38px;
  width: 160px;
  height: 112px;
  content: "";
  background-image: radial-gradient(circle, rgba(76, 142, 235, .18) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: .7;
}

.guarantee::after {
  top: 32px;
  right: 72px;
  width: 340px;
  height: 340px;
  opacity: .045;
}

.guarantee .standard-panel-head {
  position: relative;
  z-index: 2;
  min-height: 140px;
  margin-bottom: 34px;
}

.guarantee .standard-panel-title { align-items: flex-start; }
.guarantee .standard-panel-symbol { display: none; }

.guarantee .standard-panel-title > div {
  position: relative;
  padding-left: 28px;
}

.guarantee .standard-panel-title > div::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 8px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(180deg, #255cff, #1b83f5);
}

.guarantee .standard-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.guarantee .standard-panel-summary {
  max-width: 31ch;
  color: #5a6d89;
  font-size: 18px;
  line-height: 1.7;
}

.guarantee .standard-panel-note {
  margin-top: -4px;
  padding: 11px 18px;
  color: #2d6fe1;
  background: #edf4ff;
  font-size: 15px;
}

.guarantee-grid {
  position: relative;
  z-index: 2;
  gap: 26px;
  margin-top: 0;
}

.guarantee-grid div,
.guarantee-grid div:nth-child(2),
.guarantee-grid div:nth-child(3),
.guarantee-grid div:nth-child(4) {
  min-height: 280px;
  gap: 15px;
  padding: 28px 18px 24px;
  border: 1px solid rgba(223, 233, 247, .88);
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 26px rgba(55, 105, 176, .045);
}

.guarantee-grid div:nth-child(2) { background: rgba(252, 250, 255, .84); }
.guarantee-grid div:nth-child(3) { background: rgba(248, 255, 253, .84); }
.guarantee-grid div:nth-child(4) { background: rgba(255, 253, 248, .84); }

.guarantee-grid img,
.guarantee-grid div:nth-child(2) img,
.guarantee-grid div:nth-child(3) img,
.guarantee-grid div:nth-child(4) img {
  width: 116px;
  height: 116px;
  margin-bottom: 8px;
  padding: 12px;
  border-radius: 50%;
  background: #eaf2ff;
}

.guarantee-grid div:nth-child(2) img { background: #f0ecff; }
.guarantee-grid div:nth-child(3) img { background: #e4faf5; }
.guarantee-grid div:nth-child(4) img { background: #fff3dc; }

.guarantee-grid b { font-size: 21px; }
.guarantee-grid small { font-size: 14px; }

/* Consultation reference: a deep, layered canvas with the form as the sole bright surface. */
.contact-section {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  padding: 118px 0 128px;
  background: #103a94;
}

.contact-section::before {
  top: -300px;
  left: -220px;
  width: 760px;
  height: 760px;
  border: 0;
  background: rgba(64, 127, 231, .23);
  box-shadow: 0 0 0 124px rgba(96, 158, 247, .09), 0 0 0 248px rgba(96, 158, 247, .045);
}

.contact-section::after {
  position: absolute;
  right: -230px;
  bottom: -340px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  content: "";
  background: rgba(45, 110, 226, .38);
  pointer-events: none;
}

.contact-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(154, 202, 255, .25);
  border-radius: 50%;
  pointer-events: none;
}

.contact-orbit--large {
  bottom: -190px;
  left: 80px;
  width: 520px;
  height: 290px;
  transform: rotate(-15deg);
}

.contact-orbit--small {
  right: 60px;
  bottom: 56px;
  width: 310px;
  height: 160px;
  opacity: .46;
  transform: rotate(19deg);
}

.contact-dots {
  position: absolute;
  top: 82px;
  right: 74px;
  width: 160px;
  height: 112px;
  background-image: radial-gradient(circle, rgba(177, 214, 255, .56) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: .65;
}

.contact-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 76px; }
.contact-copy { position: relative; z-index: 2; opacity: 1 !important; transform: none !important; }

.contact-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 26px;
  padding: 0 17px;
  border: 1px solid rgba(151, 202, 255, .6);
  border-radius: 999px;
  color: #e7f2ff;
  background: rgba(76, 145, 246, .18);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

.contact-copy h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.contact-copy > p:not(.kicker) {
  max-width: 31ch;
  color: #d8e9ff;
  font-size: 18px;
  line-height: 1.85;
}

.contact-points { gap: 12px; margin-top: 40px; }
.contact-step-icon { width: 66px; height: 66px; border-radius: 20px; }
.contact-step-icon img { width: 42px; height: 42px; }
.contact-step b { margin-top: 14px; font-size: 15px; }
.contact-step small { color: #c7ddff; font-size: 12px; }

.contact-points > i {
  position: relative;
  width: 28px;
  flex-basis: 28px;
  margin-top: 32px;
  border-top: 0;
}

.contact-points > i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  border-top: 2px solid rgba(211, 233, 255, .85);
  border-right: 2px solid rgba(211, 233, 255, .85);
  content: "";
  transform: rotate(45deg);
}

.contact-dashboard {
  position: relative;
  width: 390px;
  height: 160px;
  margin: 42px 0 0 22px;
  opacity: .86;
}

.contact-dashboard::before {
  position: absolute;
  right: 20px;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(203, 229, 255, .5);
  transform: rotate(-13deg);
}

.dashboard-window {
  position: absolute;
  bottom: 19px;
  left: 78px;
  width: 205px;
  height: 112px;
  padding: 16px 18px;
  border: 1px solid rgba(221, 240, 255, .86);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.3), rgba(160,209,255,.11));
  box-shadow: 0 18px 34px rgba(3, 34, 100, .18);
  transform: perspective(320px) rotateX(9deg) rotateY(-18deg) rotateZ(-3deg);
}

.dashboard-window-bar { display: block; width: 72px; height: 5px; border-radius: 999px; background: rgba(224, 241, 255, .9); }
.dashboard-line { display: block; height: 4px; margin-top: 11px; border-radius: 999px; background: rgba(202, 229, 255, .66); }
.dashboard-line--one { width: 74%; }
.dashboard-line--two { width: 58%; }
.dashboard-line--three { width: 82%; }
.dashboard-chart { display: flex; height: 30px; align-items: flex-end; gap: 7px; margin-top: 10px; }
.dashboard-chart i { display: block; width: 13px; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #99d2ff, #4b8eff); }
.dashboard-chart i:nth-child(1) { height: 14px; }
.dashboard-chart i:nth-child(2) { height: 22px; }
.dashboard-chart i:nth-child(3) { height: 18px; }
.dashboard-chart i:nth-child(4) { height: 28px; }
.dashboard-orbit-dot { position: absolute; width: 12px; height: 12px; border: 2px solid #c8e4ff; border-radius: 50%; background: #4e8eff; box-shadow: 0 0 0 5px rgba(114, 182, 255, .18); }
.dashboard-orbit-dot--one { bottom: 17px; left: 13px; }
.dashboard-orbit-dot--two { top: 4px; right: 32px; }

.contact-form {
  position: relative;
  z-index: 2;
  padding: 42px 44px 32px;
  border: 1px solid rgba(223, 238, 255, .95);
  border-radius: 26px;
  box-shadow: 0 30px 76px rgba(3, 19, 57, .28);
}

.contact-form .btn-wide { min-height: 62px; border-radius: 15px; font-size: 17px; }

@media (max-width: 1100px) {
  .hero-node { transform: scale(.84); }
  .hero-node--manufacturing,
  .hero-node--enterprise { display: none; }
  .guarantee { padding-inline: 48px; }
  .contact-grid { gap: 42px; }
  .contact-dashboard { width: 330px; }
}

@media (max-width: 760px) {
  .hero-node { transform: scale(.68); }
  .hero-node--finance { top: 2%; left: 12%; }
  .hero-node--health { top: 1%; right: 12%; }
  .hero-node--retail { bottom: 7%; left: 6%; }
  .hero-node--education { right: 9%; bottom: -5%; }
  .hero-node--manufacturing,
  .hero-node--enterprise { display: none; }

  .feature-card { min-height: 0; border-radius: 16px; }
  .feature-card-top { grid-template-columns: 76px minmax(0, 1fr); min-height: 0; gap: 15px; }
  .feature-hero-icon { width: 76px; height: 76px; flex-basis: 76px; border-radius: 19px; }
  .feature-hero-icon img { width: 48px; height: 48px; }
  .feature-card::before { top: 148px; height: 100px; }
  .feature-card::after { top: 169px; height: 82px; }

  .guarantee { min-height: 0; padding: 42px 22px 34px; border-radius: 22px; }
  .guarantee .standard-panel-head { min-height: 0; margin-bottom: 28px; }
  .guarantee .standard-panel-title > div { padding-left: 17px; }
  .guarantee .standard-panel-title > div::before { width: 5px; }
  .guarantee .standard-panel h3 { margin-bottom: 10px; font-size: 38px; }
  .guarantee .standard-panel-summary { font-size: 14px; }
  .guarantee .standard-panel-note { margin-top: 0; padding: 8px 11px; font-size: 11px; }
  .guarantee-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .guarantee-grid div,
  .guarantee-grid div:nth-child(2),
  .guarantee-grid div:nth-child(3),
  .guarantee-grid div:nth-child(4) { min-height: 188px; padding: 18px 10px; border-radius: 17px; }
  .guarantee-grid img,
  .guarantee-grid div:nth-child(2) img,
  .guarantee-grid div:nth-child(3) img,
  .guarantee-grid div:nth-child(4) img { width: 72px; height: 72px; padding: 8px; }
  .guarantee-grid b { font-size: 15px; }
  .guarantee-grid small { font-size: 11px; }

  .contact-section { min-height: 0; padding: 84px 0 88px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-copy h2 { font-size: 44px; }
  .contact-copy > p:not(.kicker) { font-size: 15px; }
  .contact-points { gap: 8px; margin-top: 30px; }
  .contact-step-icon { width: 54px; height: 54px; border-radius: 16px; }
  .contact-step-icon img { width: 34px; height: 34px; }
  .contact-step b { font-size: 12px; }
  .contact-step small { font-size: 10px; }
  .contact-points > i { width: 15px; flex-basis: 15px; margin-top: 27px; }
  .contact-points > i::after { width: 9px; height: 9px; }
  .contact-dashboard { width: min(100%, 330px); height: 132px; margin: 30px auto 0; }
  .dashboard-window { left: 58px; width: 184px; height: 100px; }
  .contact-form { padding: 28px 22px 24px; border-radius: 18px; }
}

@media (max-width: 420px) {
  .hero-node-icon { width: 60px; height: 60px; }
  .hero-node-icon img { width: 34px; height: 34px; }
  .hero-node { width: 88px; font-size: 10px; }
  .hero-node--finance { left: 4%; }
  .hero-node--health { right: 4%; }
  .hero-node--retail { left: -1%; }
  .hero-node--education { right: -1%; }
  .guarantee .standard-panel-head { align-items: flex-start; }
  .guarantee .standard-panel-note { display: none; }
  .contact-copy h2 { font-size: 38px; }
  .contact-points > i { width: 9px; flex-basis: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .btn > .action-arrow,
  .text-link > .action-arrow,
  .scene-card .text-link > .action-arrow,
  .download-link > .external-arrow { transition: none; }
}

/* CTA density pass: text and color carry secondary actions; reserve arrows for the primary CTA. */
.hero-actions .btn-outline.btn-lg {
  gap: 0;
  padding-right: 24px;
}

.text-link {
  gap: 0;
  min-height: 40px;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.text-link:hover,
.scene-card:hover .text-link {
  text-decoration: underline;
}

.scene-card .text-link {
  min-height: 36px;
}

.download-link {
  gap: 0;
  padding-left: 16px;
  padding-right: 16px;
}

.btn-wide {
  gap: 0;
  padding-left: 22px;
  padding-right: 22px;
}

/* Product section pass: make the two routes easier to compare at a glance. */
.section-products {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.section-products .section-heading {
  margin-bottom: 42px;
}

.section-products .section-heading > p {
  max-width: 680px;
}

.product-grid {
  gap: 28px;
}

.feature-card {
  min-height: 390px;
  padding: 34px 36px 28px;
  border: 1px solid #e5ecf6;
  background: linear-gradient(145deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 14px 36px rgba(37, 79, 143, .08);
}

.feature-card:hover {
  border-color: #d5e3f7;
  box-shadow: 0 20px 44px rgba(37, 79, 143, .13);
}

.feature-card-top {
  min-height: 96px;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 25px;
  letter-spacing: -.025em;
}

.feature-card p:not(.kicker) {
  max-width: 31ch;
  margin-bottom: 0;
  color: #5d6f88;
  font-size: 14px;
  line-height: 1.75;
}

.feature-divider {
  height: 1px;
  margin: 20px 0 14px;
  background: #e8eef7;
}

.feature-list-label {
  margin-bottom: 10px;
  color: #253d69;
  font-size: 12px;
  font-weight: 800;
}

.feature-card .tag-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.feature-card .tag-row span {
  min-height: 52px;
  justify-content: flex-start;
  padding: 10px 12px;
  border: 1px solid #e4ebf5;
  border-radius: 9px;
  background: rgba(255, 255, 255, .74);
  color: #40536e;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.feature-card:hover .tag-row span {
  border-color: #d7e5f8;
  background: #fff;
}

.feature-card .tag-row span:hover {
  transform: translateY(-1px);
}

.feature-card .tag-row span img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.feature-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.feature-fit {
  max-width: 240px;
  color: #70809a;
  font-size: 12px;
  line-height: 1.55;
}

.feature-footer .text-link {
  flex: 0 0 auto;
  min-height: 40px;
  margin-top: 0;
  white-space: nowrap;
}

.feature-card .cube-mark {
  width: 104px;
  height: 104px;
  margin: -14px -8px 0 0;
  opacity: .66;
  filter: drop-shadow(0 12px 16px rgba(53, 105, 202, .11));
}

.feature-card .cube-mark::before,
.feature-card .cube-mark::after,
.feature-card .cube-mark i {
  width: 46px;
  height: 46px;
  border-width: 9px;
  border-radius: 5px;
}

.feature-card .cube-mark::before {
  left: 8px;
  top: 25px;
}

.feature-card .cube-mark::after {
  left: 35px;
  top: 8px;
}

.feature-card .cube-mark i {
  left: 35px;
  top: 35px;
}

@media (max-width: 1100px) {
  .feature-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .section-products .section-heading {
    margin-bottom: 32px;
  }

  .feature-card {
    padding: 28px 24px 24px;
  }

  .feature-card-top {
    min-height: 0;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .feature-card .cube-mark {
    width: 88px;
    height: 88px;
    margin: -10px -4px 0 0;
    opacity: .6;
  }

  .feature-card .cube-mark::before,
  .feature-card .cube-mark::after,
  .feature-card .cube-mark i {
    width: 40px;
    height: 40px;
    border-width: 8px;
    border-radius: 4px;
  }

  .feature-card .cube-mark::before {
    left: 7px;
    top: 22px;
  }

  .feature-card .cube-mark::after {
    left: 30px;
    top: 7px;
  }

  .feature-card .cube-mark i {
    left: 30px;
    top: 30px;
  }

  .feature-card p:not(.kicker) {
    max-width: none;
  }

  .feature-divider {
    margin-top: 22px;
  }

  .feature-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .feature-fit {
    max-width: none;
  }
}

@media (max-width: 420px) {
  .feature-card .cube-mark {
    width: 82px;
    height: 82px;
    margin-right: -3px;
  }

  .feature-card .cube-mark::before,
  .feature-card .cube-mark::after,
  .feature-card .cube-mark i {
    width: 37px;
    height: 37px;
    border-width: 7px;
  }

  .feature-card .cube-mark::before {
    left: 6px;
    top: 20px;
  }

  .feature-card .cube-mark::after {
    left: 28px;
    top: 6px;
  }

  .feature-card .cube-mark i {
    left: 28px;
    top: 28px;
  }
}

/* Delivery system pass: make architecture, process, and protection read as one system. */
.standards {
  background: #f8fbff;
}

.standards .section-heading {
  margin-bottom: 44px;
}

.standards .section-heading > p {
  max-width: 760px;
}

.standard-panel {
  min-height: 356px;
  padding: 30px 32px 28px;
  border: 1px solid #e0e8f3;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.standard-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.standard-panel h3 {
  margin: 0 0 6px;
  color: #162540;
  font-size: 20px;
  line-height: 1.35;
  text-align: left;
}

.standard-panel-summary {
  max-width: 34ch;
  margin: 0;
  color: #5f708b;
  font-size: 12px;
  line-height: 1.65;
}

.standard-panel-note {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
  padding-top: 4px;
  color: #4b70b2;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.standard-panel-note::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2d67e9;
  box-shadow: 0 0 0 4px #edf4ff;
}

.architecture .arch-body,
.workflow .workflow-steps {
  flex: 1;
}

.architecture .arch-body {
  min-height: 222px;
}

.architecture .arch-badge {
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border: 1px solid #eef3fa;
  background: #f7f9fd;
}

.architecture .arch-badge img {
  width: 50px;
  height: 50px;
  padding: 3px;
}

.architecture .arch-badge b {
  color: #3268c9;
  font-size: 13px;
  line-height: 1.4;
}

.architecture .arch-badge small {
  color: #5f708b;
  font-size: 12px;
  line-height: 1.4;
  max-width: 72px;
  text-align: center;
  white-space: normal;
}

.workflow .workflow-steps {
  min-height: 222px;
  align-items: flex-start;
  padding-top: 6px;
}

.workflow .workflow-steps > div {
  padding: 0 2px;
}

.workflow .workflow-steps .step-icon {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  padding: 7px;
  border: 1px solid #edf3fc;
  background: #f0f5ff;
}

.workflow .workflow-steps b {
  margin-top: 12px;
  color: #1e304d;
  font-size: 14px;
}

.workflow .workflow-steps small {
  margin-top: 7px;
  color: #5f708b;
  font-size: 12px;
  line-height: 1.75;
  text-align: center;
}

.workflow .workflow-steps > i {
  width: 36px;
  flex-basis: 36px;
  margin-top: 29px;
  background: #aec5ed;
}

.workflow .workflow-steps > i::after {
  border-color: #6e98df;
}

.guarantee {
  min-height: 194px;
}

.guarantee .standard-panel-head {
  margin-bottom: 18px;
}

.guarantee-grid {
  margin-top: 0;
  gap: 18px;
}

.guarantee-grid div {
  min-height: 64px;
  grid-template-columns: 52px 1fr;
  column-gap: 14px;
  align-content: center;
  padding: 10px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.guarantee-grid img {
  width: 52px;
  height: 52px;
  padding: 6px;
  border-radius: 12px;
  background: #eef4ff;
}

.guarantee-grid b {
  color: #263956;
  font-size: 13px;
  line-height: 1.4;
}

.guarantee-grid small {
  margin-top: 3px;
  color: #5f708b;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .standards .section-heading {
    margin-bottom: 32px;
  }

  .standard-panel {
    min-height: 0;
    padding: 24px 20px 22px;
    border-radius: 12px;
  }

  .standard-panel-head {
    margin-bottom: 20px;
  }

  .standard-panel h3 {
    font-size: 18px;
  }

  .standard-panel-summary {
    max-width: 30ch;
    font-size: 11px;
  }

  .standard-panel-note {
    padding-top: 2px;
    font-size: 11px;
  }

  .architecture .arch-body {
    min-height: 202px;
  }

  .architecture .arch-badge small {
    white-space: normal;
  }

  .workflow .workflow-steps {
    min-height: 0;
    padding-top: 0;
  }

  .workflow .workflow-steps > div {
    padding: 8px 8px 24px;
  }

  .workflow .workflow-steps .step-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .workflow .workflow-steps > i {
    display: none;
  }

  .guarantee {
    min-height: 0;
  }

  .guarantee-grid {
    gap: 8px;
  }

  .guarantee-grid div {
    min-height: 62px;
    padding: 8px 10px;
  }
}

/* Insight library pass: a calm, editorial card with a protected media frame. */
.insights .section-heading {
  margin-bottom: 46px;
}

.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.insight-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 244px;
  padding: 20px;
  border: 1px solid #dfe8f5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 66, 126, .055);
  transition: transform 180ms ease-out, border-color 180ms ease-out, box-shadow 180ms ease-out;
}

.insight-card:hover {
  border-color: #c8d9f2;
  box-shadow: 0 18px 36px rgba(31, 66, 126, .11);
}

.insight-card .cover-material {
  display: grid;
  width: auto;
  height: auto;
  min-height: 0;
  aspect-ratio: 1.58 / 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e1ebf9;
  border-radius: 11px;
  background: #f3f7ff !important;
}

.insight-card .cover-material::before,
.insight-card .cover-material::after {
  content: none !important;
  display: none !important;
}

.insight-card .cover-material img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 76%;
  max-height: 92px;
  object-fit: contain !important;
  object-position: center !important;
}

.insight-content {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.insight-card h3 {
  max-width: none;
  min-height: 50px;
  margin: 2px 0 0;
  color: #1b2b47;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.48;
  letter-spacing: -.015em;
  text-wrap: balance;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 12px;
  color: #5c75a0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.insight-meta span {
  position: relative;
  white-space: nowrap;
}

.insight-meta span + span {
  margin-left: 14px;
  padding-left: 14px;
}

.insight-meta span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #a9bfe4;
  content: "";
  transform: translateY(-50%);
}

.insight-summary {
  max-width: 25ch;
  margin: 10px 0 0;
  color: #61718a;
  font-size: 12.5px;
  line-height: 1.66;
}

.insight-card .download-link {
  display: inline-flex;
  width: auto;
  min-width: 122px;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid #b8cbed;
  border-radius: 9px;
  background: #fff;
  color: #1749bd;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(35, 75, 145, .045);
}

.insight-card .download-link:hover {
  border-color: #225cf2;
  background: #225cf2;
  color: #fff;
  box-shadow: 0 10px 20px rgba(34, 92, 242, .18);
  transform: translateY(-1px);
}

@media (max-width: 980px) and (min-width: 761px) {
  .insight-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .insight-card {
    grid-template-columns: minmax(240px, .72fr) minmax(0, 1fr);
    min-height: 252px;
  }

  .insight-card .cover-material {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .insights .section-heading {
    margin-bottom: 34px;
  }

  .insight-grid {
    gap: 18px;
  }

  .insight-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 16px;
  }

  .insight-card .cover-material {
    width: 100%;
    min-height: 0;
    height: 172px;
    aspect-ratio: auto;
  }

  .insight-card .cover-material img {
    max-width: 38%;
    max-height: 132px;
  }

  .insight-content {
    min-height: 208px;
  }

  .insight-card h3 {
    max-width: none;
    font-size: 18px;
  }

  .insight-summary {
    max-width: none;
  }

  .insight-card .download-link {
    min-width: 132px;
  }
}

@media (max-width: 420px) {
  .insight-card .cover-material {
    height: 152px;
  }

  .insight-card .cover-material img {
    max-height: 118px;
  }
}

/* Legal footer: keep mandatory company information readable without competing with navigation. */
.company-legal {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 1fr);
  gap: 42px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(215, 228, 255, .14);
}

.company-legal-copy,
.company-legal-links {
  min-width: 0;
}

.company-legal-copy strong {
  display: block;
  color: #eaf1ff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.company-legal-copy p {
  max-width: 62ch;
  margin: 8px 0 0;
  color: #9aabc2;
  font-size: 12px;
  line-height: 1.75;
}

.company-legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.company-legal-links a {
  display: inline-flex;
  max-width: 100%;
  align-items: baseline;
  gap: 10px;
  color: #aebbd0;
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: anywhere;
  transition: color 180ms ease-out;
}

.company-legal-links a span {
  flex: 0 0 auto;
  color: #d4e2ff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.company-legal-links a:hover,
.company-legal-links a:hover span {
  color: #fff;
}

@media (max-width: 760px) {
  .company-legal {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
    padding-top: 20px;
  }

  .company-legal-copy p {
    max-width: none;
  }

  .company-legal-links {
    gap: 10px;
  }

  .company-legal-links a {
    display: block;
  }

  .company-legal-links a span {
    display: inline-block;
    margin-left: 8px;
  }
}

/* Full-page enterprise pass: consistent rhythm, stronger hierarchy, and calmer surfaces. */
.site-header {
  height: 80px;
  box-shadow: 0 1px 0 rgba(20, 33, 58, .04), 0 8px 26px rgba(27, 58, 109, .035);
}

.nav-wrap {
  height: 80px;
}

.brand-logo {
  width: 44px;
  height: 44px;
}

.desktop-nav {
  gap: 36px;
}

.section-heading h2 {
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.22;
}

.section-heading > p {
  max-width: 760px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.hero-grid {
  min-height: 560px;
  padding: 76px 0 82px;
  gap: 58px;
}

.hero-copy > p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 36px;
}

.hero-proof {
  margin-top: 26px;
}

.trust-strip {
  padding: 0;
  background: #fff;
}

.trust-inner {
  min-height: 78px;
  gap: 28px;
  color: #5f718c;
}

.trust-label {
  margin-right: 6px;
  padding-right: 28px;
  border-right: 1px solid #e2eaf5;
  color: #213c70;
  font-size: 13px;
}

.section-products,
.section-scenes,
.standards,
.insights,
.partners {
  padding-top: 104px;
  padding-bottom: 104px;
}

.section-products .section-heading,
.section-scenes .section-heading,
.standards .section-heading,
.insights .section-heading,
.partners .section-heading {
  margin-bottom: 52px;
}

.product-grid {
  gap: 32px;
}

.feature-card {
  min-height: 420px;
  padding: 38px 40px 32px;
  border-radius: 16px;
  border-color: #e1e9f4;
  box-shadow: 0 14px 38px rgba(37, 79, 143, .075);
}

.feature-card h3 {
  font-size: 26px;
  line-height: 1.3;
}

.feature-card p:not(.kicker) {
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.8;
}

.feature-divider {
  margin: 26px 0 16px;
}

.feature-list-label {
  margin-bottom: 12px;
  color: #2a4679;
  font-size: 13px;
}

.feature-card .tag-row {
  gap: 12px;
}

.feature-card .tag-row span {
  min-height: 60px;
  padding: 11px 14px;
  border-radius: 11px;
  font-size: 13px;
}

.feature-card .tag-row span img {
  width: 30px;
  height: 30px;
}

.feature-footer {
  margin-top: 24px;
}

.feature-fit {
  max-width: 270px;
  font-size: 13px;
  line-height: 1.65;
}

.scene-grid {
  gap: 20px;
}

.scene-card {
  min-height: 176px;
  gap: 22px;
  padding: 28px 30px;
  border-radius: 16px;
  border-color: #e0e8f3;
  box-shadow: 0 10px 26px rgba(37, 79, 143, .045);
}

.scene-card .scene-icon {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
  padding: 9px;
  border-radius: 16px;
  background: #f0f5ff;
}

.scene-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.35;
}

.scene-card p {
  font-size: 14px;
  line-height: 1.7;
}

.scene-card .text-link {
  margin-top: 14px;
  font-size: 13px;
}

.standard-panel {
  min-height: 372px;
  padding: 34px 36px 32px;
  border-radius: 16px;
  border-color: #dfe8f3;
  box-shadow: 0 10px 28px rgba(37, 79, 143, .045);
}

.standard-panel h3 {
  font-size: 21px;
}

.standard-panel-summary {
  font-size: 13px;
}

.workflow .workflow-steps,
.architecture .arch-body {
  min-height: 232px;
}

.insight-grid {
  gap: 26px;
}

.partner-grid {
  gap: 20px;
}

.partner-card {
  min-height: 154px;
  gap: 22px;
  padding: 28px 30px;
  border-radius: 16px;
  border-color: #e0e8f3;
  box-shadow: 0 10px 26px rgba(37, 79, 143, .045);
}

.partner-icon {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}

.partner-card h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.partner-card p {
  font-size: 13px;
  line-height: 1.7;
}

.contact-section {
  padding: 112px 0;
  background: #0d2b60;
}

.contact-grid {
  gap: 96px;
}

.contact-kicker {
  display: inline-flex;
  margin-bottom: 20px;
  color: #9ebcf0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.contact-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.12;
}

.contact-copy > p:not(.kicker) {
  max-width: 32ch;
  font-size: 17px;
  line-height: 1.85;
}

.contact-points {
  gap: 22px;
  margin-top: 34px;
  font-size: 13px;
}

.contact-form {
  padding: 36px 38px 28px;
  border-radius: 16px;
  box-shadow: 0 26px 68px rgba(3, 16, 39, .26);
}

.form-head {
  align-items: flex-start;
  margin-bottom: 24px;
}

.form-head h3 {
  margin-bottom: 6px;
  font-size: 23px;
}

.form-subtitle {
  margin: 0;
  color: #70809a;
  font-size: 12px;
  line-height: 1.6;
}

.contact-form .btn-wide {
  min-height: 54px;
}

@media (max-width: 980px) and (min-width: 761px) {
  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-card {
    min-height: 164px;
    padding: 24px;
  }

  .standard-panel {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .nav-wrap {
    height: 68px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .section-products,
  .section-scenes,
  .standards,
  .insights,
  .partners {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-products .section-heading,
  .section-scenes .section-heading,
  .standards .section-heading,
  .insights .section-heading,
  .partners .section-heading {
    margin-bottom: 36px;
  }

  .trust-label {
    padding-right: 16px;
  }

  .feature-card {
    min-height: 0;
    padding: 28px 24px 26px;
    border-radius: 14px;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .scene-card {
    min-height: 148px;
    padding: 24px;
    border-radius: 14px;
  }

  .scene-card .scene-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    padding: 8px;
  }

  .standard-panel {
    min-height: 0;
    padding: 26px 22px;
    border-radius: 14px;
  }

  .partner-card {
    min-height: 132px;
    padding: 24px;
    border-radius: 14px;
  }

  .contact-section {
    padding: 82px 0;
  }

  .contact-grid {
    gap: 42px;
  }

  .contact-form {
    padding: 28px 22px 24px;
    border-radius: 14px;
  }
}

/* Final legibility pass: preserve the airy system while bringing supporting text to AA contrast. */
.hero-visual::before {
  display: none;
}

.feature-fit,
.form-subtitle {
  color: #5d6c84;
}

.brand-copy small,
.standard-panel-note,
.company-legal-links a span,
.form-note,
.footer-bottom {
  font-size: 12px;
}

.trust-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Hero reference pass: a calmer, more editorial first viewport with a clear conversion path. */
.section-blue {
  background: linear-gradient(132deg, #f9fbff 0%, #eef5ff 58%, #e7f1ff 100%);
}

.hero-grid {
  min-height: 624px;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 48px;
  padding: 58px 0 64px;
}

.hero-copy {
  max-width: 600px;
  padding-top: 8px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #3267d7;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
}

.hero-eyebrow b {
  color: #5d78b1;
  font-size: 18px;
  font-weight: 600;
}

h1 {
  max-width: 630px;
  margin-bottom: 24px;
  font-size: clamp(52px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

h1 em {
  color: #2d6cf2;
}

.hero-copy > p {
  max-width: 540px;
  color: #52647f;
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  gap: 16px;
  margin-top: 34px;
}

.hero-actions .btn-primary {
  min-width: 180px;
  border-radius: 999px;
  background: linear-gradient(100deg, #244cf4, #3489f6);
  box-shadow: 0 14px 28px rgba(36, 91, 231, .2);
}

.hero-actions .btn-outline {
  min-width: 180px;
  border-color: #cadbf6;
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 30px;
  color: #647794;
  font-size: 13px;
}

.hero-proof > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.proof-check {
  width: 20px;
  height: 20px;
  color: #2d6cf2;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  background: #e1ecff;
}

.hero-visual {
  height: 510px;
  overflow: visible;
}

.hero-material {
  inset: -8% -12% -8%;
  width: 124%;
  max-width: none;
  height: 124%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 26px 30px rgba(46, 108, 220, .12));
}

.trust-strip {
  border-top: 1px solid #e4ecf8;
  border-bottom: 1px solid #e4ecf8;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  min-height: 112px;
  gap: 0;
  padding: 18px 0;
}

.trust-item {
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
}

.trust-item + .trust-item {
  border-left: 1px solid #e2eaf6;
}

.trust-item img {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}

.trust-item strong {
  display: block;
  color: #213b6b;
  font-size: 15px;
  line-height: 1.4;
}

.trust-item small {
  display: block;
  margin-top: 4px;
  color: #5d6c84;
  font-size: 12px;
  line-height: 1.45;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 26px;
  }

  .hero-material {
    width: 116%;
    inset: -4% -8% -4%;
  }

  .trust-item {
    gap: 10px;
    padding: 0 16px;
  }

  .trust-item small {
    font-size: 11px;
  }
}

@media (max-width: 980px) and (min-width: 761px) {
  .trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px 0;
  }

  .trust-item {
    min-height: 68px;
    padding: 10px 20px;
  }

  .trust-item:nth-child(odd) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid #e2eaf6;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 42px 0 36px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
    font-size: 13px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(42px, 11vw, 56px);
    line-height: 1.08;
  }

  .hero-copy > p {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .hero-proof {
    gap: 10px 14px;
    margin-top: 24px;
    font-size: 12px;
  }

  .hero-visual {
    height: 278px;
    margin: 0;
  }

  .hero-material {
    inset: -4% -10% -8%;
    width: 120%;
    height: 120%;
  }

  .trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    gap: 0;
    padding: 8px 0;
  }

  .trust-item {
    min-height: 68px;
    padding: 10px 12px;
  }

  .trust-item:nth-child(odd) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid #e2eaf6;
  }

  .trust-item img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .trust-item strong {
    font-size: 13px;
  }

  .trust-item small {
    max-width: 18ch;
    font-size: 10px;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .hero-eyebrow {
    letter-spacing: .04em;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof > span {
    min-width: 0;
  }

  .trust-item {
    gap: 8px;
    padding-inline: 8px;
  }
}

/* Final reference fidelity pass: keep this layer last so legacy prototype rules cannot override it. */
.section-products {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.section-products .section-kicker {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin: 0 auto 18px;
  padding: 8px 16px;
  border: 1px solid #d6e5ff;
  border-radius: 999px;
  color: #2d6fe1;
  background: #f4f8ff;
  font-size: 13px;
  font-weight: 700;
}

.section-kicker-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #2d73ee;
  font-size: 10px;
}

.section-products .section-heading {
  margin-bottom: 42px;
}

.product-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  margin-top: 30px;
  padding: 18px 28px;
  border: 1px solid #dce8f8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 72, 138, .05);
}

.product-proof-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 6px 26px;
}

.product-proof-item + .product-proof-item {
  border-left: 1px solid #e2eaf5;
}

.product-proof-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 14px;
  background: #eff5ff;
}

.product-proof-item:nth-child(2) .product-proof-icon { background: #f3f1ff; }
.product-proof-item:nth-child(3) .product-proof-icon { background: #edfbf8; }
.product-proof-item:nth-child(4) .product-proof-icon { background: #fff7e9; }

.product-proof-icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.product-proof-item b {
  display: block;
  color: #243a62;
  font-size: 14px;
  line-height: 1.35;
}

.product-proof-item small {
  display: block;
  margin-top: 3px;
  color: #5c6f8b;
  font-size: 11px;
  line-height: 1.45;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 34px 34px 28px;
  border: 1px solid #dfe8f5;
  border-radius: 16px;
  background: linear-gradient(to bottom, #fff 0%, #fff calc(100% - 4px), #2d73ee calc(100% - 4px), #2d73ee 100%);
  box-shadow: 0 14px 38px rgba(37, 79, 143, .075);
}

.feature-card--custom {
  background: linear-gradient(to bottom, #fbfffe 0%, #fbfffe calc(100% - 4px), #16bfa5 calc(100% - 4px), #16bfa5 100%);
}

.feature-card::before {
  position: absolute;
  top: 174px;
  right: -16%;
  left: -16%;
  height: 112px;
  border-radius: 0 0 50% 50%;
  content: "";
  background: #f0f6ff;
  pointer-events: none;
}

.feature-card--custom::before {
  background: #edfbf8;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card-top {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 140px;
  align-items: flex-start;
  gap: 24px;
}

.feature-hero-icon {
  display: grid;
  width: 104px;
  height: 104px;
  flex: 0 0 104px;
  place-items: center;
  border: 1px solid #dce9ff;
  border-radius: 24px;
  background: #edf4ff;
  box-shadow: 0 12px 24px rgba(53, 108, 218, .1);
}

.feature-card--custom .feature-hero-icon {
  border-color: #d7f3ee;
  background: #edfbf8;
  box-shadow: 0 12px 24px rgba(18, 172, 151, .1);
}

.feature-hero-icon img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.feature-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 13px;
  padding: 3px 10px;
  border: 1px solid #d7e5ff;
  border-radius: 999px;
  color: #2e6ddd;
  background: #f4f8ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.feature-card--custom .feature-card-kicker {
  border-color: #c9f2ea;
  color: #087b6f;
  background: #f0fcfa;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.3;
}

.feature-card p:not(.kicker) {
  max-width: 35ch;
  color: #5d6f88;
  font-size: 14px;
  line-height: 1.75;
}

.feature-divider {
  height: 1px;
  margin: 6px 0 18px;
  background: #e8eef7;
}

.feature-list-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: #1d3a70;
  font-size: 14px;
  font-weight: 800;
}

.feature-card--custom .feature-list-label {
  color: #116b61;
}

.feature-list-label small {
  color: #5c6f8b;
  font-size: 11px;
  font-weight: 500;
}

.feature-card .tag-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.feature-card .tag-row span {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  min-width: 0;
  min-height: 74px;
  padding: 11px 12px;
  border: 1px solid #e2eaf6;
  border-radius: 12px;
  background: #fff;
  color: #223554;
  text-align: left;
  white-space: normal;
}

.feature-card--custom .tag-row span {
  border-color: #def0ed;
}

.feature-card .tag-row span img {
  grid-row: 1 / span 2;
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.feature-card .tag-row span b {
  min-width: 0;
  color: #233756;
  font-size: 13px;
  line-height: 1.35;
}

.feature-card .tag-row span small {
  display: -webkit-box;
  min-width: 0;
  margin-top: 2px;
  overflow: hidden;
  color: #5c6f8b;
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
}

.feature-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #edf1f7;
}

.feature-fit {
  max-width: 26ch;
  color: #5c6f8b;
  font-size: 12px;
  line-height: 1.6;
}

.feature-card .text-link {
  flex: 0 0 auto;
  min-height: 40px;
  margin-top: 0;
  white-space: nowrap;
}

.standards {
  background: #f5f9ff;
}

.standards-grid {
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.22fr);
  gap: 22px;
}

.standard-panel {
  min-height: 372px;
  padding: 30px 32px 28px;
  border: 1px solid #dce8f8;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(36, 87, 167, .06);
}

.standard-panel-head {
  margin-bottom: 26px;
}

.standard-panel-title {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
}

.standard-panel-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border: 1px solid #dce9ff;
  border-radius: 50%;
  background: #edf4ff;
}

.standard-panel-symbol img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.standard-panel h3 {
  margin-bottom: 5px;
  font-size: 21px;
}

.standard-panel-note {
  padding: 7px 11px;
  border-radius: 999px;
  color: #2766d7;
  background: #eff5ff;
  font-size: 11px;
}

.architecture .arch-body {
  min-height: 230px;
  margin-top: 4px;
  grid-template-columns: 96px minmax(0, 1fr) 90px;
  gap: 12px;
}

.architecture .arch-labels span,
.architecture .arch-stack span {
  border-radius: 9px;
  font-size: 12px;
}

.architecture .arch-stack span { border-color: #d9e7fb; background: #f8fbff; color: #2b6ddd; }
.architecture .arch-stack span:nth-child(2) { background: #f2f0ff; border-color: #e0d8ff; color: #7655d7; }
.architecture .arch-stack span:nth-child(3) { background: #effbf8; border-color: #d1f0e9; color: #087b6f; }
.architecture .arch-stack .stack-bottom { background: transparent; }

.architecture .arch-badge {
  border: 1px solid #e0eafd;
  border-radius: 12px;
  background: #f6f9ff;
}

.architecture .arch-badge img {
  display: block;
  width: 54px;
  height: 54px;
  padding: 3px;
  object-fit: contain;
}

.workflow .workflow-steps {
  min-height: 230px;
  align-items: flex-start;
  padding-top: 8px;
}

.workflow .workflow-steps .step-icon {
  display: block;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  padding: 9px;
  border: 1px solid #dce9ff;
  border-radius: 50%;
  background: #edf4ff;
  object-fit: contain;
}

.workflow .workflow-steps > div:nth-of-type(2) .step-icon { background: #edfbf8; border-color: #d3f2eb; }
.workflow .workflow-steps > div:nth-of-type(3) .step-icon { background: #f5efff; border-color: #e7dafe; }
.workflow .workflow-steps > div:nth-of-type(4) .step-icon { background: #fff7e9; border-color: #f8e3bb; }

.workflow .workflow-steps b {
  margin-top: 13px;
  font-size: 14px;
}

.workflow .workflow-steps small {
  margin-top: 7px;
  color: #5c6f8b;
  font-size: 12px;
  line-height: 1.7;
}

.guarantee {
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
  min-height: 356px;
  padding: 34px 40px 38px;
}

.guarantee::after {
  position: absolute;
  top: 10px;
  right: 88px;
  width: 250px;
  height: 250px;
  content: "";
  background: url("assets/icons/guarantee-data.png") center / contain no-repeat;
  opacity: .055;
  pointer-events: none;
}

.guarantee > * {
  position: relative;
  z-index: 1;
}

.guarantee-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.guarantee-grid div {
  display: grid;
  min-height: 190px;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px 14px;
  border: 1px solid #e2ebf8;
  border-radius: 18px;
  background: #fbfdff;
  text-align: center;
}

.guarantee-grid img {
  display: block;
  width: 78px;
  height: 78px;
  margin-bottom: 2px;
  padding: 8px;
  border-radius: 50%;
  background: #eff5ff;
  object-fit: contain;
}

.guarantee-grid div:nth-child(2) img { background: #f1edff; }
.guarantee-grid div:nth-child(3) img { background: #e9faf6; }
.guarantee-grid div:nth-child(4) img { background: #fff4de; }

.guarantee-grid b {
  color: #223756;
  font-size: 16px;
}

.guarantee-grid small {
  color: #5c6f8b;
  font-size: 12px;
}

@media (max-width: 980px) and (min-width: 761px) {
  .feature-card-top {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
  }

  .feature-hero-icon {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    border-radius: 18px;
  }

  .feature-hero-icon img {
    width: 50px;
    height: 50px;
  }

  .feature-card .tag-row span {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 8px;
    padding-inline: 9px;
  }

  .feature-card .tag-row span img {
    width: 32px;
    height: 32px;
  }

  .guarantee {
    padding-inline: 28px;
  }

  .guarantee::after {
    right: 36px;
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 760px) {
  .section-products .section-kicker {
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .product-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 22px;
    padding: 12px 8px;
  }

  .product-proof-item {
    min-height: 66px;
    padding: 8px 10px;
  }

  .product-proof-item:nth-child(odd) {
    border-left: 0;
  }

  .product-proof-item:nth-child(n + 3) {
    border-top: 1px solid #e2eaf5;
  }

  .product-proof-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 11px;
  }

  .product-proof-icon img {
    width: 25px;
    height: 25px;
  }

  .product-proof-item b {
    font-size: 12px;
  }

  .product-proof-item small {
    font-size: 11px;
  }

  .feature-card {
    min-height: 0;
    padding: 28px 22px 26px;
    border-radius: 16px;
  }

  .feature-card::before {
    top: 150px;
    height: 94px;
  }

  .feature-card-top {
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 0;
    gap: 14px;
  }

  .feature-hero-icon {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
    border-radius: 17px;
  }

  .feature-hero-icon img {
    width: 44px;
    height: 44px;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .feature-card .tag-row span {
    min-height: 74px;
    padding: 10px 9px;
  }

  .feature-card .tag-row span b {
    font-size: 12px;
  }

  .feature-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .standard-panel {
    min-height: 0;
    padding: 24px 20px 22px;
    border-radius: 14px;
  }

  .standard-panel-symbol {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .standard-panel-symbol img {
    width: 32px;
    height: 32px;
  }

  .architecture .arch-body {
    grid-template-columns: 78px minmax(0, 1fr) 68px;
    gap: 7px;
  }

  .architecture .arch-labels span,
  .architecture .arch-stack span {
    font-size: 11px;
  }

  .workflow .workflow-steps {
    min-height: 0;
    padding-top: 0;
  }

  .workflow .workflow-steps .step-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    padding: 7px;
  }

  .workflow .workflow-steps b {
    font-size: 12px;
  }

  .workflow .workflow-steps small {
    font-size: 11px;
  }

  .workflow .workflow-steps > i {
    display: none;
  }

  .guarantee {
    min-height: 0;
    padding: 28px 22px 30px;
  }

  .guarantee::after {
    top: 24px;
    right: 22px;
    width: 140px;
    height: 140px;
    opacity: .04;
  }

  .guarantee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .guarantee-grid div {
    min-height: 160px;
    padding: 16px 10px;
  }

  .guarantee-grid img {
    width: 64px;
    height: 64px;
  }

  .guarantee-grid b {
    font-size: 14px;
  }

  .guarantee-grid small {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .feature-card .tag-row {
    gap: 8px;
  }

  .feature-card .tag-row span {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 7px;
    padding-inline: 7px;
  }

  .feature-card .tag-row span img {
    width: 30px;
    height: 30px;
  }

  .feature-card .tag-row span b {
    font-size: 11px;
  }

  .standard-panel-note {
    display: none;
  }

  .architecture .arch-body {
    grid-template-columns: 68px minmax(0, 1fr) 58px;
  }
}
