:root {
  --ink: #102033;
  --navy: #062a52;
  --navy-2: #0a3b70;
  --blue: #0b67b2;
  --cyan: #1d9bd1;
  --muted: #5e6c7c;
  --line: #dbe6ee;
  --soft: #f3f7fa;
  --soft-blue: #eaf5fb;
  --white: #ffffff;
  --warning: #b85d16;
  --shadow: 0 18px 42px rgba(9, 42, 82, 0.12);
  --shadow-small: 0 8px 22px rgba(9, 42, 82, 0.08);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
  line-height: 1.8;
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 8px 12px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.header-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 230, 238, 0.82);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-small);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.brand-image {
  display: block;
  width: 82px;
  height: auto;
  max-height: 30px;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #24384d;
  font-size: 14px;
  font-weight: 700;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 16px !important;
  color: var(--white) !important;
  background: var(--navy);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(6, 42, 82, 0.16);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-line::before {
  transform: translateY(-7px);
}

.nav-toggle-line::after {
  transform: translateY(5px);
}

.nav-open .nav-toggle-line {
  background: transparent;
}

.nav-open .nav-toggle-line::before {
  transform: translateY(2px) rotate(45deg);
}

.nav-open .nav-toggle-line::after {
  transform: translateY(0) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 16%, rgba(29, 155, 209, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6fafc 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: 46px;
  padding: 34px 0 18px;
}

.hero-label,
.section-label,
.panel-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-label,
.section-label,
.section-muted .section-label,
.final-cta .section-label,
.policy-hero .section-label,
.panel-eyebrow {
  color: var(--white) !important;
  background-color: var(--navy) !important;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(34px, 4.35vw, 52px);
  line-height: 1.15;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(27px, 3.4vw, 42px);
  line-height: 1.32;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.45;
}

.hero-text {
  max-width: 690px;
  color: #334b63;
  font-size: 16px;
}

.hero-note {
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 560px);
  align-items: stretch;
}

.hero-actions .button {
  width: 100%;
  min-height: 54px;
}

.hero-actions .button-primary {
  grid-column: 1 / -1;
  min-height: 58px;
  font-size: 16px;
  box-shadow: 0 18px 32px rgba(6, 42, 82, 0.22);
}

.hero-secondary-action,
.button-lcl-check.hero-secondary-action {
  color: var(--navy);
  background: var(--white);
  border-color: #9bb9d2;
  box-shadow: 0 8px 18px rgba(9, 42, 82, 0.08);
}

.hero-secondary-action:hover,
.hero-secondary-action:focus-visible,
.button-lcl-check.hero-secondary-action:hover,
.button-lcl-check.hero-secondary-action:focus-visible {
  color: var(--navy);
  background: #f2f8fc;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 24px rgba(6, 42, 82, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy-2);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: #9bb9d2;
}

.button-form {
  color: var(--navy);
  background: #f2f8fc;
  border-color: #aed0e6;
}

.button-form:hover,
.button-form:focus-visible {
  background: #e7f4fb;
}

.button-form[aria-disabled="true"] {
  color: #567189;
  cursor: not-allowed;
  opacity: 0.78;
  transform: none;
}

.button-lcl-check {
  color: var(--white);
  background: linear-gradient(135deg, #062a52 0%, #087a8f 100%);
  border-color: #087a8f;
  box-shadow: 0 14px 24px rgba(8, 122, 143, 0.22);
}

.button-lcl-check:hover,
.button-lcl-check:focus-visible {
  background: linear-gradient(135deg, #05213f 0%, #056c7f 100%);
}

.button-form-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-form-dark:hover,
.button-form-dark:focus-visible {
  background: rgba(255, 255, 255, 0.25);
}

.button-form-dark[aria-disabled="true"] {
  color: rgba(255, 255, 255, 0.78);
}

.button-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.48);
}

.mail-fallback {
  width: 100%;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
}

.mail-fallback a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.copy-email {
  display: inline-flex;
  width: fit-content;
  margin: 8px 0 0;
  padding: 5px 9px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

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

.badge-list {
  flex-wrap: nowrap;
}

.badge-list li,
.cta-points li {
  padding: 7px 10px;
  color: var(--navy);
  background: var(--soft-blue);
  border: 1px solid #c9e2f0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.diagnostic-panel {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.diagnostic-panel::before {
  position: absolute;
  inset: 12px auto auto -14px;
  width: 28px;
  height: 72%;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  border-radius: 4px;
  content: "";
}

.panel-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.panel-top h2 {
  margin-bottom: 0;
  font-size: clamp(20px, 2.1vw, 22px);
  white-space: nowrap;
}

.panel-action {
  min-height: 38px;
  padding: 8px 13px;
  color: var(--navy);
  background: #f6c744;
  border-color: #e7b735;
  font-size: 13px;
  line-height: 1.2;
  box-shadow: 0 12px 22px rgba(222, 169, 37, 0.22);
  white-space: nowrap;
}

.panel-action:hover,
.panel-action:focus-visible {
  color: var(--navy);
  background: #ffd760;
}

.risk-meter {
  height: 8px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #e8eef4;
  border-radius: 999px;
}

.risk-meter span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--navy));
}

