:root {
  --ink: #12212a;
  --muted: #5c6a72;
  --line: #dce7e8;
  --paper: #ffffff;
  --soft: #f5faf9;
  --teal: #006b68;
  --teal-strong: #004f4d;
  --blue: #276ef1;
  --yellow: #f5b941;
  --shadow: 0 22px 60px rgba(18, 33, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 0 32px;
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.menu-active,
.site-header-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(18, 33, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.header-cta,
.footer-inner,
.hero-facts,
.case-tabs {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  width: 206px;
  height: 35px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-header.scrolled .brand img,
.site-header.menu-active .brand img,
.site-header-solid .brand img {
  filter: none;
}

.site-nav {
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.header-cta {
  justify-self: end;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--teal-strong);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.site-header.scrolled .header-cta,
.site-header.menu-active .header-cta,
.site-header-solid .header-cta {
  color: #fff;
  background: var(--teal);
}

.site-nav .current {
  color: var(--teal);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 39, 47, 0.76) 0%, rgba(2, 39, 47, 0.53) 44%, rgba(2, 39, 47, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 79, 77, 0.28), rgba(0, 79, 77, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92vh;
  padding: 120px 0 76px;
}

.eyebrow,
.philosophy-eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading .philosophy-eyebrow {
  color: var(--teal);
}

.hero .eyebrow {
  color: var(--yellow);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.16;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.28;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.35;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 14px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(0, 107, 104, 0.28);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
}

.button.full {
  width: 100%;
}

.hero-facts {
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.hero-facts div {
  min-width: 156px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.hero-facts dd {
  margin: 0;
  font-weight: 800;
}

.section {
  padding: 94px 0;
}

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

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p,
.value-layout p,
.contact-layout p,
.profile-layout p {
  color: var(--muted);
}

.problem-section,
.profile-section {
  background: var(--soft);
}

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

.problem-section .section-heading {
  max-width: 980px;
}

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

.problem-grid article {
  position: relative;
  min-height: 220px;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 33, 42, 0.05);
}

.problem-grid h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.45;
}

.problem-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.problem-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--teal);
  background: rgba(0, 107, 104, 0.09);
  place-items: center;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-layout,
.contact-layout,
.profile-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 110px;
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-list article,
.service-steps article,
.flow-steps article,
.experience-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 33, 42, 0.06);
}

.process-list article {
  position: relative;
  padding: 24px 30px 24px 92px;
}

.process-list span {
  position: absolute;
  top: 24px;
  left: 28px;
  color: var(--teal);
  font-size: 22px;
  font-weight: 800;
}

.process-list p,
.service-steps p,
.flow-steps p,
.experience-card p,
.experience-card dd,
.case-column li {
  color: var(--muted);
}

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

.strengths-section .section-heading {
  max-width: 980px;
  margin-bottom: 28px;
}

.strengths-section .eyebrow {
  color: var(--yellow);
}

.strengths-section .section-heading p:not(.eyebrow) {
  color: var(--ink);
}

.strengths-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

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

.strengths-grid article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 0;
  padding: 16px 18px 16px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 33, 42, 0.06);
}

.strengths-grid article:last-child {
  grid-column: auto;
}

.strength-icon {
  display: grid;
  grid-row: 1;
  margin: 0;
  color: var(--teal);
  place-items: center;
}

.strength-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strengths-grid h3 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.42;
}

.strengths-grid p,
.strengths-grid small {
  color: var(--ink);
}

.strengths-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
}

.strengths-grid small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
}

.strengths-grid strong {
  color: var(--teal);
}

.strengths-side {
  display: grid;
  gap: 14px;
}

.improvement-cycle {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5faf9 0%, #edf5f3 100%);
  box-shadow: 0 18px 42px rgba(18, 33, 42, 0.08);
}

.improvement-cycle {
  padding: 28px;
}

.cycle-heading h3 {
  margin-bottom: 0;
  color: var(--teal-strong);
  font-size: 27px;
}

.cycle-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.cycle-loop {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  margin: 30px auto 0;
}

.cycle-arrow-ring {
  position: absolute;
  inset: 14px;
  overflow: visible;
  fill: none;
  pointer-events: none;
}

.cycle-arrow-ring>path {
  stroke: var(--yellow);
  stroke-width: 3;
  stroke-linecap: round;
  marker-end: url("#cycle-arrow-head");
}

.cycle-arrow-ring marker path {
  fill: var(--yellow);
  stroke: none;
}

.cycle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 124px;
  height: 124px;
  border: 1px solid rgba(0, 107, 104, 0.18);
  border-radius: 50%;
  color: var(--teal-strong);
  background: #dcebea;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  transform: translate(-50%, -50%);
  place-items: center;
}

