:root {
  --font: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  --ink: #081a3d;
  --navy: #041b49;
  --blue: #0a55d9;
  --blue-2: #176fe8;
  --cyan: #38bdf8;
  --muted: #526781;
  --line: #d9e5f2;
  --soft: #f3f8ff;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 46, 100, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  word-break: keep-all;
  letter-spacing: 0;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 56px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  top: -44px;
  left: 16px;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(186, 204, 225, .62);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 188px; max-height: 52px; height: auto; object-fit: contain; }
.nav-panel { display: flex; align-items: center; gap: 22px; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.nav-link,
.dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: #07183b;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}
.nav-link.is-active::after,
.dropdown-trigger.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 3px;
  background: var(--blue);
  border-radius: 999px;
}
.dropdown { position: relative; }
.dropdown::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 18px;
  display: none;
}
.dropdown:hover::after,
.dropdown:focus-within::after,
.dropdown.is-open::after {
  display: block;
}
.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 2;
  min-width: 220px;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  transition: .18s ease;
}
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel,
.dropdown.is-open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: #1d3356;
  font-size: 14px;
  font-weight: 700;
}
.dropdown-panel a:hover { background: #f1f6ff; color: var(--blue); }
.header-cta { flex: 0 0 auto; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: .2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(8, 55, 130, .18); }
.btn-primary { background: linear-gradient(135deg, var(--blue), #083a93); color: #fff; }
.btn-outline { background: #fff; color: var(--blue); border-color: #8faee0; }
.btn-ghost { background: transparent; color: currentColor; border-color: rgba(255,255,255,.58); }
.btn-small { min-height: 38px; padding: 0 16px; font-size: 13px; }
.btn-wide { min-width: 230px; }
.arrow { font-size: 18px; line-height: 1; }

.section { padding: 58px 0; }
.section-head { text-align: center; margin: 0 auto 34px; max-width: 780px; }
.eyebrow { margin: 0 0 10px; color: var(--blue); font-weight: 900; font-size: 15px; }
.section-title { margin: 0; font-size: 31px; line-height: 1.24; color: var(--ink); }
.section-copy { margin: 12px 0 0; color: var(--muted); line-height: 1.75; font-weight: 600; }

.hero { position: relative; overflow: hidden; padding: 28px 0; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  gap: 34px;
  align-items: center;
}
.hero-kicker { margin: 0 0 13px; font-size: 20px; line-height: 1.35; font-weight: 700; color: #193057; }
.hero h1 { margin: 0; font-size: clamp(39px, 3.8vw, 50px); line-height: 1.18; font-weight: 800; letter-spacing: 0; }
.text-blue { color: var(--blue); }
.hero-lead { max-width: 560px; margin: 22px 0 0; color: #253d62; font-size: 15px; line-height: 1.78; font-weight: 650; }
.hero-actions,
.section-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.hero-keywords { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.hero-keywords li {
  padding: 7px 11px;
  border: 1px solid #cbdcf2;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #31527c;
  font-size: 13px;
  font-weight: 800;
}

.hero-visual { position: relative; min-height: 350px; }
.hero-orbit { position: relative; width: min(500px, 100%); height: 350px; margin-left: auto; background: url("../assets/images/hero-orbit-lines.svg") center / 100% 100% no-repeat; }
.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(34, 101, 202, .16);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit::before { inset: 34px 38px 32px; opacity: .35; }
.hero-orbit::after { inset: 68px 86px 60px; transform: rotate(21deg); opacity: .32; }
.central-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 156px;
  height: 132px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fff, #f7fbff 68%, #edf6ff);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  border: 2px solid #8fb9ef;
  box-shadow: 0 20px 34px rgba(31, 91, 171, .17), inset 0 0 0 7px rgba(244, 249, 255, .9);
  z-index: 2;
}
.central-hub img { width: 112px; max-height: 38px; object-fit: contain; }
.orbit-node {
  position: absolute;
  z-index: 3;
  width: 88px;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid #d1e0f2;
  background: rgba(255,255,255,.94);
  box-shadow: 0 11px 24px rgba(28, 67, 130, .11), inset 0 0 0 6px rgba(248,251,255,.78);
  color: #08285c;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.32;
}
.orbit-node img { width: 31px; height: 31px; object-fit: contain; }
.node-top { top: 0; left: 50%; transform: translateX(-50%); }
.node-right-top { top: 43px; right: 32px; }
.node-right-mid { right: 4px; top: 171px; }
.node-bottom-right { right: 104px; bottom: 0; }
.node-bottom-left { left: 142px; bottom: 0; }
.node-left-mid { left: 18px; top: 176px; }
.node-left-top { left: 70px; top: 66px; }

.cube-visual { min-height: 360px; }
.hero-cube-wrap { position: relative; height: 360px; width: min(520px, 100%); margin-left: auto; background: url("../assets/images/hero-cube-lines.svg") center / 100% 100% no-repeat; }
.cube-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 226px;
  height: 214px;
  transform: translate(-50%, -44%);
  z-index: 2;
}
.cube-base {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(218,236,255,.9), rgba(83,145,218,.45));
  transform: perspective(420px) rotateX(57deg);
  box-shadow: 0 30px 38px rgba(16, 81, 170, .22);
}
.cube-base::before,
.cube-base::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 26px;
  border-radius: 18px;
  background: rgba(31, 103, 202, .22);
}
.cube-base::before { top: 18px; }
.cube-base::after { bottom: 9px; background: rgba(31, 103, 202, .34); }
.cube-stage::after {
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 22px;
  height: 18px;
  border-radius: 999px;
  background: rgba(16, 89, 187, .22);
  filter: blur(9px);
}
.cube-box {
  position: absolute;
  left: 58px;
  top: 20px;
  width: 112px;
  height: 112px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(219,236,255,.62));
  border: 1px solid rgba(95, 146, 214, .42);
  box-shadow: inset 16px 18px 40px rgba(255,255,255,.78), inset -24px -28px 42px rgba(67,131,209,.2), 0 24px 40px rgba(52,91,152,.2);
  display: grid;
  place-items: center;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.cube-box::before,
.cube-box::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(95, 146, 214, .32);
  background: rgba(230, 242, 255, .36);
  pointer-events: none;
}
.cube-box::before {
  left: 16px;
  right: -16px;
  top: -23px;
  height: 36px;
  border-radius: 18px 20px 8px 8px;
  transform: skewX(-39deg);
}
.cube-box::after {
  top: -8px;
  right: -24px;
  width: 35px;
  bottom: 16px;
  border-radius: 9px 18px 18px 8px;
  transform: skewY(-39deg);
}
.cube-box img { width: 86px; max-height: 32px; object-fit: contain; position: relative; z-index: 4; }
.cube-node {
  position: absolute;
  width: 82px;
  min-width: 82px;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  border: 1px solid #d5e4f5;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 28px rgba(38, 89, 156, .11), inset 0 0 0 7px rgba(248,251,255,.72);
  color: #0b2d66;
  font-size: 10.6px;
  font-weight: 850;
  line-height: 1.32;
}
.cube-node img { width: 29px; height: 29px; object-fit: contain; }
.cube-n1 { left: 50%; top: 0; transform: translateX(-50%); }
.cube-n2 { left: 58px; top: 70px; }
.cube-n3 { right: 58px; top: 70px; }
.cube-n4 { right: 72px; bottom: 8px; }
.cube-n5 { left: 72px; bottom: 8px; }
.cube-n6 { left: 12px; top: 188px; }
.cube-n7 { right: 12px; top: 188px; }

.flow-wrap { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 54px; align-items: stretch; margin-top: 34px; }
.flow-card {
  position: relative;
  min-height: 122px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(35, 72, 120, .06);
}
.flow-card:not(:last-child)::after {
  position: absolute;
  content: "\2192";
  right: -39px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 28px;
  font-weight: 800;
}
.flow-card img { width: 54px; height: 54px; }
.flow-card strong { display: block; color: var(--blue); font-size: 16px; margin-bottom: 4px; }
.flow-card b { display: block; color: #081a3d; font-size: 14px; margin-bottom: 5px; }
.flow-card span { color: #314767; font-size: 13px; line-height: 1.48; font-weight: 650; }
.center-actions { justify-content: center; margin-top: 26px; }

.card-grid { display: grid; gap: 14px; }
.solution-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.solution-grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.hospital-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.notice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 30px rgba(21, 61, 114, .08);
  padding: 28px 22px;
}
.solution-card { text-align: center; min-height: 236px; display: flex; flex-direction: column; align-items: center; }
.icon-badge {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: #f2f7ff;
  color: var(--blue);
}
.icon-badge img { width: 44px; height: 44px; object-fit: contain; }
.card h3 { margin: 0; color: #08285c; font-size: 18px; line-height: 1.35; }
.card p { margin: 12px 0 0; color: #384f70; font-size: 14px; line-height: 1.72; font-weight: 650; }
.text-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; padding-top: 18px; color: var(--blue); font-weight: 900; font-size: 13px; }
.text-link.is-disabled { color: #7b8da8; cursor: default; }

.hospital-section { position: relative; overflow: hidden; isolation: isolate; }
.hospital-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(240px, .62fr) minmax(0, 1.38fr); gap: 36px; align-items: center; }
.hospital-intro .section-head { text-align: left; margin-bottom: 0; }
.hospital-image {
  position: absolute;
  right: max(-220px, calc((100vw - 1180px) / 2 - 230px));
  bottom: -8px;
  width: 368px;
  opacity: .48;
  filter: saturate(.88) contrast(.92) brightness(1.06);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 16%, rgba(0,0,0,.78) 36%, #000 58%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.18) 16%, rgba(0,0,0,.78) 36%, #000 58%);
  pointer-events: none;
  z-index: 1;
}
.hospital-section .hospital-grid { position: relative; z-index: 3; padding-right: 146px; }

.globy-section { position: relative; overflow: hidden; }
.globy-layout { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: 42px; align-items: center; }
.globy-copy h2 { margin: 0; font-size: 32px; line-height: 1.32; }
.globy-copy p { margin: 16px 0 0; color: var(--muted); line-height: 1.78; font-weight: 650; }
.globy-flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; gap: 28px; position: relative; }
.globy-step { position: relative; text-align: center; color: #102a55; font-weight: 850; }
.globy-step:not(:last-child)::after {
  position: absolute;
  content: "\2192";
  right: -22px;
  top: 34px;
  color: var(--blue);
  font-size: 22px;
}
.globy-step:nth-of-type(4)::after { display: none; }
.globy-step .circle {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 999px;
  border: 1px solid #bcd4f2;
  background: rgba(255,255,255,.82);
}
.globy-step img { width: 44px; height: 44px; }
.globy-subflow { grid-column: 1 / -1; display: flex; justify-content: center; margin-top: 10px; }
.globy-subflow span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 42px;
  border: 1px solid #7fb0eb;
  border-radius: 7px;
  color: var(--blue);
  background: rgba(255,255,255,.78);
  font-weight: 900;
}
.globy-subflow img { width: 24px; height: 24px; }

.notice-card { min-height: 206px; }
.notice-date { display: inline-block; margin-bottom: 12px; color: var(--blue); font-weight: 900; font-size: 13px; }
.notice-card h3 { font-size: 19px; }
.notice-more { margin-top: 26px; text-align: center; }

.final-cta { padding: 56px 0; }
.cta-layout { display: grid; grid-template-columns: minmax(300px, .84fr) minmax(0, 1.16fr); gap: 42px; align-items: center; }
.cta-copy h2 { margin: 0; font-size: 30px; line-height: 1.34; }
.cta-copy p { margin: 16px 0 0; color: var(--muted); line-height: 1.75; font-weight: 650; }
.cta-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.cta-card { display: grid; grid-template-columns: 66px minmax(0,1fr); gap: 18px; align-items: center; min-height: 150px; }
.cta-card .icon-badge { margin: 0; }

.site-footer { padding: 42px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, minmax(120px, .7fr)); gap: 36px; align-items: start; }
.footer-logo { width: 168px; max-height: 50px; margin-bottom: 16px; object-fit: contain; }
.footer-about p,
.footer-contact,
.footer-col a,
.footer-bottom { color: rgba(255,255,255,.78); }
.footer-about p { margin: 0 0 12px; line-height: 1.65; font-weight: 600; }
.footer-contact { display: grid; gap: 6px; margin-top: 12px; font-style: normal; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}
.footer-col h3 { margin: 0 0 13px; color: #fff; font-size: 15px; }
.footer-col a { display: block; margin: 8px 0; font-size: 14px; font-weight: 600; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 30px;
  padding-top: 18px;
  font-size: 13px;
}
.footer-bottom a { margin-left: 18px; }

@media (max-width: 1199px) {
  .container { width: min(100% - 42px, 960px); }
  .brand img { width: 166px; }
  .primary-nav { gap: 16px; }
  .nav-link,
  .dropdown-trigger { font-size: 13px; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .98fr); gap: 24px; }
  .hero h1 { font-size: 44px; }
  .hero-lead { font-size: 16px; }
  .hero-orbit,
  .hero-cube-wrap { transform: scale(.88); transform-origin: right center; }
  .solution-grid,
  .solution-grid.five { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hospital-layout,
  .globy-layout,
  .cta-layout { grid-template-columns: 1fr; }
  .hospital-intro .section-head { text-align: center; margin: 0 auto 28px; }
  .hospital-section .hospital-grid { padding-right: 0; }
  .hospital-image {
    position: relative;
    right: auto;
    width: 240px;
    margin: 24px auto -46px;
    opacity: .64;
    filter: saturate(.9) contrast(.95) brightness(1.04);
    -webkit-mask-image: none;
    mask-image: none;
  }
  .flow-wrap { gap: 34px; }
  .flow-card { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 22px 16px; }
  .flow-card:not(:last-child)::after { right: -26px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .container { width: min(100% - 32px, 560px); }
  .header-inner { min-height: 66px; }
  .brand img { width: 150px; }
  .nav-toggle { display: inline-flex; }
  .nav-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 66px;
    bottom: 0;
    display: block;
    background: #fff;
    padding: 18px 18px 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .nav-panel.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
  .primary-nav { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link,
  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    min-height: 52px;
    border-bottom: 1px solid #edf2f8;
    font-size: 16px;
  }
  .nav-link.is-active::after,
  .dropdown-trigger.is-active::after { display: none; }
  .dropdown-panel {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 10px 12px;
    display: none;
  }
  .dropdown::after { display: none !important; }
  .dropdown.is-open .dropdown-panel { display: block; }
  .dropdown:hover .dropdown-panel,
  .dropdown:focus-within .dropdown-panel { transform: none; }
  .nav-panel .header-cta { display: flex; margin-top: 18px; }
  .nav-panel .header-cta .btn { width: 100%; }
  .section { padding: 46px 0; }
  .section-title { font-size: 25px; }
  .hero { padding: 54px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero-kicker { font-size: 18px; }
  .hero h1 { font-size: 36px; }
  .hero-lead { font-size: 15px; line-height: 1.76; }
  .hero-actions,
  .section-actions { flex-direction: column; }
  .btn { width: 100%; min-height: 54px; }
  .hero-visual { min-height: 390px; }
  .hero-orbit,
  .hero-cube-wrap { width: 100%; height: 388px; transform: none; }
  .central-hub { width: 150px; height: 130px; }
  .central-hub img { width: 104px; max-height: 38px; }
  .orbit-node,
  .cube-node { width: 88px; min-width: 88px; min-height: 88px; font-size: 10.5px; }
  .orbit-node img,
  .cube-node img { width: 29px; height: 29px; }
  .node-right-top { top: 78px; right: 0; }
  .node-right-mid { top: 206px; right: 0; }
  .node-bottom-right { right: 88px; bottom: 0; }
  .node-bottom-left { left: 88px; bottom: 0; }
  .node-left-mid { left: 0; top: 206px; }
  .node-left-top { left: 0; top: 78px; }
  .cube-stage { transform: translate(-50%, -42%) scale(.9); }
  .cube-n2 { left: 22px; top: 70px; }
  .cube-n3 { right: 22px; top: 70px; }
  .cube-n4 { right: 55px; bottom: 10px; }
  .cube-n5 { left: 55px; bottom: 10px; }
  .cube-n6 { left: 0; top: 198px; }
  .cube-n7 { right: 0; top: 198px; }
  .flow-wrap { grid-template-columns: 1fr; gap: 32px; }
  .flow-card { grid-template-columns: 58px minmax(0,1fr); text-align: left; justify-items: stretch; }
  .flow-card:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -30px;
    transform: translateX(-50%) rotate(90deg);
  }
  .solution-grid,
  .solution-grid.five,
  .hospital-grid,
  .notice-grid,
  .cta-card-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; }
  .globy-layout { gap: 28px; }
  .globy-flow { grid-template-columns: 1fr; gap: 30px; }
  .globy-step:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -28px;
    transform: translateX(-50%) rotate(90deg);
  }
  .globy-subflow span { width: 100%; justify-content: center; padding: 13px 16px; }
  .cta-card { grid-template-columns: 58px minmax(0,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom a { margin: 0 14px 0 0; }
}
