:root {
  --primary: #f07537;
  --primary-dark: #d95f25;
  --ink: #191919;
  --body: #222;
  --muted: #4b5563;
  --sub: #949aa2;
  --line: #e5e7eb;
  --soft: #f7f7f7;
  --soft-blue: #f9fafb;
  --dark: #2a262c;
  --white: #fff;
  --container: 960px;
  --wide: 1240px;
  font-family: "Noto Sans JP", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 7px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(25, 25, 25, 0.08);
}

.brand-link {
  display: block;
  width: 200px;
  height: 56px;
}

.brand-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
}

.site-nav a {
  position: relative;
  padding: 1px 24px 1px 0;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 236px;
  height: 44px;
  padding: 0 24px;
  border-radius: 130px;
  color: var(--white);
  background: var(--primary);
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.site-nav .nav-cta {
  padding: 0 24px;
}

.nav-cta span {
  font-size: 13px;
  line-height: 17px;
}

.nav-cta small {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  line-height: 13px;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-open .menu-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  padding-top: 70px;
  background: var(--white);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 600px;
  align-items: center;
  width: min(var(--wide), calc(100vw - 80px));
  min-height: 531px;
  margin: 0 auto;
  padding: 70px 0 26px;
}

.hero-copy {
  width: min(415px, 100%);
  margin-left: 52px;
}

.hero-heading-group {
  display: grid;
  gap: 6px;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: 0.04em;
}

.hero-lead {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.hero-metrics img {
  height: 58px;
  width: auto;
}

.hero-note {
  margin: 4px 0 0;
  color: var(--primary);
  font-size: 14px;
  line-height: 28px;
  white-space: nowrap;
}

.hero-description {
  margin: 24px 0 0;
  color: var(--body);
  line-height: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 48px 0 40px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button::after {
  content: "›";
  position: absolute;
  right: 18px;
  top: 50%;
  font-size: 26px;
  line-height: 1;
  transform: translateY(-55%);
}

.button-primary {
  flex-direction: column;
  color: var(--white);
  background: var(--primary);
}

.button-primary small {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
}

.button-cta {
  flex-direction: column;
  gap: 4px;
  min-height: 60px;
  line-height: 1;
}

.button-cta span {
  display: block;
  font-size: 16px;
  line-height: 18px;
}

.button-cta small {
  display: block;
  margin-top: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hero-button {
  width: min(360px, 100%);
  margin-top: 33px;
}

.button-outline {
  width: 360px;
  max-width: 100%;
  min-height: 62px;
  border: 3px solid var(--primary);
  color: var(--primary);
  background: var(--white);
  font-size: 16px;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--primary);
  transform: translateY(-2px);
}

.hero-device {
  justify-self: end;
  width: 600px;
}

.ipad-stage {
  position: relative;
  width: 600px;
  height: 435px;
  overflow: hidden;
}

.ipad-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.ipad-screen {
  position: absolute;
  z-index: 2;
  left: 76px;
  top: 39px;
  width: 448px;
  height: 337px;
  overflow: hidden;
  border-radius: 2px;
  background: #222;
}

.comparison {
  --position: 50%;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  background: #222;
}

.comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.comparison-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-before {
  width: 100%;
  max-width: none;
}

.comparison-after {
  position: absolute;
  inset: 0;
}

.compare-divider {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
}

.compare-handle {
  position: absolute;
  z-index: 6;
  left: var(--position);
  top: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.compare-handle::after {
  content: "";
  position: absolute;
  inset: 9px 15px;
  border-radius: 999px;
  background: #9ca3af;
}

.compare-label {
  position: absolute;
  z-index: 7;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 4px 16px;
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  line-height: 24px;
}

.compare-label-before {
  left: 12px;
  background: rgba(0, 0, 0, 0.65);
}

.compare-label-after {
  right: 12px;
  background: #f03748;
}

.compare-range {
  position: absolute;
  z-index: 8;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.platforms {
  display: none;
  gap: 30px;
  padding: 34px 0 60px;
  overflow: hidden;
  text-align: center;
}

.platforms p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
}

.platform-marquee {
  width: 100vw;
  overflow: hidden;
  padding-inline: 154px;
}

.platform-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: platformScroll 64s linear infinite;
}

.platform-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 76px;
  padding-right: 76px;
}

.platform-set img {
  height: 38px;
  width: auto;
  flex: 0 0 auto;
}

@keyframes platformScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.key-value {
  position: relative;
  min-height: 652px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
}

.key-value-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(669px, calc(100vw - 48px));
  text-align: center;
  transform: translate(-50%, -48%);
}

.key-value h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 46px;
}

.key-value p {
  width: min(530px, 100%);
  margin: 32px auto 0;
  color: var(--body);
  line-height: 28px;
}

.float-image {
  --parallax-y: 0px;
  position: absolute;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(25, 25, 25, 0.08);
  animation: floatSoft 6.8s ease-in-out infinite;
}

.float-phone {
  left: 0;
  top: 252px;
  width: 204px;
  height: 275px;
}

