:root {
  --navy: #0A0F1F;
  --blue: #1E5BFF;
  --light-blue: #39C5FF;
  --purple: #8A2BE2;
  --gray: #EEF1F6;
  --text: #182033;
  --muted: #667085;
  --line: #E4E8F0;
  --white: #FFFFFF;
  --shadow: 0 16px 36px rgba(10, 15, 31, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  line-break: strict;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--white);
  overflow-x: hidden;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(1120px, calc(100% - 48px));
}

.section {
  padding: 112px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav {
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 9px 17px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
}

.nav .nav-cta:hover {
  color: #fff;
  background: #1649d2;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  display: inline-block;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  content: "";
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(680px, calc(100vh - 78px));
  padding: 76px 0 56px;
  background:
    radial-gradient(circle at 78% 42%, rgba(30, 91, 255, 0.14) 0%, rgba(57, 197, 255, 0.09) 30%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 92% 86%, rgba(138, 43, 226, 0.13) 0%, rgba(57, 197, 255, 0.07) 34%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(90deg, rgba(247, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0.96) 45%, rgba(248, 251, 255, 0.92) 100%),
    linear-gradient(135deg, rgba(30, 91, 255, 0.06), rgba(57, 197, 255, 0.04) 45%, rgba(138, 43, 226, 0.05)),
    #fff;
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  content: "";
}

.hero::before {
  right: max(24px, calc((100vw - 1240px) / 2));
  top: 92px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(30, 91, 255, 0.14);
  border-radius: 18px;
}

.hero::after {
  right: max(62px, calc((100vw - 1160px) / 2));
  top: 144px;
  width: 155px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple));
  transform: rotate(-28deg);
  opacity: 0.48;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(420px, 0.5fr);
  gap: 0;
  align-items: start;
  width: min(1360px, calc(100% - 48px));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, 78vw);
  max-width: none;
}

h1 {
  max-width: 1180px;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(2.35rem, 3.05vw, 3.25rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 20px;
  color: #263044;
  font-size: 1.06rem;
}

.hero-lead-break {
  display: inline;
}

.hero-sub {
  position: relative;
  z-index: 3;
  margin-bottom: 34px;
  color: var(--navy);
  font-size: clamp(1.12rem, 1.6vw, 1.34rem);
  font-weight: 600;
}

.hero-actions,
.final-inner .button {
  display: inline-flex;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  margin: 0;
  z-index: 1;
}

.hero-visual::before {
  position: absolute;
  inset: -18px -18px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 16%),
    radial-gradient(circle at 14% 52%, rgba(255,255,255,0.46), rgba(255,255,255,0) 34%);
  content: "";
  z-index: 2;
}

.hero-visual img {
  width: min(56vw, 820px);
  max-width: none;
  height: auto;
  display: block;
  margin: 24px 0 0 0;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.2;
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(30, 91, 255, 0.16);
}

.button.primary:hover {
  background: #1649d2;
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 80px;
  align-items: start;
}

.section-kicker,
.section-heading {
  max-width: 980px;
}

.section-heading {
  margin-bottom: 56px;
}

.wide-heading {
  max-width: 1120px;
}

.section-heading p,
.section-kicker p,
.prose p {
  color: #3E4658;
}

.line-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.line-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 26px 0;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.6;
  border-bottom: 1px solid var(--line);
}

.line-list p {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.line-list span,
.flow-list span,
.reason-lines span {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
}

.philosophy {
  background: var(--gray);
}

.philosophy h2 {
  max-width: 1120px;
}

.prose {
  max-width: 1080px;
}

.prose p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

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

.service {
  position: relative;
  background: linear-gradient(180deg, #F8FBFF 0%, #fff 72%);
}

.service::before,
.ai-option::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--light-blue), var(--purple));
  opacity: 0.72;
  content: "";
}

.service .section-heading {
  max-width: 1060px;
}

.service .section-heading p:not(.eyebrow) {
  max-width: 1040px;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #D8E0ED;
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
  gap: 64px;
  padding: 42px 0;
  border-bottom: 1px solid #D8E0ED;
}

