:root {
  --color-bg: #ffffff;
  --color-bg-sub: #f5f5f7;
  --color-border: #e5e5ea;
  --color-text: #222222;
  --color-text-sub: #555a63;
  --color-text-mute: #8a8f98;
  --color-accent: #8541dc;
  --color-accent-soft: #f3ecfc;
  --color-accent-dark: #6a2fb8;
  --color-bad: #c75c5c;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(34, 34, 34, 0.04);
  --shadow-md: 0 8px 24px rgba(34, 34, 34, 0.08);
  --shadow-lg: 0 20px 60px rgba(133, 65, 220, 0.18);

  --container: 1120px;
  --section-y: 120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: radial-gradient(rgba(133, 65, 220, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 0 0;
  background-attachment: fixed;
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: #f57527;
  color: #fff;
  box-shadow: 0 8px 20px rgba(34, 34, 34, 0.15);
}
.btn-primary:hover {
  background: #e4621a;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 32px;
  width: auto;
  display: block;
}
.logo--footer img {
  height: 28px;
  filter: brightness(0) invert(1);
}
.global-nav {
  display: flex;
  gap: 36px;
}
.global-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-sub);
  transition: color 0.2s ease;
}
.global-nav a:hover { color: var(--color-accent); }

.hero {
  position: relative;
  padding: 80px 0 140px;
  background:
    radial-gradient(ellipse 80% 60% at 85% 0%, rgba(133, 65, 220, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(133, 65, 220, 0.06), transparent 60%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text { text-align: left; }

.hero-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(140px, 32%, 320px);
  z-index: 1;
  pointer-events: none;
}
.waves {
  width: 100%;
  height: 100%;
  display: block;
}
.parallax > use {
  animation: wave-move 25s cubic-bezier(.55, .5, .45, .5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
@keyframes wave-move {
  0%   { transform: translate3d(85px, 0, 0); }
  100% { transform: translate3d(-90px, 0, 0); }
}
.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #a970e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 36px;
}
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: flex-start;
  margin-bottom: 36px;
}
.hero-benefits li {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-sub);
  letter-spacing: 0.02em;
}
.hero-benefits li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background-color: var(--color-accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='black' d='M10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm5.3 7.7-6.6 6.6a1 1 0 0 1-1.4 0L4 10.6a1 1 0 1 1 1.4-1.4L8 11.8l5.9-5.9a1 1 0 1 1 1.4 1.4z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='black' d='M10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm5.3 7.7-6.6 6.6a1 1 0 0 1-1.4 0L4 10.6a1 1 0 1 1 1.4-1.4L8 11.8l5.9-5.9a1 1 0 1 1 1.4 1.4z'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero-mock {
  width: 100%;
  transform: scale(1.08);
  transform-origin: center left;
}
.hero-mock img {
  width: 100%;
  height: auto;
  display: block;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.section-lead {
  margin-top: 20px;
  color: var(--color-text-sub);
  font-size: 16px;
}

.empathy {
  padding: var(--section-y) 0;
  background: var(--color-bg-sub);
}
.empathy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.25fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.empathy-illust {
  display: flex;
  justify-content: center;
}
.empathy-illust img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}
.empathy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  margin-bottom: 0;
}
.empathy-grid li {
  background: #fff;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(34, 34, 34, 0.04);
}
.empathy-grid p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.empathy-lead {
  text-align: center;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-text);
}

.ideal { padding: var(--section-y) 0; }
.ideal-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
.ideal-col {
  padding: 40px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.ideal-col--bad {
  background: #fafafa;
}
.ideal-col--good {
  background: var(--color-accent-soft);
  border-color: var(--color-accent);
}
.ideal-col-label {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid currentColor;
}
.ideal-col--bad .ideal-col-label { color: var(--color-text-mute); }
.ideal-col--good .ideal-col-label { color: var(--color-accent); }
.ideal-col ul { display: flex; flex-direction: column; gap: 16px; }
.ideal-col li {
  font-size: 16px;
  font-weight: 500;
  padding-left: 24px;
  position: relative;
}
.ideal-col--bad li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--color-bad);
  font-weight: 900;
}
.ideal-col--good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 900;
}
.ideal-arrow {
  display: flex;
  align-items: center;
  font-size: 36px;
  color: var(--color-accent);
  font-weight: 900;
}

