:root {
  --navy: #062a55;
  --navy-dark: #031b39;
  --blue: #0d4f91;
  --pale: #eef7ff;
  --pale-2: #f8fbff;
  --line: #d8e6f2;
  --text: #09213c;
  --muted: #496176;
  --white: #fff;
  --shadow: 0 14px 34px rgba(5, 34, 65, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--text);
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.7;
  background: #fff;
}

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

img {
  display: block;
  max-width: 100%;
}

.mobile-break {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding-left: clamp(24px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(6, 42, 85, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 260px;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: #111722;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #111722;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: stretch;
  min-height: 76px;
  color: var(--navy-dark);
  font-size: 14.5px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(11px, 1.6vw, 20px);
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
  content: "";
}

.site-nav a:not(.nav-contact):hover,
.site-nav a:not(.nav-contact):focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--blue);
  background: rgba(238, 247, 255, 0.58);
}

.site-nav a:not(.nav-contact):hover::after,
.site-nav a:not(.nav-contact):focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-contact {
  gap: 8px;
  min-width: 232px;
  margin-left: 22px;
  justify-content: space-between;
  color: #fff;
  background: var(--navy);
  border-left: 1px solid var(--navy);
  transition: background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  color: var(--navy);
  background: #fff;
  box-shadow: none;
  transform: none;
}

.nav-contact .mail-icon {
  transition: transform 0.18s ease;
}

