/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #112659;
  --navy-mid: #1a3a7a;
  --navy-light: #e8edf7;
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-100: #f4f5f7;
  --gray-200: #e8eaed;
  --gray-400: #b0b8cc;
  --gray-600: #6b7590;
  --gray-800: #2c3350;
  --text: #1a1e2e;
  --font: 'Inter', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* 横スクロール防止 */
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  white-space: nowrap;
}

.header__nav a:hover { color: var(--navy); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border: 2px solid transparent;
  font-size: 15px;
  padding: 12px 28px;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn--lg { font-size: 16px; padding: 16px 40px; border-radius: 4px; }
.btn--sm { font-size: 13px; padding: 9px 20px; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
  transition: gap 0.2s;
}
.btn-arrow:hover { gap: 10px; }
.btn-arrow svg { width: 16px; height: 16px; }

/* ===== HERO ===== */
.hero {
  padding-top: 68px;
  background: var(--white);
  overflow: hidden;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 68px);
}
.hero__form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__form-inner {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 32px 28px;
  width: 100%;
}

/* FV ロゴ */
.hero__logo {
  margin-bottom: 20px;
}
.hero__logo img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}
.hero__logo-by {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.04em;
}
.hero__logo-by a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.hero__logo-by a:hover {
  border-bottom-color: var(--navy);
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--navy);
}

.hero__title {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 28px;
}

.hero__title em {
  font-style: normal;
  display: block;
  color: var(--gray-600);
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0em;
  margin-bottom: 4px;
}

.hero__sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 44px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}


.hero__visual {
  position: relative;
  padding-bottom: 0;
}

.hero__visual-bg {
  background: var(--navy-light);
  border-radius: 16px 16px 0 0;
  padding: 40px 40px 0;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.hero__visual-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.5;
  margin-bottom: 20px;
}

.hero__mock {
  background: var(--white);
  border-radius: 10px 10px 0 0;
  padding: 20px;
  box-shadow: 0 -4px 32px rgba(17,38,89,0.12);
  flex: 1;
}

.hero__mock-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.hero__mock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}

.hero__mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  margin-bottom: 6px;
  background: var(--gray-100);
}

.hero__mock-row--active {
  background: var(--navy-light);
  border-left: 3px solid var(--navy);
}

.hero__mock-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  flex-shrink: 0;
}

.hero__mock-avatar--navy { background: var(--navy); }

.hero__mock-line {
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  flex: 1;
}

.hero__mock-line--sm { max-width: 60%; }
.hero__mock-line--navy { background: rgba(17,38,89,0.2); }

.hero__mock-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--navy);
  color: var(--white);
  white-space: nowrap;
}

/* YouTube埋め込み（16:9レスポンシブ） */
.hero__yt-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(17, 38, 89, 0.18);
}

.hero__yt-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== LOGOS ===== */
@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.logos {
  padding: 56px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  overflow: hidden;
}

/* ヒーロー 850社バッジ */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-pale);
  color: var(--navy);
  border: 2px solid var(--navy-light);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 24px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero__badge strong { font-weight: 900; font-size: 20px; }

.logos__label {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 8px;
}
.logos__sublabel {
  font-size: 14px;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 32px;
}

/* マーキー行ラッパー */
.logos__marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 4px;
}
.logos__marquee:last-child { margin-bottom: 0; }

/* スクロールするトラック（ロゴ×2セット） */
.logos__track {
  display: flex;
  align-items: center;
  width: max-content;
}

/* 1行目：左スクロール */
.logos__marquee--row1 .logos__track {
  animation: marquee-left 18s linear infinite;
}
/* 2行目：右スクロール */
.logos__marquee--row2 .logos__track {
  animation: marquee-right 22s linear infinite;
}

.logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 56px;
  flex-shrink: 0;
}

.logos__item img {
  height: 100px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logos__item { padding: 14px 32px; }
  .logos__item img { height: 64px; max-width: 180px; }
}

/* ===== SECTION BASE ===== */
.section {
  padding: 120px 0;
}

.section--gray { background: var(--gray-100); }
.section--navy { background: var(--navy); }

.section__header {
  margin-bottom: 72px;
}

