:root {
  --ink: #101f1d;
  --text: #33423f;
  --muted: #687773;
  --line: #d9e7e3;
  --white: #ffffff;
  --paper: #f8fcfb;
  --mist: #eef8f5;
  --green: #0f9f80;
  --green-dark: #076b58;
  --green-ink: #063d34;
  --amber: #f0ad32;
  --amber-soft: #fff4d8;
  --blue: #2e6ec8;
  --blue-soft: #edf4ff;
  --coral: #d76b58;
  --shadow-sm: 0 8px 20px rgba(9, 41, 35, 0.08);
  --shadow-md: 0 18px 44px rgba(9, 41, 35, 0.12);
  --shadow-lg: 0 28px 70px rgba(9, 41, 35, 0.16);
  --radius: 8px;
  --header-h: 76px;
  --shell: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 78px;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.78;
  letter-spacing: 0;
  background: var(--paper);
}

body.design-quiet-premium {
  color: var(--text);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfb 18%, #eef8f5 58%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.content-shell,
.header-shell,
.hero-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 231, 227, 0.86);
  backdrop-filter: blur(16px);
}

.header-shell {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  width: 148px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.brand img,
.hero-logo,
.site-footer img {
  height: auto;
}

.nav-links {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links a:hover {
  color: var(--green-dark);
  background: var(--mist);
}

.header-actions,
.hero-actions,
.case-study-detail__cta-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button:focus-visible,
.movie-tab:focus-visible,
.case-study-card__more:focus-visible,
.case-study-detail__close:focus-visible,
.case-study-detail__close-link:focus-visible {
  outline: 3px solid rgba(15, 159, 128, 0.28);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 22px rgba(15, 159, 128, 0.22);
}

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

.button-dark {
  color: var(--white);
  background: var(--green-ink);
  box-shadow: 0 10px 22px rgba(6, 61, 52, 0.18);
}

.button-dark:hover {
  background: #092b25;
}

.button-outline {
  color: var(--green-dark);
  border-color: rgba(15, 159, 128, 0.34);
  background: rgba(255, 255, 255, 0.82);
}

.button-outline:hover {
  background: var(--mist);
}

.button-phone {
  color: #231806;
  background: var(--amber);
  box-shadow: 0 10px 22px rgba(240, 173, 50, 0.22);
}

.button-phone:hover {
  color: var(--white);
  background: #bd7512;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-h));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 43%, rgba(238, 248, 245, 0.88) 100%),
    url("../images/hero-bg-cm-video-v1.png") 92% center / auto 100% no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(248, 252, 251, 0) 0%, var(--paper) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: 42px;
  align-items: center;
  padding: 56px 0 74px;
}

.hero-copy {
  max-width: 540px;
}

.hero-logo {
  width: 216px;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0;
}

.kicker::before,
.section-label::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-subclaim {
  margin: -6px 0 18px;
  color: var(--green);
  font-size: 34px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.34;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: 0;
}

h4 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0;
}

.lead {
  margin-bottom: 24px;
  max-width: 520px;
  color: #465651;
  font-size: 18px;
  line-height: 1.9;
}

.hero-phone {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  margin: 18px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(217, 231, 227, 0.86);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.hero-phone span {
  padding: 2px 7px;
  border-radius: 999px;
  color: #7a4b0d;
  font-size: 12px;
  font-weight: 900;
  background: var(--amber-soft);
}

.hero-phone a {
  color: var(--ink);
  font-weight: 900;
}

.movie-spotlight {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 231, 227, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.movie-heading {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 20px 12px;
}

.movie-heading h2 {
  margin-bottom: 0;
  max-width: 330px;
  font-size: 22px;
}

.movie-frame {
  position: relative;
  margin: 0 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #081d19;
}

.movie-frame video,
.intro-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #081d19;
}

.hero-floating-ui {
  position: absolute;
  right: 34px;
  top: 126px;
  display: grid;
  gap: 8px;
  width: 164px;
  pointer-events: none;
}

.hero-lang-chip,
.hero-caption-card,
.hero-waveform {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(6, 61, 52, 0.72);
  box-shadow: 0 10px 28px rgba(6, 61, 52, 0.20);
  backdrop-filter: blur(10px);
}

.hero-lang-chip {
  width: max-content;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.hero-caption-card {
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
}

.hero-waveform {
  gap: 4px;
  justify-content: center;
  padding: 7px 10px;
  width: 82px;
}

.hero-waveform i {
  width: 4px;
  height: 14px;
  border-radius: 999px;
  background: var(--amber);
}

.hero-waveform i:nth-child(2) { height: 20px; }
.hero-waveform i:nth-child(3) { height: 12px; }
.hero-waveform i:nth-child(4) { height: 24px; }
.hero-waveform i:nth-child(5) { height: 16px; }

.movie-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 20px 0;
}

.movie-tab {
  min-height: 70px;
  border: 1px solid rgba(217, 231, 227, 0.92);
  border-radius: var(--radius);
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: left;
  background: var(--paper);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.movie-tab span {
  display: block;
  margin-bottom: 3px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 950;
}

.movie-tab.is-active {
  color: var(--ink);
  border-color: rgba(15, 159, 128, 0.42);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.movie-summary {
  margin: 14px 20px 20px;
  padding: 14px 16px;
  border: 1px solid rgba(217, 231, 227, 0.72);
  border-radius: var(--radius);
  background: #f4fbf8;
}

.movie-summary__title {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-weight: 900;
}

.movie-summary ul,
.difference-list,
.case-study-card ul,
.feature-card__points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.movie-summary li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.movie-summary li::before,
.difference-list li::before,
.case-study-card li::before,
.feature-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.84em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.trust-band {
  border-top: 1px solid rgba(217, 231, 227, 0.72);
  border-bottom: 1px solid rgba(217, 231, 227, 0.72);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
}

.trust-grid p {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

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

.sector-list span,
.feature-tags span,
.about-signal-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(15, 159, 128, 0.20);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  background: var(--mist);
}

.trusted-strip {
  padding: 34px 0 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
}

.trusted-strip + .section {
  padding-top: 48px;
}

.trusted-strip__label {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.trusted-logos {
  width: min(var(--shell), calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.trusted-logos li {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 231, 227, 0.82);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.84);
}

.trusted-logos li.logo-dark {
  background: #24332f;
}

.trusted-logos img {
  max-width: 100px;
  max-height: 28px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
}

.trusted-logos img.is-wide {
  max-width: 128px;
}

.trusted-logos img.is-compact {
  max-width: 78px;
}

.trusted-logos img.is-square {
  max-height: 36px;
}

.trusted-marquee {
  width: min(var(--shell), calc(100% - 48px));
  display: grid;
  gap: 12px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.trusted-marquee .trusted-logos {
  width: max-content;
  min-width: max-content;
  display: flex;
  grid-template-columns: none;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0;
  animation: trusted-logo-marquee 48s linear infinite;
}

.trusted-marquee .trusted-logos-marquee--reverse {
  animation-duration: 56s;
  animation-direction: reverse;
}

.trusted-marquee:hover .trusted-logos {
  animation-play-state: paused;
}

.trusted-marquee .trusted-logos li {
  width: 132px;
  flex: 0 0 132px;
}

.trusted-marquee__row {
  width: max-content;
  min-width: max-content;
  display: flex;
  gap: 12px;
  animation: trusted-logo-marquee 58s linear infinite;
}

.trusted-marquee__row--secondary {
  animation-duration: 64s;
  animation-direction: reverse;
}

.trusted-marquee:hover .trusted-marquee__row {
  animation-play-state: paused;
}

.trusted-logo-set {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trusted-logo-set[aria-hidden="true"] {
  display: flex;
}

.trusted-logo-set li {
  width: 204px;
  min-height: 64px;
  flex: 0 0 204px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 231, 227, 0.82);
  border-radius: var(--radius);
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.92);
}

.trusted-logo-set li.logo-dark {
  background: #1a302b;
}

.trusted-logo-set img {
  display: block;
  width: auto;
  max-width: min(156px, 100%);
  max-height: 36px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.trusted-logo-set img.is-wide {
  max-width: min(186px, 100%);
}

.trusted-logo-set img.is-compact {
  max-width: min(132px, 100%);
}

.trusted-logo-set img.is-square {
  max-height: 42px;
}

.trusted-logo-set li:has(img[src*="13_jp_holdings"]),
.trusted-logo-set li:has(img[src*="honda_wordmark_temp"]),
.trusted-logo-set li:has(img[src*="17_nittetsu_engineering"]),
.trusted-logo-set li:has(img[src*="19_furukawa_electric"]),
.trusted-logo-set li:has(img[src*="23_canon_medical"]),
.trusted-logo-set li:has(img[src*="12_tokyo_gas_engineering_solutions"]),
.trusted-logo-set li:has(img[src*="15_asahi_kasei"]),
.trusted-logo-set li:has(img[src*="18_sumitomo_heavy_industries"]),
.trusted-logo-set li:has(img[src*="21_nipponham_foods"]),
.trusted-logo-set li:has(img[src*="27_bandai_spirits"]),
.trusted-logo-set li:has(img[src*="05_mitsubishi_logistics"]),
.trusted-logo-set li:has(img[src*="mufg-ms"]) {
  width: 254px;
  flex-basis: 254px;
}

.trusted-logo-set li:has(img[src*="honda_wordmark_temp"]) img {
  max-width: min(198px, 100%);
  max-height: 32px;
}

.trusted-logo-set li:has(img[src*="23_canon_medical"]) img,
.trusted-logo-set li:has(img[src*="12_tokyo_gas_engineering_solutions"]) img,
.trusted-logo-set li:has(img[src*="15_asahi_kasei"]) img,
.trusted-logo-set li:has(img[src*="18_sumitomo_heavy_industries"]) img,
.trusted-logo-set li:has(img[src*="21_nipponham_foods"]) img,
.trusted-logo-set li:has(img[src*="mufg-ms"]) img {
  max-width: min(218px, 100%);
  max-height: 34px;
}

.trusted-logo-set li:has(img[src*="13_jp_holdings"]) img,
.trusted-logo-set li:has(img[src*="27_bandai_spirits"]) img {
  max-width: min(216px, 100%);
  max-height: 30px;
}

@keyframes trusted-logo-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section {
  position: relative;
  padding: 86px 0;
  background: var(--white);
}

.section-soft {
  background:
    linear-gradient(180deg, #f8fcfb 0%, #ffffff 36%, #f4fbf8 100%);
}

.section-dark {
  color: var(--white);
  background: linear-gradient(135deg, #0d332c 0%, #112a42 100%);
}

.section-dark h2,
.section-dark h3,
.section-dark .section-label {
  color: var(--white);
}

.section-dark .section-label::before {
  background: var(--amber);
}

.section-dark .section-copy p:not(.section-label),
.section-dark details p {
  color: rgba(255, 255, 255, 0.78);
}

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

.section-heading p:last-child,
.section-copy p:last-child {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 38px;
  align-items: start;
}

.section-copy p {
  color: var(--muted);
}

.about-problem-section .section-copy {
  max-width: 840px;
  margin-bottom: 30px;
}

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

.about-problem-card {
  min-height: 124px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 24px 26px;
}

.about-problem-card__mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(245, 166, 35, 0.12);
}

.about-problem-card:nth-child(2) .about-problem-card__mark {
  background: rgba(46, 110, 200, 0.10);
}

.about-problem-card:nth-child(3) .about-problem-card__mark {
  background: rgba(245, 166, 35, 0.14);
}

.about-problem-card--answer {
  border-color: rgba(15, 159, 128, 0.20);
  background: linear-gradient(135deg, rgba(232, 247, 242, 0.92), rgba(255, 255, 255, 0.94));
}

.about-problem-card--answer .about-problem-card__mark {
  background: rgba(15, 159, 128, 0.13);
}

.about-problem-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.45;
}

.about-problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.about-signal-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pain-panel {
  display: grid;
  gap: 10px;
}

.pain-panel div,
.about-problem-card,
.difference-card,
.cta-card,
.feature-card,
.case-study-card,
.case-study-detail,
.lp-contact-form-card,
details,
.intro-video-card {
  border: 1px solid rgba(217, 231, 227, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.about-problem-card--answer {
  border-color: rgba(15, 159, 128, 0.24);
  background: linear-gradient(135deg, rgba(232, 247, 242, 0.96), rgba(255, 255, 255, 0.94));
}

.pain-panel div {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 850;
}

.pain-panel div:nth-child(2) {
  border-color: rgba(46, 110, 200, 0.20);
  background: var(--blue-soft);
}

.pain-panel div:nth-child(3) {
  border-color: rgba(240, 173, 50, 0.25);
  background: var(--amber-soft);
}

.intro-video-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(360px, 1fr);
  gap: 0;
  margin-top: 26px;
  overflow: hidden;
}

.intro-video-card__copy {
  padding: 32px;
  background: #f4fbf8;
}

.intro-video-card__copy h3 {
  font-size: 26px;
}

.intro-video-card__media {
  min-height: 260px;
  background: #081d19;
}

.difference-section {
  padding-top: 50px;
  background: var(--white);
}

.comparison-table-card {
  overflow-x: auto;
  border: 1px solid #d8ebe6;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 56, 42, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  padding: 21px 24px;
  border-bottom: 1px solid #dcece8;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.comparison-table thead th {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: #021c15;
}

.comparison-table thead th:first-child {
  border-top-left-radius: 13px;
}

.comparison-table thead th:last-child {
  border-top-right-radius: 13px;
}

.comparison-table tbody th {
  color: var(--ink);
  font-weight: 850;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table .good,
.comparison-table .bad,
.comparison-table .warn {
  font-weight: 950;
}

.comparison-table .good {
  color: var(--green-dark);
}

.comparison-table .bad {
  color: #111827;
}

.comparison-table .warn {
  color: #6b7280;
}

.onyaku-row th,
.onyaku-row td {
  color: var(--green-dark);
  font-weight: 900;
  background: rgba(232, 247, 242, 0.94);
}

.comparison-note {
  margin: 22px 0 0;
  border: 1px solid #8bded0;
  border-radius: var(--radius);
  padding: 22px 28px;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
  background: linear-gradient(180deg, #f2fffb 0%, #ecfbf7 100%);
  box-shadow: 0 12px 32px rgba(0, 120, 96, 0.06);
}

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

.difference-card {
  padding: 30px;
}

.difference-card span,
.cta-card > span,
.feature-card > span,
.case-study-card__meta span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.difference-card--onyaku {
  color: var(--white);
  border-color: rgba(15, 159, 128, 0.10);
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f7464 58%, #1d4f7c 100%);
  box-shadow: var(--shadow-md);
}

.difference-card--onyaku h3,
.difference-card--onyaku span {
  color: var(--white);
}

.difference-card--onyaku .difference-list li {
  color: rgba(255, 255, 255, 0.88);
}

.difference-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.difference-list--muted li::before {
  background: #9aa8a4;
}

.scene-band {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  color: var(--white);
  background: #0b2924;
}

.scene-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 38, 33, 0.78) 0%, rgba(8, 38, 33, 0.48) 48%, rgba(8, 38, 33, 0.14) 100%);
}

.scene-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
}

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

.scene-band h2,
.scene-band .section-label {
  color: var(--white);
}

.scene-band p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.cta-roles {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
}

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

.cta-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
}

.cta-card p {
  color: var(--muted);
}

.cta-card .button {
  width: fit-content;
  margin-top: auto;
}

.cta-card:first-child {
  border-color: rgba(15, 159, 128, 0.24);
  background:
    linear-gradient(135deg, rgba(15, 159, 128, 0.12), rgba(255, 255, 255, 0) 62%),
    var(--white);
}

.cta-card-accent {
  border-color: rgba(240, 173, 50, 0.34);
  background:
    linear-gradient(135deg, rgba(240, 173, 50, 0.18), rgba(255, 255, 255, 0) 62%),
    var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(248px, auto);
  gap: 16px;
  align-items: stretch;
}

.feature-card {
  position: relative;
  min-height: 248px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
}

.feature-card-primary {
  grid-column: 1 / -1;
  min-height: 286px;
  color: var(--white);
  border-color: rgba(15, 159, 128, 0.16);
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d7669 58%, #234e88 100%);
}

.feature-card-primary h3,
.feature-card-primary .feature-icon,
.feature-card-primary > span {
  color: var(--white);
}

.feature-card-primary p,
.feature-card-primary .feature-card__points li {
  color: rgba(255, 255, 255, 0.86);
}

.feature-card:nth-child(3),
.feature-card:nth-child(6) {
  border-color: rgba(46, 110, 200, 0.22);
  background: var(--blue-soft);
}

.feature-card:nth-child(4),
.feature-card:nth-child(7) {
  border-color: rgba(240, 173, 50, 0.26);
  background: #fffaf0;
}

.feature-card-primary__body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 34px;
  align-items: center;
  height: 100%;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--green-dark);
}

.feature-card p {
  color: var(--muted);
}

.feature-card.feature-card-primary p,
.feature-card.feature-card-primary .feature-card__points li {
  color: rgba(255, 255, 255, 0.94);
}

.feature-card.feature-card-primary p {
  font-weight: 700;
  line-height: 2;
  text-shadow: 0 1px 1px rgba(0, 33, 28, 0.18);
}

.feature-card.feature-card-primary .feature-card__points li::before {
  background: rgba(32, 222, 182, 0.95);
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
}

.feature-card-primary .feature-tags span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.13);
}