.nav-contact:hover .mail-icon,
.nav-contact:focus-visible .mail-icon {
  transform: translateX(-3px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-right: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.mail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 16px;
  height: 11px;
  border: 1.7px solid currentColor;
  font-size: 0;
}

.mail-icon::after {
  width: 8px;
  height: 8px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translate(-1px, -4px);
  content: "";
}

.line-icon,
.flow-icon {
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: var(--navy);
}

.line-icon::before,
.line-icon::after,
.flow-icon::before,
.flow-icon::after {
  position: absolute;
  content: "";
}

.icon-home::before {
  left: 4px;
  top: 10px;
  width: 17px;
  height: 12px;
  border: 2px solid currentColor;
}

.icon-home::after {
  left: 6px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-building::before {
  left: 6px;
  top: 3px;
  width: 14px;
  height: 20px;
  border: 2px solid currentColor;
}

.icon-building::after {
  left: 10px;
  top: 7px;
  width: 2px;
  height: 2px;
  background: currentColor;
  box-shadow: 5px 0 currentColor, 0 5px currentColor, 5px 5px currentColor, 0 10px currentColor, 5px 10px currentColor;
}

.icon-shield::before {
  left: 5px;
  top: 2px;
  width: 16px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 12px 12px;
}

.icon-shield::after {
  left: 13px;
  top: 8px;
  width: 2px;
  height: 9px;
  background: currentColor;
}

.icon-sun::before {
  left: 8px;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-sun::after {
  left: 12px;
  top: 1px;
  width: 2px;
  height: 24px;
  background: currentColor;
}

.icon-camera::before {
  left: 3px;
  top: 9px;
  width: 16px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-camera::after {
  left: 17px;
  top: 11px;
  width: 7px;
  height: 5px;
  border: 2px solid currentColor;
  border-left: 0;
}

.icon-users::before {
  left: 4px;
  top: 4px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 10px 0 0 -1px #fff, 10px 0 0 1px currentColor;
}

.icon-users::after {
  left: 1px;
  top: 15px;
  width: 23px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 0 0;
}

.icon-chart::before {
  left: 5px;
  top: 15px;
  width: 3px;
  height: 8px;
  background: currentColor;
  box-shadow: 8px -5px currentColor, 16px -11px currentColor;
}

.icon-chart::after {
  left: 3px;
  top: 4px;
  width: 19px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skewY(-23deg);
}

.icon-clipboard::before {
  left: 5px;
  top: 5px;
  width: 16px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-clipboard::after {
  left: 9px;
  top: 2px;
  width: 8px;
  height: 5px;
  border: 2px solid currentColor;
  background: #fff;
}

.icon-mail::before {
  left: 3px;
  top: 8px;
  width: 20px;
  height: 13px;
  border: 2px solid currentColor;
}

.icon-mail::after {
  left: 8px;
  top: 9px;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-search::before {
  left: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-search::after {
  left: 16px;
  top: 16px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.icon-calendar::before {
  left: 4px;
  top: 5px;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-calendar::after {
  left: 7px;
  top: 11px;
  width: 12px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px currentColor;
}

.icon-tool::before {
  left: 11px;
  top: 3px;
  width: 4px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 4px;
  transform: rotate(42deg);
}

.icon-tool::after {
  left: 5px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(42deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(440px, 0.95fr) 1.05fr;
  align-items: center;
  min-height: 420px;
  background: linear-gradient(90deg, #fff 0%, #fff 48%, #edf5fb 48%, #edf5fb 100%);
}

.hero-copy {
  max-width: none;
  margin-top: 24px;
  padding: 62px 42px 72px clamp(58px, 8vw, 118px);
}

.hero h1 {
  margin: 0;
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero p {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--navy-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.9;
}

.desktop-break {
  display: inline;
}

.hero-copy::before {
  display: block;
  width: 1px;
  height: 18px;
  content: "";
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 190px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid var(--navy);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.button-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(6, 42, 85, 0.18);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
}

.button-secondary::after,
.service-card a::after,
.section-head a::after {
  margin-left: 10px;
  content: "›";
}

.hero-actions .button {
  cursor: pointer;
}

.hero-actions .button-primary::after {
  margin-left: 12px;
  font-size: 18px;
  line-height: 1;
  content: "›";
  transition: transform 0.18s ease;
}

.hero-actions .button-primary:hover,
.hero-actions .button-primary:focus-visible {
  color: var(--navy);
  background: #fff;
  border-color: var(--navy);
  box-shadow: 0 18px 34px rgba(6, 42, 85, 0.22), 0 0 0 4px rgba(6, 42, 85, 0.08);
  transform: translateY(-3px);
}

.hero-actions .button-secondary:hover,
.hero-actions .button-secondary:focus-visible {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 18px 34px rgba(6, 42, 85, 0.2);
  transform: translateY(-3px);
}

.hero-actions .button-secondary:hover::after,
.hero-actions .button-secondary:focus-visible::after,
.hero-actions .button-primary:hover::after,
.hero-actions .button-primary:focus-visible::after {
  transform: translateX(5px);
}

.button-light {
  min-width: 156px;
  min-height: 64px;
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.hero-visual {
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 32px clamp(24px, 4vw, 42px);
}

.section h2,
.business-band h2,
.contact-cta h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(24px, 2.4vw, 31px);
  line-height: 1.35;
  text-align: center;
}

.section h2::after {
  display: block;
  width: 30px;
  height: 2px;
  margin: 9px auto 0;
  background: var(--navy);
  content: "";
}

.concerns {
  background: linear-gradient(180deg, #eef7ff 0%, #f8fbff 100%);
  padding-right: 0;
  padding-left: 0;
}

.concern-grid {
  display: grid;
  grid-template-columns: 140px repeat(3, 315px) 140px;
  gap: 12px;
  justify-content: center;
  max-width: none;
  margin: 32px auto 0;
}

.side-photo,
.concern-card,
.service-card,
.case-card,
.flow article {
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.side-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.concern-grid > .side-photo:first-child {
  transform: scaleX(1.08);
  transform-origin: right center;
}

.concern-grid > .side-photo:last-child {
  transform: scaleX(1.08);
  transform-origin: left center;
}

.concern-card {
  min-height: 300px;
  padding: 34px 28px 28px;
  background: rgba(255, 255, 255, 0.96);
}

.concern-card h3,
.service-card h3,
.case-card h3,
.flow h3 {
  margin: 0;
  color: var(--navy-dark);
  line-height: 1.35;
}

.concern-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  white-space: nowrap;
}

ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin-top: 13px;
  padding-left: 25px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.48;
}

li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy);
  content: "☑";
}

.services {
  background: #f8fbff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1160px;
  margin: 32px auto 0;
}

.service-card {
  overflow: hidden;
  background: #fff;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card div {
  padding: 26px 30px 28px;
}

.service-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 14px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--navy);
  background: #edf5fd;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.service-card h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 23px;
}

.service-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--navy);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.case-card p,
.business-copy p,
.flow p,
.contact-cta p {
  color: var(--muted);
  font-weight: 800;
}

.service-card p {
  margin: 12px 0 18px;
  font-size: 14px;
  line-height: 1.7;
}

.service-card a,
.section-head a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

.section-head a {
  position: absolute;
  right: 0;
  top: 6px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1240px;
  margin: 28px auto 0;
}

.case-card {
  overflow: hidden;
  background: #fff;
}

.case-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.case-card span {
  display: inline-flex;
  margin: 17px 18px 8px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: #edf5fd;
  font-size: 13px;
  font-weight: 800;
}

.case-card h3,
.case-card p {
  margin-right: 18px;
  margin-left: 18px;
}

.case-card h3 {
  font-size: 21px;
}

.case-card p {
  margin-top: 8px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.55;
}

.business-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1240px;
  min-height: 322px;
  margin: 18px auto 56px;
  padding: 44px 42px 48px 48px;
  background: linear-gradient(90deg, rgba(235, 246, 255, 0.98) 0%, rgba(239, 248, 255, 0.92) 45%, rgba(255, 255, 255, 0.86) 100%);
}

.business-band::before {
  position: absolute;
  left: 110px;
  right: 230px;
  bottom: -78px;
  z-index: 0;
  height: 245px;
  background: url("./assets/generated-business-illustration-bg.jpg") center bottom / contain no-repeat;
  opacity: 0.42;
  content: "";
}

.business-copy,
.business-points {
  position: relative;
  z-index: 1;
}

.business-band h2 {
  font-size: 31px;
  line-height: 1.34;
  text-align: left;
}

.business-copy p {
  max-width: 360px;
  margin: 17px 0 28px;
  font-size: 15px;
  line-height: 1.8;
}

.business-copy .business-cta {
  min-width: 270px;
  min-height: 48px;
  justify-content: space-between;
  padding: 0 23px;
  font-size: 14px;
}

.business-copy .business-cta::after {
  margin-left: 18px;
  font-size: 20px;
  line-height: 1;
  content: "›";
}

.business-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  align-self: center;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 42, 82, 0.08);
  transform: translateY(14px);
}

.business-points div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 158px;
  padding: 24px 18px 21px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  text-align: center;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.55;
}

.business-points div:first-child {
  border-left: 0;
}

.business-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 11px;
  color: var(--navy);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow {
  padding: 0 42px 72px;
  background: #fff;
}

.flow h2 {
  font-size: 36px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 22px;
  width: 100%;
  max-width: 1160px;
  margin: 34px auto 0;
}

.flow article {
  position: relative;
  min-height: 176px;
  padding: 28px 72px 28px 76px;
  border: 1px solid #d8e4f1;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 42, 82, 0.09);
}

.flow article:not(:last-child)::after {
  position: absolute;
  right: -18px;
  top: 50%;
  z-index: 2;
  color: var(--navy);
  font-size: 28px;
  font-weight: 800;
  transform: translateY(-50%);
  content: "›";
}

.flow article:nth-child(3)::after {
  right: 50%;
  top: auto;
  bottom: -27px;
  transform: translateX(50%) rotate(90deg);
}

.flow article:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.flow article:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.flow article:nth-child(6) {
  grid-column: 1;
  grid-row: 2;
}

.flow article:nth-child(4)::after,
.flow article:nth-child(5)::after {
  right: auto;
  left: -18px;
  content: "‹";
}

.flow span {
  position: absolute;
  left: 24px;
  top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 15.5px;
  font-weight: 800;
}

.flow-icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  color: var(--navy);
  fill: none;
  opacity: 0.54;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-icon * {
  vector-effect: non-scaling-stroke;
}

.flow h3 {
  min-height: 27px;
  margin: 0;
  color: var(--navy-dark);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.flow p {
  max-width: 220px;
  margin: 14px 0 0;
  color: #17324f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.62;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 350px;
  padding: 62px clamp(42px, 7vw, 92px);
  color: #fff;
  background:
    radial-gradient(circle at 75% 34%, rgba(71, 150, 218, 0.2), transparent 36%),
    linear-gradient(90deg, rgba(2, 26, 53, 0.54) 0%, rgba(2, 26, 53, 0.78) 34%, rgba(2, 26, 53, 0.96) 60%, #021a35 100%),
    linear-gradient(90deg, #07335f 0%, #062a50 46%, #021a35 100%);
}

.contact-cta::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 26, 53, 0.42) 0%, rgba(2, 26, 53, 0.74) 42%, rgba(2, 26, 53, 0.99) 72%, #021a35 100%),
    radial-gradient(circle at 28% 50%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(115deg, transparent 0 56%, rgba(255, 255, 255, 0.05) 56% 57%, transparent 57% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.042) 0 1px, transparent 1px 74px);
  content: "";
  pointer-events: none;
}

.contact-cta img {
  position: absolute;
  inset: -12px auto -12px -18px;
  z-index: 0;
  width: min(66vw, 820px);
  height: calc(100% + 24px);
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  opacity: 0.48;
  filter: saturate(0.95) contrast(0.95) blur(0.6px);
}

.contact-cta > div {
  position: relative;
  z-index: 2;
  width: min(680px, 56vw);
  margin-left: auto;
  margin-right: clamp(36px, 5vw, 78px);
}

.contact-cta h2,
.contact-cta p,
.contact-tags {
  color: #fff;
  text-align: left;
}

.contact-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 14px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #e7f5ff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.contact-cta h2 {
  max-width: 680px;
  font-size: clamp(32px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: 0;
  white-space: nowrap;
}

.contact-cta p {
  max-width: 650px;
  margin: 16px 0 0;
  color: #dcecf9;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.85;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #f4fbff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.contact-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 26px;
}

.contact-actions .button {
  position: relative;
  min-width: min(420px, 100%);
  min-height: 80px;
  padding: 0 38px;
  border-color: #fff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 20px 42px rgba(0, 17, 42, 0.35);
}

.contact-actions .button:first-child {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.contact-actions .button::after {
  margin-left: 14px;
  color: currentColor;
  font-size: 20px;
  line-height: 1;
  content: "›";
  transition: transform 0.18s ease;
}

.contact-actions .button:hover,
.contact-actions .button:focus-visible {
  color: #fff;
  background: #0d5b9a;
  border-color: #7fc4ff;
  box-shadow: 0 24px 52px rgba(0, 19, 46, 0.46), 0 0 0 4px rgba(127, 196, 255, 0.18);
  transform: translateY(-3px);
}

.contact-actions .button:hover::after,
.contact-actions .button:focus-visible::after {
  transform: translateX(5px);
}

.contact-actions .line-icon {
  width: 26px;
  height: 26px;
}

.subpage-main {
  background: #fff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(440px, 0.95fr) 1.05fr;
  align-items: center;
  min-height: 420px;
  background: linear-gradient(90deg, #f8fbff 0%, #fff 46%, #eef7ff 100%);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px 42px 72px clamp(58px, 8vw, 118px);
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  color: var(--navy);
  background: #e8f4ff;
  border: 1px solid #cde3f6;
  font-size: 13px;
  font-weight: 900;
}

.page-hero h1 {
  margin: 18px 0 0;
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.25;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 570px;
  margin: 22px 0 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.9;
}

.page-hero-visual {
  height: 100%;
  min-height: 420px;
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-page-hero {
  grid-template-columns: minmax(440px, 0.95fr) 1.05fr;
  min-height: 420px;
  background:
    linear-gradient(90deg, #f8fbff 0%, #fff 46%, #eef7ff 100%);
}

.business-page-hero .page-hero-copy {
  max-width: none;
  padding: 72px 42px 72px clamp(58px, 8vw, 118px);
}

.business-page-hero h1 {
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.25;
}

.business-page-hero p {
  max-width: 570px;
  font-size: 17px;
  line-height: 1.9;
}

.business-page-hero .page-hero-visual {
  min-height: 420px;
}

.business-page-hero .page-hero-visual img {
  object-position: center center;
}

.page-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 34px;
}

.page-section h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 32px;
  line-height: 1.45;
  text-align: center;
}

.page-section > p.section-lead {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.9;
  text-align: center;
}

.service-detail-section {
  max-width: 1360px;
  padding-right: clamp(22px, 2.6vw, 42px);
  padding-left: clamp(22px, 2.6vw, 42px);
}

.service-detail-section h2 {
  font-size: 38px;
}

.service-detail-section > p.section-lead {
  max-width: 960px;
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.8;
}

.business-capability-section h2 {
  font-size: 38px;
}

.business-capability-section > p.section-lead {
  max-width: 960px;
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.8;
}

.business-solution-grid {
  gap: 24px;
  max-width: 1220px;
  margin-top: 46px;
}

.business-solution-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #d7e8f6;
  box-shadow: 0 18px 42px rgba(5, 34, 65, 0.08);
}

.business-solution-image {
  position: relative;
  overflow: hidden;
}

.business-solution-image::after {
  position: absolute;
  inset: 46% 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 26, 53, 0.68) 100%);
  content: "";
}

.business-solution-image img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.business-solution-card:hover .business-solution-image img {
  transform: scale(1.035);
}

.business-solution-image span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #fff;
  background: rgba(2, 26, 53, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 12px;
  font-weight: 900;
}

.business-solution-card .detail-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px 26px 28px;
}

.business-solution-card h3 {
  font-size: 25px;
  line-height: 1.42;
}

.business-solution-card p {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.82;
}

.business-solution-card .check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
}

.business-solution-card .check-list li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0;
  padding: 0 12px;
  color: var(--navy);
  background: #eef7ff;
  border: 1px solid #d6e7f5;
  border-radius: 4px;
  font-size: 12.5px;
  line-height: 1.2;
}