.dashboard-list {
  display: grid;
  gap: 10px;
}

.dashboard-list-compact {
  margin-top: 16px;
}

@media (min-width: 1061px) {
  .dashboard-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-list article {
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: start;
  }

  .dashboard-list strong {
    grid-column: 2;
  }
}

.dashboard-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px;
  background: var(--white);
  border: 1px solid #e3edf4;
  border-radius: 7px;
}

.dashboard-list h3 {
  margin: 0 0 2px;
  font-size: 15px;
}

.dashboard-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.dashboard-list strong {
  color: var(--navy);
  font-size: 12px;
}

.dash-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
}

.panel-foot {
  margin: 14px 0 0;
  padding: 10px 12px;
  color: #294761;
  background: #edf7fd;
  border: 1px solid #c8e4f4;
  border-radius: 7px;
  font-size: 13px;
  line-height: 1.6;
}

.shipment-visual {
  display: grid;
  gap: 12px;
  padding: 16px;
  background:
    linear-gradient(180deg, #fbfdff 0%, #f3f9fd 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.route-map {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 122px;
  gap: 10px;
  align-items: center;
}

.route-node {
  min-height: 88px;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #cfe2ee;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 7px 16px rgba(9, 42, 82, 0.06);
}

.route-node span {
  display: grid;
  width: 38px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.route-node strong {
  font-size: 13px;
  line-height: 1.35;
}

.route-node small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.sea-lane {
  position: relative;
  min-height: 116px;
  display: grid;
  place-items: center;
}

.sea-lane::before {
  position: absolute;
  right: 0;
  left: 0;
  top: 49%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--cyan));
  content: "";
}

.sea-lane::after {
  position: absolute;
  right: -1px;
  top: calc(49% - 5px);
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  transform: rotate(45deg);
  content: "";
}

.ship-svg {
  position: relative;
  z-index: 1;
  width: min(210px, 100%);
  height: auto;
  padding: 6px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d9eaf3;
  border-radius: 8px;
}

.document-row,
.partner-row {
  display: grid;
  gap: 8px;
}

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

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

.document-row span,
.partner-row span {
  position: relative;
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 8px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #dce9f2;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
}

.document-row span::before,
.partner-row span::before {
  width: 18px;
  height: 18px;
  margin-bottom: 3px;
  content: "";
}

.document-row span::before {
  background:
    linear-gradient(90deg, transparent 0 68%, #e8f2fb 68% 100%),
    var(--white);
  border: 2px solid var(--blue);
  border-radius: 3px;
}

.doc-icon-check::before {
  background: var(--soft-blue);
  border-color: var(--cyan);
  clip-path: polygon(16% 48%, 34% 66%, 82% 20%, 92% 31%, 35% 86%, 6% 58%);
}

.partner-row span::before {
  display: block;
  background: var(--soft-blue);
  border: 2px solid var(--blue);
  border-radius: 5px;
}

.partner-icon-carrier::before {
  border-radius: 3px 3px 8px 8px;
  box-shadow: inset 0 -7px 0 var(--blue);
}

.partner-icon-cfs::before {
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(11, 103, 178, 0.28) 44% 56%, transparent 56%),
    var(--soft-blue);
  box-shadow: 6px 6px 0 -2px #d9eaf3;
}

