:root {
  --ink: #30343a;
  --ink-soft: #606773;
  --brand-blue: #063a70;
  --brand-blue-mid: #0b4f8a;
  --navy: #063a70;
  --navy-strong: #05264d;
  --steel: #b7bbc3;
  --steel-dark: #7b838f;
  --metal: #d9dde2;
  --paper: #f4f6f8;
  --white: #ffffff;
  --accent: #c7952e;
  --accent-strong: #e2b447;
  --teal: #365f66;
  --highlight: #e6e9ed;
  --line: rgba(21, 32, 43, 0.13);
  --line-strong: rgba(21, 32, 43, 0.22);
  --shadow: 0 18px 42px rgba(5, 28, 52, 0.11);
  --shadow-soft: 0 8px 22px rgba(6, 37, 65, 0.06);
  --max: 1180px;
}

html:lang(en),
html:lang(ja),
html:lang(ko),
html:lang(de) {
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0, rgba(244, 246, 248, 0.96) 420px),
    linear-gradient(90deg, rgba(6, 58, 112, 0.055), transparent 34%, rgba(199, 149, 46, 0.05)),
    var(--paper);
  line-height: 1.7;
}

html:lang(ja) body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.78;
}

html:lang(ko) body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  line-height: 1.76;
}

html:lang(de) body {
  hyphens: auto;
}

html:lang(de) .hero-copy h1,
html:lang(de) .page-hero h1,
html:lang(de) .section-head h2,
html:lang(de) .request-cta h2 {
  overflow-wrap: break-word;
}

html:lang(de) .request-cta h2 {
  font-size: 2.15rem;
}

html:lang(ko) .hero-copy h1,
html:lang(ko) .page-hero h1,
html:lang(ko) .section-head h2,
html:lang(ko) .request-cta h2 {
  word-break: keep-all;
  overflow-wrap: break-word;
}

html:lang(ja) .hero-copy h1,
html:lang(ja) .page-hero h1,
html:lang(ja) .section-head h2,
html:lang(ja) .request-cta h2 {
  line-break: strict;
  word-break: auto-phrase;
}

body.request-evaluation-page {
  background:
    linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)),
    linear-gradient(rgba(6, 58, 112, 0.072) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 58, 112, 0.072) 1px, transparent 1px),
    linear-gradient(rgba(6, 58, 112, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 58, 112, 0.034) 1px, transparent 1px),
    linear-gradient(120deg, rgba(6, 58, 112, 0.06), transparent 48%, rgba(226, 180, 71, 0.07)),
    var(--paper);
  background-position: center, -1px -1px, -1px -1px, -1px -1px, -1px -1px, center, center;
  background-size: auto, 48px 48px, 48px 48px, 12px 12px, 12px 12px, auto, auto;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(184, 118, 45, 0.36);
  outline-offset: 3px;
}

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

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 38, 77, 0.98), rgba(6, 58, 112, 0.96)),
    var(--navy-strong);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 12px 28px rgba(5, 28, 52, 0.16);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 8px));
  box-shadow: none;
}

.site-header:focus-within {
  transform: translateY(0);
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
  padding: 7px;
  border-radius: 50%;
  border: 2px solid rgba(226, 180, 71, 0.82);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(217, 221, 226, 0.88));
  box-shadow: 0 10px 24px rgba(5, 28, 52, 0.24), 0 0 0 4px rgba(226, 180, 71, 0.12);
}

.brand-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--white);
}

.brand-copy span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  border-color: rgba(226, 180, 71, 0.46);
  background: rgba(226, 180, 71, 0.12);
}

.language-menu {
  position: relative;
  min-width: 148px;
}

.language-menu summary {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 9px 6px 7px;
  border: 1px solid rgba(226, 180, 71, 0.34);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(226, 180, 71, 0.07));
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary:hover,
.language-menu[open] summary {
  border-color: rgba(241, 201, 101, 0.78);
  background: linear-gradient(135deg, rgba(226, 180, 71, 0.22), rgba(255, 255, 255, 0.09));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 8px 20px rgba(0, 0, 0, 0.14);
}

.language-menu summary:focus-visible {
  outline: 3px solid rgba(226, 180, 71, 0.5);
  outline-offset: 3px;
}

.language-menu-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid rgba(241, 201, 101, 0.5);
  border-radius: 9px;
  color: #f1c965;
  background: linear-gradient(145deg, rgba(226, 180, 71, 0.22), rgba(6, 58, 112, 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.language-menu-icon::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
  background: linear-gradient(transparent 45%, currentColor 46%, currentColor 54%, transparent 55%);
}

.language-menu-icon::after {
  content: "";
  position: absolute;
  inset: 8px 11px;
  border-right: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 50%;
}

.language-menu-current {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-menu-caret {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.language-menu[open] .language-menu-caret {
  transform: translateY(2px) rotate(225deg);
}

.language-menu-list {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 60;
  width: max-content;
  min-width: 232px;
  padding: 8px;
  border: 1px solid rgba(5, 38, 77, 0.16);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(5, 28, 52, 0.24);
}

.language-menu-heading {
  display: block;
  padding: 6px 9px 8px;
  color: rgba(5, 38, 77, 0.58);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-nav .language-menu-option {
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  gap: 10px;
  justify-content: stretch;
  padding: 7px 9px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--navy-strong);
  font-size: 0.9rem;
  text-align: left;
}

.language-menu-option-code {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 58, 112, 0.13);
  border-radius: 8px;
  color: var(--brand-blue);
  background: rgba(6, 58, 112, 0.06);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.language-menu-option-name {
  min-width: 0;
  align-self: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav .language-menu-option:hover,
.site-nav .language-menu-option:focus-visible {
  border: 0;
  background: rgba(6, 58, 112, 0.08);
  color: var(--navy-strong);
  outline: none;
}

.site-nav .language-menu-option[aria-current="page"] {
  background: rgba(226, 180, 71, 0.22);
  color: var(--navy-strong);
}

.site-nav .language-menu-option[aria-current="page"] .language-menu-option-code {
  border-color: rgba(199, 149, 46, 0.34);
  color: var(--navy-strong);
  background: rgba(255, 255, 255, 0.56);
}

.site-nav .language-menu-option[aria-current="page"]::after {
  content: "✓";
  grid-column: 3;
  justify-self: center;
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.language-assist {
  position: fixed;
  top: 98px;
  right: clamp(18px, 3vw, 46px);
  z-index: 45;
  width: min(460px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px 14px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(6, 58, 112, 0.16);
  border-radius: 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 248, 0.98)),
    var(--white);
  box-shadow: 0 22px 54px rgba(5, 28, 52, 0.22);
  animation: language-assist-enter 220ms ease-out both;
}

.language-assist::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-strong), var(--brand-blue));
}

.language-assist.is-leaving {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-assist-icon {
  position: relative;
  width: 42px;
  height: 42px;
  grid-row: 1;
  display: block;
  border: 1px solid rgba(199, 149, 46, 0.34);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(226, 180, 71, 0.24), rgba(6, 58, 112, 0.08));
}

.language-assist-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--brand-blue);
  border-radius: 50%;
  background: linear-gradient(transparent 44%, var(--brand-blue) 45%, var(--brand-blue) 55%, transparent 56%);
}

.language-assist-icon::after {
  content: "";
  position: absolute;
  inset: 13px 17px;
  border-right: 1px solid var(--brand-blue);
  border-left: 1px solid var(--brand-blue);
  border-radius: 50%;
}