.business-solution-card .check-list li::before {
  position: static;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background: var(--navy);
  border-radius: 50%;
  content: "";
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.detail-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.service-detail-list {
  display: grid;
  gap: 76px;
  margin-top: 52px;
}

.service-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(540px, 0.96fr) 1.04fr;
  align-items: stretch;
  scroll-margin-top: 96px;
  overflow: visible;
  min-height: 470px;
  background: linear-gradient(90deg, #fff 0%, #fff 68%, #f3f9ff 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-detail-card::before {
  position: absolute;
  inset: 32px 0 -26px 42px;
  z-index: 0;
  background: #eef7ff;
  content: "";
}

.service-detail-card::after {
  position: absolute;
  top: 16px;
  right: 22px;
  z-index: 3;
  color: rgba(6, 42, 85, 0.1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 132px;
  font-weight: 700;
  line-height: 1;
  content: "01";
  pointer-events: none;
}

.service-detail-card:nth-child(even) {
  grid-template-columns: 1.04fr minmax(540px, 0.96fr);
  background: linear-gradient(270deg, #fff 0%, #fff 68%, #f3f9ff 100%);
}

.service-detail-card:nth-child(even) img {
  order: 2;
}

.service-detail-card:nth-child(even)::before {
  inset: 32px 42px -26px 0;
}

.service-detail-card:nth-child(even)::after {
  right: auto;
  left: 22px;
  content: "02";
}

.service-detail-card:nth-child(3)::after {
  content: "03";
}

.detail-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-detail-card img {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 470px;
  border-radius: 7px;
  box-shadow: 0 24px 54px rgba(5, 34, 65, 0.14);
}

.detail-card-body {
  padding: 24px 24px 26px;
}

.service-detail-card .detail-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 34px 0;
  padding: 48px 54px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d8e6f2;
  box-shadow: 0 18px 46px rgba(5, 34, 65, 0.08);
  transform: translateX(-34px);
}

.service-detail-card:nth-child(even) .detail-card-body {
  transform: translateX(34px);
}

.service-eyebrow {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-self: flex-start;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  color: var(--navy);
  background: #e8f4ff;
  border: 1px solid #cde3f6;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.service-detail-card:nth-child(even) .service-eyebrow {
  margin-left: 132px;
}

.detail-card h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 23px;
  line-height: 1.45;
}

.service-detail-card h3 {
  margin-top: 15px;
  font-size: 31px;
}

.detail-card p {
  margin: 12px 0 0;
  color: #213a55;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.8;
}

.service-detail-card p {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.9;
}

.service-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0 0;
}

