:root {
  --blue: #006df0;
  --blue-2: #12a8ff;
  --navy: #061936;
  --text: #071a35;
  --muted: #31415a;
  --line: rgba(0, 109, 240, 0.18);
  --shadow: 0 12px 28px rgba(4, 43, 89, 0.13);
  --gradient: linear-gradient(135deg, #006df0 0%, #08a7ff 100%);
  --page-bg:
    radial-gradient(circle at 0% 30%, rgba(0, 109, 240, 0.09) 0 150px, transparent 151px),
    radial-gradient(circle at 100% 8%, rgba(0, 109, 240, 0.1) 0 210px, transparent 211px),
    radial-gradient(circle at 100% 86%, rgba(0, 109, 240, 0.08) 0 190px, transparent 191px),
    linear-gradient(180deg, #fbfdff 0%, #f4f9ff 48%, #fbfdff 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  letter-spacing: 0;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes mobileCtaFloatIn {
  from {
    opacity: 0;
    transform: translateY(120%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lead,
.hero-title,
.hero-description,
.benefit-list,
.hero-actions {
  animation: fadeUp 0.7s ease both;
}

.hero-lead {
  animation-delay: 0.08s;
}

h1 {
  animation: fadeUp 0.78s ease 0.16s both;
}

.hero-description {
  animation-delay: 0.24s;
}

.benefit-list {
  animation-delay: 0.32s;
}

.hero-actions {
  animation-delay: 0.4s;
}

.hero-people {
  animation: fadeInScale 0.9s ease 0.18s both;
}

.hero-diagram {
  animation: fadeInScale 0.9s ease 0.3s both;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease var(--reveal-delay, 0ms),
    transform 0.7s ease var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.worry-card,
.strength-card,
.support-card,
.business-stat-card,
.business-market-card,
.cta-panel {
  transition:
    opacity 0.7s ease var(--reveal-delay, 0ms),
    transform 0.7s ease var(--reveal-delay, 0ms),
    box-shadow 0.24s ease;
}

.worry-card:hover,
.strength-card:hover,
.support-card:hover,
.business-stat-card:hover,
.business-market-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(16, 54, 94, 0.15);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 84px;
  padding: 0 38px;
  background: rgba(255, 255, 255, 0);
  box-shadow: none;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(5, 27, 56, 0.06), 0 12px 26px rgba(5, 27, 56, 0.08);
  backdrop-filter: blur(12px);
}

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

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

.brand-badge {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 21px;
  margin-left: -2px;
  border: 2px solid var(--blue);
  border-radius: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.global-nav a {
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-button svg {
  width: 17px;
  height: 17px;
}

.header-button--outline {
  min-width: 118px;
  padding: 0 18px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: #fff;
}

.header-button--primary {
  min-width: 184px;
  padding: 0 20px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 22px rgba(0, 109, 240, 0.22);
}

.header-button {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

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

.header-button--outline:hover {
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
  box-shadow: 0 12px 24px rgba(0, 109, 240, 0.2);
}

.header-button--primary:hover {
  box-shadow: 0 16px 28px rgba(0, 109, 240, 0.3);
  filter: brightness(1.04);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 31;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(0, 109, 240, 0.36);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    top 0.22s ease;
}

.menu-toggle span:nth-child(1) {
  top: 13px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 68px;
  right: 16px;
  left: 16px;
  z-index: 30;
  display: none;
  padding: 18px;
  border: 1px solid rgba(0, 109, 240, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(6, 25, 54, 0.14);
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.mobile-menu nav {
  display: grid;
  gap: 2px;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  min-height: 43px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.mobile-menu nav a:hover {
  color: var(--blue);
  background: #f0f7ff;
}

.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.mobile-menu-actions .header-button {
  width: 100%;
  min-width: 0;
}

body.is-menu-open {
  overflow: hidden;
}

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

.mobile-title-break,
.mobile-cta-break,
.mobile-solution-break {
  display: none;
}

.hero-description-mobile {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("./assets/fv-bg.png");
  background-size: cover;
  background-position: center bottom;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0) 78%),
    radial-gradient(circle at 48% 50%, rgba(255, 255, 255, 0.42) 0, rgba(255, 255, 255, 0) 34%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(930px, 58vw);
  padding: clamp(118px, 16vh, 178px) 0 0 62px;
}

.hero-lead {
  margin: 0 0 clamp(12px, 2vh, 21px);
  color: var(--navy);
  font-size: clamp(20px, 1.75vw, 30px);
  font-weight: 900;
  line-height: 1.42;
}

.hero-lead span,
.accent {
  color: var(--blue);
}

.hero-lead-logos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  vertical-align: middle;
}

.hero-lead-logos img {
  display: block;
  width: 132px;
  height: auto;
  object-fit: contain;
}

.hero-lead-logos b {
  color: var(--blue);
  font-size: 0.78em;
  font-weight: 900;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
}

h1 > span {
  display: block;
}

.title-main {
  font-size: clamp(54px, 4.8vw, 80px);
  line-height: 1.1;
}

.title-sub {
  margin-top: clamp(4px, 0.8vh, 7px);
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 1.25;
}

.hero-description {
  margin: clamp(15px, 2.6vh, 27px) 0 0;
  color: var(--text);
  font-size: clamp(14px, 1.08vw, 18px);
  font-weight: 800;
  line-height: 1.75;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(112px, 1fr));
  gap: 12px;
  width: min(768px, calc(100vw - 124px));
  margin: clamp(14px, 2.5vh, 25px) 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: clamp(112px, 15vh, 150px);
  padding: clamp(12px, 1.8vh, 18px) 10px clamp(10px, 1.6vh, 16px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(9, 49, 94, 0.11);
  text-align: center;
}

.benefit-list svg {
  width: clamp(34px, 4.5vh, 43px);
  height: clamp(34px, 4.5vh, 43px);
  margin-bottom: clamp(7px, 1.4vh, 13px);
  color: var(--blue);
}

.benefit-list span {
  font-size: clamp(13px, 1.7vh, 16px);
  font-weight: 900;
  line-height: 1.58;
}

.benefit-logo-pair {
  display: grid;
  justify-items: center;
  gap: 0;
}

.benefit-logo-pair span {
  color: var(--blue);
  font-size: clamp(12px, 1.55vh, 15px);
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.benefit-logo-pair b {
  color: var(--blue);
  font-size: 0.78em;
  font-weight: 900;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: clamp(18px, 3vh, 37px);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: clamp(54px, 7vh, 70px);
  border-radius: 40px;
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    filter 0.2s ease;
}

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

.hero-button svg:first-child {
  width: clamp(24px, 3.4vh, 32px);
  height: clamp(24px, 3.4vh, 32px);
}

.hero-button svg:last-child {
  width: 25px;
  height: 25px;
}

.hero-button--primary {
  min-width: 340px;
  padding: 0 28px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 15px 28px rgba(0, 109, 240, 0.26);
}

.hero-button--primary:hover {
  box-shadow: 0 20px 34px rgba(0, 109, 240, 0.34);
  filter: brightness(1.04);
}

.hero-button--outline {
  min-width: 306px;
  padding: 0 26px;
  border: 1.5px solid rgba(0, 109, 240, 0.78);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
}

.hero-button--outline:hover {
  color: #fff;
  border-color: transparent;
  background: var(--gradient);
  box-shadow: 0 16px 28px rgba(0, 109, 240, 0.22);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-people {
  position: absolute;
  right: 285px;
  bottom: -4px;
  width: auto;
  height: min(810px, calc(100svh - 78px));
  filter: drop-shadow(0 20px 32px rgba(4, 31, 66, 0.12));
}

.hero-diagram {
  position: absolute;
  right: 45px;
  top: clamp(118px, 17vh, 178px);
  width: min(250px, 15vw);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(0, 83, 178, 0.16));
}

.worries {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 84px;
  padding: 118px 0 34px;
  background: var(--page-bg);
  background-attachment: fixed;
  background-size: cover;
}

.worries::before,
.worries::after {
  position: absolute;
  width: 150px;
  height: 150px;
  content: "";
  background-image: radial-gradient(rgba(0, 109, 240, 0.34) 1.6px, transparent 1.7px);
  background-size: 16px 16px;
  opacity: 0.68;
}

.worries::before {
  top: 27px;
  left: 32px;
}

.worries::after {
  right: 52px;
  bottom: 31px;
}

.worries-inner {
  position: relative;
  z-index: 1;
  width: min(1370px, calc(100% - 150px));
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
}

.section-kicker span {
  color: var(--blue);
}

.worries h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--navy);
  font-size: clamp(40px, 3.45vw, 56px);
  font-weight: 900;
  line-height: 1.46;
}

.worries h2::before,
.worries h2::after {
  position: absolute;
  top: 102px;
  width: 4px;
  height: 96px;
  border-radius: 99px;
  content: "";
  background: #2f82ff;
}

.worries h2::before {
  left: -72px;
  transform: rotate(-27deg);
  box-shadow: 18px 11px 0 rgba(47, 130, 255, 0.72);
}

.worries h2::after {
  right: -72px;
  transform: rotate(27deg);
  box-shadow: -18px 11px 0 rgba(47, 130, 255, 0.72);
}

.worries h2 span {
  color: var(--blue);
  font-size: 1.12em;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 28px;
}

.worry-card {
  display: grid;
  grid-template-columns: 142px 1fr;
  align-items: center;
  min-height: 184px;
  padding: 22px 28px 22px 20px;
  border: 1px solid rgba(223, 232, 242, 0.92);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(16, 54, 94, 0.12);
  text-align: left;
}

.worry-card img {
  width: 126px;
  height: 126px;
  object-fit: contain;
}

.worry-card p {
  position: relative;
  margin: 0;
  padding-left: 36px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.66;
}

.worry-card p::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  content: "✓";
  background: var(--blue);
}

.worry-card span {
  color: var(--blue);
}

.down-arrows {
  position: relative;
  width: 58px;
  height: 44px;
  margin: 25px auto 13px;
}

.down-arrows i {
  position: absolute;
  left: 50%;
  display: block;
  width: 34px;
  height: 34px;
  border-right: 6px solid #58a7ff;
  border-bottom: 6px solid #58a7ff;
  transform: translateX(-50%) rotate(45deg);
}

.down-arrows i:first-child {
  top: -4px;
}

.down-arrows i:last-child {
  top: 13px;
}

.solution-line {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 900;
  line-height: 1.45;
}

.solution-line::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 210px;
  z-index: -1;
  height: 16px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 216, 75, 0.58);
}

.solution-line span {
  color: var(--blue);
  font-size: 1.18em;
}

.support {
  position: relative;
  overflow: hidden;
  padding: 58px 0 28px;
  background: var(--page-bg);
  background-attachment: fixed;
  background-size: cover;
}

.support::before,
.support::after {
  position: absolute;
  width: 150px;
  height: 150px;
  content: "";
  background-image: radial-gradient(rgba(0, 109, 240, 0.34) 1.6px, transparent 1.7px);
  background-size: 16px 16px;
  opacity: 0.68;
}

.support::before {
  top: 18px;
  left: 18px;
}

.support::after {
  right: 66px;
  bottom: 45px;
}

.support-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(400px, 0.8fr) minmax(540px, 1.2fr);
  align-items: start;
  gap: 42px;
  width: min(1370px, calc(100% - 150px));
  margin: 0 auto;
}

.support-copy {
  padding-top: 38px;
}

.support-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 19px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.support-kicker span {
  display: inline-block;
  width: 26px;
  height: 8px;
  border-top: 3px solid #2f82ff;
  border-bottom: 0;
  position: relative;
}

.support-kicker span::after {
  position: absolute;
  top: -6px;
  right: -13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #2f82ff;
}

.support h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 3.1vw, 52px);
  font-weight: 900;
  line-height: 1.2;
}

.support h2 span {
  color: #4286f5;
}

.support-description {
  margin: 26px 0 0;
  color: #062364;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.75;
}

.support-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding: 18px 24px 18px 20px;
  border-top: 2px solid rgba(0, 109, 240, 0.18);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(227, 241, 255, 0.82), rgba(237, 247, 255, 0.74));
}