.partner-icon-customs::before {
  background:
    linear-gradient(90deg, transparent 0 70%, #dcecf5 70% 100%),
    var(--white);
}

.partner-icon-factory::before {
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.45) 48% 54%, transparent 54%),
    var(--navy);
  border-color: var(--navy);
  box-shadow: -6px -5px 0 -4px var(--cyan), 7px -3px 0 -5px var(--blue);
}

.hero-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-brief {
  padding: 54px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visual-brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 42px;
  align-items: center;
}

.logistics-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #f8fbfd;
  border: 1px solid #d7e6f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.logistics-visual::after {
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 103, 178, 0.45), transparent);
  content: "";
}

.logistics-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-brief-copy p:not(.section-label) {
  color: var(--muted);
}

.mini-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.mini-flow span {
  position: relative;
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--navy);
  background: var(--soft-blue);
  border: 1px solid #cbe4f2;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.mini-flow span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -9px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: translateY(-50%) rotate(45deg);
  content: "";
  z-index: 1;
}

.section {
  padding: 86px 0;
}

.section-muted {
  background: var(--soft);
  border-top: 1px solid #e9f0f5;
  border-bottom: 1px solid #e9f0f5;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-label),
.split-layout > div > p,
.company-caution {
  color: var(--muted);
}

.section-heading p.section-label,
.split-layout > div > p.section-label,
.company-intro > p.section-label {
  color: var(--white) !important;
  background-color: var(--navy) !important;
}

.section-note,
.caution {
  margin: 28px 0 0;
  padding: 16px 18px;
  color: #294761;
  background: #edf7fd;
  border: 1px solid #c8e4f4;
  border-radius: var(--radius);
  font-weight: 700;
}

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

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

.issue-grid {
  align-items: stretch;
}

.issue-grid article,
.entry-grid article,
.service-grid article,
.cargo-card,
.case-list article,
.timeline article,
.check-panel,
.info-checklist,
.company-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.issue-grid article {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.entry-grid article {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 24px;
}

.entry-grid .button {
  width: 100%;
  margin-top: auto;
}

.entry-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: var(--blue);
  background: #eaf6fc;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: start;
}

.check-panel {
  padding: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.cargo-card li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before,
.cargo-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 3px;
  content: "";
}

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

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

.service-grid-compact article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
}

.service-grid-compact .service-card-link {
  margin-top: auto;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.service-icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: inline-block;
  flex: 0 0 auto;
  background:
    linear-gradient(135deg, rgba(29, 155, 209, 0.14), rgba(11, 103, 178, 0.06)),
    var(--soft-blue);
  border: 1px solid #c8e3f2;
  border-radius: 8px;
}

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

.service-icon-diagnosis::before {
  left: 14px;
  top: 12px;
  width: 26px;
  height: 34px;
  background:
    linear-gradient(90deg, transparent 0 70%, #dcecf5 70%),
    var(--white);
  border: 2px solid var(--navy);
  border-radius: 4px;
}

.service-icon-diagnosis::after {
  left: 21px;
  top: 23px;
  width: 18px;
  height: 10px;
  border-left: 3px solid var(--cyan);
  border-bottom: 3px solid var(--cyan);
  transform: rotate(-45deg);
}

.service-icon-lcl::before {
  left: 13px;
  bottom: 13px;
  width: 28px;
  height: 22px;
  background:
    linear-gradient(90deg, transparent 31%, rgba(255, 255, 255, 0.45) 31% 35%, transparent 35% 65%, rgba(255, 255, 255, 0.45) 65% 69%, transparent 69%),
    var(--blue);
  border-radius: 3px;
  box-shadow: 9px -8px 0 -2px #0a3b70, -7px 7px 0 -2px #7fc6e6;
}

.service-icon-lcl::after {
  right: 10px;
  top: 11px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.service-icon-fcl::before {
  left: 10px;
  top: 17px;
  width: 38px;
  height: 24px;
  background:
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(255, 255, 255, 0.36) 7px 9px),
    var(--navy);
  border-radius: 4px;
}

.service-icon-fcl::after {
  left: 15px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 23px 0 0 var(--cyan);
}

.service-icon-battery::before {
  left: 15px;
  top: 15px;
  width: 29px;
  height: 31px;
  border: 3px solid var(--navy);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--cyan) 0 58%, transparent 58%);
}

