:root {
  --color-bg: #f3f6fa;
  --color-bg-soft: #eef3f8;
  --color-surface: #ffffff;
  --color-text: #061b46;
  --color-muted: #415171;
  --color-border: #cfd8e6;
  --color-border-strong: #8ea2bd;
  --color-blue: #082b5f;
  --color-blue-deep: #061f46;
  --color-blue-soft: #edf3fa;
  --color-accent-blue: #1f5bd8;
  --color-green: #16864a;
  --color-green-soft: #eaf8ef;
  --shadow-header: none;
  --shadow-card: none;
  --shadow-node: none;
  --container: 1280px;
  --header-height: 96px;
  --radius-button: 4px;
  --radius-card: 6px;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: #ffffff;
  font-family: var(--font-family, "Noto Sans JP", system-ui, sans-serif);
  line-height: 1.7;
  overflow-x: clip;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid #d7e0ea;
  box-shadow: var(--shadow-header);
}

.header-inner {
  width: calc(100% - 96px);
  max-width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  color: var(--color-text);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-text-short {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
  flex: 1 1 auto;
  color: #13254a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  content: "";
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-button);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.header-cta {
  min-width: 176px;
  min-height: 54px;
  padding: 0 34px;
  color: #ffffff;
  background: #16a34a;
  border: 1px solid #16a34a;
  box-shadow: none;
  font-size: 16px;
}

.header-cta:hover {
  background: #12803a;
  border-color: #12803a;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-text);
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

body.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: clamp(44px, 3.8vw, 60px) 0 clamp(52px, 4.4vw, 72px);
  background-color: #dae3fa;
}

.hero-inner {
  width: calc(100% - 112px);
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(28px, 2.6vw, 42px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-top: clamp(0px, 0.6vw, 8px);
  padding-left: clamp(24px, 2.4vw, 48px);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 0 24px;
  padding: 0 20px;
  color: var(--color-blue);
  background: #ffffff;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.hero-title {
  max-width: 760px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(38px, 3vw, 48px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.34;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title em {
  color: #43a820;
  font-style: normal;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #142541;
  font-size: clamp(17px, 1.16vw, 19px);
  font-weight: 400;
  line-height: 1.92;
}

.hero-cta-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-cta-row .button {
  flex: 0 0 auto;
  min-width: 340px;
  min-height: 60px;
  padding: 0 34px;
  border-radius: 6px;
  font-size: 19px;
  font-weight: 900;
}

.button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid transparent;
  font-size: 16px;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  color: #ffffff;
  background: #16a34a;
  border-color: #16a34a;
  box-shadow: none;
}

.button-primary:hover {
  background: #12803a;
  border-color: #12803a;
  box-shadow: none;
}

.button-secondary {
  color: var(--color-blue);
  background: #ffffff;
  border-color: var(--color-blue);
}

.button-secondary:hover {
  color: var(--color-blue-deep);
  background: var(--color-blue-soft);
  border-color: var(--color-blue-deep);
}

.hero-note {
  margin: 16px 0 0;
  color: #50617c;
  font-size: 14px;
  font-weight: 400;
}

.team-visual {
  display: none;
  min-width: 0;
}

.hero-visual {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(38vw, 640px);
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 0 auto;
  z-index: 1;
}


.hero-visual img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  transform: none;
  position: relative;
  z-index: 1;
}

.about-ai-team {
  padding: clamp(104px, 8.8vw, 132px) 0;
  background: #ffffff;
}

.about-inner {
  width: calc(100% - 112px);
  max-width: 1160px;
  margin: 0 auto;
}

.section-header {
  display: grid;
  justify-items: center;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.section-header h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(34px, 2.7vw, 44px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0;
}

.section-header p {
  margin: 22px 0 0;
  color: #172945;
  font-size: clamp(16px, 1.08vw, 18px);
  font-weight: 400;
  line-height: 1.9;
}

.about-header p {
  max-width: 920px;
  margin-top: 30px;
  color: #142541;
  font-size: clamp(17px, 1.18vw, 19px);
  font-weight: 700;
  line-height: 1.9;
}

.about-body {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(44px, 5vw, 62px);
}

.about-visual {
  min-width: 0;
}

.about-visual img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 0 auto;
}

.about-content {
  min-width: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin: 0 0 24px;
  padding: 0 14px;
  color: var(--color-blue);
  background: #eef5ff;
  border-left: 3px solid var(--color-blue);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.section-label::before {
  display: block;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--color-green);
  border-radius: 50%;
}

.about-text {
  max-width: 960px;
  margin-top: 0;
  color: #172945;
  font-size: clamp(16px, 1.08vw, 18px);
  font-weight: 400;
  line-height: 1.92;
}

.about-text p {
  margin: 0;
}

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

.about-points {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
  padding-left: 0;
}

.about-points::before {
  content: none;
}

.about-point {
  position: relative;
  min-height: 100%;
  padding: 22px 24px 24px;
  background: #f7faff;
  border: 1px solid #d8e2ef;
  border-radius: 6px;
}

.about-point::before {
  position: absolute;
  top: -1px;
  left: 24px;
  width: 38px;
  height: 3px;
  content: "";
  background: var(--color-green);
  border-radius: 0 0 3px 3px;
}

.about-point:not(:last-child)::after {
  content: none;
}

.about-point:last-child {
  border-color: #cbd9ea;
}

.about-point-number {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  margin-bottom: 14px;
  color: var(--color-blue);
  background: #ffffff;
  border: 1px solid #b8c9de;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.about-point h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 900;
  line-height: 1.45;
}

.about-point p {
  margin: 10px 0 0;
  color: #314158;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}


.about-ai-team {
  padding: clamp(104px, 8.8vw, 132px) 0;
  background: #ffffff;
}

.about-inner {
  width: calc(100% - 112px);
  max-width: 1160px;
  margin: 0 auto;
}

.about-header {
  max-width: 980px;
}

.about-header h2 {
  position: relative;
}

.about-header h2::after {
  display: block;
  width: 58px;
  height: 4px;
  margin: 22px auto 0;
  content: "";
  background: #3b82f6;
  border-radius: 999px;
}

.about-header p {
  max-width: 920px;
  margin-top: 30px;
  color: #142541;
  font-size: clamp(17px, 1.18vw, 19px);
  font-weight: 700;
  line-height: 1.9;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 34px);
  margin-top: clamp(46px, 5vw, 64px);
}

.about-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 160px auto 1fr;
  align-content: start;
  justify-items: center;
  min-height: 100%;
  padding: 34px 28px 32px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #d7e3f4;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(8, 43, 95, 0.05);
}

.about-card-featured {
  border-color: #3b82f6;
  box-shadow: 0 14px 32px rgba(31, 91, 216, 0.10);
}

.about-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--color-text);
  background: #eef5ff;
  border: 1px solid #d7e3f4;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.about-card-featured .about-card-number {
  color: #ffffff;
  background: #3b82f6;
  border-color: #3b82f6;
}

.about-card img {
  width: 172px;
  height: 136px;
  object-fit: contain;
  margin: 0 auto 24px;
  align-self: center;
}

.about-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 900;
  line-height: 1.45;
}

.about-card h3,
.about-card p {
  align-self: start;
}

.about-card p {
  margin: 18px 0 0;
  color: #21324c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.about-flow {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: clamp(42px, 5vw, 58px);
  padding: 22px 24px;
  background: #eef5ff;
  border: 1px solid #dbe7f6;
  border-radius: 14px;
}

.about-flow-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 16px 18px;
  color: var(--color-text);
  background: #ffffff;
  border: 1px solid #d7e3f4;
  border-radius: 10px;
  text-align: center;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 900;
  line-height: 1.65;
}

.about-flow-arrow {
  color: #3b82f6;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.work-shift {
  padding: clamp(104px, 8.8vw, 132px) 0;
  background: #eef3f8;
}

.work-shift-inner {
  width: calc(100% - 112px);
  max-width: 1160px;
  margin: 0 auto;
}

.work-shift-header {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.work-shift-header h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(34px, 2.7vw, 44px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0;
}

.work-shift-lead {
  max-width: 930px;
  margin: 28px auto 0;
  color: #172945;
  font-size: clamp(16px, 1.08vw, 18px);
  font-weight: 400;
  line-height: 1.9;
}

.work-shift-lead p {
  margin: 0;
}

.work-shift-lead p + p {
  margin-top: 12px;
}

.work-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px);
  margin-top: clamp(42px, 5vw, 60px);
  align-items: stretch;
}

.work-panel {
  position: relative;
  min-height: 100%;
  padding: 30px 30px 32px;
  background: #ffffff;
  border: 1px solid #cbd7e6;
  border-radius: 10px;
  box-shadow: none;
}

.work-before {
  background: #f7faff;
}

.work-after {
  background: #ffffff;
  border-color: #b8d3c4;
}

.work-panel h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 900;
  line-height: 1.42;
}

.work-panel ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.work-panel li {
  position: relative;
  padding-left: 22px;
  color: #21324c;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
}

.work-panel li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 8px;
  height: 2px;
  content: "";
  background: #8ea2bd;
}

.work-after li::before {
  background: var(--color-green);
}

.work-panel-note {
  margin: 26px 0 0;
  padding: 18px 20px;
  color: var(--color-text);
  background: #eef5ff;
  border: 1px solid #d8e2ef;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.75;
}

.work-after .work-panel-note {
  background: var(--color-green-soft);
  border-color: #c6e0d0;
}

@media (max-width: 1080px) {
  .work-shift-inner {
    width: calc(100% - 56px);
    max-width: 960px;
  }

  .work-comparison {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  .work-shift {
    padding: 64px 0;
  }

  .work-shift-inner {
    width: calc(100% - 28px);
  }

  .work-shift-header h2 {
    font-size: clamp(28px, 7.4vw, 36px);
  }

  .work-shift-lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.9;
  }

  .work-panel {
    padding: 24px 22px 26px;
    border-radius: 8px;
  }

  .work-panel h3 {
    font-size: clamp(20px, 5.6vw, 25px);
  }

  .work-panel li {
    font-size: 14px;
    line-height: 1.8;
  }

  .work-panel-note {
    padding: 16px 18px;
    font-size: 14px;
  }
}

/* LP revision v1: standard three-month support and self-operation messaging. */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  padding: 7px 14px;
  color: var(--color-text);
  background: var(--color-blue-soft);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-copy .hero-lead {
  margin-top: 26px;
}

.hero-title em {
  color: #16864a;
  font-style: normal;
}

.about-subcopy {
  margin: 22px auto 0;
  color: var(--color-text);
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
}

.case-results-lead {
  max-width: 820px;
  margin: 22px auto clamp(34px, 4vw, 52px);
  color: #415171;
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.difference {
  padding: clamp(88px, 8vw, 116px) 0;
  background: var(--color-blue-soft);
}

.difference-inner,
.ceo-message-inner {
  width: calc(100% - 112px);
  max-width: 1160px;
  margin: 0 auto;
}

.difference-header {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.difference-header h2,
.ceo-message-header h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(34px, 2.7vw, 44px);
  font-weight: 900;
  line-height: 1.38;
}

.difference-header p {
  max-width: 820px;
  margin: 30px auto 0;
  color: #142541;
  font-size: clamp(17px, 1.18vw, 19px);
  font-weight: 700;
  line-height: 1.9;
}

.difference-table-wrap {
  margin-top: clamp(42px, 5vw, 60px);
  overflow-x: auto;
}

.difference-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #c8d7ee;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(8, 43, 95, 0.05);
}

.difference-table th,
.difference-table td {
  padding: 22px 24px;
  border-bottom: 1px solid var(--color-border);
  color: #21324c;
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  vertical-align: middle;
}

