@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Zen+Kaku+Gothic+New:wght@500;700;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-ink: #13202c;
  --c-ink-soft: #42505f;
  --c-ink-faint: #728091;
  --c-line: #d5dde6;
  --c-line-soft: #e7edf3;
  --c-bg: #f4f7fa;
  --c-surface: #ffffff;
  --c-surface-alt: #f0f4f8;
  --c-brand: #00205A;
  --c-brand-dark: #001843;
  --c-brand-soft: #e8f7ff;
  --c-accent: #00205A;
  --c-accent-2: #00ACFE;
  --c-warm: #b96918;
  --c-alert: #b34b32;
  --shadow-sm: 0 6px 18px rgba(0, 32, 90, 0.06);
  --shadow-md: 0 14px 36px rgba(0, 32, 90, 0.1);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --header-h: 88px;
  --container: 1180px;
  --font-base: 'Noto Sans JP', sans-serif;
  --font-display: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  --section-space: clamp(72px, 8vw, 112px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--c-ink);
  background:
    linear-gradient(90deg, rgba(19, 32, 44, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19, 32, 44, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #fbfcfd 0%, #f4f7fa 100%);
  background-size: 48px 48px, 48px 48px, auto;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

main {
  padding-top: var(--header-h);
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 40px);
}

.section {
  padding-block: var(--section-space);
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.section-heading-block {
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent-2);
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.84);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0;
  line-break: strict;
  text-wrap: balance;
}

.phrase {
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

.section-title-left,
.section-desc-left {
  text-align: left;
}

.section-desc {
  margin-top: 18px;
  font-size: 1.02rem;
  color: var(--c-ink-soft);
  line-break: strict;
  text-wrap: pretty;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #00ACFE 0%, var(--c-brand) 100%);
  color: #fff;
  border-color: var(--c-brand);
  box-shadow: 0 12px 26px rgba(0, 32, 90, 0.22);
}

.btn-primary:hover {
  background: var(--c-brand-dark);
  border-color: var(--c-brand-dark);
}

.btn-register {
  background: #f05a28;
  color: #fff;
  border-color: #f05a28;
  box-shadow: 0 12px 26px rgba(240, 90, 40, 0.28);
}

.btn-register:hover {
  background: #c93f16;
  border-color: #c93f16;
}

.btn-outline {
  color: var(--c-accent-2);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(0, 32, 90, 0.24);
}

.btn-outline:hover {
  background: var(--c-brand-soft);
}

.btn-sm {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-lg {
  min-height: 56px;
  padding: 14px 30px;
  font-size: 1.02rem;
}

#header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid rgba(215, 222, 231, 0.6);
  z-index: 100;
}

#header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 100%;
  padding-inline: clamp(20px, 4vw, 60px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  color: var(--c-ink);
}

.logo-img {
  display: block;
  width: auto;
  height: 54px;
}

#header .logo-img {
  height: 84px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  position: relative;
  font-size: 0.94rem;
  color: var(--c-ink-soft);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--c-accent-2);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.header-btns .btn-primary,
.mobile-nav-btns .btn-primary {
  background: linear-gradient(180deg, #00ACFE 0%, var(--c-brand) 100%);
  border-color: var(--c-brand);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 32, 90, 0.22);
}

.header-btns .btn-primary:hover,
.mobile-nav-btns .btn-primary:hover {
  background: var(--c-brand-dark);
  border-color: var(--c-brand-dark);
}

.header-btns .btn-outline,
.mobile-nav-btns .btn-outline {
  background: #fff;
  border-color: rgba(0, 32, 90, 0.24);
  color: var(--c-accent-2);
  box-shadow: 0 10px 22px rgba(0, 32, 90, 0.12);
}

.header-btns .btn-outline:hover,
.mobile-nav-btns .btn-outline:hover {
  background: #eef5fb;
  border-color: #eef5fb;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: calc(100vh - var(--header-h));
  padding: 24px 24px 40px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.24s ease;
  z-index: 99;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line-soft);
  font-size: 1.02rem;
  font-weight: 500;
}

.mobile-nav-group {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line-soft);
}

.mobile-nav-title {
  margin-bottom: 6px;
  color: var(--c-ink-faint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-nav-group a {
  padding: 12px 0;
  font-size: 0.95rem;
}

.mobile-nav-btns {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mobile-nav-btns .btn {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  border-bottom: 0;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 32, 51, 0.24);
  z-index: 98;
}

.mobile-overlay.open {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(780px, calc(100vh - var(--header-h) - 92px));
  padding-block: clamp(54px, 6vw, 78px);
  background:
    linear-gradient(115deg, rgba(18, 49, 79, 0.96) 0%, rgba(15, 63, 112, 0.92) 72%, rgba(244, 247, 250, 0) 72.2%),
    linear-gradient(180deg, #f8fbfd 0%, #edf3f8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0 46%, transparent 72%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  width: min(100%, 1580px);
  max-width: none;
  margin-inline: auto;
  padding-inline: clamp(18px, 2vw, 28px);
  grid-template-columns: 1fr;
  gap: clamp(28px, 3.5vw, 42px);
  align-items: start;
}

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

.hero-title {
  font-family: var(--font-display);
  max-width: 860px;
  font-size: clamp(2.55rem, 4.15vw, 3.75rem);
  line-height: 1.18;
  letter-spacing: 0;
  color: #fff;
  line-break: strict;
  text-wrap: balance;
}

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

.hero-lead {
  margin-top: 18px;
  max-width: 900px;
  width: auto;
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 700;
  color: #fff;
  line-break: strict;
  text-wrap: pretty;
  white-space: normal;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-btns-bottom {
  margin-top: 0;
}

.hero .btn-outline {
  background: #fff;
  border-color: #fff;
  color: var(--c-accent-2);
}

.hero .btn-outline:hover {
  background: #eef5fb;
  border-color: #eef5fb;
}

.hero-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #fff;
  line-break: strict;
  text-wrap: pretty;
}

.hero-flow {
  position: relative;
  width: 100%;
}

.hero-flow-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-flow-head p {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 800;
}

.hero-flow-track {
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(46px, 0.12fr) minmax(260px, 0.72fr) minmax(46px, 0.12fr) minmax(330px, 0.86fr);
  gap: clamp(12px, 1.4vw, 20px);
  align-items: stretch;
}

.hero-flow-group,
.hero-flow-hub {
  position: relative;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 44px rgba(5, 26, 48, 0.16);
  backdrop-filter: blur(14px);
}

.data-source-title,
.ai-output-label {
  display: block;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-flow-source {
  padding: 16px;
}

.hero-app-icons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.hero-app-icons div {
  display: grid;
  gap: 7px;
  justify-items: center;
  align-content: center;
  min-height: 104px;
  padding: 14px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-app-icons img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.hero-app-icons img.hero-app-icon-large {
  width: 58px;
  height: 58px;
}

.hero-app-icons img.hero-app-icon-maintenance {
  width: 70px;
  height: 60px;
  margin-block: -1px;
  object-fit: contain;
  object-position: center;
}

.hero-app-icons span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-ink-soft);
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

.hero-flow-line {
  position: relative;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, rgba(158, 210, 255, 0.1), rgba(158, 210, 255, 0.9));
}

.hero-flow-line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(158, 210, 255, 0.9);
  border-right: 2px solid rgba(158, 210, 255, 0.9);
  transform: translateY(-50%) rotate(45deg);
}

.hero-flow-hub {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 176px;
  height: 176px;
  padding: 12px 16px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 186, 52, 0.22), transparent 52%),
    rgba(255, 255, 255, 0.14);
}

