:root {
  --topbar-offset: 74px;
  --bg: #f6f7f8;
  --bg-muted: #f1f3f5;
  --surface: #ffffff;
  --surface-strong: #fafbfc;
  --border: #e4e8ec;
  --text: #14221c;
  --text-muted: #5b6963;
  --brand: #0ea66c;
  --brand-deep: #087a50;
  --brand-soft: #e7f7ef;
  --accent: #f59e0b;
  --accent-soft: #fff6e8;
  --shadow: 0 18px 50px rgba(18, 34, 27, 0.06);
  --shadow-soft: 0 10px 30px rgba(18, 34, 27, 0.05);
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: auto;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  margin: 0;
  padding-top: var(--topbar-offset);
  overflow-x: hidden;
  overflow-y: auto;
  background: #f6f7f8;
  color: var(--text);
  line-height: 1.6;
}
body.appModalOpen {
  overflow-y: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(920px, calc(100% - 32px)); }
.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid rgba(20, 34, 28, .08);
  backdrop-filter: blur(18px);
  background: rgba(244, 247, 246, .84);
}
.topbar__inner, .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.legalPage__container {
  display: grid;
  gap: 20px;
}
.legalPage__header {
  align-items: flex-start;
}
.legalCardStack {
  display: grid;
  gap: 14px;
}
.legalCard {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.legalCard h2 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.legalCard p,
.legalCard li {
  color: var(--text-muted);
  line-height: 1.7;
}
.legalCard ul {
  margin: 0;
  padding-left: 18px;
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}
.brand img {
  display: block;
  height: 36px;
  width: auto;
}
.nav {
  display: flex;
  gap: 18px;
  color: var(--text-muted);
  font-size: .95rem;
}
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity .2s ease, transform .2s ease;
}
.nav a.is-active {
  color: var(--text);
}
.nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}
.topbar__cta { min-height: 40px; padding: 0 14px; border-radius: 12px; }
.menuToggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}
.menuToggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #34443d;
}
.mobileMenuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 20, .36);
  z-index: 39;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.mobileMenuPanel {
  position: fixed;
  top: var(--topbar-offset);
  left: 0;
  right: 0;
  width: 100%;
  max-height: calc(100vh - var(--topbar-offset));
  overflow-y: auto;
  background: #f4f6f8;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid rgba(20, 34, 28, .06);
  z-index: 40;
  box-shadow: 0 18px 38px rgba(18, 34, 27, .12);
  padding: 12px 24px 28px;
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.mobileMenuHeader {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 56px;
}
.mobileMenuHeader__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobileDownloadBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
}
.mobileMenuClose {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: #5f6d67;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobileNav {
  display: grid;
  gap: 0;
  margin-top: 20px;
}
.mobileNav a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  color: #4f5c6c;
  font-size: 1.26rem;
  line-height: 1.2;
  font-weight: 500;
}
.mobileMenuOverlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobileMenuPanel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
body.menuOpen {
  overflow-y: hidden;
}

@media (min-width: 981px) {
  body.menuOpen {
    overflow-y: auto;
  }
}

.reveal-target {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}
.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero, .section { padding: 88px 0; }
.hero { padding-top: 72px; }
.hero__grid, .split, .detailGrid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 32px; align-items: center; }
.eyebrow, .sectionKicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 12px;
  background: #f4f6f7;
  border: 1px solid rgba(20,34,28,.06);
  color: #0b8f5b;
  font-size: .92rem;
  font-weight: 700;
}
.sectionKicker { margin-bottom: 14px; }
h1, .pageTitle {
  margin-top: 18px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.2;
  letter-spacing: -.03em;
  font-weight: 700;
  word-break: keep-all;
}
.heroBreak { display: inline; }
h2 { font-size: clamp(1.45rem, 2.1vw, 2.2rem); line-height: 1.28; letter-spacing: -.02em; word-break: keep-all; }
h3 { font-size: 1.02rem; line-height: 1.42; word-break: keep-all; }
.hero__copy, .pageCopy, .sectionTitle p, .card p, .heroCard p, .panel p, .previewCard p, .faqItem p, .businessCard p, .detailCard p, .heroStat p, .phoneMock__item p {
  color: var(--text-muted);
  line-height: 1.68;
  word-break: keep-all;
}
.hero__copy, .pageCopy {
  margin-top: 16px;
  max-width: 620px;
  font-size: 1rem;
}
.sectionTitle p {
  max-width: 620px;
  font-size: 1rem;
}
.hero__actions, .ctaActions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__actions--compact { margin-top: 22px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-soft); }
.button--secondary, .button--ghost { background: var(--surface); border-color: var(--border); }
.heroDownloadButton {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 10px;
  border-color: #d7dbe0;
  background: #ffffff;
  color: #26282c;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: none;
}
.heroDownloadButton:hover {
  border-color: #c2c8cf;
  background: #f8f9fb;
}
.button--small { min-height: 42px; padding: 0 14px; border-radius: 12px; font-size: .93rem; }
.button--full { width: 100%; }