.service-icon-battery::after {
  left: 25px;
  top: 9px;
  width: 10px;
  height: 5px;
  background: var(--navy);
  border-radius: 3px 3px 0 0;
}

.service-icon-dg::before {
  left: 15px;
  top: 14px;
  width: 28px;
  height: 28px;
  background: #fff3e8;
  border: 3px solid var(--warning);
  border-radius: 4px;
  transform: rotate(45deg);
}

.service-icon-dg::after {
  left: 27px;
  top: 19px;
  width: 4px;
  height: 18px;
  background: var(--warning);
  border-radius: 999px;
  box-shadow: 0 23px 0 -1px var(--warning);
}

.service-icon-risk::before {
  left: 13px;
  top: 14px;
  width: 18px;
  height: 30px;
  border: 3px solid var(--navy);
  border-radius: 5px;
  background: linear-gradient(180deg, var(--cyan) 0 55%, transparent 55%);
}

.service-icon-risk::after {
  right: 12px;
  top: 18px;
  width: 20px;
  height: 20px;
  background: #fff3e8;
  border: 3px solid var(--warning);
  border-radius: 4px;
  transform: rotate(45deg);
}

.service-icon-customs::before {
  left: 15px;
  top: 10px;
  width: 28px;
  height: 38px;
  background:
    linear-gradient(90deg, transparent 0 70%, #dcecf5 70% 100%),
    var(--white);
  border: 2px solid var(--navy);
  border-radius: 4px;
}

.service-icon-customs::after {
  left: 20px;
  top: 23px;
  width: 18px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 7px 0 var(--blue), 0 14px 0 var(--cyan);
}

.service-icon-delivery::before {
  left: 9px;
  top: 20px;
  width: 27px;
  height: 18px;
  background: var(--navy);
  border-radius: 3px;
  box-shadow: 20px 5px 0 -4px var(--blue);
}

.service-icon-delivery::after {
  left: 14px;
  bottom: 11px;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 26px 0 0 var(--cyan), 34px -19px 0 -2px var(--navy);
}

.service-icon-documents::before {
  left: 12px;
  top: 10px;
  width: 28px;
  height: 38px;
  background:
    linear-gradient(90deg, transparent 0 70%, #dcecf5 70% 100%),
    var(--white);
  border: 2px solid var(--navy);
  border-radius: 4px;
  box-shadow: 8px 5px 0 -2px #d7eefa;
}

.service-icon-documents::after {
  left: 18px;
  top: 23px;
  width: 18px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 7px 0 var(--blue), 0 14px 0 var(--cyan);
}

.service-icon-factory::before {
  left: 12px;
  top: 17px;
  width: 34px;
  height: 27px;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.32) 48% 52%, transparent 52%),
    var(--navy);
  border-radius: 4px;
}

.service-icon-factory::after {
  left: 17px;
  top: 10px;
  width: 8px;
  height: 14px;
  background: var(--cyan);
  border-radius: 3px 3px 0 0;
  box-shadow: 12px 4px 0 -1px var(--blue), 23px 1px 0 -2px var(--cyan);
}

.service-number,
.case-list span,
.timeline span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.service-number {
  margin-bottom: 0;
  padding: 4px 8px;
  background: #f4f9fc;
  border: 1px solid #dbeaf2;
  border-radius: 999px;
}

