:root {
  --ink: #202124;
  --ink-strong: #17191d;
  --muted: #5f6368;
  --line: #e5e7eb;
  --line-strong: #d8dde5;
  --surface: #ffffff;
  --soft: #f7f8fa;
  --soft-blue: #f4f7fe;
  --charcoal: #202124;
  --blue: #4285f4;
  --blue-dark: #3367d6;
  --blue-soft: #e8f0fe;
  --red: #ea4335;
  --yellow: #fbbc05;
  --green: #34a853;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 10px 30px rgba(32, 33, 36, .06);
  --shadow-md: 0 24px 60px rgba(32, 33, 36, .10);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  background: var(--surface);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 26px rgba(32, 33, 36, .05);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-strong);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background:
    linear-gradient(135deg, var(--blue) 0 25%, var(--red) 25% 50%, var(--yellow) 50% 75%, var(--green) 75%);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(66, 133, 244, .16);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: .01em;
}

.brand small {
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.2;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.global-nav > a:not(.button) {
  color: #3c4043;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.global-nav > a:not(.button):hover {
  color: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

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

.button:focus-visible,
summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid #aecbfa;
  outline-offset: 3px;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(66, 133, 244, .22);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: #cfd5df;
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #aeb6c3;
  background: #fafbfc;
}

.button-light {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.button-outline-light {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  background: transparent;
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: .86rem;
}

.button-large {
  min-height: 54px;
  padding: 14px 24px;
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 40px;
  background:
    radial-gradient(circle at 84% 9%, rgba(66,133,244,.11), transparent 26rem),
    radial-gradient(circle at 14% 80%, rgba(52,168,83,.07), transparent 24rem),
    #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#dfe4eb 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.35), transparent 70%);
  opacity: .45;
}

.hero-grid,
.hero-flow {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 72px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 22px;
  color: #3c4043;
  font-size: .9rem;
}

.kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot-blue { background: var(--blue); }
.dot-red { background: var(--red); }
.dot-yellow { background: var(--yellow); }
.dot-green { background: var(--green); }

.hero-kicker strong {
  margin-left: 7px;
  font-size: .84rem;
  letter-spacing: .04em;
}

.hero h1 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2.65rem, 5vw, 4.65rem);
  line-height: 1.13;
  letter-spacing: -.05em;
}

.hero h1 span {
  color: var(--blue-dark);
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: #4f5358;
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-offer {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 650px);
  margin: 30px 0 0;
  padding: 18px 20px;
  border: 1px solid #d9e2f2;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
}

.hero-offer > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-offer small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.hero-offer > div:first-child strong {
  margin-top: 3px;
  font-size: 1.03rem;
}

.hero-price {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  column-gap: 7px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

.hero-price small {
  grid-column: 1 / -1;
}

.hero-price strong {
  color: var(--blue-dark);
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-price span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-note {
  margin: 14px 0 0;
  color: #777b80;
  font-size: .78rem;
}

.hero-product {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.product-window {
  width: min(100%, 470px);
  overflow: hidden;
  border: 1px solid #dfe3e8;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: rotate(1deg);
}

.product-window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid #e9edf2;
  background: #f7f8fa;
}

.product-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cfd5dd;
}

.product-window-bar span:nth-child(1) { background: var(--red); }
.product-window-bar span:nth-child(2) { background: var(--yellow); }
.product-window-bar span:nth-child(3) { background: var(--green); }

.product-window-bar small {
  margin-left: 8px;
  color: #7a8087;
  font-size: .7rem;
}

.product-screen {
  padding: 26px 24px 24px;
  background: radial-gradient(circle at top, #eef4fe 0, #f8fafd 24rem);
}

.product-eyebrow {
  margin: 0;
  color: var(--blue) !important;
  font-size: .7rem !important;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-screen > h2 {
  position: relative;
  margin: 7px 0 10px;
  color: #202124;
  font-size: 1.55rem;
  line-height: 1.4;
}

.product-screen > p {
  margin: 0;
  color: #5f6368;
  font-size: .84rem;
}

.google-accent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100px;
  height: 3px;
  margin: 0 0 12px;
  overflow: hidden;
  border-radius: 2px;
}

.google-accent i:nth-child(1) { background: var(--blue); }
.google-accent i:nth-child(2) { background: var(--red); }
.google-accent i:nth-child(3) { background: var(--yellow); }
.google-accent i:nth-child(4) { background: var(--green); }

.screen-panel {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #e0e5ec;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(23,32,51,.05);
}

.screen-panel small {
  display: block;
  color: var(--blue);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .09em;
}

.screen-panel strong {
  display: block;
  margin-top: 4px;
  font-size: .84rem;
  line-height: 1.55;
}

.screen-panel-soft {
  background: #fff;
}

.rating-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 11px;
}

.rating-row span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid #e0e5ec;
  border-radius: 10px;
  color: #5f6368;
  font-size: .7rem;
  font-weight: 800;
}

