:root {
  --color-white: #ffffff;
  --color-soft: #f7faf5;
  --color-navy: #0d2f1b;
  --color-deep: #254536;
  --color-brand-blue: #6db92c;
  --color-brand-teal: #008842;
  --color-sumluck-green: #008842;
  --color-green: #6db92c;
  --color-green-soft: #eff8e9;
  --color-teal-soft: #edf8f0;
  --color-accent: #008842;
  --color-pale: #f1faec;
  --color-border: #dfe8db;
  --color-text: #102119;
  --color-muted: #587066;
  --color-success: #008842;
  --color-warning: #a66922;
  --font-base: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-sm: 0 8px 20px rgba(13, 47, 27, 0.07);
  --shadow-md: 0 20px 50px rgba(13, 47, 27, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --container: 1200px;
  --header-height: 76px;
}

body {
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a,
button,
input,
select,
textarea,
summary {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid rgba(109, 185, 44, 0.46);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: var(--color-white);
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sp-only {
  display: none;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 234, 240, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(13, 47, 27, 0.08);
}

.header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  min-width: max-content;
}

.brand__name {
  color: var(--color-text);
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand__oo {
  color: var(--color-sumluck-green);
}

.brand__tagline {
  color: var(--color-muted);
  font-size: 0.7rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.91rem;
  font-weight: 700;
  color: var(--color-deep);
}

.global-nav a {
  border-radius: 999px;
  padding: 10px 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  background: var(--color-teal-soft);
  color: var(--color-brand-teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  place-items: center;
  background: var(--color-white);
}

.nav-toggle__line {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--color-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__line + .nav-toggle__line {
  margin-top: 4px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(241, 250, 236, 0.98), rgba(255, 255, 255, 0.84) 42%, rgba(237, 248, 240, 0.96)),
    linear-gradient(180deg, var(--color-white), var(--color-soft));
  padding: 108px 0 96px;
}

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

.hero--home {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero--sub {
  padding: 116px 0 104px;
}

.hero--compact {
  padding: 104px 0 84px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 64px;
  min-width: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero__visual {
  min-width: 0;
}

.hero__narrow {
  max-width: 860px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3 {
  color: var(--color-text);
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

h1 {
  margin-top: 18px;
  font-size: clamp(3.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2.25rem, 3.4vw, 2.75rem);
}

h3 {
  font-size: 1.18rem;
}

.hero__lead {
  max-width: 760px;
  margin-top: 26px;
  color: var(--color-deep);
  font-size: 1.12rem;
  line-height: 2;
  overflow-wrap: anywhere;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge-list span,
.pill-grid span,
.mini-card-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(109, 185, 44, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-deep);
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(13, 47, 27, 0.04);
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.hero__actions,
.cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  line-height: 1.3;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--color-sumluck-green), var(--color-green));
  color: var(--color-white);
  box-shadow: 0 16px 30px rgba(0, 136, 66, 0.22);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--color-navy), var(--color-sumluck-green));
}

.button--secondary {
  border: 1px solid var(--color-sumluck-green);
  background: var(--color-white);
  color: var(--color-sumluck-green);
}

.button--secondary:hover {
  background: var(--color-teal-soft);
}

.button--accent {
  background: var(--color-sumluck-green);
  color: var(--color-white);
  box-shadow: 0 16px 30px rgba(0, 136, 66, 0.2);
}

.button--accent:hover {
  background: var(--color-navy);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.64);
  color: var(--color-deep);
}

.button--ghost:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.dashboard-mock {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(229, 234, 240, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.dashboard-mock::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(109, 185, 44, 0.18), rgba(0, 136, 66, 0.14), rgba(255, 255, 255, 0));
}

.dashboard-mock__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
}

.dashboard-mock__top strong {
  display: block;
  margin-top: 4px;
  color: var(--color-navy);
  font-size: 1.35rem;
}

.mock-label {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  background: #fff4e4;
  color: var(--color-warning);
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill--active,
.status-pill--done {
  background: #eaf7f2;
  color: var(--color-success);
}

.status-pill--soft {
  background: var(--color-pale);
  color: var(--color-accent);
}

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

.mock-stats article {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7fcf4);
  padding: 16px;
}

.mock-stats span {
  display: block;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.mock-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--color-navy);
  font-size: 2rem;
  line-height: 1;
}

.mock-case-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mock-case {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-white);
  padding: 13px;
}

