:root {
  --navy-950: #07152b;
  --navy-900: #0b1f3f;
  --navy-800: #12315e;
  --blue-650: #1f67a8;
  --steel-100: #f4f7fa;
  --steel-200: #e4ebf2;
  --steel-300: #c9d5e3;
  --ink: #172033;
  --muted: #5c6878;
  --paper: #ffffff;
  --orange: #e86f18;
  --orange-dark: #c9560d;
  --green: #1d8f73;
  --shadow: 0 24px 70px rgba(7, 21, 43, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.section-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(201, 213, 227, 0.8);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100% - 32px, 1240px);
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy-950);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy-950);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: #42536a;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #30435c;
  font-size: 0.92rem;
}

.header-nav a {
  text-decoration: none;
}

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

.tel-link {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(232, 111, 24, 0.35);
  outline-offset: 3px;
}

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

.button-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 32px rgba(232, 111, 24, 0.28);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  background: var(--navy-900);
  color: #fff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}

.hero-bg,
.hero-network,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  z-index: 0;
  object-fit: cover;
  object-position: center;
}

.hero-network {
  z-index: 2;
  width: 108%;
  height: auto;
  top: auto;
  right: auto;
  bottom: -13%;
  left: -18%;
  opacity: 0.34;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 21, 43, 0.98) 0%, rgba(7, 21, 43, 0.88) 48%, rgba(7, 21, 43, 0.46) 100%),
    linear-gradient(180deg, rgba(7, 21, 43, 0.18) 0%, rgba(7, 21, 43, 0.92) 100%);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(370px, 0.68fr);
  gap: 14px;
  align-items: start;
  min-height: calc(100svh - 74px);
  padding: 26px 0 70px;
}

.hero-copy {
  padding-top: 8px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  font-size: clamp(1.05rem, 1.34vw, 1.3rem);
}

.hero h1,
.footer-cta h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2.6rem, 4.42vw, 4.24rem);
  line-height: 1.16;
}

.hero h1 {
  letter-spacing: 0.012em;
}

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

.hero-delay-word {
  display: inline;
  font-size: 1.025em;
  font-style: normal;
}

.hero-lead {
  max-width: 860px;
  margin: 42px 0 0;
  font-size: clamp(1.34rem, 2.18vw, 1.94rem);
  font-weight: 740;
  line-height: 1.5;
}

.hero-lead strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 1.35em;
  font-weight: 720;
  line-height: 1.25;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.34);
}

.hero-lead strong span {
  display: block;
}

.hero-sub {
  max-width: 780px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
}

.alert-strip {
  width: min(100%, 760px);
  max-width: 100%;
  margin: 24px 0 0;
  padding: 18px 26px;
  border: 1px solid rgba(232, 111, 24, 0.72);
  border-left-width: 5px;
  border-radius: 8px;
  background: rgba(232, 111, 24, 0.15);
  color: #ffb172;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 9px;
  font-size: clamp(1.22rem, 1.72vw, 1.48rem);
  font-weight: 720;
  line-height: 1.35;
  white-space: normal;
  box-shadow: 0 16px 42px rgba(232, 111, 24, 0.18);
}

.alert-strip span {
  min-width: 0;
  white-space: normal;
}

.alert-strip i {
  width: min(320px, 100%);
  height: 3px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(255, 177, 114, 0.35);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero .cta-row .button {
  min-height: 60px;
  padding: 16px 30px;
  font-size: clamp(1.04rem, 1.16vw, 1.16rem);
  font-weight: 650;
}

.hero-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.hero-panel img {
  width: min(58vw, 780px);
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 26px 24px rgba(0, 0, 0, 0.48));
  transform: translate(6%, 18px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1.06fr 0.86fr 1.18fr;
  gap: 7px;
  width: min(100%, 470px);
  margin: -14px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(7, 21, 43, 0.52);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
  padding: 7px;
}

.hero-metrics div {
  position: relative;
  min-height: 90px;
  padding: 15px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(7, 21, 43, 0.7) 100%),
    rgba(7, 21, 43, 0.82);
}

.hero-metrics div::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  left: 12px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
}

.metric-label {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-metrics strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.04rem, 1.34vw, 1.22rem);
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.section {
  padding: 86px 0;
}