.service-grid p,
.case-list p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.issue-diagram {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.issue-diagram article {
  min-height: 150px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.issue-diagram h3 {
  margin-bottom: 4px;
}

.issue-diagram p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.issue-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  background: var(--soft-blue);
  border: 1px solid #c8e3f2;
  border-radius: 8px;
}

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

.issue-icon-doc::before {
  left: 12px;
  top: 8px;
  width: 20px;
  height: 28px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  background: var(--white);
}

.issue-icon-doc::after {
  left: 16px;
  top: 19px;
  width: 13px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 6px 0 var(--cyan);
}

.issue-icon-risk::before {
  left: 11px;
  top: 10px;
  width: 20px;
  height: 20px;
  border: 3px solid var(--warning);
  border-radius: 4px;
  background: #fff3e8;
  transform: rotate(45deg);
}

.issue-icon-risk::after {
  left: 20px;
  top: 14px;
  width: 3px;
  height: 15px;
  background: var(--warning);
  border-radius: 999px;
  box-shadow: 0 18px 0 -1px var(--warning);
}

.issue-icon-site::before {
  left: 8px;
  top: 22px;
  width: 28px;
  height: 14px;
  background: var(--navy);
  border-radius: 3px;
}

.issue-icon-site::after {
  left: 13px;
  top: 9px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 19px 0 -7px var(--cyan);
}

.factory-hero .hero-grid {
  min-height: 520px;
}

.factory-hero-lead {
  color: var(--navy);
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 900;
}

.factory-panel .panel-top {
  align-items: flex-start;
}

.factory-flow {
  display: grid;
  gap: 12px;
}

.factory-flow article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  background: #fbfdff;
  border: 1px solid #dce9f2;
  border-radius: 7px;
}

.factory-flow span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.factory-flow h3 {
  margin: 0 0 2px;
  font-size: 16px;
}

.factory-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.factory-flow-visual article:not(:last-child) {
  position: relative;
}

.factory-flow-visual article:not(:last-child)::after {
  position: absolute;
  right: 18px;
  bottom: -11px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  content: "";
  z-index: 1;
}

.factory-route-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.factory-route-flow span {
  position: relative;
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #cfe2ee;
  border-radius: 7px;
  box-shadow: var(--shadow-small);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.factory-route-flow span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -9px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: translateY(-50%) rotate(45deg);
  content: "";
  z-index: 1;
}

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

.pricing-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.pricing-card-featured {
  border-color: #8fc8e7;
  box-shadow: var(--shadow);
}

.pricing-card-additional {
  background: #fbfdff;
}

.pricing-card h3 {
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 3px 8px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  vertical-align: middle;
}

.pricing-price {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
}

.pricing-note {
  margin: 6px 0 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: #30475f;
  font-size: 14px;
  line-height: 1.65;
}

.pricing-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border-radius: 3px;
  content: "";
}

.pricing-conditions {
  margin-top: 20px;
  padding: 20px;
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.pricing-conditions h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
}

.pricing-conditions ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-conditions li {
  position: relative;
  padding-left: 22px;
  color: #30475f;
  font-size: 14px;
  line-height: 1.7;
}

.pricing-conditions li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border-radius: 3px;
  content: "";
}

.factory-timeline article {
  min-height: 250px;
}

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

.cargo-card {
  padding: 26px;
}