.mock-case strong {
  display: block;
  color: var(--color-text);
  line-height: 1.3;
}

.mock-case p {
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.case-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--color-warning);
}

.case-dot--blue {
  background: var(--color-accent);
}

.case-dot--green {
  background: var(--color-success);
}

.language-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.language-row span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  border-radius: 999px;
  background: var(--color-pale);
  color: var(--color-navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.org-map {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(229, 234, 240, 0.9);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 233, 0.78));
  box-shadow: var(--shadow-md);
}

.org-map::before,
.org-map::after {
  content: "";
  position: absolute;
  inset: 50% 12%;
  height: 1px;
  background: rgba(0, 136, 66, 0.26);
}

.org-map::after {
  transform: rotate(90deg);
}

.org-map__center,
.org-map__item {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 64px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-white);
  padding: 12px 18px;
  color: var(--color-navy);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.org-map__center {
  top: 50%;
  left: 50%;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 1.24rem;
}

.visual-stack {
  position: relative;
}

.worker-scene-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 234, 240, 0.95);
  border-radius: 28px;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.worker-scene-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 56%;
  height: 38%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.worker-scene-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.worker-scene-card figcaption {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  max-width: 330px;
  border: 1px solid rgba(229, 234, 240, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-navy);
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.55;
  box-shadow: 0 12px 28px rgba(13, 47, 27, 0.1);
  backdrop-filter: blur(10px);
}

.dashboard-mock--floating {
  width: min(450px, 88%);
  margin: -92px 18px 0 auto;
  padding: 18px;
}

.dashboard-mock--hero {
  width: min(520px, 100%);
  margin-inline: auto;
  padding: 24px;
}

.dashboard-mock--floating .mock-stats {
  gap: 10px;
}

.dashboard-mock--floating .mock-stats article {
  padding: 13px;
}

.dashboard-mock--floating .mock-stats strong {
  font-size: 1.6rem;
}

.dashboard-mock--floating .mock-case-list {
  margin-top: 14px;
}

.visual-stack--org .worker-scene-card {
  width: 92%;
}

.worker-scene-card--compact img {
  aspect-ratio: 16 / 9;
}

.org-map--compact {
  width: min(430px, 88%);
  min-height: 286px;
  margin: -74px 0 0 auto;
}

.org-map--standalone {
  width: min(520px, 100%);
  min-height: 390px;
  margin-inline: auto;
}

.org-map--compact .org-map__center {
  width: 104px;
  height: 104px;
  font-size: 1rem;
}

.org-map--compact .org-map__item {
  min-height: 52px;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 0.82rem;
}

.org-map--compact .org-map__item--one,
.org-map--compact .org-map__item--two {
  top: 24px;
}

.org-map--compact .org-map__item--three,
.org-map--compact .org-map__item--four {
  bottom: 24px;
}

.org-map--compact .org-map__item--one,
.org-map--compact .org-map__item--three {
  left: 22px;
}

.org-map--compact .org-map__item--two,
.org-map--compact .org-map__item--four {
  right: 22px;
}

.org-map__item--one {
  top: 38px;
  left: 38px;
}

.org-map__item--two {
  top: 38px;
  right: 38px;
}

.org-map__item--three {
  bottom: 38px;
  left: 38px;
}

.org-map__item--four {
  bottom: 38px;
  right: 38px;
}

.section {
  padding: 104px 0;
}

.section--soft {
  background: var(--color-soft);
}

.section--white {
  background: var(--color-white);
}

.section__header {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section__header--left {
  margin-inline: 0;
  text-align: left;
}

.section__header h2 {
  margin-top: 14px;
}

.section__header p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 1.03rem;
}

.card-grid,
.feature-grid,
.value-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

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

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

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

.value-grid .value-card:nth-child(4) {
  grid-column: span 3;
}