.service-spec div {
  padding: 16px 17px;
  background: #f4f9fe;
  border: 1px solid #dbeaf6;
  border-radius: 6px;
}

.service-spec dt {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.service-spec dd {
  margin: 5px 0 0;
  color: #213a55;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--navy);
  content: "□";
}

.service-card-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 18px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--navy);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease;
}

.service-card-cta::after {
  margin-left: 12px;
  font-size: 18px;
  line-height: 1;
  content: "›";
}

.service-card-cta:hover,
.service-card-cta:focus-visible {
  color: #fff;
  background: var(--navy);
}

.wide-band {
  background: #eef7ff;
}

.two-column {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: center;
}

.two-column img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.combination-band-inner {
  grid-template-columns: 1.12fr 0.88fr;
  max-width: 1280px;
  gap: 40px;
}

.combination-band-inner img {
  min-height: 430px;
}

.combination-band-inner h2 {
  font-size: 30px;
  line-height: 1.45;
}

.combination-band-inner p {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.8;
}

.two-column h2 {
  text-align: left;
}

.two-column p {
  margin: 18px 0 0;
  color: #213a55;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.9;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.feature-item {
  min-height: 112px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.feature-item strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
}

.feature-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.7;
}

.case-business-band {
  position: relative;
  overflow: hidden;
  padding: 58px clamp(28px, 4vw, 48px);
  background:
    linear-gradient(180deg, #f4f9fe 0%, #eef7ff 100%);
}

.case-business-inner {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(520px, 1.1fr);
  gap: 0;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #d7e8f6;
  border-radius: 7px;
  box-shadow: 0 22px 52px rgba(5, 34, 65, 0.1);
}

.case-business-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.case-business-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 26, 53, 0.08) 0%, rgba(2, 26, 53, 0.02) 46%, rgba(255, 255, 255, 0.72) 100%),
    linear-gradient(180deg, transparent 58%, rgba(2, 26, 53, 0.18) 100%);
  content: "";
}

.case-business-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 7px 0 0 7px;
}

.case-business-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 52px 40px;
}

.case-business-copy > span {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--navy);
  background: #eef7ff;
  border: 1px solid #cfe2f3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.case-business-copy h2 {
  margin: 18px 0 0;
  color: var(--navy-dark);
  font-size: 31px;
  line-height: 1.42;
  text-align: left;
}

.case-business-copy p {
  max-width: 700px;
  margin: 16px 0 0;
  color: #213a55;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.82;
}

.case-business-features {
  gap: 10px;
  margin-top: 22px;
}