.float-service {
  left: 88px;
  top: 18px;
  width: 230px;
  height: 299px;
  animation-delay: -1.4s;
}

.float-room {
  right: -8px;
  top: -8px;
  width: 215px;
  height: 269px;
  animation-delay: -2.6s;
}

.float-worker {
  right: 57px;
  top: 371px;
  width: 265px;
  height: 177px;
  animation-delay: -3.8s;
}

.float-street {
  left: 12px;
  top: 577px;
  width: 243px;
  height: 159px;
  animation-delay: -4.6s;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translate3d(0, var(--parallax-y), 0);
  }
  50% {
    transform: translate3d(0, calc(var(--parallax-y) - 12px), 0);
  }
}

.section-container {
  width: min(var(--container), calc(100vw - 48px));
  margin-inline: auto;
}

.steps {
  padding: 92px 0 78px;
  background: var(--white);
}

.section-title {
  display: grid;
  gap: 30px;
  margin-bottom: 32px;
}

.title-mark {
  width: 75px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.section-title h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 46px;
}

.step-grid {
  display: grid;
  grid-template-columns: 280px 48px 280px 48px 280px;
  align-items: start;
  justify-content: center;
  gap: 16px;
}

.step-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  text-align: center;
}

.step-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: 18px;
  background: var(--soft);
}

.step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card h3 {
  margin: 4px 0 0;
  font-size: 20px;
  line-height: 32px;
}

.step-card p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 28px;
}

.step-arrow {
  position: relative;
  width: 48px;
  height: 112px;
  margin-top: 133px;
}

.step-arrow::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 46px;
  border-top: 3px dotted var(--sub);
}

.step-arrow::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 13px;
  height: 13px;
  border-top: 3px solid var(--sub);
  border-right: 3px solid var(--sub);
  transform: rotate(45deg);
}

.steps .button-outline {
  display: flex;
  margin: 32px auto 0;
}

.cases {
  display: grid;
  gap: 26px;
  padding: 100px 0 80px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
}

.case-carousel {
  position: relative;
  display: grid;
  gap: 18px;
}

.case-viewport {
  width: min(var(--container), calc(100vw - 48px));
  margin-inline: auto;
  overflow: visible;
}

.case-track {
  display: flex;
  gap: 32px;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 24px;
  flex: 0 0 min(var(--container), calc(100vw - 48px));
  align-items: start;
  padding: 40px;
  border-radius: 16px;
  background: var(--white);
}

.case-copy {
  display: grid;
  gap: 16px;
  padding-block: 24px;
}

.case-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.case-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary);
  font-size: 22px;
  font-weight: 700;
}

.case-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.case-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 40px;
}

.case-card p {
  margin: 0;
  line-height: 28px;
}

.recommended {
  display: grid;
  gap: 4px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 24px;
}

.recommended div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.recommended img {
  width: auto;
  height: 24px;
}

.case-visual {
  display: grid;
  gap: 16px;
}

.card-comparison {
  width: 460px;
  height: 307px;
  border-radius: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  padding: 4px 16px;
  border-radius: 40px;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.08);
  font-size: 14px;
  line-height: 24px;
}

