:root {
  --blue: #0646b6;
  --deep: #06286f;
  --sky: #eaf5ff;
  --line: #d8e7fb;
  --orange: #ff7a1a;
  --text: #10204a;
  --muted: #556784;
  --shadow: 0 18px 45px rgba(18, 78, 170, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", system-ui, sans-serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at 78% 6%, rgba(95, 174, 255, 0.2), transparent 25rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #ffffff 100%);
}

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

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

.site-footer,
.inner {
  width: min(1088px, calc(100% - clamp(56px, 9.4vw, 112px)));
  margin-inline: auto;
}

.site-header {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-inline: max(clamp(28px, 4.7vw, 56px), calc((100vw - 1088px) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 231, 251, 0.82);
  overflow-x: clip;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand img {
  width: 210px;
  height: auto;
  display: block;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  flex: 0 0 auto;
  white-space: nowrap;
}

.nav a {
  flex: 0 0 auto;
}

.header-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.btn {
  /* min-height: 48px; */
  padding: 10px 30px;
  display: block;
  align-items: center;
  text-align: center;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  border: 1px solid transparent;
  box-shadow: 0 9px 24px rgba(8, 67, 174, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn::after {
  content: "↓";
  font-size: 18px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 67, 174, 0.18);
}

.btn-small {
  min-height: 34px;
  padding: 0 18px;
  font-size: 12px;
}

.btn-orange {
  background: linear-gradient(180deg, #ff9029, var(--orange));
  color: #fff;
}

.btn-outline {
  color: var(--blue);
  background: #fff;
  border-color: #93b7ef;
}

.btn-blue {
  color: #fff;
  background: linear-gradient(180deg, #1162cf, #073d9d);
}

.btn-white {
  background: #fff;
  color: var(--blue);
}

.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 530px) 1fr;
  align-items: center;
  gap: 34px;
  padding: 64px max(clamp(28px, 4.7vw, 56px), calc((100vw - 1088px) / 2)) 34px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 43%, rgba(255, 255, 255, 0.78) 60%, rgba(255, 255, 255, 0.18) 100%),
    url("./assets/hero-ai-dashboard.png") right center / 78% auto no-repeat;
  border-bottom: 1px solid #dbeafd;
}

.hero::before,
.agent::before,
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(110deg, transparent 0 42%, rgba(34, 119, 220, 0.09) 42.2%, transparent 42.5%),
    linear-gradient(24deg, transparent 0 57%, rgba(34, 119, 220, 0.1) 57.1%, transparent 57.4%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 530px;
}

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  color: var(--blue);
  background: #eef6ff;
  border: 1px solid #cfe1ff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.hero h1 {
  margin: 10px 0 16px;
  color: var(--deep);
  font-size: clamp(42px, 4.55vw, 64px);
  line-height: 1.24;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
  width: max-content;
}

.hero-title-line-second {
  font-size: 0.94em;
  margin-top: 6px;
}

.hero-title-accent {
  color: var(--orange);
}

.lead {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 800;
  color: #213765;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-visual {
  display: none;
}

.hero-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 1;
}

.hero-points div {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(195, 219, 249, 0.8);
  border-radius: 8px;
  font-size: 13px;
}

.section {
  padding: 64px 0;
}

h2 {
  margin: 0 0 24px;
  color: var(--deep);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.35;
  font-weight: 950;
  letter-spacing: 0;
}

h3,
p {
  margin-top: 0;
}

.pain h2 {
  text-align: center;
}

.problem-card {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 32px 42px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  color: var(--text);
  background: #fff;
  border: 1px solid #dbe9fb;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.problem-list li > span {
  margin-top: 2px;
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 21px;
  line-height: 1;
  font-weight: 950;
}

.problem-list p {
  margin: 0;
}

.problem-list strong {
  color: var(--deep);
  background: linear-gradient(transparent 64%, rgba(255, 122, 26, 0.18) 64%);
  font-weight: 950;
}

.mini-card,
.feature-card,
.flow-row article {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-card {
  min-height: 138px;
  padding: 20px 14px;
  text-align: center;
}

i {
  font-style: normal;
}

.mini-card i,
.feature-card i,
.strength-grid i {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 2px solid #9ec3ff;
  border-radius: 50%;
  font-weight: 900;
}

.mini-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.agent {
  position: relative;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
  overflow: hidden;
}

.agent-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 36px;
  align-items: center;
}

.agent-copy p,
.section-title p {
  color: var(--muted);
  font-weight: 700;
}

.agent-map {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
}

.agent-map img {
  position: relative;
  z-index: 1;
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(217, 237, 255, 0.7);
}

.agent-list {
  display: grid;
  gap: 18px;
}

.agent-list article {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.agent-list strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
}

.agent-list span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.split {
  /* display: grid; */
  /* grid-template-columns: 360px 1fr;
  gap: 36px; */
  align-items: start;
}

.service {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 54%, #ffffff 100%);
}

.service-heading {
  /* max-width: 820px; */
  margin-bottom: 38px;
}

.service-heading p:not(.label) {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.9;
}

.service-story {
  display: grid;
  gap: 34px;
  position: relative;
}

.service-story::before {
  /* content: ""; */
  position: absolute;
  left: 214px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg, rgba(6, 70, 182, 0), rgba(6, 70, 182, 0.28), rgba(6, 70, 182, 0));
}