.case-business-features .feature-item {
  position: relative;
  min-height: 76px;
  padding: 15px 16px 14px 46px;
  background: #f8fbff;
  border-color: #dbeaf6;
  box-shadow: none;
}

.case-business-features .feature-item::before {
  position: absolute;
  left: 18px;
  top: 20px;
  width: 12px;
  height: 12px;
  background: var(--navy);
  border: 3px solid #dcecf9;
  border-radius: 50%;
  content: "";
}

.case-business-features .feature-item strong {
  color: var(--navy-dark);
  font-size: 16px;
  line-height: 1.35;
}

.case-business-features .feature-item span {
  margin-top: 4px;
  color: #496176;
  font-size: 12.5px;
  line-height: 1.55;
  white-space: nowrap;
}

.case-business-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 20px;
  padding: 0 24px;
  color: #fff;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.case-business-link::after {
  margin-left: 12px;
  font-size: 18px;
  line-height: 1;
  content: "›";
}

.case-business-link:hover,
.case-business-link:focus-visible {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 14px 28px rgba(6, 42, 85, 0.16);
  transform: translateY(-2px);
}

.business-planning-band {
  position: relative;
  overflow: hidden;
  padding: 82px clamp(28px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(238, 247, 255, 0.96), rgba(248, 252, 255, 0.9)),
    url("./assets/generated-business-illustration-bg.jpg") 8% 92% / 54% auto no-repeat;
}

.business-planning-band::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 247, 255, 0.2) 0%, rgba(248, 252, 255, 0.82) 50%, rgba(248, 252, 255, 0.96) 100%),
    repeating-linear-gradient(90deg, rgba(6, 42, 85, 0.035) 0 1px, transparent 1px 96px);
  content: "";
  pointer-events: none;
}

.business-planning-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(410px, 0.82fr) minmax(620px, 1.18fr);
  gap: 52px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.business-planning-copy {
  padding-top: 0;
  transform: translateY(-34px);
}

.business-planning-copy > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #cfe2f3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.business-planning-copy h2 {
  margin: 18px 0 0;
  color: var(--navy-dark);
  font-size: 34px;
  line-height: 1.5;
}

.business-planning-copy p {
  max-width: 500px;
  margin: 18px 0 0;
  color: #213a55;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.9;
}

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

.planning-step {
  position: relative;
  min-height: 146px;
  padding: 23px 24px 21px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #d7e8f6;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(5, 34, 65, 0.08);
}

.planning-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.planning-step span {
  display: block;
  margin-top: 14px;
  color: var(--navy-dark);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.planning-step p {
  margin: 8px 0 0;
  color: #496176;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.65;
}

.combination-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.combination-item {
  display: grid;
  grid-template-columns: minmax(112px, auto) 34px minmax(112px, auto);
  gap: 10px;
  align-items: center;
  padding: 15px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(5, 34, 65, 0.06);
}

.combination-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--navy);
  background: #eef7ff;
  border: 1px solid #d5e8f8;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.combination-item b {
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  text-align: center;
}

.combination-item strong {
  grid-column: 1 / -1;
  display: block;
  margin-top: 2px;
  color: #213a55;
  font-size: 14px;
  line-height: 1.6;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto 72px;
  padding: 36px 42px;
  color: #fff;
  background: linear-gradient(90deg, #062a55 0%, #021a35 100%);
}

.page-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.45;
}

.page-cta p {
  margin: 8px 0 0;
  color: #dcecf9;
  font-size: 14px;
  font-weight: 800;
}

.page-cta .button {
  flex: 0 0 auto;
  min-width: 300px;
  background: #fff;
  color: var(--navy);
}

.service-page-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  min-height: 270px;
  margin: 0;
  justify-content: center;
  gap: 72px;
  padding: 46px clamp(74px, 7.5vw, 98px);
  background:
    linear-gradient(90deg, rgba(2, 26, 53, 0.9) 0%, rgba(6, 42, 85, 0.82) 48%, rgba(13, 79, 145, 0.54) 100%),
    url("./assets/generated-hero-window.jpg") center right / cover no-repeat;
  box-shadow: none;
}

.service-page-cta::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 26, 53, 0.24) 0%, rgba(2, 26, 53, 0.06) 62%, transparent 100%),
    linear-gradient(115deg, transparent 0 58%, rgba(255, 255, 255, 0.05) 58% 59%, transparent 59% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 86px);
  content: "";
  pointer-events: none;
}

.service-page-cta > div,
.service-page-cta .button {
  position: relative;
  z-index: 1;
}

.service-page-cta > div {
  flex: 0 0 min(630px, 52vw);
}

.service-page-cta .button {
  margin-right: 0;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #dcecf9;
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.service-page-cta h2 {
  margin-top: 16px;
  font-size: 32px;
}

.service-page-cta p {
  max-width: 690px;
  margin-top: 12px;
  font-size: 15px;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.cta-points li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 13px;
  font-weight: 900;
}

.service-page-cta .button {
  align-self: flex-end;
  min-width: 360px;
  min-height: 70px;
  margin-top: 92px;
  border-color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0, 12, 32, 0.28);
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.service-page-cta .button::after {
  margin-left: 14px;
  font-size: 20px;
  content: "›";
}

.service-page-cta .button:hover,
.service-page-cta .button:focus-visible {
  color: #fff;
  background: transparent;
  box-shadow: 0 0 0 1px #fff inset, 0 18px 40px rgba(0, 12, 32, 0.22);
}

.flow-process-section {
  max-width: 1220px;
}

.flow-process-section h2 {
  font-size: 38px;
}

.flow-process-section > p.section-lead {
  max-width: 900px;
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.8;
}

.section-kicker {
  display: flex;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.company-page-hero .page-hero-visual img {
  object-position: center center;
}

.company-page-hero h1 span {
  white-space: nowrap;
}

.company-intro-section {
  max-width: 1240px;
  padding-top: 80px;
}

.company-intro-section h2 {
  font-size: 38px;
  line-height: 1.5;
}

.company-intro-section > p.section-lead {
  max-width: 860px;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.8;
}

.company-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}

.company-principles article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 34px 30px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 18px 42px rgba(5, 34, 65, 0.08);
}