.value {
  padding: var(--section-y) 0;
  background: var(--color-bg-sub);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.feature-card {
  background: #fff;
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.feature-card-accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}
.feature-icon-inverted {
  background: #fff;
  color: var(--color-accent);
}
.feature-icon .material-icons-round {
  font-size: 24px;
}
.feature-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.feature-card-accent .feature-eyebrow { color: #ECE1FB; }
.feature-card h3 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.feature-card > p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-sub);
  margin-bottom: 28px;
}
.feature-card-accent > p {
  color: rgba(255, 255, 255, 0.92);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.feature-card-accent .feature-list {
  border-top-color: rgba(255, 255, 255, 0.25);
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.feature-list .material-icons-round {
  font-size: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.feature-card-accent .feature-list .material-icons-round { color: #fff; }

.how { padding: var(--section-y) 0; }
.how .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.how .eyebrow .material-icons-round {
  font-size: 16px;
}

.flow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
.flow-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-num {
  font-size: 13px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.flow-img-wrap {
  width: 100%;
  aspect-ratio: 327 / 198;
  margin-bottom: 24px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
}
.flow-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.flow-step h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.flow-step p {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.8;
}
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  padding-top: 140px;
}
.flow-arrow .material-icons-round {
  font-size: 32px;
}

.analytics {
  padding: var(--section-y) 0;
  background: var(--color-bg-sub);
}
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.analytics-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.analytics-card--featured {
  border: 2px solid var(--color-accent);
}
.ac-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.ac-image {
  width: 100%;
  aspect-ratio: 327 / 198;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 6px;
  overflow: hidden;
  background: #fafafa;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.ac-label {
  font-size: 12px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.analytics-card h3 {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.analytics-card > p:not(.ac-label) {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-sub);
}

.benefit {
  position: relative;
  padding: calc(var(--section-y) + 48px) 0 var(--section-y);
}
.benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 44px solid transparent;
  border-right: 44px solid transparent;
  border-top: 48px solid var(--color-bg-sub);
}
.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.benefit-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.bc-problem {
  padding: 24px 28px;
  background: #fafafa;
}
.bc-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--color-text-mute);
  margin-bottom: 8px;
}
.bc-label--solve {
  color: #f57527;
}
.bc-problem-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.7;
}
.bc-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0;
  background: #8541dc;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.bc-arrow {
  font-size: 10px;
  line-height: 1;
}
.bc-solution {
  padding: 28px 28px 32px;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bc-solution h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.bc-solution p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-sub);
}

.cost-compare {
  padding: var(--section-y) 0;
}
.cost-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}
.cost-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.cost-card--bad {
  background: #fafafa;
}
.cost-card--good {
  background: #fff;
  border: 2px solid var(--color-accent);
  box-shadow: 0 16px 40px rgba(133, 65, 220, 0.14);
}
.cost-label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}
.cost-card--bad .cost-label { color: var(--color-text-mute); }
.cost-card--good .cost-label { color: var(--color-accent); }

.cost-metrics {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}
.cost-metric dt {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-sub);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.cost-metric dd {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.cost-metric dd strong {
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.cost-card--good .cost-metric dd strong { color: var(--color-accent); }
.cost-delta {
  display: inline-block;
  padding: 4px 10px;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  border-radius: 999px;
  white-space: nowrap;
}

.cost-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px dashed var(--color-border);
  margin-top: auto;
}
.cost-notes li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-sub);
  padding-left: 20px;
  position: relative;
}
.cost-card--bad .cost-notes li::before {
  content: "−";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--color-bad);
  font-weight: 900;
  font-size: 16px;
}
.cost-card--good .cost-notes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 900;
  font-size: 13px;
}
.cost-arrow {
  display: flex;
  align-items: center;
  font-size: 36px;
  color: var(--color-accent);
  font-weight: 900;
}
.cost-disclaimer {
  max-width: 1040px;
  margin: 24px auto 0;
  font-size: 10px;
  line-height: 1.7;
  color: var(--color-text-mute);
}