.service-row {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 42px;
  align-items: center;
  position: relative;
  padding: 0 0 34px;
  border-bottom: 1px solid #dbe9fb;
}

.service-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-row:nth-child(even) {
  grid-template-columns: 1fr 430px;
}

.service-row:nth-child(even) figure {
  order: 2;
}

.service-row:nth-child(even) .service-row-copy {
  order: 1;
}

.service-row figure {
  margin: 0;
  min-height: 245px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #d8e7fb;
  box-shadow: 0 22px 55px rgba(18, 78, 170, 0.14);
  background: #eef6ff;
}

.service-row figure img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  display: block;
}

.service-row-copy {
  position: relative;
  padding: 10px 0;
}

.service-step {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #1b72df, var(--blue));
  border-radius: 50%;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(6, 70, 182, 0.22);
}

.service-row h3 {
  margin: 0 0 14px;
  color: var(--deep);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.35;
}

.service-row-copy p {
  margin: 0 0 18px;
  color: #344765;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.service-row-copy ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-row-copy li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.service-row-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.14);
}

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

.feature-card {
  min-height: 202px;
  padding: 28px 18px;
  text-align: center;
}

.feature-card h3,
.strength-grid h3,
.flow-row h3 {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 16px;
  line-height: 1.45;
}

.feature-card p,
.strength-grid p,
.flow-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.process {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.output-heading {
  margin-bottom: 34px;
}

.output-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.output-showcase {
  display: grid;
  gap: 28px;
}

.output-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.output-list li {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 245px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.output-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--blue);
  background: #eef6ff;
  border: 2px solid #9ec3ff;
  border-radius: 50%;
}