.cycle-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cycle-steps li {
  position: absolute;
  display: grid;
  gap: 6px;
  align-content: center;
  width: 148px;
  min-height: 104px;
  padding: 16px 14px 14px;
  border: 1px solid rgba(0, 107, 104, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  line-height: 1.4;
  box-shadow: 0 12px 28px rgba(18, 33, 42, 0.08);
}

.cycle-steps li:nth-child(1) {
  top: 13%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cycle-steps li:nth-child(2) {
  top: 34%;
  left: 83%;
  transform: translate(-50%, -50%);
}

.cycle-steps li:nth-child(3) {
  top: 72%;
  left: 83%;
  transform: translate(-50%, -50%);
}

.cycle-steps li:nth-child(4) {
  top: 89%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cycle-steps li:nth-child(5) {
  top: 72%;
  left: 17%;
  transform: translate(-50%, -50%);
}

.cycle-steps li:nth-child(6) {
  top: 34%;
  left: 17%;
  transform: translate(-50%, -50%);
}

.cycle-number {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 28px;
  height: 28px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  place-items: center;
}

.cycle-icon {
  display: grid;
  color: var(--teal);
  justify-self: center;
  place-items: center;
}

.cycle-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cycle-steps strong {
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.cycle-steps small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.cycle-mobile-note {
  display: none;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-steps {
  display: grid;
  gap: 32px;
}

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

.service-steps article {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.4fr) minmax(170px, 0.44fr);
  gap: 26px;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}

.service-card-head {
  padding: 28px;
  background: var(--soft);
}

.service-card-head span,
.flow-steps article>span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.service-card-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 30px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
}

.service-card-head h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.service-card-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.service-card-body {
  padding: 28px 0;
}

.service-card-body p {
  max-width: 680px;
  margin-bottom: 18px;
}

.service-card-body h4 {
  margin: 0 0 10px;
  font-size: 14px;
}

.service-card-price {
  display: grid;
  align-content: center;
  padding: 28px;
  border-left: 1px solid var(--line);
  background: #fff;
}

.service-card-price>span {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.price {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.3;
}

.price span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

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

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

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.service-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

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

.flow-steps {
  position: relative;
  display: grid;
  max-width: 820px;
  gap: 18px;
  margin: 0 auto;
}

.flow-steps article {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
}

.flow-steps h3 {
  font-size: 19px;
}

.flow-steps article>span {
  display: inline-flex;
  flex: 0 0 76px;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 8px;
  background: rgba(0, 107, 104, 0.1);
}

.flow-steps article>h3 {
  flex: 0 0 180px;
  margin-bottom: 0;
}

.flow-steps article>p {
  flex: 1 1 auto;
  margin-bottom: 0;
}

.flow-steps article:not(:last-child)::after {
  position: absolute;
  bottom: -19px;
  left: 65px;
  width: 2px;
  height: 20px;
  background: var(--teal);
  content: "";
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.experience-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 26px;
}

.experience-card h3 {
  min-height: 58px;
}

.experience-card p {
  margin-bottom: 16px;
}

.experience-card p:not(.experience-meta, .experience-result) {
  font-size: 15px;
}

.experience-icon {
  position: relative;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(0, 107, 104, 0.1);
}

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

.experience-icon::before {
  inset: 10px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.experience-icon::after {
  top: 12px;
  left: 20px;
  width: 2px;
  height: 10px;
  background: var(--teal);
  transform-origin: bottom;
}

.experience-icon span {
  top: 20px;
  left: 20px;
  width: 9px;
  height: 2px;
  background: var(--teal);
}

.experience-icon.cloud {
  background: rgba(39, 110, 241, 0.1);
}

.experience-icon.cloud::before {
  top: 18px;
  right: auto;
  bottom: auto;
  left: 9px;
  width: 24px;
  height: 12px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  background: #fff;
}

.experience-icon.cloud::after {
  top: 12px;
  right: auto;
  bottom: auto;
  left: 15px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--blue);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: #fff;
}

.experience-icon.cloud span {
  top: 30px;
  left: 12px;
  width: 18px;
  height: 2px;
  background: var(--blue);
}

.experience-icon.workflow::before {
  top: 10px;
  right: auto;
  bottom: auto;
  left: 10px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--teal);
  border-radius: 3px;
}

.experience-icon.workflow::after {
  top: 24px;
  right: auto;
  bottom: auto;
  left: 24px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--teal);
  border-radius: 3px;
}

.experience-icon.workflow span {
  top: 20px;
  left: 18px;
  width: 12px;
  height: 2px;
  background: var(--teal);
  transform: rotate(45deg);
}

.experience-card .experience-meta {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.experience-card .experience-result {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.experience-result div+div {
  margin-top: 14px;
}

.experience-result dt {
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.experience-result dd {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
}

.experience-result small {
  font-size: 17px;
  font-weight: 800;
}

.experience-note {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
}

ul {
  margin: 0;
  padding-left: 1.2em;
}

.case-tabs {
  gap: 14px;
  overflow-x: auto;
  margin-bottom: 34px;
  padding-bottom: 4px;
}

.case-tabs button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.case-tabs button:hover {
  transform: translateY(-1px);
}

.case-tabs button.active {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.case-tab-icon {
  display: inline-grid;
  place-items: center;
}

.case-tab-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.08fr) auto minmax(0, 0.96fr);
  gap: 10px;
  align-items: center;
  animation: caseFade 220ms ease;
}

@keyframes caseFade {
  from {
    opacity: 0.72;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-column {
  min-height: 430px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 33, 42, 0.06);
}

.case-column-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.case-column .eyebrow {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--soft);
}

.case-column:not(.after, .results) .eyebrow,
.case-column:not(.after, .results) li strong {
  color: var(--muted);
}

.case-column:not(.after, .results) .eyebrow {
  background: rgba(92, 106, 114, 0.1);
}

.case-column:not(.after, .results) .case-item-icon {
  color: var(--muted);
  background: rgba(92, 106, 114, 0.1);
}

.case-column h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.case-column h3 span {
  margin-left: 4px;
  font-size: 15px;
}

.case-column ul {
  display: grid;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.case-column li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 10px 0;
  color: var(--muted);
  font-weight: 700;
}

.case-column li::before {
  display: none;
}

.case-item-icon {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--muted);
  background: var(--soft);
  place-items: center;
}

.case-item-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-column li strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.case-column.after {
  color: #fff;
  border-color: var(--teal-strong);
  background:
    linear-gradient(135deg, rgba(0, 107, 104, 0.96), rgba(0, 79, 77, 0.98)),
    var(--teal-strong);
  box-shadow: 0 18px 44px rgba(0, 79, 77, 0.24);
}

.case-column.after li {
  color: rgba(255, 255, 255, 0.88);
}

.case-column.after .case-item-icon {
  color: var(--teal);
  background: #fff;
}

.case-column.after li strong {
  color: #fff;
  font-weight: 700;
}

.case-column.after .eyebrow {
  color: var(--teal-strong);
  background: #fff;
}

.case-column.results {
  background: linear-gradient(135deg, #f5faf9, #edf5f3);
}

.case-column.results li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 33, 42, 0.05);
}

.case-column.results li::before {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  content: "✓";
  font-size: 17px;
  line-height: 38px;
  text-align: center;
}

.case-arrow {
  color: var(--muted);
  font-size: 34px;
  font-weight: 800;
}

.case-note {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1040px;
  margin: 28px auto 0;
  padding: 26px 32px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(18, 33, 42, 0.04);
  font-size: 16px;
  font-weight: 700;
}

.case-note-icon {
  display: grid;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(0, 107, 104, 0.08);
  place-items: center;
}

.case-note-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-note p {
  margin-bottom: 0;
}

.profile-layout {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.subpage-hero {
  padding: 154px 0 86px;
  background:
    linear-gradient(120deg, rgba(0, 79, 77, 0.1), rgba(39, 110, 241, 0.08)),
    var(--soft);
}

.subpage-hero-inner {
  max-width: 880px;
}

.subpage-hero h1 {
  margin-bottom: 18px;
  color: var(--ink);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.privacy-hero {
  padding: 138px 0 72px;
}

.privacy-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.22;
}

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

.privacy-container {
  max-width: 1000px;
}

.privacy-toc {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 33, 42, 0.06);
}

.privacy-toc h2 {
  margin-bottom: 24px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.privacy-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-toc a {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.privacy-toc a:hover {
  color: var(--teal);
}

.privacy-toc span,
.privacy-number {
  color: var(--teal);
  font-weight: 900;
}

.company-summary,
.company-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 56px;
  align-items: start;
}

.company-copy {
  max-width: 760px;
}

.company-copy p {
  color: var(--muted);
}

.company-info-section {
  background: #fff;
}

.company-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--soft);
}

.company-hero-media,
.company-hero-media img,
.company-hero-overlay {
  position: absolute;
  inset: 0;
}

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

.company-hero-overlay {
  background: transparent;
}

.company-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 820px;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  padding: 138px 0 74px;
}