.section__header--center { text-align: center; }
.section__header--center .section__sub { margin: 0 auto; }

.section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.5;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}

.section--navy .section__title { color: var(--white); }
.section--navy .section__eyebrow { color: rgba(255,255,255,0.5); opacity: 1; }

.section__sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 540px;
  line-height: 1.85;
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--navy);
  padding: 0;
}

.stats-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-band__item {
  padding: 56px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stats-band__item:last-child { border-right: none; }

.stats-band__num {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stats-band__unit { font-size: 22px; font-weight: 700; }
.stats-band__label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ===== ABOUT (flow diagram) ===== */
.about__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.about__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1.5px solid var(--navy);
  border-radius: 2px;
  opacity: 0.7;
}

.about__heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}

.about__body {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.9;
}

/* 3フェーズ図解 */
.about__flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 56px;
}

.about__phase {
  flex: 1;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 16px;
  overflow: hidden;
}

.about__phase-header {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 14px 12px;
}

.about__phase-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 20px 16px;
}

.about__phase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  border-radius: 10px;
  background: var(--gray-100);
  text-align: center;
}

.about__phase-item svg {
  width: 36px;
  height: 36px;
  color: var(--navy);
  flex-shrink: 0;
}

.about__phase-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

/* フェーズ間の矢印 */
.about__flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  flex-shrink: 0;
  color: var(--navy);
}

.about__flow-arrow svg {
  width: 24px;
  height: 40px;
  transform: rotate(-90deg);
}

/* 信頼性バッジ行 */
.about__cred-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about__cred-badge {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}

.about__cred-badge svg {
  width: 28px;
  height: 28px;
  color: var(--navy);
  flex-shrink: 0;
}

.about__cred-badge-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.about__cred-badge-sub {
  font-size: 11px;
  color: var(--gray-600);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .about__flow { flex-direction: column; }
  .about__flow-arrow { padding: 8px 0; }
  .about__flow-arrow svg { transform: none; }
}

@media (max-width: 768px) {
  .about__phase-body { grid-template-columns: 1fr 1fr; gap: 4px; padding: 12px; }
  .about__cred-row { flex-direction: column; }
  .about__cred-badge { min-width: unset; }
}

/* ===== FEATURE (alternating) ===== */
.feature {
  padding: 56px 0;
}

.feature + .feature {
  padding-top: 0;
}

.feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.feature__inner--reverse { direction: rtl; }
.feature__inner--reverse > * { direction: ltr; }
.feature__inner--wide-visual { grid-template-columns: 1fr 1.5fr; }

.feature__num {
  font-size: 80px;
  font-weight: 900;
  color: var(--navy);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: -16px;
  letter-spacing: -0.04em;
}

.feature__rule {
  width: 48px;
  height: 3px;
  background: var(--navy);
  margin-bottom: 24px;
}

.feature__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}

.feature__body {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 32px;
}

.feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature__tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border: 1.5px solid var(--navy-light);
  border-radius: 2px;
  color: var(--navy);
  background: var(--navy-light);
}

.feature__visual {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 40px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}


.feature__visual-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.feature__mock-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.feature__mock-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 6px;
}

.feature__mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-400);
  flex-shrink: 0;
}

.feature__mock-dot--navy { background: var(--navy); }

.feature__mock-line-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature__mock-line {
  height: 7px;
  background: var(--gray-200);
  border-radius: 4px;
}

.feature__mock-line--short { max-width: 55%; }

.feature__mock-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  background: var(--navy);
  color: var(--white);
  white-space: nowrap;
}

.feature__mock-badge--light {
  background: var(--navy-light);
  color: var(--navy);
}

/* ===== FEATURE VISUALS ===== */