.support-card-icon {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 79, 166, 0.12);
}

.support-card-icon svg {
  width: 52px;
  height: 52px;
  color: var(--blue);
}

.support-card h3 {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
}

.support-card p {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.support-bottom {
  position: relative;
  display: inline-block;
  grid-column: 1 / -1;
  justify-self: start;
  margin: 18px 0 0 34px;
  color: var(--navy);
  font-size: clamp(22px, 1.75vw, 28px);
  font-weight: 900;
  line-height: 1.45;
}

.support-bottom br {
  display: none;
}

.support-bottom::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  z-index: -1;
  height: 13px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 216, 75, 0.58);
}

.support-bottom span {
  color: var(--blue);
  font-size: 1.28em;
}

.support-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.support-visual--mobile {
  display: none;
}

.support-visual img {
  display: block;
  width: min(700px, 100%);
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(0, 67, 146, 0.08));
}

.cta-section {
  padding: 58px 24px 68px;
  background: var(--page-bg);
  background-attachment: fixed;
  background-size: cover;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  width: min(1624px, 100%);
  min-height: 430px;
  margin: 0 auto;
  padding: 104px 56px 72px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  background: url("./assets/cta-bg.png") center / cover no-repeat;
  box-shadow: 0 18px 42px rgba(6, 25, 54, 0.16);
}

.cta-panel::after {
  display: none;
}

.cta-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}

.cta-kicker > span:first-child,
.cta-kicker > span:last-child {
  width: 64px;
  height: 1px;
  background: rgba(255, 255, 255, 0.82);
}

.cta-kicker span:not(:first-child):not(:last-child) {
  color: #fff;
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 3.6vw, 60px);
  font-weight: 900;
  line-height: 1.25;
}

.cta-panel h2 span {
  color: #fff;
}

.cta-text {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1230px, 100%);
  margin: 54px auto 0;
}

.cta-actions .hero-button {
  min-width: 0;
  width: 100%;
  min-height: 72px;
  font-size: 18px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  border-radius: 999px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.cta-button--line {
  background: linear-gradient(135deg, #04bf35 0%, #18d546 100%);
  box-shadow: 0 15px 28px rgba(1, 172, 54, 0.26);
}

.cta-button--line:hover {
  box-shadow: 0 20px 34px rgba(1, 172, 54, 0.34);
}

.line-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #06c755;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

.cta-button svg {
  width: 24px;
  height: 24px;
}

.cta-outline-button {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
}

.strengths {
  position: relative;
  overflow: hidden;
  padding: 48px 0 66px;
  background: var(--page-bg);
  background-attachment: fixed;
  background-size: cover;
}

.strengths::before,
.strengths::after {
  position: absolute;
  width: 140px;
  height: 140px;
  content: "";
  background-image: radial-gradient(rgba(0, 109, 240, 0.34) 1.5px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.62;
}

.strengths::before {
  top: 14px;
  left: calc(50% - 520px);
}

.strengths::after {
  right: calc(50% - 520px);
  bottom: 22px;
}

.strengths-inner {
  position: relative;
  z-index: 1;
  width: min(1370px, calc(100% - 150px));
  margin: 0 auto;
}

.strengths-kicker {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.08em;
}

.strengths h2 {
  position: relative;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.strengths h2::before,
.strengths h2::after {
  position: absolute;
  top: 46px;
  width: 3px;
  height: 56px;
  border-radius: 999px;
  content: "";
  background: #5aa3ff;
}

.strengths h2::before {
  left: 112px;
  transform: rotate(27deg);
  box-shadow: 13px 9px 0 rgba(90, 163, 255, 0.65);
}

.strengths h2::after {
  right: 112px;
  transform: rotate(-27deg);
  box-shadow: -13px 9px 0 rgba(90, 163, 255, 0.65);
}

.strengths h2 span {
  color: var(--blue);
}

.strength-list {
  display: grid;
  gap: 26px;
  margin-top: 31px;
}

.strength-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  min-height: 292px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(16, 54, 94, 0.11);
}

.strength-card::after {
  position: absolute;
  top: -22%;
  bottom: -22%;
  left: 52%;
  width: 38px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(180deg, rgba(0, 109, 240, 0.68), rgba(131, 199, 255, 0.3));
  transform: rotate(14deg);
}

.strength-card--reverse::after {
  left: auto;
  right: 52%;
  transform: rotate(-14deg);
}

.strength-card--reverse .strength-content {
  order: 2;
}

.strength-card--reverse .strength-image {
  order: 1;
}

.strength-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-content: center;
  align-items: start;
  column-gap: 22px;
  min-width: 0;
  overflow: hidden;
  padding: 44px 58px 42px 54px;
}

.strength-number {
  position: absolute;
  top: 50%;
  left: 112px;
  z-index: 0;
  margin: 0;
  color: rgba(0, 109, 240, 0.08);
  font-size: 180px;
  font-weight: 900;
  line-height: 0.82;
  transform: translateY(-50%);
}

.strength-icon,
.strength-text {
  position: relative;
  z-index: 1;
}

.strength-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--blue);
  background: #f0f7ff;
}

