:root {
  --color-bg: #f5f9ff;
  --color-primary: #009e92;
  --color-accent: #ff6300;
  --color-ink: #0f1d2b;
  --color-muted: rgba(15, 29, 43, 0.7);
  --shadow-soft: 0 16px 40px rgba(15, 29, 43, 0.06);
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-heading: "Source Sans 3", "Noto Sans JP", "Hiragino Sans", sans-serif;
  --anchor-offset: 112px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 158, 146, 0.25),
      transparent 45%
    ),
    radial-gradient(circle at 80% 0%, rgba(255, 99, 0, 0.35), transparent 40%);
  opacity: 0.8;
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23009e9214' fill-opacity='0.4'%3E%3Cpath d='M0 138h2v2H0zM68 70h4v4h-4zM138 0h2v2h-2z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: -3;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
p,
h1,
h2,
h3,
a,
button,
th,
td {
  overflow-wrap: anywhere;
}
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 249, 255, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}
.logo img {
  height: 34px;
  width: auto;
}
.header-cta {
  display: flex;
  gap: 12px;
}
.phone-btn {
  flex-direction: column;
  align-items: flex-start;
  gap: 3.2px;
  line-height: 1.1;
}
.phone-main {
  display: inline-flex;
  align-items: center;
  gap: 5.6px;
}
.phone-icon {
  width: 15.2px;
  height: 15.2px;
}
.phone-hours {
  font-size: 11.52px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 13.6px 25.6px;
  font-size: 15.2px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.3s ease;
}
.btn.primary {
  background: linear-gradient(120deg, var(--color-accent), #ff7a2a);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 99, 0, 0.2);
}
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(255, 99, 0, 0.24);
}
.btn.secondary {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: white;
  box-shadow: 0 8px 20px rgba(15, 29, 43, 0.08);
}
.btn.secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 29, 43, 0.12);
  background: hsl(171, 55%, 95%);
}
section {
  padding: 80px 0;
  position: relative;
}
section[id] {
  scroll-margin-top: var(--anchor-offset);
}
main > .section {
  isolation: isolate;
}
main > .section::before {
  content: "";
  position: absolute;
  inset: 8px 0;
  border-radius: 40px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
main > .section:nth-of-type(odd)::before {
  opacity: 1;
  transform: translateY(88px);
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.92),
    rgba(243, 252, 250, 0.72)
  );
}
main > .section.template-gallery-section::before {
  transform: none;
  background: linear-gradient(
    180deg,
    hsl(187 43% 48% / 1) 0%,
    hsl(187 48% 72% / 0.92) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}
main > .section:nth-of-type(3n)::after {
  content: "";
  position: absolute;
  right: min(6vw, 88px);
  top: 24px;
  width: clamp(44px, 6vw, 88px);
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255, 99, 0, 0.2),
    rgba(255, 99, 0, 0)
  );
  transform: rotate(12deg);
  z-index: -1;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30.4px, 3vw, 44.8px);
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title-image {
  line-height: 0;
}
.section-title-image img {
  display: block;
  width: min(100%, 480px);
  height: auto;
  margin: auto;
}
.title-number-accent {
  color: var(--color-accent);
  font-size: 1.75em;
  line-height: 0.9;
}
/* .section-overview {
  padding-top: 64px;
  margin-top: 44px;
} */
main > .section.section-overview::before {
  inset: 0;
}
main > .section.section-overview:nth-of-type(odd)::before {
  transform: none;
}
main > .section.section-overview:nth-of-type(odd)::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, white 100%);
}
#features .section-title {
  margin-bottom: 44px;
}
.marker-highlight {
  display: inline-block;
  position: relative;
  z-index: 0;
  padding: 0 0.12em 0.06em;
}
.marker-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(
    180deg,
    transparent 64%,
    rgba(255, 224, 102, 0.55) 64%,
    rgba(255, 224, 102, 0.55) 100%
  );
  z-index: -1;
}
.inline-surview-logo {
  display: inline-block;
  height: 2em;
  width: auto;
  vertical-align: -0.08em;
  margin: 0 0.08em;
}
.section-lead {
  color: var(--color-muted);
  max-width: 640px;
  margin-top: 0;
  margin-bottom: 40px;
}
.section-arrow-wrapper {
  position: relative;
}
.section-lead-over-arrow {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: clamp(32px, 3.4vw, 40px);
  font-weight: 700;
  z-index: 2;
  pointer-events: none;
}
.section-down-arrow {
  position: relative;
  z-index: 0;
  width: clamp(104px, 13vw, 150px);
  aspect-ratio: 1;
  margin: 6px auto 0;
  background: url("images/light-bulb.svg") center / contain no-repeat;
  filter: drop-shadow(0 10px 16px rgba(161, 76, 52, 0.18));
  top: -32px;
}
.section-down-arrow.reveal.visible {
  opacity: 0.4;
}
main > #challenges.section::before {
  inset: 0;
  border-radius: 40px 40px 0 0;
  opacity: 1;
  background: #eef7fa;
}
#challenges::before,
#challenges::after {
  display: none;
}
.challenge-title {
  width: fit-content;
  margin: 0 auto 86px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: clamp(30.4px, 3vw, 44.8px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: 0.05em;
  text-shadow: none;
  text-align: center;
}
.challenge-title > span {
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  gap: 64px;
  line-height: 1.75;
}
.challenge-title-text {
  display: inline-block;
}
.challenge-title-bracket {
  flex: 0 0 auto;
  width: auto;
  height: 100%;
  max-height: 160px;
  pointer-events: none;
  align-self: stretch;
}
.challenge-board {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.challenge-title strong {
  position: relative;
  display: inline-block;
  color: #5483ba;
  font-size: 1.18em;
  font-weight: 800;
}
.challenge-title strong::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #5483ba;
  font-size: min(0.45vw + 0.8rem, 1.05rem);
  font-weight: 700;
  line-height: 1;
}
.challenge-clouds {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px 18px;
  align-items: start;
}
.challenge-cloud {
  display: grid;
  place-items: center;
  min-height: 134px;
  padding: 18px 28px;
  border: 8px solid #c1d2e6;
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}
.challenge-cloud:nth-child(1),
.challenge-cloud:nth-child(2),
.challenge-cloud:nth-child(3) {
  grid-column: span 2;
}
.challenge-cloud:nth-child(4) {
  grid-column: 2 / span 2;
}
.challenge-cloud:nth-child(5) {
  grid-column: 4 / span 2;
}
.challenge-cloud p {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(17px, 1.65vw, 22px);
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  letter-spacing: 0.02em;
}
.challenge-cloud strong {
  color: var(--color-ink);
  background: linear-gradient(transparent 58%, #ffe55c 58%);
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.dilemma-banner {
  position: relative;
  width: min(1000px, 90%);
  max-width: none;
  margin: 44px auto 0;
  padding: 42px clamp(20px, 5vw, 72px) 58px;
}
.dilemma-banner-panel {
  display: grid;
  place-items: center;
  min-height: 160px;
  margin: 0 auto;
  padding: 32px 80px;
}
.dilemma-banner-text {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 2.5vw, 58px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}
.dilemma-banner-image {
  display: block;
  width: min(100%, 900px);
  height: auto;
}
.dilemma-person {
  position: absolute;
  bottom: -22px;
  margin: 0;
  z-index: 2;
}
.dilemma-person img {
  display: block;
  width: auto;
  height: auto;
}
.dilemma-person-left {
  left: clamp(16px, 4.3vw, 84px);
}
.dilemma-person-left img {
  width: clamp(150px, 13.4vw, 268px);
}
.dilemma-person-right {
  right: clamp(18px, 4.1vw, 80px);
}
.dilemma-person-right img {
  width: clamp(126px, 11.6vw, 232px);
}
.hero {
  padding-top: 96px;
}
.hero .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38.4px, 4.8vw, 52px);
  line-height: 1.15;
  margin: 16px 0;
  white-space: nowrap;
}
.hero h1 span {
  color: var(--color-accent);
}
.hero p {
  color: var(--color-muted);
  margin-bottom: 24px;
}
.main-copy-image {
  width: min(100%, 900px);
  height: auto;
}
.cta-group {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.cta-group .btn {
  flex: 1 1 0;
}
.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-award {
  display: block;
  width: min(100%, 480px);
  height: auto;
  padding-top: 22px;
}
.device-stage {
  position: relative;
  z-index: 1;
  min-height: 360px;
}
.device-stage::before,
.device-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  animation: bob 5s ease-in-out infinite alternate;
}
.device-stage::before {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  right: -30px;
  top: -24px;
  background: radial-gradient(
    circle,
    rgba(0, 158, 146, 0.24),
    rgba(0, 158, 146, 0)
  );
}
.device-stage::after {
  width: min(28vw, 240px);
  height: min(28vw, 240px);
  left: -18px;
  bottom: -24px;
  background: radial-gradient(
    circle,
    rgba(255, 99, 0, 0.2),
    rgba(255, 99, 0, 0)
  );
  animation-delay: 0.6s;
}
.service-shot {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}
.service-shot-mobile {
  display: none;
}
@keyframes bob {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-14px);
  }
}
.journey-layout {
  margin-top: 64px;
}
.journey-diagram {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.journey-step {
  display: grid;
  grid-template-rows: auto auto 1fr;
  justify-items: center;
  text-align: center;
  gap: 18px;
}
.journey-step-label {
  position: relative;
  z-index: 3;
  height: 88px;
  padding: 22px 18px 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, #2ec4b6, #009e92);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 18px 32px rgba(0, 158, 146, 0.22);
  width: 200px;
}
.journey-step-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 44px;
  height: 24px;
  background: linear-gradient(180deg, #009e92, #037a72);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.journey-step-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 148px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.96),
    rgba(244, 250, 249, 0.92)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 36px rgba(15, 29, 43, 0.08);
  display: grid;
  place-items: center;
  padding: 28px;
}
.journey-step-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.55;
}
.journey-step-copy {
  margin-top: 22px;
  width: 80%;
  position: relative;
  z-index: 1;
}
.journey-step-no {
  position: absolute;
  left: -18px;
  bottom: -22px;
  transform: none;
  font-size: clamp(56px, 4.4vw, 84px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(122, 220, 208, 0.34);
  font-weight: 800;
  pointer-events: none;
  z-index: 0;
}
.journey-step h3 {
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 700;
  color: var(--color-primary);
}
.feature-stack {
  display: grid;
  gap: 20px;
}
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: center;
}
.feature-row:nth-child(even) .feature-copy {
  order: 2;
}
.feature-row:nth-child(even) .feature-media {
  order: 1;
}
.feature-copy {
  padding: 12px 4px;
}
.feature-copy h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: clamp(21px, 2.2vw, 29px);
  line-height: 1.45;
  font-weight: 700;
}
.feature-copy p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.9;
}
.feature-media {
  min-height: 200px;
  display: grid;
  place-items: center;
}
/* フォームテンプレート一覧 */
.template-gallery-section {
  overflow: hidden;
}
.template-gallery-title {
  color: white;
  margin-bottom: 32px;
}
.template-gallery-wrap {
  width: 100%;
}
.template-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 28px 0 40px;
  align-items: start;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.template-gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  background: #fff;
  box-shadow:
    0 22px 44px rgba(15, 29, 43, 0.16),
    0 10px 24px rgba(15, 29, 43, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transform-style: preserve-3d;
}
.template-gallery-card::before,
.template-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  border: 1px solid rgba(15, 29, 43, 0.05);
  pointer-events: none;
  z-index: -1;
}
.template-gallery-card::before {
  transform: translate3d(10px, 12px, -30px) scale(0.97);
  opacity: 0.78;
  box-shadow: 0 16px 32px rgba(15, 29, 43, 0.1);
}
.template-gallery-card::after {
  transform: translate3d(20px, 24px, -60px) scale(0.93);
  opacity: 0.52;
  box-shadow: 0 18px 36px rgba(15, 29, 43, 0.08);
}
@media (min-width: 769px) {
  .template-gallery-card:nth-child(1) {
    transform: translateY(-18px) rotateX(1.5deg) rotateY(-3.5deg)
      rotateZ(-0.25deg);
  }
  .template-gallery-card:nth-child(2) {
    transform: translateY(20px) rotateX(-1deg) rotateY(3deg) rotateZ(0.25deg);
  }
  .template-gallery-card:nth-child(3) {
    transform: translateY(-8px) rotateX(1.25deg) rotateY(-2.5deg)
      rotateZ(-0.2deg);
  }
  .template-gallery-card:nth-child(4) {
    transform: translateY(26px) rotateX(-1.25deg) rotateY(4deg) rotateZ(0.35deg);
  }
  .template-gallery-card:nth-child(4)::before {
    transform: translate3d(-10px, 12px, -30px) scale(0.97);
  }
  .template-gallery-card:nth-child(4)::after {
    transform: translate3d(-20px, 24px, -60px) scale(0.93);
  }
}
.template-gallery-img-wrap {
  overflow: visible;
}
.template-gallery-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .template-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    perspective: none;
  }
  .template-gallery-card::before,
  .template-gallery-card::after {
    display: none;
  }
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.metric {
  padding: 24px;
  border-radius: 19.2px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 158, 146, 0.15);
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.metric strong {
  display: block;
  font-size: 40px;
  color: var(--color-primary);
}
@media (min-width: 961px) {
  .metrics-section .container {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
  }
  .metrics-section .section-title {
    margin: 0;
    text-align: right;
  }
}
.flow {
  position: relative;
  background: #f2f4f4;
  border-radius: 24px;
}
.flow::before {
  display: none;
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
  align-items: stretch;
}
.flow-step {
  background: #f4f6f6;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #ccd2d2;
  position: relative;
  min-height: 240px;
}
.flow-step:nth-child(odd) {
  margin-right: 0;
}
.flow-step:nth-child(even) {
  margin-left: 0;
}
.flow-step span {
  display: inline-flex;
  width: 100%;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(rgb(46, 196, 182), rgb(0, 158, 146));
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.flow-step h3 {
  margin: 0;
  font-size: 28px;
  text-align: center;
  line-height: 1.3;
}
.flow-step p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}
.flow-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -19px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 46px;
  font-weight: 300;
  color: var(--color-ink);
}
.faq-grid {
  display: grid;
  gap: 16px;
}
.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.faq-item button {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--color-ink);
  padding: 19.2px 24px;
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-item button span {
  color: var(--color-ink);
  font-size: 17.6px;
  line-height: 1;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--color-muted);
}
.faq-item.open .faq-content {
  max-height: 300px;
  padding-bottom: 19.2px;
}
.contact-fullbleed {
  width: 100%;
  overflow: hidden;
  padding-top: clamp(32px, 5vw, 72px);
  border-radius: 40px 40px 0 0;
}
.contact-embed {
  display: block;
  width: 100%;
  min-height: 1080px;
  border: 0;
}
@supports (content-visibility: auto) {
  main > .section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 960px;
  }
}
#contact {
  padding-top: 0;
  padding-bottom: 0;
}
main > #contact::before,
main > #contact::after {
  content: none;
}
.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 12.8px;
  right: 12.8px;
  bottom: 12.8px;
  z-index: 15;
  gap: 9.6px;
  padding: 11.2px;
  border-radius: 16px;
  background: rgba(245, 249, 255, 0.94);
  border: 1px solid rgba(15, 29, 43, 0.08);
  box-shadow: 0 12px 28px rgba(15, 29, 43, 0.16);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.sticky-mobile-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-mobile-cta .btn {
  flex: 1;
  padding: 11.52px 12.8px;
  font-size: 13.6px;
}
.sticky-call-btn {
  gap: 5.6px;
}
.site-footer {
  position: relative;
  padding: 40px 0;
  background: linear-gradient(
    128deg,
    #007f78 0%,
    #179678 30%,
    #5dae52 56%,
    #d5983b 78%,
    #e16617 100%
  );
  overflow: hidden;
}
.site-footer::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.site-footer .container {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13.6px;
  line-height: 1.8;
}
.site-footer p {
  margin: 0;
}
.footer-left {
  text-align: left;
}
.footer-right {
  text-align: right;
}
.company-logo {
  width: min(110px, 20vw);
  height: auto;
  margin: 0 0 12px auto;
}
@media (max-width: 720px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-right {
    text-align: left;
  }
  .company-logo {
    margin: 0 0 12px;
    width: min(110px, 35vw);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .device-stage::before,
  .device-stage::after,
  #challenges::before,
  #challenges::after {
    transition: none;
    animation: none;
    transform: none;
  }
}
@media (max-width: 960px) {
  .section-title,
  .feature-copy h3,
  .journey-step h3,
  .flow-step h3 {
    text-align: center;
  }
  .section-title {
    margin-inline: auto;
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 24px;
    grid-template-areas:
      "copy-main"
      "device"
      "badges"
      "cta";
  }
  .hero-copy {
    display: contents;
  }
  .hero-copy-main {
    grid-area: copy-main;
    justify-self: center;
  }
  .device-stage {
    grid-area: device;
  }
  .hero-badges {
    grid-area: badges;
  }
  .cta-group {
    grid-area: cta;
  }
  .device-stage {
    min-height: 320px;
  }
  .hero-badges,
  .cta-group {
    margin-top: 0;
  }
  .flow::before {
    display: none;
  }
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .flow-step {
    min-height: auto;
  }
  .flow-step:not(:last-child)::after {
    display: none;
  }
  .flow-step h3 {
    font-size: 26px;
  }
  .flow-step p {
    font-size: 16px;
  }
  .journey-diagram {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 18px;
  }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-row .feature-copy,
  .feature-row:nth-child(even) .feature-copy {
    order: 1;
  }
  .feature-row .feature-media,
  .feature-row:nth-child(even) .feature-media {
    order: 2;
  }
  .feature-copy {
    padding: 0;
  }
  .feature-media {
    min-height: 180px;
  }
  .challenge-title {
    margin-bottom: 58px;
    font-size: clamp(28px, 4.2vw, 38px);
    line-height: 1.24;
  }
  .challenge-title > span {
    gap: 16px;
  }
  .challenge-title-bracket {
    max-height: 112px;
  }
  .challenge-clouds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .challenge-cloud:nth-child(1),
  .challenge-cloud:nth-child(2),
  .challenge-cloud:nth-child(3),
  .challenge-cloud:nth-child(4),
  .challenge-cloud:nth-child(5) {
    grid-column: span 1;
  }
  .challenge-cloud {
    min-height: 150px;
    border-width: 6px;
    border-radius: 44px;
    padding: 18px 20px;
  }
  .dilemma-banner {
    margin-top: 38px;
    padding: 34px 20px 44px;
  }
  .dilemma-banner-panel {
    width: min(100%, calc(100% - 120px));
    min-height: 178px;
    padding: 28px 48px;
    border-radius: 26px;
  }
  .dilemma-banner-text {
    font-size: clamp(24px, 4.1vw, 40px);
  }
  .dilemma-person-left {
    left: 8px;
  }
  .dilemma-person-left img {
    width: clamp(126px, 18vw, 176px);
  }
  .dilemma-person-right {
    right: 12px;
  }
  .dilemma-person-right img {
    width: clamp(112px, 16vw, 156px);
  }
}
@media (min-width: 961px) {
  .hero .container {
    width: min(1880px, 94%);
    grid-template-columns: minmax(560px, 1.14fr) minmax(0, 0.86fr);
    gap: 36px;
  }
  .hero-copy {
    display: block;
  }
  .section-title,
  .section-lead {
    margin-inline: auto;
    text-align: center;
  }
  .section-title {
    white-space: normal;
  }
  .device-stage {
    overflow: visible;
    margin-right: clamp(-120px, -4vw, -48px);
  }
  .service-shot {
    width: 128%;
    max-width: none;
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  :root {
    --anchor-offset: 88px;
  }
  .site-header,
  .sticky-mobile-cta {
    backdrop-filter: none;
  }
  .marker-highlight {
    padding: 0;
  }
  .marker-highlight::before {
    content: none;
  }
  .marker-highlight-text {
    display: block;
  }
  .hero {
    padding: 44px 0;
  }
  .hero p {
    margin-bottom: 0;
  }
  .main-copy-image {
    width: min(100%, 560px);
  }
  .hero .container {
    gap: 18px;
  }
  .cta-group {
    flex-direction: column;
  }
  .cta-group .btn {
    width: 100%;
  }
  .header-cta {
    display: none;
  }
  .site-header .container {
    justify-content: space-between;
  }
  .hero h1 {
    white-space: normal;
  }
  .hero-badges {
    display: none;
  }
  .service-shot-desktop {
    display: none;
  }
  .service-shot-mobile {
    display: block;
  }
  .device-stage {
    min-height: 290px;
  }
  .sticky-mobile-cta {
    display: flex;
  }
  body {
    padding-bottom: 89.6px;
  }
  .journey-diagram {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .journey-step {
    gap: 14px;
  }
  .journey-step-label {
    width: min(100%, 320px);
    min-height: 80px;
  }
  .journey-step-visual {
    width: min(100%, 180px);
  }
  .journey-step-no {
    left: -10px;
    bottom: -16px;
  }
  .feature-copy h3 {
    font-size: 22px;
    line-height: 1.5;
  }
  .feature-copy p {
    font-size: 14.5px;
    line-height: 1.8;
  }
  .feature-media {
    min-height: 160px;
  }
  .challenge-title {
    margin-bottom: 34px;
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.28;
    letter-spacing: 0.03em;
  }
  .challenge-title > span {
    gap: 12px;
  }
  .challenge-title-bracket {
    max-height: 160px;
  }
  .challenge-clouds {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .challenge-cloud {
    min-height: 124px;
    border-width: 5px;
    border-radius: 34px;
    padding: 18px 16px;
  }
  .challenge-cloud p {
    font-size: 16px;
    line-height: 1.55;
  }
  .dilemma-banner {
    width: min(100%, 430px);
    margin-top: 32px;
    padding: 24px 6px 26px;
  }
  .dilemma-banner-panel {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 0;
    border-radius: 22px;
  }
  .dilemma-banner-image {
    width: 100%;
  }
  .dilemma-banner-text {
    font-size: 22px;
    line-height: 1.45;
  }
  .dilemma-person {
    position: absolute;
    display: block;
  }
  .dilemma-person-left,
  .dilemma-person-right {
    bottom: 26px;
  }
  .dilemma-person-left {
    left: 20px;
  }
  .dilemma-person-right {
    right: 20px;
  }
  .dilemma-person-left img {
    width: clamp(40px, 14vw, 70px);
  }
  .dilemma-person-right img {
    width: clamp(38px, 13vw, 64px);
  }
  #challenges::before,
  #challenges::after {
    filter: blur(18px);
    opacity: 0.4;
  }
  main > .section::before {
    inset: 0;
    border-radius: 20px;
  }
}