/* -- FV01 Bar Chart -- */
.fv-chart {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 0 0;
}
.fv-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 0;
  height: 200px;
  padding: 0 40px;
}
.fv-chart__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}
.fv-chart__col--arrow {
  flex: 0 0 40px;
  justify-content: center;
  padding-bottom: 28px;
}
.fv-chart__col--arrow svg {
  width: 32px;
  height: 32px;
  stroke: var(--navy);
}
.fv-chart__bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  transition: height 0.6s ease;
}
.fv-chart__bar--before {
  background: var(--gray-400);
}
.fv-chart__bar--after {
  background: var(--navy);
}
.fv-chart__label-bottom {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
}
.fv-chart__label-bottom--accent { color: var(--navy); }
.fv-chart__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 24px;
}
.fv-chart__arrow svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
}
.fv-chart__arrow span {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.fv-chart__note {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 8px;
}
.fv-chart__bar-val {
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 4px;
}
.fv-chart__bar-val--accent { color: var(--navy); font-size: 15px; }

/* Feature 数値ハイライト */
.feature__num-highlight {
  font-style: normal;
  color: var(--navy);
  font-weight: 900;
}

/* -- FV02 Task List -- */
.fv-tasks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 8px 0;
}
.fv-tasks__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  border: 1.5px solid transparent;
}
.fv-tasks__item--done {
  color: var(--gray-400);
  text-decoration: line-through;
  text-decoration-color: var(--gray-300);
}
.fv-tasks__item--focus {
  border-color: var(--navy);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}
.fv-tasks__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fv-tasks__check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
}
.fv-tasks__check--focus {
  background: var(--navy-light);
}
.fv-tasks__check--focus svg { stroke: var(--navy); }
.fv-tasks__badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
.fv-tasks__badge--done {
  background: var(--gray-200);
  color: var(--gray-400);
}
.fv-tasks__badge--focus {
  background: var(--navy);
  color: var(--white);
}

/* -- FV02 Workload Before/After -- */
.fv-workload {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 8px 0;
  justify-content: center;
}
.fv-workload__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.fv-workload__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.05em;
}
.fv-workload__label--after { color: var(--navy); }
.fv-workload__bar-wrap {
  display: flex;
  align-items: flex-end;
  height: 160px;
}
.fv-workload__bar {
  width: 90px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
}
.fv-workload__bar--after {
  height: 50%;
}
.fv-workload__segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 4px;
}
.fv-workload__segment--delegated {
  background: var(--gray-200);
  color: var(--gray-500);
  text-decoration: line-through;
  text-decoration-color: var(--gray-400);
}
.fv-workload__segment--core {
  background: var(--navy);
  color: var(--white);
}
.fv-workload__seg-hour {
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  display: block;
}
.fv-workload__total {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-600);
}
.fv-workload__total strong { font-size: 18px; font-weight: 900; }
.fv-workload__total--after { color: var(--navy); }
.fv-workload__total--after strong { font-size: 22px; color: var(--navy); }
.fv-workload__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 36px;
  color: var(--navy);
}
.fv-workload__arrow svg {
  width: 36px;
  height: 22px;
  stroke: var(--navy);
}
.fv-workload__arrow span {
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
}