.language-assist-content {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.language-assist-eyebrow {
  color: var(--brand-blue);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.language-assist-content strong {
  color: var(--navy-strong);
  font-size: 1.04rem;
  line-height: 1.35;
}

.language-assist-content > span:last-child {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
}

.language-assist-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.language-assist-primary,
.language-assist-stay {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.language-assist-primary {
  border: 1px solid var(--brand-blue);
  color: var(--white);
  background: var(--brand-blue);
}

.language-assist-primary:hover {
  color: var(--white);
  background: var(--navy-strong);
}

.language-assist-stay {
  border: 1px solid rgba(6, 58, 112, 0.18);
  color: var(--brand-blue);
  background: rgba(6, 58, 112, 0.05);
}

.language-assist-stay:hover {
  background: rgba(6, 58, 112, 0.1);
}

@keyframes language-assist-enter {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .language-assist {
    top: auto;
    right: 16px;
    bottom: 16px;
    width: min(460px, calc(100vw - 32px));
  }
}

@media (max-width: 520px) {
  .language-assist {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 15px;
    border-radius: 16px;
  }

  .language-assist-icon {
    width: 36px;
    height: 36px;
  }

  .language-assist-icon::before {
    inset: 8px;
  }

  .language-assist-icon::after {
    inset: 11px 14px;
  }

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

.site-nav .nav-cta {
  color: var(--navy-strong);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--navy-strong);
  background: #f0c964;
}

.site-nav .nav-secondary-cta {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav .nav-secondary-cta:hover,
.site-nav .nav-secondary-cta[aria-current="page"] {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.13);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(50px, 5.6vw, 84px) clamp(18px, 5vw, 60px);
  scroll-margin-top: 92px;
}

.section > * {
  min-width: 0;
}

@media (min-width: 921px) {
  .section {
    min-height: min(720px, calc(100svh - 84px));
    display: grid;
    align-content: center;
  }

  .hero.section {
    min-height: calc(100svh - 83px);
  }

  .page-hero {
    min-height: min(680px, calc(100svh - 84px));
  }

  .split,
  .detail-layout,
  .request-cta {
    align-items: center;
  }

  .visual-row {
    min-height: min(560px, calc(72svh - 84px));
    align-items: stretch;
  }

  .visual-row .photo-placeholder {
    min-height: 100%;
  }

  .request-cta {
    min-height: clamp(300px, 40svh, 360px);
    padding-top: clamp(44px, 4.5vw, 60px);
    padding-bottom: clamp(44px, 4.5vw, 60px);
  }

  .form-layout {
    min-height: auto;
    align-items: start;
  }

  html:lang(en) .section,
  html:lang(ja) .section,
  html:lang(ko) .section,
  html:lang(de) .section {
    min-height: auto;
    padding-top: clamp(72px, 6vw, 96px);
    padding-bottom: clamp(72px, 6vw, 96px);
  }

  html:lang(en) .hero.section,
  html:lang(ja) .hero.section,
  html:lang(ko) .hero.section,
  html:lang(de) .hero.section {
    min-height: clamp(620px, 78svh, 760px);
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
    gap: clamp(36px, 5vw, 64px);
  }

  html:lang(en) .hero-copy h1,
  html:lang(ja) .hero-copy h1,
  html:lang(ko) .hero-copy h1,
  html:lang(de) .hero-copy h1 {
    font-size: clamp(3rem, 3.6vw, 3.35rem);
  }

  html:lang(en) .hero-copy h1 {
    font-size: clamp(2.95rem, 3.45vw, 3.25rem);
  }

  html:lang(ja) .hero-copy h1.ja-home-title {
    font-size: clamp(2.7rem, 3.2vw, 3rem);
  }

  html:lang(ko) .hero-copy h1 {
    font-size: clamp(2.8rem, 3.3vw, 3.1rem);
  }

  html:lang(de) .hero-copy h1 {
    font-size: clamp(2.55rem, 3vw, 2.9rem);
  }

  html:lang(en) .hero-copy .eyebrow,
  html:lang(ja) .hero-copy .eyebrow,
  html:lang(ko) .hero-copy .eyebrow,
  html:lang(de) .hero-copy .eyebrow {
    max-width: 42ch;
    line-height: 1.45;
  }

  html:lang(en) .page-hero,
  html:lang(ja) .page-hero,
  html:lang(ko) .page-hero,
  html:lang(de) .page-hero {
    min-height: clamp(540px, 68svh, 680px);
  }

  html:lang(en) body.request-evaluation-page .page-hero,
  html:lang(ja) body.request-evaluation-page .page-hero,
  html:lang(ko) body.request-evaluation-page .page-hero,
  html:lang(de) body.request-evaluation-page .page-hero {
    min-height: auto;
  }

  html:lang(en) .page-hero h1 {
    font-size: clamp(2.75rem, 3.25vw, 3.05rem);
  }

  html:lang(ja) .page-hero h1 {
    font-size: clamp(2.7rem, 3.2vw, 3rem);
  }

  html:lang(ko) .page-hero h1 {
    font-size: clamp(2.65rem, 3.1vw, 2.95rem);
  }

  html:lang(de) .page-hero h1 {
    font-size: clamp(2.35rem, 2.8vw, 2.7rem);
  }

  html:lang(en) .request-cta,
  html:lang(ja) .request-cta,
  html:lang(ko) .request-cta,
  html:lang(de) .request-cta {
    min-height: 360px;
    grid-template-columns: clamp(220px, 22vw, 260px) minmax(0, 1fr);
    grid-template-areas:
      "photo copy"
      "photo actions";
    column-gap: clamp(36px, 4vw, 56px);
    row-gap: 22px;
  }

  html:lang(en) .request-cta .cta-photo,
  html:lang(ja) .request-cta .cta-photo,
  html:lang(ko) .request-cta .cta-photo,
  html:lang(de) .request-cta .cta-photo {
    grid-area: photo;
  }

  html:lang(en) .request-cta .cta-copy,
  html:lang(ja) .request-cta .cta-copy,
  html:lang(ko) .request-cta .cta-copy,
  html:lang(de) .request-cta .cta-copy {
    grid-area: copy;
  }

  html:lang(en) .request-cta .cta-actions,
  html:lang(ja) .request-cta .cta-actions,
  html:lang(ko) .request-cta .cta-actions,
  html:lang(de) .request-cta .cta-actions {
    grid-area: actions;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  html:lang(en) .request-cta h2 {
    font-size: clamp(1.95rem, 2.5vw, 2.25rem);
  }

  html:lang(ja) .request-cta h2 {
    font-size: clamp(2rem, 2.6vw, 2.3rem);
  }

  html:lang(ko) .request-cta h2 {
    font-size: clamp(1.95rem, 2.5vw, 2.25rem);
  }

  html:lang(de) .request-cta h2 {
    font-size: clamp(1.7rem, 2.2vw, 2rem);
  }

  html:lang(en) .request-cta .button,
  html:lang(ja) .request-cta .button,
  html:lang(ko) .request-cta .button,
  html:lang(de) .request-cta .button {
    max-width: 310px;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }
}

.hero {
  min-height: calc(100dvh - 75px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 3.55rem;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--brand-blue);
}

.hero-copy h1 span,
.page-hero h1 span {
  display: block;
  text-wrap: balance;
}

html:lang(ja) .ja-home-title .ja-title-prefix,
html:lang(ja) .ja-home-title .ja-title-core {
  display: inline;
}

.preferred-break {
  word-break: keep-all;
  overflow-wrap: normal;
}

.page-hero h1 {
  font-size: 3.2rem;
  max-width: 960px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
  line-height: 1.82;
}

html:lang(zh-Hant) .lead .preferred-break {
  display: block;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.form-action-note {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.request-draft-status {
  margin: 6px 0 0;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.5;
}

.button {
  min-height: 46px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--navy);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 46%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(180deg, #0c5b94 0%, var(--brand-blue) 52%, var(--navy-strong) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18),
    0 12px 24px rgba(7, 31, 63, 0.2);
}

.button.secondary {
  color: var(--navy);
  background: linear-gradient(180deg, var(--white) 0%, rgba(244, 246, 248, 0.95) 48%, rgba(217, 221, 226, 0.74) 100%);
  border-color: rgba(6, 58, 112, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -2px 0 rgba(6, 58, 112, 0.08);
}

.button.tertiary {
  color: var(--navy);
  background: transparent;
  border-color: rgba(6, 58, 112, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.button.utility {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(6, 58, 112, 0.16);
  box-shadow: none;
}

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

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(7, 31, 63, 0.12);
}

.site-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(6, 58, 112, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(217, 221, 226, 0.74)),
    var(--metal);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 40px rgba(5, 28, 52, 0.1);
}

.site-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 30%, rgba(5, 38, 77, 0.3)),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 16px);
  mix-blend-mode: multiply;
}

.site-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.site-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(5, 28, 52, 0.82));
}

.site-photo figcaption strong {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.25;
}

.site-photo figcaption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-media {
  display: grid;
  gap: 14px;
}

.hero-photo {
  min-height: 390px;
  aspect-ratio: 4 / 3;
}

.page-hero-with-photo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.page-hero-photo {
  min-height: 390px;
  aspect-ratio: 4 / 3;
}

.entry-photo {
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  margin: -8px -8px 0;
  overflow: hidden;
  border: 1px solid rgba(6, 58, 112, 0.16);
  border-radius: 6px;
  background: var(--metal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  flex: 0 0 auto;
}

.entry-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reserved-visual,
.photo-placeholder {
  min-height: 390px;
  display: grid;
  align-content: end;
  gap: 4px;
  padding: 22px;
  border: 1px solid rgba(6, 58, 112, 0.2);
  border-radius: 8px;
  color: var(--navy-strong);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(217, 221, 226, 0.82)),
    repeating-linear-gradient(90deg, rgba(6, 58, 112, 0.055) 0 1px, transparent 1px 24px);
  box-shadow: var(--shadow-soft);
}

.media-grid,
.visual-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.visual-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vw, 86px);
}