.cargo-card h3 {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cargo-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cargo-card-alert {
  border-color: #f1c8a5;
}

.cargo-card-alert li::before {
  background: var(--warning);
}

.case-list {
  display: grid;
  gap: 14px;
}

.case-list article {
  display: grid;
  grid-template-columns: 84px 58px 220px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
}

.case-icon {
  width: 46px;
  height: 46px;
}

.case-list h3,
.timeline h3 {
  margin-bottom: 0;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.timeline article {
  position: relative;
  padding: 22px;
}

.timeline-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 16px;
  background: var(--soft-blue);
  border: 1px solid #c8e3f2;
  border-radius: 8px;
}

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

.timeline-icon-cargo::before {
  left: 10px;
  top: 16px;
  width: 22px;
  height: 17px;
  background: var(--blue);
  border-radius: 3px;
  box-shadow: 7px -7px 0 -2px var(--navy);
}

.timeline-icon-doc::before {
  left: 12px;
  top: 8px;
  width: 19px;
  height: 27px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 4px;
}

.timeline-icon-doc::after {
  left: 16px;
  top: 18px;
  width: 12px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 6px 0 var(--cyan);
}

.timeline-icon-factory::before {
  left: 9px;
  top: 15px;
  width: 25px;
  height: 20px;
  background: var(--navy);
  border-radius: 4px;
}

.timeline-icon-factory::after {
  left: 14px;
  top: 8px;
  width: 6px;
  height: 12px;
  background: var(--cyan);
  border-radius: 3px 3px 0 0;
  box-shadow: 10px 4px 0 -1px var(--blue);
}

.timeline-icon-risk::before {
  left: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: #fff3e8;
  border: 3px solid var(--warning);
  border-radius: 4px;
  transform: rotate(45deg);
}

.timeline-icon-risk::after {
  left: 20px;
  top: 13px;
  width: 3px;
  height: 14px;
  background: var(--warning);
  border-radius: 999px;
}

.timeline-icon-ship::before {
  left: 8px;
  top: 20px;
  width: 26px;
  height: 13px;
  background: var(--blue);
  border-radius: 3px 3px 9px 9px;
}

.timeline-icon-ship::after {
  left: 14px;
  top: 12px;
  width: 14px;
  height: 9px;
  background: var(--navy);
  border-radius: 3px 3px 0 0;
}

.info-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 22px;
}

.info-checklist label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  background: #f8fbfd;
  border: 1px solid #e2edf4;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.info-checklist input {
  width: 17px;
  height: 17px;
  margin-top: 5px;
  accent-color: var(--blue);
}

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

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 18px 48px 18px 18px;
  color: var(--navy);
  text-align: left;
  background: transparent;
  border: 0;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-60%) rotate(45deg);
  content: "";
}

.faq-item button[aria-expanded="true"]::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding: 0 18px 18px;
}

.final-cta {
  padding: 80px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 42, 82, 0.96), rgba(10, 59, 112, 0.98)),
    var(--navy);
}

.final-cta h2,
.final-cta .section-label {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.84);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: center;
}

.cta-points li {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 1fr);
  gap: 46px;
}

.company-intro {
  align-self: start;
}

.company-logo-mark {
  display: block;
  width: min(220px, 64%);
  height: auto;
  margin-top: 34px;
}

.company-table {
  margin: 0;
}

.company-table div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.company-table div:last-child {
  border-bottom: 0;
}

.company-table dt {
  color: var(--navy);
  font-weight: 900;
}

.company-table dd {
  margin: 0;
  color: #30475f;
}

