@font-face {
  font-family: "Alibaba PuHuiTi";
  src: url("../fonts/AlibabaPuHuiTi-3-55-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Alibaba PuHuiTi";
  src: url("../fonts/AlibabaPuHuiTi-3-75-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Alibaba PuHuiTi";
  src: url("../fonts/AlibabaPuHuiTi-3-85-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Alibaba PuHuiTi";
  src: url("../fonts/AlibabaPuHuiTi-3-105-Heavy.otf") format("opentype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --blue: #164d7d;
  --blue-deep: #0d365d;
  --blue-bright: #1687c9;
  --ink: #172331;
  --muted: #657381;
  --surface: #f1f3f5;
  --surface-2: #e7eaed;
  --white: #fff;
  --line: #dfe5ea;
  --shadow: 0 18px 50px rgba(17, 57, 91, .12);
  --radius: 20px;
  --container: 1280px;
  --canvas: 1920px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  min-width: var(--canvas);
  overscroll-behavior-x: none;
}
body {
  margin: 0;
  min-width: var(--canvas);
  color: var(--ink);
  background: #fff;
  font-family: "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
  overscroll-behavior-x: none;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 96px 0; }
.section.gray { background: var(--surface); }
.section.dark { color: #fff; background: linear-gradient(135deg, #123f6a, #082b4e); }
.section-heading { max-width: 820px; margin: 0 auto 50px; text-align: center; }
.section-heading.align-left { max-width: none; margin-left: 0; text-align: left; }
.section-kicker { display: inline-block; margin-bottom: 10px; color: var(--blue-bright); font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.section-heading h2 { margin: 0 0 14px; font-size: clamp(28px, 3vw, 44px); line-height: 1.25; letter-spacing: .04em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 16px; }
.dark .section-heading p { color: rgba(255,255,255,.7); }
.eyebrow { color: var(--blue-bright); font-weight: 700; letter-spacing: .12em; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 28px; border: 1px solid var(--blue); border-radius: 6px; color: #fff; background: var(--blue); transition: .25s ease; }
.button:hover { transform: translateY(-2px); background: var(--blue-deep); box-shadow: 0 10px 25px rgba(22,77,125,.25); }
.button.outline { color: var(--blue); background: transparent; }
.button.outline:hover { color: #fff; background: var(--blue); }
.text-link { color: var(--blue); font-weight: 700; }
.text-link::after { content: "  →"; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.site-header { position: relative; z-index: 100; height: 88px; color: #fff; background: #244c73; box-shadow: none; }
.header-inner {
  height: 100%;
  width: 1680px;
  max-width: calc(100% - 120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr auto;
  align-items: center;
  column-gap: 48px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo-image { display: block; width: 380px; max-width: 100%; height: auto; object-fit: contain; }
.brand-mark { position: relative; flex: 0 0 45px; width: 45px; height: 45px; border: 3px solid currentColor; border-radius: 50%; transform: rotate(-28deg); }
.brand-mark::before, .brand-mark::after, .brand-mark i { content: ""; position: absolute; width: 17px; height: 7px; border: 3px solid currentColor; border-left: 0; border-bottom: 0; border-radius: 50%; }
.brand-mark::before { top: 5px; right: 2px; transform: rotate(32deg); }
.brand-mark::after { bottom: 5px; left: 2px; transform: rotate(212deg); }
.brand-mark i { top: 16px; left: 11px; transform: rotate(122deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 19px; letter-spacing: .02em; }
.brand-text small { margin-top: 5px; font-size: 8px; letter-spacing: .06em; opacity: .8; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  font-size: 16px;
  font-weight: 500;
}
.main-nav a {
  position: relative;
  padding: 28px 0;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}
.main-nav a::after { content: ""; position: absolute; left: 50%; bottom: 18px; width: 0; height: 2px; background: #fff; transform: translateX(-50%); transition: width .25s; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  white-space: nowrap;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 2px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  transition: .2s ease;
}
.contact-link:hover,
.contact-link.active {
  color: #244c73;
  background: #fff;
}
.language {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.92);
  background: none;
  cursor: pointer;
  white-space: nowrap;
  font-size: 15px;
}
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: #fff; transition: .25s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-carousel { position: relative; height: auto; min-height: 0; aspect-ratio: 1920 / 1020; overflow: hidden; background: #071f34; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; pointer-events: none; transform: none; }
.hero-slide.active { z-index: 1; opacity: 1; pointer-events: auto; transform: none; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-banner-carousel .hero-slide img { object-fit: fill; }
.home-banner-carousel .hero-controls { z-index: 5; bottom: 28px; gap: 10px; }
.home-banner-carousel .hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}
.home-banner-carousel .hero-dot.active {
  width: 12px;
  background: #fff;
}
.home-banner-carousel .hero-arrow {
  z-index: 5;
  left: 36px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.18);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.home-banner-carousel .hero-next { left: auto; right: 36px; }
.hero-mobile-copy { display: none; }
.hero-controls { position: absolute; z-index: 4; left: 50%; bottom: 25px; display: flex; align-items: center; gap: 10px; transform: translateX(-50%); }
.hero-dot { width: 28px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.45); cursor: pointer; transition: .25s; }
.hero-dot.active { width: 48px; background: #fff; }
.hero-arrow { position: absolute; z-index: 4; top: 50%; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #fff; background: rgba(6,28,48,.25); transform: translateY(-50%); cursor: pointer; transition: .25s; }
.hero-arrow:hover { background: rgba(6,28,48,.7); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.page-hero { position: relative; min-height: 460px; background: #0c3155; overflow: hidden; }
.page-hero img { width: 100%; min-height: 460px; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: rgba(255,255,255,.2); }

.intro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 66px; align-items: center; }
.intro-copy h2 { margin: 0 0 22px; font-size: clamp(32px, 4vw, 56px); line-height: 1.18; }
.intro-copy p { color: var(--muted); }
.intro-image { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.intro-image img { width: 100%; min-height: 410px; object-fit: cover; }

.brand-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.brand-card { position: relative; min-height: 360px; padding: 32px; overflow: hidden; border-radius: 16px; color: #fff; background-position: center; background-size: cover; box-shadow: var(--shadow); }
.brand-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,22,39,.9), rgba(4,22,39,.05) 70%); }
.brand-card > * { position: relative; z-index: 1; }
.brand-card .number { display: inline-block; margin-bottom: 185px; color: rgba(255,255,255,.7); font-size: 13px; letter-spacing: .14em; }
.brand-card h3 { margin: 0 0 8px; font-size: 24px; }
.brand-card p { margin: 0; color: rgba(255,255,255,.75); font-size: 14px; }
.brand-card:nth-child(1) { background-image: url('../images/about-building.jpg'); }
.brand-card:nth-child(2) { background-image: url('../images/robot-dog.jpg'); }
.brand-card:nth-child(3) { background-image: url('../images/hero-tech.jpg'); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: .3s ease; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-card .media { height: 300px; overflow: hidden; background: #fff; }
.product-card .media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s; }
.product-card:hover .media img { transform: scale(1.035); }
.product-card .content { padding: 24px 26px 28px; }
.product-card .tag { color: var(--blue-bright); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.product-card h3 { margin: 5px 0 8px; font-size: 23px; }
.product-card p { min-height: 52px; margin: 0 0 18px; color: var(--muted); font-size: 14px; }

.controller-showcase { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 540px; overflow: hidden; border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.controller-showcase .visual { background: linear-gradient(135deg, #dbe6ee, #fff); }
.controller-showcase .visual img { width: 100%; height: 100%; object-fit: cover; }
.controller-showcase .copy { display: flex; flex-direction: column; justify-content: center; padding: 60px; }
.controller-showcase h3 { margin: 0 0 18px; font-size: 34px; line-height: 1.25; }
.controller-showcase p { color: var(--muted); }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin: 24px 0 30px; }
.spec-list span { padding: 11px 0; border-bottom: 1px solid var(--line); color: #3f5060; font-size: 14px; }
.spec-list span::before { content: "◆"; margin-right: 9px; color: var(--blue-bright); font-size: 8px; vertical-align: 2px; }

.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.advantage-card { padding: 30px 26px; border: 1px solid rgba(22,77,125,.08); border-radius: 12px; background: #fff; transition: .25s; }
.advantage-card:hover { border-color: rgba(22,77,125,.35); transform: translateY(-5px); }
.icon-orb { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 24px; border-radius: 50%; color: var(--blue); background: #e8f2f8; font-size: 25px; }
.advantage-card h3 { margin: 0 0 10px; font-size: 19px; }
.advantage-card p { margin: 0; color: var(--muted); font-size: 14px; }

.funnel { max-width: 760px; margin: 0 auto; }
.funnel-row { display: grid; grid-template-columns: 1fr 1.2fr 1fr; align-items: center; margin: -1px 0 0; }
.funnel-row .label { padding: 16px; color: var(--muted); font-size: 14px; }
.funnel-row .core { padding: 18px; color: #fff; text-align: center; background: var(--blue); clip-path: polygon(7% 0, 93% 0, 82% 100%, 18% 100%); }
.funnel-row:nth-child(2) .core { margin-inline: 35px; background: #205f91; }
.funnel-row:nth-child(3) .core { margin-inline: 70px; background: #2872aa; }
.funnel-row:nth-child(4) .core { margin-inline: 100px; background: #3390c8; }

.image-panel { overflow: hidden; border-radius: 18px; box-shadow: var(--shadow); }
.image-panel img { width: 100%; }
.solution-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.solution-card { min-height: 330px; padding: 28px; border-radius: 14px; color: #fff; background-position: center; background-size: cover; box-shadow: inset 0 -190px 150px rgba(5,25,44,.86); }
.solution-card:nth-child(1) { background-image: url('../images/hero-business.jpg'); }
.solution-card:nth-child(2) { background-image: url('../images/hero-tech.jpg'); }
.solution-card:nth-child(3) { background-image: url('../images/hero-service.jpg'); }
.solution-card:nth-child(4) { background-image: url('../images/hero-ai.jpg'); }
.solution-card span { display: block; margin-top: 200px; color: #6cc8ff; font-size: 12px; }
.solution-card h3 { margin: 4px 0 0; font-size: 20px; }

.subnav { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(12px); }
.subnav .container { display: flex; justify-content: center; gap: 36px; overflow-x: auto; }
.subnav a { padding: 16px 4px; color: var(--muted); white-space: nowrap; }
.subnav a:hover { color: var(--blue); }

.product-matrix { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.matrix-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 310px; overflow: hidden; border-radius: 14px; background: #fff; box-shadow: 0 8px 24px rgba(18,55,84,.08); }
.matrix-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.matrix-card .copy { padding: 32px 30px; }
.matrix-card h3 { margin: 0 0 10px; font-size: 22px; }
.matrix-card p { color: var(--muted); font-size: 14px; }
.matrix-card ul { padding: 0; margin: 18px 0 0; list-style: none; color: #526270; font-size: 13px; }
.matrix-card li { margin: 7px 0; }
.matrix-card li::before { content: "—"; margin-right: 8px; color: var(--blue); }

.business-core-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.business-core { position: relative; padding: 36px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.business-core .index { display: block; margin-bottom: 45px; color: #8aa5b9; font: 700 13px/1 Arial; letter-spacing: .15em; }
.business-core h3 { margin: 0 0 12px; font-size: 22px; }
.business-core p { margin: 0; color: var(--muted); font-size: 14px; }
.business-core::after { content: ""; position: absolute; right: -35px; bottom: -35px; width: 110px; height: 110px; border: 18px solid #eaf2f7; border-radius: 50%; }

.scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.scene-card { position: relative; min-height: 280px; overflow: hidden; border-radius: 18px; }
.scene-card img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.scene-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,24,41,.85), transparent 65%); }
.scene-card h3 { position: absolute; z-index: 1; left: 24px; bottom: 18px; margin: 0; color: #fff; font-size: 19px; }
.scene-card:hover img { transform: scale(1.06); }

.about-profile { display: grid; grid-template-columns: .85fr 1.15fr; gap: 0; overflow: hidden; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.about-profile .copy { padding: 60px; }
.about-profile .copy h2 { margin: 0 0 22px; font-size: 38px; }
.about-profile .copy p { color: var(--muted); }
.about-profile img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 35px; }
.stat { padding: 18px; border-left: 3px solid var(--blue); background: #f3f6f8; }
.stat strong { display: block; color: var(--blue); font-size: 27px; line-height: 1; }
.stat span { color: var(--muted); font-size: 12px; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.timeline::before { content: ""; position: absolute; top: 25px; left: 5%; right: 5%; height: 2px; background: #cbd7e0; }
.timeline-item { position: relative; padding: 58px 20px 0; }
.timeline-item::before { content: ""; position: absolute; z-index: 1; top: 17px; left: 20px; width: 16px; height: 16px; border: 5px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px #b6c5d0; }
.timeline-item strong { color: var(--blue); font-size: 24px; }
.timeline-item h3 { margin: 7px 0; font-size: 17px; }
.timeline-item p { color: var(--muted); font-size: 13px; }

.news-list { display: grid; gap: 20px; }
.news-item { display: grid; grid-template-columns: 360px 1fr; overflow: hidden; border-radius: 14px; background: #fff; box-shadow: 0 8px 28px rgba(20,54,79,.08); }
.news-item img { width: 100%; height: 230px; object-fit: cover; }
.news-item .copy { padding: 34px 40px; }
.news-item time { color: var(--blue-bright); font-size: 13px; }
.news-item h3 { margin: 8px 0 12px; font-size: 23px; }
.news-item p { margin: 0; color: var(--muted); }

.process { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.process-item { position: relative; text-align: center; }
.process-item:not(:last-child)::after { content: "→"; position: absolute; top: 28px; right: -9px; color: #90a3b1; }
.process-icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 15px; border: 1px solid #d2dde5; border-radius: 50%; color: var(--blue); background: #fff; box-shadow: 0 8px 18px rgba(18,60,94,.1); font-size: 24px; }
.process-item h3 { margin: 0; font-size: 16px; }
.contact-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.contact-service { padding: 42px 32px; border-radius: 20px; text-align: center; background: #fff; box-shadow: 0 8px 30px rgba(20,55,82,.07); }
.contact-service .icon-orb { margin-inline: auto; }
.contact-service h3 { margin: 0 0 8px; font-size: 22px; }
.contact-service p { margin: 0; color: var(--muted); }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.contact-box { padding: 34px; border-radius: 18px; background: #fff; box-shadow: 0 8px 30px rgba(20,55,82,.07); }
.contact-box strong { display: block; margin-bottom: 9px; color: var(--blue); font-size: 13px; letter-spacing: .12em; }
.contact-box a, .contact-box span { font-size: 20px; font-weight: 700; }
.copy-button { margin-left: 10px; padding: 4px 10px; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); background: #fff; cursor: pointer; }
.map { position: relative; overflow: hidden; }
.map img { width: 100%; min-height: 460px; object-fit: cover; }
.map-card { position: absolute; top: 50%; left: calc(50% + 250px); width: 320px; padding: 28px; border-radius: 12px; background: rgba(255,255,255,.95); box-shadow: var(--shadow); transform: translateY(-50%); }
.map-card h3 { margin: 0 0 10px; color: var(--blue); }
.map-card p { margin: 0; color: var(--muted); }

.site-footer { padding: 68px 0 25px; color: rgba(255,255,255,.78); background: #184d7a; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 46px; }
.footer-brand .brand { min-width: 0; color: #fff; }
.footer-brand .brand-text strong { font-size: 17px; }
.footer-brand p { max-width: 390px; margin: 25px 0 0; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-grid h4 { margin: 0 0 18px; color: #fff; font-size: 15px; }
.footer-grid > div > a:not(.brand) { display: block; margin: 9px 0; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-grid > div > a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.45); font-size: 12px; }

@media (max-width: 1100px) {
  .brand { min-width: 290px; }
  .brand-text strong { font-size: 16px; }
  .main-nav { gap: 15px; }
  .language { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-cards { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .product-matrix { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 2fr repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .site-header { height: 70px; }
  .brand { min-width: 0; }
  .brand-mark { flex-basis: 37px; width: 37px; height: 37px; }
  .brand-mark i { top: 12px; left: 8px; }
  .brand-text strong { font-size: 14px; }
  .brand-text small { font-size: 6px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 70px; left: 0; right: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; max-height: 0; overflow: hidden; background: var(--blue-deep); transition: max-height .35s ease; }
  .main-nav.open { max-height: 480px; box-shadow: 0 20px 35px rgba(0,0,0,.22); }
  .main-nav a { padding: 15px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav a::after { display: none; }
  .main-nav .contact-link { margin: 12px 24px; text-align: center; }
  .hero-carousel { height: 500px; min-height: 500px; }
  .hero-slide img { object-position: 55% center; filter: brightness(.62); }
  .hero-mobile-copy { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 74px; display: block; color: #fff; }
  .hero-mobile-copy small { color: #76c9f6; letter-spacing: .12em; }
  .hero-mobile-copy h1 { max-width: 500px; margin: 9px 0 12px; font-size: clamp(32px, 9vw, 48px); line-height: 1.18; }
  .hero-mobile-copy p { max-width: 520px; margin: 0; color: rgba(255,255,255,.8); }
  .hero-arrow { display: none; }
  .page-hero, .page-hero img { min-height: 310px; }
  .page-hero img { object-position: center; }
  .intro-grid, .controller-showcase, .about-profile { grid-template-columns: 1fr; }
  .intro-image { order: -1; }
  .brand-cards, .business-core-grid, .scene-grid, .contact-services { grid-template-columns: 1fr; }
  .brand-card { min-height: 320px; }
  .controller-showcase .copy, .about-profile .copy { padding: 38px 26px; }
  .controller-showcase .visual { min-height: 350px; }
  .process { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .process-item:nth-child(3)::after { display: none; }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { top: 0; bottom: 0; left: 27px; width: 2px; height: auto; }
  .timeline-item { padding: 0 0 30px 65px; }
  .timeline-item::before { top: 5px; left: 19px; }
  .news-item { grid-template-columns: 1fr; }
  .news-item img { height: 260px; }
  .contact-info { grid-template-columns: 1fr; }
  .map-card { top: auto; left: 20px; right: 20px; bottom: 20px; width: auto; transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .brand-text strong { max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand-text small { display: none; }
  .hero-carousel { height: 460px; min-height: 460px; }
  .hero-slide img { object-position: 62% center; }
  .page-hero, .page-hero img { min-height: 230px; }
  .section-heading { margin-bottom: 34px; }
  .product-grid, .advantage-grid, .solution-cards { grid-template-columns: 1fr; }
  .product-card .media { height: 275px; }
  .spec-list { grid-template-columns: 1fr; }
  .funnel-row { grid-template-columns: .75fr 1.5fr .75fr; }
  .funnel-row .label { padding: 10px 3px; font-size: 11px; }
  .funnel-row:nth-child(2) .core { margin-inline: 12px; }
  .funnel-row:nth-child(3) .core { margin-inline: 24px; }
  .funnel-row:nth-child(4) .core { margin-inline: 34px; }
  .matrix-card { grid-template-columns: 1fr; }
  .matrix-card img { height: 260px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-item:nth-child(2n)::after { display: none; }
  .process-item:nth-child(3)::after { display: block; }
  .news-item .copy { padding: 26px; }
  .contact-box a, .contact-box span { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}


/* Semantic homepage rebuilt from the layered PSD design. */
.home-container { width: min(calc(100% - 12.5vw), 1552px); margin: 0 auto; }
.semantic-home-page .site-header { height: 88px; background: #244c73; box-shadow: none; }
.semantic-home-page .header-inner { width: 1680px; max-width: calc(100% - 120px); }
.site-header .brand-logo-image { display: block; width: 380px; height: auto; }
.semantic-home-page .main-nav { gap: 54px; font-size: 16px; }
.semantic-home-page .main-nav a { padding-block: 28px; }
.semantic-home-page .main-nav a::after { bottom: 18px; }
.semantic-home-page .language { font-size: 15px; }

.semantic-hero { position: relative; min-height: 620px; aspect-ratio: 1920 / 1021; overflow: hidden; color: #fff; background: #03223d url('../images/home/hero-background.jpg') center / cover no-repeat; }
.hero-copy { padding-top: clamp(58px, 5.9vw, 114px); }
.hero-brand-logo { width: clamp(350px, 31.25vw, 600px); height: auto; }
.hero-eyebrow { margin: clamp(44px, 4.8vw, 92px) 0 0; font-size: clamp(17px, 1.72vw, 33px); letter-spacing: .08em; text-transform: uppercase; }
.semantic-hero h1 { margin: clamp(26px, 2.7vw, 52px) 0 0; font-size: clamp(46px, 4.8vw, 92px); line-height: 1.14; letter-spacing: .015em; }
.semantic-hero h2 { margin: clamp(24px, 3vw, 58px) 0 0; font-size: clamp(27px, 2.35vw, 45px); font-weight: 400; }
.hero-summary { margin: clamp(24px, 2.6vw, 50px) 0 0; font-size: clamp(17px, 1.42vw, 27px); line-height: 2; }
.hero-pagination { position: absolute; left: 50%; bottom: 24px; display: flex; gap: 10px; transform: translateX(-50%); }
.hero-pagination i { width: 42px; height: 3px; background: rgba(255,255,255,.46); }
.hero-pagination i.active { background: #fff; }

.home-section { padding: clamp(70px, 6.7vw, 128px) 0; }
.home-section-heading { margin: 0 auto clamp(52px, 5.6vw, 108px); text-align: center; }
.home-section-heading h2 { margin: 0; color: #050505; font-size: clamp(34px, 2.95vw, 57px); line-height: 1.2; letter-spacing: .08em; }
.home-section-heading .lead { margin: clamp(28px, 2.1vw, 40px) 0 0; color: #101010; font-size: clamp(17px, 1.3vw, 25px); font-weight: 600; }
.home-section-heading .description { margin: clamp(24px, 2vw, 38px) 0 0; color: #545454; font-size: clamp(14px, 1.05vw, 20px); line-height: 2; text-align: left; }
.home-section-heading .description.centered { max-width: 1450px; margin-inline: auto; text-align: center; }
.home-section-heading.compact { margin-bottom: clamp(40px, 4vw, 76px); }

.brand-intro { background: #fff; }
.brand-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3.3vw, 64px); }
.brand-feature { position: relative; aspect-ratio: 476 / 592; overflow: hidden; color: #fff; background: #123b60; display: block; width: 100%; padding: 0; border: 0; text-align: left; cursor: pointer; font: inherit; }
.brand-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.brand-feature:hover img { transform: scale(1.035); }
.brand-feature-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,77,122,.98), rgba(23,77,122,0) 56%); }
.brand-feature-play { position: absolute; left: 50%; top: 42%; width: 64px; height: 64px; margin: -32px 0 0 -32px; border-radius: 50%; background: rgba(255,255,255,.92); box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.brand-feature-play::before { content: ""; position: absolute; left: 50%; top: 50%; width: 0; height: 0; margin: -10px 0 0 -6px; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #174d7a; }
.brand-feature-copy { position: absolute; left: 7%; right: 7%; bottom: 7%; display: flex; flex-direction: column; gap: 30px; }
.brand-feature-copy strong { font-size: clamp(23px, 1.7vw, 33px); font-style: normal; }
.brand-feature-copy em { font-size: clamp(15px, 1.15vw, 22px); font-style: normal; font-weight: 600; }

.video-modal { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: 24px; }
.video-modal[hidden] { display: none !important; }
.video-modal__backdrop { position: absolute; inset: 0; background: rgba(8, 18, 32, .78); }
.video-modal__dialog { position: relative; z-index: 1; width: min(1080px, 100%); background: #0b1c2e; color: #fff; border-radius: 12px; padding: 20px 20px 16px; box-shadow: 0 24px 80px rgba(0,0,0,.45); }
.video-modal__close { position: absolute; top: 10px; right: 12px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; }
.video-modal__title { margin: 0 40px 12px 0; font-size: clamp(18px, 1.4vw, 24px); font-weight: 600; }
.video-modal__player { display: block; width: 100%; max-height: min(70vh, 620px); background: #000; border-radius: 8px; }

.home-product-area {
  padding: clamp(60px, 5.5vw, 106px) 0 clamp(40px, 3.2vw, 64px);
  background: #e7e7e7;
  container-type: inline-size;
  container-name: product-area;
  /* Do not clip — robots/full-bleed must stay visible */
  overflow: visible;
}

/* Full-width chapters inside product area (content column, not past page-shell) */
.home-product-area > .home-container {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}
.product-area-title { margin-bottom: clamp(70px, 7vw, 134px); }
.product-chapter { padding: 0 0 clamp(95px, 8vw, 154px); }
.product-chapter:last-child { padding-bottom: 0; }
.product-chapter.platform-chapter {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: clamp(70px, 6.2vw, 120px) 0;
  background: #fff;
  box-sizing: border-box;
}
.product-chapter.platform-chapter > .chapter-heading,
.product-chapter.platform-chapter > .platform-layout {
  width: min(calc(100% - 12.5vw), 1552px);
  margin-left: auto;
  margin-right: auto;
}
.product-chapter.equipment-chapter {
  padding-top: clamp(72px, 6.5vw, 128px);
  padding-bottom: clamp(36px, 3vw, 56px);
}
.product-chapter.equipment-chapter .chapter-heading {
  margin-bottom: clamp(56px, 5.2vw, 100px);
}
.chapter-heading { margin-bottom: clamp(46px, 4.6vw, 88px); }
.chapter-heading h3 { margin: 0 0 clamp(25px, 2vw, 38px); font-size: clamp(24px, 1.92vw, 37px); letter-spacing: .03em; }
.chapter-heading p { margin: 0; color: #505050; font-size: clamp(14px, 1.03vw, 20px); line-height: 1.9; }

.robot-stage-wrap {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 12px;
  background-color: #dcdcdc;
  background-image: url("../images/home/stands-bg-all.png");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 100%;
  overflow: visible;
}
.robot-stage {
  position: relative;
  width: min(100%, 1552px);
  margin: 0 auto;
  aspect-ratio: 1925 / 1083;
  min-height: 0;
  padding: 0;
}
.robot-stage__bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.robot-item {
  position: absolute;
  z-index: 2;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 26%;
  transform: translateX(-50%);
  pointer-events: none;
}
.robot-item.is-left {
  left: 18.7%;
  bottom: 23.5%;
}
.robot-item.is-center {
  left: 50%;
  bottom: 39.5%;
  width: 30%;
  z-index: 3;
}
.robot-item.is-right {
  left: 81.3%;
  bottom: 23.7%;
}
.robot-item__body {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 14px rgba(24, 30, 36, .22));
}
.robot-item.is-center .robot-item__body {
  max-width: 400px;
}

.robot-kit-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); grid-template-rows: repeat(2, clamp(200px, 17vw, 325px)); gap: clamp(16px, 1.55vw, 30px); }
.kit-card { display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 0; overflow: hidden; border-radius: 14px; background: #fff; }
.kit-card img { max-width: 76%; max-height: 72%; object-fit: contain; }
.kit-card span, .kit-card strong { margin-top: 12px; font-size: clamp(13px, .95vw, 18px); font-style: normal; }
.kit-main { grid-row: span 2; }
.kit-main img { max-width: 88%; max-height: 78%; }
.kit-main strong { font-size: clamp(19px, 1.25vw, 24px); }

.controller-layout { display: grid; grid-template-columns: 1fr minmax(340px, 520px) 1fr; gap: 5%; align-items: center; min-height: 560px; }
.controller-device { display: flex; justify-content: center; }
.controller-device img { width: min(100%, 440px); filter: drop-shadow(0 25px 24px rgba(0,0,0,.16)); }
.controller-points { display: grid; gap: clamp(36px, 4.4vw, 85px); padding: 0; margin: 0; list-style: none; color: #303030; font-size: clamp(16px, 1.17vw, 22px); }
.controller-points.left { text-align: right; }
.controller-points li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.controller-points.left li { justify-content: flex-end; }
.controller-points.right li { justify-content: flex-start; }
.controller-points li .fa-solid {
  color: #225d8e;
  font-size: .95em;
  width: 1.15em;
  text-align: center;
}
.controller-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.2vw, 56px);
  max-width: 1240px;
  margin: clamp(48px, 4.5vw, 72px) auto 0;
}
.controller-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 18px 28px 18px 22px;
  border: 1px solid #3f6f94;
  background: transparent;
  box-sizing: border-box;
}
.controller-note__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  flex: 0 0 auto;
  color: #222;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.controller-note__title .fa-solid {
  color: #225d8e;
  font-size: .92em;
  width: 1.1em;
  text-align: center;
}
.controller-note__text {
  margin: 0;
  flex: 1 1 auto;
  color: #333;
  font-size: clamp(13px, .95vw, 16px);
  line-height: 1.55;
  text-align: left;
}

.platform-layout { display: grid; grid-template-columns: .95fr 2.1fr; gap: 6%; align-items: center; }
.platform-controller img { width: min(100%, 440px); }
.platform-controller > div { display: grid; gap: 16px; width: 75%; margin-top: 28px; }
.platform-controller span { padding: 14px 20px; border: 1px solid #3b7ca8; color: #245c88; text-align: center; background: rgba(255,255,255,.55); }
.platform-products .screens { width: 100%; }
.platform-device-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 38px; }
.platform-device-row img { width: 100%; height: 220px; padding: 12px; object-fit: contain; border: 1px solid #8aa9bf; background: rgba(255,255,255,.35); }

.equipment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(36px, 3.2vw, 60px); }
.equipment-grid > div { display: grid; place-items: center; min-height: clamp(220px, 19vw, 365px); overflow: hidden; border-radius: 28px; background: #fff; }
.equipment-grid img { width: 76%; height: 76%; object-fit: contain; }

.technology-area { padding: clamp(48px, 4vw, 80px) 0 clamp(90px, 7.5vw, 144px); background: #e7e7e7; }
.technology-grid {
  --tech-avatar: clamp(168px, 13.2vw, 248px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 4.2vw, 78px) clamp(36px, 3.6vw, 70px);
}
.technology-grid article {
  display: flex;
  align-items: center;
  background: transparent;
  overflow: visible;
}
.technology-grid img {
  position: relative;
  z-index: 2;
  display: block;
  width: var(--tech-avatar);
  height: var(--tech-avatar);
  flex: 0 0 var(--tech-avatar);
  object-fit: cover;
  border-radius: 50%;
  margin-right: calc(var(--tech-avatar) * -0.5);
  background: #111;
}
.technology-grid article div,
.technology-grid .tech-panel {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  height: var(--tech-avatar);
  min-height: var(--tech-avatar);
  max-height: var(--tech-avatar);
  padding: 0 clamp(28px, 2.6vw, 44px) 0 calc(var(--tech-avatar) * 0.56);
  background: #fff;
  box-sizing: border-box;
}
.technology-grid h3 { margin: 0 0 14px; color: #1a1a1a; font-size: clamp(17px, 1.15vw, 22px); font-weight: 700; }
.technology-grid p { margin: 0; color: #707070; font-size: clamp(13px, .85vw, 16px); line-height: 1.8; }

.core-advantage-block { padding-top: clamp(90px, 8vw, 154px); }
.core-advantage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 4vw, 78px); }
.core-advantage-grid article { display: grid; grid-template-columns: clamp(145px, 14.75vw, 283px) 1fr; align-items: center; min-height: clamp(210px, 15vw, 290px); background: #fff; }
.core-advantage-grid img { width: 100%; height: 100%; object-fit: cover; }
.core-advantage-grid article div { padding: 26px 42px; }
.core-advantage-grid h3 { margin: 0 0 16px; font-size: clamp(17px, 1.15vw, 22px); }
.core-advantage-grid p { margin: 0; color: #676767; font-size: clamp(13px, .85vw, 16px); line-height: 1.8; }

.application-advantage { padding-top: clamp(100px, 8.5vw, 164px); }
.application-map {
  --indent-1: clamp(6px, 0.6vw, 12px);
  --indent-2: clamp(18px, 2vw, 36px);
  --indent-3: clamp(30px, 3.4vw, 58px);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px) 1.15fr;
  align-items: stretch;
  gap: clamp(36px, 4vw, 72px);
  max-width: 1280px;
  margin: 0 auto;
}
.map-copy {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  margin: 0;
}
.map-copy p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  color: #4a4a4a;
  font-size: clamp(14px, .98vw, 18px);
  line-height: 1.7;
}
.map-copy.left { text-align: right; }
.map-copy.right { text-align: left; }
.map-copy em {
  display: inline;
  font-style: normal;
  font-weight: 700;
  color: #2a6ea0;
}
.map-copy .map-lead {
  white-space: nowrap;
}
.map-copy.left p {
  white-space: nowrap;
}
/* Text follows funnel slant toward center */
.map-copy.left p:nth-child(1) { transform: translateX(var(--indent-1)); }
.map-copy.left p:nth-child(2) { transform: translateX(var(--indent-2)); }
.map-copy.left p:nth-child(3) { transform: translateX(var(--indent-3)); }
.map-copy.right p:nth-child(1) { transform: translateX(calc(var(--indent-1) * -1)); }
.map-copy.right p:nth-child(2) { transform: translateX(calc(var(--indent-2) * -1)); }
.map-copy.right p:nth-child(3) { transform: translateX(calc(var(--indent-3) * -1)); }
.funnel-graphic {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  min-height: clamp(360px, 34vw, 520px);
  color: #fff;
  background: #1e4f78;
  clip-path: polygon(0 0, 100% 0, 62% 100%, 38% 100%);
  overflow: hidden;
}
.funnel-graphic div {
  display: grid;
  place-items: center;
  font-size: clamp(22px, 1.7vw, 32px);
  font-weight: 700;
  letter-spacing: .18em;
  border-bottom: 2px solid #fff;
  box-sizing: border-box;
}
.funnel-graphic div:last-child { border-bottom: 0; }
.technology-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1180px;
  margin: clamp(64px, 6vw, 100px) auto 0;
  background: transparent;
  clip-path: none;
}
.technology-tabs span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 14px 18px 14px 28px;
  color: #333;
  font-size: clamp(13px, .95vw, 16px);
  font-weight: 600;
  letter-spacing: .06em;
  background: #ffffff;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
  box-sizing: border-box;
}
.technology-tabs span + span { margin-left: -10px; }
.technology-tabs span.is-primary {
  color: #fff;
  background: #1e4f78;
  z-index: 1;
}
.technology-tabs span:first-child {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  padding-left: 18px;
}
.technology-tabs span:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 18px 50%);
  padding-right: 18px;
}

.solutions-area { padding: clamp(90px, 7.6vw, 146px) 0 clamp(110px, 8vw, 154px); background: #e7e7e7; }
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 4.8vw, 88px) clamp(28px, 3vw, 56px);
}
.solution-panel {
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: transparent;
}
.solution-panel > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.solution-panel > div {
  position: relative;
  flex: 1 1 auto;
  min-height: clamp(200px, 15vw, 280px);
  margin-top: 0;
  padding: clamp(32px, 2.8vw, 48px) clamp(28px, 2.8vw, 48px) clamp(28px, 2.6vw, 44px);
  color: #fff;
  background: #1e4f78;
  box-sizing: border-box;
}
.solution-panel h3 {
  margin: 0 0 18px;
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 700;
  letter-spacing: .04em;
}
.solution-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(13px, .9vw, 16px);
  line-height: 1.9;
}

@media (max-width: 1100px) {
  .semantic-home-page .site-header { height: 82px; }
  .semantic-home-page .header-inner { width: min(calc(100% - 40px), var(--container)); }
  .site-header .brand-logo-image { width: 280px; }
  .semantic-home-page .main-nav { gap: 18px; font-size: 13px; }
  .semantic-hero { min-height: 600px; aspect-ratio: auto; }
  .robot-kit-grid { grid-template-columns: 1.5fr repeat(2, 1fr); grid-template-rows: repeat(3, 230px); }
  .kit-main { grid-row: span 3; }
  .controller-layout { grid-template-columns: 1fr 360px 1fr; }
  .platform-device-row img { height: 160px; }
}

@media (max-width: 820px) {
  .home-container { width: min(calc(100% - 32px), 680px); }
  .semantic-home-page .site-header { height: 70px; }
  .site-header .brand-logo-image { width: 230px; }
  .semantic-hero { min-height: 560px; background-position: 62% center; }
  .semantic-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,28,50,.92), rgba(3,28,50,.25)); }
  .hero-copy { position: relative; z-index: 1; padding-top: 62px; }
  .hero-brand-logo { width: 300px; }
  .hero-eyebrow { margin-top: 55px; font-size: 12px; }
  .semantic-hero h1 { font-size: 38px; }
  .semantic-hero h2 { font-size: 24px; }
  .hero-summary { font-size: 15px; line-height: 1.8; }
  .home-section { padding: 65px 0; }
  .home-section-heading { margin-bottom: 42px; }
  .home-section-heading h2 { font-size: 32px; }
  .home-section-heading .lead { font-size: 16px; }
  .home-section-heading .description { font-size: 14px; text-align: left; }
  .brand-feature-grid { grid-template-columns: 1fr; }
  .brand-feature { aspect-ratio: 4 / 4.3; }
  .home-product-area { padding: 65px 0 36px; }
  .product-area-title { margin-bottom: 62px; }
  .product-chapter { padding-bottom: 80px; }
  .chapter-heading { margin-bottom: 38px; }
  .chapter-heading h3 { font-size: 24px; }
  .chapter-heading p { font-size: 14px; }
  .robot-stage {
    width: min(100%, 1552px);
    aspect-ratio: 1925 / 1083;
  }
  .robot-item.is-center {
    transform: translateX(-50%);
  }
  .robot-kit-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .kit-main { grid-column: 1 / -1; grid-row: auto; min-height: 330px; }
  .kit-card { min-height: 210px; }
  .controller-layout { grid-template-columns: 1fr; gap: 35px; }
  .controller-points { grid-template-columns: repeat(3, 1fr); gap: 8px; order: 2; font-size: 13px; text-align: center !important; }
  .controller-device { order: 1; }
  .controller-layout .right { display: none; }
  .controller-notes { grid-template-columns: 1fr; }
  .controller-note { min-height: 72px; padding: 16px 20px; }
  .platform-layout { grid-template-columns: 1fr; gap: 50px; }
  .platform-controller { text-align: center; }
  .platform-controller > div { width: 100%; }
  .platform-device-row { grid-template-columns: 1fr 1fr; }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .equipment-grid > div { min-height: 210px; border-radius: 16px; }
  .technology-area { padding: 40px 0 75px; }
  .technology-grid, .core-advantage-grid { grid-template-columns: 1fr; }
  .technology-grid { --tech-avatar: 130px; }
  .technology-grid img { margin-right: calc(var(--tech-avatar) * -0.5); }
  .core-advantage-grid article { grid-template-columns: 130px 1fr; min-height: 180px; }
  .technology-grid article div,
  .technology-grid .tech-panel {
    height: var(--tech-avatar);
    min-height: var(--tech-avatar);
    max-height: var(--tech-avatar);
    padding: 0 20px 0 calc(var(--tech-avatar) * 0.56);
  }
  .core-advantage-grid article div { padding: 20px; }
  .application-map {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .map-copy {
    grid-template-rows: none;
    gap: 16px;
  }
  .map-copy.left,
  .map-copy.right { text-align: center; font-size: 13px; }
  .map-copy.left p,
  .map-copy.right p { transform: none; padding-left: 0; padding-right: 0; }
  .map-copy.left { order: 2; }
  .funnel-graphic {
    order: 1;
    width: min(78%, 360px);
    min-height: 320px;
    margin: 0 auto;
  }
  .map-copy.right { order: 3; }
  .technology-tabs { margin-top: 42px; }
  .technology-tabs span { padding: 12px 8px 12px 20px; font-size: 11px; }
  .solutions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .semantic-hero { min-height: 520px; }
  .hero-brand-logo { width: 265px; }
  .semantic-hero h1 { font-size: 34px; }
  .semantic-hero h2 { font-size: 21px; }
  .hero-summary br { display: none; }
  .brand-feature-copy { gap: 18px; }
  .robot-kit-grid { gap: 12px; }
  .kit-card { min-height: 175px; }
  .kit-main { min-height: 290px; }
  .equipment-grid { gap: 24px; }
  .equipment-grid > div { min-height: 170px; }
  .technology-grid { --tech-avatar: 105px; }
  .technology-grid img { margin-right: calc(var(--tech-avatar) * -0.5); }
  .core-advantage-grid article { grid-template-columns: 105px 1fr; min-height: 160px; }
  .technology-grid article div,
  .technology-grid .tech-panel {
    height: var(--tech-avatar);
    min-height: var(--tech-avatar);
    max-height: var(--tech-avatar);
    padding: 0 14px 0 calc(var(--tech-avatar) * 0.56);
  }
  .core-advantage-grid article div { padding: 14px; }
  .technology-grid h3, .core-advantage-grid h3 { margin-bottom: 8px; font-size: 15px; }
  .technology-grid p, .core-advantage-grid p { font-size: 12px; }
  .map-copy { font-size: 12px; }
  .technology-tabs span { font-size: 10px; min-height: 44px; }
  .solution-panel > div { min-height: 0; }
}

/* PSD-layered inner pages */
.inner-container { width: min(calc(100% - 12.5vw), 1676px); margin: 0 auto; }
.inner-design-page .site-header { height: 88px; background: #244c73; box-shadow: none; }
.inner-design-page .header-inner { width: 1680px; max-width: calc(100% - 120px); }
.inner-design-page .main-nav { gap: 54px; font-size: 16px; }
.design-page-hero { position: relative; overflow: hidden; color: #fff; background-position: center; background-size: cover; }
.design-page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; }
.design-page-hero .hero-content, .hero-center-copy { position: relative; z-index: 1; }
.inner-hero-logo { display: block; width: clamp(360px, 31.25vw, 600px); height: auto; }
.inner-heading { max-width: 1500px; margin: 0 auto clamp(56px, 5vw, 96px); text-align: center; }
.inner-heading h2 { margin: 0 0 clamp(24px, 2.1vw, 40px); color: #0b0b0b; font-size: clamp(35px, 2.95vw, 57px); line-height: 1.2; letter-spacing: .06em; }
.inner-heading p { margin: 0; color: #565656; font-size: clamp(15px, 1.03vw, 20px); line-height: 1.9; }
.inner-section { padding: clamp(90px, 7.5vw, 144px) 0; }
.inner-gray { background: #e7e7e7; }

/* Product center */
.product-design-hero { min-height: 700px; aspect-ratio: 1920 / 1021; color: #14181e; background-image: url('../images/hero-products.jpg'); }
.product-design-hero::before { background: linear-gradient(90deg,#f8f8f8 0%,#f8f8f8 37%,rgba(248,248,248,.97) 46%,rgba(248,248,248,.2) 72%,transparent 82%); }
.product-hero-content { padding-top: clamp(72px, 6.4vw, 123px); }
.product-hero-content .blue-logo { width: clamp(350px, 24vw, 460px); filter: brightness(0) saturate(100%) invert(28%) sepia(43%) saturate(1108%) hue-rotate(164deg) brightness(90%); }
.product-hero-content h1 { margin: clamp(52px, 5vw, 96px) 0 8px; font-size: clamp(52px, 4vw, 78px); line-height: 1.1; }
.product-hero-content h2 { margin: 0 0 36px; font-size: clamp(34px, 2.8vw, 54px); font-weight: 400; }
.product-hero-content p { margin: 0; color: #616161; font-size: clamp(18px, 1.3vw, 25px); line-height: 2; }
.inner-intro { padding: clamp(100px, 8vw, 154px) 0; text-align: center; background: #f1f1f1 url('../images/products/intro-background.jpg') center / cover no-repeat; }
.inner-intro h2 { margin: 0 0 46px; font-size: clamp(34px, 2.4vw, 46px); }
.inner-intro p { margin: 0 auto; max-width: 1600px; color: #585858; font-size: clamp(15px, 1vw, 19px); line-height: 2; }
.controller-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.controller-product-grid article { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 480px; background: #fff; }
.controller-product-grid img { width: 68%; height: 320px; object-fit: contain; }
.controller-product-grid h3 { margin: 24px 0 0; font-size: 21px; }
.product-robot-matrix { padding-top: 40px; }
.robot-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.robot-product-grid article { padding: 0 70px 60px; text-align: center; background: #fff; }
.robot-product-grid .visual { display: grid; place-items: center; height: 500px; }
.robot-product-grid img { max-width: 88%; max-height: 440px; object-fit: contain; }
.robot-product-grid h3 { margin: 0 0 22px; font-size: 26px; }
.robot-product-grid p { margin: 0; color: #6a6a6a; font-size: 17px; line-height: 1.8; }
.quadruped-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.quadruped-card-grid article { position: relative; min-height: 760px; padding: 46px 42px; background: #fff; }
.quadruped-card-grid img { display: block; width: 80%; height: 450px; margin: 0 auto; object-fit: contain; }
.quadruped-card-grid h3 { margin: 15px 0 20px; font-size: 24px; }
.quadruped-card-grid ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; padding: 0; margin: 0; list-style: none; color: #4f4f4f; }
.quadruped-card-grid li::before { content: "·"; margin-right: 8px; }
.quadruped-card-grid a { position: absolute; right: 38px; bottom: 38px; padding: 12px 30px; border-radius: 6px; color: #fff; background: #225e8e; }
.model-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.server-visual { display: grid; place-items: center; min-height: 500px; background: #fff; }
.server-visual img { width: 82%; }
.model-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px; background: #fff; }
.model-copy h3 { margin: 0 0 12px; font-size: 20px; }
.model-copy p { margin: 0; color: #666; line-height: 1.8; }
.model-scenes { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; margin-top: 40px; }
.model-scenes figure { margin: 0; overflow: hidden; background: #fff; }
.model-scenes img { width: 100%; aspect-ratio: 402 / 270; object-fit: cover; }
.model-scenes figcaption { padding: 20px; color: #fff; text-align: center; background: #255d87; }
.cloud-gallery { padding-top: 30px; }
.cloud-platform {
  display: grid;
  gap: 28px;
}
.cloud-platform__row {
  display: grid;
  gap: 28px;
  align-items: stretch;
}
.cloud-platform__row--top {
  grid-template-columns: repeat(4, 1fr);
}
.cloud-platform__row--top .cloud-process-card {
  grid-column: span 2;
}
.cloud-platform__row--bottom {
  grid-template-columns: repeat(4, 1fr);
}
.cloud-shot {
  margin: 0;
  overflow: hidden;
  background: #0d1a28;
}
.cloud-shot img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 409 / 241;
  object-fit: cover;
  object-position: center top;
}
.cloud-process-card {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 28px 36px;
  background: #fff;
  box-sizing: border-box;
}
.cloud-process-card p {
  margin: 0;
  color: #111;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  letter-spacing: .02em;
}
.cloud-gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.cloud-gallery-grid img { width: 100%; aspect-ratio: 409 / 241; object-fit: cover; }
.cloud-process { margin: 50px 0 0; padding: 32px; font-size: 24px; font-weight: 700; text-align: center; background: #fff; }

/* Core business */
.business-design-hero { min-height: 700px; aspect-ratio: 1920 / 1021; background-image: url('../images/business/hero-background.jpg'); }
.business-design-hero::before { background: linear-gradient(90deg,rgba(5,23,39,.72),rgba(5,23,39,.18)); }
.business-hero-content { padding-top: clamp(90px, 8vw, 154px); }
.business-hero-content .hero-label { margin: 80px 0 32px; color: #8ec8ee; font-size: 18px; letter-spacing: .15em; }
.business-hero-content h1 { margin: 0; font-size: clamp(48px, 3.8vw, 73px); line-height: 1.2; }
.business-hero-content h1 span { font-size: .78em; font-weight: 400; }
.business-hero-content > p:last-child { max-width: 1020px; margin: 55px 0 0; font-size: 20px; line-height: 2; }
.business-core-section { background: #ededed; }
.business-icon-matrix { max-width: 1480px; margin: 0 auto 80px; text-align: center; }
.business-icon-matrix img { max-width: 100%; }
.business-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.business-detail-grid article { min-height: 620px; padding: 80px; background: #fff; }
.business-detail-grid span { color: #4e7392; font: 17px/1.2 Arial,sans-serif; letter-spacing: .08em; }
.business-detail-grid h3 { margin: 32px 0 18px; font-size: 34px; }
.business-detail-grid strong { display: block; margin-bottom: 38px; font-size: 20px; line-height: 1.7; }
.business-detail-grid p { color: #666; font-size: 17px; line-height: 2; }
.technology-base-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.technology-base-cards article { min-height: 290px; padding: 72px 36px 36px; text-align: center; background: #fff; }
.technology-base-cards h3 { margin: 0 0 25px; font-size: 22px; }
.technology-base-cards p { color: #666; line-height: 1.8; }
.technology-base-image { width: 100%; margin-top: 35px; }
.payload-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.payload-grid article { display: flex; flex-direction: column; align-items: center; min-height: 365px; padding: 45px 30px; background: #fff; }
.payload-grid h3 { margin: 0 0 28px; font-size: 20px; }
.payload-grid img { max-width: 80%; height: 240px; object-fit: contain; }
.industry-scene-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; }
.industry-scene-grid article { overflow: hidden; border-radius: 0 0 22px 22px; background: #fff; }
.industry-scene-grid img { width: 100%; height: 260px; object-fit: cover; }
.industry-scene-grid h3 { margin: 0; padding: 28px; text-align: center; font-size: 21px; }
.case-block { margin-bottom: 54px; padding: 70px; border-radius: 22px; background: #fff; }
.case-block h3 { margin: 0 0 42px; font-size: 26px; }
.case-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.case-gallery img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }

/* About us */
.about-design-hero { min-height: 620px; aspect-ratio: 1920 / 850; background-image: url('../images/about/hero-background.jpg'); }
.about-design-hero::before { background: rgba(10,42,68,.14); }
.hero-center-copy { position: absolute; top: 50%; left: 50%; text-align: center; transform: translate(-50%,-50%); }
.about-hero-mark, .contact-hero-mark { margin-bottom: 20px; font-size: 70px; }
.hero-center-copy h1 { margin: 0; font-size: 62px; }
.hero-center-copy p { margin: 16px 0 0; font-size: 28px; letter-spacing: .12em; text-transform: uppercase; }
.about-profile-section { display: grid; grid-template-columns: 160px 690px 1fr; min-height: 935px; background: #fff; }
.about-side-nav { padding: 300px 30px 0 50px; color: #888; font-size: 14px; line-height: 3.3; background: transparent; }
.about-profile-copy { padding: 300px 90px 80px 70px; }
.about-profile-copy h2 { margin: 0 0 45px; font-size: 34px; }
.about-profile-copy p { margin: 0; color: #555; font-size: 18px; line-height: 2.05; }
.about-profile-section > img { width: 100%; height: 100%; object-fit: cover; }
.about-timeline-section { padding: 100px 0; background: #e7e7e7; }
.about-two-column { display: grid; grid-template-columns: 640px 1fr; gap: 80px; align-items: center; }
.blueprint-panel { min-height: 760px; padding: 20px; background: #245a86; }
.blueprint-panel img { width: 100%; height: 720px; object-fit: contain; }
.timeline-content h2 { margin: 0 0 70px; font-size: 34px; }
.timeline-psd { display: grid; grid-template-columns: repeat(3,1fr); gap: 55px 42px; }
.timeline-psd article { border-left: 2px solid #aebdca; padding-left: 26px; }
.timeline-psd strong { color: #225f90; font-size: 30px; }
.timeline-psd h3 { margin: 8px 0 12px; }
.timeline-psd p { margin: 0; color: #666; line-height: 1.8; }
.about-build-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.about-build-grid article { display: flex; flex-direction: column; background: #fff; }
.about-build-grid article div { min-height: 250px; padding: 44px; }
.about-build-grid h3 { margin: 0 0 22px; }
.about-build-grid p { color: #666; line-height: 1.8; }
.about-build-grid img { width: 100%; height: 300px; object-fit: cover; }
.honor-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.honor-grid span, .qualification-grid span { display: flex; align-items: center; min-height: 100px; padding: 30px 42px; font-size: 18px; background: #fff; }
.honor-grid span::before, .qualification-grid span::before { content: "✦"; margin-right: 22px; color: #2b6e9d; font-size: 30px; }
.qualification-title { margin: 80px 0 32px; text-align: center; font-size: 30px; }
.qualification-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.about-tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.about-tech-grid article { display: grid; grid-template-columns: 250px 1fr; align-items: center; background: #fff; }
.about-tech-grid img { width: 250px; height: 250px; object-fit: cover; border-radius: 50%; }
.about-tech-grid article div { padding: 30px 42px; }
.about-tech-grid p { color: #666; line-height: 1.8; }
.data-engine { margin-top: 120px; }
.data-engine > header { text-align: center; }
.data-engine > header h2 { font-size: 36px; }
.data-engine > header p { color: #666; }
.data-engine-main { display: grid; grid-template-columns: 1fr 1fr; margin-top: 55px; background: #fff; }
.data-engine-main img { width: 100%; height: 500px; object-fit: cover; }
.data-engine-main div { padding: 100px 70px; }
.data-engine-main h3 { font-size: 28px; }
.data-engine-main p { color: #666; line-height: 2; }
.data-process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 30px; }
.data-process-grid article { min-height: 300px; padding: 45px 32px; text-align: center; background: #fff; }
.data-process-grid img { height: 80px; margin: 0 auto 24px; }
.data-process-grid p { color: #666; line-height: 1.8; }
.about-news-list { display: grid; gap: 45px; }
.about-news-list article { display: grid; grid-template-columns: 760px 1fr; min-height: 480px; background: #fff; }
.about-news-list img { width: 100%; height: 100%; object-fit: cover; }
.about-news-list div { padding: 90px 75px; }
.about-news-list h3 { font-size: 30px; line-height: 1.5; }
.about-news-list p { color: #666; line-height: 2; }
.about-news-list a { color: #225f90; font-weight: 700; }
.partner-panels { display: grid; grid-template-columns: 1fr; min-height: 0; background: #fff; }
.partner-panels img { width: 100%; height: auto; padding: 48px 60px; object-fit: contain; }
.partner-panels img + img { border-left: 0; }

/* Contact */
.contact-design-hero { min-height: 620px; aspect-ratio: 1920 / 850; background-image: url('../images/contact/hero-background.jpg'); }
.contact-design-hero::before { background: rgba(19,67,105,.28); }
.contact-hero-mark { padding: 12px 45px; border-radius: 55px; font-size: 42px; background: rgba(255,255,255,.28); }
.contact-service-section { padding: 120px 0 100px; background: #ededed; }
.contact-process { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; margin-bottom: 85px; align-items: start; }
.contact-process article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-process__icon {
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  margin: 0 auto 18px;
  flex: 0 0 105px;
}
.contact-process__icon img,
.contact-process img {
  display: block;
  width: 105px;
  height: 105px;
  object-fit: contain;
  object-position: center;
}
.contact-process span { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 50%; color: #215f91; background: #fff; box-shadow: 0 8px 18px rgba(0,0,0,.12); font-size: 26px; }
.contact-process .contact-process__icon {
  width: auto;
  height: auto;
  margin: 0 auto 18px;
  border-radius: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  font-size: inherit;
}
.contact-process h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
.contact-service-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.contact-service-cards article { min-height: 375px; padding: 70px 45px 45px; border-radius: 35px; text-align: center; background: #fff; }
.contact-service-cards img { width: 180px; height: 125px; margin: 0 auto 35px; object-fit: contain; }
.contact-service-cards h3 { margin: 0 0 15px; font-size: 26px; }
.contact-service-cards p { color: #666; font-size: 18px; }
.contact-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; margin-top: 70px; }
.contact-detail-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  min-height: 370px;
  padding: 56px 40px;
  border-radius: 40px;
  text-align: center;
  background: #fff;
}
.contact-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.contact-detail-grid a {
  color: #111;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
  word-break: break-all;
}
.contact-detail-grid p {
  margin: 0;
  color: #111;
  font-size: 22px;
  line-height: 1.55;
}
.contact-detail-grid strong { display: block; margin-bottom: 24px; color: #245f8d; }
.contact-detail-grid button { margin-left: 15px; border: 1px solid #bbb; background: #fff; cursor: pointer; }
.contact-round-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  background: #1d4477;
  font-size: 18px;
  flex: 0 0 48px;
}
.contact-round-icon i { line-height: 1; }
.contact-map-section { position: relative; height: 883px; overflow: hidden; }
.contact-map-section > img { width: 100%; height: 100%; object-fit: cover; }
.contact-map-marker { position: absolute; top: 43%; left: 59%; display: flex; flex-direction: column; align-items: center; }
.contact-map-marker img { width: 110px; }
.contact-map-marker strong { margin-top: 10px; color: #1d5e8e; font-size: 24px; }
.contact-map-marker span { color: #666; }

/* 1920px PSD faithful remake */
.inner-design-page {
  min-width: 1180px;
  color: #171717;
  background: #e4e4e4;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.inner-design-page .container,
.inner-design-page .inner-container {
  width: 1660px;
  max-width: calc(100% - 120px);
  margin-inline: auto;
}

.inner-design-page .site-header,
.home-design-page .site-header,
.semantic-home-page .site-header {
  height: 88px;
  color: #fff;
  background: #244c73;
  box-shadow: none;
}

.inner-design-page .header-inner,
.home-design-page .header-inner,
.semantic-home-page .header-inner {
  width: 1680px;
  max-width: calc(100% - 120px);
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr auto;
  align-items: center;
  column-gap: 48px;
}

.inner-design-page .brand,
.home-design-page .brand,
.semantic-home-page .brand {
  min-width: 0;
}

.inner-design-page .brand-logo-image,
.home-design-page .brand-logo-image,
.semantic-home-page .brand-logo-image {
  width: 380px;
  height: auto;
  object-fit: contain;
}

.inner-design-page .main-nav,
.home-design-page .main-nav,
.semantic-home-page .main-nav {
  gap: 54px;
  font-size: 16px;
  justify-content: center;
}

.inner-design-page .main-nav > a,
.home-design-page .main-nav > a,
.semantic-home-page .main-nav > a {
  padding: 28px 0;
}

.inner-design-page .main-nav > a::after,
.home-design-page .main-nav > a::after,
.semantic-home-page .main-nav > a::after {
  bottom: 18px;
}

.inner-design-page .header-actions,
.home-design-page .header-actions,
.semantic-home-page .header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.inner-design-page .contact-link,
.home-design-page .contact-link,
.semantic-home-page .contact-link {
  min-width: 112px;
  padding: 7px 18px;
  text-align: center;
}

.inner-design-page .language,
.home-design-page .language,
.semantic-home-page .language {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
}

.language .fa-solid,
.language .fa-language,
.fa-solid,
.fa-brands,
.fa-regular {
  font-family: "Font Awesome 6 Free" !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
}
.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}
.fa-solid {
  font-weight: 900 !important;
}
.fa-regular {
  font-weight: 400 !important;
}
.language .fa-solid {
  display: inline-block;
  font-size: 16px;
  width: 1em;
  text-align: center;
}

.globe-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  flex: 0 0 18px;
}

.globe-icon::before,
.globe-icon::after {
  content: "";
  position: absolute;
  inset: 4px 9px;
  border: 1px solid currentColor;
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
}

.globe-icon::after {
  inset: 14px 2px auto;
  height: 1px;
  border: 0;
  background: currentColor;
}

.inner-design-page .design-page-hero {
  background-position: center;
  background-size: cover;
}

.inner-design-page .inner-heading {
  max-width: 1660px;
  margin: 0 auto 72px;
  text-align: center;
}

.inner-design-page .inner-heading h2,
.about-section > h2,
.about-section > header h2 {
  margin: 0 0 34px;
  color: #060606;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .04em;
}

.inner-design-page .inner-heading p,
.about-section > header p {
  margin: 0;
  color: #626262;
  font-size: 17px;
  line-height: 2;
}

.inner-design-page .site-footer,
.home-design-page .site-footer,
.semantic-home-page .site-footer {
  min-height: 650px;
  padding: 62px 0 160px;
  color: #fff;
  background: #275987;
}

.footer-inner {
  width: 1250px;
  max-width: calc(100% - 160px);
  min-height: 430px;
  margin: 0 auto;
  padding: 38px 0 70px;
  border-top: 1px solid rgba(255,255,255,.34);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr 1.25fr .9fr;
  gap: 78px;
  width: 100%;
  margin: 0;
}

.site-footer .footer-grid > div {
  min-width: 0;
}

.site-footer h4 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.site-footer a {
  display: block;
  margin: 0 0 14px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  line-height: 1.45;
}

/* Product page */
.product-remake-page .product-design-hero {
  min-height: 0;
  height: 1021px;
  aspect-ratio: auto;
}

.product-remake-page .product-design-hero::before {
  background: linear-gradient(90deg,#f7f7f7 0%,#f7f7f7 39%,rgba(247,247,247,.96) 47%,rgba(247,247,247,.08) 74%,transparent 83%);
}

.product-remake-page .product-hero-content {
  padding-top: 120px;
}

.product-remake-page .product-hero-content .blue-logo {
  width: 530px;
}

.product-remake-page .product-hero-content h1 {
  margin: 90px 0 12px;
  font-size: 78px;
  letter-spacing: .04em;
}

.product-remake-page .product-hero-content h2 {
  margin-bottom: 50px;
  font-size: 52px;
}

.product-remake-page .product-hero-content p {
  color: #626262;
  font-size: 24px;
  line-height: 2.05;
}

.product-remake-page .inner-intro {
  min-height: 420px;
  padding: 116px 0 70px;
}

.product-remake-page .inner-intro h2 {
  margin-bottom: 34px;
  font-size: 42px;
}

.product-remake-page .inner-intro p {
  max-width: 1650px;
  font-size: 16px;
  line-height: 2.1;
}

.product-remake-page .inner-section {
  padding: 105px 0;
  background: #e5e5e5;
}

.product-remake-page .controller-product-grid,
.product-remake-page .robot-product-grid,
.product-remake-page .quadruped-card-grid {
  gap: 30px;
}

.product-remake-page .controller-product-grid article {
  min-height: 480px;
}

.product-remake-page .controller-product-grid img {
  width: 68%;
  height: 320px;
}

.product-remake-page .robot-product-grid article {
  min-height: 720px;
  padding: 30px 80px 65px;
}

.product-remake-page .robot-product-grid .visual {
  height: 500px;
}

.product-remake-page .quadruped-card-grid article {
  min-height: 740px;
}

.product-remake-page .quadruped-card-grid img {
  height: 460px;
}

.product-remake-page .model-overview,
.product-remake-page .model-scenes,
.product-remake-page .cloud-platform {
  gap: 30px;
}

.product-remake-page .cloud-platform__row {
  gap: 30px;
}

.product-remake-page .cloud-shot,
.product-remake-page .cloud-process-card {
  border-radius: 0;
}

.product-remake-page .cloud-shot img {
  aspect-ratio: 16 / 10;
}

.product-remake-page .cloud-process-card p {
  font-size: 22px;
  line-height: 1.85;
}

/* Business page */
.business-remake-page .business-design-hero {
  min-height: 0;
  height: 1021px;
  aspect-ratio: auto;
}

.business-remake-page .business-design-hero::before {
  background: rgba(2,18,31,.52);
}

.business-remake-page .business-hero-content {
  padding-top: 98px;
}

.business-remake-page .business-hero-content .inner-hero-logo {
  width: 600px;
}

.business-remake-page .business-hero-content .hero-label {
  display: inline-flex;
  align-items: center;
  min-width: 600px;
  margin: 158px 0 48px;
  padding: 14px 24px;
  border: 1px solid rgba(55,111,255,.72);
  color: #fff;
  font-size: 27px;
  letter-spacing: .12em;
  background: rgba(9,43,91,.36);
}

.business-remake-page .business-hero-content .hero-label::before {
  content: "■";
  margin-right: 18px;
  color: #4f8fff;
  font-size: 16px;
}

.business-remake-page .business-hero-content h1 {
  font-size: 68px;
}

.business-remake-page .business-hero-content h1 span {
  font-size: 50px;
}

.business-remake-page .business-hero-content .hero-summary {
  max-width: 1200px;
  margin-top: 100px;
  font-size: 26px;
  line-height: 2.2;
}

.business-core-section,
.technology-base-section,
.payload-section,
.scene-solutions,
.cases-section {
  padding: 120px 0;
  background: #e4e4e4;
}

.business-core-icons {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 90px;
  row-gap: 54px;
  margin: 0 70px 110px;
}

.business-core-icons article {
  text-align: center;
}

.business-core-icons img {
  width: 350px;
  height: 300px;
  margin: 0 auto;
  object-fit: contain;
}

.business-core-icons h3 {
  margin: 20px 0 0;
  color: #393939;
  font-size: 41px;
}

.business-remake-page .business-detail-grid {
  gap: 28px;
}

.business-remake-page .business-detail-grid article {
  min-height: 610px;
  padding: 80px;
}

.business-remake-page .business-detail-grid span {
  font-size: 25px;
}

.business-remake-page .business-detail-grid h3 {
  margin: 38px 0 24px;
  font-size: 38px;
}

.business-remake-page .business-detail-grid h3 small {
  color: #4d4d4d;
  font-size: 17px;
  font-weight: 500;
}

.business-remake-page .business-detail-grid strong {
  margin-bottom: 32px;
  font-size: 19px;
}

.business-remake-page .business-detail-grid p {
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.9;
}

.business-remake-page .business-detail-grid h4 {
  margin: 20px 0 8px;
  font-size: 19px;
}

.business-remake-page .technology-base-cards {
  gap: 25px;
}

.business-remake-page .technology-base-cards article {
  min-height: 290px;
  padding: 45px 28px;
}

.business-remake-page .technology-base-cards span,
.business-remake-page .technology-base-cards .tech-base-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  border-radius: 50%;
  color: #285b88;
  background: #e8f2f8;
  font-size: 24px;
  line-height: 1;
}

.business-remake-page .technology-base-cards .tech-base-icon i {
  line-height: 1;
}

.business-remake-page .technology-base-image {
  height: 528px;
  margin-top: 38px;
  object-fit: cover;
}

.business-remake-page .payload-grid {
  gap: 32px;
}

.business-remake-page .payload-grid article {
  min-height: 365px;
  border-radius: 58px;
}

.business-remake-page .industry-scene-grid {
  gap: 34px 32px;
}

.business-remake-page .industry-scene-grid article {
  overflow: hidden;
  border-radius: 52px;
  background: #fff;
}

.business-remake-page .industry-scene-grid img {
  height: 250px;
}

.business-remake-page .industry-scene-grid h3 {
  padding: 24px 20px 8px;
}

.business-remake-page .industry-scene-grid span {
  display: block;
  width: 110px;
  margin: 0 auto 22px;
  border: 1px solid #aaa;
  border-radius: 18px;
  color: #777;
  text-align: center;
  font-size: 13px;
}

.business-remake-page .cases-section {
  padding-top: 60px;
}

.business-remake-page .case-block {
  padding: 70px 64px;
  border-radius: 64px;
}

.business-remake-page .case-gallery {
  gap: 48px 40px;
}

.business-remake-page .case-gallery img {
  aspect-ratio: 1.93 / 1;
}

/* About page */
.about-remake-page .about-design-hero {
  min-height: 0;
  height: 850px;
  aspect-ratio: auto;
}

.about-remake-page .about-design-hero::before {
  background: rgba(13,73,121,.12);
}

.about-remake-page .hero-logo-mark {
  width: 88px;
  height: 86px;
  margin: 0 auto 28px;
  object-fit: contain;
}

.about-remake-page .hero-center-copy h1 {
  font-size: 62px;
}

.page-shell,
.about-page-shell {
  display: grid;
  /* Prevent side-nav nowrap labels from widening the whole page */
  grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  background: #e4e4e4;
}

.page-shell > *,
.about-page-shell > * {
  min-width: 0;
}

.page-side-nav,
.about-remake-page .about-side-nav {
  position: sticky;
  top: 0;
  align-self: start;
  z-index: 5;
  height: 100vh;
  padding: 260px 16px 0 36px;
  color: #666;
  background: transparent;
  box-sizing: border-box;
}

.page-side-nav a,
.about-remake-page .about-side-nav a {
  display: block;
  margin-bottom: 26px;
  color: #666;
  font-size: 15px;
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
  transition: color .2s ease, font-weight .2s ease;
}

.page-side-nav a:hover,
.about-remake-page .about-side-nav a:hover {
  color: #1f5a89;
}

.page-side-nav a.active,
.about-remake-page .about-side-nav a.active {
  color: #1f5a89;
  font-weight: 700;
}

.page-shell-content,
.about-page-content {
  min-width: 0;
  max-width: 100%;
}

.home-page-shell,
.business-page-shell,
.products-page-shell {
  background: #e7e7e7;
}

.page-shell-content > [id] {
  scroll-margin-top: 96px;
}

@media (max-width: 1100px) {
  .page-shell,
  .about-page-shell {
    grid-template-columns: 1fr;
  }

  .page-side-nav,
  .about-side-nav {
    display: none;
  }
}

.about-remake-page .about-profile-section {
  display: grid;
  grid-template-columns: 685px minmax(0,1fr);
  min-height: 935px;
  background: #fff;
}

.about-remake-page .about-profile-copy {
  padding: 150px 64px 80px 58px;
}

.about-remake-page .about-profile-copy h2 {
  margin: 0 0 38px;
  font-size: 34px;
}

.about-remake-page .about-profile-copy p {
  margin: 0 0 20px;
  color: #666;
  font-size: 16px;
  line-height: 2.25;
}

.about-remake-page .about-profile-section > img {
  width: 100%;
  height: 935px;
  object-fit: cover;
}

.about-history-section {
  display: grid;
  grid-template-columns: 685px minmax(0,1fr);
  height: 1295px;
  min-height: 0;
  background: #e4e4e4;
}

.about-history-section .blueprint-panel {
  display: grid;
  place-items: center;
  height: 1295px;
  min-height: 0;
  padding: 85px 40px;
  background: #275987;
}

.about-history-section .blueprint-panel img {
  width: 596px;
  height: auto;
}

.about-remake-page .timeline-content {
  padding: 225px 80px 70px;
}

.about-remake-page .timeline-content h2 {
  margin: 0 0 68px;
  font-size: 34px;
}

.about-remake-page .timeline-psd {
  gap: 70px 54px;
}

.about-remake-page .timeline-psd article {
  min-height: 205px;
}

.about-section {
  padding: 120px 30px;
  background: #e4e4e4;
}

.about-section > h2,
.about-section > header {
  text-align: center;
}

.about-remake-page .about-build-grid,
.about-remake-page .honor-grid,
.about-remake-page .qualification-grid,
.about-remake-page .about-tech-grid,
.about-remake-page .technology-grid,
.about-remake-page .data-engine-main,
.about-remake-page .data-process-grid,
.about-remake-page .about-news-list,
.about-remake-page .partner-panels {
  width: 1610px;
  max-width: calc(100% - 60px);
  margin-inline: auto;
}

.about-remake-page .about-construction-section {
  height: 780px;
  min-height: 0;
  padding-top: 80px;
  padding-bottom: 70px;
}

.about-remake-page .about-construction-section > h2 {
  margin-bottom: 55px;
  font-size: 32px;
}

.about-remake-page .about-build-grid {
  gap: 24px;
}

.about-remake-page .about-build-grid article div {
  min-height: 230px;
}

.about-remake-page .about-build-grid img {
  height: 286px;
}

.about-remake-page .about-honors-section {
  height: 900px;
  padding-top: 40px;
}

.about-remake-page .about-honors-section > header {
  margin-bottom: 45px;
}

.about-remake-page .about-honors-section > header h2,
.about-remake-page .data-engine-section > header h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.about-remake-page .honor-grid {
  grid-template-columns: repeat(3,1fr);
}

.about-remake-page .qualification-title {
  margin-top: 65px;
}

.about-remake-page .about-technology-section .home-section-heading {
  width: 1610px;
  max-width: calc(100% - 60px);
  margin: 0 auto 56px;
  text-align: center;
}

.about-remake-page .about-technology-section .home-section-heading h2 {
  margin-bottom: 12px;
  font-size: 32px;
  letter-spacing: .06em;
}

.about-remake-page .about-technology-section .home-section-heading .description {
  margin-top: 18px;
  color: #545454;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

.about-remake-page .about-technology-section .technology-grid {
  --tech-avatar: 240px;
  gap: 52px 48px;
  box-sizing: border-box;
}

.about-remake-page .about-technology-section .technology-grid > article > img {
  width: var(--tech-avatar);
  height: var(--tech-avatar);
  flex: 0 0 var(--tech-avatar);
  margin-right: calc(var(--tech-avatar) * -0.5);
}

.about-remake-page .about-technology-section .technology-grid > article > .tech-panel,
.about-remake-page .about-technology-section .technology-grid > article > div {
  height: var(--tech-avatar) !important;
  min-height: var(--tech-avatar) !important;
  max-height: var(--tech-avatar) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 36px;
  padding-left: calc(var(--tech-avatar) * 0.56) !important;
  box-sizing: border-box;
}

.about-remake-page .data-engine-section > header {
  margin-bottom: 60px;
}

.about-remake-page .data-engine-main {
  grid-template-columns: 1fr 1fr;
}

.about-remake-page .data-engine-main img {
  height: 460px;
}

.about-remake-page .data-engine-main div {
  padding: 95px 70px;
}

.about-remake-page .about-news-section > h2,
.about-remake-page .partner-section > h2 {
  margin-bottom: 50px;
  font-size: 32px;
}

.about-remake-page .about-technology-section {
  height: auto;
  min-height: 0;
  padding-top: 90px;
  padding-bottom: 90px;
}

.about-remake-page .data-engine-section {
  height: 1100px;
  padding-top: 80px;
  padding-bottom: 65px;
}

.about-remake-page .data-engine-main img {
  height: 390px;
}

.about-remake-page .data-engine-main div {
  padding: 65px 70px;
}

.about-remake-page .data-process-grid article {
  min-height: 250px;
  padding: 32px 24px;
}

.about-remake-page .about-news-section {
  height: auto;
  min-height: 0;
  padding-top: 60px;
  padding-bottom: 80px;
}

.about-remake-page .about-news-list {
  gap: 34px;
}

.about-remake-page .about-news-list article {
  min-height: 430px;
}

.about-remake-page .about-news-list img {
  height: 430px;
}

.about-remake-page .about-news-list div {
  padding: 65px 70px;
}

.about-remake-page .partner-section {
  height: auto;
  min-height: 0;
  padding-top: 55px;
  padding-bottom: 70px;
}

.about-remake-page .partner-panels {
  min-height: 0;
  height: auto;
}

.about-remake-page .partner-panels img {
  height: auto;
  max-height: none;
  padding: 56px 72px;
  display: block;
}

.about-remake-page .site-footer {
  min-height: 596px;
}

.about-remake-page .about-news-list article {
  grid-template-columns: 1fr 1fr;
  height: auto;
  min-height: 430px;
  overflow: hidden;
}

.about-remake-page .about-news-media-placeholder {
  min-height: 430px;
  background: linear-gradient(135deg, #d9e4ee, #eef3f7);
}

.about-news-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.about-news-pager__pages {
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-news-pager__btn,
.about-news-pager__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #c5d4e2;
  border-radius: 4px;
  color: #225f90;
  background: #fff;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: .2s ease;
  box-sizing: border-box;
}
.about-news-pager__btn:hover,
.about-news-pager__page:hover {
  border-color: #225f90;
  background: #f3f8fc;
}
.about-news-pager__btn.is-disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}
.about-news-pager__page.is-active {
  color: #fff;
  border-color: #225f90;
  background: #225f90;
  font-weight: 700;
}

.about-remake-page .partner-panels {
  height: auto;
  min-height: 0;
}

/* CMS article detail (news / product) */
.cms-article-page .cms-article {
  padding: 72px 0 120px;
  background: #e7e7e7;
}
.cms-article-page .cms-article__inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 56px 64px 72px;
  background: #fff;
  box-sizing: border-box;
}
.cms-article-page .cms-article__back {
  margin: 0 0 28px;
}
.cms-article-page .cms-article__back a {
  color: #225f90;
  font-weight: 600;
}
.cms-article-page .cms-article__cover {
  margin: 0 0 36px;
}
.cms-article-page .cms-article__cover img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
.cms-article-page .cms-article__header h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.35;
}
.cms-article-page .cms-article__header time {
  display: block;
  margin-bottom: 18px;
  color: #777;
  font-size: 15px;
}
.cms-article-page .cms-article__summary {
  margin: 0 0 28px;
  color: #555;
  font-size: 18px;
  line-height: 1.8;
}
.cms-article-page .cms-article__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  color: #4f4f4f;
}
.cms-article-page .cms-article__highlights li::before {
  content: "·";
  margin-right: 8px;
}
.cms-article-page .cms-article__body {
  color: #333;
  font-size: 16px;
  line-height: 1.9;
}
.cms-article-page .cms-article__body img {
  max-width: 100%;
  height: auto;
}
.cms-article-page .cms-article__body p {
  margin: 0 0 1em;
}

/* Contact page */
.contact-remake-page .contact-design-hero {
  min-height: 0;
  height: 970px;
  aspect-ratio: auto;
}

.contact-remake-page .site-header {
  height: 88px;
}

.contact-remake-page .main-nav > a {
  padding-top: 28px;
  padding-bottom: 28px;
}

.contact-remake-page .main-nav > a::after {
  bottom: 18px;
}

.contact-remake-page .contact-design-hero::before {
  background: rgba(16,64,103,.31);
}

.contact-hero-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 570px;
  height: 126px;
  margin: 0 auto 22px;
  border-radius: 65px;
  color: #fff;
  font-size: 52px;
  background: rgba(190,208,222,.55);
}

.contact-hero-icons img {
  width: 98px;
  height: 96px;
  object-fit: contain;
}

.contact-hero-icons > i {
  line-height: 1;
}

.contact-hero-divider {
  display: inline-block;
  width: 1px;
  height: 70px;
  background: rgba(33,73,105,.68);
}

.contact-remake-page .hero-center-copy h1 {
  font-size: 70px;
}

.contact-remake-page .hero-center-copy p {
  font-size: 44px;
  letter-spacing: .25em;
}

.contact-remake-page .contact-service-section {
  height: 1425px;
  min-height: 0;
  padding: 72px 0 65px;
  background: #ededed;
}

.contact-remake-page .contact-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 1328px;
  max-width: calc(100% - 40px);
  margin: 0 auto 62px;
  gap: 28px;
  align-items: start;
}

.contact-remake-page .contact-process article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-remake-page .contact-process__icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  flex: 0 0 96px;
  background: #ededed;
  box-shadow: none;
  filter: none;
}

.contact-remake-page .contact-process__icon img {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0;
  object-fit: contain;
  object-position: center;
  background: #ededed;
  box-shadow: none;
  filter: none;
}

.contact-remake-page .contact-process h3 {
  margin: 0;
  min-height: 29px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-remake-page .contact-service-cards,
.contact-remake-page .contact-detail-grid {
  width: 1328px;
  margin-inline: auto;
}

.contact-remake-page .contact-service-cards {
  gap: 38px;
}

.contact-remake-page .contact-service-cards article {
  min-height: 320px;
  padding-top: 48px;
  border-radius: 55px;
}

.contact-remake-page .contact-detail-grid {
  gap: 36px;
  margin-top: 42px;
}

.contact-remake-page .contact-detail-card {
  gap: 52px;
  min-height: 340px;
  padding: 52px 48px;
  border-radius: 48px;
  box-shadow: none;
}

.contact-remake-page .contact-detail-item {
  gap: 16px;
}

.contact-remake-page .contact-detail-grid a {
  color: #111;
  font-size: 28px;
  font-weight: 500;
}

.contact-remake-page .contact-round-icon {
  width: 44px;
  height: 44px;
  margin: 0;
  flex: 0 0 44px;
  color: #fff;
  background: #1d4477;
  font-size: 17px;
}

.contact-remake-page .contact-detail-grid p {
  margin: 0;
  max-width: 520px;
  color: #111;
  font-size: 24px;
  line-height: 1.55;
  font-weight: 400;
}

.contact-remake-page .contact-map-section {
  height: auto;
}

.contact-remake-page .contact-map-section > img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.contact-remake-page .site-footer {
  min-height: 717px;
}

.contact-remake-page .contact-map-marker {
  top: 32%;
  left: 59.5%;
}

.contact-remake-page .contact-map-marker > img:first-child {
  width: 117px;
  height: 39px;
}

.contact-remake-page .contact-map-marker > img:last-child {
  width: 46px;
  height: 57px;
  margin-top: 10px;
}

.contact-remake-page .contact-map-marker strong {
  margin-top: 6px;
  color: #15507d;
  font-size: 22px;
}

.contact-cms-form label {
  display: block;
  margin: 12px 0 6px;
  font-size: 14px;
  color: #334155;
}
.contact-cms-form input,
.contact-cms-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
}
.contact-cms-form button[type="submit"] {
  margin-top: 18px;
  background: #1e3a5f;
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 12px 28px;
  cursor: pointer;
}
.contact-cms-form button[type="submit"]:hover {
  background: #152a46;
}