.output-icon::before,
.output-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.output-icon-doc::before {
  width: 20px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.output-icon-doc::after {
  width: 12px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor, 0 14px 0 currentColor;
}

.output-icon-chart::before {
  width: 27px;
  height: 22px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.output-icon-chart::after {
  width: 24px;
  height: 16px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(35deg) translate(1px, -2px);
}

.output-icon-light::before {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 45% 45%;
  top: 13px;
}

.output-icon-light::after {
  width: 14px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  bottom: 12px;
}

.output-icon-check::before {
  width: 26px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.output-icon-check::after {
  width: 16px;
  height: 8px;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg) translate(1px, -1px);
}

.output-icon-road::before {
  width: 28px;
  height: 18px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: skewX(-18deg);
}

.output-icon-road::after {
  width: 7px;
  height: 7px;
  right: 12px;
  top: 13px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: -15px 14px 0 var(--orange);
}

.output-icon-people::before {
  width: 10px;
  height: 10px;
  top: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: -13px 5px 0 -1px #eef6ff, -13px 5px 0 1px currentColor, 13px 5px 0 -1px #eef6ff, 13px 5px 0 1px currentColor;
}

.output-icon-people::after {
  width: 34px;
  height: 15px;
  bottom: 11px;
  border: 2px solid currentColor;
  border-radius: 18px 18px 4px 4px;
}

.output-list h3 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 19px;
  line-height: 1.4;
}

.output-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.output-action {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.strength-frame {
  position: relative;
  padding: 48px 18px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #cfe1ff;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 78, 170, 0.11);
}

.strength-frame-title {
  min-width: 300px;
  margin: 0;
  padding: 9px 32px;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: linear-gradient(180deg, #0b4cb9, #07358d);
  border-radius: 999px;
  font-size: 20px;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 12px 24px rgba(6, 70, 182, 0.2);
}

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

.strength-grid article {
  min-height: 430px;
  padding: 16px 18px 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.strength-grid article:last-child {
  border-right: 0;
}

.strength-head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 92px;
}

.strength-head span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 950;
}

.strength-head h3 {
  margin: 0;
  color: var(--deep);
  font-size: 17px;
  line-height: 1.45;
}

.strength-visual {
  height: 128px;
  margin: 4px 0 20px;
  position: relative;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #d8e7fb;
  border-radius: 8px;
  background: #eef6ff;
}

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

.strength-grid article p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.85;
}

.strength-grid article b {
  margin-top: auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  color: var(--blue);
  background: #edf6ff;
  border-radius: 8px 8px 0 0;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.strength-list {
  display: grid;
  gap: 24px;
}

.strength-item {
  display: grid;
  grid-template-columns: minmax(320px, 44%) 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 78, 170, 0.11);
}

.strength-item figure {
  margin: 0;
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef6ff;
}

.strength-item figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.strength-copy span {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 950;
}

.strength-copy h3 {
  margin: 0 0 16px;
  color: var(--deep);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.45;
}

.strength-copy p {
  margin: 0 0 18px;
  color: #344765;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.strength-copy b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 18px;
  color: var(--blue);
  background: #edf6ff;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.5;
}

.strength-copy b::before {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  background: url("./assets/strength-highlight-lightbulb.png") center / contain no-repeat;
}

.benefits {
  background: #f7fbff;
}

.benefit-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.benefit-heading p:not(.label) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
}

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

.benefit-kpi article {
  min-width: 0;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid #dbe9fb;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 78, 170, 0.09);
}

.benefit-kpi-icon {
  width: 52px;
  height: 52px;
  display: block;
  margin: 0 auto 10px;
  object-fit: contain;
}

.benefit-kpi span {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
}

.benefit-kpi b {
  min-height: 54px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 31px;
  font-weight: 950;
  line-height: 1.15;
  white-space: nowrap;
}

.benefit-kpi strong {
  color: var(--orange);
  font-size: 52px;
  line-height: 0.9;
}

.benefit-kpi .kpi-word {
  color: var(--orange);
}

.benefit-kpi p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.6;
}

.benefit-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.comparison-layout {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.table-wrap {
  overflow-x: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
}

table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 12px;
  text-align: center;
}

th {
  padding: 9px 7px;
  color: #fff;
  background: #083b94;
  line-height: 1.45;
}

th:nth-child(2) {
  color: #ffb56f;
}