.reserved-visual {
  min-height: 160px;
}

.reserved-visual-large {
  min-height: 390px;
  position: relative;
  padding: 28px;
}

.reserved-mark {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 180, 71, 0.54);
  border-radius: 4px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--navy-strong));
  font-weight: 950;
  letter-spacing: 0;
}

.reserved-visual strong,
.photo-placeholder {
  font-size: 1.04rem;
  font-weight: 900;
}

.reserved-visual span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.photo-placeholder {
  min-height: 180px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(217, 221, 226, 0.82)),
    repeating-linear-gradient(90deg, rgba(6, 58, 112, 0.065) 0 1px, transparent 1px 18px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.split h2,
.request-cta h2,
.detail-main h2,
.form-section-heading h2,
.capability-band h2,
.process h2,
.request-preview h2 {
  margin: 0;
  color: var(--navy-strong);
  font-size: 2.55rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.entry-grid,
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.entry-card,
.capability-grid article,
.detail-side,
.request-preview,
fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.entry-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.entry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 149, 46, 0.46);
  background: linear-gradient(180deg, var(--white), rgba(226, 180, 71, 0.08));
  box-shadow: 0 22px 46px rgba(5, 28, 52, 0.14);
}

.entry-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 149, 46, 0.42);
  border-radius: 8px;
  color: var(--navy-strong);
  background: rgba(226, 180, 71, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  font-weight: 900;
}

.entry-card h3,
.capability-grid h3,
.detail-side h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: 1.46rem;
  line-height: 1.28;
}

.entry-card h3 {
  margin: 4px 0 2px;
}

.entry-card p,
.capability-grid p,
.detail-side p,
.split-copy p,
.request-cta p {
  margin: 0;
  color: var(--ink-soft);
}

.entry-card p {
  line-height: 1.55;
}

.text-link {
  min-height: 46px;
  display: grid;
  place-items: center;
  margin-top: auto;
  padding: 10px 14px;
  border: 1px solid rgba(6, 58, 112, 0.22);
  border-radius: 10px;
  color: var(--navy);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 248, 0.94) 54%, rgba(217, 221, 226, 0.78) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -2px 0 rgba(6, 58, 112, 0.08);
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.entry-card:hover .text-link {
  color: var(--navy-strong);
  border-color: var(--accent-strong);
  background: linear-gradient(180deg, #f1c965 0%, var(--accent-strong) 56%, #c7952e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -2px 0 rgba(5, 38, 77, 0.14),
    0 12px 22px rgba(199, 149, 46, 0.2);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}

.positioning-split {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
}

.split-copy {
  display: grid;
  gap: 20px;
  align-content: start;
}

.positioning-split .split-copy {
  max-width: 640px;
}

@media (min-width: 921px) {
  .positioning-split {
    align-items: end;
  }

  .positioning-split .experience-carousel-track {
    width: 100%;
    min-height: 0;
  }

  html:lang(zh-Hant) .positioning-split {
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  }

  html:lang(zh-Hant) .positioning-split h2 {
    font-size: clamp(1.9rem, 3vw, 2.25rem);
  }

  html:lang(zh-Hant) .positioning-split h2 span {
    white-space: nowrap;
  }

  .positioning-split .split-copy {
    align-self: end;
    margin-bottom: 40px;
  }

  html:lang(zh-Hant) .positioning-split {
    align-items: start;
  }

  html:lang(zh-Hant) .positioning-split .split-copy {
    grid-template-rows: auto 1fr auto;
    align-self: stretch;
    align-content: stretch;
  }

  html:lang(zh-Hant) .positioning-split .split-copy > p {
    align-self: center;
    font-size: clamp(1.1rem, 1.3vw, 1.28rem);
    line-height: 1.78;
  }

  html:lang(zh-Hant) .positioning-split .expertise-points {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-self: end;
    width: 100%;
  }

  html:lang(zh-Hant) .positioning-split .expertise-points span {
    grid-column: span 2;
    padding-inline: 8px;
  }

  html:lang(zh-Hant) .positioning-split .expertise-points span:nth-child(4) {
    grid-column: 2 / span 2;
  }

  html:lang(zh-Hant) .positioning-split .expertise-points span:nth-child(5) {
    grid-column: 4 / span 2;
  }

  html:lang(en) .positioning-split,
  html:lang(ja) .positioning-split,
  html:lang(ko) .positioning-split,
  html:lang(de) .positioning-split {
    align-items: start;
  }

  html:lang(en) .positioning-split .split-copy,
  html:lang(ja) .positioning-split .split-copy,
  html:lang(ko) .positioning-split .split-copy,
  html:lang(de) .positioning-split .split-copy {
    grid-template-rows: auto 1fr auto;
    align-self: stretch;
    align-content: stretch;
    gap: 18px;
  }

  html:lang(en) .positioning-split .split-copy > p,
  html:lang(ja) .positioning-split .split-copy > p,
  html:lang(ko) .positioning-split .split-copy > p,
  html:lang(de) .positioning-split .split-copy > p {
    align-self: center;
    font-size: clamp(1.02rem, 1.12vw, 1.12rem);
    line-height: 1.72;
  }

  html:lang(de) .positioning-split .split-copy > p {
    font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  }

  html:lang(en) .positioning-split h2 {
    font-size: clamp(1.78rem, 2.25vw, 2.05rem);
  }

  html:lang(ja) .positioning-split h2 {
    font-size: clamp(1.9rem, 2.4vw, 2.15rem);
  }

  html:lang(ko) .positioning-split h2 {
    font-size: clamp(1.82rem, 2.3vw, 2.08rem);
  }

  html:lang(de) .positioning-split h2 {
    font-size: clamp(1.6rem, 2vw, 1.82rem);
  }

  html:lang(ja) .positioning-split .expertise-points,
  html:lang(ko) .positioning-split .expertise-points {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-self: end;
    width: 100%;
  }

  html:lang(ja) .positioning-split .expertise-points span,
  html:lang(ko) .positioning-split .expertise-points span {
    grid-column: span 2;
    padding-inline: 8px;
  }

  html:lang(ja) .positioning-split .expertise-points span:nth-child(4),
  html:lang(ko) .positioning-split .expertise-points span:nth-child(4) {
    grid-column: 2 / span 2;
  }

  html:lang(ja) .positioning-split .expertise-points span:nth-child(5),
  html:lang(ko) .positioning-split .expertise-points span:nth-child(5) {
    grid-column: 4 / span 2;
  }

  html:lang(en) .positioning-split .expertise-points,
  html:lang(de) .positioning-split .expertise-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-self: end;
    width: 100%;
  }

  html:lang(en) .positioning-split .expertise-points span,
  html:lang(de) .positioning-split .expertise-points span {
    grid-column: span 2;
    padding-inline: 8px;
    font-size: 0.82rem;
  }

  html:lang(de) .positioning-split .expertise-points span {
    font-size: 0.78rem;
  }

  html:lang(en) .positioning-split .expertise-points span:nth-child(5),
  html:lang(de) .positioning-split .expertise-points span:nth-child(5) {
    grid-column: 2 / span 2;
  }
}