.problem-section,
.info-section,
.flow-section {
  background: var(--steel-100);
}

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

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.6fr);
  gap: 32px;
  align-items: end;
  max-width: none;
}

h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.28;
}

h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.08rem;
  line-height: 1.45;
}

p {
  margin: 0;
}

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

.number-card,
.feature-card,
.case-card {
  border: 1px solid var(--steel-200);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 21, 43, 0.06);
}

.number-card {
  position: relative;
  min-height: 230px;
  padding: 20px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px 14px;
  align-items: start;
}

.number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  border-radius: 8px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 800;
}

.issue-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  grid-column: 1;
  border: 1px solid rgba(18, 49, 94, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4f8 100%);
}

.issue-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.number-card h3 {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 0;
  align-self: center;
  padding-top: 0;
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.42;
  word-break: keep-all;
}

.number-card p,
.feature-card p,
.section-note,
.section-lead,
.split-heading p,
.form-copy p,
.footer-cta p {
  color: var(--muted);
}

.number-card p {
  grid-column: 1 / -1;
  margin-top: 12px;
  font-size: 0.94rem;
}

.section-note {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
}

.answer-section {
  background:
    linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 136px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  border: 1px solid rgba(29, 143, 115, 0.18);
  background: linear-gradient(180deg, #f5faf8 0%, #e9f4ef 100%);
}

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

.info-list,
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.info-list span,
.category-grid span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--steel-200);
  border-radius: 8px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 700;
}

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

.info-list span {
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 16px 10px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(7, 21, 43, 0.06);
}

.info-list em {
  color: var(--navy-950);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.34;
  word-break: keep-all;
}

.info-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border: 2px solid var(--navy-900);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #eff5f9 100%);
}

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

.info-server::before {
  inset: 10px 13px;
  border: solid var(--orange);
  border-width: 4px 0;
  box-shadow: 0 10px 0 var(--orange);
}

.info-label::before {
  top: 13px;
  left: 10px;
  width: 34px;
  height: 25px;
  border: 2px solid var(--orange);
  border-radius: 4px;
}

.info-label::after {
  top: 22px;
  left: 16px;
  width: 21px;
  height: 3px;
  background: var(--navy-900);
  box-shadow: 0 7px 0 var(--navy-900);
}

.info-bios::before {
  inset: 10px;
  border: 2px solid var(--orange);
  border-radius: 4px;
}

.info-bios::after {
  left: 14px;
  bottom: 10px;
  width: 26px;
  height: 4px;
  border-radius: 99px;
  background: var(--navy-900);
}

.info-stack::before {
  top: 12px;
  left: 12px;
  width: 30px;
  height: 9px;
  border-radius: 3px;
  background: var(--orange);
  box-shadow: 0 12px 0 var(--orange), 0 24px 0 var(--orange);
}

.info-count::before {
  top: 11px;
  left: 14px;
  width: 26px;
  height: 32px;
  border: 2px solid var(--orange);
  border-radius: 5px;
}

.info-count::after {
  top: 20px;
  left: 21px;
  width: 12px;
  height: 12px;
  border: solid var(--navy-900);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.info-deadline::before {
  inset: 12px;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.info-deadline::after {
  top: 16px;
  left: 26px;
  width: 3px;
  height: 16px;
  border-radius: 99px;
  background: var(--navy-900);
  transform-origin: bottom;
  transform: rotate(45deg);
}

.info-quote::before {
  top: 10px;
  left: 14px;
  width: 24px;
  height: 34px;
  border: 2px solid var(--orange);
  border-radius: 4px;
}

.info-quote::after {
  top: 19px;
  left: 20px;
  width: 16px;
  height: 2px;
  background: var(--navy-900);
  box-shadow: 0 8px 0 var(--navy-900), 0 16px 0 var(--navy-900);
}

.message-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 26px;
  border: 1px solid rgba(232, 111, 24, 0.24);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(232, 111, 24, 0.12) 0%, #fff 72%);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(7, 21, 43, 0.07);
}

.message-band strong {
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
}

.message-band span {
  color: #3f4f65;
  font-weight: 700;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: stretch;
}

.section-lead {
  margin-top: 18px;
  max-width: 620px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.kpi-grid div {
  min-height: 120px;
  padding: 18px 16px;
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #f3f7fa 100%);
  box-shadow: 0 12px 30px rgba(7, 21, 43, 0.06);
}

.kpi-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
}

.kpi-grid strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
  margin-top: 10px;
  color: var(--navy-950);
  line-height: 1.25;
}