/* -- Feature 02 Stack Layout -- */
.feature__inner--stack {
  padding: 64px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.feature__stack-text { max-width: 640px; }

/* フル幅RPO図解 */
.fv-rpo-wrap {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 40px 48px;
}
.fv-rpo-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}
.fv-rpo-full__left {
  padding-right: 48px;
  border-right: 2px solid var(--gray-200);
  position: relative;
}
.fv-rpo-full__heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.fv-rpo-full__time {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.fv-rpo-full__card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px 24px;
  border: 1px solid var(--gray-200);
}
.fv-rpo-full__right {
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.fv-rpo-full__after-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.fv-rpo-full__after-time {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.fv-rpo-full__arrow svg {
  width: 48px;
  height: 64px;
}
.fv-rpo-full__badge {
  margin-top: 4px;
  background: linear-gradient(90deg, #4A9FE0, var(--navy));
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}

/* -- FV02 Vertical RPO Figure -- */
.fv-rpo-v {
  display: flex;
  flex-direction: row;
  gap: 16px;
  background: var(--gray-100);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  align-items: stretch;
}
.fv-rpo-v__left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.fv-rpo-v__list-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-end;
  flex: 1;
}
.fv-rpo-v__right {
  flex: 1;
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.fv-rpo-v__heading {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.04em;
}
.fv-rpo-v__time {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.fv-rpo-v__note {
  font-size: 10px;
  color: var(--gray-600);
  font-weight: 500;
}
.fv-rpo-v__card {
  background: var(--white);
  border-radius: 8px;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  flex: 1;
  min-width: 0;
}
.fv-rpo-v__result {
  background: var(--navy-pale);
  border-radius: 10px;
  padding: 16px 16px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  flex: 1;
  position: relative;
}
.fv-rpo-v__result-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}
.fv-rpo-v__result-time {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.fv-rpo-v__badge {
  background: linear-gradient(90deg, #4A9FE0, var(--navy));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 12px 8px;
  border-radius: 0 0 10px 10px;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* -- FV02 RPO Workload -- */
.fv-rpo {
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding: 4px 0;
}
.fv-rpo__before {
  flex: 1.4;
  background: var(--gray-100);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}
.fv-rpo__before-time {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
}
.fv-rpo__big-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1;
}
.fv-rpo__big-num--accent { color: var(--navy); }
.fv-rpo__note-mark { font-size: 12px; }
.fv-rpo__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.fv-rpo__list li {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.5;
  display: flex;
  gap: 6px;
  align-items: baseline;
  white-space: nowrap;
}
.fv-rpo__list li span {
  color: var(--gray-600);
  font-weight: 400;
  white-space: nowrap;
}
.fv-rpo__footnote {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: auto;
  white-space: nowrap;
}
.fv-rpo__after {
  flex: 1;
  background: var(--navy-pale);
  border: 2px solid var(--navy-light);
  border-radius: 10px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.fv-rpo__after-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.fv-rpo__after-time {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.fv-rpo__arrow svg {
  width: 32px;
  height: 48px;
  margin: 4px 0;
}
.fv-rpo__pct {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.fv-rpo__pct-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.fv-rpo__pct-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.fv-rpo__badge {
  margin-top: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

/* -- FV03 Cost Chart -- */
.fv-cost {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  padding: 8px 0;
}
.fv-cost__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* -- FV01 Arrow Row -- */
.fv-chart__arrow-row {
  width: 100%;
  padding: 0 40px;
}
.fv-chart__arrow-row svg {
  width: 100%;
  height: 40px;
  display: block;
}

/* -- FV03 Route Diagram -- */
.fv-route {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 8px 0;
}
.fv-route__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.fv-route__tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 4px;
}
.fv-route__tag--old { background: var(--gray-200); color: var(--gray-500); }
.fv-route__tag--new { background: var(--navy); color: var(--white); }
.fv-route__step {
  width: 100%;
  text-align: center;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
}
.fv-route__step--accent { border-color: var(--navy); color: var(--navy); }
.fv-route__connector {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-route__connector svg { width: 20px; height: 20px; stroke: var(--gray-200); }
.fv-route__connector--accent svg { stroke: var(--navy); }
.fv-route__cost {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  text-align: center;
}
.fv-route__cost--high { background: var(--gray-200); color: var(--gray-500); }
.fv-route__cost--low  { background: var(--navy); color: var(--white); }
.fv-route__divider {
  font-size: 13px;
  font-weight: 900;
  color: var(--gray-400);
  padding: 0 4px;
  flex-shrink: 0;
}

/* ===== SERVICES GRID ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-200);
}

.service-item {
  padding: 40px 36px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.2s;
}

.service-item:hover { background: var(--navy-light); }
.service-item:nth-child(3n) { border-right: none; }

.service-item__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.4;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.service-item__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.service-item__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
}

.service-item__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-item__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===== REASONS ===== */
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--gray-200);
}

.reason-item {
  background: var(--white);
  padding: 48px;
}

.reason-item__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.reason-item__num {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -0.04em;
}

.reason-item__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
}

.reason-item__text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.85;
}

/* ===== CASES ===== */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.cases__grid .case-item {
  grid-column: span 2;
}
.cases__grid .case-item:nth-child(4) {
  grid-column: 2 / 4;
}
.cases__grid .case-item:nth-child(5) {
  grid-column: 4 / 6;
}

.case-item {
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.case-item__body {
  flex: 1;
}

.case-item:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 24px rgba(17,38,89,0.1);
}

.case-item__top {
  padding: 32px;
  border-bottom: 1px solid var(--gray-200);
}

.case-item__logo {
  height: 40px;
  margin-bottom: 10px;
}
.case-item__logo img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.case-item__company {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.case-item__result {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.case-item__result small {
  font-size: 13px;
  font-weight: 500;
  display: block;
  color: var(--gray-600);
  margin-top: 6px;
  letter-spacing: 0;
}

.case-item__body {
  padding: 24px 32px;
}

.case-item__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.85;
}

/* ===== VOICES ===== */
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
}

.voice-item {
  background: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.voice-item__text {
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.9;
  flex: 1;
  margin-bottom: 32px;
}

.voice-item__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.voice-item__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: 0;
}

.voice-item__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.voice-item__role { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* ===== COMPARISON ===== */
.table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.table-scroll-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.comparison-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.comparison-table thead th:first-child { text-align: left; }
.comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--navy); font-size: 14px; }
.comparison-table td:nth-child(2) { background: rgba(17,38,89,0.03); }
.comparison-table tbody tr:hover { background: var(--gray-100); }

.badge { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; }
.badge--good { color: #1a5c38; }
.badge--mid { color: var(--gray-600); }
.badge--bad { color: #b03030; }

/* ===== FLOW ===== */
.flow__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.flow__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.flow__connector {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: var(--gray-200);
  z-index: 0;
}

.flow-step {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.flow-step__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
}

.flow-step__circle svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.5; }

.flow-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.flow-step__text { font-size: 13px; color: var(--gray-600); line-height: 1.75; }

/* ===== FAQ ===== */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

details.faq-item { border-bottom: 1px solid var(--gray-200); }
details.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.faq-item__q-label {
  font-size: 15px;
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
}

.faq-item__q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  line-height: 1.5;
}

.faq-item__q-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item__q-arrow svg { width: 20px; height: 20px; stroke: var(--gray-400); fill: none; stroke-width: 2; }

details[open] .faq-item__q-arrow { transform: rotate(180deg); }

.faq-item__answer {
  padding: 0 0 24px 40px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.85;
}

/* ===== MEDIA SECTION ===== */
.media__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.media__item {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  padding: 12px 24px;
  border: 1px solid var(--gray-200);
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--navy);
  padding: 120px 0;
}

.final-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 48px;
}

.final-cta__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.final-cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 48px;
}

.final-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.final-cta__tel {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.final-cta__tel a { color: rgba(255,255,255,0.7); font-weight: 700; }

/* ===== FOOTER ===== */
.footer {
  background: #0c1a3a;
  padding: 48px 0 32px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer__logo {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: 8px;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  /* SVGがnavyカラーの場合は白反転 */
  filter: brightness(0) invert(1);
}

.footer__tagline { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer__link:hover { color: rgba(255,255,255,0.8); }

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ===== KNOWLEDGE CAROUSEL ===== */
.ks-track-wrap { overflow: hidden; margin: 0 -8px; }

.ks-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.ks-card {
  flex: 0 0 calc(33.333% - 16px);
  margin: 0 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ks-card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 24px rgba(17,38,89,0.1);
  transform: translateY(-3px);
}

.ks-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}

.ks-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.ks-card:hover .ks-card__img img { transform: scale(1.04); }

.ks-card__body {
  padding: 20px 20px 12px;
  flex: 1;
}

.ks-card__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: var(--navy-light);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.ks-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ks-card__foot {
  padding: 12px 20px 18px;
  border-top: 1px solid var(--gray-200);
}

.ks-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: gap 0.2s;
}

.ks-card:hover .ks-card__link { gap: 7px; }
.ks-card__link svg { width: 13px; height: 13px; }

.ks-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.ks-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.ks-btn svg { width: 20px; height: 20px; }
.ks-btn:hover:not(:disabled) { border-color: var(--navy); background: var(--navy); }
.ks-btn:hover:not(:disabled) svg { stroke: #fff; }
.ks-btn:disabled { opacity: 0.3; cursor: default; }

.ks-dots { display: flex; gap: 8px; }

.ks-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.ks-dot.is-active { background: var(--navy); width: 24px; border-radius: 4px; }

@media (max-width: 1024px) { .ks-card { flex: 0 0 calc(50% - 16px); } }
@media (max-width: 768px) { .ks-card { flex: 0 0 calc(100% - 16px); } }

/* ===== VOICE SLIDER ===== */
.vs-section {
  padding: 120px 0;
  background: var(--gray-100);
  overflow: hidden;
}

.vs-track-wrap {
  overflow: hidden;
  margin: 0 -8px;
}

.vs-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.vs-slide {
  flex: 0 0 calc(33.333% - 16px);
  margin: 0 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.vs-slide:hover { border-color: var(--navy); }

.vs-slide__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-light);
  flex-shrink: 0;
}

.vs-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.vs-slide:hover .vs-slide__img img { transform: scale(1.04); }

.vs-slide__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-slide__initial {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  opacity: 0.2;
}

.vs-slide__body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vs-slide__quote {
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.9;
  flex: 1;
  margin-bottom: 24px;
  position: relative;
  padding-left: 16px;
}

.vs-slide__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--navy);
  opacity: 0.2;
}

