:root {
  --primary: #005bd8;
  --primary-dark: #003f9e;
  --navy: #071b4a;
  --body: #31405f;
  --muted: #6b7894;
  --pale: #eef7ff;
  --pale-2: #f6fbff;
  --border: #dbe8f8;
  --border-strong: #b8d2f3;
  --orange: #ff8a34;
  --green: #19a56b;
  --red: #ef4f5f;
  --shadow: 0 18px 45px rgba(7, 27, 74, 0.10);
  --soft-shadow: 0 10px 26px rgba(7, 27, 74, 0.08);
  --container: 1220px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  color: var(--body);
  background: #fff;
  line-height: 1.85;
  letter-spacing: 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; }

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-logo {
  width: 142px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 28px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-ic { width: 19px; height: 19px; flex: 0 0 19px; }

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #0875ff, var(--primary));
  box-shadow: 0 14px 28px rgba(0, 91, 216, 0.24);
}

.btn-secondary {
  color: var(--primary);
  background: #fff;
  border-color: var(--primary);
}

.btn-outline {
  color: var(--primary);
  background: #fff;
  border-color: var(--border-strong);
}

.support-strip .btn-outline {
  border-width: 2px;
  border-color: var(--primary);
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.section-blue {
  background: linear-gradient(180deg, #f7fbff, #eef7ff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  margin: 0 0 34px;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.45;
  text-align: center;
  font-weight: 700;
}

.section-lead {
  max-width: 760px;
  margin: -18px auto 38px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 748px;
  overflow: hidden;
  background: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: center;
  padding: 54px 0 70px;
}

.hero-copy {
  min-width: 0;
  align-self: start;
  padding-top: 92px;
}

.eyebrow {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(0, 91, 216, 0.08);
  font-size: 13px;
  font-weight: 700;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: 46px;
  line-height: 1.3;
  font-weight: 700;
}

.line {
  display: block;
}

.hero-lead {
  margin: 12px 0 16px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.82;
  font-weight: 500;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cta-actions .btn { flex: 1 1 0; min-width: 168px; padding-left: 18px; padding-right: 18px; }
.cta-actions .cta-wide { flex: 1 1 100%; }

.hero-actions {
  width: 404px;
  max-width: 100%;
}

.hero-actions .btn {
  flex: 1 1 0;
  min-width: 195px;
  min-height: 62px;
  font-size: 16px;
  padding-inline: 24px;
  border-radius: 10px;
}

.hero-actions .btn::after {
  content: "›";
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1;
  margin-left: 8px;
}

.chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 12px;
  width: 404px;
  max-width: 100%;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 27, 74, 0.06);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.chip-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--primary);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chip-icon.tone {
  color: #1b6fc9;
  stroke-width: 1.9;
}

.chip-icon.view-icon {
  stroke-width: 1.75;
}

.chip-icon.follow-icon {
  stroke-width: 2;
}

.house-small::before,
.house-small::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 91, 216, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(244,250,255,0.72)),
    linear-gradient(90deg, rgba(34, 143, 95, 0.18), rgba(0, 91, 216, 0.07));
  box-shadow: 0 12px 30px rgba(7, 27, 74, 0.08);
}

.dashboard {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
  justify-self: end;
  width: min(100%, 800px);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 172px 1fr;
  min-height: 590px;
}

.sidebar {
  padding: 24px 18px;
  border-right: 1px solid var(--border);
  background: #fbfdff;
}

.side-brand {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.side-logo {
  width: 96px;
  height: 26px;
  object-fit: contain;
  object-position: left center;
}

.side-nav {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.side-nav span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 10px;
  border-radius: 10px;
  white-space: nowrap;
  min-width: 0;
}

.side-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-icon.gear-icon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}

.side-icon.customer-icon {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}

.side-nav span:first-child {
  color: var(--primary);
  background: rgba(0, 91, 216, 0.09);
}

.mock-main {
  padding: 27px;
  min-width: 0;
}

.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.mock-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.5;
}