.mid-cta {
  padding: 48px 0;
}
.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  background: linear-gradient(135deg, #ef6212 0%, #f9a354 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: 0 20px 48px rgba(239, 98, 18, 0.24);
  max-width: 1040px;
  margin: 0 auto;
}
.mid-cta-text h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.mid-cta-text p {
  font-size: 14px;
  opacity: 0.92;
  line-height: 1.6;
}
.mid-cta .btn-primary {
  background: #fff;
  color: #ef6212;
  flex-shrink: 0;
}
.mid-cta .btn-primary:hover {
  background: #fafafa;
  color: #d95809;
}

.trust { padding: var(--section-y) 0; }
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.stat {
  text-align: center;
  padding: 32px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.stat-num {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.stat-num span {
  font-size: 0.5em;
  color: var(--color-text);
  margin-left: 4px;
  font-weight: 700;
}
.stat-label {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-top: 8px;
  font-weight: 500;
}
.stat-note {
  font-size: 10px;
  color: var(--color-text-mute);
  margin-left: 2px;
  font-weight: 700;
  vertical-align: super;
}
.trust-disclaimer {
  max-width: 1040px;
  margin: -48px auto 56px;
  font-size: 9px;
  line-height: 1.7;
  color: #b0b3b9;
  text-align: left;
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  margin-bottom: 72px;
  align-items: center;
}
.logo-box {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.logo-box img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.voice-card {
  padding: 36px 36px;
  background: #fff;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.voice-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.voice-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.6;
  color: var(--color-text);
  flex: 1;
  letter-spacing: -0.005em;
}
.voice-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #ECE1FB;
}
.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.voice-company {
  font-size: 16px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 4px;
}
.voice-meta {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: 20px;
}
.voice-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 24px;
}
.voice-service-label {
  font-size: 14px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 4px;
}
.voice-service-text {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.7;
}

.faq {
  padding: var(--section-y) 0;
  background: var(--color-bg-sub);
}
.faq-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-q,
.faq-a {
  display: flex;
  gap: 14px;
  line-height: 1.9;
}
.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--color-border);
}
.faq-a {
  font-size: 14px;
  color: var(--color-text-sub);
}
.faq-mark {
  flex-shrink: 0;
  width: 20px;
  font-weight: 900;
  font-size: 15px;
  color: var(--color-accent);
  letter-spacing: 0;
}
.faq-mark::after {
  content: ".";
}
.faq-mark--a {
  color: #f57527;
}