.kpi-grid em {
  color: var(--orange-dark);
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.kpi-grid small {
  color: var(--navy-950);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  font-weight: 900;
  white-space: nowrap;
}

.case-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.case-card h3 {
  padding: 18px 22px 0;
  font-size: 1.08rem;
}

.case-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0 22px 22px;
  list-style: none;
}

.case-card li {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 9px 10px 9px 38px;
  border: 1px solid var(--steel-200);
  border-radius: 8px;
  background: #fff;
}

.case-card li::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
}

.case-card li::after {
  content: "";
  position: absolute;
  left: 18px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.case-card li b {
  color: var(--orange-dark);
  font-size: 0.82rem;
  line-height: 1.25;
  white-space: nowrap;
}

.case-card li span {
  color: var(--navy-950);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
}

.category-section {
  background: #fff;
}

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

.flow-list li {
  position: relative;
  min-height: 164px;
  padding: 14px 12px 16px;
  border: 1px solid var(--steel-200);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #f7fafc 100%);
  color: var(--navy-900);
  font-weight: 800;
  display: grid;
  grid-template-rows: auto 86px 1fr;
  justify-items: center;
  gap: 6px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(7, 21, 43, 0.06);
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 69px;
  right: -23px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid var(--navy-900);
  filter: drop-shadow(0 2px 0 rgba(7, 21, 43, 0.08));
}

.flow-list span {
  display: block;
  justify-self: start;
  margin-bottom: 0;
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.flow-list strong {
  display: block;
  min-width: 0;
  color: var(--navy-900);
  font-size: clamp(0.84rem, 0.98vw, 1.02rem);
  line-height: 1.25;
  word-break: keep-all;
}

.flow-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 86px;
  color: var(--navy-900);
}

.flow-icon img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.flow-icon::before,
.flow-icon::after {
  content: none;
  position: absolute;
}

.flow-consult::before {
  top: 20px;
  left: 5px;
  width: 14px;
  height: 14px;
  border: 4px solid currentColor;
  border-radius: 50%;
  box-shadow: 32px 0 0 -1px currentColor;
}

.flow-consult::after {
  top: 7px;
  left: 19px;
  width: 22px;
  height: 14px;
  border: 3px solid var(--orange);
  border-radius: 12px;
  box-shadow: -17px 28px 0 -9px currentColor, 17px 28px 0 -9px currentColor;
}

.flow-search::before {
  top: 5px;
  left: 7px;
  width: 30px;
  height: 30px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.flow-search::after {
  right: 8px;
  bottom: 8px;
  width: 21px;
  height: 4px;
  border-radius: 99px;
  background: var(--orange);
  transform: rotate(45deg);
}

.flow-quote::before {
  top: 4px;
  left: 13px;
  width: 30px;
  height: 38px;
  border: 3px solid currentColor;
  border-radius: 5px;
  background:
    linear-gradient(currentColor, currentColor) 7px 9px / 14px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 7px 18px / 17px 3px no-repeat;
}

.flow-quote::after {
  top: 24px;
  right: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 4px #fff;
}

.flow-order::before {
  top: 21px;
  left: 5px;
  width: 35px;
  height: 16px;
  border: 4px solid currentColor;
  border-left: 0;
  border-radius: 0 14px 14px 0;
  transform: rotate(22deg);
}

.flow-order::after {
  top: 21px;
  right: 5px;
  width: 35px;
  height: 16px;
  border: 4px solid var(--orange);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  transform: rotate(-22deg);
}

.flow-delivery::before {
  left: 3px;
  top: 12px;
  width: 30px;
  height: 30px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) center 13px / 36px 3px no-repeat,
    linear-gradient(90deg, transparent 47%, currentColor 48%, currentColor 52%, transparent 53%) center / 100% 100% no-repeat;
}

.flow-delivery::after {
  right: 3px;
  top: 15px;
  width: 22px;
  height: 14px;
  border: 3px solid var(--orange);
  border-left: 0;
  border-radius: 2px 12px 12px 2px;
  transform: rotate(-18deg);
  box-shadow: -11px 16px 0 -8px currentColor;
}

.flow-warranty::before {
  top: 4px;
  left: 15px;
  width: 30px;
  height: 38px;
  border: 4px solid currentColor;
  border-radius: 16px 16px 18px 18px;
}

.flow-warranty::after {
  top: 14px;
  left: 26px;
  width: 9px;
  height: 17px;
  border: solid var(--orange);
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.conversion-band-section {
  padding: 0;
  border-top: 1px solid #dce5ee;
  border-bottom: 1px solid #dce5ee;
  background:
    radial-gradient(circle at 88% 50%, rgba(232, 111, 24, 0.1) 0%, rgba(232, 111, 24, 0) 32%),
    linear-gradient(180deg, #fbfcfd 0%, #edf4f8 100%);
  color: var(--navy-950);
}

.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 420px) 230px;
  gap: 22px;
  align-items: center;
  min-height: 168px;
  padding: 26px 0;
}

.conversion-message {
  padding-right: 20px;
}

.conversion-message h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.95rem, 3.2vw, 3.35rem);
  font-weight: 900;
  line-height: 1.18;
}