.mock-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.customer-table {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.table-row {
  display: grid;
  grid-template-columns: minmax(142px, 1.25fr) 68px 52px 88px 96px;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}

.table-row.header {
  color: var(--muted);
  background: #f8fbff;
  border-top: 0;
  font-weight: 700;
  font-size: 11px;
}

.person {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #eef7ff;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--border);
  object-fit: cover;
}

.sub {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.score.hot { background: var(--red); }
.score.warm { background: var(--orange); }
.score.green { background: var(--green); }

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: var(--primary);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.mini-btn.red { color: var(--red); }
.mini-btn.green { color: var(--green); }

.mock-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
  margin-top: 27px;
}

.mock-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 19px;
  background: #fff;
}

.asset-card {
  display: flex;
  flex-direction: column;
}

.mock-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 15px;
}

.asset-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  align-items: center;
  flex: 1;
  min-height: 168px;
  text-align: center;
  color: var(--navy);
  font-weight: 700;
}

.asset-item {
  display: grid;
  grid-template-rows: 58px 42px 20px;
  row-gap: 5px;
  align-items: center;
  justify-items: center;
  min-width: 0;
}

.asset-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 10px;
  color: var(--primary);
  background: transparent;
  border: 0;
}

.asset-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.asset-icon.video {
  color: var(--red);
}

.asset-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 38px;
  color: var(--navy);
  font-size: 10px;
  line-height: 1.3;
  word-break: keep-all;
}