.strength-icon svg {
  width: 30px;
  height: 30px;
}

.strength-text h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.36;
}

.strength-text h3 span {
  color: var(--blue);
}

.strength-text p {
  margin: 0;
  color: #23334d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
}

.strength-image {
  min-height: 292px;
}

.strength-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: cover;
}

.business-appeal {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 84px;
  padding: 92px 0 82px;
  background: var(--page-bg);
  background-attachment: fixed;
  background-size: cover;
}

.business-appeal::before,
.business-appeal::after {
  position: absolute;
  width: 150px;
  height: 150px;
  content: "";
  background-image: radial-gradient(rgba(0, 109, 240, 0.34) 1.6px, transparent 1.7px);
  background-size: 16px 16px;
  opacity: 0.58;
}

.business-appeal::before {
  top: 18px;
  left: 24px;
}

.business-appeal::after {
  right: 86px;
  bottom: 14px;
}

.business-appeal-inner {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 120px));
  margin: 0 auto;
}

.business-appeal-inner::before,
.business-appeal-inner::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  background: rgba(0, 109, 240, 0.08);
}

.business-appeal-inner::before {
  top: -190px;
  right: -120px;
  width: 290px;
  height: 290px;
}

.business-appeal-inner::after {
  bottom: 168px;
  left: -190px;
  width: 270px;
  height: 270px;
}

.business-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.04em;
}

.business-kicker span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #5aa3ff;
}

.business-appeal h2 {
  position: relative;
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.55vw, 57px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.business-appeal h2::before,
.business-appeal h2::after {
  position: absolute;
  top: 96px;
  width: 3px;
  height: 56px;
  border-radius: 999px;
  content: "";
  background: #5aa3ff;
}

.business-appeal h2::before {
  left: 222px;
  transform: rotate(-28deg);
  box-shadow: 14px -9px 0 rgba(90, 163, 255, 0.62);
}

.business-appeal h2::after {
  right: 222px;
  transform: rotate(28deg);
  box-shadow: -14px -9px 0 rgba(90, 163, 255, 0.62);
}

.business-appeal h2 mark {
  position: relative;
  display: inline-block;
  color: inherit;
  background: transparent;
}

.business-appeal h2 mark::after {
  position: absolute;
  right: -18px;
  bottom: 11px;
  left: -18px;
  z-index: -1;
  height: 15px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 219, 73, 0.55);
}

.business-appeal h2 span {
  color: var(--blue);
}

.business-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.business-stat-card {
  min-height: 332px;
  padding: 28px 24px 27px;
  border: 1px solid rgba(0, 109, 240, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(16, 54, 94, 0.1);
}

.business-stat-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--blue);
  background: #eef6ff;
}

.business-stat-icon svg {
  width: 34px;
  height: 34px;
}

.business-stat-card h3 {
  margin: 16px 0 12px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.business-stat-number {
  margin: 0;
  color: var(--blue);
  font-size: clamp(44px, 4.35vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.business-stat-number span {
  font-size: 0.58em;
}

.business-stat-number--text {
  font-size: clamp(39px, 3.65vw, 58px);
  white-space: nowrap;
}

.business-stat-label {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.45;
}

.business-stat-text {
  margin: 19px 0 0;
  color: #23334d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.business-stat-metric {
  display: block;
}

.business-market-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.34fr) minmax(620px, 0.66fr);
  gap: 34px;
  margin-top: 24px;
  padding: 28px 34px 26px;
  border: 1px solid rgba(0, 109, 240, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(16, 54, 94, 0.1);
}

.business-market-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.56;
}

.business-market-copy h3 span {
  color: var(--blue);
}

.business-market-copy > p {
  margin: 18px 0 0;
  color: #23334d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.business-market-note {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
  padding: 17px 20px;
  border: 1.5px solid rgba(0, 109, 240, 0.34);
  border-radius: 10px;
  background: rgba(248, 252, 255, 0.95);
}

.business-market-note-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
}

.business-market-note-icon svg {
  width: 36px;
  height: 36px;
}

.business-market-note h4 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.business-market-note p {
  margin: 0;
  color: #23334d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.business-chart-wrap {
  position: relative;
  min-width: 0;
  padding: 2px 158px 0 0;
}

.business-chart-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.business-chart-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.business-chart-head span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #45617f;
  font-size: 11px;
  font-weight: 800;
}

.business-chart-head span::before {
  width: 13px;
  height: 13px;
  border-radius: 2px;
  content: "";
  background: var(--gradient);
}

.business-chart-scroll {
  overflow-x: auto;
  padding-bottom: 7px;
}

.business-chart-scroll-note {
  display: none;
}

.business-chart {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(520px, 1fr);
  min-width: 566px;
  height: 216px;
}

.business-chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 9px 31px 0;
  color: #38516e;
  font-size: 10px;
  font-weight: 800;
  text-align: right;
}

.business-chart-bars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 14px;
  padding: 18px 0 31px;
  border-bottom: 1px solid rgba(6, 25, 54, 0.22);
  background-image: repeating-linear-gradient(
    to top,
    rgba(6, 25, 54, 0.08) 0,
    rgba(6, 25, 54, 0.08) 1px,
    transparent 1px,
    transparent 29px
  );
}

.business-chart-separator {
  position: absolute;
  top: 12px;
  bottom: 31px;
  left: calc((100% / 12) * 7 - 7px);
  width: 1px;
  border-left: 1px dashed rgba(6, 25, 54, 0.28);
  content: "";
}

.business-bar {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100%;
}

.business-bar i {
  display: block;
  width: min(34px, 72%);
  height: var(--bar-height);
  border-radius: 3px 3px 0 0;
  background: var(--gradient);
  box-shadow: inset 0 13px 18px rgba(255, 255, 255, 0.18);
}