.conversion-message h2 > span {
  display: block;
  color: var(--navy-950);
}

.conversion-message h2 em {
  color: var(--orange);
  font-style: normal;
}

.conversion-message h2 > span:last-child {
  color: var(--orange);
}

.conversion-message p {
  margin-top: 14px;
  color: #415067;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.58;
}

.conversion-brand {
  display: grid;
  gap: 11px;
  min-width: 0;
  padding: 18px 18px 18px 26px;
  border: 1px solid #d3deea;
  border-left: 5px solid var(--navy-900);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(236, 244, 249, 0.94) 100%);
  box-shadow: 0 18px 42px rgba(7, 21, 43, 0.11);
  width: 100%;
  max-width: 420px;
}

.conversion-brand strong {
  color: var(--navy-950);
  font-size: clamp(1.9rem, 2.35vw, 2.45rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.conversion-brand sup {
  font-size: 0.45em;
}

.conversion-brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--navy-950);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.22;
  text-decoration: none;
}

.conversion-url {
  overflow-wrap: anywhere;
}

.conversion-brand a[href^="tel"],
.conversion-tel {
  font-size: clamp(1.52rem, 1.95vw, 1.95rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.band-icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
}

.globe-icon {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.globe-icon::before,
.globe-icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: solid currentColor;
}

.globe-icon::before {
  border-width: 0 2px;
  border-radius: 50%;
}

.globe-icon::after {
  top: 11px;
  right: -3px;
  left: -3px;
  height: 0;
  border-width: 2px 0 0;
}

.phone-icon::before {
  content: "";
  position: absolute;
  inset: 4px 7px 4px 6px;
  border: 4px solid currentColor;
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 12px 0;
  transform: rotate(36deg);
}

.conversion-button {
  display: flex;
  justify-self: end;
  width: min(100%, 250px);
  min-height: 108px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #f07a19 0%, #d95f10 100%);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.32;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.18), 0 18px 36px rgba(232, 111, 24, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.conversion-button span:not(.cart-icon) {
  white-space: nowrap;
}

.conversion-button:hover {
  background:
    linear-gradient(180deg, #e96f17 0%, #c9560d 100%);
  transform: translateY(-1px);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.18), 0 22px 42px rgba(232, 111, 24, 0.3);
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--steel-200);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
  box-shadow: 0 12px 34px rgba(7, 21, 43, 0.05);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 20px 56px 20px 22px;
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.5;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  border: solid var(--orange);
  border-width: 0 3px 3px 0;
  transform: translateY(-68%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-28%) rotate(225deg);
}

.faq-item p {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.8;
}

.cart-icon {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 26px;
  border: 4px solid currentColor;
  border-top: 0;
  transform: translateY(2px);
}

.cart-icon::before {
  content: "";
  position: absolute;
  top: -11px;
  left: -8px;
  width: 18px;
  height: 4px;
  background: currentColor;
  transform: rotate(16deg);
}

