/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --color-brand: #e4002b;
  --color-brand-dark: #9b0c23;
  --color-brand-light: #e8354f;
  /* Surfaces & headings */
  --color-navy: #0f1a2e;
  --color-navy-mid: #1a2a48;
  --color-text: #111318;
  --color-white: #fff;
  /* Neutral scale */
  --neutral-900: #1e1e22;
  --neutral-800: #2c2c30;
  --neutral-700: #48484c;
  --neutral-500: #7c7c80;
  --neutral-300: #c4c4c8;
  --neutral-200: #e0e0e4;
  --neutral-100: #f0f0f4;
  --neutral-50: #f7f7fa;
  /* Semantic accents */
  --color-link: #0071ce;
  --color-positive: #1a9e3f;
  --color-caution: #d4870e;
  /* Layout */
  --space-section: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-width: 360px;
  background: #fff;
  color: var(--color-text);
  font-family: source-han-sans-japanese, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.3;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: anywhere;
}

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

a {
  color: var(--color-link);
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
Button
-------------------------------------------------------------------------- */

.lp-listButton {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 1024px) {
  .lp-listButton {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .lp-listButton {
    flex-direction: column;
    align-items: normal;
    max-width: 352px;
    width: 100%;
    margin-inline: auto;
  }
}

.lp-buttonConversion {
  display: inline-block;
  max-width: 100%;
  min-width: 304px;
  background: #dc002f;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .2s;
  transition-property: color, background-color;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .lp-buttonConversion {
    width: 100%;
    min-width: auto;
  }
}

.lp-buttonConversion:hover {
  background-color: #c6002a;
}

.lp-buttonConversion-body {
  display: flex;
  align-items: center;
  padding: 12px 8px;
  min-height: 60px;
}

@media (max-width: 1024px) {
  .lp-buttonConversion-body {
    min-height: auto;
  }
}

.lp-buttonConversion-image {
  margin: -22px 0;
  margin-left: 16px;
  border: 1px solid #ccc;
}

@media (max-width: 768px) {
  .lp-buttonConversion-image {
    margin-left: 8px;
  }
}

.lp-buttonConversion-image>img {
  min-width: 62px;
  max-width: 70px;
}

.lp-buttonConversion--small .lp-buttonConversion-image>img {
  min-width: 42px;
  max-width: 60px;
}

.lp-buttonConversion.of-download .lp-buttonConversion-body {
  position: relative;
  justify-content: space-between;
  padding-left: 42px;
}

@media (max-width: 768px) {
  .lp-buttonConversion.of-download .lp-buttonConversion-body {
    padding-left: 20px;
  }
}

.lp-buttonConversion.of-download .lp-buttonConversion-body::before {
  display: block;
  width: 19px;
  height: 18px;
  margin-right: 10px;
  content: "";
}

@media (max-width: 768px) {
  .lp-buttonConversion.of-download .lp-buttonConversion-body::before {
    width: 17px;
    height: 18px;
  }
}

.lp-buttonConversion.of-download .lp-buttonConversion-body::before {
  background: url("/img/landing_page/common/icon_btn_dl.png") no-repeat center center;
}

.lp-buttonConversion.of-arrow .lp-buttonConversion-body {
  padding: 12px 24px;
}

@media (max-width: 1024px) {
  .lp-buttonConversion.of-arrow .lp-buttonConversion-body {
    justify-content: center;
  }
}

.lp-buttonConversion.of-arrow .lp-buttonConversion-body::before {
  content: "";
  margin-right: 12px;
  margin-bottom: 2px;
  border-width: 7px 0 7px 13px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

.lp-buttonConversion.of-primary {
  background: #0071CE;
}

.lp-buttonConversion.of-primary:hover {
  background: #005dab;
}

.lp-buttonConversion-text {
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .lp-buttonConversion-text {
    font-size: 18px;
  }

  .lp-buttonConversion--small .lp-buttonConversion-text {
    font-size: 16px;
  }
  
}

.text-link-wrap {
  display: flex;
  justify-content: flex-end
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: #E4002B;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s;
}

@media (max-width: 1024px) {
  .text-link {
    font-size: 18px;
  }
}

.text-link:hover {
  color: #9B0C23;
}

.text-link::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 15px;
  margin-left: 8px;
  vertical-align: middle;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='15' viewBox='0 0 9 15' fill='none'%3E%3Cpath d='M0.707092 0.707031L7.07105 7.07099L0.707092 13.435' stroke='%23E4002B' stroke-width='2'/%3E%3C/svg%3E");
}

.text-link:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='15' viewBox='0 0 9 15' fill='none'%3E%3Cpath d='M0.707092 0.707031L7.07105 7.07099L0.707092 13.435' stroke='%239B0C23' stroke-width='2'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.lp-layout-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1410px;
  margin-inline: auto;
  padding: 16px 40px;
  gap: 24px;
}

@media (max-width: 1024px) {
  .lp-layout-header-content {
    justify-content: center;
    padding: 18px 40px 20px;
  }
}

.lp-layout-header-logo {
  flex-shrink: 0;
}

.lp-layout-header-logo>a {
  display: block;
  line-height: 1;
}

.lp-layout-header-logo img {
  width: 114px;
}

@media (max-width: 1024px) {
  .lp-layout-header-logo img {
    width: 92px;
  }
}

.lp-textPhone {
  display: block;
  max-width: fit-content;
  line-height: 1;
}

@media (max-width: 1024px) {
  .lp-textPhone {
    display: none;
  }

  .hdr-right {
    display: none;
  }
}

.lp-textPhone-number {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.lp-textPhone-numberGroup {
  display: flex;
  align-items: flex-start;
  margin-top: 0 !important;
  gap: 8px;
}

.lp-textPhone-note {
  display: block;
  margin-top: 0 !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.lp-textPhone-icon {
  width: 36px;
  min-width: 36px;
  height: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.lp-textPhone-icon .of-iconColor-primary {
  fill: #00a23f;
}

.lp-textPhone-icon .of-iconColor-secondary {
  fill: #fe8800;
}

.lp-textPhone-icon .of-iconColor-tertiary {
  fill: #0086b1;
}

.lp-textPhone-icon .of-iconColor-quaternary {
  fill: #838079;
}

.lp-textPhone-icon .of-iconColor-quinary {
  fill: #1e1c1c;
}

.lp-textPhone.of-primary {
  margin-inline: auto;
}

.lp-textPhone.of-primary>.lp-textPhone-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-textPhone.of-center {
  text-align: center;
}

.lp-textPhone.of-center .lp-textPhoneLink-numberGroup {
  justify-content: center;
}

a.lp-textPhone-body,
a:hover.lp-textPhone-body {
  display: inline-block;
  opacity: 1;
  color: var(--color-text);
  text-decoration: none;
  cursor: default;
}

.lp-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--neutral-200);
  background: var(--color-white);
  color: var(--neutral-700);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.lp-button:hover {
  background: var(--neutral-100);
  color: var(--neutral-700);
  text-decoration: none;
}

.lp-button--red {
  background: var(--color-brand);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.lp-button--red:hover {
  background: var(--color-brand-dark);
  color: var(--color-white);
  text-decoration: none;
}

.lp-button--ghost {
  background: transparent;
  border: 1px solid var(--neutral-200);
  color: var(--color-text);
}

.lp-button--ghost:hover {
  background: var(--neutral-50);
  color: var(--color-text);
  text-decoration: none;
}

.lp-button-icon-arrow {
  width: 20px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.lp-hero {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.lp-heroInner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .lp-heroInner {
    padding: 0;
    padding-top: 56px;
  }
}

.lp-heroRow {
  max-width: 630px;
}

@media (max-width: 1024px) {
  .lp-heroRow {
    max-width: 100%;
  }
}

.lp-heroContent {
  position: relative;
  flex: 1;
}

@media (max-width: 1024px) {
  .lp-heroContent {
    padding: 0 24px;
  }
}

.lp-heroVisual {
  position: absolute;
  top: 0;
  right: clamp(-200px, -360.000px + 12.5vw, -120px);
  max-width: max-content;
  width: 100%;
  flex-shrink: 0;
  z-index: -1;
}

@media (max-width: 1280px) {
  .lp-heroVisual {
    right: clamp(-300px, -700.000px + 39.063vw, -200px);
  }
}

@media (max-width: 1024px) {
  .lp-heroVisual {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }
}

.lp-heroFigure img {
  min-height: 570px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .lp-heroFigure img {
    min-height: auto;
  }
}

.lp-heroBadge {
  display: inline-block;
  color: var(--color-white);
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .lp-heroBadge {
    margin-bottom: 16px;
  }
}

.lp-hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.lp-hero h1 em {
  font-size: 56px;
  font-style: normal;
}

@media (max-width: 1024px) {
  .lp-hero h1 {
    font-size: 32px;
  }

  .lp-hero h1 em {
    font-size: 48px;
  }
}

.lp-heroH1Sub {
  font-size: 40px;
}

@media (max-width: 1024px) {
  .lp-heroH1Sub {
    font-size: 24px;
  }
}

.lp-heroLead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 24px;
}

.lp-heroKeywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  max-width: 500px;
}

.lp-heroKeywords span {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-heroActions {
  display: flex;
  gap: 12px;
  max-width: none;
  width: min(920px, calc(100vw - 48px));
}

@media (max-width: 1024px) {
  .lp-heroActions {
    width: 100%;
    max-width: 100%;
    margin-bottom: 56px;
  }
}

.lp-heroActions .lp-listButton {
  flex: 1;
  min-width: 0;
}

.lp-buttonLg {
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-buttonLgRed {
  background: var(--color-brand);
  color: var(--color-white);
}

.lp-buttonLgRed:hover {
  background: var(--color-brand-dark);
  text-decoration: none;
  color: white;
}

.lp-buttonLgGhost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-buttonLgGhost:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: white;
}

.lp-heroCaption {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Table of contents
   -------------------------------------------------------------------------- */
.lp-toc {
  background: var(--neutral-50);
  border-bottom: 1px solid var(--neutral-200);
  position: sticky;
  top: 0;
  z-index: 90;
  overflow-x: auto;
}

@media (max-width: 1024px) {
  .lp-toc {
    display: none;
  }
}

.lp-tocInner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
}

.lp-tocInner a {
  display: block;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--neutral-700);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.lp-tocInner a:hover {
  color: var(--color-brand);
  border-bottom-color: var(--color-brand);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.lp-section {
  padding: var(--space-section) 0;
}

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

.lp-sectionInner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1024px) {
  .lp-sectionInner {
    padding: 0 20px;
  }
}

.lp-sectionLabel {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lp-sectionTitle {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .lp-sectionTitle {
    font-size: 28px;
  }
}

.lp-sectionLead {
  font-size: 16px;
  color: var(--neutral-700);
  margin-bottom: 40px;
  line-height: 1.5;
}

.lp-sectionAlt {
  background: var(--neutral-50);
}

/* --------------------------------------------------------------------------
   Overview
   -------------------------------------------------------------------------- */
.lp-overview {
  background: var(--color-white);
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .lp-overview {
    padding: 24px 16px;
  }
}

.lp-overview:last-child {
  margin-bottom: 0;
}

.lp-overview h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.2;
}

.lp-overview p {
  font-size: 16px;
  color: var(--neutral-700);
  line-height: 1.5;
  margin-bottom: 24px;
}

.lp-overview p:last-child {
  margin-bottom: 0;
}

.lp-specDl {
  margin: 0;
}

.lp-specDlItem {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  line-height: 1.2
}

@media (max-width: 1024px) {
  .lp-specDlItem {
    flex-direction: column;
  }
}

.lp-specDlItem:last-child {
  margin-bottom: 0;
}

.lp-specDlTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 16px;
  flex-shrink: 0;
}

.lp-specDlTitle:first-child {
  margin-top: 0;
}

.lp-specDlDescription {
  font-size: 16px;
  color: var(--neutral-700);
  line-height: 1.9;
}

.lp-specDlDescription:last-child {
  margin-bottom: 0;
}

.lp-highlight {
  border-left: 4px solid var(--color-brand);
  padding-left: 16px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--neutral-700);
  line-height: 1.9;
}

/* --------------------------------------------------------------------------
   Timing cards
   -------------------------------------------------------------------------- */
.lp-timingGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .lp-timingGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.lp-timingCard {
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  padding: 24px;
  background: var(--color-white);
}

@media (max-width: 1024px) {
  .lp-timingCard {
    padding: 24px 16px;
  }
}

.lp-timingNum {
  width: 32px;
  height: 32px;
  background: var(--color-brand);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.lp-timingCard h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.lp-timingCard p {
  font-size: 16px;
  color: var(--neutral-700);
  line-height: 1.5;
}

.lp-timingSmall {
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   Method grid
   -------------------------------------------------------------------------- */
.lp-methodGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .lp-methodGrid {
    grid-template-columns: 1fr;
  }
}

.lp-methodCard {
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
}

.lp-methodCardHead {
  padding: 20px 24px;
  border-bottom: 1px solid var(--neutral-100);
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1024px) {
  .lp-methodCardHead {
    padding: 24px 16px;
  }
}

.lp-methodIcon {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.lp-methodIconSurface {
  background: rgba(0, 113, 206, 0.1);
}

.lp-methodIconInternal {
  background: rgba(200, 16, 46, 0.1);
}

.lp-methodCardHead h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.lp-methodCardHead .lp-methodTag {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  padding: 8px 16px;
  border-radius: 100px;
}

.lp-methodTagSurface {
  background: rgba(0, 113, 206, 0.1);
  color: var(--color-link);
}

.lp-methodTagInternal {
  background: rgba(200, 16, 46, 0.1);
  color: var(--color-brand);
}

.lp-methodCardBody {
  padding: 24px;
}

.lp-methodCardBody p {
  font-size: 16px;
  color: var(--neutral-700);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
}

.lp-methodCardDetails {
  border-radius: 6px;
  background: #F7F7FA;
  padding: 16px;
}

.lp-methodCardDetailsItem {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .lp-methodCardDetailsItem {
    flex-direction: column;
  }
}

.lp-methodCardDetailsItem:last-child {
  margin-bottom: 0;
}

.lp-methodCardDetailsTitle {
  flex-shrink: 0;
  flex-basis: 80px;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .lp-methodCardDetailsTitle {
    flex-basis: 100%;
  }
}

.lp-methodCardDetailsDescription {
  font-size: 16px;
  color: var(--neutral-700);
}

.lp-methodCons {
  font-size: 16px;
  color: var(--color-caution);
}

/* --------------------------------------------------------------------------
   Defect cards
   -------------------------------------------------------------------------- */
.lp-defectGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .lp-defectGrid {
    grid-template-columns: 1fr;
  }
}

.lp-defectCard {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  padding: 24px;
  background: var(--color-white);
}

.lp-defectCard h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.lp-defectCard p {
  color: var(--neutral-700);
  font-size: 16px;
  line-height: 1.5;
}

.lp-defectType {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border-radius: 100px;
  flex-shrink: 0;
}

.lp-defectTypeSurface {
  background: rgba(0, 113, 206, 0.05);
  color: #0071CE;
}

.lp-defectTypeInternal {
  background: rgba(228, 0, 43, 0.05);
  color: var(--color-brand);
}

.lp-defectTypeBoth {
  background: rgba(166, 26, 222, 0.05);
  color: #A61ADE;
}

.lp-defectCardFooter {
  margin-top: auto;
  border-top: 1px solid var(--neutral-200);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--neutral-700);
  line-height: 1.5;
}

.lp-defectCardFooterText {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-defectCardFooterTextOk:before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Ccircle cx='6.5' cy='6.5' r='5.5' stroke='%23E4002B' stroke-width='2'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.lp-defectCardFooterTextNg:before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cg clip-path='url(%23clip0_54_118)'%3E%3Cpath d='M1 1L12 12' stroke='%23959595' stroke-width='2'/%3E%3Cpath d='M1 12L12 1' stroke='%23959595' stroke-width='2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_54_118'%3E%3Crect width='13' height='13' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")
    no-repeat center / contain;
}

/* --------------------------------------------------------------------------
   Comparison table
   -------------------------------------------------------------------------- */
.lp-compareWrap {
  overflow-x: auto;
}

.lp-compareTableWrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  min-width: 1120px;
}

.lp-compareTable {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.lp-compareTable thead th {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 24px 16px;
  line-height: 1.5;
  width: 160px;
}

.lp-compareTable thead th:first-child {
  text-align: left;
}

.lp-compareTable thead th.lp-compareColBest {
  background: var(--color-brand);
  position: relative;
}

.lp-compareTable tbody td {
  padding: 16px 24px;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid var(--neutral-200);
  color: var(--neutral-700);
}

.lp-compareTable tbody tr:last-child td {
  border-bottom: none;
}

.lp-compareTable tbody td:first-child {
  padding: 16px 0 16px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--color-text);
  background: var(--neutral-50);
}

.lp-compareGood {
  color: var(--color-positive);
}

.lp-compareWarn {
  color: var(--color-caution);
}

.lp-comparePoor {
  color: var(--neutral-300);
}

td.lp-compareHighlight {
  background: rgba(200, 16, 46, 0.03);
}

/* --------------------------------------------------------------------------
   Automation section
   -------------------------------------------------------------------------- */
.lp-automationFlex {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .lp-automationFlex {
    flex-direction: column;
    gap: 24px;
  }
}

.lp-automationFlex h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.4;
}