.hero__meta, .tagRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero__meta span, .tagRow span, .businessCard__meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--border);
  color: #51605a;
  font-size: .92rem;
  white-space: nowrap;
}

.heroStats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.heroStat {
  padding: 18px 18px 16px;
  border: 1px solid rgba(20, 34, 28, .08);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.heroStat strong::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: 1px;
}
.heroStat strong { display: block; margin-bottom: 6px; font-size: .98rem; }

.heroShowcase, .heroCardWrap, .cardGrid, .previewGrid, .faqList, .listGrid { display: grid; gap: 18px; }
.phoneMock, .heroCard, .card, .panel, .previewCard, .faqItem, .ctaBox, .businessCard, .detailCard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.heroCard, .card, .panel, .previewCard, .faqItem, .businessCard, .detailCard, .ctaBox { padding: 24px; }
.faqItem {
  display: grid;
  gap: 10px;
}
.faqList--accordion {
  gap: 14px;
}
.faqItem--accordion {
  padding: 0;
  overflow: hidden;
  min-height: 92px;
}
.faqItem--accordion[open] {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
}
.faqItem__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 92px;
  padding: 14px 18px;
  cursor: pointer;
}
.faqItem__summary::-webkit-details-marker {
  display: none;
}
.faqItem__question {
  display: flex;
  align-items: center;
  min-height: 100%;
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  word-break: keep-all;
}
.faqItem__icon {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1;
  transition: transform .24s ease, color .24s ease;
}
.faqItem--accordion[open] .faqItem__icon {
  transform: rotate(180deg);
  color: var(--brand-deep);
}
.faqItem__answer {
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
}
.faqItem__answerInner {
  min-height: 0;
  overflow: hidden;
  padding: 0 18px;
  border-top: 1px solid rgba(20, 34, 28, .06);
}
.faqItem__answer p {
  margin: 0;
  padding: 12px 0 16px;
  font-size: .88rem;
  line-height: 1.6;
  word-break: keep-all;
}
.faqSectionTop {
  display: grid;
  gap: 8px;
}
.faqSectionTop__action {
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
  margin-bottom: 6px;
}
.faqMoreLink {
  display: inline-flex;
  align-items: center;
  color: #5d6a64;
  font-size: .92rem;
  font-weight: 600;
}
.faqMoreLink:hover {
  color: var(--brand-deep);
}
.card--soft {
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,251,249,.98) 100%);
}
.card--feature {
  position: relative;
  overflow: hidden;
}
.card--feature::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 24px;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: rgba(14,166,108,.18);
}
.card--feature h3 { padding-top: 14px; }
.heroCard--sub { margin-left: 44px; }
.heroCard--floating { margin-top: -44px; position: relative; z-index: 2; }
.heroCard__label { display: inline-block; margin-bottom: 14px; color: #0b8f5b; font-size: .84rem; font-weight: 800; }

.phoneMock {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: linear-gradient(180deg, #16352a 0%, #10281f 100%);
  color: #f4fff9;
}
.phoneMock::after {
  content: '';
  position: absolute;
  inset: auto -24px -32px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(14, 166, 108, .18);
  filter: blur(8px);
}
.phoneMock__top { display: grid; gap: 10px; margin-bottom: 18px; }
.phoneMock__pill {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  padding: 0 11px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #c9f5de;
  font-size: .82rem;
  font-weight: 700;
}
.phoneMock__list { display: grid; gap: 12px; position: relative; z-index: 1; }
.phoneMock__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.phoneMock__item--accent { background: linear-gradient(180deg, rgba(14,166,108,.28) 0%, rgba(255,255,255,.1) 100%); }
.phoneMock__item strong { display: block; margin-bottom: 4px; color: #fff; }
.phoneMock__item p { color: rgba(244,255,249,.76); font-size: .92rem; line-height: 1.45; }
.phoneMock__item span { color: #c9f5de; font-size: .84rem; font-weight: 700; white-space: nowrap; }

.section--muted {
  background: linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(243,245,247,.98) 18%, rgba(239,242,245,.98) 50%, rgba(243,245,247,.98) 82%, rgba(255,255,255,.9) 100%);
}
.sectionTitle { margin-bottom: 28px; }
.sectionTitle--left { margin-bottom: 20px; }
.sectionTitle--center {
  text-align: center;
}
.sectionTitle--center .sectionKicker {
  margin-left: auto;
  margin-right: auto;
}
.sectionTitle--center p {
  margin-left: auto;
  margin-right: auto;
}
.cardGrid--three, .previewGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cardGrid--problem .card,
.cardGrid--feature .card { min-height: 100%; }
.split--audience { align-items: stretch; }
.split--audiencePriority { grid-template-columns: .96fr 1.04fr; }
.section--compactMobile { position: relative; }
.bulletList { margin: 0; padding-left: 20px; }
.bulletList li + li { margin-top: 12px; }
.bulletList--card {
  padding: 22px 22px 22px 42px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(20,34,28,.06);
  box-shadow: var(--shadow-soft);
}
.panel--mobileAccent {
  background: linear-gradient(180deg, #ffffff 0%, #f3faf6 100%);
  border-color: rgba(14,166,108,.12);
}
.panel--highlight {
  position: relative;
  overflow: hidden;
}
.panel--highlight::after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(14,166,108,.08);
}
.previewCard--link, .textLink { transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.previewCard--empty,
.businessCard--empty { background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%); border-style: dashed; }
.previewCard--link:hover, .textLink:hover { transform: translateY(-2px); }
.previewCarousel {
  position: relative;
}
.previewCarousel__viewport {
  overflow: hidden;
}
.previewMarquee {
  display: flex;
  width: max-content;
  gap: 18px;
}
.previewMarquee__track {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
  min-width: max-content;
  animation: preview-marquee 48s linear infinite;
  will-change: transform;
}
.previewCarousel__item {
  flex: 0 0 340px;
  width: 340px;
}
.previewCarousel__empty {
  max-width: 420px;
}
.previewCard--business {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.previewCard.previewCard--business {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@keyframes preview-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-100% - 18px), 0, 0);
  }
}
.previewSectionTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.previewSectionTop__action {
  display: flex;
  justify-content: flex-end;
  padding-top: 6px;
}
.previewTopLink {
  border: 0;
  background: transparent;
  color: var(--brand-deep);
  font-size: .92rem;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}
.previewTopLink:hover {
  text-decoration: underline;
}
.previewCard__imageWrap {
  width: 100%;
  aspect-ratio: 16 / 9.6;
  background: linear-gradient(180deg, #edf4f0 0%, #dfe8e3 100%);
  overflow: hidden;
  margin-top: 10px;
}
.previewCard__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.previewCard__body {
  display: grid;
  gap: 6px;
  padding: 14px 18px 18px;
  min-height: 124px;
}
.previewCard__region {
  margin: 0;
  font-size: .86rem;
  color: #6b7973;
}
.previewCard__summary {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
}
.pageIntro { padding-bottom: 36px; }
.listGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.businessCard__meta { margin-bottom: 14px; width: fit-content; }
.businessCard__imageWrap { margin: -24px -24px 18px; aspect-ratio: 16 / 10; overflow: hidden; border-top-left-radius: 24px; border-top-right-radius: 24px; background: linear-gradient(180deg, #edf4f0 0%, #dfe8e3 100%); position: relative; }
.businessCard__gallery,
.detailHero__gallery {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.businessCard__gallery::-webkit-scrollbar,
.detailHero__gallery::-webkit-scrollbar {
  display: none;
}
.businessCard__gallerySlide,
.detailHero__gallerySlide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
}
.businessCard__image { width: 100%; height: 100%; object-fit: cover; display: block; }
.businessCard__galleryDots,
.detailHero__galleryDots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(20, 34, 28, .22);
  backdrop-filter: blur(6px);
}
.businessCard__galleryDots span,
.detailHero__galleryDots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}
.businessCard {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.businessCard h2 { font-size: 1.3rem; line-height: 1.28; text-wrap: balance; }
.businessCard p { margin-top: 0; min-height: 72px; }
.businessCard__address {
  margin-top: 0;
  font-size: .94rem;
  color: #6b7973;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.businessCard .tagRow {
  margin-top: 0;
}
.textLink { display: inline-flex; margin-top: auto; padding-top: 2px; font-weight: 700; color: #0b8f5b; }
.textLink--inline { margin-top: 0; }
.pageIntro--detail { padding-top: 44px; padding-bottom: 58px; }
.detailStack { display: grid; gap: 14px; }
.detailHero__imageWrap { aspect-ratio: 16 / 8.8; border-radius: 20px; overflow: hidden; background: linear-gradient(180deg, #edf4f0 0%, #dfe8e3 100%); box-shadow: var(--shadow-soft); position: relative; }
.detailHero__imageWrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f7b76;
  font-size: .88rem;
  font-weight: 600;
}
.detailHero__image { width: 100%; height: 100%; object-fit: cover; display: block; }
.detailCard--compact {
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.detailCard--info { display: grid; gap: 12px; }
.pageTitle--detail {
  margin-top: 6px;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  line-height: 1.26;
}
.pageCopy--detail {
  margin-top: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: #5f6d67;
}
.tagRow--detail {
  margin-top: 0;
  gap: 8px;
}
.tagRow--detail span {
  min-height: 30px;
  padding: 0 10px;
  font-size: .8rem;
}
.detailSectionTitle {
  margin: 4px 0 0;
  font-size: 1.16rem;
  line-height: 1.34;
}
.detailBody {
  margin-top: 8px;
  font-size: .93rem;
  line-height: 1.62;
  color: #5b6963;
}
.infoList { display: grid; gap: 14px; }
.infoList--detail { gap: 10px; }
.infoList__item { display: grid; gap: 6px; padding-bottom: 14px; border-bottom: 1px solid rgba(20,34,28,.08); }
.infoList--detail .infoList__item { gap: 4px; padding-bottom: 10px; }
.infoList__item:last-child { padding-bottom: 0; border-bottom: 0; }
.infoList__item span { font-size: .84rem; color: #7f8b86; font-weight: 700; }
.infoList__item strong { font-size: .98rem; line-height: 1.5; font-weight: 400; }
.infoList--detail .infoList__item span { font-size: .78rem; }
.infoList--detail .infoList__item strong { font-size: .92rem; line-height: 1.45; font-weight: 400; }
.infoList__item--link strong { display: inline-flex; }
.detailMapFrame {
  margin-top: 8px;
  height: 220px;
  border-radius: 14px;
  border: 1px solid rgba(20,34,28,.1);
  overflow: hidden;
  background: #f0f3f2;
}
.detailMapCanvas {
  position: relative;
}
.detailMapFrame--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #146c46;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  border-style: dashed;
  border-color: rgba(20,34,28,.2);
  background: linear-gradient(180deg, #f6f9f7 0%, #edf3ef 100%);
}
.detailMapAddress {
  margin-top: 10px;
  font-size: .86rem;
  color: #627069;
}
.ctaSection { padding-top: 20px; }
.ctaBox {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(249,250,251,.98) 50%, rgba(255,255,255,.98) 100%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
}
.footer {
  position: relative;
  padding: 0;
  margin: 0;
  color: #7b8694;
  border-top: 1px solid rgba(20,34,28,.08);
  background: #edf0f4;
}
.footer .container {
  width: min(1120px, calc(100% - 72px));
}
.footer__inner--corp {
  display: grid;
  gap: 18px;
  padding: 44px 0 24px;
}
.footer__company {
  display: grid;
  gap: 4px;
}
.footer__company strong {
  color: #293241;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
}
.footer__company p {
  margin: 0;
  color: #8893a2;
  font-size: .86rem;
  line-height: 1.5;
}
.footer__company a {
  color: #6d7786;
  text-decoration: none;
}
.footer__company a:hover {
  text-decoration: underline;
}
.footer__legalLinks {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6d7786;
  font-size: .9rem;
}
.footer__legalLinks a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__copyright {
  color: #98a1ad;
  font-size: .76rem;
}
.downloadButtons {
  display: grid;
  gap: 10px;
}
.downloadButtons--center {
  max-width: 520px;
  margin: 0 auto;
}
.storeBadgeRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.storeBadgeLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-height: 60px;
}
.storeBadgeLink img {
  display: block;
  width: auto;
}
.storeBadgeLink:first-child img {
  height: 66px;
  max-height: 66px;
}
.storeBadgeLink:last-child img {
  height: 54px;
  max-height: 54px;
}

@media (max-width: 980px) {
  .hero__grid, .split, .detailGrid, .cardGrid--three, .previewGrid, .listGrid, .ctaBox {
    grid-template-columns: 1fr;
    display: grid;
  }
  .previewCarousel__item {
    flex: 0 0 calc((100% - 18px) / 2);
  }
  .nav--desktop,
  .topbar__actions {
    display: none;
  }
  .menuToggle {
    display: inline-flex;
  }
  .topbar__right {
    display: none;
  }
  .topbar__inner {
    min-height: 66px;
  }
  .footer .container {
    width: min(1120px, calc(100% - 48px));
  }
  .heroCard--sub { margin-left: 0; }
  .heroCard--floating { margin-top: 0; }
  .heroShowcase { order: -1; }
}

@media (max-width: 720px) {
  .container, .narrow { width: min(100% - 24px, 1120px); }
  .footer .container { width: min(100% - 24px, 1120px); }
  .topbar__inner { min-height: 60px; }
  .brand img { height: 33px; }
  .mobileMenuPanel {
    padding: 10px 20px 24px;
  }
  .mobileMenuHeader {
    min-height: 52px;
  }
  .mobileDownloadBtn {
    min-height: 36px;
    padding: 0 14px;
    font-size: .9rem;
  }
  .mobileMenuClose {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
  .mobileNav {
    margin-top: 16px;
  }
  .mobileNav a {
    min-height: 48px;
    font-size: clamp(1.03rem, 4.7vw, 1.2rem);
  }
  .hero, .section { padding: 64px 0; }
  .hero { padding-top: 28px; }
  .section--compactMobile { padding-top: 44px; padding-bottom: 44px; }
  h1, .pageTitle {
    margin-top: 14px;
    font-size: clamp(1.52rem, 6.5vw, 2rem);
    line-height: 1.28;
    letter-spacing: -.015em;
    text-wrap: pretty;
    font-weight: 700;
  }
  .heroBreak { display: none; }
  h2 {
    font-size: 1.48rem;
    line-height: 1.34;
    text-wrap: pretty;
  }
  .sectionKicker, .eyebrow { min-height: 34px; font-size: .84rem; }
  .hero__copy, .pageCopy, .sectionTitle p {
    font-size: .95rem;
    line-height: 1.62;
  }
  .hero__actions, .ctaActions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .hero__actions .button, .ctaActions .button { width: 100%; }
  .hero__actions--compact { gap: 10px; }
  .hero__meta, .tagRow {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .hero__meta::-webkit-scrollbar, .tagRow::-webkit-scrollbar { display: none; }
  .heroStats { grid-template-columns: 1fr; gap: 12px; }
  .phoneMock, .heroCard, .card, .panel, .previewCard, .faqItem, .businessCard, .detailCard, .ctaBox {
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(18, 34, 27, 0.05);
  }
  .faqItem--accordion {
    padding: 0;
    min-height: 62px;
  }
  .faqItem__summary {
    min-height: 62px;
    padding: 8px 12px;
    gap: 8px;
  }
  .faqItem__question {
    font-size: .84rem;
    line-height: 1.38;
  }
  .faqItem__answerInner {
    padding: 0 12px;
  }
  .faqItem__answer p {
    padding: 8px 0 10px;
    font-size: .8rem;
    line-height: 1.5;
  }
  .faqMoreLink {
    font-size: .84rem;
  }
  .previewTopLink {
    font-size: .84rem;
  }
  .phoneMock { padding: 18px; border-radius: 26px; }
  .phoneMock__item { padding: 14px; border-radius: 16px; }
  .sectionTitle { margin-bottom: 22px; }
  .sectionTitle--tightMobile { margin-bottom: 16px; }
  .cardGrid--problem,
  .cardGrid--feature,
  .previewGrid,
  .cardGrid,
  .faqList,
  .listGrid { gap: 12px; }
  .cardGrid--problem,
  .cardGrid--feature,
  .previewGrid {
    grid-template-columns: 1fr;
  }
  .previewMarquee {
    gap: 14px;
  }
  .previewMarquee__track {
    gap: 14px;
    animation-duration: 38s;
  }
  .previewCarousel__item {
    flex: 0 0 min(82vw, 320px);
    width: min(82vw, 320px);
  }
  .previewSectionTop {
    align-items: stretch;
    gap: 10px;
    margin-bottom: 16px;
  }
  .previewSectionTop__action {
    padding-top: 0;
    justify-content: flex-start;
  }
  .previewCard__imageWrap {
    aspect-ratio: 16 / 10.4;
  }
  .previewCard__body {
    gap: 6px;
    padding: 14px 16px 16px;
  }
  .previewCard__summary {
    font-size: .92rem;
  }
  .storeBadgeRow {
    gap: 10px;
  }
  .storeBadgeLink {
    height: 54px;
    min-height: 54px;
  }
  .storeBadgeLink:first-child img {
    height: 58px;
    max-height: 58px;
  }
  .storeBadgeLink:last-child img {
    height: 48px;
    max-height: 48px;
  }
  .bulletList { padding-left: 18px; }
  .bulletList--card {
    padding: 20px 20px 20px 36px;
    border-radius: 20px;
  }
  .panel--highlight { min-height: 100%; }
  .businessCard {
    gap: 10px;
  }
  .businessCard__imageWrap {
    margin: -20px -20px 14px;
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .businessCard h2 {
    font-size: 1.16rem;
    line-height: 1.34;
  }
  .businessCard p {
    min-height: 0;
    font-size: .95rem;
    line-height: 1.5;
  }
  .businessCard__address {
    font-size: .88rem;
    line-height: 1.45;
  }
  .businessCard .tagRow {
    gap: 8px;
    padding-bottom: 0;
    margin-top: 2px;
    flex-wrap: wrap;
    overflow: visible;
  }
  .businessCard .tagRow span,
  .businessCard__meta {
    min-height: 30px;
    padding: 0 10px;
    font-size: .82rem;
  }
  .textLink {
    font-size: .93rem;
  }
  .detailStack { gap: 12px; }
  .detailHero__imageWrap { border-radius: 16px; }
  .detailCard--compact { padding: 16px; border-radius: 16px; }
  .pageTitle--detail {
    font-size: clamp(1.26rem, 5.8vw, 1.62rem);
    line-height: 1.3;
  }
  .pageCopy--detail,
  .detailBody { font-size: .88rem; }
  .detailSectionTitle { font-size: 1.02rem; }
  .infoList--detail { gap: 8px; }
  .detailMapFrame { height: 190px; }
  .detailMapAddress { font-size: .82rem; }
  .ctaSection { padding-top: 8px; }
  .footer__inner--corp {
    gap: 14px;
    padding: 32px 0 24px;
  }
  .footer__company strong {
    font-size: .98rem;
  }
  .footer__company p {
    font-size: .8rem;
    line-height: 1.5;
  }
}


/* refreshed home layout */
.landingHome .hero--refresh { padding-top: 56px; }
.hero__grid--refresh { grid-template-columns: 1fr 1.06fr; align-items: stretch; gap: 40px; }
.hero__content--refresh { padding-top: 18px; }
.hero__copy--refresh {
  max-width: 620px;
  letter-spacing: -0.016em;
}
.heroStats--refresh { margin-top: 26px; }
.heroStage { display: grid; gap: 16px; align-items: stretch; }
.heroStage__subgrid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.heroStage__subgrid--left {
  margin-top: 18px;
}
.heroStage__subgrid--left .placeholderBox {
  min-height: 168px;
}
.placeholderBox { display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; min-height: 220px; padding: 24px; border-radius: 18px; border: 1px dashed rgba(20,34,28,.16); background: linear-gradient(180deg, #ffffff 0%, #f3f7f5 100%); color: #304039; }
.placeholderBox--dark { min-height: 480px; background: linear-gradient(180deg, #10201a 0%, #1d332a 100%); color: #f6fcf8; border-style: solid; border-color: rgba(255,255,255,.08); box-shadow: 0 30px 80px rgba(13,27,21,.18); }
.placeholderBox--heroTall {
  min-height: 700px;
  aspect-ratio: 4 / 5;
}
.placeholderBox--light { background: linear-gradient(180deg, #fbfcfd 0%, #f2f4f6 100%); }
.placeholderBox--wide { min-height: 260px; }
.placeholderBox--scene { min-height: 260px; justify-content: center; align-items: center; text-align: center; }
.placeholderBox__label { display: inline-flex; width: fit-content; min-height: 28px; align-items: center; padding: 0 10px; border-radius: 999px; background: rgba(255,255,255,.74); color: #607069; font-size: .78rem; font-weight: 700; }
.placeholderBox--dark .placeholderBox__label { background: rgba(255,255,255,.12); color: rgba(245,251,247,.84); }
.section--softStripe {
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(246,247,249,.98) 18%, rgba(239,241,244,.98) 50%, rgba(246,247,249,.98) 82%, rgba(255,255,255,.92) 100%),
    linear-gradient(180deg, #f6f7f9 0%, #eef1f4 100%);
}
.landingHome .section--brandToneA {
  background-color: #f8fbfa;
  background-image: none;
}
.landingHome .section--brandToneB {
  background-color: #faf9f6;
  background-image: none;
}
.landingHome .section--brandToneC {
  background-color: #f7f9f8;
  background-image: none;
}
.landingHome .section--brandFeatures {
  background-color: #f8faf9;
  background-image: none;
  border-top: 1px solid rgba(20,34,28,.06);
  border-bottom: 1px solid rgba(20,34,28,.05);
}
.landingHome .section--brandFlow {
  background-color: #ffffff;
  background-image: none;
  border-top: 1px solid rgba(20,34,28,.05);
  border-bottom: 1px solid rgba(20,34,28,.05);
}
.landingHome .section--brandIndustry {
  background-color: #f7f7f4;
  background-image: none;
  border-top: 1px solid rgba(71,64,43,.08);
  border-bottom: 1px solid rgba(71,64,43,.07);
}
.landingHome .section--brandStart {
  background-color: #f8faf9;
  background-image: none;
  border-top: 1px solid rgba(20,34,28,.06);
  border-bottom: 1px solid rgba(20,34,28,.05);
}
.landingHome .section--brandDownload {
  background-color: #f8faf9;
  background-image: none;
  border-top: 1px solid rgba(20,34,28,.06);
  border-bottom: 1px solid rgba(20,34,28,.05);
}
.landingHome .section--brandFaq {
  background-color: #f8faf9;
  background-image: none;
  border-top: 1px solid rgba(20,34,28,.06);
  border-bottom: 1px solid rgba(20,34,28,.05);
}
.landingHome .faqList--home {
  gap: 12px;
}
@media (min-width: 721px) {
  .landingHome .section--faqHome .narrow {
    width: min(700px, calc(100% - 32px));
  }
}
.narrativeBlock, .flowSection { display: grid; gap: 28px; }
.signalGrid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.signalCard { padding: 22px; border-radius: 14px; background: #ffffff; border: 1px solid rgba(20,34,28,.08); }
.signalCard strong { display: block; margin-bottom: 10px; font-size: 1rem; line-height: 1.45; }
.flowSteps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.flowStepCard { display: grid; gap: 12px; padding: 18px 0 0; border-top: 1px solid rgba(20,34,28,.12); }
.flowStepCard span { font-size: .8rem; font-weight: 800; letter-spacing: .08em; color: #0b8f5b; }
.flowVisuals { display: grid; grid-template-columns: 1.16fr .84fr; gap: 18px; }
.industrySceneGrid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.industrySceneCard { display: grid; gap: 14px; padding: 24px; border-radius: 14px; background: #ffffff; border: 1px solid rgba(20,34,28,.06); }
.industrySceneCard__meta { font-size: .82rem; font-weight: 700; color: #b56a00; }
.industrySceneCard__visual {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(20,34,28,.08);
  background: #f4f6f8;
  aspect-ratio: 3 / 2;
}
.industrySceneCard__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.infoList__link {
  color: #0b8f5b;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}
.infoList__link:hover {
  color: #087a50;
}

@media (max-width: 980px) {
  .hero__grid--refresh, .signalGrid, .flowSteps, .flowVisuals, .industrySceneGrid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero__grid--refresh { gap: 28px; }
  .heroStage__subgrid { grid-template-columns: 1fr; }
  .heroStage__subgrid--left {
    margin-top: 14px;
  }
  .heroStage__subgrid--left .placeholderBox {
    min-height: 132px;
  }
  .placeholderBox { min-height: 180px; padding: 20px; border-radius: 14px; }
  .placeholderBox--heroTall {
    min-height: 420px;
    aspect-ratio: auto;
  }
  .placeholderBox--dark { min-height: 340px; }
  .placeholderBox--dark.placeholderBox--heroTall {
    min-height: 420px;
  }
  .signalCard, .industrySceneCard { padding: 18px; border-radius: 12px; }
  .flowStepCard { padding-top: 16px; }
  .scrollTopButton {
    right: 14px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

main {
  position: relative;
  overflow: visible;
}

.scrollTopButton {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(20,34,28,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(18,34,27,.12);
  color: #22312c;
  font-size: 1.05rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.scrollTopButton.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.appUseModal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
}
.appUseModal[hidden] {
  display: none;
}
.appUseModal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 18, 14, .48);
  opacity: 0;
  transition: opacity .18s ease;
  cursor: pointer;
}
.appUseModal__panel {
  position: relative;
  width: min(92vw, 420px);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(20,34,28,.12);
  background: #fff;
  box-shadow: 0 24px 56px rgba(8, 18, 14, .24);
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px) scale(.98);
  transition: opacity .18s ease, transform .18s ease;
}
.appUseModal.is-open .appUseModal__backdrop {
  opacity: 1;
}
.appUseModal.is-open .appUseModal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.appUseModal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 9px;
  background: #eef2f1;
  color: #2f4138;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.appUseModal__visual {
  min-height: 180px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(160deg, #0f261e 0%, #15382c 55%, #0f251f 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
}
.appUseModal__visual img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1) saturate(0);
  opacity: .9;
}
.appUseModal__visual span {
  color: #f1fbf6;
  font-size: 1.02rem;
  font-weight: 700;
}
.appUseModal__panel h3 {
  font-size: 1.2rem;
  line-height: 1.35;
}
.appUseModal__panel p {
  margin: 0;
  color: #5b6963;
  font-size: .95rem;
  line-height: 1.56;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-target {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 420px) {
  .container, .narrow { width: min(100% - 20px, 1120px); }
  .footer .container { width: min(100% - 20px, 1120px); }
  .topbar__inner { padding: 12px 0; }
  .hero, .section { padding: 56px 0; }
  h1, .pageTitle {
    font-size: clamp(1.38rem, 7vw, 1.82rem);
    line-height: 1.3;
  }
  .button { min-height: 46px; border-radius: 13px; font-size: .95rem; }
  .hero__meta span, .tagRow span, .businessCard__meta { font-size: .84rem; }
  .button {
    font-size: .94rem;
  }
  .heroStat { padding: 16px; }
  .cardGrid--problem,
  .cardGrid--feature,
  .previewGrid { grid-template-columns: 1fr; }
  .footer__company strong { font-size: .9rem; }
  .footer__company p { font-size: .74rem; }
  .footer__copyright { font-size: .7rem; }
}