.company-principles article::after {
  position: absolute;
  right: -34px;
  bottom: -58px;
  color: rgba(10, 52, 97, 0.06);
  font-size: 132px;
  font-weight: 900;
  line-height: 1;
  content: "PJ";
}

.company-principles span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.company-principles h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: var(--navy-dark);
  font-size: 22px;
  line-height: 1.45;
}

.company-principles p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: #213a55;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.85;
}

.company-service-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(236, 247, 255, 0.98) 0%, rgba(236, 247, 255, 0.9) 54%, rgba(236, 247, 255, 0.64) 100%),
    url("./assets/generated-business-illustration-bg.jpg") right bottom / 50% auto no-repeat;
}

.company-service-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) 1.12fr;
  gap: 44px;
  align-items: center;
  max-width: 1260px;
  padding-top: 82px;
  padding-bottom: 82px;
}

.company-service-copy .section-kicker {
  justify-content: flex-start;
  margin-left: 0;
}

.company-service-copy h2 {
  text-align: left;
  font-size: 34px;
  line-height: 1.45;
}

.company-service-copy p {
  margin: 18px 0 0;
  color: #213a55;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.9;
}

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

.company-service-item {
  min-height: 190px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(193, 216, 236, 0.9);
  border-radius: 7px;
  box-shadow: 0 16px 36px rgba(5, 34, 65, 0.08);
}

.company-service-item strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
}

.company-service-item span {
  display: block;
  margin-top: 14px;
  color: #213a55;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.75;
}

.company-profile-section {
  max-width: 1160px;
  padding-top: 84px;
  padding-bottom: 86px;
}

.company-profile-heading {
  text-align: center;
}

.company-profile-heading h2 {
  font-size: 38px;
}

.company-profile-heading p {
  max-width: 840px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.85;
}

.steps-detail {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 1040px;
  margin: 46px auto 0;
  counter-reset: step;
}

.steps-detail::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 42px;
  width: 2px;
  background: linear-gradient(180deg, #cde3f6, #e7f2fb);
  content: "";
}

.step-row {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 128px;
  padding: 26px 30px 26px 22px;
  background: linear-gradient(90deg, #fff 0%, #fff 72%, #f8fbff 100%);
  border: 1px solid #d7e8f6;
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(5, 34, 65, 0.07);
}

.step-row span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  border: 6px solid #eef7ff;
  font-size: 22px;
  font-weight: 900;
}

.step-row h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 24px;
  line-height: 1.35;
}

.step-row p {
  max-width: 820px;
  margin: 8px 0 0;
  color: #213a55;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
}

.company-table {
  width: 100%;
  margin-top: 42px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 20px 46px rgba(5, 34, 65, 0.08);
  overflow: hidden;
}

.company-table th,
.company-table td {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}

.company-table th {
  width: 230px;
  color: var(--navy);
  background: #f4f9fe;
  font-weight: 900;
}

.company-table td {
  color: #213a55;
  font-weight: 800;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 0;
}

.contact-page-hero .page-hero-visual img {
  object-position: center center;
}

.contact-page-hero,
.contact-page-hero .page-hero-visual {
  min-height: 452px;
}

.contact-page-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) 1.18fr;
  gap: 46px;
  align-items: start;
  max-width: 1240px;
  padding-top: 84px;
  padding-bottom: 88px;
}

.contact-section-head {
  grid-column: 1 / -1;
  text-align: center;
}

.contact-section-head h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 38px;
  line-height: 1.45;
}

.contact-section-head p {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.8;
}

.contact-page-intro {
  position: sticky;
  top: 108px;
  padding: 38px 34px;
  background: #f4f9fe;
  border: 1px solid #d7e8f6;
  border-radius: 7px;
}

.contact-page-intro .section-kicker {
  justify-content: flex-start;
  margin-left: 0;
}

.contact-page-intro h2 {
  text-align: left;
  font-size: 32px;
  line-height: 1.45;
}

.contact-page-intro p {
  margin: 18px 0 0;
  color: #213a55;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.9;
}

.contact-note-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-note-list div {
  padding: 18px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.contact-note-list strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
}

.contact-note-list span {
  display: block;
  margin-top: 7px;
  color: #213a55;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.65;
}