.cart-icon::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 20px 0 0 currentColor;
}

.form-section {
  background:
    linear-gradient(180deg, #fff 0%, #f5f8fb 100%);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(480px, 0.9fr);
  gap: 44px;
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 110px;
}

.form-copy p {
  margin-top: 18px;
}

.form-copy .form-action-copy {
  margin-top: 10px;
  color: var(--navy-950);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.22;
}

.form-copy .form-primary-copy {
  margin-top: 16px;
  color: #415067;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.72;
}

.contact-box {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid var(--steel-200);
  border-radius: 8px;
  background: #fff;
}

.contact-box span {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-box a {
  color: var(--navy-950);
  font-size: 1.6rem;
  font-weight: 900;
  text-decoration: none;
}

.inquiry-form {
  padding: 28px;
  border: 1px solid var(--steel-200);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

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

label,
fieldset {
  min-width: 0;
}

label > span,
legend {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-weight: 800;
}

label b,
legend b {
  color: var(--orange-dark);
  font-size: 0.78rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--steel-300);
  border-radius: 6px;
  padding: 11px 13px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

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

.checkbox-grid label {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--steel-200);
  border-radius: 6px;
  color: #2f3c50;
  line-height: 1.45;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--orange);
}

.file-field {
  display: block;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px dashed var(--steel-300);
  border-radius: 8px;
  background: var(--steel-100);
}

.file-field small {
  color: var(--muted);
  font-weight: 600;
}

.file-field input {
  width: 100%;
  margin-top: 10px;
}

.file-field em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.file-preview-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(108px, 128px));
  gap: 10px;
  justify-content: start;
  margin-top: 14px;
}

.file-preview-grid.is-visible {
  display: grid;
}

.file-preview-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--steel-200);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(7, 21, 43, 0.06);
}

.file-preview-thumb {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(11, 31, 63, 0.08) 0%, rgba(232, 111, 24, 0.08) 100%),
    #f5f8fb;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.file-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-preview-name {
  display: block;
  padding: 8px 9px 0;
  overflow: hidden;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-preview-meta {
  display: block;
  padding: 3px 9px 9px;
  color: var(--muted);
  font-size: 0.74rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.privacy-note {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.button-submit {
  width: 100%;
}

.form-status {
  min-height: 28px;
  margin-top: 14px;
  color: var(--navy-900);
  font-weight: 700;
}

.form-success-panel {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(30, 126, 79, 0.3);
  border-left: 5px solid #1e7e4f;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(30, 126, 79, 0.1) 0%, rgba(255, 255, 255, 0.96) 74%),
    #fff;
  box-shadow: 0 16px 34px rgba(7, 21, 43, 0.08);
}

.form-success-panel[hidden] {
  display: none;
}

.success-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e7e4f;
  box-shadow: 0 8px 20px rgba(30, 126, 79, 0.22);
}

.success-mark::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  width: 10px;
  height: 18px;
  border: solid #fff;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.form-success-panel strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.45;
}

.form-success-panel p {
  margin-top: 5px;
  color: #415067;
  font-size: 0.94rem;
  line-height: 1.65;
}

.footer-cta {
  padding: 78px 0;
  background:
    linear-gradient(135deg, rgba(7, 21, 43, 0.98) 0%, rgba(11, 31, 63, 0.98) 64%, rgba(18, 49, 94, 0.96) 100%);
  color: #fff;
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.46fr);
  gap: 40px;
  align-items: center;
}

.footer-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.footer-cta p {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-contact {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
  max-width: 430px;
  justify-self: end;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.07) 58%, rgba(232, 111, 24, 0.13) 100%),
    rgba(7, 21, 43, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.footer-contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 78px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transform: translate(30px, -30px) rotate(45deg);
}

.footer-contact strong {
  color: #fff;
  font-size: clamp(1.6rem, 2.25vw, 2.08rem);
  font-weight: 700;
  line-height: 1;
}