.lp-automationFlex p {
  font-size: 16px;
  color: var(--neutral-700);
  font-weight: 400;
  line-height: 1.5;
}

.lp-automationFlex p:last-child {
  margin-bottom: 0;
} 

.lp-automationStepsTitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.4;
  color: var(--color-text);
}

.lp-automationSteps {
  counter-reset: step;
}

.lp-automationStep {
  counter-increment: step;
  padding-bottom: 32px;
  padding-left: 40px;
  position: relative;
  border-left: 1px solid var(--neutral-200);
  margin-left: 16px;
}

@media (max-width: 1024px) {
  .lp-automationStep {
    padding-left: 32px;
  }
}

.lp-automationStep::before {
  content: counter(step);
  position: absolute;
  left: -15px;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-brand);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-automationStep:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.lp-automationStep h4 {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .lp-automationStep h4 {
    font-size: 18px;
  }
}

.lp-automationStep p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--neutral-700);
}

.lp-automationVisual {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Product cards
   -------------------------------------------------------------------------- */
.lp-productGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .lp-productGrid {
    grid-template-columns: 1fr;
  }
}

.lp-product {
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.lp-productHead {
  background: var(--neutral-50);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width: 1024px) {
  .lp-productHead {
    padding: 24px 16px;
    flex-direction: column-reverse;
    gap: 4px;
  }
}

.lp-productThumb {
  width: 204px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .lp-productThumb {
    width: 100%;
  }
}

.lp-productThumb span {
  font-size: 10px;
  color: var(--neutral-500);
  text-align: center;
  line-height: 1.4;
}

.lp-productTag {
  font-size: 12px;
  color: var(--color-brand);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.lp-productName {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.lp-productSeries {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-navy);
}

.lp-productBody {
  padding: 24px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

@media (max-width: 1024px) {
  .lp-productBody {
    padding: 24px 16px;
  }
}

.lp-productLead {
  flex: 1 1 auto;
  min-height: 0;
}

.lp-productLead p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.lp-productSpecs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.lp-productSpec {
  padding: 16px;
  background: var(--neutral-50);
  border-radius: 4px;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .lp-productSpec {
    font-size: 14px;
    padding: 16px 10px;
  }
}

.lp-productSpec strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 6px;
}

.lp-productSpec span {
  color: var(--neutral-500);
}

.lp-productActions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   Use cases
   -------------------------------------------------------------------------- */
.lp-caseGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .lp-caseGrid {
    grid-template-columns: 1fr;
  }
}

.lp-case {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 24px;
  background: var(--color-white);
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  padding: 24px;
}

@media (max-width: 1024px) {
  .lp-case {
    padding: 24px 16px;
  }
}

.lp-caseFigure {
  display: flex;
  justify-content: center;
}

.lp-caseLabel {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--color-brand);
  margin-bottom: 16px;
}

