@font-face {
  font-family: "ZCOOL KuaiLe";
  src: url("./assets/brand-title.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+4FA0, U+60A0, U+9001, U+9152;
}

:root {
  --blue: #074bd9;
  --blue-deep: #0539ad;
  --ink: #14213c;
  --muted: #606b7d;
  --line: #dfe4ec;
  --paper: #fff;
  --mist: #f3f6fb;
  --yellow: #ffcf48;
  --shell: 1280px;
  --brand-font: "ZCOOL KuaiLe", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-family:
    "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
  color: var(--ink);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 100px;
  scroll-behavior: auto;
}
body {
  margin: 0;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
body.menu-visible,
body.dialog-visible {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
button,
input {
  font: inherit;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--yellow);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid #ef9f00;
  outline-offset: 5px;
}
.shell {
  width: min(var(--shell), calc(100% - 112px));
  margin-inline: auto;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 200;
  padding: 12px 18px;
  background: #fff;
  color: var(--blue);
}
.skip-link:focus {
  top: 12px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  color: var(--blue);
}
.brand-letter {
  width: 41px;
  height: 43px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 29px;
  font-weight: 900;
  border-radius: 6px;
}
.wordmark strong {
  display: block;
  font-family: var(--brand-font);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.1;
}
.wordmark small {
  display: block;
  font-size: 12px;
  font-weight: 750;
  margin-top: 5px;
  letter-spacing: 0;
}
.navigation {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
}
.navigation > a {
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}
.navigation > a:hover,
.navigation > a[aria-current] {
  color: var(--blue);
  border-color: var(--blue);
}
.header-contact {
  display: grid;
  grid-template-columns: auto 20px;
  gap: 3px 10px;
  padding-left: 26px;
  border-left: 1px solid var(--line);
  color: var(--blue);
}
.header-contact > span {
  font-size: 12px;
  color: var(--muted);
}
.header-contact > strong {
  font-size: 15px;
  white-space: nowrap;
  grid-column: 1;
}
.header-contact .icon {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  width: 20px;
}
.menu-button,
.mobile-phone {
  display: none !important;
}
.hero {
  position: relative;
  isolation: isolate;
  background: #0643cd;
  color: #fff;
  overflow: hidden;
}
.hero-art {
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.hero-inner {
  position: relative;
  min-height: 700px;
  height: calc(100svh - 168px);
  max-height: 900px;
  display: flex;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 90px;
}
.hero-copy {
  width: 45%;
  position: relative;
}
.eyebrow {
  font-size: 12px;
  font-weight: 750;
  line-height: 1.6;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 9px;
}
.eyebrow.light {
  color: #fff;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--brand-font);
  font-size: 76px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 27px;
  letter-spacing: 0;
}
.hero-description {
  font-size: 20px;
  line-height: 1.8;
  margin-top: 32px;
  color: #eef5ff;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
  flex-wrap: wrap;
}
.button {
  min-height: 54px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 5px;
  padding: 15px 23px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  border: 1px solid transparent;
}
.button-yellow {
  background: var(--yellow);
  color: #10284b;
}
.button-yellow:hover {
  background: #ffde77;
}
.button-blue {
  background: var(--blue);
  color: #fff;
}
.button-blue:hover {
  background: var(--blue-deep);
}
.hero-link {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-block: 8px;
}
.hero-caption {
  position: absolute;
  bottom: 27px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 650;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 18px;
  color: #deebff;
}
.hero-caption span:last-child {
  font-size: 12px;
}
.brand-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.strip-grid {
  display: grid;
  grid-template-columns: 1.38fr 1fr 1fr 1fr;
  align-items: center;
  padding-block: 32px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-inline: 28px;
  border-left: 1px solid var(--line);
}
.strip-item:first-child {
  border-left: 0;
  padding-left: 0;
}
.strip-item:last-child {
  padding-right: 0;
}
.strip-item > strong {
  font-size: 46px;
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
  line-height: 1;
}
.strip-item > strong > span {
  font-size: 14px;
  margin-left: 3px;
  font-weight: 600;
}
.strip-item p {
  font-size: 14px;
  line-height: 1.5;
}
.strip-item b {
  font-size: 15px;
  font-weight: 750;
}
.strip-item small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.strip-number {
  font-size: 12px;
  color: var(--blue);
  align-self: flex-start;
  margin-top: 3px;
  font-weight: 700;
}
.section {
  padding-block: 96px;
}
.section-index {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 750;
  color: var(--blue);
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.section-index > span:last-child {
  font-size: 12px;
  font-weight: 500;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
h2 {
  font-size: 46px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: 0;
}
.section-heading > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 440px;
}
.business-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.flow-column {
  padding: 0 34px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.flow-column:first-child {
  padding-left: 0;
  border: 0;
}
.flow-column:last-child {
  padding-right: 0;
}
.step-label {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
}
.flow-column h3 {
  font-size: 22px;
  font-weight: 800;
  margin-top: 13px;
  margin-bottom: 26px;
}
.platform-list {
  min-height: 158px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-content: center;
}
.platform-list > span {
  padding: 10px 15px;
  border: 1px solid #dce3ee;
  font-size: 14px;
  background: #f7f9fc;
  border-radius: 4px;
  font-weight: 600;
}
.system-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #d6e4fe;
  min-height: 158px;
  border: 1px solid #d6e4fe;
}
.system-list > span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
}
.delivery-statement {
  min-height: 158px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  background: var(--blue);
  color: #fff;
}
.delivery-statement > span {
  writing-mode: vertical-rl;
  font-size: 12px;
  color: #c6d9ff;
  border-right: 1px solid #6592eb;
  padding-right: 12px;
}
.delivery-statement strong {
  font-size: 24px;
  line-height: 1.45;
}
.flow-column > p {
  margin-top: 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.business-footnote {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 23px 0 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 12px;
}
.business-footnote > span:last-child {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}
.product {
  border-top: 1px solid var(--line);
  padding-top: 50px;
  padding-bottom: 70px;
}
.product .section-index {
  margin-bottom: 10px;
}
.product-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 65px;
  align-items: center;
}
.product-image-button {
  position: relative;
  padding: 0;
  background: #fff;
  border: 0;
  align-self: center;
  min-width: 0;
}
.product-image-button > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.image-zoom {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}
.product-image-button:hover .image-zoom {
  color: var(--blue);
  border-color: var(--blue);
}
.product-copy {
  padding-block: 50px;
}
.product h2 {
  margin: 18px 0 22px;
}
.product-name {
  font-size: 20px;
  font-weight: 750;
  margin-bottom: 18px;
}
.body-copy {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
}
.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0 24px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 15px;
}
.product-specs dt {
  color: var(--muted);
  font-size: 12px;
}
.product-specs dd {
  margin: 8px 0 0;
  font-size: 33px;
  line-height: 1.2;
  font-weight: 650;
  color: var(--blue);
}
.product-specs dd > span {
  font-size: 14px;
  margin-left: 3px;
}
.product-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--blue);
  font-weight: 700;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.micro-copy {
  font-size: 12px;
  color: #717b8b;
  margin-top: 20px;
  line-height: 1.6;
}
.franchise {
  background: var(--mist);
}
.franchise-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}
.investment-intro {
  padding-top: 28px;
}
.investment-total {
  font-size: 82px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  white-space: nowrap;
  margin-top: 15px;
}
.investment-total > span {
  font-size: 20px;
  margin-left: 8px;
  font-weight: 600;
}
.investment-intro > p:nth-of-type(3) {
  font-size: 20px;
  margin-top: 15px;
}
.investment-intro .button {
  margin-top: 38px;
}
.investment-note {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  max-width: 300px;
  margin-top: 22px;
}
.tabs {
  display: flex;
  border-bottom: 1px solid #cdd7e6;
  gap: 30px;
}
.tabs > button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 15px 0;
  font-size: 16px;
  font-weight: 650;
  margin-bottom: -1px;
}
.tabs > button[aria-selected="true"] {
  color: var(--blue);
  border-color: var(--blue);
}
.tab-panel {
  padding-top: 9px;
  min-height: 447px;
}
.budget-list {
  margin: 0;
}
.budget-list > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 15px;
  border-bottom: 1px solid #dae1ec;
}
.budget-list dt {
  font-size: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.budget-list dt > span {
  font-size: 12px;
  color: #8590a1;
}
.budget-list dt > small {
  font-size: 12px;
  color: var(--muted);
}
.budget-list dd {
  margin: 0;
  font-size: 27px;
  color: var(--blue);
  font-weight: 650;
  white-space: nowrap;
}
.budget-list dd > span,
.budget-list dd > small {
  font-size: 12px;
  font-weight: 500;
  margin: 0 4px;
}
.budget-list dd.budget-custom {
  font-size: 15px;
}
.data-note {
  font-size: 12px;
  line-height: 1.8;
  color: #677486;
  margin-top: 19px;
}
.growth-stages {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}
.growth-stages > div {
  display: grid;
  gap: 10px;
}
.growth-stages span {
  font-size: 14px;
  color: var(--muted);
}
.growth-stages strong {
  font-size: 30px;
  color: var(--blue);
  font-weight: 700;
}
.growth-stages .icon {
  color: var(--blue);
}
.growth-list {
  margin-top: 24px;
  list-style: none;
  counter-reset: grow;
}
.growth-list > li {
  font-size: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #dae1ec;
  counter-increment: grow;
}
.growth-list > li:before {
  content: "0" counter(grow);
  font-size: 12px;
  color: #8590a1;
  margin-right: 16px;
}
.strengths {
  background: var(--blue);
  color: #fff;
  padding-block: 75px 82px;
}
.strengths .section-index {
  color: #d4e2ff;
  border-color: rgba(255, 255, 255, 0.28);
  margin-bottom: 42px;
}
.strengths-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.strengths-heading > p {
  font-size: 15px;
  color: #c5d8ff;
  line-height: 1.6;
  padding-bottom: 10px;
}
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 55px;
}
.strengths-grid > article {
  padding: 0 23px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}