.rating-row span:first-child {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.choice-pill-row {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.choice-pill-row span {
  padding: 9px 10px;
  border: 1px solid #e0e5ec;
  border-radius: 10px;
  color: #5f6368;
  font-size: .68rem;
}

.choice-pill-row span:first-child {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 700;
}

.screen-button {
  margin-top: 16px;
  padding: 12px;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 20px rgba(66,133,244,.18);
}

.floating-badge {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid #e4e8ed;
  border-radius: 999px;
  background: #fff;
  color: #3c4043;
  font-size: .74rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.badge-ai {
  top: 96px;
  right: 8px;
}

.badge-edit {
  right: 24px;
  bottom: 105px;
}

.hero-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 34px rgba(32,33,36,.05);
}

.hero-flow > div {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  min-height: 94px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.hero-flow > div:last-child {
  border-right: 0;
}

.flow-color {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}

.flow-color.blue, .pain-number.blue, .guarantee-steps .blue, .value-chain .blue { background: var(--blue); }
.flow-color.red, .pain-number.red, .guarantee-steps .red, .value-chain .red { background: var(--red); }
.flow-color.yellow, .pain-number.yellow, .guarantee-steps .yellow, .value-chain .yellow { background: var(--yellow); color: #493700; }
.flow-color.green, .value-chain .green { background: var(--green); }

.hero-flow strong {
  align-self: end;
  font-size: .88rem;
  line-height: 1.35;
}

.hero-flow small {
  align-self: start;
  color: var(--muted);
  font-size: .72rem;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--soft);
}

.section-charcoal {
  background: var(--charcoal);
  color: #fff;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #aecbfa;
}

.section-heading h2,
.demo-copy h2,
.first-offer-copy h2,
.value-copy h2,
.operator-card h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.28;
  letter-spacing: -.035em;
}

.section-heading > p:last-child,
.demo-copy > p,
.first-offer-copy > p,
.value-copy > p,
.operator-card > div:first-child > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.heading-accent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 104px;
  height: 4px;
  margin: 18px auto 0;
  overflow: hidden;
  border-radius: 3px;
}

.heading-accent.left {
  margin-left: 0;
}

.heading-accent i:nth-child(1) { background: var(--blue); }
.heading-accent i:nth-child(2) { background: var(--red); }
.heading-accent i:nth-child(3) { background: var(--yellow); }
.heading-accent i:nth-child(4) { background: var(--green); }

.problem-section {
  padding-top: 110px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pain-card {
  min-height: 260px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pain-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
}

.pain-card h3 {
  margin: 26px 0 10px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-card {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(32,33,36,.045);
}

.process-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: #fff;
  font-size: .84rem;
  font-weight: 900;
}

.process-icon.blue { background: var(--blue); }
.process-icon.red { background: var(--red); }
.process-icon.yellow { background: var(--yellow); color: #493700; }
.process-icon.green { background: var(--green); }

.process-card > span {
  color: #8a8e93;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.process-card h3 {
  margin: 7px 0 9px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.8;
}

.demo-cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid #d8e4f8;
  border-radius: 18px;
  background: var(--soft-blue);
}

.demo-cta-inline > div {
  display: flex;
  flex-direction: column;
}

.demo-cta-inline strong {
  font-size: .96rem;
}

.demo-cta-inline span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .82rem;
}

.demo-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 72px;
}