.difference-table thead th {
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.difference-table tbody th {
  width: 18%;
  color: var(--color-text);
  font-weight: 900;
}

.difference-row-label {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.difference-row-label img {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

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

.difference-table .difference-own {
  background: var(--color-blue-soft);
  color: #1f5bd8;
  font-weight: 900;
}

.difference-table thead .difference-own {
  color: #1f5bd8;
}

.difference-checks {
  max-width: 820px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  padding: 26px 38px 30px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(8, 43, 95, 0.05);
}

.difference-checks h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #b9dfc6;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 900;
  line-height: 1.45;
}

.difference-checks h3 img {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.difference-checks ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.difference-checks li {
  position: relative;
  padding-left: 24px;
  color: #21324c;
  font-size: 15px;
  line-height: 1.8;
}

.difference-checks li::before {
  position: absolute;
  top: .28em;
  left: 0;
  width: 20px;
  height: 20px;
  content: "✓";
  background: var(--color-green);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

.difference-checks > p {
  margin: 24px 0 0;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.8;
}

.ceo-message {
  padding: clamp(88px, 8vw, 116px) 0;
  background: #fff;
}

.ceo-message-header {
  text-align: center;
}

.ceo-message-layout {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  margin-top: clamp(42px, 5vw, 60px);
}

.ceo-message-photo {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  background: var(--color-blue-soft);
  border: 1px solid var(--color-border);
  border-radius: 14px;
}

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

.ceo-message-copy {
  color: #21324c;
}

.ceo-message-copy > p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.95;
}

.ceo-message-copy > p + p {
  margin-top: 20px;
}

.ceo-message-industries {
  color: #52627a;
  font-size: 14px !important;
}

.ceo-message-signature {
  margin-top: 28px !important;
  color: var(--color-text);
  font-size: 15px !important;
  font-weight: 900 !important;
  text-align: right;
}

.ceo-message-support {
  grid-column: 1 / -1;
  width: min(100%, 920px);
  margin: 28px auto 0;
  padding: 22px 24px;
  background: var(--color-blue-soft);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.ceo-message-support h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 900;
}

.ceo-message-support p {
  margin: 12px 0 0;
  color: #415171;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 760px) {
  .hero-badges {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-badges li {
    padding: 6px 10px;
    font-size: 12px;
  }

  .about-subcopy {
    margin-top: 18px;
    font-size: 18px;
  }

  .case-results-lead {
    margin: 18px auto 28px;
    font-size: 15px;
    text-align: left;
  }

  .difference {
    padding: 64px 0;
  }

  .difference-inner,
  .ceo-message-inner {
    width: calc(100% - 28px);
  }

  .difference-header h2,
  .ceo-message-header h2 {
    font-size: clamp(28px, 7.4vw, 36px);
  }

  .difference-header p {
    margin-top: 22px;
    font-size: 15px;
    text-align: left;
  }

  .difference-table-wrap {
    margin-top: 36px;
  }

  .difference-table th,
  .difference-table td {
    padding: 16px 14px;
    font-size: 14px;
  }

  .difference-checks {
    margin-top: 42px;
    padding: 24px 20px;
  }

  .difference-checks h3 {
    font-size: 22px;
  }

  .difference-checks li,
  .difference-checks > p {
    font-size: 14px;
  }

  .ceo-message {
    padding: 64px 0;
  }

  .ceo-message-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 36px;
  }

  .ceo-message-copy {
    grid-column: auto;
  }

  .ceo-message-support {
    grid-column: auto;
    width: 100%;
  }

  .ceo-message-photo {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .ceo-message-copy > p {
    font-size: 15px;
    line-height: 1.85;
  }
}
@media (max-width: 1080px) {
  .about-cards {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-card img {
    width: 172px;
    height: 136px;
  }

  .about-points {
    grid-template-columns: 1fr;
    max-width: 760px;
    gap: 14px;
  }

  .work-comparison {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .case-improvements {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
  }

  .case-example-overview {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .case-example-photo img {
    max-width: 620px;
  }

  .case-team ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-point:not(:last-child)::after {
    content: none;
  }

  .hero-copy {
    order: 1;
    padding-top: 0;
    padding-left: 0;
  }

  .hero-visual {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(38vw, 640px);
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 0 auto;
  z-index: 1;
}

  .hero-visual::before {
    display: none;
  }

  .hero-title {
    max-width: 760px;
    font-size: clamp(38px, 6vw, 50px);
  }

  .hero-visual img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  transform: none;
  position: relative;
  z-index: 1;
}
}

@media (max-width: 760px) {

  .about-card {
    grid-template-rows: auto 132px auto 1fr;
  }

  .about-card img {
    width: 152px;
    height: 120px;
    margin-bottom: 20px;
  }

  :root {
    --header-height: 72px;
  }

  .header-inner {
    width: calc(100% - 28px);
    min-height: var(--header-height);
  }

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

  .header-cta {
    min-width: 128px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero {
    padding: 42px 0 48px;
    background-color: #dae3fa;
  }

  .about-ai-team {
    padding: 64px 0;
  }

  .work-shift,
  .case-example,
  .implementation-flow,
  .faq,
  .final-cta {
    padding: 64px 0;
  }

  .hero-inner,
  .about-inner,
  .work-shift-inner,
  .case-example-inner,
  .implementation-flow-inner,
  .faq-inner,
  .final-cta-inner,
  .site-footer-inner,
  .site-footer-bottom {
    width: calc(100% - 28px);
  }

  .hero-inner {
    gap: 28px;
  }

  .hero-visual img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  transform: none;
  position: relative;
  z-index: 1;
}

  .hero-visual {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(38vw, 640px);
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 0 auto;
  z-index: 1;
}

  .about-visual img,
  .case-example-photo img {
    max-width: 100%;
  }

  .case-improvements,
  .case-team ul {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .final-cta h2 {
    font-size: clamp(28px, 7.4vw, 36px);
  }

  .hero-label {
    min-height: 34px;
    margin-bottom: 22px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 14px;
  }

  .hero-title {
    font-size: clamp(30px, 8.7vw, 36px);
    line-height: 1.34;
  }

  .hero-title span {
    display: inline;
    white-space: normal;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-lead br {
    display: none;
  }

  .hero-cta-row {
    display: grid;
    gap: 12px;
    margin-top: 26px;
  }

  .hero-cta-row .button {
  flex: 0 0 auto;
  min-width: 340px;
  min-height: 60px;
  padding: 0 34px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 900;
}

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    font-size: 15px;
  }

  .hero-note {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .header-cta {
    display: none;
  }

  .hero-title {
    font-size: 30px;
  }

  .button {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
.work-shift {
  position: relative;
  padding: clamp(104px, 8.8vw, 132px) 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.7) 34%, rgba(238, 245, 255, 0) 62%),
    linear-gradient(180deg, #edf5ff 0%, #f7fbff 52%, #eef5ff 100%);
  overflow: hidden;
}

.work-shift::after {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -56px;
  height: 110px;
  content: "";
  background: #ffffff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}

.work-shift-inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 112px);
  max-width: 1160px;
  margin: 0 auto;
}

.work-shift-header {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.work-shift-header h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(34px, 2.7vw, 44px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0;
}

.work-shift-header h2::after {
  display: block;
  width: 58px;
  height: 4px;
  margin: 22px auto 0;
  content: "";
  background: #3b82f6;
  border-radius: 999px;
}

.work-shift-lead {
  max-width: 930px;
  margin: 30px auto 0;
  color: #142541;
  font-size: clamp(17px, 1.18vw, 19px);
  font-weight: 400;
  line-height: 1.9;
}

.work-shift-lead p {
  margin: 0;
}

.work-shift-lead p + p {
  margin-top: 10px;
}

.work-comparison {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: clamp(46px, 5vw, 64px);
}

.work-panel {
  position: relative;
  min-height: 100%;
  padding: 28px 28px 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d4dfec;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(8, 43, 95, 0.08);
}

.work-before {
  background: rgba(255, 255, 255, 0.9);
}

.work-after {
  background: rgba(255, 255, 255, 0.95);
  border-color: #c8e1d0;
}

.work-panel-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #cbd7e6;
}

.work-after .work-panel-heading {
  border-bottom-color: #bcdcca;
}

.work-panel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 38px;
  padding: 0 20px;
  color: #ffffff;
  background: linear-gradient(180deg, #5f7694 0%, #405b79 100%);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.work-after .work-panel-badge {
  background: linear-gradient(180deg, #18a957 0%, #0e8b43 100%);
}

.work-panel h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(17px, 1.28vw, 20px);
  font-weight: 900;
  line-height: 1.45;
}

.work-after h3 {
  color: #0f8f47;
}

.work-task-list {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.work-task-list li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 10px 0;
  color: #142541;
  border-bottom: 1px dotted #cfd8e6;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.72;
}

.work-task-list li:last-child {
  border-bottom: 0;
}

.work-task-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: 18px;
  border-radius: 50%;
  background: #eef3f8;
}

.work-after .work-task-icon {
  background: #e9f7ef;
}

.work-task-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.work-panel-note {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  min-height: 66px;
  margin: 22px 0 0;
  padding: 14px 18px;
  color: var(--color-text);
  background: #eef4fb;
  border: 1px solid #d8e2ef;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.work-after .work-panel-note {
  color: #0f8f47;
  background: #e9f8ef;
  border-color: #d5eddd;
}

.work-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
}

.work-note-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.work-comparison-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 52px;
  height: 52px;
  color: #1f5bd8;
  background: #ffffff;
  border: 1px solid #d8e2ef;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(8, 43, 95, 0.08);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 1080px) {
  .work-shift-inner {
    width: calc(100% - 56px);
    max-width: 960px;
  }

  .work-comparison {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .work-comparison-arrow {
    transform: rotate(90deg);
    margin: 4px auto;
  }
}

@media (max-width: 760px) {
  .work-shift {
    padding: 64px 0;
  }

  .work-shift-inner {
    width: calc(100% - 28px);
  }

  .work-shift-header h2 {
    font-size: clamp(28px, 7.4vw, 36px);
  }

  .work-shift-lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.9;
  }

  .pc-only {
    display: none;
  }

  .work-panel {
    padding: 22px 18px 22px;
    border-radius: 12px;
  }

  .work-panel-heading {
    display: grid;
    gap: 12px;
    justify-items: start;
    padding-bottom: 16px;
  }

  .work-panel-badge {
    min-width: 92px;
    min-height: 34px;
    padding: 0 16px;
    font-size: 17px;
    border-radius: 9px;
  }

  .work-panel h3 {
    font-size: 16px;
  }

  .work-task-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 68px;
    font-size: 14px;
    line-height: 1.75;
  }

  .work-task-icon {
    width: 40px;
    height: 40px;
    margin-left: 4px;
  }

  .work-task-icon img {
    width: 20px;
    height: 20px;
  }

  .work-panel-note {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 60px;
    padding: 14px;
    font-size: 14px;
  }

  .work-note-icon {
    width: 44px;
    height: 44px;
  }

  .work-note-icon img {
    width: 40px;
    height: 40px;
  }

  .work-comparison-arrow {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }
}
.work-task-list li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 10px 0;
  color: #142541;
  border-bottom: 1px dotted #cfd8e6;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.72;
}

.work-task-list li::before {
  content: none;
}

.work-after li::before {
  content: none;
}

.work-task-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-left: 0;
  background: transparent;
  border-radius: 0;
  flex: 0 0 auto;
}

.work-after .work-task-icon {
  background: transparent;
}

.work-task-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.work-panel-note {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  min-height: 66px;
  margin: 22px 0 0;
  padding: 14px 18px;
  color: var(--color-text);
  background: #eef4fb;
  border: 1px solid #d8e2ef;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.work-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: transparent;
  border-radius: 0;
}

.work-note-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .work-task-list li {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 68px;
    font-size: 14px;
    line-height: 1.75;
  }

  .work-task-icon {
    width: 44px;
    height: 44px;
    margin-left: 0;
    background: transparent;
    border-radius: 0;
  }

  .work-task-icon img {
    width: 40px;
    height: 40px;
  }

  .work-panel-note {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 60px;
    padding: 14px;
    font-size: 14px;
  }

  .work-note-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    border-radius: 0;
  }

  .work-note-icon img {
    width: 40px;
    height: 40px;
  }
}

/* LP revision v2 */
.hero-visual {
  width: min(44vw, 680px);
}

.hero-visual img {
  width: 100%;
  max-width: 680px;
  height: auto;
}

.case-example-photo {
  max-width: 500px;
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.report-mock {
  width: 100%;
  padding: clamp(24px, 2.6vw, 34px);
  color: var(--color-text);
  background: #ffffff;
  border: 1px solid #d7e3f4;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(8, 43, 95, 0.06);
}

.report-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.report-mock-title {
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 900;
}

.report-mock-badge {
  padding: 5px 10px;
  color: #1f5bd8;
  background: #eef5ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.report-mock-summary {
  margin: 26px 0 0;
  font-size: 17px;
  font-weight: 900;
}

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

.report-mock-item {
  display: grid;
  gap: 7px;
  padding: 14px 16px;
  background: #f7faff;
  border: 1px solid #e0e8f4;
  border-radius: 8px;
}

.report-mock-item.is-priority {
  border-left: 4px solid #16a34a;
}

.report-mock-tag {
  color: #52627a;
  font-size: 12px;
  font-weight: 900;
}

.report-mock-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.report-mock-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 20px;
  color: #1f5bd8;
  border: 1px solid #1f5bd8;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  cursor: default;
}