.service-item::before {
  position: absolute;
  left: -18px;
  top: 42px;
  bottom: 42px;
  width: 3px;
  border-radius: 999px;
  content: "";
}

.service-item.quick::before {
  background: linear-gradient(180deg, rgba(30, 91, 255, 0.7), rgba(57, 197, 255, 0.5));
}

.service-item.core::before {
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--light-blue), var(--purple));
}

.service-item.support::before {
  width: 5px;
  background: linear-gradient(180deg, rgba(57, 197, 255, 0.96), rgba(138, 43, 226, 0.94));
}

.service-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.service-main h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  line-height: 1.3;
}

.service-main p,
.service-side li {
  color: #3E4658;
}

.service-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.price {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 2.38rem);
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.service-side ul {
  display: grid;
  gap: 9px;
  padding-left: 1.1em;
  margin: 0;
}

.scope-note {
  margin: 0;
  color: #535D70;
  font-size: 0.9rem;
}

.quick-cta {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  padding: 18px;
  background: #fff;
  border: 1px solid #DDE7F6;
  border-radius: 12px;
}

.quick-cta p {
  margin: 0;
  color: #3E4658;
  font-size: 0.94rem;
}

.button.small {
  width: fit-content;
  min-height: 46px;
  padding: 11px 18px;
  font-size: 0.94rem;
}

