/* ===== Tokens ===== */
:root {
  --navy: #0B1F3A;
  --navy-light: #122A4D;
  --navy-border: #33445F;
  --muted-onnavy: #9FB0CC;
  --body-onnavy: #C4CFE0;
  --pink: #FF5B8D;
  --pink-light: #FF81A9;
  --lime: #DEFF5C;
  --body-text: #33445F;
  --muted: #5A6B85;
  --bg-light: #F7F8FA;
  --bg-hero: #EEF1F6;
  --border-gray: #D5DBE6;
  --white: #FFFFFF;
  --container-w: 1200px;
  --font-display: 'Archivo Black', 'Archivo', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  font-family: var(--font-body);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: #1C3D6E; }
::selection { background: var(--pink); color: var(--navy); }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
.nowrap { white-space: nowrap; }
.section-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 88px 32px;
}
.section-inner-narrow { max-width: 900px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-family: var(--font-body);
  cursor: pointer;
  border: 2px solid var(--navy);
  padding: 14px 28px;
  font-size: 15px;
  transition: transform .15s ease;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-xl { padding: 20px 44px; font-size: 18px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-accent { background: var(--lime); color: var(--navy); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--lime); }
.btn-outline-navy { background: transparent; color: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-shadow { box-shadow: 4px 4px 0 var(--navy); }
.btn-shadow-navy { box-shadow: 5px 5px 0 rgba(11,31,58,.35); }
.btn-between { justify-content: space-between; }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
}
.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 24px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}
.main-nav a:not(.btn):hover { color: var(--pink); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--navy); flex: 0 0 auto; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: var(--bg-light);
  border-bottom: 1.5px solid var(--border-gray);
}
.breadcrumb-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
}
.breadcrumb-inner a { color: var(--muted); }
.breadcrumb-inner a:hover { color: var(--pink); }
.breadcrumb-sep { color: var(--border-gray); }
.breadcrumb-current { color: var(--navy); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  border-bottom: 2px solid var(--navy);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-deco { position: absolute; pointer-events: none; }
.hero-deco-navy {
  top: 0; right: 0; width: 44%; height: 100%;
  background: var(--navy);
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 22% 100%);
  opacity: .06;
}
.hero-deco-yellow {
  bottom: 0; left: 0; width: 30%; height: 110px;
  background: var(--pink);
  clip-path: polygon(0 100%, 0 22%, 100% 100%);
  opacity: .85;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 88px 32px 96px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.badge-pill {
  display: inline-block;
  background: var(--navy);
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 6px 12px;
  margin-bottom: 24px;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--body-text);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.hero-checks span { display: flex; align-items: center; gap: 6px; }

/* dashboard mock card */
.hero-visual { position: relative; min-width: 0; }
.dashboard-card {
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 8px 8px 0 rgba(11,31,58,.9);
  max-width: 600px;
  margin-right: -150px;
  margin-left: auto;
}
.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 2px solid var(--navy);
  background: var(--bg-light);
}
.dot { width: 10px; height: 10px; display: block; }
.dot-navy { background: var(--navy); }
.dot-slate { background: var(--muted); }
.dot-yellow { background: var(--pink); }
.dash-title { margin-left: 10px; font-size: 11px; font-weight: 700; color: var(--muted); }
.dash-body { padding: 18px; display: grid; gap: 14px; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat-box { border: 1.5px solid var(--border-gray); padding: 12px 14px; }
.stat-box-dark { background: var(--navy); border-color: var(--navy); }
.stat-label { display: block; font-size: 10px; font-weight: 700; color: var(--muted); }
.stat-box-dark .stat-label { color: var(--muted-onnavy); }
.stat-value { font-family: var(--font-display); font-size: 28px; line-height: 1.2; }
.stat-value small { font-size: 12px; font-family: var(--font-body); font-weight: 700; color: var(--muted); }
.stat-value-yellow { color: var(--pink); }
.stat-value-yellow small { color: var(--muted-onnavy); }
.dash-pipeline { border: 1.5px solid var(--border-gray); padding: 14px; }
.pipeline-title { display: block; font-size: 10px; font-weight: 700; color: var(--muted); margin-bottom: 10px; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 72px; }
.bar-col { flex: 1; height: 100%; display: flex; align-items: flex-end; }
.bar { width: 100%; }
.bar-accent { border: 1.5px solid var(--navy); }
.bar-labels { display: flex; gap: 8px; font-size: 9px; font-weight: 700; color: var(--muted); margin-top: 6px; }
.bar-labels span { flex: 1; text-align: left; }
.dash-list { display: grid; gap: 6px; }
.dash-row {
  display: flex;
  justify-content: space-between;
  border: 1.5px solid var(--border-gray);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
}
.dash-muted { color: var(--muted); }
.dash-tag { background: var(--pink); color: var(--white); padding: 0 6px; }

/* ===== Section chrome ===== */
.section { position: relative; overflow: hidden; border-bottom: 2px solid var(--navy); }
.section-white { background: var(--white); }
.section-gray { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-accent { background: var(--bg-hero); }
.section-blob { background-position: center; background-size: cover; background-repeat: no-repeat; }
.section-blob-yellow { background-image: url('../assets/blob-yellow.png'); }
.section-blob-lime {
  background-image: url('../assets/blob-lime.png');
  background-size: 50% auto;
  background-position: left center;
}

.watermark {
  position: absolute;
  top: -26px;
  right: -8px;
  font-family: var(--font-display);
  font-size: 170px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(11,31,58,.07);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}
.watermark-onnavy { -webkit-text-stroke: 1.5px rgba(255,255,255,.08); }
.watermark-left { right: auto; left: 24px; }
.watermark-contact { top: auto; bottom: -30px; -webkit-text-stroke: 1.5px rgba(11,31,58,.14); }

.deco-triangle { position: absolute; pointer-events: none; z-index: 0; }
.deco-triangle-features {
  top: 0; right: 0; width: 36%; height: 220px;
  background: var(--pink);
  clip-path: polygon(30% 0, 100% 0, 100% 100%);
  opacity: .9;
}
.deco-triangle-usecases {
  top: 0; left: 0; width: 26%; height: 180px;
  background: var(--navy);
  clip-path: polygon(0 0, 70% 0, 0 100%);
  opacity: .05;
}
.usecase-illustration {
  position: absolute;
  top: 0;
  right: 24px;
  width: 300px;
  height: 198px;
  background-image: url('../assets/illustration-usecases.png');
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 981px) {
  .usecase-illustration {
    top: auto;
    bottom: 88px;
    right: 0;
    width: 300px;
    height: 198px;
    background-position: bottom right;
    z-index: 1;
  }
  .usecase-card-featured { position: relative; z-index: 2; }
}
.deco-triangle-pricing {
  bottom: 0; right: 0; width: 34%; height: 200px;
  background: var(--pink);
  clip-path: polygon(100% 100%, 100% 10%, 0 100%);
  opacity: .9;
}
.deco-triangle-contact {
  top: 0; right: 0; width: 42%; height: 100%;
  background: var(--navy);
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 12% 100%);
  opacity: .08;
}

.eyebrow { position: relative; z-index: 2; display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.eyebrow-num { font-family: var(--font-display); font-size: 15px; color: var(--navy); }
.eyebrow-num-white { color: var(--white); }
.eyebrow-line { width: 36px; height: 2px; display: block; }
.eyebrow-line-pink { background: var(--pink); }
.eyebrow-line-yellow { background: var(--pink); }
.eyebrow-label { font-size: 12px; font-weight: 900; letter-spacing: 3px; }
.eyebrow-label-pink { color: var(--pink); }
.eyebrow-label-yellow { color: var(--pink); }

.title-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.4;
  padding: 12px 24px 14px;
  margin: 0 0 48px;
}
.title-badge-navy { background: var(--navy); color: var(--white); }
.title-badge-yellow { background: var(--pink); color: var(--navy); }
.section-lead {
  position: relative; z-index: 2;
  font-size: 15px; font-weight: 500; color: var(--body-text);
  max-width: 640px; line-height: 1.9; margin: -32px 0 56px;
}

/* ===== 01 Before/After ===== */
.before-after {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 12px 0;
  align-items: stretch;
}
.ba-heading { font-size: 13px; font-weight: 900; padding-bottom: 4px; }
.ba-heading-before { color: var(--pink); }
.ba-heading-after { color: var(--navy); }
.ba-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 700;
}
.ba-before { background: var(--bg-light); border: 1.5px solid var(--border-gray); color: var(--body-text); }
.ba-before svg { flex: 0 0 auto; }
.ba-after { background: var(--white); border: 2px solid var(--navy); }
.ba-after svg { flex: 0 0 auto; }
.ba-arrow { display: flex; align-items: center; justify-content: center; }