td {
  padding: 9px 7px;
  border: 1px solid #dbe7f8;
  font-weight: 800;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

td:nth-child(2) {
  color: var(--orange);
  background: #fff8f1;
}

.usecase-panel {
  margin-top: 26px;
  padding: 36px 46px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.usecase-panel > h3 {
  margin: 0 0 26px;
  color: var(--deep);
  font-size: 25px;
  line-height: 1.55;
}

.usecase-block,
.usecase-effect {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.usecase-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.usecase-icon {
  width: 62px;
  height: 62px;
  display: block;
  object-fit: contain;
}

.usecase-panel h4 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 17px;
  line-height: 1.5;
}

.usecase-panel p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.usecase-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #cfe0f7;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.usecase-kpis div {
  min-height: 116px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 18px 12px;
  text-align: center;
  border-left: 1px solid #cfe0f7;
}

.usecase-kpis div:first-child {
  border-left: 0;
}

.usecase-kpis span {
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

.usecase-kpis b {
  color: var(--deep);
  font-size: 42px;
  line-height: 1;
}

.usecase-kpis small {
  font-size: 20px;
}

.usecase-kpis em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.usecase-industry {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--deep);
  font-size: 14px;
  font-weight: 900;
}

.usecase-voice {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 22px;
  background: #f2f8ff;
  border: 1px solid #d7e8fb;
  border-radius: 8px;
}

.voice-avatar {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 50%;
  object-fit: contain;
}

.voice-comment h4 {
  margin-bottom: 6px;
}

.voice-comment p {
  color: var(--deep);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.8;
}

.voice-comment strong {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.usecase-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.flow {
  background: #f9fcff;
}

.flow h2 {
  margin-bottom: 24px;
}

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

.flow-row article {
  position: relative;
  min-height: 178px;
  padding: 20px 14px;
  text-align: center;
  box-shadow: none;
}

.flow-row article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid var(--blue);
  transform: translateY(-50%);
}

.flow-row article:not(:last-child) h3::after {
  content: none;
}

.flow-row i {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
}

.flow-row h3 {
  margin-bottom: 8px;
  font-size: 14px;
}

.faq {
  background: #fff;
}

.faq_body {
  margin-top: 24px;
}

.faq_txt1,
.faq_txt2 {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.9;
}

.faq_txt1 {
  margin-bottom: 26px;
}

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

.faq_inner {
  margin-top: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq_title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.faq_icon {
  width: 46px;
  height: 46px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #eef6ff;
}

.faq_icon::before {
  content: "?";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 24px;
  font-weight: 950;
}

.faq_title p {
  margin: 0;
  color: var(--deep);
  font-size: 19px;
  font-weight: 950;
}

.qa-6 {
  border-top: 1px solid var(--line);
}

.qa-6:last-child {
  border-bottom: 1px solid var(--line);
}

.qa-6 summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 4px;
  cursor: pointer;
  list-style: none;
}

.qa-6 summary::-webkit-details-marker {
  display: none;
}

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

.qa_label,
.answer_label {
  color: var(--blue);
  font-size: 20px;
  font-weight: 950;
}

.qa_sep,
.answer_sep {
  color: #b9cce8;
  font-weight: 900;
}

.qa_txt {
  color: var(--deep);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
}

.qa_arrow {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.qa-6[open] .qa_arrow {
  transform: rotate(225deg);
}

.answer {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 0 4px 8px;
}

.answer_txt {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.8;
}

.answer_note {
  display: block;
  padding: 0 4px 18px 42px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.faq_cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.cta {
  width: 100%;
  margin-bottom: 0;
  padding: 54px max(clamp(28px, 4.7vw, 56px), calc((100vw - 1088px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 30%, rgba(51, 169, 255, 0.7), transparent 10rem),
    linear-gradient(135deg, #062c86 0%, #003fb5 54%, #022468 100%);
  border-radius: 0;
}

.cta h2 {
  margin-bottom: 12px;
  color: #fff;
}

.cta p {
  max-width: 680px;
  margin: 0;
  font-weight: 700;
  line-height: 1.9;
}

.cta .btn {
  min-width: 230px;
  padding: 16px 38px;
  font-size: 17px;
  box-shadow: 0 16px 34px rgba(255, 122, 24, 0.32);
}

.cta .btn::after {
  margin-left: 8px;
  font-size: 20px;
}

.consultation {
  padding: 72px 0;
  background: #f7fbff;
}

.form_outer {
  width: min(1088px, calc(100% - clamp(56px, 9.4vw, 112px)));
  margin-inline: auto;
  padding: 36px 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact__form--headingComment {
  text-align: center;
}

.contact__form--headingComment p {
  margin: 0;
  color: var(--deep);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.85;
}

.contact__form--headingComment .sales-request {
  width: fit-content;
  margin: 18px auto 0;
  padding: 8px 16px;
  color: #c64536;
  background: #fff4f2;
  border: 1px solid #ffd3cc;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.contact__form--headingCaution {
  margin-top: 26px;
  padding: 18px 22px;
  background: #f5f9ff;
  border: 1px solid #d8e7fb;
  border-radius: 8px;
}

.contact__form--headingCaution p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.9;
}

.bg-red {
  display: inline-block;
  margin-right: 4px;
  padding: 2px 8px;
  color: #fff;
  background: #e4523d;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.4;
}

.company-outline {
  background: #f7fbff;
}

.outline {
  padding: 34px 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.outline__ttl {
  margin: 0 0 22px;
  color: var(--deep);
  font-size: 28px;
  font-weight: 950;
  line-height: 1.4;
}

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

.outline__dl--inner {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.outline dt {
  color: var(--deep);
  font-size: 14px;
  font-weight: 900;
}

.outline dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.site-footer {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  font-weight: 800;
}

.site-footer > small {
  color: var(--muted);
  font-size: 11px;
}

.cookieCaution__in {
  width: min(1088px, calc(100% - clamp(56px, 9.4vw, 112px)));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-inline: auto;
  padding: 22px 0;
}

.cookieCaution__text p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.8;
}

.cookieCaution__logo--list {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cookieCaution__logo--item img {
  width: auto;
  height: 46px;
  display: block;
  object-fit: contain;
}

.cookieCaution__logo--item:first-child img {
  width: 46px;
}

.footer__copy--links {
  width: min(1088px, calc(100% - clamp(56px, 9.4vw, 112px)));
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin: -8px auto 0;
  padding: 0 0 18px;
  list-style: none;
}

.footer__copy--link a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .hero,
  .agent-layout,
  .split,
  .comparison-layout,
  .cta {
    grid-template-columns: 1fr;
  }

  .cta {
    align-items: start;
  }

  .hero {
    min-height: 620px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(255, 255, 255, 0.8) 68%, rgba(255, 255, 255, 0.24) 100%),
      url("./assets/hero-ai-dashboard.png") right center / 88% auto no-repeat;
  }

  .hero-copy {
    max-width: 500px;
  }

  table {
    font-size: 11px;
  }

  th,
  td {
    padding: 8px 5px;
  }

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

  .flow-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .flow-row article {
    min-height: auto;
  }

  .flow-row article:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -16px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid var(--blue);
    border-bottom: 0;
    transform: translateX(-50%);
  }

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

  .strength-grid article {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strength-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .strength-item {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .strength-item figure {
    height: 300px;
  }

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

  .usecase-panel {
    padding: 30px 28px 26px;
  }

  .service-story::before {
    display: none;
  }

  .service-row,
  .service-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-row:nth-child(even) figure,
  .service-row:nth-child(even) .service-row-copy {
    order: initial;
  }

  .service-row figure,
  .service-row figure img {
    min-height: 300px;
  }

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

@media (max-width: 720px) {
  .site-footer,
  .inner {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: auto;
    padding: 14px;
    flex-wrap: wrap;
  }

  .header-actions {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 700px;
    padding: 32px 14px 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.99) 46%, rgba(255, 255, 255, 0.88) 68%, rgba(255, 255, 255, 0.34) 100%),
      url("./assets/hero-ai-dashboard.png") 68% 88% / 120% auto no-repeat;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.28;
  }

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

  table {
    font-size: 10px;
  }

  th,
  td {
    padding: 7px 4px;
  }

  .hero-points,
  .feature-grid,
  .strength-grid,
  .flow-row {
    grid-template-columns: 1fr;
  }

  .flow-row {
    gap: 22px;
  }

  .flow-row article {
    min-height: auto;
  }

  .flow-row article:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -16px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid var(--blue);
    border-bottom: 0;
    transform: translateX(-50%);
  }

  .flow-row h3 {
    font-size: 14px;
  }

  .faq_inner {
    padding: 18px;
  }

  .faq_title p {
    font-size: 17px;
  }

  .qa-6 summary {
    align-items: flex-start;
    padding: 14px 0;
  }

  .qa_left {
    align-items: flex-start;
  }

  .answer,
  .answer_note {
    padding-left: 0;
  }

  .usecase-panel {
    padding: 24px 18px 22px;
  }

  .usecase-panel > h3 {
    font-size: 21px;
  }

  .usecase-block,
  .usecase-effect {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .usecase-kpis {
    grid-template-columns: 1fr;
  }

  .usecase-kpis div {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid #cfe0f7;
  }

  .usecase-kpis div:first-child {
    border-top: 0;
  }

  .usecase-voice {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 18px;
  }

  .voice-comment strong {
    text-align: left;
  }

  .consultation {
    padding: 48px 0;
  }

  .form_outer {
    width: min(100% - 28px, 1180px);
    padding: 24px 18px;
  }

  .contact__form--headingComment p {
    font-size: 18px;
    line-height: 1.75;
  }

  .contact__form--headingComment .sales-request {
    width: 100%;
    border-radius: 8px;
  }

  .contact__form--headingCaution {
    padding: 16px;
  }

  .contact__form--headingCaution p {
    font-size: 13px;
  }

  .outline {
    padding: 24px 18px;
  }

  .outline__ttl {
    font-size: 24px;
  }

  .outline__dl--inner {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .benefit-kpi {
    grid-template-columns: 1fr;
  }

  .benefit-kpi article {
    min-height: 156px;
    padding: 18px;
  }

  .benefit-kpi-icon {
    width: 48px;
    height: 48px;
  }

  .benefit-kpi b {
    min-height: auto;
    font-size: 28px;
  }

  .benefit-kpi strong {
    font-size: 46px;
  }

  .strength-frame {
    padding: 52px 14px 14px;
  }

  .strength-frame-title {
    min-width: min(320px, calc(100% - 28px));
    padding: 9px 18px;
    font-size: 17px;
  }

  .strength-grid article {
    min-height: auto;
    padding: 18px 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .strength-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .strength-grid article:last-child {
    border-bottom: 0;
  }

  .strength-head {
    min-height: auto;
  }

  .strength-visual {
    height: 130px;
  }

  .strength-visual img {
    height: 100%;
  }

  .strength-item {
    padding: 18px;
  }

  .strength-item figure {
    height: 210px;
  }

  .strength-copy h3 {
    font-size: 23px;
  }

  .strength-copy b {
    width: 100%;
    font-size: 14px;
  }

  .output-heading {
    margin-bottom: 24px;
  }

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

  .output-list li {
    min-height: auto;
    padding: 18px;
  }

  .output-action .btn {
    width: 100%;
  }

  .service-heading {
    margin-bottom: 28px;
  }

  .service-row {
    padding-bottom: 28px;
  }

  .service-row figure,
  .service-row figure img {
    min-height: 210px;
  }

  .service-step {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    font-size: 13px;
  }

  .service-row h3 {
    font-size: 23px;
  }

  .service-row-copy p {
    font-size: 14px;
  }

  .problem-card {
    padding: 22px 16px;
  }

  .problem-list li {
    align-items: flex-start;
    gap: 14px;
    padding: 13px 14px;
    font-size: 15px;
  }

  .problem-list li > span {
    font-size: 22px;
  }

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

  .agent-map img {
    margin-inline: auto;
    order: -1;
  }

  .section {
    padding: 44px 0;
  }

  .cta {
    padding: 30px 20px;
  }

  .site-footer {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    margin-left: 0;
  }

  .cookieCaution__in {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cookieCaution__logo--list {
    justify-content: flex-start;
  }

  .cookieCaution__logo--item img {
    height: 40px;
  }

  .cookieCaution__logo--item:first-child img {
    width: 40px;
  }

  .footer__copy--links {
    width: min(100% - 28px, 1180px);
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