.lp-case h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.lp-case p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--neutral-700);
}

.lp-caseResult {
  background: var(--neutral-50);
  border-radius: 6px;
  padding: 16px;
}

.lp-caseResult-list {
  display: flex;
  gap: 12px;
}

@media (max-width: 1024px) {
  .lp-caseResult-list {
    flex-direction: column;
  }
}

.lp-caseResult-list-title {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-text);
}

.lp-caseResult-list-description {
  color: var(--neutral-700);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.lp-caseResult-list-description strong {
  color: var(--color-brand);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.lp-faqList {
  margin: 0;
}

.lp-faq {
  border-bottom: 1px solid var(--neutral-200);
  padding: 32px 0;
}

.lp-faq:first-child {
  border-top: 1px solid var(--neutral-200);
}

.lp-faqQuestion {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.lp-faqQuestion::before {
  content: "Q";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--color-brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}

.lp-faqAnswer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--neutral-700);
}

.lp-faqAnswer::before {
  content: "A";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--color-white);
  color: var(--color-brand);
  border-radius: 50%;
  border: 1px solid var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.lp-cta {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0a1220 100%);
  text-align: center;
  padding: 80px 24px;
}

@media (max-width: 1024px) {
  .lp-cta {
    padding: 64px 24px;
  }
}