.report-mock-note {
  margin: 12px 0 0;
  color: #68778f;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.case-results {
  margin-bottom: 0;
}

.case-result-item {
  grid-template-rows: auto auto auto;
  row-gap: 8px;
}

.case-result-item strong {
  font-size: clamp(32px, 3vw, 40px);
}

.case-result-basis {
  align-self: start;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(12px, 0.88vw, 13px);
  font-weight: 700;
  line-height: 1.55;
}

.case-results-note {
  max-width: 860px;
  margin: 16px auto clamp(58px, 6vw, 78px);
  color: #52627a;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}

.industry-examples {
  padding: clamp(104px, 8.8vw, 132px) 0;
  background: #eef5ff;
}

.industry-examples-inner {
  width: calc(100% - 112px);
  max-width: 1160px;
  margin: 0 auto;
}

.industry-examples .section-header {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.industry-examples .section-header h2,
.our-approach h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(34px, 2.7vw, 44px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0;
}

.industry-examples .section-header h2::after,
.our-approach h2::after {
  display: block;
  width: 58px;
  height: 4px;
  margin: 22px auto 0;
  content: "";
  background: #3b82f6;
  border-radius: 999px;
}

.industry-examples .section-header p {
  margin: 30px auto 0;
  color: #142541;
  font-size: clamp(16px, 1.12vw, 18px);
  font-weight: 700;
  line-height: 1.9;
}

.industry-cards {
  display: grid;
  gap: 0;
  margin-top: clamp(42px, 5vw, 60px);
}

.industry-card {
  display: grid;
  grid-template-columns: 62px 108px minmax(260px, 0.9fr) minmax(0, 1.55fr);
  align-items: center;
  gap: 24px;
  min-height: 180px;
  padding: 26px 8px;
  border-bottom: 1px solid #bfd0e6;
}

.industry-card img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.industry-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(22px, 1.75vw, 28px);
  font-weight: 900;
  line-height: 1.45;
}

.industry-card p {
  margin: 0;
  color: #142541;
  font-size: clamp(15px, 1.08vw, 17px);
  font-weight: 400;
  line-height: 1.85;
}

.industry-pro-link {
  display: grid;
  grid-template-columns: 64px auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin: 32px 0 0;
  padding: 16px 26px;
  color: #142541;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d4e1f2;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(8, 43, 95, 0.05);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  text-align: left;
}

.industry-pro-link img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.industry-pro-link strong {
  color: var(--color-text);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 900;
  white-space: nowrap;
}

.industry-pro-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1f5bd8;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.industry-pro-link a span {
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
}

.our-approach {
  padding: clamp(104px, 8.8vw, 132px) 0;
  background: #f4f8ff;
}

.our-approach-inner {
  width: calc(100% - 56px);
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.our-approach h2::after {
  content: none;
}

.our-approach-subtitle {
  margin: clamp(42px, 4vw, 56px) 0 0;
  color: var(--color-text);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.4;
}

.our-approach-subtitle::after {
  display: block;
  width: 58px;
  height: 4px;
  margin: 16px auto 0;
  content: "";
  background: #3b82f6;
  border-radius: 999px;
}

.our-approach-industries {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  max-width: 900px;
  margin: 28px auto 0;
}

.our-approach-industry {
  grid-column: span 2;
  display: grid;
  justify-items: center;
  padding: 18px 20px 20px;
  background: #ffffff;
  border: 1px solid #dce7f5;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(15, 54, 105, 0.05);
}

.our-approach-industry:nth-child(4) {
  grid-column: 2 / span 2;
}

.our-approach-industry img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.our-approach-industry h4 {
  margin: 8px 0 0;
  color: var(--color-text);
  font-size: clamp(18px, 1.42vw, 22px);
  font-weight: 900;
  line-height: 1.4;
}

.our-approach .our-approach-note {
  max-width: 820px;
  margin: 24px auto 0;
  color: #142541;
  font-size: clamp(16px, 1.12vw, 18px);
  font-weight: 400;
  line-height: 1.9;
  text-align: center;
}

.our-approach-support {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  max-width: 1080px;
  margin: 30px auto 0;
  padding: 22px 34px;
  color: #ffffff;
  text-align: left;
  background: linear-gradient(135deg, #062c70 0%, #0b489e 100%);
  border-radius: 10px;
}

.our-approach-support img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.our-approach .our-approach-support p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 1.62vw, 24px);
  font-weight: 900;
  line-height: 1.55;
  text-align: left;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1080px) {
  .hero-visual {
    width: min(100%, 680px);
  }

  .industry-examples-inner {
    width: calc(100% - 56px);
    max-width: 960px;
  }

  .industry-cards {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
  }

  .industry-card {
    grid-template-columns: 54px 90px minmax(220px, 0.85fr) minmax(0, 1.4fr);
    gap: 18px;
  }

  .industry-card img {
    width: 90px;
    height: 90px;
  }

  .industry-pro-link {
    grid-template-columns: 58px auto minmax(0, 1fr);
  }

  .industry-pro-link a {
    grid-column: 2 / -1;
  }
}

@media (max-width: 768px) {
  body.has-mobile-sticky-cta {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .hero-visual {
    width: min(100%, 620px);
    transform: none;
  }

  .hero-visual img {
    max-width: 620px;
  }

  .case-results-note {
    margin: 14px auto 48px;
    font-size: 11px;
    text-align: left;
  }

  .industry-examples {
    padding: 64px 0;
  }

  .industry-examples-inner {
    width: calc(100% - 28px);
  }

  .industry-examples .section-header,
  .our-approach-inner {
    text-align: left;
  }

  .industry-examples .section-header h2,
  .our-approach h2 {
    font-size: clamp(28px, 7.4vw, 36px);
    text-align: center;
  }

  .industry-card {
    grid-template-columns: 42px 72px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 24px 4px;
  }

  .industry-card img {
    width: 72px;
    height: 72px;
  }

  .industry-card h3 {
    font-size: 19px;
  }

  .industry-card p {
    grid-column: 1 / -1;
    font-size: 14px;
    line-height: 1.85;
  }

  .industry-pro-link {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px 14px;
    padding: 18px;
    text-align: left;
  }

  .industry-pro-link img {
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
  }

  .industry-pro-link strong {
    font-size: 18px;
    white-space: normal;
  }

  .industry-pro-link > span {
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  .industry-pro-link a {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 4px;
    white-space: normal;
  }

  .our-approach {
    padding: 72px 0;
  }

  .our-approach-inner {
    width: calc(100% - 28px);
    text-align: center;
  }

  .our-approach-subtitle {
    margin-top: 34px;
    font-size: 22px;
  }

  .our-approach-industries {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 420px;
    margin-top: 24px;
  }

  .our-approach-industry,
  .our-approach-industry:nth-child(4) {
    grid-column: auto;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    padding: 14px 20px;
    text-align: left;
  }

  .our-approach-industry img {
    width: 78px;
    height: 78px;
  }

  .our-approach-industry h4 {
    margin: 0 0 0 14px;
    font-size: 18px;
  }

  .our-approach .our-approach-note {
    margin-top: 22px;
    font-size: 15px;
    text-align: left;
  }

  .our-approach-support {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    margin-top: 26px;
    padding: 24px 20px 26px;
    text-align: center;
  }

  .our-approach-support img {
    width: 78px;
    height: 78px;
  }

  .our-approach .our-approach-support p {
    font-size: 17px;
    text-align: center;
  }

  .mobile-sticky-cta.is-visible {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: flex;
    justify-content: center;
    padding: 6px 14px calc(6px + env(safe-area-inset-bottom));
    background: #ffffff;
    border-top: 1px solid #d7e3f4;
    box-shadow: 0 -4px 14px rgba(8, 43, 95, 0.08);
  }

  .mobile-sticky-cta .button {
    width: min(100%, 520px);
    min-height: 52px;
    flex: 0 1 520px;
    font-size: 16px;
    font-weight: 900;
  }

  body.is-menu-open .mobile-sticky-cta {
    display: none;
  }
}
.work-task-icon {
  width: 64px;
  height: 64px;
}

.work-task-icon img {
  width: 58px;
  height: 58px;
}

@media (max-width: 760px) {
  .work-task-icon {
    width: 52px;
    height: 52px;
  }

  .work-task-icon img {
    width: 48px;
    height: 48px;
  }
}
.work-task-icon {
  width: 74px;
  height: 74px;
}

.work-task-icon img {
  width: 68px;
  height: 68px;
}

@media (max-width: 760px) {
  .work-task-icon {
    width: 58px;
    height: 58px;
  }

  .work-task-icon img {
    width: 54px;
    height: 54px;
  }
}
.case-example {
  position: relative;
  padding: clamp(104px, 8.8vw, 132px) 0;
  background:
    linear-gradient(145deg, rgba(218, 235, 255, 0.74) 0%, rgba(247, 251, 255, 0.96) 52%, rgba(231, 242, 255, 0.82) 100%);
  overflow: hidden;
}

.case-example-inner {
  width: calc(100% - 112px);
  max-width: 1160px;
  margin: 0 auto;
}

.case-example-header {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.case-example-header h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(34px, 2.7vw, 44px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0;
}

.case-example-header h2::after {
  display: block;
  width: 58px;
  height: 4px;
  margin: 22px auto 0;
  content: "";
  background: #3b82f6;
  border-radius: 999px;
}

.case-example-header p {
  max-width: 860px;
  margin: 30px auto 0;
  color: #142541;
  font-size: clamp(16px, 1.12vw, 18px);
  font-weight: 700;
  line-height: 1.9;
}

.case-example-overview {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 4vw, 52px);
  align-items: center;
  margin-top: 0;
}

.case-team {
  padding: 8px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.case-team-heading {
  display: block;
  width: 100%;
  max-width: none;
  margin: clamp(82px, 7vw, 104px) auto 40px;
  color: var(--color-text);
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.case-team h3::before,
.case-team h3::after {
  flex: 1 1 54px;
  height: 2px;
  content: "";
  background: #3b82f6;
}

.case-team ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(14, 43, 81, 0.2);
}

.case-team li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(14, 43, 81, 0.2);
  color: var(--color-text);
  font-size: clamp(20px, 1.48vw, 25px);
  font-weight: 900;
  line-height: 1.45;
}

.case-team li img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.case-example-photo {
  width: 100%;
  max-width: 500px;
  min-width: 0;
  align-self: center;
  justify-self: end;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(8, 43, 95, 0.08);
}

.case-example-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(44px, 5vw, 62px);
  margin-bottom: clamp(58px, 6vw, 78px);
  padding: 24px 34px;
  color: #ffffff;
  background: linear-gradient(180deg, #073474 0%, #03265b 100%);
  border-radius: 14px;
}

.case-result-item {
  display: grid;
  grid-template-rows: 28px 86px 34px 36px;
  justify-items: center;
  align-items: center;
  min-width: 0;
  padding: 0 26px;
  text-align: center;
}

.case-result-item + .case-result-item {
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.case-result-prefix {
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 900;
  line-height: 1.2;
}

.case-result-item strong {
  color: #ffffff;
  font-size: clamp(58px, 5.2vw, 82px);
  font-weight: 900;
  line-height: 1;
}

.case-result-unit {
  font-size: clamp(19px, 1.55vw, 26px);
  font-weight: 900;
  line-height: 1.2;
}

.case-result-label {
  display: block;
  width: 100%;
  padding-top: 16px;
  border-top: 1px dotted rgba(255, 255, 255, 0.58);
  font-size: clamp(18px, 1.42vw, 24px);
  font-weight: 900;
  line-height: 1.2;
}

.case-price {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbe7f6;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(8, 43, 95, 0.06);
}

.case-price h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(24px, 1.9vw, 32px);
  font-weight: 900;
  line-height: 1.3;
}

.case-price-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.case-price-values p {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: 0 24px;
  border-left: 1px solid #cfd8e6;
}

.case-price-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(8, 43, 95, 0.12);
}

.case-price-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.case-price-values p span span {
  display: block;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.case-price-values strong {
  display: block;
  margin-top: 4px;
  color: var(--color-text);
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 900;
  line-height: 1.1;
}

@media (max-width: 1080px) {
  .case-example-inner {
    width: calc(100% - 56px);
    max-width: 960px;
  }

  .case-example-overview {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-example-photo {
    max-width: 560px;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .case-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-result-item:nth-child(odd) {
    border-left: 0;
  }

  .case-result-item:nth-child(n + 3) {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
  }

  .case-price {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .case-price-values p {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid #cfd8e6;
  }
}

@media (max-width: 760px) {
  .case-example {
    padding: 64px 0;
  }

  .case-example-inner {
    width: calc(100% - 28px);
  }

  .case-example-header p br {
    display: none;
  }

  .case-team h3 {
    font-size: 22px;
  }

  .case-team li {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 68px;
    font-size: 16px;
  }

  .case-team li img {
    width: 54px;
    height: 54px;
  }

  .case-results {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

  .case-result-item {
    grid-template-rows: 24px 76px 30px 34px;
    padding: 20px 0;
  }

  .case-result-item + .case-result-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
  }

  .case-result-item:nth-child(n + 3) {
    margin-top: 0;
  }

  .case-price {
    padding: 22px 18px;
  }

  .case-price-values p {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .case-price-icon {
    width: 52px;
    height: 52px;
  }

  .case-price-icon img {
    width: 34px;
    height: 34px;
  }
}
.work-shift::after {
  content: none;
}

.case-example {
  background: #ffffff;
}

.case-example-header p {
  max-width: 920px;
  margin-top: 30px;
  color: #142541;
  font-size: clamp(17px, 1.18vw, 19px);
  font-weight: 700;
  line-height: 1.9;
}

.case-team li {
  font-size: clamp(18px, 1.28vw, 22px);
  font-weight: 900;
}

.case-result-item {
  grid-template-rows: 26px 70px 30px 34px;
}

.case-result-prefix {
  font-size: clamp(14px, 0.95vw, 16px);
}

.case-result-item strong {
  font-size: clamp(48px, 4.2vw, 66px);
}

.case-result-unit {
  font-size: clamp(16px, 1.22vw, 21px);
}

.case-result-label {
  font-size: clamp(16px, 1.18vw, 20px);
}

.case-price h3 {
  font-size: clamp(22px, 1.6vw, 28px);
}

.case-price-values p span span {
  font-size: 14px;
  font-weight: 900;
}

.case-price-values strong {
  font-size: clamp(22px, 1.9vw, 32px);
}

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

.case-price-icon img {
  width: 36px;
  height: 36px;
}

@media (max-width: 760px) {
  .case-team li {
    font-size: 16px;
  }

  .case-result-item {
    grid-template-rows: 22px 62px 28px 32px;
  }

  .case-result-item strong {
    font-size: 52px;
  }

  .case-result-unit {
    font-size: 16px;
  }

  .case-result-label {
    font-size: 17px;
  }
}
.case-result-item {
  grid-template-rows: 24px 58px 34px;
  row-gap: 4px;
}

.case-result-prefix {
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 900;
}

.case-result-item strong {
  display: inline;
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 1;
}

.case-result-unit {
  display: inline;
  margin-left: 4px;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.2;
  vertical-align: baseline;
}

.case-result-label {
  padding-top: 12px;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 900;
}

.case-price {
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
}

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

.case-price h3 {
  font-size: clamp(20px, 1.4vw, 24px);
  font-weight: 900;
}

.case-price-values p span span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.case-price-values strong {
  margin-top: 4px;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.15;
  white-space: nowrap;
}

.case-price-values p:nth-child(3) strong {
  font-size: clamp(18px, 1.45vw, 24px);
  white-space: normal;
}

.case-price-icon {
  width: 50px;
  height: 50px;
}

.case-price-icon img {
  width: 32px;
  height: 32px;
}

@media (max-width: 760px) {
  .case-result-item {
    grid-template-rows: 22px 52px 32px;
    padding: 18px 0;
  }

  .case-result-item strong {
    font-size: 42px;
  }

  .case-result-unit {
    font-size: 16px;
  }

  .case-result-label {
    font-size: 16px;
  }

  .case-price h3 {
    font-size: 22px;
  }

  .case-price-values strong {
    font-size: 22px;
  }

  .case-price-values p:nth-child(3) strong {
    font-size: 20px;
  }

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

  .case-price-icon img {
    width: 30px;
  height: 30px;
  }
}
.case-team li {
  font-weight: 700;
}
.case-result-item {
  grid-template-rows: 24px 58px 38px;
  row-gap: 6px;
}

.case-result-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  white-space: nowrap;
}

.case-result-prefix {
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 900;
}

.case-result-item strong {
  display: inline-block;
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 1;
}

.case-result-unit {
  display: inline-block;
  margin-left: 0;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.2;
  vertical-align: baseline;
}

.case-result-label {
  padding-top: 12px;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 900;
  line-height: 1.25;
}

@media (max-width: 760px) {
  .case-result-item {
    grid-template-rows: 22px 50px 34px;
    row-gap: 6px;
    padding: 18px 0;
  }

  .case-result-item strong {
    font-size: 40px;
  }

  .case-result-unit {
    font-size: 15px;
  }

  .case-result-label {
    font-size: 16px;
  }
}
.work-panel,
.work-comparison-arrow {
  box-shadow: none;
}
.case-price-values p span span {
  font-size: 15px;
}

.case-price-values p:nth-child(3) strong {
  font-size: clamp(16px, 1.2vw, 20px);
}

@media (max-width: 760px) {
  .case-price-values p span span {
    font-size: 14px;
  }

  .case-price-values p:nth-child(3) strong {
    font-size: 16px;
  }
}
.case-example-overview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.work-panel {
  border-color: #b8c8dc;
}

.work-after {
  border-color: #9fc9ae;
}
.implementation-flow {
  padding: clamp(104px, 8.8vw, 132px) 0;
  background: linear-gradient(180deg, #eef6ff 0%, #f7fbff 58%, #edf5ff 100%);
}

.implementation-flow-inner {
  width: calc(100% - 112px);
  max-width: 1160px;
  margin: 0 auto;
}

.implementation-flow-header {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.implementation-flow-header h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(34px, 2.7vw, 44px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0;
}

.implementation-flow-header h2::after {
  display: block;
  width: 58px;
  height: 4px;
  margin: 22px auto 0;
  content: "";
  background: #3b82f6;
  border-radius: 999px;
}

.implementation-flow-header p {
  max-width: 880px;
  margin: 30px auto 0;
  color: #142541;
  font-size: clamp(17px, 1.18vw, 19px);
  font-weight: 700;
  line-height: 1.9;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(46px, 5vw, 64px);
}

.flow-step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 100%;
  padding: 28px 18px 26px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #d7e3f4;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(8, 43, 95, 0.05);
}

.flow-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -31px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  content: "→";
  color: #ffffff;
  background: #3b82f6;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.flow-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #ffffff;
  background: #3b82f6;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.flow-step h3 {
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: clamp(17px, 1.18vw, 20px);
  font-weight: 900;
  line-height: 1.45;
}

.flow-step img {
  width: 108px;
  height: 108px;
  margin: 20px auto 18px;
  object-fit: contain;
}

.flow-step p {
  margin: 0;
  color: #21324c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.flow-support {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  max-width: 920px;
  margin: clamp(42px, 5vw, 58px) auto 0;
  padding: 24px 30px;
  background: #ffffff;
  border: 1px solid #d7e3f4;
  border-radius: 14px;
}

.flow-support img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.flow-support h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(20px, 1.5vw, 26px);
  font-weight: 900;
  line-height: 1.4;
}

.flow-support p {
  margin: 10px 0 0;
  color: #21324c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .implementation-flow-inner {
    width: calc(100% - 56px);
    max-width: 960px;
  }

  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .flow-step::after {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .implementation-flow {
    padding: 64px 0;
  }

  .implementation-flow-inner {
    width: calc(100% - 28px);
  }

  .implementation-flow-header h2 {
    font-size: clamp(28px, 7.4vw, 36px);
  }

  .implementation-flow-header p {
    font-size: 15px;
  }

  .implementation-flow-header p br {
    display: none;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flow-step {
    padding: 24px 20px 24px;
  }

  .flow-step img {
    width: 88px;
    height: 88px;
  }

  .flow-support {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .flow-support img {
    width: 78px;
    height: 78px;
  }
}
.flow-step {
  grid-template-rows: 50px 64px 118px 1fr;
}

.flow-step-number,
.flow-step h3,
.flow-step img,
.flow-step p {
  align-self: start;
}

.flow-step h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.flow-step img {
  justify-self: center;
  align-self: center;
}

.flow-step p {
  align-self: start;
}

@media (max-width: 760px) {
  .flow-step {
    grid-template-rows: 50px 58px 98px 1fr;
  }
}
.flow-step h3 {
  align-items: flex-start;
  padding-top: 0;
}
.about-card p,
.flow-step p {
  width: 100%;
  text-align: center;
}
.case-results-heading {
  margin: clamp(62px, 6vw, 82px) 0 36px;
  color: var(--color-text);
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.case-results {
  margin-top: 0;
}
.case-result-item {
  grid-template-rows: 28px 42px 36px;
  row-gap: 8px;
}

.case-result-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  white-space: nowrap;
}

.case-result-prefix,
.case-result-unit {
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 900;
  line-height: 1.2;
}

.case-result-item strong {
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 1;
}

.case-result-label {
  padding-top: 12px;
  font-size: clamp(15px, 1.05vw, 18px);
}

.case-price-heading-outside {
  margin: 0 0 36px;
  color: var(--color-text);
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.case-price {
  display: block;
  padding: 22px 28px;
}

.case-price > h3 {
  display: none;
}

.case-price-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-price-values p {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  padding: 0 20px;
}

.case-price-values p span span {
  font-size: 13px;
  font-weight: 900;
}

.case-price-values strong {
  font-size: clamp(18px, 1.45vw, 24px);
  white-space: nowrap;
}

.case-price-values p:nth-child(3) strong {
  font-size: clamp(16px, 1.25vw, 20px);
  white-space: normal;
}

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

.case-price-icon img {
  width: 30px;
  height: 30px;
}

@media (max-width: 760px) {
  .case-result-item {
    grid-template-rows: 24px 40px 34px;
  }

  .case-result-prefix,
  .case-result-unit {
    font-size: 13px;
  }

  .case-result-item strong {
    font-size: 40px;
  }

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

  .case-price-values strong {
    font-size: 20px;
  }

  .case-price-values p:nth-child(3) strong {
    font-size: 16px;
  }
}
.case-result-item {
  grid-template-rows: 58px 36px;
  row-gap: 10px;
}

.case-result-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  white-space: nowrap;
}

.case-result-prefix,
.case-result-unit {
  display: inline-block;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 900;
  line-height: 1.2;
}

.case-result-item strong {
  display: inline-block;
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 1;
}

@media (max-width: 760px) {
  .case-result-item {
    grid-template-rows: 52px 34px;
  }

  .case-result-main {
    gap: 2px;
  }

  .case-result-prefix,
  .case-result-unit {
    font-size: 12px;
  }

  .case-result-item strong {
    font-size: 38px;
  }
}
.faq-section {
  padding: clamp(104px, 8.8vw, 132px) 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.faq-inner {
  width: calc(100% - 112px);
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d7e3f4;
  border-radius: 18px;
}

.faq-header {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.faq-header h2 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(34px, 2.7vw, 44px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0;
}

.faq-header h2::after {
  display: block;
  width: 58px;
  height: 4px;
  margin: 22px auto 0;
  content: "";
  background: #3b82f6;
  border-radius: 999px;
}

.faq-header p {
  margin: 26px auto 0;
  color: #142541;
  font-size: clamp(16px, 1.08vw, 18px);
  font-weight: 400;
  line-height: 1.9;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 1060px;
  margin: clamp(34px, 4vw, 48px) auto 0;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #d7e3f4;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: grid;
  grid-template-columns: 42px auto minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 14px 24px;
  cursor: pointer;
  list-style: none;
}

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

.faq-q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: #0b64e5;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.faq-number,
.faq-question-text {
  color: var(--color-text);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 900;
  line-height: 1.45;
}

.faq-toggle {
  justify-self: end;
  width: 14px;
  height: 14px;
  border-right: 3px solid #0b64e5;
  border-bottom: 3px solid #0b64e5;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(225deg) translate(-2px, -2px);
}

.faq-answer {
  padding: 0 28px 24px 80px;
  color: #33425d;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 10px;
}

.faq-consult-box {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) minmax(260px, 330px);
  align-items: center;
  gap: 28px;
  max-width: 1060px;
  margin: 28px auto 0;
  padding: 22px 30px;
  background: #f1f7ff;
  border: 1px solid #d7e3f4;
  border-radius: 10px;
}

.faq-consult-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  background: #ffffff;
  border-radius: 50%;
}

.faq-consult-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.faq-consult-copy h3 {
  margin: 0;
  color: #0b64e5;
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 900;
  line-height: 1.45;
}

.faq-consult-copy p {
  margin: 10px 0 0;
  color: #21324c;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.faq-consult-button {
  width: 100%;
  min-height: 56px;
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .faq-inner {
    width: calc(100% - 56px);
  }

  .faq-consult-box {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .faq-consult-button {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  .faq-section {
    padding: 64px 0;
  }

  .faq-inner {
    width: calc(100% - 28px);
    padding: 28px 14px;
    border-radius: 14px;
  }

  .faq-header h2 {
    font-size: clamp(28px, 7.4vw, 36px);
  }

  .faq-question {
    grid-template-columns: 34px auto minmax(0, 1fr) 22px;
    gap: 10px;
    min-height: 56px;
    padding: 12px 14px;
  }

  .faq-q-badge {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .faq-number,
  .faq-question-text {
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 16px 20px 58px;
    font-size: 14px;
  }

  .faq-consult-box {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 22px 18px;
  }

  .faq-consult-button {
    max-width: none;
  }
}
.faq-inner {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.faq-question {
  grid-template-columns: 42px minmax(0, 1fr) 28px;
}

.faq-question-text {
  color: var(--color-text);
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 900;
  line-height: 1.5;
}

.faq-q-badge {
  width: 34px;
  height: 34px;
  font-size: 16px;
}

.faq-answer {
  padding: 0 28px 22px 74px;
}

.faq-consult-box {
  display: none;
}

@media (max-width: 760px) {
  .faq-question {
    grid-template-columns: 34px minmax(0, 1fr) 22px;
  }

  .faq-question-text {
    font-size: 15px;
    font-weight: 900;
  }

  .faq-q-badge {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 16px 20px 54px;
  }
}
.final-cta {
  padding: clamp(56px, 5.5vw, 76px) 0 clamp(48px, 5vw, 64px);
  background: #ffffff;
}

.final-cta-inner {
  width: calc(100% - 112px);
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(44px, 4.8vw, 62px) clamp(28px, 4vw, 56px);
  color: #ffffff;
  text-align: center;
  background-color: #0b64d8;
  background-image: url("../images/cta-back.webp");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(8, 43, 95, 0.12);
}

.final-cta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0 0 24px;
  padding: 0 26px;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 900;
  line-height: 1.3;
}

.final-cta-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.42;
}

.final-cta-title span,
.final-cta-description span {
  display: block;
}

.final-cta-line {
  display: block;
  width: 70px;
  height: 6px;
  margin: 24px auto 26px;
  background: #20b8ff;
  border-radius: 999px;
}

.final-cta-description {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 700;
  line-height: 1.85;
}

.final-cta-button {
  display: inline-flex;
  min-width: min(100%, 440px);
  min-height: 60px;
  margin-top: 28px;
  padding: 0 34px;
  border-radius: 10px;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 900;
  gap: 18px;
  box-shadow: 0 12px 24px rgba(0, 91, 47, 0.22);
}

.final-cta-button svg {
  width: 24px;
  height: 24px;
}

.final-cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  line-height: 1.6;
}

.final-cta-note img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
}

@media (max-width: 1080px) {
  .final-cta-inner {
    width: calc(100% - 56px);
    padding: 44px 28px 46px;
  }

  .final-cta-title {
    font-size: clamp(30px, 4.8vw, 42px);
  }

  .final-cta-button {
    min-height: 62px;
  }
}

@media (max-width: 760px) {
  .final-cta {
    padding: 52px 0 46px;
  }

  .final-cta-inner {
    width: calc(100% - 28px);
    padding: 34px 18px 36px;
    border-radius: 14px;
  }

  .final-cta-label {
    min-height: 36px;
    margin-bottom: 22px;
    padding: 0 20px;
    font-size: 14px;
  }

  .final-cta-title {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.4;
  }

  .final-cta-line {
    width: 56px;
    height: 5px;
    margin: 20px auto 22px;
  }

  .final-cta-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .final-cta-description span {
    display: inline;
  }

  .final-cta-button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    margin-top: 24px;
    padding: 0 22px;
    font-size: 16px;
    gap: 16px;
  }

  .final-cta-button svg {
    width: 20px;
    height: 20px;
  }

  .final-cta-note {
    align-items: center;
    margin-top: 22px;
    font-size: 13px;
    text-align: center;
  }

  .final-cta-note img {
    width: 20px;
    height: 20px;
    margin-top: 1px;
  }
}
.site-footer {
  padding: clamp(48px, 5vw, 68px) 0 0;
  color: #ffffff;
  background: #061735;
}

.site-footer-inner {
  width: calc(100% - 112px);
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 900;
  line-height: 1.35;
}

.footer-brand-icon {
  flex: 0 0 auto;
}

.footer-company {
  margin: 0;
  color: rgba(223, 234, 248, 0.74);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 56px);
  align-items: start;
}

.footer-nav-group {
  display: grid;
  gap: 13px;
  min-width: 0;
}

.footer-nav-group h2 {
  margin: 0 0 6px;
  color: rgba(223, 234, 248, 0.72);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.footer-nav-group a,
.footer-nav-group span {
  display: block;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  border: 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.footer-nav-group a::before,
.footer-nav-group a::after,
.footer-nav-group span::before,
.footer-nav-group span::after,
.footer-brand::before,
.footer-brand::after,
.footer-nav-group::before,
.footer-nav-group::after {
  content: none;
}

.footer-nav-group a:hover {
  color: #ffffff;
  text-decoration: none;
}

.site-footer-bottom {
  width: calc(100% - 112px);
  max-width: 1160px;
  margin: clamp(38px, 4.4vw, 58px) auto 0;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer-bottom p {
  margin: 0;
  color: rgba(223, 234, 248, 0.66);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 1080px) {
  .site-footer-inner,
  .site-footer-bottom {
    width: calc(100% - 56px);
    max-width: 960px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-nav {
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding-top: 42px;
  }

  .site-footer-inner,
  .site-footer-bottom {
    width: calc(100% - 28px);
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo {
    font-size: 18px;
  }

  .site-footer-bottom {
    margin-top: 34px;
    padding: 18px 0 22px;
  }
}
/* =========================================
   Final design tuning: typography balance
   ========================================= */
.section-header h2,
.about-header h2,
.work-shift-header h2,
.case-example-header h2,
.implementation-flow-header h2,
.faq-header h2 {
  font-size: clamp(32px, 2.45vw, 40px);
  font-weight: 900;
  line-height: 1.42;
}

.section-header p,
.about-header p,
.work-shift-lead,
.case-example-header p,
.implementation-flow-header p,
.faq-header p {
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 1.9;
}

.brand-text {
  font-size: clamp(19px, 1.25vw, 22px);
  font-weight: 900;
}

.site-nav {
  font-size: 15px;
  font-weight: 700;
}

.header-cta {
  font-size: 15px;
  font-weight: 900;
}

.about-card h3 {
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 900;
  line-height: 1.45;
}

.about-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
}

.about-card-number {
  font-weight: 900;
}

.work-panel-badge {
  font-size: 16px;
  font-weight: 900;
}

.work-panel h3 {
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 900;
  line-height: 1.45;
}

.work-task-list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.work-panel-note {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.work-task-icon {
  width: 58px;
  height: 58px;
}

.work-task-icon img {
  width: 52px;
  height: 52px;
}

.case-team li {
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 700;
}

.case-results-heading,
.case-price-heading-outside {
  font-size: clamp(22px, 1.55vw, 26px);
  font-weight: 900;
}

.case-result-item strong {
  font-size: clamp(36px, 3vw, 46px);
  font-weight: 900;
}

.case-result-prefix,
.case-result-unit {
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 900;
}

.case-result-label {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 900;
}

.case-price-values p span span {
  font-size: 13px;
  font-weight: 700;
}

.case-price-values strong {
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 900;
}

.flow-step-number {
  width: 46px;
  height: 46px;
  font-size: 18px;
  font-weight: 900;
}

.flow-step h3 {
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 900;
  line-height: 1.45;
}

.flow-step p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.flow-step img {
  width: 96px;
  height: 96px;
}

.flow-support h3 {
  font-size: clamp(20px, 1.4vw, 24px);
  font-weight: 900;
}

.flow-support p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.faq-question-text {
  font-size: clamp(16px, 1.08vw, 18px);
  font-weight: 700;
  line-height: 1.5;
}

.faq-answer {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.faq-q-badge {
  width: 32px;
  height: 32px;
  font-size: 15px;
}

.final-cta-title {
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 900;
  line-height: 1.42;
}

.final-cta-description {
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 400;
  line-height: 1.85;
}

.final-cta-button {
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 900;
}

.final-cta-note {
  font-size: clamp(13px, 0.9vw, 14px);
  font-weight: 400;
}

.footer-logo {
  font-size: clamp(18px, 1.25vw, 20px);
  font-weight: 900;
}

.footer-company {
  font-size: 13px;
  font-weight: 400;
}

.footer-nav-group h2 {
  font-size: 13px;
  font-weight: 700;
}

.footer-nav-group a,
.footer-nav-group span {
  font-size: 14px;
  font-weight: 400;
  border: 0;
  text-decoration: none;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer-bottom p {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.about-ai-team,
.work-shift,
.case-example,
.implementation-flow,
.faq-section {
  padding-top: clamp(88px, 7vw, 116px);
  padding-bottom: clamp(88px, 7vw, 116px);
}

@media (max-width: 760px) {
  .about-ai-team,
  .work-shift,
  .case-example,
  .implementation-flow,
  .faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-header h2,
  .about-header h2,
  .work-shift-header h2,
  .case-example-header h2,
  .implementation-flow-header h2,
  .faq-header h2 {
    font-size: clamp(28px, 7vw, 34px);
  }

  .faq-q-badge {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
/* Section lead text alignment tuning */
.about-header p,
.work-shift-lead,
.case-example-header p,
.implementation-flow-header p,
.faq-header p {
  max-width: 820px;
  margin: 30px auto 0;
}
/* Final typography micro tuning */
.about-card p {
  font-size: 15px;
}

.flow-step h3 {
  font-size: clamp(17px, 1.15vw, 19px);
}

.case-price-values strong {
  font-weight: 900;
}

.case-result-prefix,
.case-result-unit {
  font-weight: 700;
}

.faq-answer {
  font-size: 15px;
}

.case-price-values p span span {
  font-size: 14px;
  font-weight: 900;
}
/* FV hero visual size tuning */
.hero-visual {
  width: min(35vw, 590px);
}

.hero-visual img {
  max-width: 590px;
}
/* FV vertical rhythm tuning */
.hero {
  padding: clamp(58px, 5.2vw, 78px) 0 clamp(62px, 5.6vw, 86px);
}
/* Header balance tuning */
:root {
  --header-height: 84px;
}

.brand-icon {
  width: 36px;
  height: 36px;
}

.brand-text {
  font-size: clamp(18px, 1.15vw, 20px);
}

.site-nav {
  font-size: 14px;
  font-weight: 700;
}

.header-cta {
  min-height: 48px;
  font-size: 14px;
}
/* Header menu and logo spacing tuning */
.brand {
  gap: 12px;
}

.site-nav {
  font-size: 15px;
}
/* Header CTA font size tuning */
.header-cta {
  font-size: 15px;
}
/* FV title emphasis tuning */
.hero-title em {
  display: inline-block;
  padding: 0 0.04em;
  color: #43a820;
  font-style: normal;
  background: linear-gradient(
    transparent 66%,
    rgba(67, 168, 32, 0.24) 66%
  );
}
/* About title highlight tuning */
.about-title-highlight {
  display: inline-block;
  padding: 0 0.04em;
  background: linear-gradient(
    transparent 68%,
    rgba(59, 130, 246, 0.22) 68%
  );
}
/* FV title emphasis color tuning */
.hero-title em {
  color: #16864a;
  font-style: normal;
  background: linear-gradient(
    transparent 66%,
    rgba(22, 134, 74, 0.18) 66%
  );
}
/* About title highlight background tuning */
.about-title-highlight {
  display: inline-block;
  margin: 0 0.04em;
  padding: 0.02em 0.18em 0.06em;
  color: #0b64e5;
  background: rgba(59, 130, 246, 0.14);
  border-radius: 0.18em;
}
/* FV headline spacing and balance tuning */
@media (min-width: 761px) {
  .hero-copy {
    transform: translateY(-12px);
  }

  .hero-visual {
    transform: translateY(-16px);
  }

  .hero-label {
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: clamp(40px, 3.25vw, 52px);
    line-height: 1.4;
  }

  .hero-lead {
    margin-top: 30px;
  }
}
/* About title highlight text-only tuning */
.about-title-highlight {
  color: #1f5bd8;
  background: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.about-title-highlight::before,
.about-title-highlight::after {
  content: none;
}
/* Work-shift card text size tuning */
.work-task-list li {
  font-size: 15px;
}

.work-panel-note {
  font-size: 15px;
}
/* Case results proof-note tuning */
.case-results {
  background: linear-gradient(180deg, #073474 0%, #04285f 100%);
}

.case-result-item + .case-result-item {
  border-left-color: rgba(255, 255, 255, 0.32);
}

.case-result-prefix,
.case-result-unit {
  color: rgba(255, 255, 255, 0.88);
}

.case-result-label {
  color: rgba(255, 255, 255, 0.9);
}

.case-result-item strong {
  color: #ffffff;
}

@media (max-width: 1080px) {
  .case-result-item:nth-child(n + 3) {
    border-top-color: rgba(255, 255, 255, 0.28);
  }
}

@media (max-width: 760px) {
  .case-result-item + .case-result-item {
    border-top-color: rgba(255, 255, 255, 0.28);
  }
}
/* Case price two-column tuning */
.case-price {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.case-price-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.case-price-note {
  max-width: 720px;
  margin: 18px auto 0;
  color: #415171;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}

.case-price-values p:nth-child(3) {
  display: none;
}

@media (max-width: 760px) {
  .case-price-values {
    grid-template-columns: 1fr;
  }

  .case-price-note {
    font-size: 12px;
    line-height: 1.8;
  }
}
/* Case price icon and divider tuning */
.case-price-icon {
  box-shadow: none;
}

.case-price-values p:first-child {
  border-left: 0;
}

/* Case price compact row tuning */
.case-price-values p {
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
}

.case-price-icon {
  width: 69px;
  height: 69px;
}

.case-price-icon img {
  width: 45px;
  height: 45px;
}

.case-price-values p > span:last-child {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
  white-space: nowrap;
}

.case-price-values p span span,
.case-price-values strong {
  display: inline;
}

.case-price-values strong {
  margin-top: 0;
}

.case-price-note {
  margin-top: 30px;
}

@media (max-width: 760px) {
  .case-price-values p {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .case-price-icon {
    width: 58px;
    height: 58px;
  }

  .case-price-icon img {
    width: 38px;
    height: 38px;
  }

  .case-price-values p > span:last-child {
    flex-wrap: wrap;
    row-gap: 2px;
    white-space: normal;
  }
}

/* Case price width and typography tuning */
.case-price {
  max-width: 960px;
}

.case-price-values p {
  gap: 10px;
}

.case-price-values p span span {
  font-size: 16px;
}

.case-price-values strong {
  font-size: clamp(20px, 1.55vw, 26px);
}

.case-price-period {
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 760px) {
  .case-price-values p span span,
  .case-price-period {
    font-size: 15px;
  }

  .case-price-values strong {
    font-size: 22px;
  }
}

/* Mobile layout repair */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .header-inner {
    position: relative;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
  }

  .brand-text {
    min-width: 0;
    font-size: 16px;
    white-space: nowrap;
  }

  .brand-text-full {
    display: none;
  }

  .brand-text-short {
    display: inline;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    min-width: 104px;
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 44px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: -14px;
    right: -14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 14px 14px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #d7e0ea;
    box-shadow: 0 10px 20px rgba(8, 43, 95, 0.08);
    font-size: 14px;
  }

  .site-nav a {
    width: 100%;
    padding: 13px 4px;
    border-bottom: 1px solid #edf2f7;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  body.is-menu-open .site-nav {
    display: grid;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .hero-copy {
    order: 1;
    min-width: 0;
  }

  .hero-visual {
    order: 2;
    width: min(100%, 420px);
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    transform: none;
  }

  .hero-visual img {
    width: 100%;
    max-width: 420px;
  }

  .hero-cta-row,
  .hero-cta-row .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-cta-row .button {
    min-width: 0;
    padding: 0 20px;
  }

  .case-price,
  .case-price-values,
  .case-price-values p {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .header-cta {
    display: none;
  }
}

/* Mobile readability refinements */
@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .about-header p,
  .work-shift-lead,
  .case-example-header p,
  .implementation-flow-header p,
  .faq-header p {
    text-align: left;
  }

  .case-example-overview {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    margin-top: 0;
  }

  .case-example-photo {
    order: 1;
    width: 100%;
    max-width: 100%;
    align-self: auto;
    justify-self: center;
    height: auto;
    max-height: none;
    overflow: hidden;
    border-radius: 10px;
  }

  .case-example-photo img {
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
    border-radius: inherit;
  }

  .case-team {
    order: 2;
    padding: 0;
  }

  .case-results {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 8px 20px;
  }

  .case-result-item {
    margin-top: 0;
    padding: 22px 0;
  }

  .case-result-item + .case-result-item,
  .case-result-item:nth-child(n + 3) {
    margin-top: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .case-result-label {
    padding-top: 4px;
    border-top: 0;
  }

  .case-price {
    padding: 20px 14px;
  }

  .case-price-values {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-price-values p {
    grid-template-columns: 58px minmax(90px, 1fr) auto;
    gap: 10px;
    padding: 18px 0;
    border-top: 0;
    border-left: 0;
  }

  .case-price-values p + p {
    border-top: 1px solid #dbe4ef;
  }

  .case-price-values p > span:last-child {
    display: contents;
    white-space: normal;
  }

  .case-price-values p span span {
    grid-column: 2;
    font-size: 15px;
    line-height: 1.45;
  }

  .case-price-values strong {
    grid-column: 3;
    justify-self: end;
    margin: 0;
    font-size: 22px;
    text-align: right;
    white-space: nowrap;
  }

  .case-price-period {
    display: inline;
    font-size: 15px;
  }

  .faq-question-text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
  }
}

/* Case section spacing and heading decoration */
.case-team-heading,
.case-results-heading,
.case-price-heading-outside {
  margin-bottom: 40px;
}

.case-team h3 {
  justify-content: center;
  text-align: center;
}

.case-team h3::before,
.case-team h3::after {
  content: none;
}

/* Mobile case result typography */
@media (max-width: 760px) {
  .case-result-main {
    gap: 8px;
  }

  .case-result-prefix,
  .case-result-unit {
    font-size: 14px;
  }

  .case-result-item strong {
    font-size: 39px;
  }

  .case-result-label {
    font-size: 16px;
  }
}

/* Mobile single-line brand and compact CTA */
.header-cta-icon {
  display: none;
  width: 24px;
  height: 24px;
}

@media (max-width: 760px) {
  .brand-text {
    font-size: 16px;
  }

  .brand-text-full {
    display: inline;
  }

  .brand-text-short,
  .header-cta-label-full {
    display: none;
  }

  .header-cta-icon {
    display: block;
  }

  .header-cta {
    display: inline-flex;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    flex: 0 0 44px;
  }
}

@media (max-width: 340px) {
  .header-cta {
    display: none;
  }
}

/* Case subsection heading consistency */
.case-team-heading,
.case-team h3,
.case-results-heading,
.case-price-heading-outside {
  font-size: clamp(22px, 1.55vw, 26px);
  font-weight: 900;
}

/* Mobile work-task icon sizing */
@media (max-width: 760px) {
  .work-task-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
  }

  .work-task-icon {
    width: 44px;
    height: 44px;
  }

  .work-task-icon img {
    width: 40px;
    height: 40px;
  }
}

/* LP revision v2 final cascade overrides */
.hero-visual {
  width: min(44vw, 680px);
}

.hero-visual img {
  width: 100%;
  max-width: 680px;
  height: auto;
}

.case-example-photo {
  max-width: 500px;
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.case-results {
  margin-bottom: 0;
}

.case-result-item {
  grid-template-rows: auto auto auto;
  row-gap: 8px;
}

.case-result-item strong {
  font-size: clamp(32px, 3vw, 40px);
}

@media (max-width: 1080px) {
  .hero-visual {
    width: min(100%, 680px);
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 6px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 6px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
  }

  .brand-text {
    font-size: clamp(15px, 4.1vw, 16px);
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 6px;
  }

  .hero-inner,
  .hero-copy,
  .hero-title {
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    overflow-wrap: anywhere;
  }

  .hero-title span {
    display: block;
    white-space: normal;
  }

  .hero-visual {
    width: min(100%, 620px);
    transform: none;
  }

  .hero-visual img {
    max-width: 620px;
  }

  .case-result-item strong {
    font-size: 36px;
  }
}

/* Case example image and results layout */
.case-dashboard-image {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(8, 43, 95, 0.08);
}

.case-results-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.6vw, 48px);
  align-items: stretch;
}

.case-results-layout .case-results {
  grid-template-columns: minmax(0, 1fr);
  height: 100%;
  margin: 0;
  padding: 16px 24px;
}

.case-results-layout .case-result-item {
  grid-template-columns: minmax(125px, 1fr) 252px;
  grid-template-rows: auto;
  column-gap: 10px;
  align-items: center;
  justify-items: stretch;
  min-height: 88px;
  padding: 0 10px;
  text-align: left;
}

.case-result-metric {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: 160px minmax(82px, auto);
  column-gap: 10px;
  align-items: end;
  align-self: center;
  justify-self: center;
  width: 252px;
}

.case-results-layout .case-result-label {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  padding-top: 0;
  text-align: center;
  border-top: 0;
}

.case-result-value-group {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: 96px 64px;
  align-items: end;
  align-self: end;
  justify-self: center;
  width: 160px;
  white-space: nowrap;
}

.case-result-value-group .case-result-prefix {
  align-self: end;
  padding-bottom: 4px;
  text-align: right;
  white-space: nowrap;
}

.case-result-value-group strong {
  width: 64px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.case-results-layout .case-result-unit {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin-left: 0;
  padding-bottom: 4px;
  text-align: left;
  white-space: nowrap;
}

.case-result-note-marker {
  margin-left: 2px;
  font-size: 0.72em;
  vertical-align: super;
}

.case-results-layout + .case-price-heading-outside {
  margin-top: clamp(62px, 6vw, 82px);
}

.case-results-notes {
  display: grid;
  gap: 4px;
  padding: 14px 16px 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
}

.case-results-notes p {
  margin: 0;
}

.case-results-layout .case-result-item + .case-result-item,
.case-results-layout .case-result-item:nth-child(n + 3) {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 0;
}

.case-results-photo {
  display: flex;
  min-width: 0;
}

.case-results-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 1564 / 1006;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(8, 43, 95, 0.08);
}

@media (max-width: 900px) {
  .case-results-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-results-photo {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }

  .case-results-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
  }
}

@media (max-width: 760px) {
  .case-results-layout {
    gap: 24px;
  }

  .case-results-layout .case-results {
    padding: 8px 20px;
  }

  .case-results-layout .case-result-item {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    justify-content: center;
    min-height: 108px;
    column-gap: 8px;
    row-gap: 6px;
    padding: 12px 4px;
  }

  .case-results-layout .case-result-label {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .case-result-value-group {
    grid-row: 1;
  }

  .case-result-metric {
    grid-column: 1;
    grid-row: 2;
  }

  .case-results-notes {
    padding: 12px 8px 8px;
    font-size: 10px;
  }

  .case-results-layout + .case-price-heading-outside {
    margin-top: 46px;
  }

  .case-results-photo img,
  .case-dashboard-image {
    border-radius: 10px;
  }
}

/* Customer voice card */
.case-voice {
  max-width: 920px;
  margin: clamp(46px, 5vw, 64px) auto clamp(54px, 6vw, 76px);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #cbdcf2;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(8, 43, 95, 0.06);
}

.case-voice figcaption {
  padding: 18px 28px;
  color: #0b3e82;
  background: #eef5ff;
  border-bottom: 1px solid #d7e4f4;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 900;
  line-height: 1.6;
}

.case-voice blockquote {
  margin: 0;
  padding: 26px 30px 28px;
  color: #1b2d48;
  font-size: clamp(15px, 1.08vw, 17px);
  font-weight: 400;
  line-height: 1.9;
}

.case-voice blockquote p {
  margin: 0;
}

.case-voice blockquote p + p {
  margin-top: 14px;
}

@media (max-width: 760px) {
  .case-voice {
    margin: 38px auto 46px;
    border-radius: 10px;
  }

  .case-voice figcaption {
    padding: 15px 18px;
    font-size: 15px;
  }

  .case-voice blockquote {
    padding: 20px 18px 22px;
    font-size: 14px;
    line-height: 1.85;
  }
}

/* Unified section description width */
.about-header p,
.work-shift-lead,
.case-example-header p,
.industry-examples .section-header p,
.implementation-flow-header p,
.faq-header p {
  max-width: 820px;
  margin: 30px auto 0;
  color: #142541;
  font-size: clamp(17px, 1.18vw, 19px);
  font-weight: 700;
  line-height: 1.9;
}

.industry-card {
  grid-template-columns: 72px minmax(260px, 0.9fr) minmax(0, 1.55fr);
  gap: 20px;
}

.industry-card img {
  width: 72px;
  height: 72px;
}

.industry-card h3 {
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 900;
  line-height: 1.45;
}

.industry-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.industry-pro-link > img {
  width: 52px;
  height: 52px;
}

.industry-pro-link strong {
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 900;
  line-height: 1.45;
}

.industry-pro-link a {
  gap: 8px;
  font-size: clamp(16px, 1.18vw, 19px);
}

.industry-pro-link .industry-pro-next {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}

.our-approach-subtitle {
  font-size: clamp(22px, 1.55vw, 26px);
  font-weight: 900;
  line-height: 1.4;
}

.our-approach-industry img {
  width: 84px;
  height: 84px;
}

.our-approach-industry h4 {
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 900;
  line-height: 1.45;
}

.our-approach-support {
  grid-template-columns: 72px minmax(0, 1fr);
}

.our-approach-support img {
  width: 72px;
  height: 72px;
}

.our-approach .our-approach-support p {
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 900;
  line-height: 1.6;
}

@media (max-width: 1080px) and (min-width: 769px) {
  .industry-card {
    grid-template-columns: 68px minmax(210px, 0.85fr) minmax(0, 1.4fr);
    gap: 16px;
  }

  .industry-card img {
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 760px) {
  .about-header p,
  .work-shift-lead,
  .case-example-header p,
  .industry-examples .section-header p,
  .implementation-flow-header p,
  .faq-header p,
  .industry-card p {
    font-size: 15px;
  }

  .industry-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
  }

  .industry-card img {
    width: 56px;
    height: 56px;
  }

  .industry-card h3 {
    font-size: 18px;
  }

  .our-approach-industry,
  .our-approach-industry:nth-child(4) {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .our-approach-industry img {
    width: 62px;
    height: 62px;
  }

  .our-approach-industry h4 {
    font-size: 17px;
  }

  .our-approach-support {
    grid-template-columns: 1fr;
  }

  .our-approach-support img {
    width: 64px;
    height: 64px;
  }

  .our-approach .our-approach-support p {
    font-size: 15px;
  }
}

/* Final responsive and typography alignment */
.about-header > p,
.work-shift-lead,
.case-example-header > p,
.difference-header > p,
.industry-examples .section-header > p,
.implementation-flow-header > p,
.faq-header > p {
  max-width: 820px;
  margin: 30px auto 0;
  color: #142541;
  font-size: clamp(17px, 1.18vw, 19px);
  font-weight: 400;
  line-height: 1.9;
}

.difference-checks h3 {
  font-size: clamp(22px, 1.55vw, 26px);
}

.difference-checks li {
  padding-left: 20px;
}

.difference-checks li::before {
  top: 0;
  width: auto;
  height: auto;
  content: "・";
  color: var(--color-green);
  background: none;
  border-radius: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}

.ceo-message-photo {
  aspect-ratio: 4 / 5;
}

.ceo-message-photo img {
  object-position: center 18%;
}

.ceo-message-support h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ceo-message-support h3 img {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
  }

  .header-actions {
    display: flex;
    visibility: visible;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .about-header > p,
  .work-shift-lead,
  .case-example-header > p,
  .difference-header > p,
  .industry-examples .section-header > p,
  .implementation-flow-header > p,
  .faq-header > p {
    font-size: 15px;
    text-align: left;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex !important;
    position: absolute;
    top: 50%;
    right: 0;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transform: translateY(-50%);
    flex: 0 0 44px;
  }

  .hero-inner,
  .hero-copy {
    width: calc(100% - 28px);
    max-width: 100%;
    padding-left: 0;
  }

  .hero-title,
  .hero-lead {
    max-width: 100%;
  }

  .hero-cta-row,
  .hero-cta-row .button {
    width: 100%;
    min-width: 0;
  }

  .hero-badges li:last-child {
    flex-basis: 100%;
  }

  .mobile-sticky-cta.is-visible {
    padding: 0 0 env(safe-area-inset-bottom);
  }

  .mobile-sticky-cta .button {
    width: 100%;
    min-height: 56px;
    flex: 1 1 100%;
    border-radius: 0;
  }

  body.has-mobile-sticky-cta {
    padding-bottom: calc(56px + env(safe-area-inset-bottom));
  }

  .case-example-overview {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .case-team {
    order: 1;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .case-example-photo {
    order: 2;
    width: 100%;
    max-width: 100%;
  }

  .case-dashboard-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .difference-table-wrap {
    overflow: visible;
  }

  .difference-table {
    display: block;
    min-width: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .difference-table thead {
    display: none;
  }

  .difference-table tbody,
  .difference-table tbody tr {
    display: block;
  }

  .difference-table tbody tr {
    margin-top: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #c8d7ee;
    border-radius: 10px;
  }

  .difference-table tbody tr:first-child {
    margin-top: 0;
  }

  .difference-table th,
  .difference-table td {
    display: block;
    width: auto;
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
  }

  .difference-table tbody th {
    width: auto;
    background: #f8fbff;
  }

  .difference-table tbody tr td:last-child {
    border-bottom: 0;
  }

  .difference-table td::before {
    display: block;
    margin-bottom: 4px;
    color: #52627a;
    content: attr(data-label);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
  }

  .difference-table td.difference-own::before {
    color: #1f5bd8;
  }

  .difference-checks h3 {
    font-size: 22px;
  }

  .difference-checks h3 img {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .ceo-message-photo {
    aspect-ratio: 4 / 5;
  }

  .industry-pro-link {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .industry-pro-link > img {
    grid-row: auto;
    width: 54px;
    height: 54px;
  }

  .industry-pro-link strong,
  .industry-pro-link > span,
  .industry-pro-link a {
    grid-column: auto;
  }

  .industry-pro-link a {
    justify-content: center;
  }
}

/* Typography and mobile layout correction */
.brand-text {
  font-size: clamp(20px, 1.35vw, 24px);
}

.site-nav {
  font-size: 16px;
}

.hero-label {
  min-height: 44px;
  padding: 0 22px;
  font-size: clamp(18px, 1.3vw, 20px);
}

.hero-badges li {
  padding: 8px 16px;
  font-size: 15px;
}

.about-header > p,
.about-subcopy,
.work-shift-lead,
.case-example-header > p,
.case-results-lead,
.difference-header > p,
.industry-examples .section-header > p,
.implementation-flow-header > p,
.faq-header > p {
  max-width: 820px;
  margin: 30px auto 0;
  color: #142541;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(17px, 1.18vw, 19px);
  font-weight: 400;
  line-height: 1.9;
}

.about-card {
  grid-template-rows: 136px auto 1fr;
}

.about-card img {
  margin-bottom: 20px;
}

.case-voice figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-voice figcaption img {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.difference-table thead th:not(:first-child),
.difference-table tbody td {
  text-align: center;
}

.difference-table thead .difference-own {
  border: 2px solid #8bb7f4;
  border-bottom-width: 1px;
}

.difference-table tbody td.difference-own {
  border-right: 2px solid #8bb7f4;
  border-left: 2px solid #8bb7f4;
}

.difference-table tbody tr:last-child td.difference-own {
  border-bottom: 2px solid #8bb7f4;
}

.difference-checks h3 {
  font-size: clamp(20px, 1.4vw, 24px);
}

.difference-checks li::before {
  top: 0.22em;
  width: auto;
  height: auto;
  content: "・";
  color: var(--color-green);
  background: none;
  border-radius: 0;
  font-size: 18px;
  line-height: 1.4;
}

.ceo-message-support {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  width: min(100%, 920px);
  margin: 28px auto 0;
  padding: 24px 30px;
}

.ceo-message-support > img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.ceo-message-support h3 {
  margin: 0;
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.4;
}

.ceo-message-support p {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

@media (max-width: 760px) {
  .brand-text-full {
    display: inline;
  }

  .brand-text-short {
    display: none;
  }

  .brand-text {
    font-size: 17px;
  }

  .header-actions {
    position: static;
    gap: 6px;
    transform: none;
  }

  .menu-toggle {
    position: static;
    display: flex !important;
    flex: 0 0 44px;
  }

  .hero-label {
    min-height: 38px;
    padding: 0 16px;
    font-size: 16px;
  }

  .hero-badges li {
    padding: 6px 12px;
    font-size: 13px;
  }

  .hero-title {
    overflow-wrap: normal;
    word-break: keep-all;
    font-size: clamp(28px, 8.2vw, 34px);
  }

  .hero-title span {
    display: block;
    white-space: nowrap;
  }

  .about-header > p,
  .about-subcopy,
  .work-shift-lead,
  .case-example-header > p,
  .case-results-lead,
  .difference-header > p,
  .industry-examples .section-header > p,
  .implementation-flow-header > p,
  .faq-header > p {
    font-size: 15px;
    text-align: left;
  }

  .about-card {
    grid-template-rows: 120px auto 1fr;
  }

  .case-voice figcaption {
    gap: 8px;
  }

  .case-voice figcaption img {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .difference-table thead .difference-own,
  .difference-table tbody td.difference-own,
  .difference-table tbody tr:last-child td.difference-own {
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
  }

  .difference-checks h3 {
    font-size: 20px;
  }

  .ceo-message-support {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 24px 20px 26px;
    text-align: center;
  }

  .ceo-message-support > img {
    width: 78px;
    height: 78px;
  }

  .ceo-message-support p {
    font-size: 15px;
    text-align: left;
  }

  .mobile-sticky-cta.is-visible {
    padding: 0;
  }

  .mobile-sticky-cta .button {
    width: 100%;
    min-height: 56px;
    border-radius: 0;
  }

  body.has-mobile-sticky-cta {
    padding-bottom: 56px;
  }
}

/* Current mobile spacing and alignment corrections */
.case-results-lead {
  margin: 30px auto clamp(34px, 4vw, 52px);
}

.industry-card:last-child {
  border-bottom: 0;
}

.ceo-message-photo {
  aspect-ratio: 1;
}

@media (max-width: 760px) {
  .header-actions {
    position: static;
    gap: 6px;
    transform: none;
  }

  .menu-toggle {
    position: static;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 44px;
    transform: none;
  }

  .hero-copy {
    width: 100%;
    text-align: center;
  }

  .hero-label,
  .hero-title,
  .hero-lead,
  .hero-cta-row,
  .hero-note {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-badges li:last-child {
    flex-basis: auto;
  }

  .case-results-lead {
    margin: 22px auto 28px;
  }

  .case-example-photo {
    margin-top: 10px;
  }
}

/* Latest mobile and section presentation corrections */
.case-report-heading {
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.case-example-photo {
  aspect-ratio: auto;
  background: transparent;
  box-shadow: none;
}

.case-example-photo img {
  height: auto;
  object-fit: contain;
}

@media (min-width: 1081px) {
  .case-team {
    width: 100%;
    max-width: 520px;
    justify-self: center;
  }
}

.difference-mobile {
  display: none;
}

@media (max-width: 760px) {
  body.is-menu-open .mobile-sticky-cta.is-visible {
    display: flex;
  }

  body.has-mobile-sticky-cta {
    padding-bottom: 0;
  }

  body.has-mobile-sticky-cta > main {
    padding-bottom: calc(56px + env(safe-area-inset-bottom));
  }

  .menu-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-basis: 40px;
  }

  .menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .menu-toggle span:nth-child(1) {
    top: 11px;
  }

  .menu-toggle span:nth-child(3) {
    top: 27px;
  }

  body.is-menu-open .menu-toggle span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body.is-menu-open .menu-toggle span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .hero-label {
    transform: translateY(-8px);
    margin-bottom: 8px;
  }

  .hero-title {
    font-size: clamp(29px, 8.5vw, 36px);
    line-height: 1.48;
    letter-spacing: 0.015em;
  }

  .hero-lead {
    text-align: left;
  }

  .difference-table-wrap {
    display: none;
  }

  .difference-mobile {
    display: grid;
    gap: 18px;
    margin-top: 28px;
  }

  .difference-mobile-group {
    margin: 0;
  }

  .difference-mobile-group h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 14px 4px;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.4;
  }

  .difference-mobile-group h3 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .difference-mobile-row {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 12px;
    align-items: center;
    padding: 14px 4px;
    color: #21324c;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    line-height: 1.55;
  }

  .difference-mobile-row span:first-child {
    font-weight: 800;
  }

  .difference-mobile-row.difference-mobile-before-own {
    border-bottom: 0;
  }

  .difference-mobile-row.difference-mobile-own {
    margin-top: 6px;
    padding: 14px 10px;
    color: #1f5bd8;
    border: 1px solid #6da0f1;
    border-radius: 8px;
    font-weight: 900;
  }

  .difference-mobile-row.difference-mobile-own span:first-child {
    font-weight: 900;
  }

  .case-example-photo {
    overflow: hidden;
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
  }

  .case-example-photo img {
    width: 120%;
    max-width: none;
    margin-left: -10%;
  }
}

/* 2026-08 conversion-focused refinement */

.case-result-outcome {
  display: block;
  color: #fff;
  font-size: clamp(16px, 1.6vw, 21px) !important;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
:root {
  --color-green: #0b7a3b;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #0b315f;
}

.decision-card:focus-visible,
.faq-item summary:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px #ffffff, inset 0 0 0 6px #0b315f;
}

.header-cta,
.button-primary {
  color: #ffffff;
  background: #0b7a3b;
  border-color: #0b7a3b;
}

.header-cta:hover,
.button-primary:hover {
  background: #075e2e;
  border-color: #075e2e;
}

.hero {
  padding: clamp(34px, 3.4vw, 52px) 0 clamp(42px, 4vw, 60px);
  background:
    radial-gradient(circle at 78% 36%, rgba(255, 255, 255, 0.78), transparent 31%),
    #dae3fa;
}

.hero-inner {
  align-items: center;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  gap: clamp(24px, 2vw, 32px);
}

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

.hero-label {
  margin-bottom: 14px;
}

.hero-title {
  max-width: 720px;
  margin-top: 0;
  font-size: clamp(36px, 2.9vw, 42px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero-title span {
  display: block;
  white-space: normal;
}

.hero-title em {
  color: #08733a;
  text-decoration-color: rgba(8, 115, 58, 0.22);
}

.hero-subtitle {
  max-width: 680px;
  margin: 12px 0 0;
  padding-left: 16px;
  color: #0b315f;
  border-left: 4px solid #0b7a3b;
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 900;
  line-height: 1.7;
}

.hero-badges {
  margin-top: 14px;
}

.hero-badges li {
  padding: 7px 13px;
  border-color: rgba(11, 49, 95, 0.12);
  background: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.hero-lead {
  max-width: 680px;
  margin-top: 16px;
  font-size: clamp(15px, 1.16vw, 18px);
  line-height: 1.8;
}

.hero-cta-row {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-cta-row .button {
  min-width: 0;
  min-height: 58px;
  padding: 0 22px;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.hero-cta-row .button-primary {
  flex: 1 1 390px;
}

.button-secondary {
  flex: 0 1 210px;
  color: #082b5f;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #7089aa;
}

.button-secondary:hover {
  color: #ffffff;
  background: #082b5f;
  border-color: #082b5f;
}

.hero-note {
  margin-top: 12px;
  color: #334767;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual img {
  max-height: 520px;
  object-fit: contain;
}

.decision-strip {
  position: relative;
  z-index: 4;
  padding: 0 48px 46px;
  background: #f4f7fb;
}

.decision-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #cbd7e7;
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(6, 31, 70, 0.1);
  transform: translateY(-22px);
}

.decision-card {
  display: flex;
  min-width: 0;
  padding: 24px 26px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #dbe3ef;
  transition: background-color 160ms ease;
}

.decision-card:first-child {
  border-left: 0;
}

.decision-card:hover {
  background: #f3f8ff;
}

.decision-card-label {
  color: #1f5bd8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.decision-card strong {
  margin-top: 6px;
  color: #061b46;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.45;
}

.decision-card strong span {
  font-size: 0.62em;
}

.decision-card small {
  margin-top: 7px;
  color: #52627a;
  font-size: 12px;
  line-height: 1.55;
}

.case-proof-cta {
  display: flex;
  justify-content: center;
  margin: 28px auto 52px;
}

.case-proof-cta a,
.price-legal-link {
  color: #075e2e;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.case-proof-cta a::after {
  margin-left: 8px;
  content: "→";
}

.case-price-includes {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #d8e1ed;
}

.case-price-includes > p {
  margin: 0;
  color: #061b46;
  font-size: 16px;
  font-weight: 900;
}

.case-price-includes ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.case-price-includes li {
  position: relative;
  min-width: 0;
  padding: 12px 12px 12px 34px;
  color: #18304f;
  background: #f2f7f4;
  border: 1px solid #cbe3d3;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.case-price-includes li::before {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #0b7a3b;
  content: "✓";
  font-weight: 900;
}

.case-price-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.case-price-actions .button {
  min-height: 56px;
  padding: 0 26px;
  line-height: 1.4;
  text-align: center;
}

.price-document-link,
.faq-document-link {
  color: #2e4360;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.price-document-link:hover,
.faq-document-link:hover {
  color: #b83218;
}

.price-document-link {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.price-legal-link {
  color: #52627a;
  font-size: 13px;
  font-weight: 700;
}

.faq-document-link {
  white-space: nowrap;
}

.final-cta-benefits {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.final-cta-benefits li {
  min-width: 180px;
  padding: 10px 16px;
  color: #0c305d;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 43, 95, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.final-cta-benefits li::before {
  margin-right: 7px;
  color: #0b7a3b;
  content: "✓";
}

@media (max-width: 900px) {
  .header-inner {
    position: relative;
    width: calc(100% - 32px);
    gap: 12px;
  }

  .header-actions {
    position: static;
    gap: 6px;
    transform: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 44px;
    transform: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: -16px;
    left: -16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 16px 14px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #d7e0ea;
    box-shadow: 0 10px 20px rgba(8, 43, 95, 0.08);
    font-size: 14px;
  }

  .site-nav a {
    width: 100%;
    padding: 13px 4px;
    border-bottom: 1px solid #edf2f7;
    white-space: normal;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  body.is-menu-open .site-nav {
    display: grid;
  }
}

@media (max-width: 1080px) {
  .header-inner {
    width: calc(100% - 48px);
    gap: 18px;
  }

  .brand-text {
    font-size: 18px;
  }

  .site-nav {
    gap: 16px;
    font-size: 13px;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .hero-inner {
    width: calc(100% - 64px);
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

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

  .hero-copy {
    max-width: 780px;
    order: 1;
  }

  .hero-visual {
    order: 2;
    margin: 0 auto;
    justify-content: center;
  }

  .hero-visual img {
    max-height: 360px;
  }

  .case-price-includes ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .header-cta {
    background: #0b7a3b;
    border-color: #0b7a3b;
  }

  .hero {
    padding: 28px 0 34px;
  }

  .hero-inner {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-label {
    min-height: 34px;
    margin-bottom: 10px;
    padding: 0 14px;
    transform: none;
    font-size: 14px;
  }

  .hero-title {
    margin-top: 8px;
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: clamp(27px, 7.2vw, 29px);
    line-height: 1.42;
    letter-spacing: 0;
  }

  .hero-title span {
    display: inline;
    white-space: normal;
  }

  .hero-title span:first-child::after {
    content: " ";
  }

  .hero-subtitle {
    margin-top: 14px;
    padding: 10px 12px;
    border-left-width: 3px;
    background: rgba(255, 255, 255, 0.52);
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .hero-badges li {
    justify-content: center;
    min-width: 0;
    padding: 7px 8px;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
  }

  .hero-badges li:first-child {
    grid-column: 1 / -1;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-lead br {
    display: none;
  }

  .hero-cta-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .hero-cta-row .button-primary,
  .hero-cta-row .button-secondary {
    width: 100%;
    min-height: 56px;
    flex-basis: auto;
  }

  .hero-cta-row .button-primary {
    padding: 0 14px;
    font-size: 14px;
  }

  .hero-note {
    font-size: 12px;
    text-align: center;
  }

  .hero-visual img {
    max-height: 220px;
  }

  .decision-strip {
    padding: 0 14px 30px;
  }

  .decision-strip-inner {
    grid-template-columns: 1fr;
    border-radius: 10px;
    transform: translateY(-14px);
  }

  .decision-card {
    padding: 12px 16px;
    border-top: 1px solid #dbe3ef;
    border-left: 0;
  }

  .decision-card:first-child {
    border-top: 0;
  }

  .decision-card strong {
    margin-top: 3px;
    font-size: 16px;
  }

  .decision-card small {
    display: none;
  }

  .case-example-overview {
    gap: 18px;
  }

  .case-team ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .case-team li {
    min-width: 0;
    padding: 10px;
    font-size: 13px;
  }

  .case-example-photo {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .case-example-photo img {
    width: 100%;
    max-width: 100%;
    max-height: 250px;
    margin-left: 0;
  }

  .case-voice blockquote p + p {
    margin-top: 12px;
  }

  .case-results-layout .case-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .case-results-layout .case-result-item {
    display: flex;
    min-width: 0;
    min-height: 132px;
    padding: 14px 10px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #cad8ea;
    border-radius: 8px;
  }

  .case-results-layout .case-result-label {
    font-size: 12px;
  }

  .case-results-layout .case-result-item strong {
    font-size: 18px;
  }

  .case-results-layout .case-result-metric {
    display: block;
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .case-results-layout .case-result-outcome {
    white-space: normal;
  }

  .case-results-notes {
    grid-column: 1 / -1;
  }

  .case-results-photo {
    display: none;
  }

  .case-proof-cta {
    margin: 22px 0 36px;
    text-align: center;
  }

  .case-proof-cta a {
    font-size: 14px;
  }

  .case-price {
    overflow: visible;
  }

  .case-price-includes ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .case-price-includes li {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .case-price-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .case-price-actions .button {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
  }

  .price-legal-link {
    text-align: center;
  }

  .price-document-link {
    font-size: 14px;
  }

  .flow-steps {
    gap: 0;
  }

  .flow-step {
    display: grid;
    grid-template-columns: 44px 70px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 4px 12px;
    align-items: center;
    min-height: 0;
    padding: 18px 0;
    border-bottom: 1px solid #d6e0ec;
    text-align: left;
  }

  .flow-step-number {
    grid-row: 1 / 3;
    grid-column: 1;
    align-self: start;
  }

  .flow-step img {
    grid-row: 1 / 3;
    grid-column: 2;
    width: 66px;
    height: 66px;
    margin: 0;
    object-fit: contain;
  }

  .flow-step h3 {
    grid-row: 1;
    grid-column: 3;
    margin: 0;
    font-size: 17px;
    text-align: left;
  }

  .flow-step p {
    grid-row: 2;
    grid-column: 3;
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    text-align: left;
  }

  .final-cta-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(100%, 330px);
    margin-right: auto;
    margin-left: auto;
  }

  .final-cta-benefits li {
    min-width: 0;
    padding: 9px 14px;
    text-align: left;
  }

  .mobile-sticky-cta .button {
    background: #0b7a3b;
    border-color: #0b7a3b;
  }

  body.is-menu-open .mobile-sticky-cta {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