.business-bar--forecast i {
  background: linear-gradient(180deg, #bed8ff 0%, #e4efff 100%);
}

.business-bar span {
  position: absolute;
  bottom: calc(var(--bar-height) + 20px);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.business-bar b {
  position: absolute;
  bottom: -24px;
  color: #263b58;
  font-size: 11px;
  font-weight: 900;
}

.business-chart-badge {
  position: absolute;
  right: -6px;
  top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  width: 112px;
  height: 112px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 22px rgba(0, 109, 240, 0.08);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.business-chart-badge span {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.business-chart-foot {
  display: contents;
}

.business-chart-source {
  margin: 9px 0 0;
  color: #5f7289;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
}

.lp-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 84px;
  padding: 88px 0;
  background: var(--page-bg);
  background-attachment: fixed;
  background-size: cover;
}

.lp-section::before,
.lp-section::after {
  position: absolute;
  width: 140px;
  height: 140px;
  content: "";
  background-image: radial-gradient(rgba(0, 109, 240, 0.3) 1.5px, transparent 1.6px);
  background-size: 15px 15px;
  opacity: 0.56;
}

.lp-section::before {
  top: 24px;
  left: 24px;
}

.lp-section::after {
  right: 60px;
  bottom: 20px;
}

.lp-section-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 120px));
  margin: 0 auto;
}

.lp-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
}

.lp-kicker--left {
  justify-content: flex-start;
}

.lp-kicker span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #5aa3ff;
}

.lp-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.lp-kicker--left + h2,
.first-cost-copy h2,
.area-copy h2 {
  text-align: left;
}

.lp-section h2 span {
  color: var(--blue);
}

.lp-lead {
  width: min(760px, 100%);
  margin: 22px auto 0;
  color: #23334d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}

.first-cost-copy .lp-lead,
.area-copy .lp-lead {
  margin-left: 0;
  text-align: left;
}

.problem-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.problem-card,
.case-card,
.plan-card,
.cost-table-card,
.faq-grid details {
  border: 1px solid rgba(0, 109, 240, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(16, 54, 94, 0.1);
}

.problem-card,
.case-card-body {
  min-height: 260px;
  padding: 26px 22px;
}

.case-card {
  overflow: hidden;
}

.problem-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--blue);
  background: #eef6ff;
}

.problem-icon svg {
  width: 32px;
  height: 32px;
}

.problem-card-head {
  display: block;
}

.case-card-image {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eaf4ff;
}

.case-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.case-card:hover .case-card-image img {
  transform: scale(1.04);
}

.problem-number {
  margin: 18px 0 8px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
}

.problem-card h3,
.case-card h3,
.plan-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.problem-card p:not(.problem-number),
.case-card p,
.plan-card p,
.plan-card li {
  color: #23334d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.problem-solution {
  width: min(760px, 100%);
  margin: 34px auto 0;
  padding: 18px 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 14px 28px rgba(0, 109, 240, 0.22);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.problem-solution span {
  color: #fff;
}

.first-cost-inner,
.area-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.area-strategy {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  width: min(1280px, calc(100% - 96px));
  gap: 34px;
}

.first-cost-copy h2 {
  font-size: clamp(28px, 2.8vw, 42px);
}

.case-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.model-inner {
  width: min(1280px, calc(100% - 96px));
}

.fee-card {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(260px, auto) 1fr;
  align-items: center;
  gap: 28px;
  width: min(860px, 100%);
  margin: 28px auto 0;
  padding: 22px 32px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 30px rgba(16, 54, 94, 0.11);
}

.fee-card::after {
  position: absolute;
  bottom: -23px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 16px solid #3187f7;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  content: "";
  transform: translateX(-50%);
}

.fee-card span {
  display: inline-flex;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 7px;
  color: #fff;
  background: var(--gradient);
  font-size: 18px;
  font-weight: 900;
}

.fee-card strong {
  display: block;
  color: var(--blue);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.fee-card small {
  font-size: 0.36em;
}

.fee-card p {
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(0, 109, 240, 0.24);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.75;
}

.plan-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 54px;
}

.plan-card {
  overflow: hidden;
  padding: 0 28px 28px;
  border: 2px solid rgba(0, 109, 240, 0.8);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 28px rgba(16, 54, 94, 0.1);
}

.plan-card--primary {
  border-color: transparent;
  background: #fff;
}

.plan-card--primary .plan-head {
  margin: 0 -28px 0;
  padding: 20px 28px;
  color: #fff;
  background: var(--gradient);
}

.plan-head {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
}

.plan-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
}

.plan-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.3;
}

.plan-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}

.plan-card--primary h3 {
  color: #fff;
}

.plan-card--primary .plan-tag {
  color: #fff;
}

.plan-tag {
  display: inline-flex;
  justify-content: center;
  min-width: 200px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.plan-card:not(.plan-card--primary) .plan-tag {
  border-color: rgba(0, 109, 240, 0.35);
  color: var(--blue);
  background: #fff;
}

.plan-lead {
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
}

.plan-card table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(0, 109, 240, 0.16);
}

.plan-card th,
.plan-card td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0, 109, 240, 0.16);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  text-align: left;
}

.plan-card th {
  width: 30%;
  background: #edf5ff;
}

.plan-card td {
  background: #fff;
}

.model-consult-card {
  display: grid;
  grid-template-columns: 110px minmax(340px, auto) 1fr auto;
  align-items: center;
  gap: 26px;
  margin-top: 28px;
  padding: 22px 26px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 30px rgba(16, 54, 94, 0.11);
}

.model-plan-note {
  width: min(880px, 100%);
  margin: 22px auto 0;
  padding: 16px 22px;
  border: 1px solid rgba(0, 109, 240, 0.18);
  border-radius: 10px;
  color: var(--navy);
  background: rgba(238, 247, 255, 0.92);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
}

.model-plan-note span {
  color: var(--blue);
}

.model-consult-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 64px;
  color: var(--blue);
}

.model-consult-icon svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.8;
}

.model-consult-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.model-consult-card h3 span {
  color: var(--blue);
}

.model-consult-card p {
  margin: 0;
  color: #23334d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.model-consult-card .hero-button {
  min-width: 250px;
  min-height: 58px;
  font-size: 15px;
}

.model-note {
  margin: 20px 0 0;
  color: #5f7289;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.document-cta {
  display: inline-flex;
  margin: 28px 0 0;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient);
  font-size: 14px;
  font-weight: 900;
}

.cost-table-card {
  padding: 26px;
}

.cost-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.cost-table-head svg {
  color: var(--blue);
}

.cost-table-card table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
}

.cost-table-card th,
.cost-table-card td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 109, 240, 0.12);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}

.cost-table-card th {
  width: 42%;
  background: #f0f7ff;
}

.blurred {
  position: relative;
  color: transparent !important;
  text-shadow: 0 0 10px rgba(0, 109, 240, 0.7);
}

.area-copy .lp-lead span {
  color: var(--blue);
}

.area-subcopy {
  position: relative;
  display: inline-block;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.45;
}

.area-subcopy::after {
  position: absolute;
  right: -8px;
  bottom: 2px;
  left: -8px;
  z-index: -1;
  height: 12px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 220, 86, 0.62);
}

.area-subcopy span {
  color: var(--blue);
}

.flow-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.flow-badges span {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef6ff;
  font-size: 13px;
  font-weight: 900;
}

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

.area-badges article,
.area-national-card,
.area-map-card,
.area-wide-card {
  border: 1px solid rgba(0, 109, 240, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(16, 54, 94, 0.1);
}

.area-badges article {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 96px;
  padding: 16px 15px;
}

.area-badge-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--gradient);
}

.area-badge-icon svg {
  width: 25px;
  height: 25px;
  color: #fff;
  stroke-width: 2.4;
}

.area-badges strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.area-badges p {
  margin: 5px 0 0;
  color: #23334d;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.65;
}

.area-national-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 236px;
  margin-top: 22px;
  padding: 26px 30px;
}

.area-national-card img {
  width: 100%;
  min-width: 0;
  object-fit: contain;
}

.area-national-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
}

.area-national-card h3 span {
  color: var(--blue);
}

.area-national-card p,
.area-wide-card p {
  margin: 12px 0 0;
  color: #23334d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.85;
}

.area-visuals {
  display: grid;
  gap: 18px;
}

.area-map-card {
  position: relative;
  padding: 26px 26px 20px;
}