.demo-copy {
  max-width: 520px;
}

.demo-copy .button {
  margin-top: 26px;
}

.plain-checks {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.plain-checks li {
  position: relative;
  margin: 9px 0;
  padding-left: 28px;
  color: #4b4f54;
  font-size: .9rem;
}

.plain-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 900;
}

.candidate-preview {
  padding: 28px;
  border: 1px solid #dfe3e8;
  border-radius: 26px;
  background: radial-gradient(circle at top, #eef4fe, #f8fafd 28rem);
  box-shadow: var(--shadow-md);
}

.candidate-preview-header {
  padding: 8px 8px 16px;
  text-align: center;
}

.candidate-preview-header small {
  display: block;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.candidate-preview-header strong {
  display: block;
  margin-top: 7px;
  font-size: 1.23rem;
  line-height: 1.5;
}

.candidate-preview-header span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .76rem;
}

.candidate-item {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid #e0e5ec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(23,32,51,.05);
}

.candidate-item.selected {
  border: 2px solid var(--blue);
  background: var(--blue-soft);
}

.candidate-item small {
  color: var(--blue-dark);
  font-size: .67rem;
  font-weight: 900;
}

.candidate-item p {
  margin: 8px 0 0;
  color: #3c4043;
  font-size: .79rem;
  line-height: 1.8;
}

.candidate-item button {
  width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: .74rem;
  font-weight: 900;
  pointer-events: none;
}

.candidate-item.selected button {
  background: var(--blue);
  color: #fff;
}

.value-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 72px;
  align-items: center;
}

.value-copy h2 {
  color: #fff;
}

.value-copy > p {
  color: #b7bbc1;
}

.value-chain {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 10px;
}

.value-chain > div {
  min-height: 190px;
  padding: 20px 18px;
  border: 1px solid #3b3e43;
  border-radius: 16px;
  background: #2a2d31;
}

.value-chain > b {
  align-self: center;
  color: #7c8188;
  font-size: 1.25rem;
}

.value-chain span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
}

.value-chain strong {
  display: block;
  margin-top: 18px;
  font-size: .88rem;
  line-height: 1.55;
}

.value-chain small {
  display: block;
  margin-top: 7px;
  color: #aeb3b9;
  font-size: .7rem;
  line-height: 1.6;
}

.first-offer-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.price-lockup {
  display: flex;
  align-items: end;
  gap: 9px;
  margin: 30px 0 24px;
}

.price-lockup small {
  align-self: center;
  color: var(--muted);
  font-weight: 700;
}

.price-lockup strong {
  color: var(--ink-strong);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.price-lockup span {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
}

.guarantee-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid #d7e2f3;
  border-radius: 26px;
  background: linear-gradient(145deg, #fff 0 50%, #f5f8fe 100%);
  box-shadow: var(--shadow-md);
}

.guarantee-card::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 24px solid rgba(66,133,244,.07);
}

.guarantee-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.guarantee-card h3 {
  position: relative;
  z-index: 1;
  margin: 16px 0 12px;
  font-size: 1.5rem;
  line-height: 1.45;
}

.guarantee-card h3 strong {
  color: var(--blue-dark);
  font-size: 2rem;
}

.guarantee-card > p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.guarantee-rule {
  margin-top: 22px;
  padding: 18px;
  border-radius: 15px;
  background: var(--charcoal);
  color: #fff;
}

.guarantee-rule span,
.guarantee-rule strong {
  display: block;
}

.guarantee-rule span {
  color: #b9bec5;
  font-size: .76rem;
}

.guarantee-rule strong {
  margin-top: 2px;
  font-size: 1rem;
}

.guarantee-card .plain-checks li {
  color: #3c4043;
}

.guarantee-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guarantee-steps article {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.guarantee-steps article > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
}

.guarantee-steps h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
}