.footer-contact a:not(.button) {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 620;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.footer-contact a[href^="tel"] {
  color: #fff;
  font-size: clamp(1.55rem, 2.25vw, 2.08rem);
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
}

.footer-contact .button {
  min-height: 56px;
  width: 100%;
  padding-inline: 16px;
  background:
    linear-gradient(180deg, #f07a19 0%, #d95f10 100%);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.16), 0 14px 30px rgba(232, 111, 24, 0.34);
  font-size: 0.96rem;
  white-space: nowrap;
}

.site-footer {
  padding: 24px 0;
  background: #050c1a;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  font-size: 0.88rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-copy {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero-grid,
  .proof-grid,
  .form-grid,
  .conversion-band,
  .footer-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-panel img {
    width: min(92vw, 700px);
    transform: translate(2%, 8px);
  }

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

  .info-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .form-copy {
    position: static;
  }

  .conversion-brand {
    padding: 20px;
    border-left-width: 5px;
  }

  .conversion-button {
    justify-self: start;
    min-width: 260px;
  }

  .footer-contact {
    justify-self: start;
    width: min(100%, 430px);
  }
}

@media (max-width: 1180px) {
  .conversion-band {
    grid-template-columns: 1fr;
  }

  .conversion-brand {
    max-width: 460px;
  }

  .conversion-button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: auto;
    padding: 12px 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .tel-link {
    font-size: 0.92rem;
  }

  .button-small {
    flex: 1;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 21, 43, 0.96) 0%, rgba(7, 21, 43, 0.86) 58%, rgba(7, 21, 43, 0.96) 100%);
  }

  .hero-network {
    width: 176%;
    bottom: 30%;
    left: -58%;
    opacity: 0.22;
  }

  .hero-grid {
    padding: 34px 0 42px;
    gap: 34px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(1.82rem, 7.2vw, 2.32rem);
    line-height: 1.22;
  }

  .hero h1 > span {
    white-space: normal;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1.06rem;
    line-height: 1.46;
  }

  .hero-sub {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .alert-strip {
    display: flex;
    flex-wrap: wrap;
    margin-top: 18px;
    padding: 12px 14px;
    font-size: 1.06rem;
    line-height: 1.55;
    white-space: normal;
  }

  .alert-strip i {
    flex-basis: 38px;
    margin-top: 0.75em;
  }

  .cta-row {
    margin-top: 20px;
  }

  .cta-row {
    display: grid;
  }

  .hero .cta-row .button {
    min-height: 54px;
    padding: 14px 18px;
    font-size: 1rem;
  }

  .hero-panel img {
    width: min(132%, 520px);
    aspect-ratio: auto;
    transform: translate(8%, 4px);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: -6px;
  }

  .section {
    padding: 62px 0;
  }

  .conversion-band {
    gap: 18px;
    padding: 24px 0;
  }

  .conversion-message h2 {
    font-size: 1.72rem;
    line-height: 1.22;
  }

  .conversion-message p {
    font-size: 0.92rem;
  }

  .conversion-brand strong {
    font-size: 2rem;
  }

  .conversion-brand a {
    font-size: 0.92rem;
  }

  .conversion-brand a[href^="tel"] {
    font-size: 1.68rem;
  }

  .conversion-button {
    width: 100%;
    min-height: 76px;
    min-width: 0;
  }

  .form-copy .form-action-copy {
    font-size: 2rem;
  }

  .form-copy .form-primary-copy {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .split-heading,
  .problem-grid,
  .feature-grid,
  .info-list,
  .category-grid,
  .kpi-grid,
  .two-columns,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 108px;
    grid-template-columns: 58px 1fr;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
  }

  .feature-icon img {
    width: 42px;
    height: 42px;
  }

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

  .flow-list li {
    min-height: 104px;
    display: grid;
    grid-template-columns: 42px 82px 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: start;
    gap: 12px;
    text-align: left;
  }

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

  .flow-list span {
    margin-bottom: 0;
  }

  .flow-list strong {
    text-align: left;
  }

  .flow-icon,
  .flow-icon img {
    width: 76px;
    height: 76px;
  }

  .footer-contact strong {
    font-size: 1.7rem;
  }

  .footer-contact a[href^="tel"] {
    font-size: 1.65rem;
  }

  .footer-copy {
    flex-basis: 100%;
    margin-left: 0;
  }

  .case-card li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .inquiry-form {
    padding: 18px;
  }

  .footer-cta {
    padding: 58px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