.card,
.feature-card,
.value-card,
.trust-card,
.text-panel,
.profile-table,
.contact-form,
.contact-info,
.legal-doc,
.comparison-cards article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.card,
.feature-card,
.value-card,
.trust-card,
.text-panel,
.comparison-cards article {
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.feature-card:hover,
.value-card:hover,
.trust-card:hover,
.comparison-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 136, 66, 0.32);
  box-shadow: var(--shadow-md);
}

.card h3,
.feature-card h3,
.value-card h3,
.trust-card h3 {
  margin-top: 14px;
}

.card p,
.feature-card p,
.value-card p,
.trust-card p,
.text-panel p,
.comparison-cards li,
.legal-doc p,
.profile-table dd {
  color: var(--color-muted);
}

.card p,
.value-card p,
.trust-card p {
  margin-top: 12px;
}

.icon-badge,
.feature-card__icon,
.value-card__number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--color-teal-soft);
  color: var(--color-sumluck-green);
  font-weight: 800;
}

.feature-card__icon {
  background: linear-gradient(135deg, var(--color-sumluck-green), var(--color-green));
  color: var(--color-white);
  font-size: 1.35rem;
}

.feature-card ul,
.comparison-cards ul,
.profile-table ul {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.feature-card li::marker,
.comparison-cards li::marker,
.profile-table li::marker {
  color: var(--color-accent);
}

.notice {
  margin-top: 28px;
  border: 1px solid rgba(109, 185, 44, 0.28);
  border-radius: var(--radius-md);
  background: var(--color-teal-soft);
  color: var(--color-deep);
  padding: 18px 20px;
  font-weight: 600;
}

.table-wrap {
  margin-top: 42px;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: #f4faef;
  color: var(--color-navy);
  font-weight: 800;
}

.comparison-table tbody th {
  width: 24%;
  color: var(--color-text);
  font-weight: 800;
}

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

.comparison-table td {
  color: var(--color-muted);
}

.comparison-table td:last-child {
  color: var(--color-deep);
  font-weight: 700;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.split-layout,
.trust-layout,
.contact-layout,
.faq-page {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.trust-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
}

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

.mini-card-grid span {
  justify-content: center;
  min-height: 64px;
  border-radius: var(--radius-md);
  text-align: center;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.role-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: var(--color-white);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.role-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-sumluck-green), var(--color-green));
}

.role-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 136, 66, 0.32);
  box-shadow: var(--shadow-md);
}

.role-card__mark {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  min-height: 42px;
  border-radius: 999px;
  background: var(--color-teal-soft);
  color: var(--color-sumluck-green);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 900;
}

.role-card__label {
  margin-top: 18px;
  color: var(--color-sumluck-green);
  font-size: 0.84rem;
  font-weight: 900;
}

.role-card h3 {
  margin-top: 8px;
}

.role-card p:not(.role-card__label) {
  margin-top: 12px;
  color: var(--color-muted);
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.comparison-cards h3 {
  color: var(--color-navy);
}

.executive-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(109, 185, 44, 0.32);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(13, 47, 27, 0.98), rgba(0, 136, 66, 0.94) 58%, rgba(109, 185, 44, 0.9)),
    var(--color-navy);
  padding: 44px;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.executive-panel h2,
.executive-panel p,
.executive-panel .eyebrow {
  color: var(--color-white);
}

.executive-panel h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3vw, 2.55rem);
}

.executive-panel__copy p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
}

.executive-metrics {
  display: grid;
  gap: 12px;
}

.executive-metrics article {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 6px 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
}

.executive-metrics span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  min-height: 64px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.executive-metrics strong {
  color: var(--color-white);
  font-size: 1.1rem;
  line-height: 1.4;
}

.executive-metrics p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cta-section {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(13, 47, 27, 0.98), rgba(0, 136, 66, 0.94) 56%, rgba(109, 185, 44, 0.9)),
    var(--color-navy);
}

