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

:root {
  --navy: #001a3a;
  --navy-2: #062b61;
  --navy-3: #0b3b7c;
  --ink: #071c3c;
  --muted: #5f6d7e;
  --line: #d9e1eb;
  --soft-line: #e9eef5;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --gold: #c69b45;
  --orange: #ff7a18;
  --orange-2: #ff5500;
  --shadow: 0 8px 24px rgba(1, 25, 56, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

.hero-grid > *,
.split-heading > *,
.service-grid > *,
.automation-layout > *,
.benefit-layout > *,
.comparison-layout > *,
.case-layout > *,
.faq-layout > *,
.contact-grid > * {
  min-width: 0;
}

img,
svg {
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.svg-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.mobile-break {
  display: none;
}

.keep-together {
  white-space: nowrap;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 122, 24, 0.46);
  outline-offset: 3px;
}

.container {
  width: calc(100% - 60px);
  max-width: 1280px;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: #fff;
  background: rgba(0, 18, 43, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 56px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 236px;
  color: #fff;
}

.brand-mark {
  width: 48px;
  height: 42px;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
  font-size: 12px;
  font-weight: 700;
}

.global-nav a {
  opacity: 0.88;
}

.global-nav a:hover {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 38px;
  padding-inline: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(180deg, var(--orange), var(--orange-2));
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.28);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 36%, rgba(22, 104, 186, 0.45), transparent 32%),
    radial-gradient(circle at 36% 0%, rgba(41, 121, 204, 0.25), transparent 36%),
    linear-gradient(118deg, #00132c 0%, #052c62 54%, #001b3b 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(0, 19, 44, 0.99) 0%, rgba(0, 23, 55, 0.94) 42%, rgba(0, 22, 54, 0.56) 64%, rgba(0, 14, 34, 0.62) 100%),
    url("assets/hero-ai-chip.png");
  background-repeat: no-repeat;
  background-position: center, right clamp(-90px, -3vw, -36px) center;
  background-size: cover, clamp(500px, 42vw, 600px) auto;
  opacity: 0.68;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 52%, #000 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 78% 46%, rgba(79, 159, 255, 0.27), transparent 42%),
    linear-gradient(90deg, rgba(0, 13, 31, 0.05) 0%, rgba(6, 54, 116, 0.18) 58%, rgba(0, 13, 31, 0.36) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(610px, 680px) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(46px, 4vw, 72px);
  min-height: 540px;
  padding-block: 48px 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  max-width: 680px;
  align-self: center;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(56px, 5.4vw, 70px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.hero h1 span {
  color: #ffd35c;
}

.hero-lead {
  margin: 0 0 14px;
  color: #ffd35c;
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 900;
  line-height: 1.45;
}

.hero-text {
  max-width: 650px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 700;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 12px 22px;
  align-items: center;
  max-width: 640px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.42;
}

.hero-points li span:last-child {
  min-width: 0;
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
}

.point-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  color: #ffd35c;
}

.point-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 38px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff881e 0%, #ff5b00 100%);
  border: 2px solid #ff9b3b;
  box-shadow: 0 14px 28px rgba(255, 102, 0, 0.28);
}

.btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.hero-actions .btn-primary {
  min-width: 260px;
}

.hero-actions .btn-outline {
  min-width: 220px;
  padding-inline: 30px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.015);
  border-color: rgba(255, 255, 255, 0.72);
}

.play-icon {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
}

.hero-visual {
  position: relative;
  align-self: center;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 360px;
}

.effect-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  margin-inline: auto;
  padding: 22px 20px 20px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 9px;
  box-shadow:
    0 22px 42px rgba(0, 9, 35, 0.34),
    0 0 0 6px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

@media (min-width: 1040px) {
  .hero-grid {
    gap: 64px;
  }
}

.effect-panel h2 {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.3;
}

.effect-panel h2 span {
  font-size: 12px;
  font-weight: 800;
}

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

.metric-card {
  position: relative;
  min-width: 0;
  min-height: 144px;
  padding: 18px 16px 14px;
  background: #fff;
  border: 1px solid #dbe3ed;
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(5, 37, 77, 0.08);
}

.metric-card p {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.metric-card strong {
  display: block;
  color: #071b3a;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.metric-card strong span {
  margin-left: 2px;
  font-size: 14px;
}

.metric-card > svg:not(.metric-icon) {
  width: 88px;
  height: 32px;
  margin-top: 11px;
}

.metric-card > svg:not(.metric-icon) path {
  fill: none;
  stroke: #2c64a2;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-asset {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.metric-icon-img {
  width: 64px;
  height: 58px;
  margin: 10px auto 0;
  object-fit: contain;
}

.hero-note {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  text-align: center;
}

.hero-tags {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: -2px 0 0;
  list-style: none;
}

.hero-tags li {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 34px;
  padding: 7px 12px;
  color: #fff;
  font-size: 12.5px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 10, 35, 0.18);
}

.section {
  border-top: 1px solid var(--line);
  background: #fff;
}

.section-heading {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 2.5vw, 34px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: normal;
}

.section-heading.compact h2 {
  font-size: clamp(27px, 2.4vw, 32px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(400px, 420px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding-block: 28px;
}

.challenge-section {
  background: linear-gradient(180deg, #fbfdff 0%, #f7faff 100%);
}

.challenge-section .split-heading {
  align-items: start;
  padding-block: 32px;
}

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

.challenge-card {
  position: relative;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 10px 18px;
  align-content: center;
  align-items: center;
  min-width: 0;
  min-height: 194px;
  padding: 16px 18px 16px 12px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 20, 50, 0.06);
  overflow: hidden;
}

.challenge-card h3 {
  grid-column: 2;
  min-width: 0;
  margin: 0;
  font-size: 19px;
  line-height: 1.38;
  font-weight: 900;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: normal;
}

.challenge-card p {
  grid-column: 2;
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  overflow-wrap: anywhere;
}

.challenge-illustration {
  grid-row: 1 / span 2;
  display: block;
  width: 138px;
  height: 138px;
  object-fit: contain;
}

.card-icon-lg,
.flow-icon,
.service-icon,
.benefit-icon,
.case-icon,
.contact-points span {
  position: relative;
  display: inline-block;
  color: var(--navy-2);
}

.card-icon-lg {
  width: 50px;
  height: 44px;
}

.card-icon-lg.svg-icon,
.service-icon.svg-icon,
.benefit-icon.svg-icon,
.case-icon.svg-icon {
  overflow: visible;
}

.service-section {
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.service-section .section-heading h2 {
  overflow-wrap: normal;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 44px;
  align-items: center;
  padding-block: 26px 28px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  display: grid;
  place-items: center;
  gap: 9px;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -29px;
  top: 52px;
  width: 26px;
  height: 18px;
  background: var(--navy-2);
  clip-path: polygon(0 32%, 62% 32%, 62% 0, 100% 50%, 62% 100%, 62% 68%, 0 68%);
}

.flow-number {
  position: absolute;
  top: -3px;
  left: calc(50% - 52px);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  background: var(--navy-2);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(0, 32, 80, 0.12);
  z-index: 1;
}

.flow-icon {
  display: inline-grid;
  place-items: center;
  width: 104px;
  height: 104px;
  padding: 13px;
  color: var(--navy-2);
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 20, 50, 0.06);
  box-sizing: border-box;
}

.flow-icon img {
  width: auto;
  height: auto;
  max-width: 78px;
  max-height: 74px;
  object-fit: contain;
}

.flow-list li:nth-child(3) .flow-icon img {
  max-height: 78px;
}

.flow-list strong {
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.service-cards article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  height: auto;
  min-height: 246px;
  padding: 20px 14px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 98px;
  height: 92px;
  margin-bottom: 10px;
  object-fit: contain;
}

.service-icon-gold {
  color: var(--navy-2);
}

.service-cards h3 {
  margin: 0 0 9px;
  color: var(--navy-2);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 900;
}

.service-cards p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: normal;
}

.service-assurances {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: -4px 0 0;
  list-style: none;
}

.service-assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 50px;
  padding: 10px 12px;
  color: var(--navy-2);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;
  background: #f8fbff;
  border: 1px solid #d9e3ee;
  border-radius: 8px;
  overflow-wrap: anywhere;
  word-break: normal;
}

.service-assurances span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: #fff;
  font-size: 12px;
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  border-radius: 50%;
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(240px, 260px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-block: 24px;
}

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

.benefit-card {
  min-width: 0;
  min-height: 222px;
  padding: 16px 12px 16px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(0, 20, 50, 0.06);
}

.benefit-card h3 {
  min-height: 36px;
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 900;
}

.benefit-icon {
  width: min(154px, 100%);
  height: 104px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.benefit-card strong {
  display: block;
  min-height: 42px;
  color: var(--orange);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: normal;
}

.benefit-card p {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: normal;
}

.before-after {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.comparison-layout {
  display: grid;
  grid-template-columns: minmax(380px, 410px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding-block: 28px;
}

.comparison-visual {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 20, 50, 0.06);
}

.comparison-image-wrap {
  position: relative;
  background: #fff;
}

.comparison-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1774 / 887;
  object-fit: contain;
  object-position: center;
}

.comparison-badge {
  position: absolute;
  top: clamp(10px, 1.5vw, 18px);
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(25%, 210px);
  min-width: 116px;
  height: clamp(30px, 3.4vw, 40px);
  color: #fff;
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1;
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 5px 12px rgba(0, 20, 50, 0.08);
  pointer-events: none;
}

.comparison-badge-before {
  left: 25%;
  background: linear-gradient(180deg, #506b91, #385982);
  transform: translateX(-50%);
}

.comparison-badge-after {
  left: 75%;
  color: #3f2e08;
  background: linear-gradient(180deg, #f1bd48, #dda32e);
  transform: translateX(-50%);
}

.comparison-visual figcaption {
  margin: 0;
  padding: 12px 18px 9px;
  color: var(--navy-2);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.comparison-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0 16px 16px;
  margin: 0;
  list-style: none;
  background: #f8fbff;
}

.comparison-points li {
  display: grid;
  place-items: center;
  min-height: 36px;
  padding: 7px 10px;
  color: var(--navy-2);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
  text-align: center;
  background: #fff;
  border: 1px solid #d9e3ee;
  border-radius: 8px;
}

.automation-section {
  background: #fff;
}

.automation-layout {
  display: grid;
  grid-template-columns: minmax(260px, 290px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-block: 24px 22px;
}

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

.automation-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 0;
  min-height: 166px;
  padding: 18px 12px 16px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(0, 20, 50, 0.05);
}

.automation-card img {
  width: 82px;
  height: 74px;
  margin-bottom: 10px;
  object-fit: contain;
}

.automation-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.34;
  font-weight: 900;
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(240px, 260px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-block: 24px 22px;
}

.case-section {
  background: #fbfdff;
}

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

.case-card {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  min-height: 198px;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 20, 50, 0.06);
}

.case-card img {
  width: 126px;
  height: 170px;
  min-height: 0;
  object-fit: cover;
  border: 1px solid #e0e8f1;
  border-radius: 8px;
  filter: saturate(0.82) brightness(1.06);
}

.case-card div {
  min-width: 0;
  padding: 1px 2px 0 0;
}

.case-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  margin: 0 0 9px;
  color: var(--navy-2);
  font-size: 18px;
  font-weight: 900;
  border-bottom: 1px solid #cfd8e3;
}

.case-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.case-card p {
  margin: 0 0 3px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.case-card strong {
  display: block;
  color: var(--gold);
  font-size: 38px;
  line-height: 1.05;
  font-weight: 900;
  white-space: nowrap;
}

.case-card strong span {
  margin-left: 2px;
  font-size: 20px;
}

.case-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
}

.case-note {
  grid-column: 2;
  margin: 12px 0 0;
  color: #66717e;
  font-size: 12px;
  text-align: right;
}

.faq-section {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 260px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-block: 24px 28px;
}

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

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(0, 20, 50, 0.05);
}

.faq-list details[open] {
  border-color: #cbd8e8;
  box-shadow: 0 10px 24px rgba(0, 20, 50, 0.08);
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 54px;
  padding: 0 58px 0 22px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--navy-2);
  border-radius: 2px;
  transform: translateY(-50%);
}

.faq-list summary::before {
  content: "";
  position: absolute;
  right: 29px;
  top: 50%;
  width: 2px;
  height: 16px;
  background: var(--navy-2);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: opacity 0.16s ease;
}

.faq-list details[open] summary::before {
  opacity: 0;
}

.faq-list summary span {
  display: none;
}

.faq-list p {
  margin: 0;
  padding: 0 58px 18px 22px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-section {
  color: #fff;
  background:
    radial-gradient(ellipse at 88% 30%, rgba(59, 131, 217, 0.28), transparent 34%),
    linear-gradient(115deg, #001730 0%, #052b63 55%, #00142b 100%);
  border-top: 1px solid rgba(198, 155, 69, 0.28);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: 56px;
  align-items: center;
  padding-block: 48px;
}

.contact-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 3.1vw, 42px);
  line-height: 1.34;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.contact-copy h2 span {
  color: #ffd35c;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.contact-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 8px 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 10, 30, 0.12);
}

.contact-points span {
  width: 34px;
  height: 32px;
  color: #ffd35c;
}

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

.contact-icon .svg-icon {
  width: 32px;
  height: 30px;
  stroke-width: 2.25;
}

.contact-form {
  padding: 28px 34px 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  box-shadow: 0 22px 45px rgba(0, 8, 32, 0.28);
}

.contact-form label {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 11px;
  font-size: 14px;
  font-weight: 900;
}

.contact-form label span {
  min-width: 0;
}

.contact-form label em {
  display: inline-block;
  margin-left: 4px;
  color: var(--orange-2);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  background: #fff;
  border: 1px solid #cfd8e3;
  border-radius: 6px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .consent-field {
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 10px 0 12px 114px;
  color: #52606f;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 800;
}

.contact-form .consent-field input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--orange);
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-wrap {
  min-height: 65px;
  margin: 8px 0 10px 114px;
}

.form-status {
  margin: 10px 0 14px 114px;
  color: #52606f;
  font-size: 12px;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status[data-type="success"] {
  color: #136b34;
}

.form-status[data-type="error"] {
  color: #b42318;
}

.contact-form a {
  color: #1f73c9;
  text-decoration: underline;
}

.form-submit {
  width: min(100%, 400px);
  min-height: 50px;
  margin: 0 auto;
  display: flex;
  font-size: 19px;
}

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

.legal-section {
  background: #f8fbff;
  border-top: 1px solid var(--line);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  padding-block: 24px;
}

.legal-grid article {
  min-width: 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(0, 20, 50, 0.05);
}

.legal-grid h2 {
  margin: 0 0 10px;
  color: var(--navy-2);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.legal-grid p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

.legal-grid p:last-child {
  margin-bottom: 0;
}

.legal-grid a {
  color: #1f73c9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-grid dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.legal-grid dl div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
}

.legal-grid dt,
.legal-grid dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.legal-grid dt {
  color: var(--navy-2);
  font-weight: 900;
}

.legal-grid dd {
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  color: #fff;
  background: linear-gradient(180deg, #001a3a, #001126);
  border-top: 1px solid rgba(198, 155, 69, 0.28);
}

.footer-inner {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  min-height: 88px;
}

.footer-brand {
  min-width: 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 8px 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

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

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  white-space: nowrap;
}

.floating-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  align-content: center;
  place-items: center;
  gap: 2px;
  width: 96px;
  height: 96px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  background: linear-gradient(180deg, #ff9226, #ff6404);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 19, 48, 0.24), 0 0 0 1px rgba(198, 155, 69, 0.28);
}

.floating-chat span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 30px;
}

.floating-chat-icon {
  width: 34px;
  height: 34px;
  stroke-width: 2.8;
}

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

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 420px);
    gap: 34px;
  }

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

  .hero h1 {
    font-size: clamp(48px, 5vw, 58px);
  }

  .effect-panel {
    width: min(100%, 410px);
  }

  .hero-note {
    width: min(100%, 410px);
  }

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

  .challenge-card {
    grid-template-columns: 124px minmax(0, 1fr);
  }

  .challenge-illustration {
    width: 124px;
    height: 124px;
  }

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

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

  .service-assurances {
    grid-column: auto;
  }

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

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

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

  .floating-chat {
    display: none;
  }

  .footer-nav {
    grid-template-columns: repeat(3, max-content);
  }

  .comparison-layout,
  .automation-layout,
  .benefit-layout,
  .case-layout,
  .faq-layout {
    grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: calc(100% - 36px);
    max-width: 940px;
  }

  .global-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 342px);
    gap: 24px;
    min-height: 352px;
    padding-block: 30px 24px;
  }

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

  .hero-points {
    grid-template-columns: repeat(2, minmax(210px, 1fr));
  }

  .hero::after {
    background-position: center, right -96px center;
    background-size: cover, 420px auto;
    opacity: 0.58;
  }

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

  .automation-layout {
    grid-template-columns: 1fr;
  }

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

  .challenge-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 152px;
  }

  .challenge-illustration {
    width: 104px;
    height: 104px;
  }

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

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

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

  .service-assurances {
    grid-column: auto;
  }

  .comparison-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    padding-block: 24px;
  }

  .floating-chat {
    display: none;
  }

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

  .mobile-fixed-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
    gap: 8px;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    background: rgba(0, 18, 43, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -12px 30px rgba(0, 8, 24, 0.2);
    backdrop-filter: blur(10px);
  }

  .mobile-fixed-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    min-height: 48px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    border-radius: 999px;
  }

  .mobile-fixed-cta a:first-child {
    background: linear-gradient(180deg, #ff881e 0%, #ff5b00 100%);
    border: 2px solid #ff9b3b;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.2);
  }

  .mobile-fixed-cta a:last-child {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.24);
  }

  .mobile-fixed-cta .svg-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2.4;
  }
}