.final-cta {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,0.15), transparent 70%),
    linear-gradient(135deg, #8541dc 0%, #6a2fb8 100%);
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.final-cta > .container > p {
  font-size: 17px;
  margin-bottom: 40px;
  opacity: 0.92;
}
.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-cta-note {
  font-size: 13px;
  opacity: 0.9;
}
.final-cta-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.final-cta-note a:hover {
  opacity: 0.85;
}

.form-section {
  padding: var(--section-y) 0;
}

/* ===========================
   Document slider (preview)
   =========================== */
.doc-slider-wrap {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
}
.doc-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.doc-meta .material-icons-round { font-size: 18px; }

.doc-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(74, 31, 135, 0.18), 0 4px 12px rgba(34, 34, 34, 0.08);
}
.doc-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.doc-slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  padding: 48px 56px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.doc-slide--image {
  padding: 0;
  background: #f5f5f7;
}
.doc-slide--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.doc-slide--cover {
  background: linear-gradient(135deg, #8541dc 0%, #6a2fb8 60%, #4a1f87 100%);
  align-items: flex-start;
  justify-content: space-between;
  background-image:
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.18), transparent 45%),
    radial-gradient(circle at 10% 95%, rgba(255, 255, 255, 0.12), transparent 50%),
    linear-gradient(135deg, #8541dc 0%, #6a2fb8 60%, #4a1f87 100%);
}
.doc-slide--feature {
  background: linear-gradient(135deg, #2a2150 0%, #4a3a8a 100%);
}
.doc-slide--price {
  background: linear-gradient(135deg, #1f2c3a 0%, #355068 100%);
}
.doc-slide--case {
  background: linear-gradient(135deg, #5a3017 0%, #c25a16 100%);
}

.doc-slide-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.25em;
  padding: 6px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
}
.doc-slide-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.doc-slide-sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  opacity: 0.7;
}
.doc-slide-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f57527;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(245, 117, 39, 0.5);
  transform: rotate(8deg);
}
.doc-slide-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.doc-slide-h {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin-bottom: 20px;
}
.doc-slide-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}
.doc-slide-bullets li {
  position: relative;
  padding-left: 18px;
}
.doc-slide-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}
.doc-slide-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 480px;
}
.doc-slide-price-grid > div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.doc-slide-price-grid span {
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.7;
}
.doc-slide-price-grid strong {
  font-size: 18px;
  font-weight: 900;
}
.doc-slide-placeholder {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

.doc-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(34, 34, 34, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.doc-slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.doc-slider-arrow .material-icons-round { font-size: 26px; }
.doc-slider-arrow--prev { left: 14px; }
.doc-slider-arrow--next { right: 14px; }

.doc-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.doc-slider-dots button {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.3s ease;
}
.doc-slider-dots button.is-active {
  background: var(--color-accent);
  width: 44px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.doc-info {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 88px;
}
.doc-info-label {
  font-size: 14px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-accent);
  letter-spacing: 0.02em;
}
.doc-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.doc-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
}
.doc-info-list li .material-icons-round {
  font-size: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.doc-info-cta {
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.doc-info-cta-label {
  font-size: 11px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}
.doc-info-cta-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
}
.form-wrap {
  background: #fff;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.form-wrap .hs-form-field {
  margin-bottom: 20px;
}
.form-wrap label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}
.form-wrap input[type="text"],
.form-wrap input[type="email"],
.form-wrap input[type="tel"],
.form-wrap input[type="number"],
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-wrap input:focus,
.form-wrap select:focus,
.form-wrap textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(133, 65, 220, 0.15);
}
.form-wrap textarea {
  resize: vertical;
  min-height: 120px;
}
.form-wrap .hs-error-msg,
.form-wrap .hs-error-msgs {
  color: var(--color-bad);
  font-size: 13px;
  margin-top: 6px;
}
.form-wrap .hs-button,
.form-wrap input[type="submit"] {
  width: 100%;
  padding: 18px 24px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 24px rgba(133, 65, 220, 0.3);
}
.form-wrap .hs-button:hover,
.form-wrap input[type="submit"]:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}
.form-wrap .legal-consent-container {
  font-size: 13px;
  color: var(--color-text-sub);
  margin: 16px 0;
}
.form-wrap .submitted-message {
  text-align: center;
  font-size: 16px;
  color: var(--color-accent);
  font-weight: 700;
  padding: 24px 0;
}