.cta-box {
  max-width: 960px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  padding: 48px;
  color: var(--color-white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

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

.cta-box h2 {
  margin-top: 14px;
  max-width: 760px;
}

.cta-box p:not(.eyebrow) {
  margin-top: 16px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-box .button--secondary,
.cta-box .button--ghost {
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
  color: var(--color-white);
}

.cta-box .button--secondary:hover,
.cta-box .button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list--short {
  max-width: 900px;
  margin: 42px auto 0;
}

.faq-list details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding: 20px 56px 20px 22px;
  color: var(--color-text);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-pale);
  color: var(--color-navy);
  transform: translateY(-50%);
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  border-top: 1px solid var(--color-border);
  padding: 18px 22px 22px;
  color: var(--color-muted);
}

.section-link {
  margin-top: 26px;
  text-align: center;
}

.text-link {
  color: var(--color-accent);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.faq-page {
  grid-template-columns: 280px minmax(0, 1fr);
}

.faq-nav {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: grid;
  gap: 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.faq-nav a {
  border-radius: var(--radius-sm);
  color: var(--color-deep);
  padding: 9px 10px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.faq-nav a:hover {
  background: var(--color-pale);
  color: var(--color-navy);
}

.faq-content {
  display: grid;
  gap: 36px;
}

.faq-category h2 {
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.contact-form,
.contact-info {
  padding: 30px;
}

.form-section h2,
.contact-info h2 {
  color: var(--color-navy);
  font-size: 1.6rem;
}

.form-note {
  margin-top: 10px;
  color: var(--color-muted);
}

.form-note a,
.contact-info a,
.legal-doc a,
.consent-check a {
  color: var(--color-accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.form-field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.form-grid .form-field {
  margin-top: 0;
}

.form-field--wide {
  grid-column: span 2;
}

.form-field label,
.checkbox-group legend {
  color: var(--color-deep);
  font-weight: 800;
}

.form-field label span {
  color: var(--color-warning);
  font-size: 0.78rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(109, 185, 44, 0.16);
}

.form-field textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px;
}

.checkbox-group legend {
  padding: 0 6px;
}

.checkbox-group label,
.consent-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  border-radius: var(--radius-sm);
  color: var(--color-deep);
  font-weight: 700;
}

.checkbox-group input,
.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  accent-color: var(--color-sumluck-green);
}

.consent-check {
  margin-top: 22px;
}

.consent-check strong {
  color: var(--color-warning);
  font-size: 0.78rem;
}

.form-error {
  min-height: 1.7em;
  margin-top: 14px;
  color: #9c2f2f;
  font-weight: 800;
}

.form-error.is-success {
  color: var(--color-sumluck-green);
}

.form-submit {
  margin-top: 10px;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-info {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.contact-info dl {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-info dt {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-info dd {
  color: var(--color-deep);
  font-weight: 700;
}

.profile-table {
  padding: 8px 28px;
}

.profile-table dl {
  display: grid;
}

.profile-table dl > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--color-border);
  padding: 22px 0;
}

.profile-table dl > div:last-child {
  border-bottom: 0;
}

.profile-table dt {
  color: var(--color-navy);
  font-weight: 800;
}

.text-panel p + p {
  margin-top: 16px;
}

.legal-layout {
  max-width: 900px;
}

.legal-doc {
  margin-top: 22px;
  padding: 36px;
}

.legal-doc h2 {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 1.35rem;
}

.legal-doc h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-doc p {
  margin-top: 10px;
}

.site-footer {
  background:
    linear-gradient(135deg, #0d2f1b, #008842 72%, #0d2f1b),
    var(--color-navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
}

.brand--footer .brand__name,
.brand--footer .brand__tagline {
  color: var(--color-white);
}

.brand--footer .brand__oo {
  color: #6db92c;
}

.footer__brand p {
  max-width: 560px;
  margin-top: 12px;
}

.footer__brand a,
.footer__link-group a {
  color: rgba(255, 255, 255, 0.88);
}

.footer__brand p a:hover,
.footer__link-group a:hover {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.footer__link-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer__heading {
  color: var(--color-white);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer__links a:hover {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  font-size: 0.88rem;
}

.footer__bottom p:first-child {
  max-width: 760px;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .global-nav {
    gap: 0;
    font-size: 0.84rem;
  }

  .global-nav a {
    padding-inline: 9px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero__visual {
    max-width: 620px;
  }

  .executive-panel {
    grid-template-columns: 1fr;
  }

  .card-grid--3,
  .feature-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid .value-card:nth-child(4) {
    grid-column: span 2;
  }

  .split-layout,
  .trust-layout,
  .contact-layout,
  .faq-page {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-nav,
  .contact-info {
    position: static;
  }
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: grid;
  }

  .global-nav {
    position: fixed;
    inset: var(--header-height) 12px auto 12px;
    display: grid;
    gap: 8px;
    max-height: calc(100dvh - var(--header-height) - 24px);
    overflow-y: auto;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: var(--color-white);
    padding: 14px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    width: 100%;
    border-radius: var(--radius-md);
    padding: 12px 14px;
  }

}

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 56px);
    max-width: calc(100vw - 56px);
  }

  .header__inner {
    min-height: var(--header-height);
  }

  .brand__name {
    font-size: 1.35rem;
  }

  .brand__tagline {
    font-size: 0.63rem;
  }

  .hero,
  .hero--sub,
  .hero--compact {
    padding: 64px 0 54px;
  }

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

  h1 {
    font-size: clamp(2.1rem, 9vw, 2.45rem);
  }

  .sp-only {
    display: block;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.125rem);
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.85;
  }

  .hero__actions,
  .cta-box__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .button {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    padding-inline: 16px;
  }

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

  .badge-list span {
    width: 100%;
    justify-content: flex-start;
    border-radius: var(--radius-md);
    text-align: left;
  }

  .dashboard-mock,
  .org-map {
    border-radius: 18px;
  }

  .worker-scene-card {
    border-radius: 18px;
  }

  .dashboard-mock--floating,
  .dashboard-mock--hero,
  .org-map--compact,
  .org-map--standalone {
    width: 94%;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .visual-stack--org .worker-scene-card {
    width: 100%;
  }

  .mock-stats {
    grid-template-columns: 1fr;
  }

  .mock-case {
    grid-template-columns: auto 1fr;
  }

  .mock-case .status-pill {
    grid-column: 2;
    justify-self: start;
  }

  .language-row span {
    width: 38px;
  }

  .org-map {
    min-height: 360px;
  }

  .org-map--compact,
  .org-map--standalone {
    min-height: 320px;
  }

  .org-map__center {
    width: 104px;
    height: 104px;
  }

  .org-map__item {
    min-height: 52px;
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .org-map__item--one,
  .org-map__item--three {
    left: 16px;
  }

  .org-map__item--two,
  .org-map__item--four {
    right: 16px;
  }

  .section {
    padding: 58px 0;
  }

  .section__header {
    text-align: left;
  }

  .card-grid--3,
  .feature-grid,
  .value-grid,
  .role-grid,
  .comparison-cards,
  .mini-card-grid,
  .executive-panel,
  .executive-metrics article {
    grid-template-columns: 1fr;
  }

  .executive-panel {
    border-radius: 20px;
    padding: 28px;
  }

  .executive-metrics span {
    grid-row: auto;
    min-height: 44px;
    justify-content: start;
    padding: 0 14px;
  }

  .value-grid .value-card:nth-child(4) {
    grid-column: auto;
  }

  .card,
  .feature-card,
  .value-card,
  .trust-card,
  .text-panel,
  .comparison-cards article,
  .contact-form,
  .contact-info,
  .legal-doc {
    padding: 22px;
  }

  .pill-grid {
    justify-content: flex-start;
  }

  .pill-grid span,
  .mini-card-grid span {
    width: 100%;
    justify-content: flex-start;
    border-radius: var(--radius-md);
  }

  .comparison-table {
    min-width: 690px;
  }

  .faq-nav {
    display: none;
  }

  .faq-category h2 {
    font-size: 1.45rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .checkbox-group {
    display: grid;
  }

  .profile-table dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cta-section {
    padding: 58px 0;
  }

  .cta-box {
    border-radius: 20px;
    padding: 28px;
  }

  .footer__grid,
  .footer__bottom {
    grid-template-columns: 1fr;
    display: grid;
    gap: 28px;
  }

  .footer__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 56px);
    max-width: 334px;
  }
}

@media (max-width: 390px) {
  .container {
    width: calc(100% - 40px);
    max-width: 330px;
  }

  .brand__tagline {
    max-width: 160px;
  }

  .org-map__item {
    max-width: 118px;
  }
}