/* ===== 02 Reason ===== */
.reason-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reason-card {
  background: var(--navy-light);
  border: 1.5px solid var(--navy-border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reason-num { font-family: var(--font-display); font-size: 40px; color: var(--pink); line-height: 1; }
.reason-icon { width: 112px; height: auto; align-self: center; }
.reason-card h3 { font-size: 20px; font-weight: 900; text-align: center; }
.reason-card p { font-size: 14px; font-weight: 500; line-height: 1.8; color: var(--body-onnavy); }
.reason-diff {
  margin-top: auto;
  border-top: 1.5px solid var(--navy-border);
  padding-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-onnavy);
}
.reason-diff span { color: var(--pink-light); }

/* ===== 03 Features ===== */
.feature-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card {
  background: var(--white);
  border: 2px solid var(--navy);
  padding: 26px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.feature-card h3 { font-size: 18px; font-weight: 900; margin-bottom: 6px; }
.feature-card p { font-size: 13px; font-weight: 500; line-height: 1.7; color: var(--body-text); }

/* ===== 04 KPI Engine ===== */
.kpi-flow { position: relative; z-index: 2; display: flex; align-items: stretch; }
.kpi-box {
  flex: 1 1 0;
  min-width: 0;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kpi-box-dark { background: var(--navy); color: var(--white); }
.kpi-label { font-size: 11px; font-weight: 900; letter-spacing: .5px; color: var(--muted); white-space: nowrap; }
.kpi-label-dark { color: var(--muted-onnavy); }
.kpi-value {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 22px);
  line-height: 1.1;
  color: var(--pink);
  white-space: nowrap;
}
.kpi-value small { font-size: clamp(10px, 1vw, 12px); font-family: var(--font-body); font-weight: 900; }
.kpi-note { font-size: 11px; font-weight: 700; color: var(--muted); }
.kpi-note-dark { color: var(--muted-onnavy); }
.kpi-note-pink { color: var(--muted); }
.kpi-note-pinklight { color: var(--muted-onnavy); }
.kpi-op {
  flex: 0 0 auto;
  width: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 4px;
}
.kpi-op-pill {
  font-size: 9.5px;
  font-weight: 900;
  background: var(--bg-light);
  border: 1.5px solid var(--border-gray);
  padding: 2px 7px;
  white-space: nowrap;
}
.kpi-footnote { position: relative; z-index: 2; font-size: 12px; font-weight: 700; color: var(--muted); margin-top: 24px; }

/* ===== 05 Use Cases ===== */
.usecase-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.usecase-card { background: var(--white); border: 2px solid var(--navy); }
.usecase-header { background: var(--navy); color: var(--white); padding: 16px 24px; font-size: 16px; font-weight: 900; }
.usecase-list {
  margin: 0; padding: 24px 24px 20px;
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--body-text);
}
.usecase-list li { display: flex; gap: 10px; }
.time-tag {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  background: var(--navy);
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.usecase-result {
  border-top: 1.5px solid var(--border-gray);
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 900;
  color: var(--navy);
}

/* ===== 06 Integrations & Security ===== */
.integration-row { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.integration-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--border-gray);
  background: var(--white);
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 900;
}
.integration-item svg { flex: 0 0 auto; }
.integration-item em {
  font-style: normal;
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 2px;
}
.integration-note { position: relative; z-index: 2; font-size: 13px; font-weight: 700; color: var(--muted); margin: -40px 0 56px; }
.security-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.security-card { background: var(--bg-light); border: 1.5px solid var(--border-gray); padding: 26px 24px; display: flex; gap: 14px; align-items: flex-start; }
.security-card svg { flex: 0 0 auto; }
.security-card h3 { font-size: 15px; font-weight: 900; margin-bottom: 4px; }
.security-card p { font-size: 12.5px; font-weight: 500; line-height: 1.7; color: var(--body-text); }

/* ===== 07 Pricing ===== */
.pricing-card {
  position: relative; z-index: 2;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 8px 8px 0 var(--pink);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
}
.pricing-copy { padding: 56px; }
.pricing-copy h2 { font-size: 32px; font-weight: 900; margin: 12px 0 16px; letter-spacing: -.5px; }
.pricing-copy p { font-size: 14px; font-weight: 500; line-height: 1.9; color: var(--body-onnavy); }
.pricing-actions {
  padding: 56px;
  border-left: 1.5px solid var(--navy-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-note { font-size: 11.5px; font-weight: 700; color: var(--muted-onnavy); text-align: center; margin: 0; }

/* ===== 08 Flow ===== */
.flow-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; align-items: stretch; margin-bottom: 36px; }
.flow-card { background: var(--white); border: 2px solid var(--navy); padding: 30px 28px; display: flex; flex-direction: column; gap: 12px; }
.flow-head { display: flex; align-items: baseline; gap: 12px; }
.flow-num { font-family: var(--font-display); font-size: 32px; color: var(--pink); }
.flow-card h3 { font-size: 17px; font-weight: 900; }
.flow-card p { font-size: 13px; font-weight: 500; line-height: 1.9; color: var(--body-text); }
.flow-arrow { display: flex; align-items: center; justify-content: center; }

/* ===== 09 FAQ ===== */
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
.faq-list { position: relative; z-index: 2; display: grid; gap: 12px; }
.faq-item { border: 2px solid var(--navy); background: var(--white); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 900;
}
.faq-chev { font-family: var(--font-display); font-size: 20px; color: var(--navy); flex: 0 0 auto; transition: transform .2s; }
.faq-item[open] .faq-chev { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 24px 20px; font-size: 13.5px; font-weight: 500; line-height: 1.9; color: var(--body-text); }
.faq-more { margin-top: 20px; text-align: center; }
.faq-category {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 20px;
}
.faq-category::before { content: ''; flex: 0 0 auto; width: 6px; height: 22px; background: var(--pink); }
.faq-category-group:not(:first-child) { margin-top: 56px; }
.faq-category-group-yellow { position: relative; }
.faq-category-group-yellow::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/blob-yellow.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* ===== Contact CTA ===== */
.contact-title { position: relative; z-index: 2; font-size: 44px; font-weight: 900; letter-spacing: -1px; line-height: 1.3; margin-bottom: 28px; }
.contact-lead { position: relative; z-index: 2; font-size: 15px; font-weight: 700; color: var(--body-text); margin-bottom: 28px; }
.cta-buttons { position: relative; z-index: 2; display: flex; gap: 16px; flex-wrap: wrap; }

.schedule-link {
  position: relative; z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
}
.schedule-link svg { flex: 0 0 auto; }
.schedule-link:hover { color: var(--pink); }
.schedule-link-accent { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }
.schedule-link-accent:hover { color: var(--navy); }

/* ===== Schedule modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 31, 58, .6);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.is-open { display: flex; }
.modal-box {
  position: relative;
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 8px 8px 0 rgba(11,31,58,.9);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px 32px;
}
.modal-title { font-size: 18px; font-weight: 900; margin-bottom: 16px; }
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  cursor: pointer;
  padding: 0;
}
.modal-close:hover { color: var(--pink); }
.modal-iframe { display: block; width: 100%; height: 600px; border: 0; }
.schedule-embed { border: 2px solid var(--navy); padding: 4px; }
.schedule-embed iframe { display: block; width: 100%; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: var(--muted-onnavy); padding: 56px 32px 96px; }
.footer-inner { max-width: var(--container-w); margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--navy-border);
  flex-wrap: wrap;
}
.footer-logo { height: 20px; filter: invert(1) brightness(2); margin-bottom: 14px; }
.footer-brand p { font-size: 12px; font-weight: 500; line-height: 1.9; max-width: 340px; color: var(--muted-onnavy); }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col-title { font-size: 11px; font-weight: 900; letter-spacing: 2px; color: var(--pink); margin-bottom: 14px; }
.footer-col { display: grid; gap: 10px; font-size: 12.5px; font-weight: 700; }
.footer-col a { color: var(--muted-onnavy); }
.footer-col a:hover { color: var(--white); }
.footer-link-strong { color: var(--white) !important; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  font-size: 11px;
  font-weight: 500;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--muted-onnavy); }
.footer-legal a:hover { color: var(--white); }
.footer-bottom p { margin: 0; }

/* ===== Page hero (contact, etc.) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-hero);
  border-bottom: 2px solid var(--navy);
}
.page-hero .section-inner { padding: 72px 32px 64px; max-width: var(--container-w); }
.page-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -1px;
  margin: 0 0 18px;
  max-width: 640px;
}
.page-hero-lead {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--body-text);
  max-width: 560px;
  margin-bottom: 24px;
}
.deco-triangle-pagehero {
  top: 0; right: 0; width: 40%; height: 100%;
  background: var(--navy);
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 22% 100%);
  opacity: .06;
}
.only-mobile { display: none; }

/* ===== Contact FAQ teaser ===== */
.contact-faq-teaser {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--navy);
}
.contact-faq-teaser h2 { font-size: 20px; font-weight: 900; }

/* ===== Contact form ===== */
.contact-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.form-card {
  background: var(--white);
  border: 2px solid var(--navy);
  padding: 44px;
}
.schedule-card { display: flex; flex-direction: column; }
.schedule-card .schedule-embed { flex: 1; display: flex; }
.schedule-card .schedule-embed iframe { flex: 1; height: 100%; }
.form-title { font-size: 22px; font-weight: 900; margin-bottom: 10px; }
.form-desc { font-size: 13.5px; font-weight: 500; line-height: 1.8; color: var(--muted); margin-bottom: 32px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-group { margin-bottom: 22px; }
.field-group label, .field-legend {
  display: block;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .3px;
  margin-bottom: 8px;
}
.req {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  padding: 1px 6px;
  margin-left: 8px;
  vertical-align: 1px;
}
.field-group input[type="text"],
.field-group input[type="email"],
.field-group input[type="tel"],
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1.5px solid var(--border-gray);
  background: var(--white);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
}
.field-group textarea { resize: vertical; min-height: 120px; }
.field-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1F3A' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 3px 3px 0 var(--pink);
}
.field-group input::placeholder, .field-group textarea::placeholder { color: #9AA6B8; }

.radio-group { display: flex; gap: 24px; }
.radio-opt { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; cursor: pointer; }
.radio-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-dot { width: 18px; height: 18px; border: 1.5px solid var(--border-gray); display: inline-block; position: relative; flex: 0 0 auto; }
.radio-opt input:checked + .radio-dot { border-color: var(--navy); }
.radio-opt input:checked + .radio-dot::after { content: ''; position: absolute; inset: 3px; background: var(--navy); }
.radio-opt input:focus-visible + .radio-dot { box-shadow: 0 0 0 2px var(--pink); }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 500; color: var(--body-text); cursor: pointer; margin-bottom: 28px; }
.checkbox-row input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-box { width: 18px; height: 18px; border: 1.5px solid var(--border-gray); flex: 0 0 auto; margin-top: 1px; position: relative; }
.checkbox-row input:checked + .checkbox-box { border-color: var(--navy); background: var(--pink); }
.checkbox-row input:checked + .checkbox-box::after { content: ''; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid var(--navy); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.checkbox-row input:focus-visible + .checkbox-box { box-shadow: 0 0 0 2px var(--pink); }
.checkbox-row a:hover { color: var(--pink); }

.form-submit-btn { justify-content: center; margin-top: 4px; }

.schedule-panel-title { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
.schedule-panel-desc { font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }

.form-success { display: none; flex-direction: column; align-items: flex-start; gap: 12px; padding: 8px 0; }
.form-success:not([hidden]) { display: flex; }
.form-success h3 { font-size: 18px; font-weight: 900; }
.form-success p { font-size: 13.5px; font-weight: 500; line-height: 1.8; color: var(--muted); max-width: 440px; }

/* ===== 対応の流れ (FLOW) ===== */
.sidebar-steps { list-style: none; margin: 18px 0; padding: 0; display: grid; gap: 14px; }
.sidebar-steps li { display: flex; gap: 12px; font-size: 13.5px; font-weight: 700; line-height: 1.7; color: var(--body-onnavy); }
.sidebar-step-num {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  background: var(--pink);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.sidebar-note { font-size: 12px; font-weight: 500; color: var(--muted-onnavy); line-height: 1.8; margin: 0; }
.sidebar-steps-row { grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .dashboard-card { margin-right: 0; max-width: 100%; }
  .reason-grid, .usecase-grid, .security-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); padding: 4px 0; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); padding: 8px 0; }
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-actions { border-left: none; border-top: 1.5px solid var(--navy-border); }
  .kpi-flow { flex-wrap: wrap; }
  .kpi-box { flex: 1 1 40%; }
  .kpi-op { width: auto; flex: 0 0 100%; flex-direction: row; justify-content: center; }
  .footer-top { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .sidebar-steps-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .main-nav .btn { margin-top: 8px; }
  .hero-copy h1 { font-size: 32px; }
  .section-inner { padding: 60px 24px; }
  .title-badge { font-size: 19px; padding: 10px 16px 12px; }
  .reason-grid, .usecase-grid, .security-grid, .integration-row, .dash-stats { grid-template-columns: 1fr; }
  .dash-stats { display: grid; }
  .watermark { font-size: 70px; }
  .deco-triangle { display: none; }
  .footer-cols { gap: 32px; }
  .contact-title { font-size: 30px; }
  .pricing-copy, .pricing-actions { padding: 32px; }
  .pricing-copy h2 { font-size: 24px; }
  .only-mobile { display: inline; }
  .page-hero .section-inner { padding: 48px 24px 40px; }
  .form-card { padding: 28px 24px; }
  .sidebar-card { padding: 26px 22px; }
  .breadcrumb-inner { padding: 10px 24px; font-size: 11.5px; }
}