.feature-tags--warm span {
  color: #8a5610;
  border-color: rgba(240, 173, 50, 0.34);
  background: var(--amber-soft);
}

.feature-card__points {
  display: grid;
  gap: 10px;
  align-self: center;
}

.feature-card__points li {
  position: relative;
  padding-left: 18px;
  font-weight: 800;
}

.case-study-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px);
  gap: 18px;
}

.case-study-card {
  padding: 26px;
}

.case-study-card__head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.case-study-card__logo {
  width: 110px;
  max-height: 48px;
  object-fit: contain;
}

.case-study-card__meta p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.case-study-card__lead {
  color: var(--muted);
}

.case-study-card li {
  position: relative;
  margin-top: 9px;
  padding-left: 18px;
  color: var(--text);
  font-weight: 750;
}

.case-study-card__more,
.case-study-detail__close-link {
  min-height: 46px;
  margin-top: 22px;
  border: 1px solid rgba(15, 159, 128, 0.28);
  border-radius: var(--radius);
  padding: 10px 16px;
  color: var(--green-dark);
  font-weight: 900;
  background: var(--mist);
}

.case-study-card__more:hover,
.case-study-detail__close-link:hover {
  background: #e0f2ed;
}

.case-study-detail {
  margin-top: 26px;
  overflow: hidden;
}