.hero-flow-hub img {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 280px;
  height: 280px;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: drop-shadow(0 16px 28px rgba(230, 157, 28, 0.22));
}

.hero-flow-hub strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  align-self: end;
  margin-top: 96px;
  font-size: 1.02rem;
  line-height: 1.3;
  color: #fff;
}

.hero-flow-hub p {
  position: relative;
  z-index: 1;
  margin-top: 2px;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.55;
}

.hero-flow-ai {
  padding: 20px;
  background: rgba(6, 25, 45, 0.58);
}

.hero-flow-ai * {
  color: #fff;
}

.hero-flow-ai ul {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hero-flow-ai li {
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}

.issues {
  background: #fff;
}

.issues .container {
  width: min(100%, 1380px);
  max-width: none;
  padding-inline: clamp(24px, 5vw, 72px);
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 32px);
}

.issue-card {
  position: relative;
  min-height: 220px;
  padding: 32px 30px;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff 0%, #f9fbfc 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.issue-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--c-brand);
}

.issue-card h3 {
  font-size: clamp(1.18rem, 1.35vw, 1.34rem);
  line-height: 1.35;
  margin-bottom: 14px;
}

.issue-card p {
  color: var(--c-ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.issue-core {
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 4px solid var(--c-warm);
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, #fff7ec 0%, #ffffff 100%);
}

.issue-core-label {
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--c-warm);
}

.issue-core-text {
  color: var(--c-ink);
  font-weight: 500;
}

.solution {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(0, 172, 254, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 34% 68%, rgba(0, 172, 254, 0.24) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 28%, rgba(0, 32, 90, 0.16) 0 2px, transparent 3px),
    linear-gradient(135deg, #f7fbff 0%, #eef8ff 48%, #ffffff 100%);
}

.solution .container {
  width: min(100%, 1520px);
  max-width: none;
  padding-inline: clamp(24px, 4.5vw, 88px);
}

.solution-inner {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(520px, 0.85fr);
  gap: clamp(36px, 4.5vw, 80px);
  align-items: start;
}

.solution-points {
  display: grid;
  gap: 20px;
}

.point-card {
  padding: 30px 32px 28px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--c-line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.point-card:hover,
.feature-card:hover,
.work-flow-card:hover,
.benefit-card:hover,
.step-card:hover,
.flow-step-card:hover,
.stack-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.point-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.28rem, 1.5vw, 1.48rem);
  line-height: 1.35;
}

.point-card p {
  color: var(--c-ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.structure {
  background: #fff;
}

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

.stack-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border: 1px solid var(--c-line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stack-card-accent {
  background: linear-gradient(180deg, #f4fbf8 0%, #e9f5f1 100%);
}

.stack-head h3 {
  margin-top: 12px;
  font-size: 1.4rem;
}

.stack-head p {
  margin-top: 10px;
  color: var(--c-ink-soft);
}

.stack-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(0, 32, 90, 0.1);
  color: var(--c-accent-2);
  font-size: 0.8rem;
  font-weight: 700;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip-list li {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--c-line);
  font-size: 0.93rem;
  font-weight: 500;
}

.integration-note {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, var(--c-accent) 0%, #003577 62%, var(--c-accent-2) 100%);
  color: #fff;
}

.integration-note strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.02rem;
}

.features {
  background: #f4f7fa;
}

.features .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(24px, 5vw, 72px);
}

.feature-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.feature-group {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--c-line-soft);
  box-shadow: var(--shadow-sm);
}

.feature-group-head h3 {
  font-size: 1.35rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.feature-card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid var(--c-line-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card::before {
  content: none;
}

.feature-icon-img {
  width: 112px;
  height: 112px;
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}

.feature-icon-img-wide {
  width: 140px;
  height: 112px;
  object-fit: contain;
  object-position: center;
}

.feature-icon-img-maintenance {
  width: 112px;
  height: 112px;
  margin: 0 0 16px 0;
  object-fit: contain;
  object-position: center;
}

.feature-card h4 {
  font-size: 1.02rem;
  line-break: strict;
  text-wrap: balance;
}

.feature-card p {
  margin-top: 8px;
  color: var(--c-ink-soft);
  font-size: 0.94rem;
  line-break: strict;
  text-wrap: pretty;
}

.flow {
  background: #fff;
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.flow-step-card {
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--c-line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flow-index {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--c-accent-2);
  font-weight: 700;
  font-size: 0.82rem;
}

.flow-step-card h3 {
  font-size: 1.22rem;
}

.flow-step-card p {
  margin-top: 10px;
  color: var(--c-ink-soft);
}

.flow-connector {
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 32, 90, 0.18), rgba(0, 32, 90, 0.72));
}

.flow-result {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.flow-result-item {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: #e9f4ff;
  color: var(--c-accent-2);
  font-weight: 700;
}

.impact {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #00205A 0%, #003577 58%, #005f9a 100%);
  background-size: 54px 54px, 54px 54px, auto;
  color: #fff;
}

.impact .section-kicker,
.impact .section-title,
.impact .section-desc {
  color: inherit;
}

.impact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

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

.impact-card {
  padding: 24px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.impact-icon-img {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  object-fit: contain;
}

.impact-value {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
}

.impact-label {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.work-flow {
  background: #fff;
}

.work-flow .container,
.benefits .container {
  width: min(100%, 1440px);
  max-width: none;
  padding-inline: clamp(24px, 5vw, 72px);
}

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

.work-flow-card,
.benefit-card {
  position: relative;
  min-height: 100%;
  padding: 26px 22px;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.work-flow-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--c-accent-2);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.work-flow-card h3,
.benefit-card h3 {
  font-size: clamp(1.1rem, 1.25vw, 1.28rem);
  line-height: 1.35;
  text-wrap: balance;
}

.work-flow-card p,
.benefit-card p {
  margin-top: 10px;
  color: var(--c-ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.benefits {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #00205A 0%, #003577 58%, #005f9a 100%);
  background-size: 54px 54px, 54px 54px, auto;
  color: #fff;
}

.benefits .section-title {
  color: #fff;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(5, 26, 48, 0.18);
}

.benefit-card h3 {
  color: #fff;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.78);
}
.pricing {
  background: #fff;
}

.pricing-card {
  padding: 28px;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
  box-shadow: var(--shadow-md);
}

.pricing-summary {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 16px;
}

.pricing-main {
  min-height: 100%;
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--c-accent) 0%, var(--c-brand-dark) 100%);
  color: #fff;
}

.pricing-main-light {
  background: #fff;
  color: var(--c-ink);
  border: 1px solid var(--c-line-soft);
}

.pricing-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.pricing-main-light .pricing-label {
  color: var(--c-accent-2);
}

.pricing-price {
  margin-top: 12px;
  font-size: 1.05rem;
  font-weight: 700;
}

.pricing-price span {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.pricing-unit {
  margin-top: 6px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
}

.pricing-main-light .pricing-unit {
  color: var(--c-ink-soft);
}

.pricing-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.65;
}

.pricing-main-light .pricing-note {
  color: var(--c-ink-soft);
}

.pricing-included {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-top: 12px;
}

.pricing-included span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
}

.pricing-included span:not(:last-child)::after {
  content: " /";
  color: rgba(255, 255, 255, 0.42);
}

.pricing-breakdown {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  margin-top: 20px;
}

.pricing-block {
  padding: 22px;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
}

.pricing-block-accent {
  background: linear-gradient(180deg, #f4fbf8 0%, #ffffff 100%);
}

.pricing-block-head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.pricing-block-head h3 {
  font-size: 1.18rem;
}

.pricing-block-head p {
  color: var(--c-ink-soft);
  font-size: 0.92rem;
  line-break: strict;
  text-wrap: pretty;
}

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

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-sm);
  background: #fff;
}

.price-list span {
  color: var(--c-ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  line-break: strict;
  text-wrap: balance;
}

.price-name-long {
  word-break: keep-all;
}

.price-list strong {
  color: var(--c-ink);
  font-size: 0.9rem;
  white-space: nowrap;
}

.price-list-apps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
}

.price-list-apps div {
  border-color: rgba(0, 172, 254, 0.16);
}

.price-list-apps strong {
  color: var(--c-accent-2);
}

.pricing-options {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 34px 30px 30px;
  border: 2px solid rgba(0, 32, 90, 0.28);
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, rgba(0, 32, 90, 0.14) 0 8px, transparent 8px),
    linear-gradient(135deg, rgba(0, 32, 90, 0.12) 0%, rgba(0, 172, 254, 0.06) 42%, #ffffff 74%);
  box-shadow: 0 20px 48px rgba(0, 32, 90, 0.16);
}

.pricing-options::before {
  content: "OPTION";
  position: absolute;
  top: 0;
  left: 30px;
  padding: 6px 14px 7px;
  border-radius: 0 0 8px 8px;
  background: var(--c-accent-2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pricing-options .pricing-block-head {
  margin-top: 4px;
  margin-bottom: 20px;
}

.pricing-options .pricing-block-head h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #00205A;
  font-size: clamp(1.28rem, 1.5vw, 1.48rem);
  line-height: 1.3;
}

.pricing-options .pricing-block-head h3::before {
  content: "";
  width: 10px;
  height: 28px;
  border-radius: 999px;
  background: var(--c-accent-2);
}

.pricing-options .pricing-block-head p {
  max-width: 60ch;
  font-size: 1rem;
  font-weight: 700;
  color: #1f3f68;
}

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

.option-card {
  position: relative;
  display: grid;
  gap: 0;
  min-height: 100%;
  padding: 24px 22px 22px;
  border: 1px solid rgba(0, 32, 90, 0.18);
  border-top: 5px solid var(--c-accent-2);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}

.option-card::before {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--c-accent-2);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.option-card:nth-child(1)::before {
  content: "01";
}

.option-card:nth-child(2)::before {
  content: "02";
}

.option-card h4 {
  color: #00205A;
  font-size: 1.12rem;
  line-height: 1.45;
  text-wrap: balance;
}

.option-card strong {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 32, 90, 0.12);
  color: var(--c-accent-2);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.5;
}

.option-card p {
  margin-top: 10px;
  color: var(--c-ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
  text-wrap: pretty;
}
.pricing-connection {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(0, 172, 254, 0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #f4fbf8 0%, #ffffff 100%);
}

.connection-box {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(0, 172, 254, 0.18);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
}

.connection-price {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 172, 254, 0.08);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--c-accent-2);
}

.connection-box p {
  margin-top: 8px;
  color: var(--c-ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.pricing-small-note {
  margin-top: 12px;
  color: var(--c-ink-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

.pricing-ai-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: #00205A;
  color: #fff;
}

.pricing-ai-note strong {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
}

.pricing-ai-note span {
  color: #fff;
  font-size: 0.95rem;
  line-break: strict;
  text-wrap: pretty;
}

.pricing-card {
  position: static;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}


.pricing-summary {
  margin-top: 6px;
}

.pricing-main {
  position: relative;
  overflow: hidden;
  padding: 34px 28px 28px;
  border: 1px solid rgba(0, 32, 90, 0.22);
  border-top: 5px solid var(--c-accent-2);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, #00205A 0%, #003577 58%, #005f9a 100%);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
}

.pricing-main::before {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 5px 12px 6px;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.pricing-summary .pricing-main:nth-child(1)::before {
  content: "BASIC";
}

.pricing-summary .pricing-main:nth-child(2)::before {
  content: "APPS";
}

.pricing-main-light {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 18px 40px rgba(0, 32, 90, 0.1);
}

.pricing-label {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.86rem;
}

.pricing-main-light .pricing-label {
  background: rgba(0, 32, 90, 0.1);
  color: var(--c-accent-2);
}

.pricing-price {
  margin-top: 16px;
}

.pricing-main-light .pricing-price,
.pricing-main-light .pricing-note,
.pricing-main-light .pricing-unit {
  color: #00205A;
}

.pricing-block {
  position: relative;
  overflow: hidden;
  padding: 34px 24px 24px;
  border: 1px solid rgba(0, 32, 90, 0.18);
  border-top: 5px solid var(--c-accent-2);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}

.pricing-block::before {
  position: absolute;
  top: 0;
  left: 24px;
  padding: 5px 12px 6px;
  border-radius: 0 0 8px 8px;
  background: var(--c-accent-2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.pricing-breakdown .pricing-block:nth-child(1)::before {
  content: "BASIC MENU";
}

.pricing-breakdown .pricing-block:nth-child(2)::before {
  content: "APP MENU";
}

.pricing-breakdown-apps {
  grid-template-columns: minmax(0, 1fr);
}

.pricing-breakdown-apps .pricing-block::before {
  content: "APP MENU";
}

.pricing-block-accent {
  border-color: rgba(0, 172, 254, 0.22);
  border-top-color: var(--c-accent-2);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf8 100%);
}

.pricing-block-head h3 {
  color: #00205A;
  font-size: clamp(1.2rem, 1.35vw, 1.36rem);
  line-height: 1.35;
}

.pricing-block-head p {
  font-weight: 700;
  color: #1f3f68;
}

.price-list div {
  border-color: rgba(0, 32, 90, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.035);
}

.price-list strong {
  display: inline-flex;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 32, 90, 0.1);
  color: var(--c-accent-2);
  font-weight: 800;
}

.price-list-apps div {
  border-color: rgba(0, 172, 254, 0.16);
}

.pricing-connection {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 34px 30px 30px;
  border: 2px solid rgba(0, 172, 254, 0.26);
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, rgba(0, 172, 254, 0.14) 0 8px, transparent 8px),
    linear-gradient(135deg, rgba(0, 172, 254, 0.12) 0%, rgba(0, 32, 90, 0.05) 42%, #ffffff 74%);
  box-shadow: 0 20px 48px rgba(0, 172, 254, 0.14);
}

.pricing-connection::before {
  content: "CONNECT";
  position: absolute;
  top: 0;
  left: 30px;
  padding: 6px 14px 7px;
  border-radius: 0 0 8px 8px;
  background: var(--c-accent-2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pricing-connection .pricing-block-head {
  margin-top: 4px;
}

.connection-box {
  border: 1px solid rgba(0, 172, 254, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf8 100%);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}

.connection-price {
  padding: 6px 12px;
  background: rgba(0, 172, 254, 0.12);
}

.pricing-ai-note {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.18);
}

.steps {
  background: #f4f7fa;
}

.steps .container {
  width: min(100%, 1440px);
  max-width: none;
  padding-inline: clamp(24px, 5vw, 72px);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 28px);
}

.step-card {
  position: relative;
  min-height: 250px;
  padding: 32px 30px 34px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--c-line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-brand), var(--c-accent-2));
}

.step-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--c-accent-2);
  font-size: 0.9rem;
  font-weight: 700;
}

.step-card h3 {
  font-size: clamp(1.24rem, 1.45vw, 1.42rem);
  line-height: 1.35;
  line-break: strict;
  text-wrap: balance;
}

.step-card p {
  margin-top: 14px;
  color: var(--c-ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  line-break: strict;
  text-wrap: pretty;
}

.cta {
  background:
    linear-gradient(135deg, #00205A 0%, #00205A 58%, #00ACFE 100%);
  color: #fff;
}

.cta .container {
  width: min(100%, 1440px);
  max-width: none;
  padding-inline: clamp(24px, 5vw, 72px);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, auto);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.28;
  line-break: strict;
  text-wrap: balance;
}

.cta-desc {
  margin-top: 16px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  line-break: strict;
  text-wrap: pretty;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cta .btn-primary {
  background: linear-gradient(180deg, #00ACFE 0%, var(--c-brand) 100%);
  border-color: var(--c-brand);
  color: #fff;
}

.cta .btn-primary:hover {
  background: var(--c-brand-dark);
  border-color: var(--c-brand-dark);
}

.cta .btn-outline {
  background: #fff;
  border-color: #fff;
  color: var(--c-accent-2);
}

.cta .btn-outline:hover {
  background: #eef5fb;
  border-color: #eef5fb;
}

#footer {
  background: #ffffff;
  color: rgba(0, 0, 0, 0.55);
  padding-top: 40px;
  border-top: 1px solid var(--c-line);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) repeat(2, minmax(170px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 32px;
}

.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: -24px;
}

.footer-brand .logo-img {
  height: 104px;
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  color: var(--c-ink);
}

.footer-text {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #000;
}

.footer-company {
  margin-bottom: 12px;
  font-size: 13px;
  color: #000;
}

.footer-company strong {
  color: #000;
}

.footer-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-tel-icon {
  width: auto;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.footer-tel-number {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #000;
}

.footer-address {
  margin-bottom: 14px;
  font-style: normal;
  font-size: 13px;
  line-height: 2;
  color: #000;
}

.footer-nav-title {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-nav a {
  display: inline-block;
  white-space: nowrap;
  font-size: 14px;
  line-height: 2.2;
  color: #000;
}

.footer-nav a:hover {
  opacity: 0.6;
}

.footer-privacy-icon {
  display: flex;
  justify-content: center;
  padding-block: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-privacy-icon img {
  width: auto;
  height: 80px;
  display: block;
  opacity: 0.85;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-block: 14px;
}

.footer-bottom p {
  font-size: 13px;
  color: #000;
  text-align: center;
}

.legal-hero {
  padding-block: clamp(80px, 10vw, 128px) clamp(36px, 6vw, 64px);
  background:
    linear-gradient(90deg, rgba(19, 32, 44, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19, 32, 44, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbfd 0%, #eef3f8 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.legal-section {
  background: #fff;
}

.legal-content {
  max-width: 920px;
  min-height: 280px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-content p {
  color: var(--c-ink-soft);
  font-size: 1.02rem;
}

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

.legal-content h2 {
  margin-top: 28px;
  padding-top: 6px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 1.12rem;
  line-height: 1.5;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-left: 1.35em;
  color: var(--c-ink-soft);
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  padding-left: 0.2em;
}

.legal-content hr {
  height: 1px;
  margin: 28px 0;
  border: 0;
  background: var(--c-line-soft);
}

.legal-table {
  display: grid;
  margin-top: 16px;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.legal-table > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--c-line-soft);
}

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

.legal-table dt,
.legal-table dd {
  padding: 16px 18px;
}

.legal-table dt {
  background: #f4f7fa;
  color: var(--c-ink);
  font-weight: 800;
}

.legal-table dd {
  color: var(--c-ink-soft);
}

.legal-table dd p + p,
.legal-table dd ul + p {
  margin-top: 12px;
}

/* Card detail refinements */
.issue-card,
.point-card,
.stack-card,
.feature-card,
.flow-step-card,
.work-flow-card,
.benefit-card,
.step-card,
.pricing-main,
.pricing-block,
.pricing-options,
.option-card,
.pricing-connection,
.connection-box,
.legal-content {
  border-color: rgba(0, 32, 90, 0.12);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 32, 90, 0.06);
}

.issue-card,
.point-card,
.stack-card,
.feature-card,
.flow-step-card,
.work-flow-card,
.step-card,
.pricing-block,
.option-card,
.connection-box,
.legal-content {
  background: #fff;
}

.issue-card::before,
.feature-card::before,
.step-card::after,
.pricing-options::before,
.pricing-main::before,
.pricing-block::before,
.pricing-connection::before,
.option-card::before {
  display: none;
  content: none;
}

.issue-card,
.point-card,
.stack-card,
.feature-card,
.flow-step-card,
.work-flow-card,
.step-card,
.pricing-block,
.option-card,
.connection-box {
  border-left: 4px solid rgba(0, 172, 254, 0.72);
}

.issue-card:hover,
.point-card:hover,
.feature-card:hover,
.work-flow-card:hover,
.benefit-card:hover,
.step-card:hover,
.flow-step-card:hover,
.stack-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 32, 90, 0.1);
}

.point-card h3,
.stack-card h3,
.feature-card h4,
.flow-step-card h3,
.work-flow-card h3,
.benefit-card h3,
.step-card h3,
.pricing-block-head h3,
.option-card h4 {
  color: var(--c-brand);
  font-weight: 800;
}

.section-kicker,
.flow-index,
.step-index,
.work-flow-card span,
.stack-label,
.pricing-main-light .pricing-label,
.price-list strong,
.option-card strong,
.connection-price {
  color: var(--c-brand);
}

.btn-primary,
.mobile-nav-btns .btn-primary,
.cta .btn-primary {
  background: var(--c-brand);
  border-color: var(--c-brand);
  box-shadow: 0 10px 22px rgba(0, 32, 90, 0.16);
}

.btn-primary:hover,
.mobile-nav-btns .btn-primary:hover,
.cta .btn-primary:hover {
  background: #001843;
  border-color: #001843;
}

.btn-outline,
.mobile-nav-btns .btn-outline,
.cta .btn-outline {
  color: var(--c-brand);
  border-color: rgba(0, 32, 90, 0.18);
}

.pricing-main {
  border-top: 4px solid var(--c-accent-2);
  background: var(--c-brand);
}

.pricing-main-light {
  background: #fff;
}

.pricing-label,
.pricing-main-light .pricing-label,
.option-card strong,
.connection-price,
.price-list strong {
  border-radius: 6px;
  background: rgba(0, 172, 254, 0.1);
}

.pricing-options,
.pricing-connection {
  padding: 28px;
  border: 1px solid rgba(0, 32, 90, 0.14);
  border-left: 5px solid var(--c-accent-2);
  background: #fff;
}

.pricing-options .pricing-block-head,
.pricing-connection .pricing-block-head {
  margin-top: 0;
}

.pricing-options .pricing-block-head h3::before {
  width: 4px;
  height: 1.35em;
  border-radius: 999px;
  background: var(--c-accent-2);
}

.price-list div {
  border-color: rgba(0, 32, 90, 0.1);
  border-left: 3px solid rgba(0, 172, 254, 0.52);
  background: #fff;
  box-shadow: none;
}

.benefits,
.impact,
.cta {
  background:
    linear-gradient(135deg, #00205A 0%, #003577 72%, #005f9a 100%);
}

.benefit-card,
.impact-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.hero,
.hero-flow {
  color: #fff;
}

/* Reduce visible card usage */
.issue-card,
.point-card,
.stack-card,
.feature-group,
.feature-card,
.flow-step-card,
.work-flow-card,
.benefit-card,
.step-card {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.issue-card,
.point-card,
.stack-card,
.feature-card,
.flow-step-card,
.work-flow-card,
.step-card {
  border: 0;
  border-left: 0;
}

.issue-grid,
.solution-points,
.structure-grid,
.feature-grid,
.work-flow-grid,
.benefit-grid,
.step-grid {
  gap: 0;
}

.issue-card {
  min-height: auto;
  padding: 6px 28px 28px 0;
  border-top: 1px solid rgba(0, 32, 90, 0.14);
}

.issue-card h3,
.point-card h3,
.work-flow-card h3,
.step-card h3 {
  position: relative;
  padding-left: 16px;
}

.issue-card h3::before,
.point-card h3::before,
.work-flow-card h3::before,
.step-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 4px;
  height: 1em;
  background: var(--c-accent-2);
}

.issue-core {
  border-radius: 0;
  background: transparent;
  border-left-color: var(--c-accent-2);
}

.solution-points {
  border-top: 1px solid rgba(0, 32, 90, 0.14);
}

.point-card {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 32, 90, 0.14);
}

.structure-grid {
  border-top: 1px solid rgba(0, 32, 90, 0.14);
}

.stack-card {
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 32, 90, 0.14);
}

.stack-card + .stack-card {
  padding-left: 28px;
  border-left: 1px solid rgba(0, 32, 90, 0.14);
}

.stack-badge,
.flow-result-item,
.pricing-label,
.option-card strong,
.connection-price,
.price-list strong {
  border-radius: 3px;
}

.feature-group {
  padding: 0;
  border: 0;
}

.feature-group-head {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-brand);
}

.feature-grid {
  margin-top: 0;
  border-top: 0;
}

.feature-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 32, 90, 0.12);
}

.feature-icon-img,
.feature-icon-img-wide,
.feature-icon-img-maintenance {
  width: 64px;
  height: 64px;
  margin: 0;
  grid-row: span 2;
}

.feature-card p {
  margin-top: 4px;
}

.feature-etc {
  margin-top: 18px;
  padding-top: 16px;
  color: var(--c-ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.8;
}

.flow-track {
  gap: 0;
  align-items: stretch;
}

.flow-step-card {
  padding: 0 18px 0 0;
  border-right: 1px solid rgba(0, 32, 90, 0.14);
}

.flow-step-card:last-of-type {
  border-right: 0;
}

.flow-connector {
  opacity: 0;
}

.work-flow-grid {
  border-top: 1px solid rgba(0, 32, 90, 0.14);
}

.work-flow-card {
  padding: 24px 18px 24px 0;
  border-bottom: 1px solid rgba(0, 32, 90, 0.14);
}

.work-flow-card span {
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.benefit-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.benefit-card {
  padding: 22px 18px 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
}

.pricing-summary,
.pricing-breakdown,
.option-grid {
  gap: 18px;
}

.pricing-block,
.pricing-options,
.pricing-connection {
  box-shadow: none;
}

.option-card,
.connection-box {
  box-shadow: none;
  background: #fff;
}

.step-grid {
  border-top: 1px solid rgba(0, 32, 90, 0.14);
}

.step-card {
  min-height: auto;
  padding: 26px 22px 26px 0;
  border-bottom: 1px solid rgba(0, 32, 90, 0.14);
}

.issue-card:hover,
.point-card:hover,
.feature-card:hover,
.work-flow-card:hover,
.benefit-card:hover,
.step-card:hover,
.flow-step-card:hover,
.stack-card:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 960px) {
  .hero-title,
  .hero-lead,
  .section-title,
  .section-desc,
  .issue-card h3,
  .issue-card p,
  .point-card h3,
  .point-card p,
  .work-flow-card h3,
  .work-flow-card p,
  .benefit-card h3,
  .benefit-card p,
  .feature-card h4,
  .feature-card p,
  .pricing-block-head h3,
  .pricing-block-head p,
  .option-card h4,
  .option-card p,
  .pricing-ai-note span,
  .step-card h3,
  .step-card p,
  .cta-desc,
  .footer-text {
    word-break: auto-phrase;
    overflow-wrap: normal;
  }

  .hero-lead br,
  .section-desc br,
  .issue-card p br,
  .point-card p br,
  .work-flow-card p br,
  .feature-card p br,
  .pricing-block-head p br,
  .option-card p br,
  .step-card p br,
  .cta-desc br,
  .footer-text br {
    display: none;
  }

  .feature-card {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 14px;
  }

  .feature-icon-img,
  .feature-icon-img-wide,
  .feature-icon-img-maintenance {
    width: 52px;
    height: 52px;
  }

  .stack-card + .stack-card,
  .flow-step-card {
    padding-left: 0;
    border-left: 0;
    border-right: 0;
  }
}
/* Final de-card treatment */
.feature-groups {
  gap: clamp(34px, 4vw, 56px);
}

.pricing-main,
.pricing-block,
.pricing-options,
.pricing-connection {
  border-radius: 0;
}

.pricing-main {
  box-shadow: none;
}

.pricing-main-light {
  border: 1px solid rgba(0, 32, 90, 0.14);
}

.pricing-block,
.pricing-options,
.pricing-connection {
  padding-inline: 0;
  border-top: 1px solid rgba(0, 32, 90, 0.14);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
}

.pricing-block-head {
  margin-bottom: 14px;
}

.option-card,
.connection-box {
  padding: 18px 0;
  border: 0;
  border-top: 1px solid rgba(0, 32, 90, 0.12);
  border-radius: 0;
}

.option-card strong,
.connection-price,
.price-list strong,
.pricing-label,
.stack-badge,
.flow-result-item {
  background: transparent;
  padding-inline: 0;
}

.price-list div {
  min-height: auto;
  padding: 12px 0;
  border-top: 1px solid rgba(0, 32, 90, 0.1);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.price-list div:first-child {
  border-top: 0;
}

.price-list-apps div:nth-child(5) {
  border-top: 0;
}

.price-list-apps div:nth-child(4),
.price-list-apps div:nth-child(8) {
  border-bottom: 1px solid rgba(0, 32, 90, 0.1);
}

@media (max-width: 640px) {
  .point-card,
  .stack-card,
  .step-card,
  .issue-card {
    padding-left: 0;
    padding-right: 0;
  }
}
/* Pricing option emphasis */
.pricing-options {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 0;
  margin-top: 38px;
  padding: 0;
  border: 1px solid rgba(0, 32, 90, 0.16);
  border-top: 5px solid var(--c-accent-2);
  background: #fff;
}

.pricing-options .pricing-block-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 30px 28px;
  border: 0;
  background: var(--c-brand);
  color: #fff;
}

.pricing-options .pricing-block-head::before {
  content: "拡張メニュー";
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pricing-options .pricing-block-head h3 {
  width: auto;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: clamp(1.42rem, 1.9vw, 1.8rem);
  line-height: 1.32;
  letter-spacing: 0.02em;
}

.pricing-options .pricing-block-head h3::before {
  display: none;
}

.pricing-options .pricing-block-head p {
  max-width: 18em;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 18px 28px;
  border-top: 0;
}

.option-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(190px, 0.85fr) minmax(0, 1.45fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 32, 90, 0.12);
  border-bottom: 0;
}

.option-card:first-child {
  border-top: 0;
}

.option-card + .option-card {
  padding-left: 0;
  border-left: 0;
}

.option-card h4 {
  color: var(--c-brand);
  font-size: 1.06rem;
  line-height: 1.55;
}

.option-card strong {
  margin-top: 0;
  padding: 0;
  border-bottom: 0;
  color: var(--c-brand);
  font-size: 0.95rem;
  line-height: 1.55;
}

.option-card p {
  margin-top: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .pricing-options {
    grid-template-columns: 1fr;
  }

  .pricing-options .pricing-block-head {
    padding: 24px 20px;
  }

  .pricing-options .pricing-block-head p {
    max-width: none;
  }

  .option-grid {
    padding: 8px 20px 18px;
  }

  .option-card {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Sugoyama connection diagram */
.pricing-connection {
  margin-top: 34px;
  padding: 0;
  border: 0;
  background: transparent;
}

.pricing-connection .pricing-block-head {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 32, 90, 0.18);
}

.pricing-connection .pricing-block-head h3 {
  color: var(--c-brand);
}

.connection-box {
  padding: 0;
  border: 0;
  background: transparent;
}

.connection-diagram {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) 96px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 20px 0 18px;
  border-top: 2px solid var(--c-brand);
  border-bottom: 1px solid rgba(0, 32, 90, 0.14);
}

.connection-source {
  padding: 18px 20px;
  border: 1px solid rgba(0, 32, 90, 0.16);
  background: #fff;
}

.connection-source span {
  display: block;
  color: var(--c-ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.connection-source strong {
  display: block;
  margin-top: 8px;
  color: var(--c-brand);
  font-size: 1.05rem;
  line-height: 1.5;
}

.connection-link {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 80px;
}

.connection-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: var(--c-accent-2);
}

.connection-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--c-accent-2);
  border-right: 2px solid var(--c-accent-2);
  transform: rotate(45deg);
}

.connection-link span {
  position: relative;
  z-index: 1;
  padding: 3px 8px;
  background: #fff;
  color: var(--c-brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.connection-app-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 14px;
}

.connection-app-item {
  position: relative;
  min-height: 54px;
  padding: 12px 10px 10px 28px;
  border-bottom: 1px solid rgba(0, 32, 90, 0.14);
  background: linear-gradient(180deg, rgba(0, 172, 254, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
}

.connection-app-item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--c-accent-2);
  border-radius: 50%;
}

.connection-app-item span {
  display: block;
  color: var(--c-brand);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
}

.connection-price {
  margin-top: 14px;
}

@media (max-width: 960px) {
  .connection-diagram {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .connection-link {
    min-height: 36px;
  }

  .connection-link::before {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .connection-link::after {
    right: auto;
    left: calc(50% - 5px);
    top: auto;
    bottom: 0;
    transform: rotate(135deg);
  }

  .connection-app-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Pricing list hierarchy */
.price-list span {
  color: var(--c-brand);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.price-list strong {
  color: var(--c-ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
}

.price-list-apps span {
  font-size: 1.04rem;
}

.price-list-apps strong {
  color: var(--c-ink-soft);
}

@media (max-width: 640px) {
  .price-list span {
    font-size: 0.98rem;
  }

  .price-list strong {
    font-size: 0.82rem;
  }
}
/* CTA geometric IoT background */
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 172, 254, 0.46) 0 120px, transparent 260px),
    radial-gradient(circle at 94% 82%, rgba(0, 172, 254, 0.26) 0 90px, transparent 230px),
    linear-gradient(135deg, #001843 0%, #00205A 48%, #005f9a 100%);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(30deg, transparent 0 46%, rgba(0, 172, 254, 0.2) 46.1% 46.5%, transparent 46.7%),
    linear-gradient(150deg, transparent 0 58%, rgba(255, 255, 255, 0.16) 58.1% 58.45%, transparent 58.7%);
  background-size: 48px 48px, 48px 48px, auto, auto;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.45) 34%, #000 100%);
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  right: clamp(-140px, -7vw, -50px);
  top: 50%;
  width: min(70vw, 860px);
  aspect-ratio: 1.35;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 10% 44%, #00ACFE 0 6px, transparent 7px),
    radial-gradient(circle at 23% 20%, rgba(255, 255, 255, 0.94) 0 4px, transparent 5px),
    radial-gradient(circle at 30% 72%, #00ACFE 0 5px, transparent 6px),
    radial-gradient(circle at 45% 36%, rgba(255, 255, 255, 0.86) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 66%, #00ACFE 0 6px, transparent 7px),
    radial-gradient(circle at 73% 26%, rgba(255, 255, 255, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 88% 58%, #00ACFE 0 6px, transparent 7px),
    linear-gradient(24deg, transparent 0 24%, rgba(0, 172, 254, 0.62) 24.1% 24.65%, transparent 24.9%),
    linear-gradient(146deg, transparent 0 31%, rgba(255, 255, 255, 0.32) 31.1% 31.65%, transparent 31.9%),
    linear-gradient(4deg, transparent 0 47%, rgba(0, 172, 254, 0.42) 47.1% 47.55%, transparent 47.8%),
    linear-gradient(87deg, transparent 0 62%, rgba(255, 255, 255, 0.24) 62.1% 62.55%, transparent 62.8%),
    linear-gradient(126deg, transparent 0 72%, rgba(0, 172, 254, 0.5) 72.1% 72.6%, transparent 72.85%);
  filter: drop-shadow(0 0 18px rgba(0, 172, 254, 0.28));
  opacity: 0.78;
  pointer-events: none;
}

.cta-inner::before {
  content: "";
  position: absolute;
  right: min(36vw, 440px);
  top: 50%;
  width: 1px;
  height: 78%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.36), transparent);
}

.cta .container,
.cta-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .cta::before {
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 34%, #000 100%);
  }

  .cta::after {
    right: -260px;
    width: 720px;
    opacity: 0.36;
  }

  .cta-inner::before {
    display: none;
  }
}
/* Consultation buttons */
a.btn[href*="type=導入相談"] {
  background: #00ACFE;
  border-color: #00ACFE;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 172, 254, 0.22);
}

a.btn[href*="type=導入相談"]:hover {
  background: #0096df;
  border-color: #0096df;
}
/* Benefits readability */
.benefits {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #00205A 0%, #003577 66%, #005f9a 100%);
  color: #fff;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 18%, rgba(255, 255, 255, 0.08) 18.1% 28%, transparent 28.1%),
    linear-gradient(118deg, transparent 0 46%, rgba(0, 172, 254, 0.18) 46.1% 58%, transparent 58.1%),
    linear-gradient(118deg, transparent 0 72%, rgba(255, 255, 255, 0.07) 72.1% 82%, transparent 82.1%),
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 28px);
  opacity: 0.9;
  pointer-events: none;
}

.benefits::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -18%;
  width: min(52vw, 640px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(28deg);
  background:
    linear-gradient(135deg, rgba(0, 172, 254, 0.18), transparent 62%);
  pointer-events: none;
}

.benefits .container {
  position: relative;
  z-index: 1;
}

.benefits .section-title {
  color: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.benefit-card {
  position: relative;
  padding: 30px 0 28px 54px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  box-shadow: none;
}

.benefit-card::before {
  position: absolute;
  left: 0;
  top: 32px;
  color: #00ACFE;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.benefit-card:nth-child(1)::before { content: "01"; }
.benefit-card:nth-child(2)::before { content: "02"; }
.benefit-card:nth-child(3)::before { content: "03"; }
.benefit-card:nth-child(4)::before { content: "04"; }

.benefit-card h3 {
  color: #fff;
  font-size: clamp(1.18rem, 1.35vw, 1.36rem);
  line-height: 1.45;
}

.benefit-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.8;
}

@media (max-width: 960px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding-left: 42px;
  }
}
/* AI geometric solution background */
.solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 24%, rgba(0, 172, 254, 0.24) 24.1% 24.35%, transparent 24.55%),
    linear-gradient(38deg, transparent 0 42%, rgba(0, 32, 90, 0.12) 42.1% 42.35%, transparent 42.55%),
    linear-gradient(150deg, transparent 0 62%, rgba(0, 172, 254, 0.18) 62.1% 62.35%, transparent 62.55%),
    linear-gradient(90deg, rgba(0, 32, 90, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 32, 90, 0.04) 1px, transparent 1px);
  background-size: auto, auto, auto, 56px 56px, 56px 56px;
  pointer-events: none;
}

.solution::after {
  content: "";
  position: absolute;
  right: clamp(24px, 7vw, 120px);
  top: 50%;
  width: min(44vw, 560px);
  aspect-ratio: 1.45;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 12% 42%, #00ACFE 0 4px, transparent 5px),
    radial-gradient(circle at 30% 22%, rgba(0, 32, 90, 0.55) 0 3px, transparent 4px),
    radial-gradient(circle at 48% 60%, #00ACFE 0 4px, transparent 5px),
    radial-gradient(circle at 68% 34%, rgba(0, 32, 90, 0.48) 0 3px, transparent 4px),
    radial-gradient(circle at 84% 70%, #00ACFE 0 4px, transparent 5px),
    linear-gradient(24deg, transparent 0 28%, rgba(0, 172, 254, 0.4) 28.1% 28.5%, transparent 28.7%),
    linear-gradient(152deg, transparent 0 38%, rgba(0, 32, 90, 0.18) 38.1% 38.5%, transparent 38.7%),
    linear-gradient(6deg, transparent 0 58%, rgba(0, 172, 254, 0.28) 58.1% 58.5%, transparent 58.7%);
  opacity: 0.42;
  pointer-events: none;
}

.solution .container {
  position: relative;
  z-index: 1;
}

/* Dark solution overlay text */
.solution .section-title {
  color: #00205A;
}

.solution .section-desc {
  color: var(--c-ink-soft);
}

.solution .point-card h3 {
  color: #00205A;
}

.solution .point-card p {
  color: var(--c-ink-soft);
}
@media (max-width: 1240px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
      linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(135deg, #00205A 0%, #003577 62%, #005f9a 100%);
    background-size: 54px 54px, 54px 54px, auto;
  }

  .hero::before {
    display: none;
  }

  .hero-inner,
  .solution-inner,
  .impact-inner,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .pricing-summary,
  .pricing-breakdown,
  .option-grid,
  .feature-groups {
    grid-template-columns: 1fr;
  }

  .pricing-main {
    max-width: 820px;
  }

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

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

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

@media (min-width: 961px) and (max-width: 1320px) {
  .hero-flow-track {
    grid-template-columns: minmax(420px, 1fr) minmax(46px, 0.12fr) minmax(260px, 0.72fr);
  }

  .hero-flow-ai {
    grid-column: 1 / -1;
  }

  .hero-flow-track .hero-flow-line:last-of-type {
    display: none;
  }
}

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

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .header-btns {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

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

  .structure-grid,
  .hero-flow-track,
  .work-flow-grid,
  .benefit-grid,
  .price-list,
  .option-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .price-list-apps {
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .hero-app-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-lead {
    margin-top: 18px;
    max-width: 900px;
    width: auto;
    font-size: clamp(0.86rem, 1vw, 1rem);
    font-weight: 700;
    color: #fff;
    line-break: strict;
    text-wrap: pretty;
    white-space: normal;
  }

  .hero-flow-line {
    width: 2px;
    min-height: 28px;
    height: auto;
    margin-inline: auto;
    background: linear-gradient(180deg, rgba(158, 210, 255, 0.12), rgba(158, 210, 255, 0.9));
  }

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

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

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flow-connector {
    width: 2px;
    min-height: 18px;
    margin-inline: auto;
    background: linear-gradient(180deg, rgba(0, 32, 90, 0.18), rgba(0, 32, 90, 0.72));
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 74px;
    --section-space: clamp(48px, 14vw, 64px);
  }

  .container {
    padding-inline: 18px;
  }

  .logo-img {
    height: 42px;
  }

  #header .logo-img {
    height: 66px;
  }

  .logo-text {
    font-size: 1.08rem;
  }

  .footer-brand .logo-img {
    height: 88px;
  }

  .hero {
    padding-block: 32px 42px;
  }

  .hero-inner {
    padding-inline: 18px;
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(2rem, 8.4vw, 2.45rem);
    line-height: 1.22;
  }

  .hero-lead {
    margin-top: 18px;
    max-width: 900px;
    width: auto;
    font-size: clamp(0.86rem, 1vw, 1rem);
    font-weight: 700;
    color: #fff;
    line-break: strict;
    text-wrap: pretty;
    white-space: normal;
  }

  .hero-flow {
    margin-top: 10px;
  }

  .hero-flow-head {
    display: grid;
    gap: 10px;
  }

  .hero-flow-head p {
    font-size: 1.04rem;
  }

  .hero-app-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-app-icons div {
    min-height: 78px;
    padding: 10px 6px;
  }

  .hero-app-icons img {
    width: 38px;
    height: 38px;
  }

  .hero-app-icons img.hero-app-icon-large {
    width: 46px;
    height: 46px;
  }

  .hero-app-icons img.hero-app-icon-maintenance {
    width: 56px;
    height: 50px;
    margin-block: -2px;
    object-fit: contain;
    object-position: center;
  }

  .hero-app-icons span {
    font-size: 0.68rem;
  }

  .hero-flow-source,
  .hero-flow-ai {
    padding: 14px;
  }

  .hero-flow-hub {
    min-height: 154px;
    height: 154px;
    padding-block: 10px;
  }

  .hero-flow-hub img {
    width: 220px;
    height: 220px;
    max-width: none;
  }

  .hero-flow-ai ul {
    gap: 10px;
    margin-top: 14px;
  }

  .hero-flow-ai li {
    font-size: 0.9rem;
  }

  .feature-group,
  .stack-card,
  .step-card,
  .flow-step-card,
  .issue-card,
  .point-card {
    padding: 22px 18px;
  }

  .issue-grid,
  .feature-grid,
  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .features .container {
    padding-inline: clamp(18px, 4vw, 40px);
  }

  .price-list div {
    align-items: flex-start;
  }

  .price-list span {
    max-width: 52%;
  }

  .price-list strong {
    max-width: 46%;
    text-align: right;
  }

  .legal-table > div {
    grid-template-columns: 1fr;
  }

  .legal-table dt {
    padding-bottom: 8px;
  }

  .legal-table dd {
    padding-top: 8px;
  }

  .hero-btns,
  .cta-btns {
    flex-direction: column;
  }

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

  .footer-tel-number {
    font-size: 18px;
  }

  .footer-address {
    font-size: 12px;
  }

  .footer-nav a {
    font-size: 13px;
  }
}

.option-card-development {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0 24px;
}

.option-dev-main {
  display: grid;
  gap: 10px;
}

.option-dev-kicker {
  width: fit-content;
  padding: 5px 10px;
  background: rgba(0, 172, 254, 0.1);
  color: var(--c-brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.option-card-development h4 {
  font-size: clamp(1.22rem, 1.8vw, 1.58rem);
  line-height: 1.45;
}

.option-card-development strong {
  font-size: 1rem;
}

.option-card-development p {
  max-width: 82ch;
}

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

.option-dev-flow div {
  padding: 16px;
  border: 1px solid rgba(0, 32, 90, 0.12);
  background: #f8fbfe;
}

.option-dev-flow span {
  display: block;
  margin-bottom: 8px;
  color: var(--c-accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.option-dev-flow b {
  display: block;
  color: var(--c-brand);
  font-size: 0.96rem;
  line-height: 1.45;
}

.option-dev-flow p,
.option-dev-note {
  margin-top: 8px;
  color: var(--c-ink-soft);
  font-size: 0.86rem;
  line-height: 1.7;
}

.option-dev-note {
  padding-top: 14px;
  border-top: 1px solid rgba(0, 32, 90, 0.12);
  font-weight: 700;
}

@media (max-width: 960px) {
  .option-dev-flow {
    grid-template-columns: 1fr;
  }
}

.pricing-development {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 0;
  margin-top: 38px;
  border: 1px solid rgba(0, 32, 90, 0.16);
  border-top: 5px solid var(--c-accent-2);
  background: #fff;
}

.pricing-development .pricing-block-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 28px;
  background: var(--c-brand);
}

.pricing-development .pricing-block-head h3 {
  color: #fff;
}

.pricing-development .pricing-block-head p {
  max-width: 20em;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.8;
}

.pricing-development .option-card-development {
  padding: 22px 28px 24px;
  border-top: 0;
}

@media (max-width: 960px) {
  .pricing-development {
    grid-template-columns: 1fr;
  }

  .pricing-development .pricing-block-head {
    padding: 24px 20px;
  }

  .pricing-development .option-card-development {
    padding: 20px;
  }
}
.pricing-options .option-grid {
  padding-block: 10px 18px;
}




.pricing-options .pricing-block-head::before {
  display: none;
  content: none;
}

.pricing-options .option-card {
  align-items: center;
  justify-items: center;
  text-align: center;
}

.pricing-options .option-card strong {
  justify-self: center;
}


.pricing-options .option-card h4 {
  font-size: 1.18rem;
}

.pricing-ai-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  margin-top: 22px;
  padding: 0;
  border: 1px solid rgba(0, 32, 90, 0.16);
  border-left: 5px solid var(--c-accent-2);
  background: #fff;
  color: var(--c-ink);
  box-shadow: none;
}

.pricing-ai-head {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  background: #f6fbff;
}

.pricing-ai-head strong {
  display: block;
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--c-brand);
  font-size: 1.18rem;
  line-height: 1.45;
}

.pricing-ai-head p {
  color: var(--c-ink-soft);
  font-size: 0.92rem;
  line-height: 1.8;
}


.pricing-ai-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  margin-top: 22px;
  padding: 0;
  border: 1px solid rgba(0, 32, 90, 0.16);
  border-left: 5px solid var(--c-accent-2);
  background: #fff;
  color: var(--c-ink);
  box-shadow: none;
}

.pricing-ai-head {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px;
  background: #f6fbff;
}

.pricing-ai-head strong {
  display: block;
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--c-brand);
  font-size: 1.18rem;
  line-height: 1.45;
}

.pricing-ai-head p {
  color: var(--c-ink-soft);
  font-size: 0.92rem;
  line-height: 1.8;
}

.pricing-ai-visual {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) 32px minmax(170px, 0.8fr) 32px minmax(190px, 0.9fr);
  gap: 12px;
  align-items: center;
  padding: 24px;
}

.ai-visual-column {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(0, 32, 90, 0.12);
  background: #fff;
}

.ai-visual-label {
  display: block;
  margin-bottom: 14px;
  color: var(--c-brand);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.45;
}

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

.ai-info-list span {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 172, 254, 0.18);
  background: #f7fbff;
  color: var(--c-ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.ai-visual-asset,
.ai-visual-future {
  display: grid;
  align-content: center;
  text-align: center;
}

.ai-visual-asset {
  background: var(--c-brand);
  color: #fff;
}

.ai-visual-asset .ai-visual-label,
.ai-visual-asset strong {
  color: #fff;
}

.ai-visual-asset strong,
.ai-visual-future strong {
  font-size: 1rem;
  line-height: 1.7;
}

.ai-visual-future {
  background: #f6fbff;
}

.ai-visual-future p {
  margin-top: 10px;
  color: var(--c-ink-soft);
  font-size: 0.86rem;
  line-height: 1.7;
}

.ai-visual-arrow {
  position: relative;
  height: 2px;
  background: rgba(0, 172, 254, 0.72);
}

.ai-visual-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(0, 172, 254, 0.72);
  border-right: 2px solid rgba(0, 172, 254, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 960px) {
  .pricing-ai-note,
  .pricing-ai-visual {
    grid-template-columns: 1fr;
  }

  .pricing-ai-visual {
    padding: 20px;
  }

  .ai-visual-column {
    min-height: auto;
  }

  .ai-visual-arrow {
    width: 2px;
    height: 28px;
    margin-inline: auto;
  }

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

@media (max-width: 640px) {
  .ai-info-list {
    grid-template-columns: 1fr;
  }
}

.ai-visual-source,
.ai-visual-future {
  color: var(--c-ink);
}

.ai-visual-source .ai-visual-label,
.ai-visual-future .ai-visual-label,
.ai-visual-future strong {
  color: var(--c-brand);
}

.ai-visual-future p {
  color: var(--c-ink-soft);
}

/* Align AI card treatment with pricing option cards. */
.pricing-ai-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 0;
  margin-top: 38px;
  padding: 0;
  border: 1px solid rgba(0, 32, 90, 0.16);
  border-top: 5px solid var(--c-accent-2);
  background: #fff;
  box-shadow: none;
}

.pricing-ai-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 30px 28px;
  background: var(--c-brand);
  color: #fff;
  text-align: left;
}

.pricing-ai-head strong {
  display: block;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(1.42rem, 1.9vw, 1.8rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.02em;
}

.pricing-ai-head p {
  max-width: 18em;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.pricing-ai-visual {
  margin-top: 0;
  padding: 18px 28px;
}

.ai-visual-column {
  border: 1px solid rgba(0, 32, 90, 0.12);
  background: #fff;
}

.ai-visual-asset {
  background: var(--c-brand);
}

@media (max-width: 960px) {
  .pricing-ai-note {
    grid-template-columns: 1fr;
  }

  .pricing-ai-head {
    padding: 24px 20px;
  }

  .pricing-ai-head p {
    max-width: none;
  }

  .pricing-ai-visual {
    padding: 20px;
  }
}

.pricing-ai-note .pricing-ai-visual {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.pricing-ai-note .ai-visual-future {
  min-height: 180px;
  background: #f6fbff;
}

.ai-visual-content {
  display: grid;
  gap: 16px;
}

.ai-visual-message {
  color: var(--c-ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.8;
}

.ai-future-diagram {
  padding: 20px;
  border: 1px solid rgba(0, 32, 90, 0.12);
  background: #f6fbff;
}

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

.ai-future-grid div {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 14px 10px;
  border: 1px solid rgba(0, 172, 254, 0.18);
  background: #fff;
  text-align: center;
}

.ai-future-grid b {
  color: var(--c-brand);
  font-size: 1rem;
  line-height: 1.4;
}

.ai-future-grid span {
  color: var(--c-ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
}

.ai-future-diagram p {
  margin-top: 12px;
  color: var(--c-ink-soft);
  font-size: 0.86rem;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .ai-future-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .ai-future-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-ai-visual,
.pricing-ai-visual * {
  color: var(--c-ink);
}

.pricing-ai-visual .ai-visual-label,
.pricing-ai-visual b {
  color: var(--c-brand);
}

.pricing-ai-visual p,
.pricing-ai-visual span:not(.ai-visual-label) {
  color: var(--c-ink-soft);
}

.ai-future-diagram-plain {
  padding: 0;
  border: 0;
  background: transparent;
}

.ai-future-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 2px auto;
  border-radius: 50%;
  background: rgba(0, 172, 254, 0.1);
}

.ai-future-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--c-brand);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-list strong {
  white-space: normal;
  line-height: 1.45;
  text-align: right;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