.guarantee-steps p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.policy-note {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  background: #fff;
  color: #696e74;
  font-size: .8rem;
}

.policy-note a {
  color: var(--blue-dark);
  font-weight: 700;
}

.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  list-style: none;
}

.onboarding-grid li {
  padding: 24px 22px;
  border-top: 3px solid var(--blue);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 16px;
}

.onboarding-grid li:nth-child(2) { border-top-color: var(--red); }
.onboarding-grid li:nth-child(3) { border-top-color: var(--yellow); }
.onboarding-grid li:nth-child(4) { border-top-color: var(--green); }

.onboarding-grid > li > span {
  color: #8a8f96;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.onboarding-grid h3 {
  margin: 12px 0 8px;
  font-size: .98rem;
}

.onboarding-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}

.pricing-section {
  background: #fff;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pricing-card-entry {
  border: 2px solid var(--blue);
  box-shadow: 0 20px 50px rgba(66,133,244,.12);
}

.pricing-card-standard {
  border-top: 4px solid var(--yellow);
}

.pricing-card-pro {
  border-top: 4px solid var(--green);
  background: #fbfdfb;
}

.plan-type {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f0f2f5;
  color: #5f6368;
  font-size: .65rem;
  font-weight: 900;
}

.pricing-card-entry .plan-type {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.pricing-card h3 {
  margin: 16px 0 8px;
  font-size: 1.18rem;
  line-height: 1.5;
}

.plan-price {
  display: flex;
  align-items: end;
  gap: 5px;
  margin: 12px 0;
}

.plan-price small {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
}

.plan-price strong {
  color: var(--ink-strong);
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.plan-price span {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
}

.plan-summary {
  min-height: 92px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: .84rem;
}

.plan-list {
  flex: 1;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 24px;
  color: #3f4348;
  font-size: .8rem;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.plan-limit {
  margin: auto 0 0;
  padding: 12px 13px;
  border-radius: 11px;
  background: var(--soft);
  color: #6e7379;
  font-size: .72rem;
  line-height: 1.65;
}

.pricing-card-entry .plan-limit {
  display: none;
}

.annual-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 24px;
  padding: 26px 28px;
  border: 1px solid #dfe3e8;
  border-radius: 18px;
  background: #fafbfc;
}

.annual-label {
  color: var(--blue-dark);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.annual-card h3 {
  margin: 4px 0 0;
  font-size: 1.05rem;
}

.annual-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.annual-price {
  display: flex;
  align-items: end;
  gap: 7px;
  white-space: nowrap;
}

.annual-price span,
.annual-price small {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: .7rem;
}

.annual-price strong {
  font-size: 1.85rem;
  line-height: 1;
}

.custom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  padding: 17px 22px;
  border: 1px dashed #ccd2db;
  border-radius: 14px;
}

.custom-row > div {
  display: flex;
  flex-direction: column;
}

.custom-row strong {
  font-size: .9rem;
}

.custom-row span {
  color: var(--muted);
  font-size: .75rem;
}

.custom-row b {
  white-space: nowrap;
  font-size: .9rem;
}

.pricing-demo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 16px;
  background: var(--charcoal);
  color: #fff;
}

.pricing-demo-row p {
  margin: 0;
  color: #c6c9ce;
  font-size: .85rem;
}

.pricing-demo-row strong {
  color: #fff;
}

.ladder {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.ladder-step {
  min-height: 210px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.ladder-step span {
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.step-review { border-top: 4px solid var(--blue); }
.step-review span { color: var(--blue-dark); }
.step-meo { border-top: 4px solid var(--yellow); }
.step-meo span { color: #8a6500; }
.step-aio { border-top: 4px solid var(--green); }
.step-aio span { color: #188038; }

.ladder-step h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
}

.ladder-step p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.ladder-arrow {
  color: #a0a5ab;
  font-size: 1.4rem;
}

.aio-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.aio-compare article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.compare-label {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: .65rem;
  font-weight: 900;
}

.aio-compare article:nth-child(2) .compare-label {
  background: #e6f4ea;
  color: #137333;
}

.aio-compare h3 {
  margin: 12px 0 8px;
  font-size: 1.05rem;
}

.aio-compare ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: .82rem;
}

.aio-note {
  margin-top: 14px;
  color: #73787e;
  font-size: .76rem;
  text-align: center;
}

.scope-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.scope-table > div {
  display: grid;
  grid-template-columns: 1.45fr .72fr .72fr;
  border-bottom: 1px solid var(--line);
}

.scope-table > div:last-child {
  border-bottom: 0;
}

.scope-table span,
.scope-table strong {
  padding: 16px 18px;
  font-size: .82rem;
}

.scope-table strong {
  border-left: 1px solid var(--line);
  text-align: center;
}

.scope-head {
  background: var(--charcoal);
  color: #fff;
}

.scope-head span {
  font-weight: 800;
}

.faq-list {
  max-width: 880px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 50px 22px 2px;
  font-weight: 800;
  line-height: 1.55;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 1rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 46px 22px 2px;
  color: var(--muted);
  font-size: .87rem;
}

.operator-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.operator-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.operator-links {
  display: grid;
  align-content: center;
}

.operator-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  color: #3c4043;
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
}

.operator-links a:last-child {
  border-bottom: 0;
}

.operator-links a span {
  color: var(--blue);
}

.final-cta {
  padding: 76px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(66,133,244,.24), transparent 22rem),
    var(--charcoal);
  color: #fff;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.3;
  letter-spacing: -.035em;
}

.final-cta p {
  max-width: 680px;
  margin: 14px 0 0;
  color: #c1c5ca;
}

.final-actions {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

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

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
}

.brand-footer {
  margin-bottom: 12px;
}

.footer-main > div > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}

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

.footer-nav > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav strong {
  margin-bottom: 4px;
  font-size: .78rem;
}

.footer-nav a {
  color: var(--muted);
  font-size: .76rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--blue-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: #8a8e94;
  font-size: .68rem;
}

@media (max-width: 1080px) {
  .global-nav {
    gap: 16px;
  }

  .global-nav > a:not(.button) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 430px;
    gap: 36px;
  }

  .hero-product {
    min-height: 560px;
  }

  .value-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .value-chain {
    grid-template-columns: repeat(4, 1fr);
  }

  .value-chain > b {
    display: none;
  }

  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card-entry {
    grid-column: 1 / -1;
  }

  .pricing-card-entry .plan-summary {
    min-height: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .onboarding-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .global-nav {
    position: fixed;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-md);
  }

  .global-nav.is-open {
    display: grid;
  }

  .global-nav > a:not(.button) {
    display: block;
    padding: 11px 8px;
  }

  .global-nav .button {
    width: 100%;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .demo-layout,
  .first-offer-grid,
  .operator-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-product {
    min-height: 0;
    padding: 12px 0 20px;
  }

  .product-window {
    transform: none;
  }

  .badge-ai {
    top: -2px;
  }

  .badge-edit {
    right: 8px;
    bottom: 6px;
  }

  .hero-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-flow > div:nth-child(2) {
    border-right: 0;
  }

  .hero-flow > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 82px 0;
  }

  .pain-grid,
  .guarantee-steps {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: auto;
  }

  .demo-layout,
  .first-offer-grid {
    gap: 42px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card-entry {
    grid-column: auto;
  }

  .plan-summary {
    min-height: 0;
  }

  .annual-card,
  .pricing-demo-row,
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta-inner {
    display: flex;
  }

  .annual-price {
    align-self: flex-start;
  }

  .ladder {
    grid-template-columns: 1fr;
  }

  .ladder-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .aio-compare {
    grid-template-columns: 1fr;
  }

  .scope-table {
    overflow-x: auto;
  }

  .scope-table > div {
    min-width: 720px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: .96rem;
  }

  .hero-offer {
    display: grid;
    gap: 14px;
    padding: 17px;
  }

  .hero-price {
    grid-template-columns: auto auto 1fr;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-price small {
    grid-column: auto;
    align-self: center;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-product {
    margin-top: 8px;
  }

  .product-screen {
    padding: 20px 15px 17px;
  }

  .product-window {
    border-radius: 18px;
  }

  .floating-badge {
    padding: 8px 10px;
    font-size: .66rem;
  }

  .badge-ai {
    right: 4px;
  }

  .badge-edit {
    bottom: -4px;
  }

  .hero-flow {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-flow > div {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-flow > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .demo-copy h2,
  .first-offer-copy h2,
  .value-copy h2,
  .operator-card h2 {
    font-size: 1.85rem;
  }

  .section-heading > p:last-child,
  .demo-copy > p,
  .first-offer-copy > p {
    font-size: .92rem;
  }

  .pain-card {
    padding: 24px 21px;
  }

  .process-grid,
  .onboarding-grid {
    grid-template-columns: 1fr;
  }

  .demo-cta-inline {
    display: grid;
    gap: 16px;
  }

  .demo-cta-inline .button {
    width: 100%;
  }

  .candidate-preview {
    padding: 18px 12px;
    border-radius: 20px;
  }

  .value-chain {
    grid-template-columns: 1fr;
  }

  .value-chain > div {
    min-height: auto;
  }

  .guarantee-card {
    padding: 28px 22px;
  }

  .guarantee-card h3 strong {
    font-size: 1.65rem;
  }

  .price-lockup {
    flex-wrap: wrap;
  }

  .price-lockup strong {
    font-size: 2.75rem;
  }

  .pricing-card {
    padding: 26px 21px;
  }

  .annual-card {
    padding: 22px 20px;
  }

  .annual-price {
    flex-wrap: wrap;
  }

  .custom-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-demo-row .button {
    width: 100%;
  }

  .scope-table::after {
    content: "横にスクロールできます";
    display: block;
    padding: 8px 12px;
    color: var(--muted);
    font-size: .66rem;
    text-align: right;
    background: #fafbfc;
  }

  .faq-list summary {
    padding-right: 42px;
    font-size: .91rem;
  }

  .faq-list details p {
    margin-right: 36px;
    font-size: .82rem;
  }

  .operator-card {
    gap: 34px;
    padding: 28px 22px;
  }

  .final-cta {
    padding: 62px 0;
  }

  .final-actions {
    width: 100%;
    min-width: 0;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }

  .footer-nav > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}


/* Intentional line wrapping for key LP headings */
.hero h1 {
  font-size: clamp(2.8rem, 4.1vw, 3.45rem);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
  color: var(--ink-strong);
}

.hero h1 .hero-title-main,
.hero h1 .hero-title-google-tail {
  color: var(--ink-strong);
}

.hero h1 .hero-google-blue {
  color: #4285F4;
}

.hero h1 .hero-google-red {
  color: #EA4335;
}

.hero h1 .hero-google-yellow {
  color: #FBBC05;
}

.hero h1 .hero-google-green {
  color: #34A853;
}

.how-title-line {
  display: block;
  white-space: nowrap;
}

.demo-title-line {
  display: block;
}

.demo-title-line:last-child {
  white-space: nowrap;
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(1.8rem, 8.8vw, 2.5rem);
  }

  #how .section-heading h2 {
    font-size: clamp(1.28rem, 6.6vw, 1.85rem);
    letter-spacing: -.045em;
  }
}

/* Contact page aligned with the current LP visual system */
.subpage-body {
  background: var(--soft);
  color: var(--ink);
}

.subpage-body .sp-only {
  display: none;
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(66, 133, 244, .11), transparent 22rem),
    radial-gradient(circle at 14% 88%, rgba(52, 168, 83, .06), transparent 20rem),
    #fff;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#dfe4eb 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .22), transparent 76%);
  opacity: .35;
}

.subpage-hero > .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .78rem;
}

.breadcrumb a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.subpage-hero .eyebrow,
.contact-panel .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
}