.company-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.28;
}

.company-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.company-vision-section {
  padding-top: 76px;
  background: var(--soft);
}

.company-mission-section {
  background: #fff;
}

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

.company-statement {
  max-width: 820px;
  animation: companyFadeIn 700ms ease both;
}

.company-statement h2 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.5;
}

.company-statement-copy {
  max-width: 780px;
}

.company-statement-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.company-statement-copy p+p {
  margin-top: 22px;
}

.company-message h2 {
  margin-bottom: 34px;
}

.company-message-copy {
  max-width: 800px;
}

.company-message-copy p {
  font-size: 17px;
  line-height: 1.85;
}

.company-message-copy p+p {
  margin-top: 28px;
}

@keyframes companyFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-statement {
    animation: none;
  }
}

.privacy-section {
  background: #fff;
}

.company-info-section+.profile-section {
  background: var(--paper);
}

.text-link {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.company-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  color: var(--teal);
  font-weight: 800;
}

.company-table dd {
  margin: 0;
  color: var(--muted);
}

.privacy-content {
  display: grid;
  gap: 0;
}

.privacy-intro {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.privacy-chapter {
  scroll-margin-top: 96px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.privacy-chapter:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-number {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.privacy-chapter h2 {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(22px, 2.4vw, 30px);
}

.privacy-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.privacy-content p+p,
.privacy-content p+.privacy-list,
.privacy-content .privacy-list+p,
.privacy-content .privacy-list+.privacy-list {
  margin-top: 18px;
}

.privacy-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  list-style: none;
}

.privacy-list li {
  position: relative;
  padding-left: 1.3em;
}

.privacy-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "・";
  font-weight: 900;
}

.privacy-content strong {
  color: var(--ink);
  font-weight: 800;
}

.privacy-dates {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.company-cta-section {
  background: #fff;
}

.company-cta-container {
  max-width: 840px;
}

.contact-section {
  background: #fff;
}

.contact-banner {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 28px 32px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(245, 185, 65, 0.16), rgba(255, 255, 255, 0.86) 46%, rgba(0, 107, 104, 0.08)),
    #fff;
  box-shadow: 0 18px 42px rgba(18, 33, 42, 0.08);
}

.contact-banner-content {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
}

.contact-banner-icon {
  display: grid;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: var(--teal);
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 33, 42, 0.08);
  place-items: center;
}