.contact-form {
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 20px 48px rgba(5, 34, 65, 0.09);
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-result {
  min-height: 420px;
}

.contact-result h1 {
  margin: 18px 0 0;
  color: var(--navy-dark);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.35;
}

.contact-result p {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.9;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-form label,
.contact-form legend {
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 900;
}

.contact-form label span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 8px;
  padding: 0 8px;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 9px;
  padding: 15px 16px;
  color: #18324e;
  background: #f8fbff;
  border: 1px solid #cddfec;
  border-radius: 5px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(10, 52, 97, 0.12);
}

.contact-form fieldset {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.checkbox-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.checkbox-list label {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  background: #f8fbff;
  border: 1px solid #cddfec;
  border-radius: 5px;
  color: #213a55;
  font-size: 14px;
  font-weight: 900;
}

.checkbox-list input {
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
  accent-color: var(--navy);
}

.message-field {
  display: block;
  margin-top: 28px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 180px;
  line-height: 1.75;
}

.contact-form .button {
  position: relative;
  width: 100%;
  min-height: 66px;
  margin-top: 28px;
  border: 0;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(5, 34, 65, 0.18);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.contact-form .button::after {
  margin-left: 14px;
  color: currentColor;
  font-size: 20px;
  line-height: 1;
  content: "›";
  transition: transform 0.18s ease;
}

.contact-form .button:hover,
.contact-form .button:focus-visible {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 22px 44px rgba(5, 34, 65, 0.28), 0 0 0 2px var(--navy) inset;
  transform: translateY(-3px);
}

.contact-form .button:hover::after,
.contact-form .button:focus-visible::after {
  transform: translateX(5px);
}

.work-scene-section {
  max-width: 1280px;
}

.work-scene-section h2 {
  font-size: 38px;
}

.work-scene-section > p.section-lead {
  max-width: 900px;
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.8;
}

.scene-section h2 {
  font-size: 38px;
}

.scene-section > p.section-lead {
  max-width: 900px;
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.8;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.scene-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 18px 44px rgba(5, 34, 65, 0.09);
}

.scene-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.scene-card > div {
  padding: 25px 24px 28px;
}

.scene-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  color: var(--navy);
  background: #e8f4ff;
  border: 1px solid #cde3f6;
  font-size: 12px;
  font-weight: 900;
}

.scene-card h3 {
  margin: 14px 0 0;
  color: var(--navy-dark);
  font-size: 24px;
  line-height: 1.45;
}

.scene-card p {
  margin: 10px 0 0;
  color: #213a55;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.8;
}

.scene-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.scene-card dl div {
  padding: 14px 15px;
  background: #f4f9fe;
  border: 1px solid #dbeaf6;
  border-radius: 6px;
}

.scene-card dt {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.scene-card dd {
  margin: 5px 0 0;
  color: #213a55;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.65;
}

.case-support-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1280px;
  margin: -6px auto 82px;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(2, 26, 53, 0.96) 0%, rgba(6, 42, 85, 0.92) 44%, rgba(246, 251, 255, 0.94) 44%, rgba(246, 251, 255, 0.94) 100%),
    url("./assets/generated-case-office-heat.jpg") right center / 48% auto no-repeat;
  border: 1px solid #d7e8f6;
  border-radius: 7px;
  box-shadow: 0 22px 52px rgba(5, 34, 65, 0.1);
}

.case-support-band::after {
  position: absolute;
  top: -34px;
  bottom: -34px;
  left: 44%;
  width: 82px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  transform: skewX(-14deg);
  content: "";
}

.case-support-band > div,
.case-support-band .support-targets {
  position: relative;
  z-index: 1;
}

.case-support-band > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  padding: 48px 48px 50px;
}

.case-support-band span {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: #dcecf9;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.case-support-band h2 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 36px;
  line-height: 1.45;
}

.case-support-band p {
  max-width: 430px;
  margin: 18px 0 0;
  color: #dcecf9;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.9;
}

.support-targets {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  padding: 46px 56px;
}

.support-targets strong {
  display: block;
  color: var(--navy-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.case-support-band ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.case-support-band li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  margin: 0;
  padding: 0 18px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #d6e7f5;
  border-radius: 4px;
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 12px 26px rgba(5, 34, 65, 0.08);
}

.case-support-band li::before {
  position: static;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  background: var(--navy);
  border-radius: 50%;
  content: "";
}

.work-video-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 42px;
}

.work-video-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 18px 44px rgba(5, 34, 65, 0.09);
}

.work-video-card-large {
  grid-row: span 1;
}

.work-video-card video {
  width: 100%;
  height: 640px;
  min-height: 0;
  object-fit: cover;
  background: #031b39;
}

.work-video-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 92px 24px 24px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 26, 53, 0.76) 48%, rgba(2, 26, 53, 0.94) 100%);
}

.work-video-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 900;
}

.work-video-card h3 {
  margin: 9px 0 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  min-height: 34px;
}

.work-video-card p {
  margin: 6px 0 0;
  color: #e5f1fb;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-height: 112px;
  padding: 28px clamp(34px, 5vw, 70px);
  color: #d9e9f8;
  background: linear-gradient(90deg, #021a35 0%, #031f3d 55%, #02172f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  min-width: 286px;
  gap: 15px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 4px;
  box-shadow: 0 12px 26px rgba(0, 10, 26, 0.26);
}

.footer-brand strong {
  color: #fff;
  font-size: 17px;
  letter-spacing: 0;
}

.footer-brand small {
  margin-top: 4px;
  color: #cfe2f2;
  font-size: 12px;
  letter-spacing: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  color: #cfe2f2;
  font-size: 13.5px;
  font-weight: 800;
}

.site-footer nav a {
  padding: 6px 17px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.18s ease, opacity 0.18s ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
  opacity: 1;
}

.site-footer p {
  margin: 0;
  color: #b9ccdd;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .site-header {
    padding-left: 24px;
  }

  .brand {
    min-width: 210px;
  }

  .site-nav a {
    padding: 0 11px;
  }

  .concern-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .side-photo {
    display: none;
  }

  .contact-cta {
    grid-template-columns: 1fr;
  }

  .contact-cta img {
    display: none;
  }
}