.company-table small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.partner-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-list a,
.company-table dd > a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.policy-hero {
  padding: 82px 0 42px;
  background: linear-gradient(180deg, #f6fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
}

.policy-hero p:not(.section-label) {
  max-width: 820px;
  color: var(--muted);
}

.policy-content {
  max-width: 880px;
}

.policy-content article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content article:first-child {
  padding-top: 0;
}

.policy-content h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.policy-content p,
.policy-content li {
  color: #30475f;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 1.3em;
}

.policy-content a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-date {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  max-width: min(420px, calc(100% - 36px));
  padding: 13px 14px;
  color: var(--white);
  background: rgba(4, 31, 62, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 13px;
  line-height: 1.6;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-toast button {
  margin-left: 8px;
  padding: 4px 8px;
  color: var(--navy);
  background: var(--white);
  border: 0;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  padding: 38px 0 18px;
  color: var(--white);
  background: #041f3e;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  margin-bottom: 4px;
  font-weight: 900;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.copyright {
  width: min(calc(100% - 40px), var(--container));
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 12px;
    font-size: 13px;
  }

  .hero-grid,
  .split-layout,
  .company-grid,
  .visual-brief-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

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

  .diagnostic-panel {
    max-width: 680px;
  }

  .issue-grid,
  .entry-grid,
  .service-grid,
  .pricing-grid,
  .timeline,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-list article {
    grid-template-columns: 76px 54px minmax(0, 1fr);
  }

  .case-list article p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .container,
  .header-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-image {
    width: 74px;
    max-height: 28px;
  }

  .brand-company {
    font-size: 13px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    padding: 14px;
    visibility: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav-simple {
    position: static;
    display: flex;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0;
  }

  .site-nav-simple a:not(.nav-cta) {
    display: none;
  }

  .site-nav a,
  .nav-cta {
    padding: 12px !important;
  }

  .hero-grid {
    gap: 30px;
    padding: 30px 0 36px;
  }

  .panel-top {
    flex-direction: column;
    align-items: stretch;
  }

  .panel-action {
    width: 100%;
  }

  h1 {
    font-size: clamp(31px, 9vw, 41px);
  }

  .hero-text {
    font-size: 15px;
  }

  .badge-list {
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
  }

  .badge-list li {
    padding: 6px 9px;
    font-size: 12px;
  }

  .section {
    padding: 64px 0;
  }

  .issue-grid,
  .issue-diagram,
  .entry-grid,
  .service-grid,
  .cargo-grid,
  .pricing-grid,
  .timeline,
  .faq-list,
  .info-checklist,
  .mini-flow {
    grid-template-columns: 1fr;
  }

  .issue-grid {
    gap: 10px;
  }

  .issue-grid article {
    padding: 13px 14px;
  }

  .visual-brief {
    padding: 42px 0;
  }

  .factory-route-flow {
    grid-template-columns: 1fr;
  }

  .factory-route-flow span:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -10px;
    transform: translateX(50%) rotate(135deg);
  }

  .mini-flow span:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -10px;
    transform: translateX(50%) rotate(135deg);
  }

  .dashboard-list article {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .dashboard-list strong {
    grid-column: 2;
  }

  .document-row,
  .partner-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .route-map {
    grid-template-columns: 1fr;
  }

  .sea-lane {
    min-height: 76px;
  }

  .sea-lane::before {
    top: 50%;
  }

  .sea-lane::after {
    right: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(50%) rotate(135deg);
  }

  .document-row,
  .partner-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner,
  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-label,
  .section-label,
  .panel-eyebrow {
    font-size: 16px;
  }

  .copy-email {
    margin-top: 8px;
  }

  .policy-hero {
    padding: 52px 0 30px;
  }

  .policy-content h2 {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile overflow fix for the published preview copy. */
@media (max-width: 780px) {
  .container,
  .header-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
    min-width: 0;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 56px);
    gap: 8px;
  }

  .brand-divider,
  .brand-image,
  .nav-toggle {
    flex: 0 0 auto;
  }

  .brand-company {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-grid,
  .factory-hero .hero-grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 28px 0 32px;
  }

  .hero-copy,
  .hero-text,
  .hero-note,
  .hero-actions,
  .diagnostic-panel,
  .section-heading,
  .factory-panel {
    min-width: 0;
    max-width: 100%;
  }

  .hero h1,
  .factory-hero h1 {
    max-width: 100%;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.22;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.75;
  }

  .diagnostic-panel,
  .factory-panel {
    width: 100%;
    padding: 14px;
  }

  .diagnostic-panel::before {
    inset: 12px auto 12px 0;
    width: 4px;
    height: auto;
  }

  .panel-top h2 {
    white-space: normal;
  }

  .issue-grid,
  .issue-diagram,
  .entry-grid,
  .service-grid,
  .cargo-grid,
  .pricing-grid,
  .timeline,
  .faq-list,
  .info-checklist,
  .mini-flow,
  .factory-route-flow {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container,
  .header-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand {
    max-width: calc(100% - 52px);
    gap: 7px;
  }

  .brand-image {
    width: 68px;
    max-height: 26px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    top: 64px;
    right: 14px;
    left: 14px;
  }

  .hero-grid,
  .factory-hero .hero-grid {
    gap: 18px;
    padding: 22px 0 28px;
  }

  .hero h1,
  .factory-hero h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.24;
  }

  .hero-text,
  .factory-hero-lead {
    font-size: 14.5px;
    line-height: 1.72;
  }

  .hero-note {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions .button,
  .factory-hero .hero-actions .button {
    min-height: 48px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .diagnostic-panel,
  .factory-panel,
  .entry-grid article,
  .service-grid article,
  .cargo-card,
  .pricing-card,
  .pricing-conditions,
  .check-panel,
  .info-checklist {
    padding: 16px;
  }
}