.contact-banner-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-banner h2 {
  margin-bottom: 8px;
  color: var(--teal-strong);
  font-size: 24px;
}

.contact-banner p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-banner .button {
  width: 100%;
  min-width: 190px;
  box-shadow: 0 14px 30px rgba(0, 107, 104, 0.22);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

summary {
  padding: 16px 18px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.form-note {
  margin: 0;
  font-size: 12px;
}

.site-footer {
  padding: 56px 0;
  color: #fff;
  background: #44484b;
}

.footer-inner {
  display: grid;
  gap: 24px;
  max-width: 1200px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  transition: opacity 220ms ease;
}

.footer-brand:hover {
  opacity: 0.82;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-nav a {
  position: relative;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  transition: color 220ms ease;
}

.footer-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.footer-nav a:hover {
  color: #d7d7d7;
}

.footer-nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.footer-logo {
  width: 184px;
  height: 31px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-inner small {
  justify-self: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: var(--soft);
}

.not-found-inner {
  max-width: 720px;
  text-align: center;
}

.not-found-inner p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 20px;
  }

  .brand {
    width: 178px;
    height: 30px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
    place-content: center;
  }

  .site-header-solid .menu-button,
  .site-header.scrolled .menu-button,
  .site-header.menu-active .menu-button {
    background: var(--soft);
  }

  .menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .site-header.menu-active .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 30px rgba(18, 33, 42, 0.08);
  }

  .site-header.menu-active .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .value-layout,
  .contact-layout,
  .strengths-layout,
  .improvement-cycle,
  .profile-layout,
  .company-summary,
  .company-layout {
    grid-template-columns: 1fr;
  }

  .privacy-toc ol {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .cycle-steps {
    width: min(100%, 560px);
    margin: 0 auto;
  }

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

  .service-steps article {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-card-head,
  .service-card-body,
  .service-card-price {
    padding: 24px;
  }

  .service-card-price {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .case-arrow {
    text-align: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 96vh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(2, 39, 47, 0.8) 0%, rgba(2, 39, 47, 0.64) 68%, rgba(2, 39, 47, 0.28) 100%);
  }

  .hero-inner {
    min-height: 96vh;
    padding-top: 108px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .problem-grid,
  .strengths-grid,
  .experience-grid,
  .case-panel {
    grid-template-columns: 1fr;
  }

  .case-tabs {
    gap: 10px;
    margin-bottom: 24px;
  }

  .case-tabs button {
    min-height: 48px;
    padding: 0 16px;
  }

  .case-column {
    min-height: 0;
    padding: 20px;
  }

  .case-column-head {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
  }

  .case-column .eyebrow {
    width: fit-content;
    justify-self: start;
  }

  .case-column ul {
    gap: 10px;
  }

  .case-column li {
    min-height: 0;
    padding: 8px 0;
  }

  .case-item-icon {
    width: 42px;
    height: 42px;
  }

  .case-item-icon svg {
    width: 26px;
    height: 26px;
  }

  .case-column.results li {
    min-height: 0;
    padding: 10px 12px;
  }

  .case-column.results li::before {
    width: 34px;
    height: 34px;
    font-size: 15px;
    line-height: 34px;
  }

  .case-arrow {
    font-size: 32px;
  }

  .case-note {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .case-note-icon {
    width: 56px;
    height: 56px;
  }

  .contact-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    text-align: left;
  }

  .contact-banner-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-banner-icon {
    width: 64px;
    height: 64px;
  }

  .contact-banner h2 {
    font-size: 22px;
  }

  .strengths-grid article:last-child {
    grid-column: auto;
  }

  .strengths-grid article {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .strength-icon {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .strength-icon+div {
    grid-column: 2;
  }

  .improvement-cycle {
    padding: 22px;
  }

  .cycle-loop {
    width: 100%;
    aspect-ratio: auto;
    margin-left: 0;
  }

  .cycle-arrow-ring,
  .cycle-center {
    display: none;
  }

  .cycle-steps {
    display: grid;
    gap: 22px;
    width: 100%;
  }

  .cycle-steps li {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    transform: none;
  }

  .cycle-steps li:nth-child(1),
  .cycle-steps li:nth-child(2),
  .cycle-steps li:nth-child(3),
  .cycle-steps li:nth-child(4),
  .cycle-steps li:nth-child(5),
  .cycle-steps li:nth-child(6) {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .cycle-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: auto;
    bottom: -16px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 3px solid var(--yellow);
    border-bottom: 3px solid var(--yellow);
    transform: translateX(-50%) rotate(45deg);
  }

  .cycle-steps li:nth-child(6)::after {
    display: none;
  }

  .cycle-mobile-note {
    display: block;
    margin-top: 14px;
  }

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

  .service-card-head h3 {
    font-size: 22px;
  }

  .price {
    font-size: 21px;
  }

  .flow-steps article {
    display: grid;
    gap: 10px;
    padding: 24px;
  }

  .flow-steps article>span,
  .flow-steps article>h3 {
    flex: none;
  }

  .flow-steps article:not(:last-child)::after {
    left: 50%;
  }

  .experience-card h3 {
    min-height: 0;
  }

  .subpage-hero {
    padding: 118px 0 62px;
  }

  .privacy-hero {
    padding: 108px 0 52px;
  }

  .privacy-hero h1 {
    font-size: 32px;
  }

  .company-hero {
    min-height: 500px;
  }

  .company-hero-media img {
    object-position: 62% center;
  }

  .company-hero-overlay {
    background: transparent;
  }

  .company-hero-inner {
    min-height: 500px;
    padding: 116px 0 58px;
  }

  .company-hero h1 {
    font-size: 32px;
  }

  .company-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .company-statement h2 {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1.55;
  }

  .company-statement-copy p {
    font-size: 16px;
    line-height: 1.95;
  }

  .company-message h2 {
    margin-bottom: 22px;
  }

  .company-message-copy p {
    font-size: 16px;
    line-height: 1.9;
  }

  .company-message-copy p+p {
    margin-top: 24px;
  }

  .company-statement-copy br {
    display: none;
  }

  .privacy-toc {
    padding: 24px;
  }

  .privacy-chapter {
    padding: 36px 0;
  }

  .privacy-content p,
  .privacy-list {
    font-size: 15px;
  }

  .privacy-chapter h2 {
    font-size: 22px;
  }

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

  .process-list article {
    padding: 24px;
  }

  .process-list span {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
  }

  .footer-inner {
    display: grid;
  }

  .site-footer {
    padding: 46px 0;
  }

  .footer-main {
    display: grid;
    gap: 20px;
  }

  .footer-nav {
    align-items: flex-start;
  }

  .footer-inner small {
    justify-self: center;
    text-align: center;
  }

  .floating-cta {
    display: inline-flex;
  }
}