.asset-item strong {
  color: var(--navy);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.chart {
  width: 220px;
  height: 200px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-label {
  fill: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 500;
}

.chart-grid {
  stroke: rgba(0, 91, 216, 0.10);
  stroke-width: 1;
}

.chart-axis {
  stroke: rgba(7, 27, 74, 0.18);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-point {
  fill: #fff;
  stroke: var(--primary);
  stroke-width: 3;
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.problem-grid,
.approach-grid,
.feature-grid,
.scene-grid,
.benefit-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

.problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.problem-card {
  padding: 26px 22px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.problem-card .num {
  width: auto;
  height: auto;
  align-self: flex-start;
  justify-content: flex-start;
  margin-bottom: 14px;
  border-radius: 0;
  background: none;
  color: var(--primary);
  font-size: 22px;
}

.problem-card h3,
.feature-card h3,
.scene-card h3,
.benefit-card h3,
.price-card h3,
.flow-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.6;
}

.problem-card p,
.feature-card p,
.scene-card p,
.benefit-card p,
.price-card p,
.flow-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.line-art {
  margin-top: auto;
  height: 150px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-art img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.approach-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.approach-card {
  position: relative;
  padding: 24px;
  min-height: 300px;
}

.approach-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 46px;
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  z-index: 2;
}

.mock-fragment {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfdff;
}

.fragment-line {
  height: 12px;
  margin: 9px 0;
  border-radius: 999px;
  background: #d8e9ff;
}

.fragment-line.short { width: 62%; }
.fragment-line.mid { width: 78%; }

.mini-score {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 8px auto 10px;
  color: var(--navy);
  background: conic-gradient(var(--red) 0 70%, #e9f2ff 70% 100%);
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.scene-card,
.benefit-card {
  padding: 22px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--primary);
  background: var(--pale);
  border: 1px solid var(--border);
  font-size: 22px;
  font-weight: 700;
}

.scene-grid,
.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.scene-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.benefit-head { display: flex; align-items: center; gap: 11px; min-height: 60px; margin-bottom: 16px; }
.benefit-head h3 { margin: 0; }
.benefit-ic { width: 44px; height: 44px; flex: 0 0 44px; object-fit: contain; }
.benefit-card .before-after { margin-top: 0; }
.benefit-card .ba-box { min-height: 86px; }

.photo-placeholder {
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.55)),
    radial-gradient(circle at 80% 22%, #fff 0 20px, transparent 21px),
    linear-gradient(135deg, #dff1ff, #ffffff 46%, #dceeff);
  position: relative;
}

.scene-head { display: flex; align-items: center; gap: 9px; min-height: 58px; margin-bottom: 14px; }
.scene-head h3 { margin: 0; }
.scene-ic { width: 33px; height: 33px; flex: 0 0 33px; color: var(--primary); }

.photo-placeholder.has-img { background: none; }
.photo-placeholder.has-img::before, .photo-placeholder.has-img::after { content: none; }
.photo-placeholder.has-img img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.05); }

.photo-placeholder::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 14%;
  bottom: 17%;
  height: 45%;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(0,91,216,0.18);
  clip-path: polygon(0 35%, 48% 0, 100% 34%, 100% 100%, 0 100%);
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 18%;
  bottom: 17%;
  height: 13%;
  background: rgba(0,91,216,0.12);
  border-radius: 999px;
}

.photo-placeholder.meeting::before {
  left: 18%;
  width: 36px;
  height: 36px;
  bottom: 44%;
  right: auto;
  clip-path: none;
  border-radius: 50%;
  box-shadow: 56px 8px 0 rgba(255,255,255,0.76), 112px 0 0 rgba(255,255,255,0.76);
}

.photo-placeholder.panorama::after {
  content: "360°";
  display: grid;
  place-items: center;
  left: 50%;
  top: 42%;
  bottom: auto;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  color: var(--primary);
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border-strong);
  font-weight: 700;
}

.photo-placeholder.dashboard-shot::before {
  inset: 24px 20px auto 20px;
  height: 52%;
  clip-path: none;
  border-radius: 10px;
  background:
    linear-gradient(90deg, #d9ebff 0 34%, transparent 35%),
    repeating-linear-gradient(180deg, rgba(0,91,216,0.16) 0 10px, transparent 10px 22px),
    #fff;
}

.before-after {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.ba-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fbfdff;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.ba-text { flex: 1; }

.ba-ic { width: 24px; height: 24px; flex: 0 0 24px; }

.ba-box.ba-before { background: #f3f4f6; border-color: #e3e5e9; color: #4b5563; }
.ba-box.ba-before strong { color: #374151; }
.ba-box.ba-before .ba-ic { color: #9aa1ac; }

.ba-after { background: #eef5ff; border-color: #cfe0fb; color: var(--body); }
.ba-after strong { color: var(--primary); }
.ba-after .ba-ic { color: var(--primary); }

.ba-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
}

.check {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 34px;
}

.price-card {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.price-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.price-head .price-icon { margin-bottom: 0; flex: 0 0 72px; }
.price-headtext { flex: 1; }
.price-headtext h3 { margin: 0 0 6px; }
.price-headtext p { margin: 0; }

.price-card.recommended {
  border-color: var(--primary);
  box-shadow: 0 18px 42px rgba(0, 91, 216, 0.14);
}

.recommend {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.price-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--primary);
  background: none;
  font-size: 28px;
  font-weight: 700;
  overflow: hidden;
}
.price-icon img { width: 100%; height: 100%; object-fit: contain; }

.price-card ul {
  margin: 20px 0 28px;
  padding-left: 20px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.9;
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
}

.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 18px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.support-strip > span { display: inline-flex; align-items: center; gap: 12px; }
.support-ic { width: 30px; height: 30px; flex: 0 0 30px; color: var(--primary); }

.flow-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.flow-card p {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: -0.01em;
}

.flow-card {
  position: relative;
  padding: 22px 8px;
  text-align: center;
}

.flow-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 36px;
  font-weight: 700;
  z-index: 1;
}

.flow-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 16px auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--primary);
  background: #fbfdff;
  font-size: 26px;
  font-weight: 700;
}

.flow-icon-lucide { width: 72px; height: 72px; border: none; border-radius: 0; background: none; margin: 16px auto; }
.flow-svg { width: 72px; height: 72px; color: var(--primary); }
.flow-hearing { width: auto; min-width: 72px; height: 72px; border: none; border-radius: 0; background: none; margin: 16px auto; display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--primary); }
.flow-img28 { height: 72px; width: auto; display: block; }
.flow-card h3 { min-height: 3.2em; display: flex; align-items: center; justify-content: center; text-align: center; }

.faq-list {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(7, 27, 74, 0.04);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-mark {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}
.faq-mark::before,
.faq-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--primary);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq-mark::before { width: 16px; height: 2.4px; }
.faq-mark::after { width: 2.4px; height: 16px; transition: opacity .2s, transform .2s; }
.faq-item[open] .faq-mark::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  margin: 0 14px 14px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #f2f8ff;
  color: var(--body);
  font-size: 14px;
  line-height: 1.9;
}

.final-cta {
  padding: 80px 0;
  background: #fff;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 48px;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(238,247,255,0.95), rgba(255,255,255,0.88)),
    linear-gradient(135deg, #e8f6ff, #fff);
  overflow: hidden;
}

.cta-panel > * { position: relative; z-index: 1; }

.cta-panel h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.45;
}

.cta-panel p {
  margin: 0 0 28px;
  color: var(--body);
  font-weight: 500;
}

.cta-visual {
  position: relative;
  min-height: 320px;
}
.cta-img { width: 100%; height: 100%; object-fit: contain; display: block; }

.cta-right {
  position: absolute;
  right: 16px;
  bottom: -4px;
  width: calc((100% - 48px) * 0.455);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}
.cta-card {
  position: relative;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(7, 27, 74, 0.16);
  background: #fff;
  overflow: hidden;
}
.cta-card img { width: 100%; display: block; }
.cta-card .cta-zoom { transform: scale(1.05); transform-origin: center; }

.house-small {
  position: absolute;
  right: -48px;
  top: -98px;
  width: 82%;
  height: 260px;
  background: url("../image/cta-bg-small.png") top right / cover no-repeat;
  -webkit-mask-image:
    linear-gradient(to left, #000 40%, transparent 92%),
    linear-gradient(to bottom, #000 40%, transparent 92%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to left, #000 40%, transparent 92%),
    linear-gradient(to bottom, #000 40%, transparent 92%);
  mask-composite: intersect;
  opacity: 0.95;
}

.house-small::before,
.house-small::after { content: none; }

.mini-dashboard {
  position: absolute;
  left: 16px;
  bottom: -24px;
  width: calc((100% - 48px) * 0.545);
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.mini-dashboard .table-row {
  grid-template-columns: 1fr 40px 84px;
  padding: 9px 0;
  border-color: var(--border);
}

.mini-dashboard .mock-head { margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.mini-dashboard .mock-head h3 { font-size: 13px; }
.mini-dashboard .mock-link { font-size: 11px; }
.mini-dashboard { bottom: -4px; }

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.copyright {
  margin: 18px 0 0;
  text-align: center;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .hero-inner,
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .dashboard {
    width: 100%;
  }
  .hero-bg-image {
    width: 100%;
    height: 100%;
  }
  .problem-grid,
  .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid,
  .scene-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .approach-card::after,
  .flow-card::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .mini-dashboard,
  .cta-right,
  .house-small {
    display: none;
  }
  .cta-visual {
    display: none;
  }
  .container {
    width: min(100% - 40px, var(--container));
  }
  .header-inner {
    height: 68px;
  }
  .brand {
    font-size: 24px;
  }
  .site-header .btn {
    min-height: 44px;
    padding: 12px 16px;
    font-size: 13px;
  }
  .hero {
    min-height: auto;
  }
  .hero-bg-image {
    width: 100%;
    height: 100%;
    max-width: none;
  }
  .hero-inner {
    padding: 44px 0 64px;
  }
  .hero-copy {
    align-self: auto;
    padding-top: 0;
  }
  .hero-actions .btn {
    min-width: 0;
  }
  h1 {
    font-size: 36px;
  }
  .hero-lead {
    font-size: 16px;
    line-height: 1.9;
  }
  .btn {
    width: 100%;
    min-height: 50px;
  }
  .hero-actions,
  .cta-actions {
    width: 100%;
  }
  .chips {
    flex-wrap: wrap;
  }
  .chip {
    flex-basis: calc(50% - 8px);
  }
  .dashboard-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .sidebar {
    display: none;
  }
  .mock-main {
    padding: 18px;
  }
  .mock-head {
    align-items: flex-start;
  }
  .table-row,
  .table-row.header {
    grid-template-columns: 1fr 46px 40px;
  }
  .table-row > :nth-child(4),
  .table-row > :nth-child(5),
  .table-row.header > :nth-child(4),
  .table-row.header > :nth-child(5) {
    display: none;
  }
  .mock-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .section-title {
    font-size: 28px;
    text-align: left;
  }
  .section-lead {
    text-align: left;
  }
  .problem-grid,
  .approach-grid,
  .feature-grid,
  .scene-grid,
  .benefit-grid,
  .pricing-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .problem-card {
    min-height: 0;
  }
  .support-strip {
    align-items: stretch;
    flex-direction: column;
  }
  .cta-panel {
    padding: 28px 20px;
  }
  .cta-panel h2 {
    font-size: 28px;
  }
  .cta-visual {
    min-height: 260px;
  }
  .mini-dashboard {
    width: 100%;
  }
  .house-small {
    width: 100%;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ===== Middle section mockups (approach + features) ===== */
.num.sm { width: 30px; height: 30px; flex: 0 0 30px; margin: 0; font-size: 14px; }
.approach-card { display: flex; flex-direction: column; }
.ap-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.ap-head h3 { margin: 0; color: var(--primary); font-size: 18px; line-height: 1.5; font-weight: 700; }
.approach-card > p { margin: 0 0 16px; color: var(--body); font-size: 13px; line-height: 1.7; }

.ap-mock {
  margin-top: auto;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfdff;
}
.mock-label { display: block; color: var(--muted); font-size: 11px; font-weight: 700; margin-bottom: 10px; }

.doc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.doc-list li { display: flex; align-items: center; gap: 9px; color: var(--navy); font-size: 12px; font-weight: 500; }
.li-ic { width: 16px; height: 16px; flex: 0 0 16px; color: var(--primary); stroke: currentColor; stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.ap-share {
  align-self: flex-end;
  margin-top: 14px;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.score-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.ring-score {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0 68%, #ffd9dd 68% 100%);
}
.ring-score::before { content: ""; position: absolute; inset: 6px; background: #fbfdff; border-radius: 50%; }
.rs-val { position: relative; z-index: 1; color: var(--navy); font-family: "Inter", sans-serif; font-weight: 700; font-size: 18px; }
.mini-chart { flex: 1; height: 52px; }
.mini-chart polyline { fill: none; stroke: var(--primary); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.mini-chart circle { fill: #fff; stroke: var(--primary); stroke-width: 2.5; }

.hist-row { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.fc-hist { display: flex; flex-direction: column; }
.fc-mock .hist-row.sm { padding: 9px 0; }
.fc-mock .hist-row.sm + .hist-row.sm { border-top: 1px solid var(--border); }
.hist-av { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; object-fit: cover; background: var(--pale); }
.hist-name { color: var(--navy); font-weight: 700; }
.hist-doc { color: var(--body); }
.hist-time { margin-left: auto; color: var(--muted); white-space: nowrap; }

.act-list { display: grid; gap: 9px; }
.act-item { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--navy); font-size: 12px; font-weight: 500; }

.ct-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.ct-cols { display: flex; gap: 12px; color: var(--muted); font-size: 10px; font-weight: 700; }
.ct-cols span { width: auto; white-space: nowrap; text-align: right; }
.ct-row { display: grid; grid-template-columns: 14px 1fr 32px 32px; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--border); font-size: 11px; }
.ct-row .li-ic { width: 14px; height: 14px; flex: 0 0 14px; }
.ct-name { color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ct-row strong { text-align: right; color: var(--navy); font-family: "Inter", sans-serif; font-weight: 700; }
.ct-upd { text-align: right; color: var(--muted); white-space: nowrap; }

/* features */
.ap-mock .doc-list { gap: 0; }
.ap-mock .doc-list li { padding: 10px 0; border-top: 1px solid var(--border); }
.ap-mock .doc-list li:first-child { border-top: none; padding-top: 0; }
.ap-mock .hist-row { padding: 11px; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: var(--soft-shadow); }
.ap-mock-split { background: none; border: none; padding: 0; gap: 12px; }
.ap-block { padding: 14px; border: 1px solid var(--border); border-radius: 12px; background: #fbfdff; }
.ap-block .score-row { margin-bottom: 0; }
.ap-mock-split .hist-row { box-shadow: none; padding: 9px; gap: 6px; flex-wrap: nowrap; }
.ap-mock-split .hist-row .hist-doc { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.ap-mock-split .hist-row .hist-time { font-size: 10px; }

.feature-card { display: flex; flex-direction: column; padding: 22px; text-align: center; }
.feature-card > h3 { margin: 0 0 14px; }
.feature-card > p { margin: 14px 0 0; min-height: 66px; font-size: 13px; line-height: 1.7; }
.fc-mock {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 270px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfdff;
  text-align: left;
}
.fc-share { flex-direction: row; align-items: center; gap: 12px; }
.fc-share .doc-list { flex: 1; }
.doc-list.sm li { font-size: 11px; gap: 7px; }
.thumb-col { display: grid; gap: 8px; flex: 0 0 60px; }
.thumb { display: block; height: 36px; border-radius: 6px; border: 1px solid var(--border); background: linear-gradient(135deg, #dff1ff, #fff 58%, #dceeff); }

.fc-chart { width: 100%; height: 86px; }
.fc-chart polyline { fill: none; stroke: var(--primary); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.fc-chart .fc-area { stroke: none; }
.fc-chart .fc-dot-last { fill: #fff; stroke: var(--primary); stroke-width: 2.5; }
.fc-xlbl { fill: var(--muted); font-family: "Inter", sans-serif; font-size: 8px; text-anchor: middle; }
.fc-xlbl:first-of-type { text-anchor: start; }
.fc-xlbl:last-of-type { text-anchor: end; }

.cust-head { display: flex; align-items: center; padding: 0 12px 8px; border-bottom: 1px solid var(--border); color: var(--muted); font-size: 10px; font-weight: 700; }
.ch-cust { flex: 1; padding-left: 40px; }
.ch-score { width: 44px; text-align: center; }
.ch-act { width: 52px; text-align: center; white-space: nowrap; transform: translateX(10px); }
.cust-row { display: flex; align-items: center; gap: 0; padding: 8px 12px; border-radius: 0; }
.cust-row + .cust-row { border-top: 1px solid var(--border); }
.cust-row .hist-av { margin-right: 12px; }
.cust-name { flex: 1; color: var(--navy); font-weight: 700; font-size: 14px; }
.cust-score { display: flex; align-items: center; justify-content: center; width: 44px; flex: 0 0 44px; text-align: center; color: var(--navy); font-family: "Inter", sans-serif; font-weight: 700; font-size: 16px; }
.cust-score.warm { position: relative; z-index: 0; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 32px; margin: -4px 0; background: none; color: #fff; font-size: 14px; }
.cust-score.warm::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 32px; height: 32px; border-radius: 50%; background: var(--orange); z-index: -1; }
.cust-ic { width: 18px; height: 18px; flex: 0 0 18px; color: var(--primary); stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.cust-ic-line { width: 22px; height: 22px; flex: 0 0 22px; color: var(--primary); stroke: none; }
.cust-act { width: 52px; flex: 0 0 52px; display: flex; justify-content: center; transform: translateX(10px); }
.cust-ic { width: 18px; height: 18px; flex: 0 0 18px; color: var(--primary); stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.cust-ic-line { width: 22px; height: 22px; flex: 0 0 22px; color: var(--primary); stroke: none; }

.chk-list { display: grid; gap: 0; }
.chk-row { display: flex; align-items: center; gap: 11px; padding: 9px 0; color: var(--navy); font-size: 14px; font-weight: 500; }
.chk-row + .chk-row { border-top: 1px solid var(--border); }
.chk-ic { width: 22px; height: 22px; flex: 0 0 22px; padding: 4px; border-radius: 50%; background: var(--primary); color: #fff; stroke: currentColor; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.fc-device { position: relative; padding: 18px; overflow: hidden; align-items: center; justify-content: center; background: linear-gradient(160deg, #eef5fd, #fbfdff); }
.phone { width: 160px; background: #fff; border: 1px solid var(--border-strong); border-radius: 18px; padding: 12px 11px; box-shadow: var(--soft-shadow); display: flex; flex-direction: column; gap: 9px; }
.phone-top { display: flex; align-items: center; gap: 7px; padding-bottom: 9px; border-bottom: 1px solid var(--border); }
.pt-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--primary); }
.pt-title { color: var(--navy); font-weight: 700; font-size: 12px; }
.phone-row { display: flex; align-items: center; gap: 8px; }
.pr-av { width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%; background: var(--pale); }
.pr-lines { flex: 1; display: grid; gap: 4px; }
.prl { height: 6px; border-radius: 3px; background: #e3edf8; }
.prl.s { width: 60%; }
.pr-badge { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--red); color: #fff; font-family: "Inter", sans-serif; font-weight: 700; font-size: 11px; }
.pr-badge.warm { background: var(--orange); }
.pr-badge.cool { background: var(--primary); }
.phone-nav { display: flex; justify-content: space-between; gap: 6px; padding-top: 9px; border-top: 1px solid var(--border); }
.pn-item { width: 20px; height: 6px; border-radius: 3px; background: #dce7f4; }
.pn-item.on { background: var(--primary); }