.experience-visuals {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.experience-carousel-track {
  position: relative;
  min-height: clamp(320px, 32vw, 430px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}

.experience-slide {
  position: absolute;
  inset: 0;
  min-height: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease, visibility 360ms ease;
}

.experience-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.experience-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  min-height: 28px;
  align-items: center;
}

.experience-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(6, 58, 112, 0.32);
  border-radius: 999px;
  background: rgba(6, 58, 112, 0.16);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.experience-dot:hover,
.experience-dot:focus-visible {
  border-color: var(--accent-strong);
  background: rgba(226, 180, 71, 0.62);
  outline: none;
  box-shadow: 0 0 0 4px rgba(226, 180, 71, 0.2);
}

.experience-dot.is-active {
  width: 24px;
  border-color: var(--accent-strong);
  background: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.tag-list,
.entry-points,
.expertise-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.tag-list span,
.entry-points span,
.expertise-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid rgba(6, 58, 112, 0.2);
  border-radius: 999px;
  color: var(--navy-strong);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(217, 221, 226, 0.78) 42%, rgba(6, 58, 112, 0.1) 68%, rgba(226, 180, 71, 0.2) 100%),
    repeating-linear-gradient(100deg, rgba(6, 58, 112, 0.08) 0 1px, transparent 1px 11px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(6, 58, 112, 0.12),
    0 8px 18px rgba(5, 28, 52, 0.05);
  font-size: 0.9rem;
  font-weight: 900;
}

.entry-points span {
  padding-inline: 11px;
  font-size: 0.86rem;
}

html:lang(en) .entry-points,
html:lang(de) .entry-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

html:lang(ja) .entry-points,
html:lang(ko) .entry-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

html:lang(en) .entry-points span,
html:lang(ja) .entry-points span,
html:lang(ko) .entry-points span,
html:lang(de) .entry-points span,
html:lang(en) .expertise-points span,
html:lang(ja) .expertise-points span,
html:lang(ko) .expertise-points span,
html:lang(de) .expertise-points span {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 12px;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

html:lang(en) .entry-points span:nth-child(3):last-child,
html:lang(de) .entry-points span:nth-child(3):last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(62%, 190px);
}

.service-scope .section-head,
.service-value .section-head {
  max-width: 820px;
}

.service-tags {
  max-width: 980px;
  gap: 12px;
}

.service-tags span {
  min-height: 44px;
  padding: 9px 18px;
  border-color: rgba(6, 58, 112, 0.24);
  font-size: 1rem;
}

html:lang(en) .service-tags,
html:lang(ja) .service-tags,
html:lang(ko) .service-tags,
html:lang(de) .service-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

html:lang(en) .service-tags span,
html:lang(ja) .service-tags span,
html:lang(ko) .service-tags span,
html:lang(de) .service-tags span {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 9px 12px;
  border-radius: 12px;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

html:lang(de) .service-tags span {
  font-size: 0.92rem;
  hyphens: auto;
}

.service-note {
  max-width: 980px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(6, 58, 112, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(217, 221, 226, 0.24));
  box-shadow: var(--shadow-soft);
}

.service-note h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.35;
}

.service-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

.service-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-value-grid article {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(6, 58, 112, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafb 58%, #eef2f5 100%),
    var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 16px 36px rgba(5, 28, 52, 0.08);
}

.service-value-grid article > span {
  width: 50px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(199, 149, 46, 0.44);
  border-radius: 8px;
  color: var(--navy-strong);
  background: linear-gradient(180deg, #fff7dc, rgba(226, 180, 71, 0.34));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.service-value-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1.28;
}

.service-value-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.service-flow-band {
  margin-top: clamp(18px, 3vw, 36px);
}

.capability-band {
  border: 1px solid rgba(6, 58, 112, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.54)),
    linear-gradient(rgba(6, 58, 112, 0.095) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 58, 112, 0.095) 1px, transparent 1px),
    linear-gradient(rgba(6, 58, 112, 0.046) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 58, 112, 0.046) 1px, transparent 1px),
    linear-gradient(120deg, rgba(6, 58, 112, 0.1), transparent 48%, rgba(226, 180, 71, 0.1)),
    var(--paper);
  background-position: center, -1px -1px, -1px -1px, -1px -1px, -1px -1px, center, center;
  background-size: auto, 48px 48px, 48px 48px, 12px 12px, 12px 12px, auto, auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-grid article {
  padding: 22px;
}

.development-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  counter-reset: flow;
  padding: 0;
  margin: 34px 0 0;
}

.development-flow li {
  position: relative;
  counter-increment: flow;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 188px;
  padding: 18px 16px;
  border: 1px solid rgba(6, 58, 112, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafb 54%, #eef2f5 100%),
    var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 28px rgba(5, 28, 52, 0.08);
}

.development-flow li::before {
  content: counter(flow, decimal-leading-zero);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-strong);
  background: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(226, 180, 71, 0.18);
  font-weight: 900;
}

.development-flow li::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -18px;
  z-index: 1;
  width: 22px;
  height: 14px;
  background: var(--accent);
  clip-path: polygon(0 35%, 62% 35%, 62% 0, 100% 50%, 62% 100%, 62% 65%, 0 65%);
}