.lp-ctaTitle {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0;
  color: var(--color-white);
  margin-bottom: 24px;
}

.lp-ctaLead {
  color: rgba(255, 255, 255, 0.60);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  margin-bottom: 48px;
}

.lp-ctaActions {
  display: flex;
  justify-content: center;
  gap: 14px;
  position: relative;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Related links
   -------------------------------------------------------------------------- */
.lp-relatedGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 1024px) {
  .lp-relatedGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-related {
  display: block;
  padding: 18px;
  border: 1px solid var(--neutral-200);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  transition: border-color 0.2s;
}

.lp-related:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  text-decoration: none;
}

.lp-related small {
  display: block;
  font-weight: 400;
  color: var(--neutral-500);
  font-size: 10px;
  margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.lp-layout-footer {
  background: #000;
  color: var(--color-white);
  line-height: 1.2;
}

.lp-layout-footer-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 18px 40px;
}

.lp-layout-footer-content>*:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .lp-layout-footer-content {
    padding: 18px 20px;
  }
}

.lp-layout-footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -8px;
  margin-left: -16px;
}

.lp-layout-footer-list>li {
  display: flex;
  align-items: center;
  margin-top: 8px;
  margin-left: 16px;
  font-size: 14px;
}

.lp-layout-footer-list>li::before {
  display: block;
  width: 1px;
  height: 13px;
  margin-right: 16px;
  background: var(--color-white);
  content: "";
}