@media (max-width: 900px) {
  .mobile-break {
    display: block;
  }

  .site-header {
    min-height: 68px;
    padding-left: 22px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 10px 20px 18px;
    background: #fff;
    box-shadow: 0 18px 30px rgba(2, 26, 53, 0.12);
  }

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

  .site-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-contact {
    justify-content: center;
    min-height: 48px;
    margin-top: 12px;
    border-radius: 5px;
    border-bottom: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    background: #fff;
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
    height: 46vw;
    max-height: 380px;
  }

  .hero-copy {
    margin-top: 0;
    max-width: none;
    padding: 54px 28px 44px;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero p {
    font-size: 16px;
  }

  .desktop-break {
    display: none;
  }

  .service-grid,
  .case-grid,
  .business-band,
  .business-points,
  .page-hero,
  .case-business-inner,
  .business-planning-inner,
  .business-planning-panel,
  .detail-grid,
  .work-video-grid,
  .scene-grid,
  .case-support-band,
  .service-detail-card,
  .service-detail-card:nth-child(even),
  .company-principles,
  .company-service-inner,
  .company-service-list,
  .contact-page-section,
  .form-grid,
  .checkbox-list,
  .two-column,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    padding: 54px 28px 44px;
  }

  .page-hero-visual {
    order: -1;
    min-height: 280px;
  }

  .service-detail-card:nth-child(even) img {
    order: 0;
  }

  .service-detail-card,
  .service-detail-card img {
    min-height: 0;
  }

  .service-detail-list {
    gap: 34px;
  }

  .service-detail-card,
  .service-detail-card:nth-child(even) {
    background: #fff;
  }

  .service-detail-card::before,
  .service-detail-card::after {
    display: none;
  }

  .service-detail-card img {
    height: 280px;
    border-radius: 7px 7px 0 0;
    box-shadow: none;
  }

  .service-detail-card .detail-card-body {
    margin: 0;
    padding: 32px 28px;
    border-top: 0;
    transform: none;
  }

  .service-detail-card:nth-child(even) .detail-card-body {
    transform: none;
  }

  .service-detail-card h3 {
    font-size: 27px;
  }

  .service-spec {
    grid-template-columns: 1fr;
  }

  .combination-item {
    grid-template-columns: 1fr;
  }

  .combination-item b {
    transform: rotate(90deg);
  }

  .page-section {
    padding: 56px 24px;
  }

  .case-business-band {
    padding: 46px 22px;
  }

  .case-business-visual {
    min-height: 280px;
  }

  .case-business-visual img {
    min-height: 280px;
    border-radius: 7px 7px 0 0;
  }

  .case-business-copy {
    padding: 38px 28px 34px;
  }

  .case-business-copy h2 {
    font-size: 28px;
  }

  .business-planning-band {
    padding: 54px 22px;
  }

  .business-planning-copy h2 {
    font-size: 30px;
  }

  .work-video-card {
    display: block;
  }

  .work-video-card video {
    height: auto;
    min-height: 0;
    aspect-ratio: 9 / 16;
  }

  .page-cta {
    display: block;
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
    padding: 30px 24px;
  }

  .service-page-cta {
    min-height: 0;
  }

  .page-cta .button {
    width: 100%;
    margin-top: 22px;
  }

  .service-page-cta h2 {
    font-size: 28px;
  }

  .service-page-cta .button {
    min-width: 0;
  }

  .company-intro-section h2,
  .company-profile-heading h2 {
    font-size: 30px;
  }

  .company-intro-section > p.section-lead {
    font-size: 16px;
  }

  .company-principles article {
    min-height: 0;
  }

  .company-service-band {
    background:
      linear-gradient(90deg, rgba(236, 247, 255, 0.98) 0%, rgba(236, 247, 255, 0.94) 100%),
      url("./assets/generated-business-illustration-bg.jpg") right bottom / 78% auto no-repeat;
  }

  .company-service-copy h2 {
    font-size: 30px;
  }

  .company-service-item {
    min-height: 0;
  }

  .contact-page-section {
    gap: 28px;
  }

  .contact-page-intro {
    position: static;
    padding: 32px 28px;
  }

  .contact-form {
    padding: 30px 24px;
  }

  .section-head {
    display: block;
    text-align: center;
  }

  .section-head a {
    position: static;
    display: inline-flex;
    margin-top: 12px;
  }

  .business-band {
    margin-right: 20px;
    margin-left: 20px;
    padding: 30px 24px;
  }

  .business-points div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .flow article::after {
    display: none;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-right: 16px;
    padding-left: 20px;
  }

  .nav-toggle {
    position: fixed !important;
    top: 12px !important;
    right: 16px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 30;
    flex: 0 0 44px;
    margin-right: 0;
    margin-left: auto;
    background: #fff;
  }

  .section {
    padding: 30px 20px;
  }

  .hero-copy,
  .page-hero-copy,
  .contact-cta > div,
  .page-cta > div {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
  }

  .hero,
  .page-hero {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero p,
  .page-hero p,
  .section-lead,
  .contact-cta h2,
  .contact-cta p,
  .flow h3,
  .case-support-band h2,
  .case-support-band p,
  .business-copy h2,
  .business-copy p,
  .service-card-cta {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero p,
  .page-hero p {
    width: calc(100vw - 56px);
  }

  .concern-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .flow {
    padding: 46px 20px 54px;
  }

  .flow-grid {
    gap: 14px;
    margin-top: 24px;
  }

  .flow article,
  .flow article:nth-child(4),
  .flow article:nth-child(5),
  .flow article:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    padding: 22px 76px 22px 72px;
  }

  .flow article::after {
    display: none;
  }

  .flow h3 {
    min-height: 0;
    white-space: normal;
    font-size: 18px;
  }

  .flow p {
    max-width: none;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.65;
  }

  .flow span {
    left: 20px;
    top: 22px;
  }

  .flow-icon {
    right: 20px;
    bottom: 20px;
    width: 38px;
    height: 38px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-copy {
    transform: none;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .service-card img,
  .case-card img {
    height: 180px;
  }

  .business-band {
    margin-right: 0;
    margin-left: 0;
    border-radius: 0;
  }

  .contact-cta {
    min-height: 0;
    padding: 42px 24px 46px;
  }

  .contact-cta > div {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .contact-cta h2 {
    font-size: 27px;
    line-height: 1.45;
  }

  .contact-cta p {
    font-size: 14px;
    line-height: 1.85;
  }

  .contact-tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-tags li {
    justify-content: center;
    min-height: 36px;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-actions .button {
    min-width: 0;
    min-height: 58px;
    padding: 0 18px;
    font-size: 14px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .detail-card img {
    height: 190px;
  }

  .step-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .steps-detail::before {
    display: none;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    padding-bottom: 8px;
  }

  .company-table td {
    padding-top: 10px;
  }
}