.vs-slide__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.vs-slide__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1.4;
}

.vs-slide__role { font-size: 12px; color: var(--gray-400); }

.vs-slide__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: gap 0.2s;
}

.vs-slide__link:hover { gap: 7px; }
.vs-slide__link svg { width: 13px; height: 13px; }

.vs-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.vs-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.vs-btn svg { width: 20px; height: 20px; }
.vs-btn:hover:not(:disabled) { border-color: var(--navy); background: var(--navy); color: #fff; }
.vs-btn:hover:not(:disabled) svg { stroke: #fff; }
.vs-btn:disabled { opacity: 0.3; cursor: default; }

.vs-dots { display: flex; gap: 8px; }

.vs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.vs-dot.is-active {
  background: var(--navy);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .vs-slide { flex: 0 0 calc(50% - 16px); }
}

@media (max-width: 768px) {
  .vs-slide { flex: 0 0 calc(100% - 16px); }
}

/* ===== POPUP BANNER ===== */
.popup-banner {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 260px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(17,38,89,0.18);
  padding: 28px 24px 24px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.popup-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.popup-banner.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.popup-banner__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  line-height: 1;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.popup-banner__close:hover { color: var(--navy); }
.popup-banner__close svg { width: 18px; height: 18px; }
.popup-banner__img-wrap {
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.popup-banner__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.popup-banner__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.popup-banner__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 20px;
}
.popup-banner__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-banner__btn {
  display: block;
  text-align: center;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.popup-banner__btn--outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.popup-banner__btn--outline:hover {
  background: var(--navy-light);
}
.popup-banner__btn--primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.popup-banner__btn--primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}

@media (max-width: 768px) {
  .popup-banner {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero__inner { gap: 48px; }
  /* .about__grid deprecated */
  .feature__inner { gap: 56px; }
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .cases__grid .case-item,
  .cases__grid .case-item:nth-child(4),
  .cases__grid .case-item:nth-child(5) { grid-column: span 1; }
  .voices__grid { grid-template-columns: 1fr; }
  .reasons__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Header */
  .header__inner { padding: 0 20px; }
  .header__nav { display: none; }
  .header__actions .btn--outline { display: none; }
  .header__logo-img { height: 20px; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 48px 20px 48px;
    min-height: auto;
  }
  .hero__visual { display: none; }
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hero__title { font-size: 32px; }

  /* Comparison table */
  .table-scroll-hint { display: block; }

  /* About flow */
  .about__flow { flex-direction: column; }
  .about__flow-arrow { padding: 8px 0; }
  .about__flow-arrow svg { transform: none; }
  .about__cred-row { flex-direction: column; }

  /* Features */
  .feature__inner { grid-template-columns: 1fr; }
  .feature__inner--reverse { direction: ltr; }

  /* Flow */
  .flow__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .flow__connector { display: none; }
  .flow__grid--5 { grid-template-columns: repeat(2, 1fr); }

  /* Stats */
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .stats-band__num { font-size: 32px; }
  .stats-band__item { padding: 20px 12px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stats-band__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }

  /* Logos */
  .logos__item { padding: 12px 20px; }
  .logos__item img { height: 44px; max-width: 120px; }

  /* Footer */
  .footer__inner { flex-direction: column; gap: 24px; padding: 0 20px 40px; }
  .footer__bottom { padding: 20px; }

  /* Sections */
  .section { padding: 72px 0; }
}