.ai-option {
  position: relative;
  background: linear-gradient(180deg, #F2F7FF 0%, #F8FAFD 100%);
}

.ai-panel {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.ai-panel h3,
.monitor-box h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.ai-panel h3 {
  max-width: none;
}

.advisory-vision {
  margin: 0 0 18px;
  padding-left: 16px;
  color: var(--navy);
  font-size: clamp(1.06rem, 1.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.55;
  white-space: nowrap;
  border-left: 3px solid var(--blue);
}

.ai-panel p,
.monitor-box p,
.monitor-details li {
  color: #3E4658;
}

.monitor-details .monitor-note {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 600;
}

.ai-price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ai-price div {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ai-price dt {
  color: #5A6476;
  font-size: 0.86rem;
  font-weight: 500;
}

.ai-price dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.monitor-box {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: 48px;
  margin-top: 38px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.monitor-price {
  display: grid;
  gap: 16px;
  margin-bottom: 14px;
}

.monitor-regular-price p,
.monitor-free-price small,
.monitor-monthly {
  margin: 0;
}

.monitor-regular-price {
  display: grid;
  gap: 2px;
}

.monitor-details .monitor-regular-price p {
  color: #667085;
  font-size: 0.84rem;
  line-height: 1.6;
}

.monitor-regular-price p:first-child {
  font-size: 0.78rem;
  font-weight: 600;
}

.monitor-regular-price del {
  color: #667085;
}

.monitor-free-price {
  display: grid;
  justify-items: start;
  gap: 4px;
}

.monitor-free-price strong {
  color: var(--blue);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
}

.monitor-free-price > small:not(.monitor-limited-label) {
  color: #475467;
  font-size: 0.84rem;
  font-weight: 500;
}

.monitor-limited-label {
  width: fit-content;
  margin-top: 2px !important;
  padding: 3px 8px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.4;
  border: 1px solid #DCE5F4;
  border-radius: 999px;
}

.monitor-details .monitor-scope-note {
  margin-top: 6px;
  color: #667085;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.6;
}

.monitor-monthly {
  color: var(--navy);
  font-weight: 600;
}

.monitor-details ul {
  display: grid;
  gap: 8px;
  padding-left: 1.1em;
  margin: 16px 0;
}

.monitor-details p {
  margin: 0;
  font-size: 0.92rem;
}

.monitor-button {
  width: fit-content;
}

.outcomes {
  background:
    linear-gradient(180deg, #fff 0%, #F8FAFD 100%);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 28px;
  border-top: 1px solid var(--line);
}

.outcome-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.outcome-list i {
  position: relative;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
}

.outcome-list i::after {
  position: absolute;
  left: 5px;
  top: 4px;
  width: 6px;
  height: 9px;
  border-right: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(40deg);
  content: "";
}

.story {
  background: #fff;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.9fr);
  grid-template-areas:
    "copy profile"
    "visual card";
  column-gap: 68px;
  row-gap: 14px;
  align-items: stretch;
}

.story-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: none;
}

.story-profile {
  grid-area: profile;
  width: 100%;
  margin: 0;
  align-self: start;
}

.story-visual {
  grid-area: visual;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 0;
  margin: -110px 0 0;
  overflow: hidden;
  align-self: stretch;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(10, 15, 31, 0.045);
}

.story-visual::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.34) 48%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
}

.story-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
}

.story-profile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(10, 15, 31, 0.08);
}

.profile-card {
  grid-area: card;
  width: 100%;
  align-self: stretch;
  padding: 19px 20px;
  background: #fff;
  border: 1px solid rgba(228, 232, 240, 0.76);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(10, 15, 31, 0.032);
}

.profile-card p {
  margin: 0;
  color: #3E4658;
  font-size: 0.9rem;
  line-height: 1.72;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

.profile-summary {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.profile-name {
  color: var(--navy);
  font-weight: 600;
}

.profile-label {
  margin-top: 16px !important;
  color: var(--blue) !important;
  font-size: 0.86rem !important;
  font-weight: 700;
}

.profile-name span {
  color: #5A6476;
  font-weight: 500;
}

.profile-card ul {
  display: grid;
  gap: 6px;
  padding-left: 1.1em;
  margin: 8px 0 0;
  color: #3E4658;
  font-size: 0.9rem;
}

.profile-card li {
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

.reason {
  background: var(--gray);
}

.reason .section-heading {
  max-width: 1180px;
}

.reason h2 {
  max-width: 1180px;
}

.reason-lines {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(10, 15, 31, 0.16);
  border-left: 1px solid rgba(10, 15, 31, 0.16);
}

.reason-lines div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  border-right: 1px solid rgba(10, 15, 31, 0.16);
  border-bottom: 1px solid rgba(10, 15, 31, 0.16);
}

.reason-lines p {
  margin: 0;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.65;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 0;
  margin: 0 0 36px;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.flow .section-heading {
  max-width: 1120px;
}

.flow-list li {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  color: var(--navy);
  font-weight: 500;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.consultation-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.consultation-box div {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.consultation-box h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.consultation-box p {
  margin: 0;
  color: #3E4658;
}

.flow-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding: 24px;
  background: #F8FBFF;
  border: 1px solid #DDE7F6;
  border-radius: 14px;
}

.flow-cta p {
  margin: 0;
  color: #3E4658;
}

.faq-section {
  background: #fff;
}

.faq-list {
  max-width: 880px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
  color: #3E4658;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: #fff;
  background: var(--navy);
}

.final-cta::after {
  position: absolute;
  right: 10%;
  top: 50%;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, var(--light-blue), var(--purple));
  transform: rotate(-25deg);
  opacity: 0.6;
  content: "";
}

.final-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.final-cta h2,
.final-cta .eyebrow {
  color: #fff;
}

.final-cta .eyebrow::before {
  background: linear-gradient(90deg, var(--light-blue), var(--purple));
}

.final-cta p {
  max-width: 680px;
  margin-bottom: 30px;
  color: #D7DEEA;
  font-size: 1.08rem;
}

.site-footer {
  padding: 34px 0 30px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  color: #5A6476;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.business-info {
  max-width: 880px;
}

.business-info h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 700;
}

.business-info p {
  color: #4B5565;
  font-size: 0.86rem;
  line-height: 1.75;
}

@media (max-width: 1020px) {
  .nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .brand img {
    width: 154px;
  }

  .two-column,
  .service-item,
  .hero-inner,
  .monitor-box {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .story-layout {
    grid-template-areas:
      "copy"
      "visual"
      "profile"
      "card";
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-visual {
    margin-top: -30px;
  }

  .story-profile,
  .profile-card {
    width: min(100%, 320px);
    max-width: 320px;
    justify-self: center;
  }

  .profile-card {
    margin-top: -16px;
  }

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

  .hero-lead,
  .hero-sub {
    max-width: 100%;
    min-width: 0;
  }

  .hero-sub {
    white-space: normal;
  }

  .hero-visual img {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .business-info {
    max-width: none;
  }
}

@media (min-width: 1021px) {
  .hero-sub {
    white-space: nowrap;
  }

  .philosophy h2,
  .flow .section-heading h2,
  .outcomes .section-heading h2,
  .reason .section-heading h2 {
    white-space: nowrap;
  }

  .philosophy .prose p:nth-child(1),
  .philosophy .prose p:nth-child(2) {
    white-space: nowrap;
  }
}

@media (min-width: 1280px) {
  h1 {
    max-width: 1180px;
    font-size: 2.68rem;
    white-space: nowrap;
  }

  .ai-panel h3 {
    white-space: nowrap;
  }
}

@media (min-width: 1440px) {
  h1 {
    max-width: 1120px;
    font-size: 2.88rem;
    white-space: nowrap;
  }

  .hero-copy {
    width: 1120px;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(1120px, calc(100% - 30px));
  }

  .section {
    padding: 76px 0;
  }

  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
    gap: 12px;
  }

  .brand img {
    width: 150px;
  }

  .nav {
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 84px 0 78px;
  }

  .hero-inner {
    width: min(100%, calc(100% - 30px));
    max-width: 100%;
    overflow: visible;
  }

  .hero-copy,
  .hero-actions {
    width: 100%;
    max-width: calc(100vw - 30px);
  }

  .hero-lead,
  .hero-sub {
    width: 100%;
    max-width: min(100%, 310px);
  }

  .hero-lead {
    white-space: normal;
    line-break: anywhere;
    text-wrap: wrap;
  }

  .hero-lead-break {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
    text-wrap: wrap;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    display: none;
  }

  h1 {
    font-size: 1.9rem;
    line-height: 1.18;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-lead,
  .final-cta p {
    font-size: 1rem;
  }

  h1,
  .hero-lead,
  .hero-sub {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .eyebrow {
    font-size: 0.84rem;
    gap: 9px;
  }

  .eyebrow::before {
    width: 28px;
  }

  .service-label {
    font-size: 0.84rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    order: 2;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-visual img {
    max-width: 100%;
    margin: 0 auto;
  }

  .button {
    width: 100%;
  }

  .button.small,
  .monitor-button {
    width: 100%;
  }

  .line-list li {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .line-list span {
    display: block;
    margin-bottom: 8px;
  }

  .line-list li,
  .line-list p,
  .prose p,
  .section-heading p,
  .section-kicker p,
  .service-main p,
  .service-side li,
  .monitor-details li,
  .faq-list p {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .service-item {
    padding: 34px 0;
  }

  .service-item.featured::before {
    left: 0;
    top: 28px;
    bottom: auto;
    width: 72px;
    height: 3px;
  }

  .service-item::before {
    left: 0;
    top: 28px;
    bottom: auto;
    width: 72px;
    height: 3px;
  }

  .service-item.core::before {
    width: 92px;
    height: 4px;
  }

  .service-item.support::before {
    width: 92px;
    height: 4px;
  }

  .line-list li {
    font-size: 1.06rem;
  }

  .line-list span {
    font-size: 0.86rem;
  }

  .outcome-list,
  .consultation-box,
  .ai-price {
    grid-template-columns: 1fr;
  }

  .advisory-vision {
    white-space: normal;
  }

  .flow-cta {
    align-items: stretch;
    flex-direction: column;
  }

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

  .reason-lines div,
  .flow-list li {
    min-height: auto;
  }

  .final-cta {
    padding: 78px 0;
  }

  .footer-inner {
    align-items: start;
    gap: 18px;
  }

  .story-profile,
  .profile-card {
    width: min(100%, 300px);
    max-width: 300px;
  }

  .profile-card {
    padding: 18px;
  }

  .business-info p {
    font-size: 0.84rem;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow,
  .hero-inner {
    width: min(280px, calc(100% - 30px));
    max-width: 280px;
  }

  .hero-copy,
  .hero-lead,
  .hero-sub,
  .hero-actions {
    max-width: 100%;
  }
}