.development-flow li:last-child {
  border-color: rgba(199, 149, 46, 0.42);
  background:
    linear-gradient(180deg, #fffdf8 0%, #fbf4df 56%, #f4e6c0 100%),
    #fffdf8;
}

.development-flow li:last-child::after {
  content: none;
}

.development-flow strong {
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.35;
}

.development-flow span {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.62;
}

@media (min-width: 921px) {
  .service-scope.section,
  .service-value.section {
    min-height: min(540px, calc(74svh - 84px));
  }

  .service-flow-band.section {
    min-height: auto;
  }

  html:lang(en) .development-flow,
  html:lang(ja) .development-flow,
  html:lang(ko) .development-flow,
  html:lang(de) .development-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  html:lang(en) .development-flow li,
  html:lang(ja) .development-flow li,
  html:lang(ko) .development-flow li,
  html:lang(de) .development-flow li {
    min-height: 205px;
    padding: 20px;
  }

  html:lang(en) .development-flow li:nth-child(3n)::after,
  html:lang(ja) .development-flow li:nth-child(3n)::after,
  html:lang(ko) .development-flow li:nth-child(3n)::after,
  html:lang(de) .development-flow li:nth-child(3n)::after {
    content: none;
  }

  html:lang(en) .entry-card p,
  html:lang(de) .entry-card p {
    min-height: 4.65em;
  }

  html:lang(ja) .entry-card p,
  html:lang(ko) .entry-card p {
    min-height: 5.1em;
  }

  html:lang(en) .entry-card .entry-points,
  html:lang(de) .entry-card .entry-points {
    min-height: 104px;
    align-content: flex-start;
  }

  html:lang(ja) .entry-card .entry-points,
  html:lang(ko) .entry-card .entry-points {
    min-height: 48px;
    align-content: flex-start;
  }
}

.request-cta {
  display: grid;
  grid-template-columns: clamp(200px, 19vw, 230px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(26px, 3vw, 42px);
  max-width: var(--max);
  margin-top: clamp(44px, 5vw, 72px);
  margin-bottom: clamp(64px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 38, 77, 0.98), rgba(6, 58, 112, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 26px);
  border: 1px solid rgba(226, 180, 71, 0.34);
  border-radius: 8px;
  box-shadow: 0 26px 58px rgba(5, 28, 52, 0.2);
}

.cta-copy {
  display: grid;
  align-content: center;
}

.cta-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(226, 180, 71, 0.34);
  border-radius: 8px;
  background: var(--metal);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 16px 34px rgba(0, 0, 0, 0.18);
}

.cta-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.request-cta h2,
.request-cta p {
  color: var(--white);
}

.request-cta h2 span {
  display: block;
}

html:lang(zh-Hant) .request-cta h2 span {
  white-space: nowrap;
}

.request-cta .eyebrow {
  margin-bottom: 10px;
  color: var(--accent-strong);
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 12px;
}

.request-cta .button {
  white-space: nowrap;
}

.request-cta .button.primary {
  color: var(--navy-strong);
  background: linear-gradient(180deg, #f1c965 0%, var(--accent-strong) 56%, #c7952e 100%);
  border-color: var(--accent-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -2px 0 rgba(5, 38, 77, 0.14),
    0 14px 30px rgba(226, 180, 71, 0.22);
}

.request-cta .button.secondary {
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.14);
}

.request-cta .button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.request-cta .button:hover {
  transform: translateY(-2px);
}

.page-hero {
  padding-bottom: clamp(54px, 7vw, 96px);
}

.request-evaluation-page .page-hero {
  min-height: auto;
  padding-top: 46px;
  padding-bottom: 24px;
}

.request-evaluation-page .page-hero h1 {
  max-width: 880px;
  font-size: 2.65rem;
}

.request-evaluation-page .page-hero .lead {
  max-width: 780px;
  margin-top: 16px;
}

.request-evaluation-page .form-layout {
  padding-top: 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  padding-top: clamp(24px, 3vw, 44px);
}

.detail-main,
.process {
  min-width: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list p {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(6, 58, 112, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), rgba(217, 221, 226, 0.26));
  color: var(--ink-soft);
  box-shadow: 0 6px 18px rgba(5, 28, 52, 0.04);
}

.check-list p::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--accent));
  font-size: 0.78rem;
  font-weight: 900;
}

.detail-side {
  padding: 22px;
}

.detail-side .note,
.note {
  margin-top: 14px !important;
  padding: 12px 14px;
  border: 1px solid rgba(199, 149, 46, 0.2);
  border-radius: 6px;
  background: rgba(184, 118, 45, 0.1);
  color: var(--ink) !important;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 30px 0 0;
}

.process-list li {
  counter-increment: step;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 176px;
  padding: 20px;
  border: 1px solid rgba(6, 58, 112, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), rgba(217, 221, 226, 0.24));
  box-shadow: var(--shadow-soft);
}

.process-list li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--navy-strong));
  box-shadow: 0 0 0 4px rgba(226, 180, 71, 0.16);
  border-radius: 6px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.process-list strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.35;
}

.process-list span {
  color: var(--ink-soft);
  line-height: 1.72;
}

.form-layout {
  display: block;
  padding-top: clamp(24px, 3vw, 44px);
}

.request-form {
  display: grid;
  gap: 22px;
}

.request-form > fieldset,
.request-form > .field-grid,
.request-form > .full-field,
.request-form > .service-detail {
  width: 100%;
  max-width: 760px;
}

.service-detail {
  display: grid;
  gap: 22px;
}

.service-detail[hidden] {
  display: none !important;
}

.service-detail .form-section-heading {
  margin-top: 8px;
}

.contact-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 36px;
  align-items: start;
  width: 100%;
  min-height: clamp(760px, calc(100svh - 40px), 940px);
  margin-top: clamp(8px, 2vw, 20px);
}

.contact-fields {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.form-section-heading {
  max-width: 760px;
  scroll-margin-top: 96px;
}

.form-section-heading h2 {
  max-width: 720px;
  font-size: 2rem;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 0;
  padding: 22px;
}

legend {
  padding: 0 8px;
  color: var(--navy);
  font-weight: 900;
}

label {
  color: var(--ink-soft);
  font-weight: 700;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid rgba(6, 58, 112, 0.12);
  border-radius: 6px;
  background: #fbfcfd;
}

fieldset label:hover {
  border-color: rgba(6, 58, 112, 0.28);
  background: rgba(6, 58, 112, 0.055);
}

.service-type-field {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px !important;
}

.service-type-field label {
  min-height: 74px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.03rem;
  text-align: center;
  background: #ffffff;
}

.service-type-field label:has(input:checked) {
  color: var(--white);
  border-color: var(--navy);
  background: linear-gradient(135deg, var(--brand-blue), var(--navy-strong));
  box-shadow: 0 12px 26px rgba(7, 31, 63, 0.14);
}

fieldset label:has(input:checked) {
  color: var(--navy-strong);
  border-color: rgba(199, 149, 46, 0.58);
  background: rgba(226, 180, 71, 0.18);
}

.service-type-field label:has(input:checked) {
  color: var(--white);
}

.service-type-field input {
  margin-right: 2px;
}

.quick-contact-field {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

label > span {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 900;
}

label > .field-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.field-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 3px 8px;
  border: 1px solid rgba(6, 58, 112, 0.16);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: middle;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(5, 38, 77, 0.12),
    0 6px 14px rgba(5, 28, 52, 0.05);
}

html:lang(en) .field-badge,
html:lang(ja) .field-badge,
html:lang(ko) .field-badge,
html:lang(de) .field-badge {
  max-width: 100%;
  min-height: 26px;
  padding: 5px 8px;
  border-radius: 10px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

legend .field-badge {
  margin-left: 8px;
}

.field-badge.is-required {
  color: var(--navy-strong);
  border-color: rgba(199, 149, 46, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 247, 225, 0.98) 0%, rgba(241, 201, 101, 0.86) 46%, rgba(199, 149, 46, 0.86) 100%),
    repeating-linear-gradient(100deg, rgba(5, 38, 77, 0.08) 0 1px, transparent 1px 10px);
}

.field-badge.is-required-choice {
  color: var(--navy-strong);
  border-color: rgba(199, 149, 46, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 250, 236, 0.98) 0%, rgba(241, 201, 101, 0.72) 48%, rgba(199, 149, 46, 0.68) 100%),
    repeating-linear-gradient(100deg, rgba(5, 38, 77, 0.07) 0 1px, transparent 1px 10px);
}

.field-badge.is-optional {
  color: var(--navy);
  border-color: rgba(6, 58, 112, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(217, 221, 226, 0.78) 46%, rgba(6, 58, 112, 0.1) 100%),
    repeating-linear-gradient(100deg, rgba(6, 58, 112, 0.07) 0 1px, transparent 1px 10px);
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--line-strong);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(6, 58, 112, 0.52);
  box-shadow: 0 0 0 4px rgba(199, 149, 46, 0.16);
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
  min-height: 0;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--navy);
}

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

.contact-method-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}