.subpage-hero .eyebrow span,
.contact-panel .eyebrow span {
  display: inline-block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0 25%, var(--red) 25% 50%, var(--yellow) 50% 75%, var(--green) 75%);
}

.subpage-hero h1 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.18;
  letter-spacing: -.045em;
}

.subpage-hero > .container > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.subpage-main {
  padding: 72px 0 104px;
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0 25%, var(--red) 25% 50%, var(--yellow) 50% 75%, var(--green) 75%);
}

.contact-panel-wide {
  grid-column: 1 / -1;
}

.contact-panel h2,
.contact-panel h3 {
  margin: 0;
  color: var(--ink-strong);
  line-height: 1.4;
  letter-spacing: -.02em;
}

.contact-panel h2 {
  font-size: 1.5rem;
}

.contact-panel h3 {
  font-size: 1.2rem;
}

.contact-panel > p:not(.eyebrow):not(.contact-note) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.85;
}

.contact-panel .button {
  margin-top: 20px;
}

.contact-panel-dark {
  border-color: #2f3338;
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 18px 44px rgba(32, 33, 36, .16);
}

.contact-panel-dark h2,
.contact-panel-dark h3 {
  color: #fff;
}

.contact-panel-dark > p:not(.eyebrow):not(.contact-note),
.contact-panel-dark .contact-note {
  color: #bdc1c6;
}