.case-study-detail__hero {
  position: relative;
  aspect-ratio: 16 / 7;
  min-height: 270px;
  overflow: hidden;
  background: #0c2b25;
}

.case-study-detail__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-detail__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(6, 61, 52, 0.70);
}

.case-study-detail__intro,
.case-study-detail__lead,
.case-study-detail__speakers,
.case-study-detail__body,
.case-study-detail__cta {
  padding: 34px;
}

.case-study-detail__intro {
  border-bottom: 1px solid var(--line);
}

.case-study-detail__intro-top {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.case-study-detail__company-logo {
  width: 120px;
  max-height: 48px;
  object-fit: contain;
}

.case-study-detail__sub {
  color: var(--muted);
  font-size: 18px;
}

.case-study-detail__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.case-study-detail__facts div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--paper);
}

.case-study-detail__facts dt {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.case-study-detail__facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.case-study-detail__lead {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: #f4fbf8;
}

.case-study-detail__lead p {
  margin: 0;
}

.case-study-detail__speakers {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-study-detail__speaker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.case-study-detail__speaker {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--white);
}

.case-study-detail__speaker img {
  width: 118px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.case-study-detail__speaker strong {
  display: block;
  color: var(--ink);
}

.case-study-detail__speaker span {
  color: var(--muted);
  font-size: 14px;
}

.case-study-detail__body {
  display: grid;
  gap: 20px;
}

.case-study-detail__chapter {
  border-left: 4px solid var(--green);
  padding-left: 20px;
}

.case-study-detail__question {
  color: var(--green-dark);
  font-weight: 900;
}

.case-study-detail__answer {
  margin: 14px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--paper);
}

.case-study-detail__answer p:last-of-type {
  margin-bottom: 0;
}

.case-study-detail__answer footer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.case-study-detail__cta {
  border-top: 1px solid var(--line);
  background: #f4fbf8;
}

.section-dark .faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

summary {
  position: relative;
  padding: 18px 50px 18px 20px;
  color: var(--white);
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber);
  font-size: 22px;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.lp-contact-section {
  padding: 110px 24px;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(15, 159, 128, 0.08), transparent 34%),
    linear-gradient(180deg, #f6fffc 0%, #eef9f5 100%);
}

.lp-contact-inner {
  width: min(var(--shell), 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.25fr);
  gap: 64px;
  align-items: center;
  margin: 0 auto;
}

.lp-contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0;
}