.strengths-grid > article:first-child {
  padding-left: 0;
  border: 0;
}
.strengths-grid > article:last-child {
  padding-right: 0;
}
.strengths-grid span {
  font-size: 12px;
  color: var(--yellow);
}
.strengths-grid h3 {
  font-size: 18px;
  margin-top: 29px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.strengths-grid p {
  color: #cedfff;
  font-size: 14px;
  line-height: 1.8;
}
.cooperation-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
  margin: 10px 0 36px;
}
.cooperation-steps > li {
  position: relative;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cooperation-steps > li:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 55px;
  right: 13px;
  border-top: 1px solid #c8d3e3;
}
.cooperation-steps > li:last-child:after {
  display: none;
}
.cooperation-steps span {
  font-size: 14px;
  font-weight: 650;
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid #b7cbee;
  border-radius: 50%;
  margin-bottom: 22px;
}
.cooperation-steps strong {
  font-size: 17px;
  margin-bottom: 9px;
}
.cooperation-steps p {
  font-size: 12px;
  color: var(--muted);
}
.support-band {
  padding: 26px 28px;
  background: var(--mist);
  display: flex;
  gap: 40px;
  align-items: center;
}
.support-band > strong {
  font-size: 14px;
  color: var(--blue);
  white-space: nowrap;
}
.support-band > ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  flex: 1;
}
.support-band li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.support-band li:before {
  content: "+";
  color: var(--blue);
  font-weight: 700;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-top: 84px;
  align-items: start;
}
.faq-layout h3 {
  font-size: 25px;
  margin-top: 13px;
  line-height: 1.4;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding-block: 23px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary .icon {
  width: 17px;
  height: 17px;
  color: var(--blue);
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  padding: 0 40px 23px 0;
}
.contact {
  background: var(--yellow);
  overflow: hidden;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 90px;
  align-items: center;
  padding-block: 65px;
}
.contact-layout > div {
  padding-block: 10px;
}
.contact .eyebrow {
  color: #5e490d;
}
.contact h2 {
  font-size: 44px;
  margin-block: 17px 19px;
}
.contact-layout p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.8;
  color: #655319;
}
.contact-phone {
  display: inline-flex;
  font-size: 39px;
  color: var(--blue);
  font-weight: 750;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  white-space: nowrap;
}
.contact-phone .icon {
  width: 34px;
  height: 34px;
}
.contact-label {
  font-size: 12px;
  display: block;
  color: #655319;
  margin-top: 12px;
}
.contact-layout > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  max-width: 390px;
  justify-self: end;
  border-radius: 8px;
}
.footer {
  background: #fff;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 38px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  font-family: var(--brand-font);
  font-size: 24px;
  font-weight: 400;
  color: var(--blue);
  line-height: 1.2;
}
.footer-brand small {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 750;
}
.footer-top > p {
  font-size: 15px;
  color: var(--muted);
}
.back-top {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--blue);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 21px;
  color: #758093;
  font-size: 12px;
  line-height: 1.6;
}
.product-dialog {
  width: min(960px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #fff;
  color: var(--ink);
}
.product-dialog::backdrop {
  background: rgba(7, 18, 43, 0.8);
}
.dialog-top {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.dialog-top > h2 {
  font-size: 16px;
  font-weight: 650;
}
.icon-button {
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  display: grid;
  place-items: center;
}
.product-dialog > img {
  width: 100%;
  max-height: calc(100svh - 110px);
  object-fit: contain;
}
@media (min-width: 1700px) {
  .hero-inner {
    height: 840px;
  }
}
@media (max-width: 1200px) {
  .shell {
    width: calc(100% - 72px);
  }
  .navigation {
    gap: 20px;
  }
  .header-inner {
    gap: 20px;
  }
  .wordmark strong {
    font-size: 20px;
  }
  .header-contact {
    padding-left: 18px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-inner {
    min-height: 650px;
    height: 720px;
  }
  .hero-actions {
    gap: 20px;
  }
  .strip-item {
    padding-inline: 18px;
    gap: 12px;
  }
  .strip-item > strong {
    font-size: 36px;
  }
  .strip-item b {
    font-size: 14px;
  }
  .strip-item small {
    font-size: 12px;
  }
  .strip-item p {
    font-size: 12px;
  }
  .strip-number {
    font-size: 12px;
  }
  .section {
    padding-block: 78px;
  }
  h2 {
    font-size: 40px;
  }
  .section-heading {
    gap: 50px;
  }
  .flow-column {
    padding-inline: 24px;
  }
  .flow-column h3 {
    font-size: 19px;
  }
  .flow-column > p {
    font-size: 14px;
  }
  .platform-list > span {
    padding: 9px 12px;
    font-size: 12px;
  }
  .delivery-statement {
    padding: 18px 16px;
    gap: 16px;
  }
  .delivery-statement strong {
    font-size: 20px;
  }
  .product-layout {
    gap: 40px;
  }
  .franchise-layout {
    gap: 60px;
  }
  .investment-total {
    font-size: 65px;
  }
  .growth-stages strong {
    font-size: 25px;
  }
  .strengths-grid > article {
    padding-inline: 18px;
  }
  .strengths-grid h3 {
    font-size: 16px;
  }
  .contact-layout {
    gap: 55px;
  }
  .contact-phone {
    font-size: 34px;
  }
}
@media (max-width: 1000px) {
  .header-inner {
    height: 76px;
  }
  .navigation {
    gap: 16px;
  }
  .navigation > a {
    font-size: 12px;
  }
  .header-contact {
    display: none;
  }
  .hero-inner {
    min-height: 620px;
    height: 660px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-copy {
    width: 45%;
  }
  .hero-description {
    font-size: 18px;
  }
  .button {
    font-size: 14px;
    padding: 14px 17px;
    gap: 16px;
    min-height: 49px;
  }
  .hero-link {
    font-size: 12px;
  }
  .strip-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .strip-item:last-child {
    display: none;
  }
  .section-heading {
    gap: 35px;
    grid-template-columns: 1.1fr 1fr;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .product-copy {
    padding-block: 30px;
  }
  .product-layout {
    gap: 30px;
  }
  .product h2 {
    font-size: 36px;
  }
  .product-name {
    font-size: 17px;
  }
  .body-copy {
    font-size: 14px;
  }
  .product-specs {
    gap: 9px;
    margin-block: 24px;
    padding-block: 20px;
  }
  .product-specs dd {
    font-size: 29px;
  }
  .product-specs dt {
    font-size: 12px;
  }
  .product-bottom {
    font-size: 12px;
  }
  .product-bottom .text-link {
    font-size: 12px;
  }
  .franchise-layout {
    gap: 40px;
  }
  .investment-total {
    font-size: 57px;
  }
  .investment-total > span {
    font-size: 17px;
  }
  .budget-list dt {
    font-size: 14px;
    gap: 10px;
  }
  .data-note {
    font-size: 12px;
  }
  .strengths-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 0;
  }
  .strengths-grid article:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }
  .strengths-grid h3 {
    margin-top: 18px;
  }
  .strengths-heading > p {
    font-size: 14px;
  }
  .cooperation-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
  }
  .cooperation-steps > li:nth-child(3):after {
    display: none;
  }
  .support-band {
    gap: 25px;
    padding: 24px;
  }
  .support-band > ul {
    justify-content: flex-start;
    gap: 14px 23px;
  }
  .faq-layout {
    gap: 45px;
    grid-template-columns: 1fr 1.6fr;
  }
  .faq-layout h3 {
    font-size: 22px;
  }
  .contact h2 {
    font-size: 37px;
  }
  .contact-phone {
    font-size: 30px;
    gap: 16px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 82px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 72px;
  }
  .wordmark strong {
    font-size: 20px;
  }
  .brand-letter {
    width: 35px;
    height: 37px;
    font-size: 25px;
  }
  .wordmark small {
    font-size: 12px;
  }
  .menu-button {
    display: grid !important;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
    color: var(--blue);
    margin-left: auto;
  }
  .menu-close-icon {
    display: none;
  }
  .menu-button[aria-expanded="true"] .menu-open-icon {
    display: none;
  }
  .menu-button[aria-expanded="true"] .menu-close-icon {
    display: block;
  }
  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 15px 24px 24px;
    background: #fff;
    box-shadow: 0 15px 20px rgba(10, 35, 80, 0.08);
    border-top: 1px solid var(--line);
  }
  .navigation.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .navigation > a {
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .navigation .mobile-phone {
    display: block !important;
    color: var(--blue);
    font-weight: 750;
    margin-top: 10px;
  }
  .hero-inner {
    height: 810px;
    min-height: 0;
    max-height: none;
    padding-top: 42px;
    padding-bottom: 0;
    display: block;
  }
  .hero-copy {
    width: 100%;
    max-width: 430px;
  }
  .hero h1 {
    font-size: 48px;
    margin-top: 20px;
  }
  .hero-description {
    font-size: 16px;
    margin-top: 22px;
    line-height: 1.65;
  }
  .hero-actions {
    margin-top: 23px;
    gap: 24px;
    align-items: center;
  }
  .hero-actions .button {
    min-height: 47px;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .hero-art {
    inset: auto 0 0;
    aspect-ratio: 1/1;
    max-height: 505px;
  }
  .hero-art img {
    object-fit: contain;
    object-position: bottom;
    background: #0745cf;
  }
  .hero {
    background: #0745cf;
  }
  .hero-caption {
    display: none;
  }
  .brand-strip {
    position: relative;
    z-index: 1;
  }
  .strip-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 0;
  }
  .strip-item {
    padding: 22px 15px !important;
    gap: 12px;
    min-height: 98px;
  }
  .strip-item:first-child {
    padding-left: 0 !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .strip-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0 !important;
  }
  .strip-item:last-child {
    display: flex;
    border-top: 1px solid var(--line);
  }
  .strip-item > strong {
    font-size: 36px;
  }
  .strip-item > strong > span {
    font-size: 12px;
  }
  .strip-item p {
    font-size: 12px;
  }
  .strip-item small {
    font-size: 12px;
    margin-top: 4px;
  }
  .strip-item b {
    font-size: 12px;
  }
  .strip-item .strip-number {
    font-size: 12px;
  }
  .section {
    padding-block: 62px;
  }
  .section-index {
    font-size: 12px;
    margin-bottom: 31px;
    padding-bottom: 17px;
  }
  .section-index > span:last-child {
    font-size: 12px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-bottom: 37px;
  }
  h2 {
    font-size: 34px;
  }
  .section-heading > p {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.8;
  }
  .desktop-break {
    display: none;
  }
  .business-flow {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .flow-column,
  .flow-column:first-child,
  .flow-column:last-child {
    padding: 0 0 28px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .flow-column:last-child {
    padding-bottom: 0;
    border: 0;
  }
  .step-label {
    font-size: 12px;
  }
  .flow-column h3 {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 19px;
  }
  .platform-list {
    min-height: 0;
    gap: 8px;
  }
  .platform-list > span {
    font-size: 14px;
    padding: 12px 15px;
  }
  .system-list {
    min-height: 116px;
  }
  .system-list > span {
    font-size: 14px;
  }
  .delivery-statement {
    min-height: 126px;
    justify-content: flex-start;
    padding: 23px;
    gap: 24px;
  }
  .delivery-statement strong {
    font-size: 24px;
  }
  .flow-column > p {
    font-size: 14px;
    margin-top: 17px;
  }
  .business-footnote {
    margin-top: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
    font-size: 12px;
  }
  .business-footnote > span:last-child {
    display: none;
  }
  .product .section-index {
    margin-bottom: 26px;
  }
  .product-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .product-image-button {
    margin-inline: -6px;
  }
  .product-copy {
    padding-block: 17px 0;
  }
  .product-copy .eyebrow {
    font-size: 12px;
  }
  .product h2 {
    font-size: 36px;
    margin: 14px 0 21px;
  }
  .product-name {
    font-size: 18px;
  }
  .body-copy {
    font-size: 15px;
  }
  .product-specs {
    margin-top: 27px;
    padding-block: 22px;
    gap: 15px;
  }
  .product-specs dt {
    font-size: 12px;
  }
  .product-specs dd {
    font-size: 35px;
  }
  .product-specs dd > span {
    font-size: 12px;
  }
  .product-bottom {
    font-size: 12px;
  }
  .product-bottom .text-link {
    font-size: 12px;
  }
  .franchise-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .investment-intro {
    padding-top: 0;
  }
  .investment-total {
    font-size: 74px;
    margin-top: 9px;
  }
  .investment-total > span {
    font-size: 20px;
  }
  .investment-intro > p:nth-of-type(3) {
    font-size: 18px;
    margin-top: 11px;
  }
  .investment-intro .button {
    margin-top: 26px;
  }
  .investment-note {
    margin-top: 16px;
    font-size: 12px;
    max-width: none;
  }
  .tabs > button {
    font-size: 15px;
  }
  .tab-panel {
    min-height: 430px;
  }
  .budget-list > div {
    padding-block: 14px;
  }
  .budget-list dt {
    font-size: 14px;
  }
  .budget-list dd {
    font-size: 26px;
  }
  .budget-list dd > span {
    font-size: 12px;
  }
  .data-note {
    font-size: 12px;
    line-height: 1.8;
  }
  .growth-stages strong {
    font-size: 27px;
  }
  .strengths-heading {
    display: block;
  }
  .strengths-heading > p {
    font-size: 14px;
    padding: 0;
    margin-top: 18px;
  }
  .strengths .section-index {
    margin-bottom: 30px;
  }
  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
  }
  .strengths-grid > article,
  .strengths-grid > article:first-child,
  .strengths-grid > article:last-child,
  .strengths-grid article:nth-child(4) {
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    display: grid;
    grid-template-columns: 27px 1fr;
    gap: 10px 8px;
  }
  .strengths-grid > article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .strengths-grid span {
    font-size: 12px;
    margin-top: 3px;
  }
  .strengths-grid h3 {
    font-size: 18px;
    margin: 0;
  }
  .strengths-grid p {
    grid-column: 2;
    font-size: 14px;
    max-width: 100%;
  }
  .cooperation-steps {
    grid-template-columns: 1fr 1fr;
    gap: 31px 0;
    margin-bottom: 30px;
  }
  .cooperation-steps > li:nth-child(3):after {
    display: block;
  }
  .cooperation-steps > li:nth-child(2n):after {
    display: none;
  }
  .cooperation-steps span {
    margin-bottom: 17px;
  }
  .cooperation-steps strong {
    font-size: 17px;
  }
  .cooperation-steps p {
    font-size: 12px;
  }
  .support-band {
    padding: 24px;
    display: block;
  }
  .support-band > strong {
    font-size: 14px;
  }
  .support-band > ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px 13px;
    margin-top: 18px;
  }
  .support-band li {
    font-size: 12px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 55px;
  }
  .faq-layout h3 {
    font-size: 26px;
    margin-top: 8px;
  }
  .faq-layout .eyebrow {
    font-size: 12px;
  }
  .faq-list summary {
    font-size: 14px;
    padding-block: 21px;
    gap: 18px;
  }
  .faq-list details > p {
    font-size: 14px;
    padding-right: 0;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 48px;
  }
  .contact h2 {
    font-size: 35px;
  }
  .contact-layout > div {
    padding: 0;
  }
  .contact .eyebrow {
    font-size: 12px;
  }
  .contact-layout p:not(.eyebrow) {
    font-size: 14px;
  }
  .contact-phone {
    font-size: 32px;
    margin-top: 25px;
    gap: 16px;
  }
  .contact-phone .icon {
    width: 26px;
    height: 26px;
  }
  .contact-label {
    font-size: 12px;
  }
  .contact-layout > img {
    width: 100%;
    max-width: none;
    aspect-ratio: 1.18;
    object-position: center 38%;
    border-radius: 6px;
  }
  .footer-top {
    padding-block: 28px;
    flex-wrap: wrap;
    gap: 21px;
  }
  .footer-top > p {
    display: none;
  }
  .footer-brand {
    font-size: 23px;
  }
  .back-top {
    font-size: 12px;
  }
  .footer-bottom {
    display: block;
    font-size: 12px;
    padding-block: 20px;
  }
  .footer-bottom p {
    margin-top: 9px;
  }
  .product-dialog {
    width: calc(100% - 20px);
  }
  .dialog-top {
    padding: 10px 12px;
  }
  .dialog-top > h2 {
    font-size: 14px;
  }
}
@media (max-width: 390px) {
  .shell {
    width: calc(100% - 32px);
  }
  .hero-inner {
    height: 750px;
    padding-top: 36px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .button {
    padding-inline: 15px;
    font-size: 12px;
    gap: 12px;
  }
  .hero-link {
    font-size: 12px;
  }
  .hero-description {
    font-size: 15px;
  }
  .strip-item {
    padding-inline: 12px !important;
    gap: 9px;
  }
  .strip-item > strong {
    font-size: 32px;
  }
  .strip-item small {
    font-size: 12px;
  }
  .strip-item b {
    font-size: 12px;
  }
  h2 {
    font-size: 31px;
  }
  .contact-phone {
    font-size: 28px;
  }
  .investment-total {
    font-size: 66px;
  }
  .growth-stages strong {
    font-size: 24px;
  }
  .product-specs dd {
    font-size: 31px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