.site-footer {
  background: #222222;
  color: #9a9ea5;
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.logo--footer {
  color: #fff;
}
.logo--footer span { color: var(--color-accent); }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.footer-nav a {
  font-size: 13px;
  color: #9a9ea5;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: #fff; }
.copyright {
  font-size: 12px;
  color: #6b7079;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  :root { --section-y: 80px; }
  .global-nav { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text { text-align: center; }
  .hero-benefits { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-mock { transform: none; }
  .empathy-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .empathy-illust img { max-width: 280px; }
  .empathy-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 36px 28px; }
  .ideal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ideal-arrow { transform: rotate(90deg); justify-self: center; }
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 420px;
  }
  .analytics-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    justify-self: center;
  }
  .benefit-list { grid-template-columns: 1fr; max-width: 560px; }
  .benefit::before {
    border-left-width: 32px;
    border-right-width: 32px;
    border-top-width: 36px;
  }
  .cost-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cost-arrow { transform: rotate(90deg); justify-self: center; }
  .mid-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }
  .mid-cta .btn-primary { width: 100%; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-logos { grid-template-columns: repeat(4, 1fr); }
  .voice-grid { grid-template-columns: 1fr; max-width: 560px; }
  .faq-grid { grid-template-columns: 1fr; }
  .voice-card { padding: 32px 24px; }
  .voice-head { gap: 16px; }
  .voice-avatar { width: 64px; height: 64px; }
  .doc-slider-wrap { margin-bottom: 40px; }
  .doc-slide { padding: 32px 28px; }
  .doc-slider-arrow { width: 38px; height: 38px; }
  .doc-slider-arrow .material-icons-round { font-size: 22px; }
  .doc-slider-arrow--prev { left: 8px; }
  .doc-slider-arrow--next { right: 8px; }
  .doc-slide-badge { width: 52px; height: 52px; font-size: 13px; top: 16px; right: 16px; }
  .doc-slide-price-grid { grid-template-columns: 1fr; max-width: 100%; }
  .doc-slider {
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
    box-shadow: none;
  }
  .form-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 560px;
  }
  .doc-info {
    position: static;
    padding: 28px 24px;
  }
  .form-wrap { padding: 32px 24px; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-nav { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .empathy-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .hero-cta .btn,
  .final-cta-buttons .btn { width: 100%; }
  .compare-table th,
  .compare-table td { padding: 14px 12px; font-size: 13px; }
  .form-wrap { padding: 32px 20px; }
  .doc-slide { padding: 24px 20px; }
  .doc-slide-h { font-size: 20px; margin-bottom: 14px; }
  .doc-slide-bullets { font-size: 13px; gap: 6px; }
  .doc-slide-title { font-size: 22px; }
  .doc-slide-badge { width: 44px; height: 44px; font-size: 11px; }
  .doc-slide-placeholder { font-size: 9px; bottom: 10px; right: 12px; }
  .trust-logos { grid-template-columns: repeat(3, 1fr); }
  .analytics-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* ===========================
   CTA microcopy
   =========================== */
.cta-note {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-mute);
  letter-spacing: 0.02em;
  text-align: center;
}
.hero-cta {
  flex-direction: column;
  align-items: flex-start;
}
.hero-cta .cta-note {
  text-align: left;
}
.mid-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.mid-cta-action .cta-note {
  color: rgba(255, 255, 255, 0.92);
}
.final-cta-micro {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  margin-top: -8px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .hero-cta { align-items: center; }
  .hero-cta .cta-note { text-align: center; }
}
@media (max-width: 560px) {
  .mid-cta-action { width: 100%; }
}

/* ===========================
   Hero document banner
   =========================== */
.hero-doc-banner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 18px;
  background: #f57527;
  border: 2px solid transparent;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(34, 34, 34, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: left;
  max-width: 100%;
  color: #fff;
}
.hero-doc-banner:hover {
  background: #e4621a;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(34, 34, 34, 0.2);
}
.hero-doc-banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px !important;
  flex-shrink: 0;
}
.hero-doc-banner-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.hero-doc-banner-text strong {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.01em;
}
.hero-doc-banner-text span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 2px;
}
.hero-doc-banner-arrow {
  font-size: 20px !important;
  color: #fff;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .hero-doc-banner {
    width: 100%;
    gap: 10px;
    padding: 12px 18px 12px 14px;
  }
  .hero-doc-banner-icon { width: 36px; height: 36px; font-size: 20px !important; }
  .hero-doc-banner-text strong { font-size: 14px; }
  .hero-doc-banner-text span { font-size: 10px; }
}

/* ===========================
   Floating CTA (SP only)
   =========================== */
.floating-cta {
  display: none;
}

@media (max-width: 768px) {
  .floating-cta {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 200;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px 12px 22px;
    background: linear-gradient(135deg, #ef6212 0%, #f57527 100%);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(239, 98, 18, 0.45), 0 2px 6px rgba(34, 34, 34, 0.12);
    transform: translateY(140%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }
  .floating-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .floating-cta.is-hidden {
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
  }
  .floating-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    flex: 1;
    min-width: 0;
  }
  .floating-cta-main {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.01em;
  }
  .floating-cta-sub {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.95;
    margin-top: 3px;
  }
  .floating-cta-icon {
    font-size: 22px;
    flex-shrink: 0;
  }
  body { padding-bottom: 84px; }
}