.contact-panel-dark .eyebrow {
  color: #aecbfa;
}

.contact-email {
  display: inline-block;
  margin-top: 14px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-email:hover {
  color: #aecbfa;
}

.contact-note {
  margin: 14px 0 0;
  color: #7b8086;
  font-size: .75rem;
  line-height: 1.7;
}

.contact-form-iframe {
  display: block;
  width: 100%;
  height: 840px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.contact-form-fallback {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-dark);
  font-size: .8rem;
  font-weight: 800;
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--soft);
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.7;
}

.contact-steps li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 900;
}

.contact-steps li:nth-child(2) > span {
  background: #fce8e6;
  color: #c5221f;
}

.contact-steps li:nth-child(3) > span {
  background: #e6f4ea;
  color: #137333;
}

.contact-steps strong {
  color: var(--ink-strong);
}

@media (max-width: 820px) {
  .subpage-hero {
    padding: 58px 0 52px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel-wide {
    grid-column: auto;
  }

  .contact-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .subpage-body .sp-only {
    display: block;
  }

  .subpage-hero {
    padding: 46px 0 42px;
  }

  .subpage-hero h1 {
    font-size: 2.15rem;
  }

  .subpage-hero > .container > p:last-child {
    font-size: .92rem;
  }

  .subpage-main {
    padding: 48px 0 72px;
  }

  .contact-panel {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .contact-form-iframe {
    height: 960px;
    border-radius: 12px;
  }

  .demo-copy h2.demo-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 360px) {
  .demo-copy h2.demo-title {
    font-size: 1.65rem;
    letter-spacing: -.045em;
  }
}


/* Mobile-first conversion optimization: 2026-09-20 */
@media (max-width: 560px) {
  body {
    overflow-x: clip;
  }

  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: .96rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 34px 0 24px;
  }

  .hero-kicker {
    flex-wrap: nowrap;
    gap: 4px;
    margin-bottom: 16px;
    font-size: .78rem;
  }

  .hero-kicker strong {
    margin-left: 5px;
    font-size: .76rem;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(1.82rem, 8.8vw, 2.35rem);
    line-height: 1.13;
    letter-spacing: -.05em;
  }

  .hero-title-line {
    white-space: nowrap;
  }

  .hero-title-line + .hero-title-line {
    margin-top: .06em;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: .91rem;
    line-height: 1.75;
  }

  .hero-offer {
    gap: 12px;
    margin-top: 22px;
    padding: 15px;
    border-radius: 16px;
  }

  .hero-offer > div:first-child strong {
    font-size: .96rem;
  }

  .hero-price {
    padding-top: 12px;
  }

  .hero-price strong {
    font-size: 1.45rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .button-large {
    min-height: 52px;
    padding: 13px 18px;
  }

  .hero-note {
    font-size: .72rem;
    line-height: 1.6;
  }

  .hero-product {
    margin-top: 18px;
    padding: 0 0 14px;
  }

  .product-window {
    width: 100%;
  }

  .floating-badge {
    display: none;
  }

  .hero-flow {
    margin-top: 26px;
  }

  .hero-flow > div {
    min-height: 72px;
    padding: 14px 16px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .demo-copy h2,
  .first-offer-copy h2,
  .value-copy h2,
  .operator-card h2 {
    font-size: clamp(1.55rem, 7vw, 1.85rem);
    line-height: 1.35;
  }

  #how .section-heading h2 {
    font-size: clamp(1.28rem, 5.8vw, 1.55rem);
    line-height: 1.42;
    letter-spacing: -.05em;
  }

  .how-title-line + .how-title-line {
    margin-top: .12em;
  }

  .section-heading > p:last-child,
  .demo-copy > p,
  .first-offer-copy > p,
  .value-copy > p {
    margin-top: 14px;
    font-size: .88rem;
    line-height: 1.75;
  }

  .heading-accent {
    margin-top: 14px;
  }

  .pain-grid,
  .process-grid,
  .onboarding-grid,
  .guarantee-steps,
  .pricing-cards,
  .aio-compare {
    gap: 14px;
  }

  .pain-card {
    padding: 20px 18px;
  }

  .pain-card h3 {
    margin-top: 20px;
    font-size: 1.08rem;
  }

  .process-card {
    padding: 22px 18px;
  }

  .process-icon {
    margin-bottom: 18px;
  }

  .demo-cta-inline {
    gap: 14px;
    margin-top: 22px;
    padding: 18px;
  }

  .demo-layout,
  .first-offer-grid {
    gap: 34px;
  }

  .candidate-preview {
    padding: 16px 10px;
  }

  .candidate-item {
    padding: 15px;
  }

  .guarantee-card {
    padding: 24px 18px;
  }

  .pricing-card {
    padding: 24px 18px;
  }

  .plan-price strong {
    font-size: 2rem;
  }

  .annual-card,
  .pricing-demo-row,
  .custom-row {
    padding: 18px;
  }

  .ladder-step {
    min-height: auto;
    padding: 22px 18px;
  }

  .aio-compare article {
    padding: 22px 18px;
  }

  .scope-table {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .scope-table .scope-head {
    display: none;
  }

  .scope-table > div:not(.scope-head) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
  }

  .scope-table > div:not(.scope-head) > span {
    grid-column: 1 / -1;
    padding: 14px 15px;
    background: var(--soft);
    font-weight: 800;
  }

  .scope-table > div:not(.scope-head) > strong {
    position: relative;
    padding: 30px 10px 12px;
    border-top: 1px solid var(--line);
    border-left: 0;
    font-size: .76rem;
  }

  .scope-table > div:not(.scope-head) > strong + strong {
    border-left: 1px solid var(--line);
  }

  .scope-table > div:not(.scope-head) > strong:first-of-type::before,
  .scope-table > div:not(.scope-head) > strong:last-of-type::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    color: var(--muted);
    font-size: .62rem;
    font-weight: 800;
    text-align: center;
  }

  .scope-table > div:not(.scope-head) > strong:first-of-type::before {
    content: "33,000円";
  }

  .scope-table > div:not(.scope-head) > strong:last-of-type::before {
    content: "66,000円〜";
  }

  .scope-table::after {
    display: none;
  }

  .faq-list summary {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: .88rem;
  }

  .faq-list details p {
    margin-right: 28px;
    font-size: .8rem;
    line-height: 1.75;
  }

  .operator-card {
    gap: 28px;
    padding: 24px 18px;
  }

  .final-cta {
    padding: 52px 0;
  }

  .final-cta h2 {
    font-size: 1.72rem;
    line-height: 1.35;
  }

  .final-cta p {
    font-size: .88rem;
    line-height: 1.75;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.74rem;
    letter-spacing: -.055em;
  }

  .hero-kicker strong {
    font-size: .7rem;
  }

  #how .section-heading h2 {
    font-size: 1.22rem;
    letter-spacing: -.055em;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
  }
}