.area-map-card > p,
.area-wide-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.area-map-card > p span,
.area-wide-card h3 span {
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: #5aa3ff;
}

.area-map-card img {
  display: block;
  width: min(560px, 100%);
  margin: 0 auto;
}

.area-map-badge {
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  box-shadow: 0 18px 30px rgba(0, 109, 240, 0.24);
}

.area-map-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.area-wide-card {
  display: grid;
  grid-template-columns: 1fr 230px;
  align-items: center;
  gap: 22px;
  min-height: 236px;
  padding: 24px 28px;
}

.area-wide-card h3 {
  justify-content: flex-start;
  margin-bottom: 0;
}

.area-wide-card img {
  width: 100%;
  object-fit: contain;
}

.flow-badges {
  justify-content: center;
}

.flow-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(980px, 100%);
  margin: 36px 0 0;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}

.flow-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 36%) 1fr;
  align-items: stretch;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(0, 109, 240, 0.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(16, 54, 94, 0.1);
  text-align: left;
}

.flow-timeline li::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: calc(36% + 1px);
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(0, 109, 240, 0.26), rgba(8, 167, 255, 0));
}

.flow-timeline li::after {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 8px rgba(0, 109, 240, 0.08);
  content: "";
}

.flow-step-image {
  margin: 0;
  min-height: 220px;
  overflow: hidden;
  background: #eaf4ff;
}

.flow-step-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.flow-step-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 30px 68px 30px 36px;
}

.flow-step-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

.flow-timeline strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
}

.flow-timeline p {
  margin: 12px 0 0;
  color: #23334d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: min(900px, 100%);
  margin-top: 34px;
  margin-inline: auto;
}

.faq-grid details {
  padding: 0;
  overflow: hidden;
}

.faq-grid summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 54px 18px 22px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-grid summary::after {
  position: absolute;
  right: 22px;
  color: var(--blue);
  font-size: 24px;
  content: "+";
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid details p {
  margin: 0;
  padding: 0 22px 22px;
  color: #23334d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.faq-cta {
  position: relative;
  overflow: hidden;
  margin-top: 42px;
  padding: 72px 42px 54px;
  border-radius: 10px;
  color: #fff;
  background: url("./assets/cta-bg.png") center / cover no-repeat;
  box-shadow: 0 18px 42px rgba(6, 25, 54, 0.16);
  text-align: center;
}

.faq-cta h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1.3;
}

.faq-cta .cta-kicker,
.faq-cta .cta-text,
.faq-cta .cta-actions {
  position: relative;
  z-index: 1;
}

.faq-cta .cta-actions {
  margin-top: 42px;
}

.faq-cta .hero-button,
.faq-cta .cta-button {
  min-height: 68px;
  font-size: 16px;
}

.site-footer {
  padding: 78px 38px 36px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 68px;
  width: min(1640px, 100%);
  margin: 0 auto;
}

.footer-brand {
  padding: 57px 66px 20px 42px;
  border-right: 1px solid rgba(6, 25, 54, 0.12);
}

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

.footer-brand p {
  margin: 42px 0 0;
  color: #1b2a45;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.1;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 52px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1.5px solid #56647a;
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 20px rgba(0, 109, 240, 0.12);
}

.footer-social span {
  font-size: 10px;
  font-weight: 900;
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 54px;
  padding: 55px 0 28px;
}

.footer-nav h2 {
  position: relative;
  margin: 0 0 40px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
}

.footer-nav h2::after {
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: var(--blue);
}

.footer-nav a {
  display: block;
  color: #26344d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.footer-nav a + a {
  margin-top: 20px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1640px, 100%);
  margin: 54px auto 0;
  padding-top: 34px;
  border-top: 1px solid rgba(6, 25, 54, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: #26344d;
  font-size: 12px;
  font-weight: 700;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-legal a:not(.back-to-top) {
  position: relative;
  padding: 0 24px;
  color: #26344d;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-legal a:not(.back-to-top):hover {
  color: var(--blue);
}

.footer-legal a:not(.back-to-top)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 20px;
  content: "";
  background: rgba(6, 25, 54, 0.24);
  transform: translateY(-50%);
}

.back-to-top {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-left: 24px;
  border: 1.5px solid #56647a;
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 20px rgba(0, 109, 240, 0.12);
}