.lp-layout-footer-list>li a {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}

.lp-layout-footer-list>li a:hover,
.lp-layout-footer-list>li a:focus {
  text-decoration: none;
}

.lp-layout-footer-list>li:first-child::before {
  content: none;
}

@media (max-width: 1024px) {
  .lp-layout-footer-list>li.lp-layout-footer-copyright {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .lp-layout-footer-list>li.lp-layout-footer-copyright::before {
    content: none;
  }
}

/* --------------------------------------------------------------------------
   Point box
   -------------------------------------------------------------------------- */
.lp-callout {
  border-left: 4px solid var(--color-brand);
  padding: 16px 0 16px 24px;
  border-radius: 0 6px 6px 0;
}

@media (max-width: 1024px) {
  .lp-callout {
    padding-left: 16px;
  }
}

.lp-callout h4 {
  color: var(--color-brand);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}

.lp-callout p {
  color: var(--neutral-700);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Automation section
   -------------------------------------------------------------------------- */
.lp-automationCaption {
  font-size: 11px;
  color: var(--neutral-500);
  text-align: center;
  margin-top: 8px;
}

.lp-automationFigure {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
}

.lp-media {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .lp-media {
    gap: 40px;
  }
}

.lp-mediaImage {
  max-width: 400px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .lp-media {
    flex-direction: column;
  }

  .lp-mediaImage {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.lp-mediaBody {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}