.lp-contact-lead {
  margin: 22px 0 38px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.lp-consult-cards {
  border: 1px solid rgba(0, 94, 75, 0.14);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(0, 56, 42, 0.08);
  backdrop-filter: blur(10px);
}

.lp-consult-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 26px 28px;
  border-bottom: 1px solid rgba(0, 94, 75, 0.12);
}

.lp-consult-card:last-child {
  border-bottom: none;
}

.lp-consult-card--active {
  background: linear-gradient(135deg, #ffffff 0%, #ecfbf7 100%);
}

.lp-consult-card--phone {
  background: linear-gradient(135deg, #ffffff 0%, #fff7ec 100%);
}

.lp-consult-card__num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  background: #e6f8f3;
}

.lp-consult-card h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.lp-consult-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.lp-consult-card__phone {
  display: inline-flex;
  margin-top: 12px;
  color: #d87800;
  font-weight: 900;
}

.lp-contact-form-card {
  padding: 34px;
  border: 1px solid rgba(0, 94, 75, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 80px rgba(0, 56, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lp-form-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dcece8;
}

.lp-form-card-head p {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

.lp-form-card-head span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  background: #e9f8f4;
}

.lp-contact-form-card .contact-form {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

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

.lp-contact-form-card label {
  display: block;
  min-width: 0;
  margin-bottom: 18px;
}

.lp-contact-form-card .contact-form__label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.lp-contact-form-card .req,
.lp-contact-form-card .opt {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  border-radius: 999px;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 900;
}

.lp-contact-form-card .req {
  color: var(--white);
  background: var(--coral);
}

.lp-contact-form-card .opt {
  color: #6a7a76;
  background: #e8f1ee;
}

.lp-contact-form-card input,
.lp-contact-form-card select,
.lp-contact-form-card textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #c9dfd9;
  border-radius: 12px;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  background: #fbfffd;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lp-contact-form-card input::placeholder,
.lp-contact-form-card textarea::placeholder {
  color: #9aa8a4;
}

.lp-contact-form-card input:focus,
.lp-contact-form-card select:focus,
.lp-contact-form-card textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 159, 128, 0.13);
  background: var(--white);
}

.lp-contact-form-card textarea {
  min-height: 118px;
  resize: vertical;
}

.lp-contact-form-card .contact-form__status {
  margin: 0 0 14px;
  border: 1px solid rgba(15, 159, 128, 0.24);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--green-dark);
  font-weight: 850;
  background: var(--mist);
}

.lp-contact-form-card .button {
  width: 100%;
  min-height: 54px;
  border-radius: 12px;
  padding: 17px 20px;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(0, 134, 107, 0.22);
}

.lp-form-note {
  margin: 14px 0 0;
  color: #70817c;
  font-size: 12px;
  text-align: center;
}

.company-info {
  padding: 72px 0 76px;
  background: #ffffff;
}

.company-info .content-shell {
  display: block;
  max-width: 820px;
}

.company-info__head {
  text-align: center;
}

.company-info__list {
  display: block;
  margin: 28px auto 0;
  border-top: 1px solid var(--line);
}

.company-info__list div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.company-info__list dt {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.company-info__list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 60;
  width: min(780px, calc(100% - 28px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(217, 231, 227, 0.88);
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(120%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.is-sticky-cta-visible .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sticky-cta .button {
  min-height: 46px;
  padding: 10px 12px;
}

.site-footer {
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.68);
  background: var(--green-dark);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-grid img {
  width: 138px;
}

.footer-grid p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: auto 1fr;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
    gap: 28px;
  }

  h1 {
    font-size: 42px;
  }

  .trusted-logos {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

  .feature-card-primary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: 150px;
  }

  .content-shell,
  .header-shell,
  .hero-shell {
    width: min(100% - 32px, var(--shell));
  }

  .header-actions .button-outline,
  .header-actions .button-phone {
    display: none;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 251, 0.96) 100%),
      url("../images/hero-bg-cm-video-v1.png") center top / cover no-repeat;
  }

  .hero-shell,
  .split-section,
  .intro-video-card,
  .difference-grid,
  .about-problem-grid,
  .lp-contact-inner {
    grid-template-columns: 1fr;
  }

  .lp-contact-inner {
    gap: 40px;
  }

  .lp-contact-copy h2 br {
    display: none;
  }

  .hero-shell {
    padding: 36px 0 52px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .movie-spotlight {
    max-width: 760px;
  }

  .hero-floating-ui {
    display: none;
  }

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

  .cta-card-grid {
    grid-template-columns: 1fr;
  }

  .case-study-detail__facts,
  .case-study-detail__lead,
  .company-info .content-shell {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    grid-template-columns: 1fr;
    width: min(420px, calc(100% - 24px));
  }
}

@media (max-width: 760px) {
  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: 34px;
    line-height: 1.24;
  }

  h2 {
    font-size: 28px;
    line-height: 1.38;
  }

  h3 {
    font-size: 20px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-subclaim {
    font-size: 27px;
  }

  .hero-logo {
    width: 188px;
  }

  .hero-actions,
  .header-actions,
  .case-study-detail__cta-buttons {
    align-items: stretch;
  }

  .hero-actions .button,
  .header-actions .button,
  .case-study-detail__cta-buttons .button,
  .cta-card .button {
    width: 100%;
  }

  .movie-heading {
    display: block;
  }

  .movie-tabs {
    grid-template-columns: 1fr;
  }

  .movie-tab {
    min-height: 58px;
  }

  .trusted-strip__label,
  .trusted-logos,
  .trusted-marquee {
    width: min(100% - 32px, var(--shell));
  }

  .trusted-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusted-marquee .trusted-logos li {
    width: 116px;
    flex-basis: 116px;
  }

  .intro-video-card__copy,
  .about-problem-card,
  .difference-card,
  .cta-card,
  .feature-card,
  .case-study-card,
  .lp-contact-form-card,
  .case-study-detail__intro,
  .case-study-detail__lead,
  .case-study-detail__speakers,
  .case-study-detail__body,
  .case-study-detail__cta {
    padding: 20px;
  }

  .intro-video-card__media {
    min-height: 210px;
  }

  .scene-band {
    min-height: 430px;
  }

  .scene-band::after {
    background: linear-gradient(180deg, rgba(8, 38, 33, 0.86) 0%, rgba(8, 38, 33, 0.50) 68%, rgba(8, 38, 33, 0.20) 100%);
  }

  .feature-grid,
  .lp-form-grid,
  .feature-card-primary__body,
  .case-study-detail__speaker-grid,
  .company-info__list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .feature-card-primary {
    grid-column: auto;
  }

  .feature-card,
  .feature-card-primary {
    min-height: auto;
  }

  .lp-contact-section {
    padding: 72px 18px;
  }

  .lp-contact-copy h2 {
    font-size: 32px;
  }

  .lp-form-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-consult-card {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 22px 20px;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 18px 16px;
  }

  .comparison-note {
    padding: 20px;
    font-size: 14px;
    text-align: left;
  }

  .case-study-detail__speaker {
    grid-template-columns: 92px 1fr;
  }

  .case-study-detail__speaker img {
    width: 92px;
  }

  .case-study-detail__hero {
    aspect-ratio: 4 / 3;
  }

  .contact-form__phone-banner {
    display: grid;
  }

  .site-footer {
    padding-bottom: 170px;
  }

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 430px) {
  .content-shell,
  .header-shell,
  .hero-shell {
    width: min(100% - 24px, var(--shell));
  }

  .brand {
    width: 132px;
  }

  .header-actions .button-primary {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 26px;
  }

  .movie-heading,
  .movie-tabs,
  .movie-summary {
    padding-left: 14px;
    padding-right: 14px;
  }

  .movie-frame {
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero-phone {
    display: grid;
  }

  .trusted-logos li {
    min-height: 48px;
  }
}