.back-to-top svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 1380px) {
  .site-header {
    gap: 18px;
    padding: 0 24px;
  }

  .brand img {
    width: 146px;
  }

  .global-nav {
    gap: 18px;
    font-size: 12px;
  }

  .header-button {
    min-height: 40px;
    font-size: 12px;
  }

  .header-button--primary {
    min-width: 174px;
  }

  .hero-copy {
    padding-left: 44px;
  }

  .hero-people {
    right: 126px;
  }

  .support-inner {
    grid-template-columns: minmax(380px, 0.82fr) minmax(500px, 1.18fr);
    gap: 30px;
    width: min(1180px, calc(100% - 84px));
  }

  .support-description {
    font-size: 15px;
  }

  .support-card h3 {
    font-size: 17px;
  }

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

  .support-visual img {
    width: min(610px, 100%);
  }

  .cta-panel {
    min-height: 390px;
    padding: 88px 44px 58px;
  }

  .cta-kicker {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .cta-text {
    margin-top: 24px;
    font-size: 15px;
  }

  .cta-actions {
    gap: 18px;
    margin-top: 42px;
  }

  .cta-actions .hero-button,
  .cta-button {
    min-height: 64px;
    font-size: 15px;
  }

  .line-icon {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .footer-main {
    grid-template-columns: 330px 1fr;
    gap: 44px;
  }

  .strengths-inner {
    width: min(1180px, calc(100% - 84px));
  }

  .strength-content {
    grid-template-columns: 62px 1fr;
    column-gap: 18px;
    padding: 38px 42px 36px;
  }

  .strength-number {
    left: 96px;
    font-size: 148px;
  }

  .strength-icon {
    width: 54px;
    height: 54px;
  }

  .strength-icon svg {
    width: 28px;
    height: 28px;
  }

  .strength-text h3 {
    font-size: 25px;
  }

  .strength-text p {
    font-size: 14px;
  }

  .business-appeal-inner {
    width: min(1180px, calc(100% - 84px));
  }

  .business-appeal h2::before {
    left: 130px;
  }

  .business-appeal h2::after {
    right: 130px;
  }

  .business-stat-grid {
    gap: 18px;
  }

  .business-stat-card {
    min-height: 318px;
    padding: 24px 20px;
  }

  .business-stat-card h3 {
    font-size: 18px;
  }

  .business-stat-label {
    font-size: 18px;
  }

  .business-stat-text {
    font-size: 12px;
  }

  .business-market-card {
    grid-template-columns: minmax(300px, 0.34fr) minmax(560px, 0.66fr);
    gap: 22px;
    padding: 26px 26px 24px;
  }

  .business-market-copy h3 {
    font-size: 22px;
  }

  .business-chart-wrap {
    padding-right: 150px;
  }

  .business-chart-badge {
    right: -10px;
    width: 98px;
    height: 98px;
    font-size: 15px;
  }

  .lp-section-inner {
    width: min(1180px, calc(100% - 84px));
  }

  .problem-grid,
  .case-grid {
    gap: 18px;
  }

  .problem-card,
  .case-card {
    padding: 24px 20px;
  }

  .problem-number {
    font-size: 25px;
  }

  .first-cost-inner,
  .area-inner {
    gap: 34px;
  }

  .footer-brand {
    padding-right: 42px;
  }

  .footer-logo img {
    width: 198px;
  }

  .footer-nav {
    gap: 34px;
  }

  .footer-nav h2 {
    font-size: 16px;
  }

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

@media (max-width: 1100px) {
  .site-header {
    height: 68px;
  }

  .global-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
    pointer-events: none;
  }

  .site-header.is-menu-open .mobile-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    height: 100svh;
    min-height: 0;
    padding-bottom: 520px;
  }

  .hero-copy {
    width: min(760px, 92vw);
    padding: 126px 0 0 32px;
  }

  .benefit-list {
    width: min(690px, calc(100vw - 64px));
  }

  .hero-people {
    right: 118px;
    bottom: -10px;
    width: auto;
    height: min(690px, calc(100svh - 86px));
  }

  .hero-diagram {
    right: 22px;
    top: auto;
    bottom: 52px;
    width: 205px;
  }

  .worries-inner {
    width: min(760px, calc(100% - 48px));
  }

  .worries {
    padding-top: 88px;
  }

  .worries h2::before,
  .worries h2::after {
    display: none;
  }

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

  .worry-card {
    grid-template-columns: 128px 1fr;
    min-height: 180px;
  }

  .worry-card img {
    width: 118px;
    height: 118px;
  }

  .worry-card p {
    font-size: 16px;
  }

  .support {
    padding-top: 62px;
  }

  .support-inner {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 48px));
  }

  .support-copy {
    text-align: center;
  }

  .support-description {
    font-size: 16px;
  }

  .support-card {
    text-align: left;
  }

  .support-bottom {
    margin-top: 42px;
    margin-left: 0;
  }

  .support-visual img {
    width: min(680px, 100%);
  }

  .cta-section {
    padding: 56px 18px 64px;
  }

  .cta-panel {
    padding: 72px 24px;
  }

  .cta-actions {
    grid-template-columns: 1fr;
    width: min(520px, 100%);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .strengths h2::before,
  .strengths h2::after {
    display: none;
  }

  .strength-card {
    grid-template-columns: 1fr;
  }

  .strength-card::after {
    display: none;
  }

  .strength-card--reverse .strength-content,
  .strength-card--reverse .strength-image {
    order: initial;
  }

  .strength-image {
    min-height: 260px;
  }

  .strength-image img {
    min-height: 260px;
  }

  .business-appeal {
    padding: 76px 0 68px;
  }

  .business-appeal-inner {
    width: min(760px, calc(100% - 48px));
  }

  .business-appeal h2::before,
  .business-appeal h2::after {
    display: none;
  }

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

  .business-stat-card {
    min-height: 0;
  }

  .business-market-card {
    grid-template-columns: 1fr;
  }

  .business-market-copy {
    text-align: center;
  }

  .business-market-note {
    text-align: left;
  }

  .business-chart-wrap {
    padding-right: 0;
  }

  .business-chart-badge {
    right: 14px;
    top: 42px;
  }

  .lp-section {
    padding: 72px 0;
  }

  .lp-section-inner {
    width: min(760px, calc(100% - 48px));
  }

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

  .first-cost-inner,
  .area-inner {
    grid-template-columns: 1fr;
  }

  .area-strategy {
    width: min(820px, calc(100% - 48px));
  }

  .lp-kicker--left,
  .first-cost-copy h2,
  .area-copy h2,
  .first-cost-copy .lp-lead,
  .area-copy .lp-lead {
    justify-content: center;
    text-align: center;
  }

  .plan-compare {
    grid-template-columns: 1fr;
  }

  .fee-card {
    grid-template-columns: 120px 1fr;
    width: min(760px, 100%);
  }

  .fee-card p {
    grid-column: 1 / -1;
    padding: 16px 0 0;
    border-top: 1px solid rgba(0, 109, 240, 0.18);
    border-left: 0;
    text-align: center;
  }

  .plan-head {
    grid-template-columns: 58px 1fr;
  }

  .plan-tag {
    grid-column: 2;
    width: fit-content;
    min-width: 0;
  }

  .model-consult-card {
    grid-template-columns: 76px 1fr;
  }

  .model-consult-card p,
  .model-consult-card .hero-button {
    grid-column: 1 / -1;
  }

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

  .area-map-card img {
    width: min(620px, 100%);
  }

  .area-wide-card,
  .area-national-card {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .area-wide-card h3 {
    justify-content: center;
  }

  .area-wide-card img,
  .area-national-card img {
    width: min(300px, 100%);
    margin: 0 auto;
  }

  .flow-timeline li {
    grid-template-columns: minmax(220px, 34%) 1fr;
  }

  .flow-timeline li::before {
    left: calc(34% + 1px);
  }

  .flow-step-body {
    padding: 28px 58px 28px 30px;
  }

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

  .footer-brand {
    padding: 0 0 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 25, 54, 0.12);
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-wrap: wrap;
    row-gap: 14px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .support {
    padding: 34px 0 22px;
  }

  .support-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    width: min(760px, calc(100% - 48px));
  }

  .support-copy {
    padding-top: 18px;
    text-align: center;
  }

  .support-kicker {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .support h2 {
    font-size: 34px;
    line-height: 1.18;
  }

  .support-description {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.7;
  }

  .support-card {
    grid-template-columns: 78px 1fr;
    gap: 14px;
    margin-top: 28px;
    padding: 15px 18px;
  }

  .support-card-icon {
    width: 70px;
    height: 70px;
  }

  .support-card-icon svg {
    width: 40px;
    height: 40px;
  }

  .support-card h3 {
    font-size: 15px;
  }

  .support-card p {
    font-size: 10px;
  }

  .support-bottom {
    margin: 16px 0 0 18px;
    font-size: 19px;
    white-space: nowrap;
  }

  .support-visual {
    justify-content: flex-end;
  }

  .support-visual img {
    width: min(500px, 100%);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 82px;
  }

  .site-header {
    height: 62px;
    padding: 0 16px;
  }

  .brand img {
    width: 112px;
  }

  .brand-badge {
    width: 27px;
    height: 22px;
    font-size: 12px;
  }

  .mobile-menu {
    top: 62px;
  }

  .mobile-floating-cta {
    position: fixed;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 0;
    transform: translateY(120%);
    animation: mobileCtaFloatIn 0.62s ease 3s forwards;
  }

  body.is-menu-open .mobile-floating-cta {
    pointer-events: none;
    opacity: 0;
  }

  .mobile-floating-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 0;
    min-height: 50px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      filter 0.2s ease;
  }

  .mobile-floating-cta__button:active {
    transform: translateY(1px);
  }

  .mobile-floating-cta__button svg {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
  }

  .mobile-floating-cta__button--primary {
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 10px 22px rgba(0, 109, 240, 0.28);
  }

  .mobile-floating-cta__button--outline {
    border: 1.5px solid rgba(0, 109, 240, 0.72);
    color: var(--blue);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 22px rgba(6, 25, 54, 0.12);
  }

  .hero {
    height: auto;
    min-height: 0;
    padding-bottom: 90px;
  }

  .hero-bg {
    background-image: url("./assets/back-image.png");
    background-position: center bottom;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.74) 50%, rgba(255, 255, 255, 0.22) 100%),
      radial-gradient(circle at 12% 18%, rgba(0, 109, 240, 0.08) 0, rgba(0, 109, 240, 0) 36%),
      radial-gradient(circle at 86% 58%, rgba(18, 168, 255, 0.12) 0, rgba(18, 168, 255, 0) 34%);
  }

  .hero-copy {
    width: 100%;
    padding: 76px 16px 0;
  }

  .hero-lead {
    width: min(285px, 78vw);
    margin-bottom: 9px;
    font-size: clamp(12px, 3.5vw, 15px);
    line-height: 1.48;
  }

  .hero-lead-logos {
    gap: 6px;
    margin-bottom: 5px;
  }

  .hero-lead-logos img {
    width: 70px;
    height: auto;
  }

  .hero-lead-logos b {
    font-size: 11px;
  }

  .title-main,
  .title-sub {
    width: min(342px, 90vw);
  }

  .title-main {
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1.08;
  }

  .title-sub {
    margin-top: 6px;
    font-size: clamp(23px, 6.8vw, 29px);
    line-height: 1.26;
  }

  .mobile-title-break {
    display: block;
  }

  .hero-description {
    width: min(315px, 82vw);
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.6;
  }

  .hero-description-full {
    display: none;
  }

  .hero-description-mobile {
    display: inline;
  }

  .hero-description br {
    display: none;
  }

  .hero-description-mobile br {
    display: block;
  }

  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
    width: min(208px, 54vw);
    gap: 7px;
    margin-top: 12px;
  }

  .benefit-list li {
    min-height: 54px;
    padding: 7px 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
  }

  .benefit-list li:last-child {
    grid-column: auto;
    min-height: 50px;
  }

  .benefit-list svg {
    width: 22px;
    height: 22px;
    margin-bottom: 3px;
  }

  .benefit-list span {
    font-size: 10px;
    line-height: 1.38;
  }

  .benefit-logo-pair {
    gap: 0;
  }

  .benefit-logo-pair span {
    font-size: 10px;
    line-height: 1.25;
  }

  .benefit-logo-pair b {
    font-size: 9px;
    line-height: 1.25;
  }

  .hero-actions {
    display: none;
  }

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

  .hero-people {
    z-index: 6;
    right: -38px;
    bottom: 0;
    width: auto;
    height: 301px;
    max-width: none;
    animation: none;
    transform: none;
    will-change: auto;
  }

  .hero-diagram {
    z-index: 0;
    right: 11px;
    bottom: 280px;
    width: 90px;
    opacity: 0.88;
    animation: none;
    transform: none;
    will-change: auto;
  }

  .worries {
    scroll-margin-top: 62px;
    padding: 78px 0 38px;
    background-attachment: scroll;
  }

  .worries::before {
    top: 12px;
    left: 12px;
  }

  .worries::after {
    right: 8px;
    bottom: 8px;
  }

  .worries-inner {
    width: calc(100% - 28px);
  }

  .section-kicker {
    font-size: 17px;
  }

  .worries h2 {
    font-size: 26px;
    line-height: 1.55;
  }

  .worry-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .worry-card {
    grid-template-columns: 88px 1fr;
    min-height: 124px;
    padding: 15px 16px 15px 12px;
  }

  .worry-card img {
    width: 82px;
    height: 82px;
  }

  .worry-card p {
    padding-left: 30px;
    font-size: 13px;
    line-height: 1.58;
  }

  .worry-card p::before {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }

  .solution-line {
    display: inline;
    font-size: 21px;
    line-height: 1.8;
    background: linear-gradient(transparent 58%, rgba(255, 216, 75, 0.62) 58%);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .solution-line::after {
    display: none;
  }

  .mobile-solution-break {
    display: block;
  }

  .support {
    padding: 48px 0 34px;
    background-attachment: scroll;
  }

  .support::before {
    top: 12px;
    left: 12px;
  }

  .support::after {
    right: 8px;
    bottom: 8px;
  }

  .support-inner {
    width: calc(100% - 28px);
    gap: 28px;
  }

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

  .support-kicker {
    gap: 9px;
    margin-bottom: 18px;
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .support-kicker span {
    width: 16px;
  }

  .support h2 {
    font-size: 28px;
  }

  .support-description {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.75;
  }

  .support-description br {
    display: none;
  }

  .support-visual--desktop {
    display: none;
  }

  .support-visual--mobile {
    display: flex;
    justify-content: center;
    margin: 24px auto 0;
  }

  .support-visual--mobile img {
    width: min(350px, 100%);
    filter: drop-shadow(0 14px 22px rgba(0, 67, 146, 0.08));
  }

  .support-card {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
    padding: 18px 16px;
    text-align: left;
  }

  .support-card-icon {
    width: 64px;
    height: 64px;
  }

  .support-card-icon svg {
    width: 34px;
    height: 34px;
  }

  .support-card h3 {
    font-size: 15px;
  }

  .support-card p {
    font-size: 11.5px;
    line-height: 1.7;
  }

  .support-card p br {
    display: none;
  }

  .support-bottom {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.65;
  }

  .support-bottom br {
    display: block;
  }

  .cta-section {
    padding: 32px 14px 40px;
    background-attachment: scroll;
  }

  .cta-panel {
    min-height: 0;
    padding: 34px 16px;
    border-radius: 8px;
  }

  .cta-kicker {
    gap: 10px;
    margin-bottom: 22px;
    font-size: 11px;
    line-height: 1.65;
  }

  .cta-kicker > span:first-child,
  .cta-kicker > span:last-child {
    width: 22px;
  }

  .cta-panel h2 {
    font-size: 21px;
  }

  .mobile-cta-break {
    display: block;
  }

  .cta-text {
    margin-top: 16px;
    font-size: 13px;
  }

  .cta-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .cta-actions .hero-button,
  .cta-button {
    min-height: 56px;
    font-size: 14px;
  }

  .line-icon {
    width: 38px;
    height: 38px;
    font-size: 10px;
  }

  .site-footer {
    padding: 40px 18px 24px;
  }

  .strengths {
    padding: 40px 0 48px;
    background-attachment: scroll;
  }

  .strengths-inner {
    width: calc(100% - 28px);
  }

  .strengths h2 {
    font-size: 25px;
  }

  .strength-list {
    gap: 16px;
    margin-top: 24px;
  }

  .strength-content {
    grid-template-columns: 48px 1fr;
    gap: 10px;
    padding: 20px 16px;
  }

  .strength-number {
    font-size: 30px;
  }

  .strength-icon {
    width: 46px;
    height: 46px;
  }

  .strength-icon svg {
    width: 25px;
    height: 25px;
  }

  .strength-text h3 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .strength-text p {
    grid-column: 1 / -1;
    font-size: 12.5px;
    line-height: 1.8;
  }

  .strength-image,
  .strength-image img {
    min-height: 150px;
  }

  .business-appeal {
    scroll-margin-top: 62px;
    padding: 64px 0 52px;
    background-attachment: scroll;
  }

  .business-appeal::before {
    top: 12px;
    left: 12px;
  }

  .business-appeal::after {
    right: 8px;
    bottom: 8px;
  }

  .business-appeal-inner {
    width: calc(100% - 28px);
  }

  .business-appeal-inner::before {
    top: -150px;
    right: -170px;
  }

  .business-appeal-inner::after {
    display: none;
  }

  .business-kicker {
    gap: 9px;
    margin-bottom: 15px;
    font-size: 13px;
  }

  .business-kicker span {
    width: 17px;
  }

  .business-appeal h2 {
    font-size: 25px;
    line-height: 1.48;
  }

  .business-appeal h2 mark::after {
    right: -8px;
    bottom: 6px;
    left: -8px;
    height: 10px;
  }

  .business-stat-grid {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 26px;
  }

  .business-stat-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 16px;
  }

  .business-stat-icon {
    width: 52px;
    height: 52px;
  }

  .business-stat-icon svg {
    width: 30px;
    height: 30px;
  }

  .business-stat-card h3 {
    align-self: center;
    margin: 0;
    font-size: 17px;
  }

  .business-stat-metric {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: nowrap;
    margin-top: 8px;
    white-space: nowrap;
  }

  .business-stat-number,
  .business-stat-number--text {
    margin: 0;
    font-size: 32px;
  }

  .business-stat-label {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
  }

  .business-stat-text {
    grid-column: 1 / -1;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.75;
  }

  .business-market-card {
    gap: 22px;
    margin-top: 16px;
    padding: 22px 15px 20px;
  }

  .business-market-copy h3 {
    font-size: 21px;
  }

  .business-market-copy > p {
    font-size: 13px;
  }

  .business-market-note {
    grid-template-columns: 52px 1fr;
    gap: 12px;
    margin-top: 22px;
    padding: 14px;
  }

  .business-market-note-icon {
    width: 48px;
    height: 48px;
  }

  .business-market-note-icon svg {
    width: 28px;
    height: 28px;
  }

  .business-market-note h4 {
    font-size: 14px;
  }

  .business-market-note p {
    font-size: 11px;
  }

  .business-chart-head {
    display: block;
  }

  .business-chart-head h3 {
    font-size: 15px;
  }

  .business-chart-head span {
    margin-top: 6px;
  }

  .business-chart {
    grid-template-columns: 42px minmax(690px, 1fr);
  }

  .business-chart-scroll {
    margin-right: -15px;
    padding-right: 15px;
  }

  .business-chart-scroll-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0 0;
    color: #45617f;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.5;
  }

  .business-chart-scroll-note::before {
    width: 20px;
    height: 1px;
    content: "";
    background: rgba(0, 109, 240, 0.6);
  }

  .business-chart-scroll-note::after {
    content: "→";
    color: var(--blue);
    font-size: 13px;
    line-height: 1;
  }

  .business-chart-foot {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
  }

  .business-chart-badge {
    position: static;
    width: 96px;
    height: 96px;
    margin: 0;
    font-size: 14px;
    justify-self: start;
  }

  .business-chart-badge span {
    font-size: 10px;
  }

  .business-chart-source {
    margin: 0;
    font-size: 8.5px;
    line-height: 1.65;
    text-align: left;
  }

  .lp-section {
    scroll-margin-top: 62px;
    padding: 44px 0;
    background-attachment: scroll;
  }

  .lp-section::before {
    top: 12px;
    left: 12px;
  }

  .lp-section::after {
    right: 8px;
    bottom: 8px;
  }

  .lp-section-inner {
    width: calc(100% - 28px);
  }

  .lp-kicker {
    gap: 9px;
    margin-bottom: 14px;
    font-size: 12px;
  }

  .lp-kicker span {
    width: 17px;
  }

  .lp-section h2 {
    font-size: 25px;
    line-height: 1.48;
  }

  .lp-lead {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.75;
  }

  .problem-grid,
  .case-grid {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 24px;
  }

  .problem-card,
  .case-card-body {
    min-height: 0;
    padding: 20px 18px;
  }

  .problem-card-head {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: center;
  }

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

  .problem-number {
    margin: 0 0 3px;
    font-size: 24px;
  }

  .problem-card h3,
  .case-card h3 {
    font-size: 17px;
  }

  .problem-card p:not(.problem-number),
  .case-card p {
    font-size: 13px;
    line-height: 1.75;
  }

  .problem-card > p:not(.problem-number) {
    margin-top: 14px;
  }

  .case-card-image {
    aspect-ratio: 16 / 7.5;
  }

  .problem-solution {
    margin-top: 22px;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
  }

  .first-cost-inner,
  .area-inner {
    gap: 26px;
  }

  .model-inner {
    width: min(100%, calc(100% - 28px));
  }

  .fee-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 16px;
    text-align: center;
  }

  .fee-card::after {
    bottom: -18px;
    border-top-width: 12px;
    border-right-width: 14px;
    border-left-width: 14px;
  }

  .fee-card span {
    width: fit-content;
    margin: 0 auto;
    font-size: 14px;
  }

  .fee-card strong {
    font-size: 38px;
  }

  .fee-card p {
    padding-top: 12px;
    font-size: 12px;
  }

  .plan-compare {
    gap: 16px;
    margin-top: 38px;
  }

  .plan-card {
    padding: 0 14px 16px;
  }

  .plan-card--primary .plan-head {
    margin: 0 -14px;
    padding: 16px 14px;
  }

  .plan-head {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .plan-icon {
    width: 44px;
    height: 44px;
  }

  .plan-icon svg {
    width: 25px;
    height: 25px;
  }

  .plan-card h3 {
    font-size: 20px;
  }

  .plan-tag {
    grid-column: 1 / -1;
    font-size: 11px;
  }

  .plan-lead {
    margin: 14px 0;
    font-size: 12px;
  }

  .plan-card th,
  .plan-card td {
    display: table-cell;
    padding: 10px;
    font-size: 10.5px;
    line-height: 1.55;
    vertical-align: top;
  }

  .plan-card th {
    width: 34%;
  }

  .model-consult-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 16px;
    text-align: center;
  }

  .model-plan-note {
    margin-top: 16px;
    padding: 14px;
    font-size: 12px;
    line-height: 1.75;
  }

  .model-consult-icon {
    margin: 0 auto;
  }

  .model-consult-card h3 {
    font-size: 18px;
  }

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

  .model-consult-card .hero-button {
    min-width: 0;
    width: 100%;
  }

  .cost-table-card {
    padding: 16px;
  }

  .cost-table-card th,
  .cost-table-card td {
    padding: 12px 10px;
    font-size: 11px;
  }

  .document-cta,
  .flow-badges span {
    font-size: 11px;
  }

  .area-subcopy {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-top: 14px;
    margin-right: auto;
    margin-left: auto;
    font-size: 19px;
    text-align: center;
  }

  .area-badges {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .area-badges article {
    min-height: 0;
    padding: 14px;
  }

  .area-national-card,
  .area-map-card,
  .area-wide-card {
    padding: 16px;
  }

  .area-national-card h3 {
    font-size: 22px;
  }

  .area-map-card > p,
  .area-wide-card h3 {
    gap: 10px;
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .area-map-card > p span,
  .area-wide-card h3 span {
    width: 28px;
  }

  .area-map-badge {
    right: 14px;
    bottom: 12px;
    width: 74px;
    height: 74px;
    font-size: 17px;
  }

  .area-map-card img {
    max-height: 270px;
    object-fit: contain;
  }

  .area-national-card img,
  .area-wide-card img {
    max-height: 170px;
    object-fit: contain;
  }

  .area-wide-card img {
    width: min(250px, 100%);
  }

  .flow-badges {
    justify-content: flex-start;
  }

  .flow-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .flow-timeline li {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .flow-timeline li::before {
    display: none;
  }

  .flow-timeline li::after {
    top: 18px;
    right: 18px;
  }

  .flow-step-image,
  .flow-step-image img {
    height: 132px;
    min-height: 0;
  }

  .flow-step-body {
    padding: 16px;
  }

  .flow-step-label {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .flow-timeline strong {
    font-size: 18px;
  }

  .flow-timeline p {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.68;
  }

  .faq-grid {
    gap: 12px;
    margin-top: 24px;
  }

  .faq-grid summary {
    min-height: 64px;
    padding: 16px 46px 16px 16px;
    font-size: 14px;
  }

  .faq-grid summary::after {
    right: 17px;
  }

  .faq-grid details p {
    padding: 0 16px 18px;
    font-size: 12px;
  }

  .faq-cta {
    padding: 44px 16px;
  }

  .faq-cta h2 {
    font-size: 21px;
  }

  .faq-cta .cta-kicker {
    gap: 9px;
    margin-bottom: 20px;
    font-size: 11px;
  }

  .faq-cta .cta-kicker > span:first-child,
  .faq-cta .cta-kicker > span:last-child {
    width: 24px;
  }

  .faq-cta .cta-text {
    font-size: 12px;
  }

  .faq-cta .cta-actions {
    width: 100%;
    margin-top: 28px;
  }

  .footer-brand p {
    margin-top: 18px;
    font-size: 11.5px;
    line-height: 1.75;
  }

  .footer-logo img {
    width: 158px;
  }

  .footer-social {
    gap: 14px;
    margin-top: 20px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .footer-social svg {
    width: 18px;
    height: 18px;
  }

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

  .footer-nav h2 {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .footer-nav h2::after {
    bottom: -9px;
    width: 26px;
    height: 2px;
  }

  .footer-nav a {
    font-size: 10.5px;
    line-height: 1.55;
  }

  .footer-nav a + a {
    margin-top: 9px;
  }

  .footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
  }

  .footer-bottom p,
  .footer-legal a:not(.back-to-top) {
    font-size: 10px;
  }

  .footer-legal a:not(.back-to-top) {
    padding: 0 12px;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
    margin-left: 12px;
  }
}