.case-nav {
  position: absolute;
  z-index: 20;
  top: calc(50% - 18px);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  background: rgba(25, 25, 25, 0.22);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.case-nav[hidden] {
  display: none;
}

.case-nav:hover,
.case-nav:focus-visible {
  background: rgba(240, 117, 55, 0.66);
  transform: translateY(-1px);
}

.case-nav span {
  display: block;
  margin-top: -3px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.case-nav-prev {
  left: max(10px, calc((100vw - var(--container)) / 2 - 54px));
}

.case-nav-next {
  right: max(10px, calc((100vw - var(--container)) / 2 - 54px));
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-block: 2px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.carousel-dots button.is-active {
  background: var(--primary);
  transform: scale(1.08);
}

.cases > .button-outline {
  justify-self: center;
}

.faq {
  padding: 80px 0;
  background: var(--soft-blue);
}

.faq-container {
  width: min(768px, calc(100vw - 48px));
  margin-inline: auto;
  text-align: center;
}

.faq h2 {
  margin: 0;
  color: #111827;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

.faq-lead {
  margin: 16px 0 64px;
  color: var(--muted);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 69px;
  padding: 20px 0;
  border: 0;
  color: #111827;
  background: transparent;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: #6b7280;
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 22px;
}

.trial {
  display: grid;
  justify-items: center;
  gap: 37px;
  padding: 80px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
  text-align: center;
}

.trial h2 {
  width: min(793px, calc(100vw - 48px));
  margin: 0;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

.trial p {
  width: min(700px, calc(100vw - 48px));
  margin: 0;
  color: #d1d5db;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.trial-button {
  width: 360px;
  min-height: 54px;
  max-width: calc(100vw - 48px);
}

.trial-gallery {
  position: relative;
  width: 100vw;
  height: 192px;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: galleryScroll 98s linear infinite;
}

.gallery-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.gallery-track figure {
  position: relative;
  flex: 0 0 192px;
  width: 192px;
  height: 192px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #151316;
}

.gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-track figcaption {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  font-size: 12px;
  line-height: 16px;
}

@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-footer {
  position: relative;
  padding: 34px 0;
  color: #d1d5db;
  background: var(--dark);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 8px;
}

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-columns h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.footer-columns a {
  width: fit-content;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 24px;
  transition: color 160ms ease;
}

.footer-columns a:hover {
  color: var(--white);
}

.copyright {
  position: static;
  width: min(1280px, calc(100vw - 48px));
  margin: 0 auto;
  padding-top: 0;
  border-top: 0;
  color: #d1d5db;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}

.section-observe {
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-enabled .section-observe {
  opacity: 0;
  transform: translateY(24px);
}

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

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

@media (max-width: 1180px) {
  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    padding-right: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 42px;
    min-height: auto;
    padding-top: 48px;
  }

  .hero-copy {
    width: min(620px, 100%);
    margin-left: 0;
    text-align: center;
  }

  .hero-metrics {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .hero-device {
    justify-self: center;
  }

  .platforms {
    padding-top: 52px;
  }

  .float-phone {
    left: -84px;
  }

  .float-service {
    left: 24px;
  }

  .float-room {
    right: -84px;
  }

  .float-worker {
    right: 12px;
  }
}

@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled {
    background: var(--white);
    box-shadow: none;
    backdrop-filter: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    font-size: 16px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 10px;
  }

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

  .step-arrow {
    display: none;
  }

  .step-icon {
    width: 98px;
    height: 98px;
    border-radius: 24px;
  }

  .step-icon img {
    width: 64px;
    height: 64px;
  }

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

  .card-comparison {
    width: 100%;
    height: auto;
    aspect-ratio: 460 / 307;
  }

}

@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding-inline: 16px;
  }

  .brand-link {
    width: 150px;
  }

  .site-nav {
    top: 66px;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-inner {
    width: min(100%, calc(100vw - 32px));
    padding-top: 36px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.18;
    letter-spacing: 0;
  }

  .hero-lead {
    font-size: 20px;
    line-height: 32px;
  }

  .hero-metrics {
    gap: 10px;
  }

  .hero-metrics img {
    height: 48px;
  }

  .hero-device,
  .ipad-stage {
    width: min(600px, 100%);
  }

  .ipad-stage {
    height: auto;
    aspect-ratio: 600 / 435;
  }

  .ipad-screen {
    left: 12.67%;
    top: 8.97%;
    width: 74.67%;
    height: 77.47%;
  }

  .platforms {
    gap: 20px;
    padding: 34px 0 42px;
  }

  .platforms p {
    width: calc(100vw - 48px);
    margin-inline: auto;
  }

  .platform-marquee {
    padding-inline: 28px;
  }

  .platform-set {
    gap: 42px;
    padding-right: 42px;
  }

  .key-value {
    min-height: 760px;
  }

  .key-value-copy {
    transform: translate(-50%, -50%);
  }

  .key-value h2,
  .section-title h2 {
    font-size: 26px;
    line-height: 40px;
  }

  .key-value p {
    margin-top: 24px;
  }

  .float-phone {
    left: -96px;
    top: 566px;
    width: 158px;
    height: 118px;
  }

  .float-service {
    left: 14px;
    top: 14px;
    width: 138px;
    height: 158px;
  }

  .float-room {
    right: -84px;
    top: 14px;
    width: 146px;
    height: 158px;
  }

  .float-worker {
    right: -42px;
    top: 584px;
    width: 166px;
    height: 112px;
  }

  .float-street {
    display: none;
  }

  .steps,
  .cases,
  .faq,
  .trial {
    padding-block: 72px;
  }

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

  .step-card {
    min-height: auto;
    gap: 16px;
    padding: 0;
  }

  .button-outline {
    min-height: 58px;
    font-size: 16px;
  }

  .case-card {
    padding: 24px;
    border-radius: 14px;
  }

  .case-nav {
    top: calc(50% - 26px);
    width: 36px;
    height: 36px;
  }

  .case-nav-prev {
    left: 8px;
  }

  .case-nav-next {
    right: 8px;
  }

  .case-nav span {
    font-size: 28px;
  }

  .case-copy {
    padding-block: 0;
  }

  .case-heading {
    gap: 12px;
  }

  .case-icon {
    width: 42px;
    height: 42px;
  }

  .faq h2,
  .trial h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .faq-lead,
  .trial p {
    font-size: 16px;
  }

  .faq-lead {
    margin-bottom: 42px;
  }

  .faq-item button {
    gap: 16px;
    font-size: 16px;
  }

  .trial-gallery {
    height: 142px;
  }

  .gallery-set {
    gap: 24px;
    padding-right: 24px;
  }

  .gallery-track figure {
    flex-basis: 142px;
    width: 142px;
    height: 142px;
  }

  .copyright {
    width: calc(100vw - 48px);
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-metrics img {
    height: 44px;
  }

  .button-primary {
    min-height: 54px;
  }

  .compare-label {
    min-height: 24px;
    padding: 2px 10px;
    font-size: 12px;
  }
}