@media (max-width: 820px) {
  body {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  h1,
  h2,
  h3,
  p,
  li,
  summary,
  small,
  strong {
    overflow-wrap: anywhere;
  }

  .header-inner {
    min-height: 68px;
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand span {
    min-width: 0;
  }

  .brand strong {
    font-size: 20px;
  }

  .header-cta {
    flex: 0 0 auto;
  }

  .global-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 22px;
    padding-block: 34px 36px;
  }

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

  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-points li span:last-child {
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
  }

  .hero-visual {
    min-height: 0;
    justify-items: stretch;
  }

  .effect-panel,
  .hero-note {
    width: 100%;
    margin-inline: 0;
  }

  .hero::after {
    background-position: center, right -132px top 64px;
    background-size: cover, 400px auto;
    opacity: 0.36;
  }

  .split-heading,
  .automation-layout,
  .benefit-layout,
  .case-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .service-cards article {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    height: auto;
    min-height: 126px;
    padding: 14px 16px;
    text-align: left;
  }

  .service-icon {
    width: 84px;
    height: 74px;
    margin: 0;
    justify-self: center;
  }

  .service-cards h3,
  .service-cards p {
    grid-column: 2;
    text-align: left;
  }

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

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

  .flow-list li {
    width: min(100%, 148px);
    justify-self: center;
  }

  .flow-number {
    top: -3px;
    left: calc(50% - 52px);
  }

  .flow-list li::after {
    display: none;
  }

  .comparison-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-note {
    grid-column: auto;
    text-align: left;
  }

  .contact-form label {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-form p {
    margin-left: 0;
  }

  .contact-form .consent-field,
  .turnstile-wrap,
  .form-status {
    margin-left: 0;
  }

  .legal-grid dl div {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
    max-width: 520px;
  }

  .site-header {
    position: static;
  }

  .header-cta {
    min-width: 84px;
    height: 36px;
    padding-inline: 11px;
    font-size: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 34px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(32px, 8.6vw, 36px);
    line-height: 1.2;
  }

  .mobile-break {
    display: inline;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .hero-points li {
    gap: 7px;
    font-size: 12px;
  }

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

  .hero-tags li {
    min-height: 32px;
    font-size: 12px;
  }

  .point-icon {
    width: 36px;
    height: 36px;
    border-width: 2px;
  }

  .point-icon .svg-icon {
    width: 21px;
    height: 21px;
  }

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

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

  .automation-card {
    min-height: 126px;
  }

  .hero-grid {
    gap: 18px;
    padding-block: 26px 28px;
  }

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

  .hero-actions .btn {
    width: auto;
    min-width: 0;
    min-height: 48px;
    padding-inline: 10px;
    font-size: 14.5px;
  }

  .hero-actions .btn-outline {
    min-height: 48px;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.62);
  }

  .hero-actions .play-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }

  .hero-actions .play-icon::after {
    top: 3px;
    left: 5px;
  }

  .effect-panel {
    padding: 14px 13px 13px;
  }

  .effect-panel h2 {
    margin-bottom: 9px;
  }

  .metric-grid {
    gap: 8px;
  }

  .metric-card {
    min-height: 96px;
    padding: 11px 9px 7px;
  }

  .metric-card p {
    font-size: 12px;
  }

  .metric-card strong {
    font-size: clamp(22px, 7.2vw, 28px);
  }

  .metric-card strong span {
    font-size: clamp(10px, 3vw, 12px);
  }

  .metric-card > svg:not(.metric-icon) {
    height: 22px;
    margin-top: 4px;
  }

  .metric-card .metric-icon {
    width: 50px;
    height: 36px;
    margin-top: 5px;
  }

  .hero::after {
    background-position: center, right -150px top 80px;
    background-size: cover, 360px auto;
    opacity: 0.24;
  }

  .challenge-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }

  .flow-list li {
    width: min(100%, 144px);
  }

  .flow-icon {
    width: 94px;
    height: 94px;
    padding: 12px;
  }

  .flow-icon img {
    max-width: 70px;
    max-height: 68px;
  }

  .flow-list li:nth-child(3) .flow-icon img {
    max-height: 72px;
  }

  .flow-number {
    top: -2px;
    left: calc(50% - 47px);
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .challenge-card {
    min-height: 156px;
  }

  .comparison-visual figcaption {
    padding: 9px 12px 11px;
    font-size: 12.5px;
  }

  .comparison-points {
    gap: 6px;
    padding: 0 12px 12px;
  }

  .comparison-points li {
    min-height: 28px;
    font-size: 12.5px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .case-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 10px;
  }

  .case-card strong {
    font-size: 30px;
  }

  .case-card img {
    width: 104px;
    height: 138px;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-grid {
    gap: 24px;
  }

  .legal-grid {
    gap: 14px;
    padding-block: 18px;
  }

  .legal-grid article {
    padding: 16px;
  }

  .legal-grid dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .mobile-fixed-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 10px;
  }

}

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

@media (max-width: 360px) {
  .comparison-points {
    grid-template-columns: 1fr;
  }

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

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 9px;
  }
}