.contact-method-fieldset {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.contact-method-field {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-method-field:hover {
  border-color: transparent;
  background: transparent;
}

.contact-method-field > .contact-method-label {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 2px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.2;
}

.contact-method-field input {
  min-height: 56px;
  border-color: rgba(6, 58, 112, 0.18);
  border-radius: 10px;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 22px rgba(5, 28, 52, 0.04);
}

.full-field {
  display: block;
}

.request-preview {
  align-self: start;
  position: sticky;
  top: 96px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: clamp(560px, calc(100svh - 120px), 860px);
  max-height: calc(100svh - 120px);
  padding: 20px;
}

.request-preview p {
  margin: 8px 0;
  color: var(--ink-soft);
}

.request-preview a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.request-preview textarea {
  margin-top: 14px;
  resize: vertical;
  min-height: 0;
  height: 100%;
  font-size: 0.92rem;
  background:
    linear-gradient(180deg, #fbfcfd, rgba(217, 221, 226, 0.22));
}

.line-handoff {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 18px);
  background: rgba(5, 28, 52, 0.62);
  backdrop-filter: blur(6px);
}

.line-handoff[hidden] {
  display: none !important;
}

.line-handoff-panel {
  width: min(820px, 100%);
  max-height: calc(100svh - 24px);
  overflow: auto;
  display: grid;
  gap: 12px;
  padding: clamp(14px, 2.2vw, 18px);
  border: 1px solid rgba(199, 149, 46, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 225, 0.94)),
    var(--white);
  box-shadow: 0 26px 70px rgba(5, 28, 52, 0.26);
}

.line-handoff-copy {
  display: grid;
  gap: 6px;
}

.line-handoff h2 {
  margin: 0;
  color: var(--navy-strong);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.line-handoff p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.5;
}

.line-handoff-body {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.line-qr-stack {
  display: grid;
  align-content: start;
  gap: 8px;
}

.line-qr-card {
  width: 100%;
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(6, 58, 112, 0.14);
  border-radius: 10px;
  background: var(--white);
}

.line-qr-card[hidden],
.line-qr-missing[hidden] {
  display: none !important;
}

.line-qr-card img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: contain;
}

.line-qr-card figcaption {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.line-qr-missing {
  display: grid;
  gap: 4px;
  padding: 9px 10px;
  border: 1px solid rgba(199, 149, 46, 0.36);
  border-radius: 10px;
  color: var(--ink-soft);
  background: rgba(255, 247, 225, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

.line-qr-missing strong {
  color: var(--navy-strong);
}

.line-contact-dialog .line-handoff-panel {
  width: min(780px, 100%);
}

.line-contact-info {
  display: grid;
  gap: 4px;
  padding: 8px 10px;
  border: 1px solid rgba(6, 58, 112, 0.14);
  border-radius: 10px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
}

.line-contact-info span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.line-contact-info strong {
  color: var(--navy-strong);
  font-size: 0.98rem;
}

.line-summary-card {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(6, 58, 112, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.line-summary-card[hidden] {
  display: none !important;
}

.line-summary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--navy-strong);
  font-size: 0.82rem;
  font-weight: 900;
}

.line-summary-heading small {
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.line-summary-card textarea {
  width: 100%;
  max-height: min(34svh, 220px);
  min-height: 160px;
  margin: 0;
  overflow: auto;
  resize: vertical;
  border: 1px solid rgba(6, 58, 112, 0.16);
  border-radius: 8px;
  padding: 8px 9px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.line-handoff-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 8px;
}

.line-handoff-actions .button {
  min-height: 38px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.2;
}

@media (max-width: 720px) {
  .line-handoff-body {
    grid-template-columns: 1fr;
  }

  .line-qr-stack {
    grid-template-columns: minmax(116px, 150px) minmax(0, 1fr);
    align-items: stretch;
  }

  .line-qr-missing {
    grid-column: 1 / -1;
  }

  .line-summary-card textarea {
    max-height: 170px;
  }
}

.site-footer {
  --footer-type-display: clamp(1.9rem, 2.15vw, 2.22rem);
  --footer-type-heading: clamp(1.24rem, 1.4vw, 1.42rem);
  --footer-type-body: 0.9rem;
  --footer-type-meta: 0.7rem;
  position: relative;
  padding: clamp(32px, 3.8vw, 50px) clamp(18px, 4vw, 56px) 18px;
  border-top: 1px solid rgba(241, 201, 101, 0.34);
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at 14% 4%, rgba(226, 180, 71, 0.22), transparent 32%),
    radial-gradient(circle at 88% 72%, rgba(32, 111, 174, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(5, 38, 77, 0.99), rgba(6, 58, 112, 0.96)),
    var(--navy-strong);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.footer-panel {
  position: relative;
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(26px, 3.2vw, 42px);
  margin: 0 auto;
  padding: clamp(24px, 2.6vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(226, 180, 71, 0.25);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(5, 38, 77, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.footer-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 14%;
  left: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 201, 101, 0.78), transparent);
}

.footer-company {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-kicker {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.055em;
}

.footer-company h2,
.footer-contact-card h2 {
  margin: 0;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.footer-company h2 {
  font-size: var(--footer-type-display);
}

.footer-contact-card h2 {
  grid-column: 1 / -1;
  font-size: var(--footer-type-heading);
}

.footer-english {
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.055em;
}

.footer-summary,
.footer-contact-details {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-summary {
  max-width: 38rem;
  margin-top: 2px;
  font-size: var(--footer-type-body);
  font-weight: 650;
  line-height: 1.72;
}

.footer-contact-details {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
}

.footer-company-facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 8px;
  max-width: 620px;
  margin-top: 4px;
}

.footer-contact-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  grid-template-rows: auto auto;
  gap: 1px 6px;
  align-items: center;
  min-height: 62px;
  max-width: 620px;
  padding: 9px 7px 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.058);
  transition: background 160ms ease, border-color 160ms ease;
}

.footer-contact-detail:hover {
  border-color: rgba(226, 180, 71, 0.34);
  background: rgba(255, 255, 255, 0.09);
}

.footer-contact-label {
  grid-column: 1;
  grid-row: 1;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--footer-type-meta);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.025em;
}

.footer-contact-text {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.footer-contact-map-link {
  transition: color 160ms ease;
}

.footer-contact-map-link:hover {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  grid-column: 2;
  grid-row: 1 / span 2;
  border: 1px solid rgba(226, 180, 71, 0.36);
  border-radius: 999px;
  color: var(--navy-strong);
  background: linear-gradient(180deg, #f1c965 0%, #e9b84e 58%, #c7952e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 10px 20px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.footer-contact-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-id-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  align-content: center;
  max-width: 620px;
  min-height: 62px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.058);
}

.footer-id-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--footer-type-meta);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.025em;
}

.footer-id-card strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.footer-contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 12px 24px;
  padding: 0;
}

.footer-contact-card > .footer-kicker {
  display: none;
}

.footer-support {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-content: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 12px;
  margin-top: 2px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-nav-label,
.footer-language-label {
  grid-column: 1 / -1;
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1.4;
  letter-spacing: 0.085em;
}

.footer-links a {
  min-height: 28px;
  display: flex;
  align-items: center;
  padding: 3px 0;
  border: 0;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-size: 0.77rem;
  font-weight: 850;
  line-height: 1.35;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-links a:hover {
  color: var(--white);
  background: transparent;
  text-decoration: underline;
  text-decoration-color: rgba(226, 180, 71, 0.72);
  text-underline-offset: 4px;
}

.footer-language-bar {
  display: grid;
  gap: 7px;
  align-self: start;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-language-bar summary {
  list-style: none;
}

.footer-language-bar summary::-webkit-details-marker {
  display: none;
}

.footer-language-toggle {
  min-height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  cursor: pointer;
  border: 1px solid rgba(241, 201, 101, 0.24);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(226, 180, 71, 0.13), rgba(255, 255, 255, 0.045));
  transition: border-color 160ms ease, background 160ms ease;
}

.footer-language-toggle:hover,
.footer-language-toggle:focus-visible {
  border-color: rgba(241, 201, 101, 0.46);
  background: linear-gradient(135deg, rgba(226, 180, 71, 0.18), rgba(255, 255, 255, 0.065));
}

.footer-language-toggle > span:first-child {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.footer-language-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  padding-top: 2px;
}

.footer-language-options a {
  min-height: 32px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 5px;
  align-items: center;
  padding: 3px 7px 3px 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.7rem;
  font-weight: 850;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.footer-language-options a:hover,
.footer-language-options a:focus-visible {
  border-color: rgba(241, 201, 101, 0.42);
  color: var(--white);
  background: rgba(226, 180, 71, 0.11);
  transform: translateY(-1px);
}

.footer-language-bar[open] .footer-language-action::after {
  transform: translateY(1px) rotate(225deg);
}

.footer-language-options a[aria-current="page"] {
  border-color: rgba(241, 201, 101, 0.55);
  color: var(--white);
  background: linear-gradient(135deg, rgba(226, 180, 71, 0.22), rgba(255, 255, 255, 0.065));
}

.footer-language-code {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 201, 101, 0.3);
  border-radius: 7px;
  color: var(--accent-strong);
  background: rgba(5, 38, 77, 0.32);
  font-size: 0.56rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.footer-language-current {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1.25;
}

.footer-language-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 900;
  white-space: nowrap;
}

.footer-language-action::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--accent-strong);
  border-bottom: 2px solid var(--accent-strong);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

@media (min-width: 1181px) {
  .footer-panel {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  }

  .footer-contact-card {
    grid-template-columns: minmax(340px, 1.42fr) minmax(200px, 0.58fr);
    grid-template-rows: auto 1fr;
    gap: 12px clamp(24px, 2.4vw, 34px);
  }

  .footer-contact-card h2 {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-contact-details {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-support {
    grid-column: 2;
    grid-row: 1 / span 2;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: clamp(20px, 2.1vw, 28px);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-support .footer-links {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
}

.footer-contact-primary,
.footer-contact-email,
.footer-contact-secondary,
.footer-contact-grid a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.footer-contact-primary {
  color: var(--navy-strong);
  background: linear-gradient(180deg, #f1c965 0%, #e9b84e 56%, #c7952e 100%);
  border: 1px solid #e9b84e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(5, 38, 77, 0.16),
    0 14px 28px rgba(0, 0, 0, 0.18);
  font-size: 1.1rem;
}

.footer-email-stack {
  display: grid;
  gap: 10px;
}

.footer-contact-email {
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(0, 0, 0, 0.12);
  font-size: 1rem;
}

.footer-contact-email:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.footer-instant-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer-contact-secondary,
.footer-contact-grid a {
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.footer-bottom {
  max-width: var(--max);
  display: block;
  margin: 14px auto 0 !important;
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
  font-weight: 800;
  font-size: 0.74rem;
  line-height: 1.5;
}

.footer-tech-link {
  width: 100%;
  max-width: var(--max);
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.45;
  transition: color 160ms ease;
}

.footer-tech-link span {
  display: block;
}

.footer-tech-link:hover {
  color: var(--white);
}

@media (max-width: 1260px) and (min-width: 921px) {
  .site-header {
    gap: 12px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    display: none;
  }

  html:lang(zh-Hant) .brand-copy span {
    display: block;
  }

  .site-nav {
    gap: 5px;
  }

  .site-nav > a {
    padding-left: 9px;
    padding-right: 9px;
    font-size: 0.82rem;
  }

  .language-menu {
    min-width: 132px;
  }

  .language-menu summary {
    padding-left: 8px;
    padding-right: 8px;
  }

  .language-menu-current {
    font-size: 0.75rem;
  }

  .language-menu-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
}

@media (max-width: 1440px) and (min-width: 921px) {
  html:lang(de) .site-header {
    gap: 12px;
    padding-left: 20px;
    padding-right: 20px;
  }

  html:lang(de) .brand-copy strong {
    font-size: 0.92rem;
  }

  html:lang(de) .brand-copy span {
    display: none;
  }

  html:lang(de) .site-nav {
    gap: 4px;
  }

  html:lang(de) .site-nav > a {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 0.8rem;
  }

  html:lang(de) .language-menu {
    min-width: 128px;
  }
}

@media (max-width: 1120px) and (min-width: 921px) {
  .brand-copy {
    display: none;
  }

  html:lang(zh-Hant) .brand-copy {
    display: grid;
  }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .footer-contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .hero-copy h1 {
    font-size: 3.35rem;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .section-head h2,
  .split h2,
  .request-cta h2,
  .detail-main h2,
  .form-section-heading h2,
  .capability-band h2,
  .process h2,
  .request-preview h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 920px) {
  .section {
    width: 100%;
    max-width: none;
    min-height: auto;
    margin: 0;
    padding: 56px clamp(18px, 5vw, 28px);
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 24px;
  }

  .site-header {
    position: sticky;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px clamp(14px, 4vw, 22px);
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .site-nav a {
    min-width: 0;
    min-height: 38px;
    padding: 7px 8px;
    font-size: 0.86rem;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }

  .site-nav > a:not(.nav-cta):not(.nav-secondary-cta) {
    grid-column: span 4;
  }

  .site-nav .nav-cta {
    grid-column: 1 / span 4;
    grid-row: 2;
  }

  .site-nav .nav-secondary-cta {
    grid-column: 5 / span 4;
    grid-row: 2;
  }

  .site-nav .language-menu {
    min-width: 0;
    min-height: 38px;
    grid-column: 9 / span 4;
    grid-row: 2;
    width: 100%;
  }

  .language-menu summary {
    min-height: 38px;
    gap: 6px;
    justify-content: center;
    padding: 6px 8px;
  }

  .language-menu-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .language-menu-current {
    flex: 0 1 auto;
    font-size: 0.74rem;
  }

  .language-menu-list {
    width: min(270px, calc(100vw - 28px));
    min-width: 0;
  }

  .hero,
  .split,
  .detail-layout,
  .contact-preview-layout,
  .page-hero-with-photo,
  .request-cta {
    grid-template-columns: 1fr;
  }

  .positioning-split {
    align-items: start;
    gap: 28px;
  }

  .positioning-split .split-copy {
    max-width: none;
  }

  html:lang(en) .service-tags,
  html:lang(ja) .service-tags,
  html:lang(ko) .service-tags,
  html:lang(de) .service-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-carousel-track {
    min-height: clamp(260px, 56vw, 380px);
  }

  .contact-preview-layout {
    min-height: auto;
  }

  .hero {
    min-height: auto;
  }

  html:lang(en) .hero-copy h1,
  html:lang(ja) .hero-copy h1,
  html:lang(ko) .hero-copy h1,
  html:lang(de) .hero-copy h1 {
    font-size: clamp(2.35rem, 6vw, 3rem);
  }

  .page-hero {
    min-height: auto;
  }

  .request-evaluation-page .page-hero {
    padding-top: 42px;
    padding-bottom: 20px;
  }

  .request-evaluation-page .page-hero h1 {
    font-size: 2.2rem;
  }

  .reserved-visual-large {
    min-height: 360px;
  }

  .entry-grid,
  .capability-grid,
  .service-value-grid,
  .development-flow,
  .visual-row {
    grid-template-columns: 1fr;
  }

  .hero-photo,
  .page-hero-photo {
    min-height: 320px;
  }

  .cta-photo {
    max-width: 100%;
    width: 100%;
    justify-self: start;
  }

  .development-flow {
    gap: 16px;
    margin-top: 28px;
  }

  .development-flow li {
    min-height: auto;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 14px;
    padding: 18px;
  }

  .development-flow li::before {
    grid-row: 1 / span 2;
  }

  .development-flow li::after {
    top: auto;
    right: auto;
    left: 31px;
    bottom: -21px;
    width: 14px;
    height: 24px;
    clip-path: polygon(35% 0, 65% 0, 65% 58%, 100% 58%, 50% 100%, 0 58%, 35% 58%);
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .request-cta {
    grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.22fr);
    grid-template-areas:
      "photo copy"
      "photo actions";
    align-items: center;
    column-gap: clamp(26px, 5vw, 42px);
    row-gap: 22px;
    width: auto;
    margin: 40px clamp(18px, 4vw, 32px) 56px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .request-cta .cta-photo {
    grid-area: photo;
    align-self: center;
  }

  .request-cta .cta-copy {
    grid-area: copy;
  }

  .request-cta .cta-actions {
    grid-area: actions;
  }

  html:lang(en) .request-cta,
  html:lang(ja) .request-cta,
  html:lang(ko) .request-cta,
  html:lang(de) .request-cta {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "copy"
      "actions";
    align-items: start;
  }

  html:lang(en) .request-cta .cta-photo,
  html:lang(ja) .request-cta .cta-photo,
  html:lang(ko) .request-cta .cta-photo,
  html:lang(de) .request-cta .cta-photo {
    width: min(100%, 460px);
    aspect-ratio: 16 / 9;
  }

  html:lang(en) .request-cta .cta-actions,
  html:lang(ja) .request-cta .cta-actions,
  html:lang(ko) .request-cta .cta-actions,
  html:lang(de) .request-cta .cta-actions {
    flex-wrap: wrap;
  }

  .request-preview {
    position: static;
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-contact-card {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-company-facts,
  .footer-contact-detail,
  .footer-id-card {
    max-width: none;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }

  .language-menu-caret {
    transition: none;
  }

  .language-assist {
    animation: none;
  }

  .language-assist.is-leaving {
    transition: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding-left: 22px;
    padding-right: 22px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-copy span {
    display: none;
  }

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

  .brand-copy {
    padding-left: 0;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .site-nav a {
    min-height: 36px;
    padding: 7px 4px;
    font-size: 0.78rem;
  }

  .site-nav > a:not(.nav-cta):not(.nav-secondary-cta) {
    grid-column: span 4;
  }

  .site-nav .nav-cta {
    grid-column: 1 / span 4;
  }

  .site-nav .nav-secondary-cta {
    grid-column: 5 / span 4;
  }

  .site-nav .language-menu {
    grid-column: 9 / span 4;
  }

  .language-menu-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .language-menu summary {
    gap: 5px;
    padding: 5px 6px;
  }

  .language-menu-current {
    font-size: 0.7rem;
  }

  html:lang(en) .section,
  html:lang(ja) .section,
  html:lang(ko) .section,
  html:lang(de) .section {
    padding: 44px 18px;
  }

  html:lang(en) .service-tags,
  html:lang(de) .service-tags {
    grid-template-columns: 1fr;
  }

  html:lang(ja) .service-tags,
  html:lang(ko) .service-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html:lang(en) legend .field-badge,
  html:lang(ja) legend .field-badge,
  html:lang(ko) legend .field-badge,
  html:lang(de) legend .field-badge {
    display: flex;
    width: fit-content;
    margin: 6px 0 0;
  }

  html:lang(en) .hero-copy h1,
  html:lang(ja) .hero-copy h1,
  html:lang(ko) .hero-copy h1,
  html:lang(de) .hero-copy h1 {
    font-size: clamp(2rem, 9.2vw, 2.3rem);
    line-height: 1.08;
  }

  html:lang(en) .positioning-split h2 {
    font-size: 1.7rem;
  }

  html:lang(ja) .positioning-split h2 {
    font-size: 1.75rem;
  }

  html:lang(ko) .positioning-split h2 {
    font-size: 1.7rem;
  }

  html:lang(de) .positioning-split h2 {
    font-size: 1.52rem;
    line-height: 1.28;
  }

  html:lang(en) .lead,
  html:lang(ja) .lead,
  html:lang(ko) .lead,
  html:lang(de) .lead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.7;
  }

  html:lang(en) .hero-actions .button,
  html:lang(ja) .hero-actions .button,
  html:lang(ko) .hero-actions .button,
  html:lang(de) .hero-actions .button {
    flex: 1 1 138px;
    padding-left: 12px;
    padding-right: 12px;
  }

  html:lang(ja) .ja-home-title .ja-title-prefix,
  html:lang(ja) .ja-home-title .ja-title-core {
    display: block;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .page-hero h1 {
    font-size: 1.85rem;
  }

  .request-evaluation-page .page-hero {
    padding-top: 34px;
    padding-bottom: 18px;
  }

  .request-evaluation-page .page-hero h1 {
    font-size: 1.85rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .section-head h2,
  .split h2,
  .request-cta h2,
  .detail-main h2,
  .form-section-heading h2,
  .capability-band h2,
  .process h2,
  .request-preview h2 {
    font-size: 1.8rem;
  }

  html:lang(de) .request-cta h2 {
    font-size: 1.7rem;
  }

  .reserved-visual-large {
    min-height: 230px;
  }

  .hero-photo,
  .page-hero-photo {
    min-height: 0;
  }

  .experience-carousel-track {
    min-height: 230px;
    height: clamp(230px, 64vw, 300px);
    aspect-ratio: auto;
  }

  .positioning-split .split-copy {
    gap: 14px;
  }

  .positioning-split .eyebrow {
    margin-bottom: 4px;
  }

  .positioning-split .split-copy p {
    line-height: 1.58;
  }

  html:lang(en) .positioning-split .expertise-points span,
  html:lang(ja) .positioning-split .expertise-points span,
  html:lang(ko) .positioning-split .expertise-points span,
  html:lang(de) .positioning-split .expertise-points span {
    flex: 1 1 calc(50% - 4px);
    text-align: center;
  }

  html:lang(en) .positioning-split .expertise-points span:last-child,
  html:lang(ja) .positioning-split .expertise-points span:last-child,
  html:lang(ko) .positioning-split .expertise-points span:last-child,
  html:lang(de) .positioning-split .expertise-points span:last-child {
    flex-basis: 100%;
  }

  .photo-placeholder {
    min-height: 150px;
  }

  .detail-layout,
  .form-layout {
    padding-top: 24px;
  }

  .visual-row {
    padding-top: 28px;
    padding-bottom: 46px;
  }

  .entry-card {
    min-height: auto;
  }

  .service-tags span {
    flex: 1 1 170px;
  }

  .service-value-grid article {
    min-height: auto;
    padding: 24px;
  }

  .request-form {
    gap: 18px;
  }

  fieldset {
    padding: 20px;
  }

  .request-preview textarea {
    min-height: 300px;
    height: 300px;
  }

  .media-grid,
  .field-grid,
  .contact-method-grid,
  fieldset,
  .service-type-field,
  .quick-contact-field,
  .check-list.two-column {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    align-items: start;
    min-height: auto;
  }

  .form-actions .button,
  .request-cta .button,
  .line-handoff-actions .button {
    width: 100%;
  }

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

  .request-cta {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "copy"
      "actions";
    gap: 24px;
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
    padding: 28px 22px 32px;
  }

  .request-cta .cta-photo {
    aspect-ratio: 16 / 9;
  }

  .request-cta .eyebrow {
    margin-bottom: 8px;
  }

  .cta-actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-footer {
    padding-top: 28px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 18px;
  }

  .footer-panel {
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
  }

  .footer-company h2 {
    font-size: 1.8rem;
  }

  .footer-contact-card h2 {
    font-size: 1.35rem;
  }

  .footer-contact-card {
    grid-template-columns: 1fr;
    padding: 18px 0 0;
  }

  .footer-contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-company-facts {
    grid-template-columns: 1fr;
  }

  .footer-contact-detail {
    grid-template-columns: minmax(0, 1fr) 34px;
    padding-left: 9px;
  }

  .footer-id-card {
    grid-template-columns: 1fr;
    padding-left: 9px;
  }

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

  .footer-language-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact-primary,
  .footer-contact-email,
  .footer-contact-secondary,
  .footer-contact-grid a {
    border-radius: 14px;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    text-align: left;
  }

  .footer-tech-link {
    width: 100%;
    max-width: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    font-size: 0.72rem;
  }

  .language-menu-current {
    font-size: 0.66rem;
  }

  .language-menu-caret {
    width: 6px;
    height: 6px;
    flex-basis: 6px;
  }

  .site-footer {
    padding-right: 14px;
    padding-left: 14px;
  }

  .footer-panel {
    padding: 16px;
  }

  .footer-contact-card {
    padding: 16px 0 0;
  }

  .footer-support {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-language-options a {
    grid-template-columns: 24px minmax(0, 1fr);
    padding-right: 5px;
    font-size: 0.66rem;
  }

  .footer-language-toggle {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-language-action {
    justify-self: start;
  }
}
